From 58b9ce5946c5fea9b6f1a9f1c0c9641c5104d769 Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Thu, 16 Apr 2009 10:57:35 -0400 Subject: [PATCH 01/92] Better license check. Tokenise CC license parts and check for compatability. Fallback is old directly-equal test. --- lib/util.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/lib/util.php b/lib/util.php index b6e89f0bd9..00696583ee 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1360,9 +1360,28 @@ function common_memcache() } } +function common_license_terms($uri) +{ + if(preg_match('/creativecommons.org\/licenses\/([^\/]+)/', $uri, $matches)) { + return explode('-',$matches[1]); + } + return array($uri); +} + function common_compatible_license($from, $to) { + $from_terms = common_license_terms($from); + // public domain and cc-by are compatible with everything + if(count($from_terms) == 1 && ($from_terms[0] == 'publicdomain' || $from_terms[0] == 'by')) { + return true; + } + $to_terms = common_license_terms($to); + // sa is compatible across versions. IANAL + if(in_array('sa',$from_terms) || in_array('sa',$to_terms)) { + return count(array_diff($from_terms, $to_terms)) == 0; + } // XXX: better compatibility check needed here! + // Should at least normalise URIs return ($from == $to); } From cd4c1267ff1355710822c6b107e576c500bf3605 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Sat, 31 Oct 2009 20:14:57 +0100 Subject: [PATCH 02/92] Use FormNoticeEnhancements instead of Counter --- js/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/util.js b/js/util.js index 663ec89863..c5d03ce117 100644 --- a/js/util.js +++ b/js/util.js @@ -213,7 +213,7 @@ var SN = { // StatusNet } else { $('#'+form_id+' #'+SN.C.S.NoticeDataText).val(''); - SN.U.Counter($('#'+SN.C.S.FormNotice)); + SN.U.NoticeFormEnhancements($('#'+SN.C.S.FormNotice)); } } } @@ -256,7 +256,7 @@ var SN = { // StatusNet $('#'+form_id+' #'+SN.C.S.NoticeDataAttach).val(''); $('#'+form_id+' #'+SN.C.S.NoticeInReplyTo).val(''); $('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove(); - SN.U.Counter($('#'+SN.C.S.FormNotice)); + SN.U.FormNoticeEnhancements(form); } }, complete: function(xhr, textStatus) { From 603f95d17db5f8e65fa23b9c5cf997c3c0ba15ed Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Oct 2009 15:40:26 -0400 Subject: [PATCH 03/92] add and update choqok --- db/notice_source.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/db/notice_source.sql b/db/notice_source.sql index 2657763f44..2982bac58a 100644 --- a/db/notice_source.sql +++ b/db/notice_source.sql @@ -7,6 +7,7 @@ VALUES ('anyio', 'Any.IO', 'http://any.io/', now()), ('betwittered','BeTwittered','http://www.32hours.com/betwitteredinfo/', now()), ('bti','bti','http://gregkh.github.com/bti/', now()), + ('choqok', 'Choqok', 'http://choqok.gnufolks.org/', now()), ('cliqset', 'Cliqset', 'http://www.cliqset.com/', now()), ('deskbar','Deskbar-Applet','http://www.gnome.org/projects/deskbar-applet/', now()), ('Do','Gnome Do','http://do.davebsd.com/wiki/index.php?title=Microblog_Plugin', now()), From 659da177ea017daaab137b7e608c6c0500c6d586 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 31 Oct 2009 15:49:21 -0400 Subject: [PATCH 04/92] Add SocialOomph --- db/notice_source.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/db/notice_source.sql b/db/notice_source.sql index 2982bac58a..5c5c939dd0 100644 --- a/db/notice_source.sql +++ b/db/notice_source.sql @@ -44,6 +44,7 @@ VALUES ('rygh.no','rygh.no','http://rygh.no/', now()), ('ryghsms','ryghsms','http://sms.rygh.no/', now()), ('smob','SMOB','http://smob.sioc-project.org/', now()), + ('socialoomphBfD4pMqz31', 'SocialOomph', 'http://www.socialoomph.com/', now()), ('spaz','Spaz','http://funkatron.com/spaz', now()), ('tarpipe','tarpipe','http://tarpipe.com/', now()), ('tjunar','Tjunar','http://nederflash.nl/boek/titels/tjunar-air', now()), From f3287bd113fdfd2a37429519d514db26441a4865 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Sun, 1 Nov 2009 10:42:28 +0000 Subject: [PATCH 05/92] Updated XHR output to match newnotice --- actions/newmessage.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/actions/newmessage.php b/actions/newmessage.php index 37fca1ca2b..095a7d1d34 100644 --- a/actions/newmessage.php +++ b/actions/newmessage.php @@ -224,15 +224,14 @@ class NewmessageAction extends Action $this->msg = $msg; if ($this->trimmed('ajax')) { - $this->startHTML('text/xml;charset=UTF-8'); + header('Content-Type: text/xml;charset=utf-8'); + $this->xw->startDocument('1.0', 'UTF-8'); + $this->elementStart('html'); $this->elementStart('head'); $this->element('title', null, _('New message')); $this->elementEnd('head'); $this->elementStart('body'); - if (common_logged_in()) { - $this->showNoticeForm(); - } - $this->elementEnd('div'); + $this->showNoticeForm(); $this->elementEnd('body'); $this->endHTML(); } From 66645282440d914c899ba63fffd1ee911c0f8879 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 1 Nov 2009 11:09:14 -0500 Subject: [PATCH 06/92] Revert "Blacklist all files and directories in the web root (INSTALLDIR). Much more elegant than manually keep tracking of these invalid usernames." This reverts commit 15f9c80c28042a5f9d51ec8444e3c9c475360481. So, so, elegant! And so, so, incorrect! We can't have a user named 'notice' because that would interfere with URLs like /notice/1234. However, there is no file named 'notice' in the Web root. If there were a way to automatically pull out the virtual paths in the root dir, this may make sense. Until then, we keep track here. --- classes/User.php | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/classes/User.php b/classes/User.php index 007662131c..7ab9f307ae 100644 --- a/classes/User.php +++ b/classes/User.php @@ -120,15 +120,11 @@ class User extends Memcached_DataObject function allowed_nickname($nickname) { // XXX: should already be validated for size, content, etc. - - $blacklist = array(); - - //all directory and file names should be blacklisted - $d = dir(INSTALLDIR); - while (false !== ($entry = $d->read())) { - $blacklist[]=$entry; - } - $d->close(); + static $blacklist = array('rss', 'xrds', 'doc', 'main', + 'settings', 'notice', 'user', + 'search', 'avatar', 'tag', 'tags', + 'api', 'message', 'group', 'groups', + 'local'); $merged = array_merge($blacklist, common_config('nickname', 'blacklist')); return !in_array($nickname, $merged); } From b975ab6c2ec8828cedeab64e4f44a1ef3a5db1b7 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Sun, 1 Nov 2009 19:48:54 +0100 Subject: [PATCH 07/92] Moved theme styles from identica to base --- theme/base/css/display.css | 8 ++++---- theme/identica/css/display.css | 12 ++++++++++-- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 8355a0a5cc..1e6cd085a6 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -684,11 +684,11 @@ right:-1px; padding:1.795%; width:65%; z-index:1; - -background-color:#FFFFFF; -border:1px solid #CCCCCC; --moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); + border-radius:7px; -moz-border-radius:7px; +-webkit-radius-border:7px; +border-width:1px; +border-style:solid; } .entity_send-a-message .form_notice legend { display:block; diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index 8aedd5144d..a1e5dbdb91 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -28,7 +28,8 @@ input, textarea, select, .entity_remote_subscribe { border-color:#AAAAAA; } -#filter_tags ul li { +#filter_tags ul li, +.entity_send-a-message .form_notice { border-color:#DDDDDD; } @@ -112,7 +113,8 @@ box-shadow:5px 7px 7px rgba(194, 194, 194, 0.3); border-color:transparent; } #content, -#site_nav_local_views .current a { +#site_nav_local_views .current a, +.entity_send-a-message .form_notice { background-color:#FFFFFF; } @@ -197,6 +199,12 @@ background-position: 0 -718px; background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -849px; } +.entity_send-a-message .form_notice { +box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); +-moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); +-webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); +} + .entity_nudge p, .form_user_nudge input.submit { background-image:url(../../base/images/icons/icons-01.png); From f471606a5048a1240162e94fbee7ed1f1cd501cc Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Sun, 1 Nov 2009 19:54:20 +0100 Subject: [PATCH 08/92] Updated default theme for direct message --- theme/default/css/display.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/theme/default/css/display.css b/theme/default/css/display.css index 5eff5842a7..f943caacf4 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -28,7 +28,8 @@ input, textarea, select, .entity_remote_subscribe { border-color:#AAAAAA; } -#filter_tags ul li { +#filter_tags ul li, +.entity_send-a-message .form_notice { border-color:#DDDDDD; } @@ -112,7 +113,8 @@ box-shadow:5px 7px 7px rgba(194, 194, 194, 0.3); border-color:transparent; } #content, -#site_nav_local_views .current a { +#site_nav_local_views .current a, +.entity_send-a-message .form_notice { background-color:#FFFFFF; } @@ -197,6 +199,12 @@ background-position: 0 -718px; background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -849px; } +.entity_send-a-message .form_notice { +box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); +-moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); +-webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); +} + .entity_nudge p, .form_user_nudge input.submit { background-image:url(../../base/images/icons/icons-01.png); From 7576c67aa6dc64218044a0d8ffb9ecb409330a6d Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Sun, 1 Nov 2009 20:07:45 +0100 Subject: [PATCH 09/92] Updated default and identica theme to use a single instance of property:value for icons. --- theme/default/css/display.css | 50 ++++++++++++++++++++++------------ theme/identica/css/display.css | 50 ++++++++++++++++++++++------------ 2 files changed, 66 insertions(+), 34 deletions(-) diff --git a/theme/default/css/display.css b/theme/default/css/display.css index f943caacf4..4388c7b554 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -89,12 +89,38 @@ color:#333333; color:#000000; } .form_notice label[for=notice_data-attach] { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -328px; +background-position:0 -328px; } .form_notice #notice_data-attach { opacity:0; } +.form_notice label[for=notice_data-attach], +#export_data li a.rss, +#export_data li a.atom, +#export_data li a.foaf, +.entity_edit a, +.entity_send-a-message a, +.entity_nudge p, +.form_user_nudge input.submit, +.form_user_block input.submit, +.form_user_unblock input.submit, +.form_group_block input.submit, +.form_group_unblock input.submit, +.form_make_admin input.submit, +.notice .attachment, +.notice-options .notice_reply, +.notice-options form.form_favor input.submit, +.notice-options form.form_disfavor input.submit, +.notice-options .notice_delete, +#new_group a, +.pagination .nav_prev a, +.pagination .nav_next a { +background-image:url(../../base/images/icons/icons-01.png); +background-repeat:no-repeat; +background-color:transparent; +} + #wrap form.processing input.submit { background:#FFFFFF url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; cursor:wait; @@ -154,15 +180,12 @@ background-color:#9BB43E; background-repeat:no-repeat; } #export_data li a.rss { -background-image:url(../../base/images/icons/icons-01.png); background-position:0 -130px; } #export_data li a.atom { -background-image:url(../../base/images/icons/icons-01.png); background-position:0 -64px; } #export_data li a.foaf { -background-image:url(../../base/images/icons/icons-01.png); background-position:0 1px; } @@ -192,11 +215,9 @@ background-color:#87B4C8; } .entity_edit a { -background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -718px; } .entity_send-a-message a { -background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -849px; } .entity_send-a-message .form_notice { @@ -207,39 +228,36 @@ box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); .entity_nudge p, .form_user_nudge input.submit { -background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -785px; } .form_user_block input.submit, .form_user_unblock input.submit, .form_group_block input.submit, .form_group_unblock input.submit { -background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -918px; } .form_make_admin input.submit { -background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -983px; } /* NOTICES */ .notice .attachment { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -394px; +background-position:0 -394px; } #attachments .attachment { background:none; } .notice-options .notice_reply { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -589px; +background-position:0 -589px; } .notice-options form.form_favor input.submit { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -457px; +background-position:0 -457px; } .notice-options form.form_disfavor input.submit { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -523px; +background-position:0 -523px; } .notice-options .notice_delete { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -655px; +background-position:0 -655px; } .notices div.entry-content, @@ -276,7 +294,7 @@ background-color:rgba(200, 200, 200, 0.300); /*END: NOTICES */ #new_group a { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -1054px; +background-position:0 -1054px; } .pagination .nav_prev a, @@ -285,10 +303,8 @@ background-repeat:no-repeat; border-color:#C8D1D5; } .pagination .nav_prev a { -background-image:url(../../base/images/icons/icons-01.png); background-position:10% -187px; } .pagination .nav_next a { -background-image:url(../../base/images/icons/icons-01.png); background-position:105% -252px; } diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index a1e5dbdb91..5209c49d35 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -89,12 +89,38 @@ color:#333333; color:#000000; } .form_notice label[for=notice_data-attach] { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -328px; +background-position:0 -328px; } .form_notice #notice_data-attach { opacity:0; } +.form_notice label[for=notice_data-attach], +#export_data li a.rss, +#export_data li a.atom, +#export_data li a.foaf, +.entity_edit a, +.entity_send-a-message a, +.entity_nudge p, +.form_user_nudge input.submit, +.form_user_block input.submit, +.form_user_unblock input.submit, +.form_group_block input.submit, +.form_group_unblock input.submit, +.form_make_admin input.submit, +.notice .attachment, +.notice-options .notice_reply, +.notice-options form.form_favor input.submit, +.notice-options form.form_disfavor input.submit, +.notice-options .notice_delete, +#new_group a, +.pagination .nav_prev a, +.pagination .nav_next a { +background-image:url(../../base/images/icons/icons-01.png); +background-repeat:no-repeat; +background-color:transparent; +} + #wrap form.processing input.submit { background:#FFFFFF url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; cursor:wait; @@ -154,15 +180,12 @@ background-color:#9BB43E; background-repeat:no-repeat; } #export_data li a.rss { -background-image:url(../../base/images/icons/icons-01.png); background-position:0 -130px; } #export_data li a.atom { -background-image:url(../../base/images/icons/icons-01.png); background-position:0 -64px; } #export_data li a.foaf { -background-image:url(../../base/images/icons/icons-01.png); background-position:0 1px; } @@ -192,11 +215,9 @@ background-color:#87B4C8; } .entity_edit a { -background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -718px; } .entity_send-a-message a { -background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -849px; } .entity_send-a-message .form_notice { @@ -207,39 +228,36 @@ box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); .entity_nudge p, .form_user_nudge input.submit { -background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -785px; } .form_user_block input.submit, .form_user_unblock input.submit, .form_group_block input.submit, .form_group_unblock input.submit { -background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -918px; } .form_make_admin input.submit { -background-image:url(../../base/images/icons/icons-01.png); background-position: 0 -983px; } /* NOTICES */ .notice .attachment { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -394px; +background-position:0 -394px; } #attachments .attachment { background:none; } .notice-options .notice_reply { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -589px; +background-position:0 -589px; } .notice-options form.form_favor input.submit { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -457px; +background-position:0 -457px; } .notice-options form.form_disfavor input.submit { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -523px; +background-position:0 -523px; } .notice-options .notice_delete { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -655px; +background-position:0 -655px; } .notices div.entry-content, @@ -276,7 +294,7 @@ background-color:rgba(200, 200, 200, 0.300); /*END: NOTICES */ #new_group a { -background:transparent url(../../base/images/icons/icons-01.png) no-repeat 0 -1054px; +background-position:0 -1054px; } .pagination .nav_prev a, @@ -285,10 +303,8 @@ background-repeat:no-repeat; border-color:#CEE1E9; } .pagination .nav_prev a { -background-image:url(../../base/images/icons/icons-01.png); background-position:10% -187px; } .pagination .nav_next a { -background-image:url(../../base/images/icons/icons-01.png); background-position:105% -252px; } From 1793cec8a56cff4b867d1c1de989e342ca53bd74 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Sun, 1 Nov 2009 20:11:51 +0100 Subject: [PATCH 10/92] Removed unneessary styles --- theme/default/css/display.css | 12 ------------ theme/identica/css/display.css | 12 ------------ 2 files changed, 24 deletions(-) diff --git a/theme/default/css/display.css b/theme/default/css/display.css index 4388c7b554..89f682d732 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -189,18 +189,6 @@ background-position:0 -64px; background-position:0 1px; } -.entity_edit a, -.entity_send-a-message a, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.entity_nudge p, -.form_make_admin input.submit { -background-repeat: no-repeat; -background-color:transparent; -} .form_group_join input.submit, .form_group_leave input.submit .form_user_subscribe input.submit, diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index 5209c49d35..ec869212df 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -189,18 +189,6 @@ background-position:0 -64px; background-position:0 1px; } -.entity_edit a, -.entity_send-a-message a, -.form_user_nudge input.submit, -.form_user_block input.submit, -.form_user_unblock input.submit, -.form_group_block input.submit, -.form_group_unblock input.submit, -.entity_nudge p, -.form_make_admin input.submit { -background-repeat: no-repeat; -background-color:transparent; -} .form_group_join input.submit, .form_group_leave input.submit .form_user_subscribe input.submit, From b1367ae8da8e67686f38c99b66c25fa049dbfba3 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Sun, 1 Nov 2009 20:53:25 +0100 Subject: [PATCH 11/92] Updated button.close styles --- js/util.js | 6 +++--- theme/base/css/display.css | 15 ++++++++++----- theme/default/css/display.css | 7 +++++++ theme/identica/css/display.css | 7 +++++++ 4 files changed, 27 insertions(+), 8 deletions(-) diff --git a/js/util.js b/js/util.js index c5d03ce117..2104598445 100644 --- a/js/util.js +++ b/js/util.js @@ -310,7 +310,7 @@ var SN = { // StatusNet imgLoading : $('address .url')[0].href+'theme/base/images/illustrations/illu_progress_loading-01.gif', bgClickToClose : true, success : function() { - $('#jOverlayContent').append(''); + $('#jOverlayContent').append(''); $('#jOverlayContent button').click($.closeOverlay); }, timeout : 0, @@ -352,7 +352,7 @@ var SN = { // StatusNet NoticeDataAttach: function() { NDA = $('#'+SN.C.S.NoticeDataAttach); NDA.change(function() { - S = '
'+$(this).val()+'
'; + S = '
'+$(this).val()+'
'; NDAS = $('#'+SN.C.S.NoticeDataAttachSelected); (NDAS.length > 0) ? NDAS.replaceWith(S) : $('#'+SN.C.S.FormNotice).append(S); $('#'+SN.C.S.NoticeDataAttachSelected+' button').click(function(){ @@ -372,7 +372,7 @@ var SN = { // StatusNet $('.entity_send-a-message').append(document._importNode($('form', data).get(0), true)); NDMF = $('.entity_send-a-message .form_notice'); SN.U.FormNoticeEnhancements(NDMF); - NDMF.append(''); + NDMF.append(''); $('.entity_send-a-message button').click(function(){ NDMF.hide(); return false; diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 1e6cd085a6..fb630d58a6 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -533,6 +533,16 @@ float:right; font-size:0.8em; } +button.close { +width:16px; +height:16px; +text-indent:-9999px; +padding:0; +border:0; +text-align:center; +font-weight:bold; +} + /* entity_profile */ .entity_profile { position:relative; @@ -1025,11 +1035,6 @@ margin-bottom:11px; position:absolute; top:0; right:0; -width:29px; -height:29px; -text-align:center; -font-weight:bold; -padding:0; } #jOverlayContent h1 { max-width:425px; diff --git a/theme/default/css/display.css b/theme/default/css/display.css index 89f682d732..40fdb255b9 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -166,6 +166,13 @@ background-color:#F7E8E8; background-color:#EFF3DC; } +button.close { +background-image:url(../../base/images/icons/twotone/green/x.gif); +background-repeat:no-repeat; +background-position:0 47%; +background-color:transparent; +} + #anon_notice { background-color:#87B4C8; color:#FFFFFF; diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index ec869212df..3b59652c41 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -166,6 +166,13 @@ background-color:#F7E8E8; background-color:#EFF3DC; } +button.close { +background-image:url(../../base/images/icons/twotone/green/x.gif); +background-repeat:no-repeat; +background-position:0 47%; +background-color:transparent; +} + #anon_notice { background-color:#87B4C8; color:#FFFFFF; From 4abbf440682050c27ba76c3b1de19d5134ab99f7 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Sun, 1 Nov 2009 16:32:45 -0800 Subject: [PATCH 12/92] Remove stale references to old apiaction parameter --- lib/router.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/lib/router.php b/lib/router.php index 64853e4198..888cbdd20c 100644 --- a/lib/router.php +++ b/lib/router.php @@ -360,11 +360,6 @@ class Router 'id' => '[a-zA-Z0-9]+', 'format' => '(xml|json)')); - $m->connect('api/users/:method', - array('action' => 'api', - 'apiaction' => 'users'), - array('method' => 'show(\.(xml|json))?')); - // direct messages $m->connect('api/direct_messages.:format', @@ -459,13 +454,6 @@ class Router array('action' => 'ApiFavoriteDestroy', 'id' => '[a-zA-Z0-9]+', 'format' => '(xml|json)')); - - // notifications - - $m->connect('api/notifications/:method/:argument', - array('action' => 'api', - 'apiaction' => 'favorites')); - // blocks $m->connect('api/blocks/create/:id.:format', From c9f6c09af0e63a564a81ef5560de2892773a4fe2 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 10:28:22 +0000 Subject: [PATCH 13/92] Updated button.close style --- theme/base/images/icons/icons-01.png | Bin 3260 -> 3422 bytes theme/base/images/icons/twotone/green/x.gif | Bin 0 -> 79 bytes theme/default/css/display.css | 8 +++----- theme/identica/css/display.css | 8 +++----- 4 files changed, 6 insertions(+), 10 deletions(-) create mode 100644 theme/base/images/icons/twotone/green/x.gif diff --git a/theme/base/images/icons/icons-01.png b/theme/base/images/icons/icons-01.png index c4e3713302fe9bea6d32d83bb2449a4c5107a6f3..f83c30177c6a5aa8c13cc8bbaae41e7819c93ddf 100644 GIT binary patch literal 3422 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 diff --git a/theme/base/images/icons/twotone/green/x.gif b/theme/base/images/icons/twotone/green/x.gif new file mode 100644 index 0000000000000000000000000000000000000000..ffb2efea00c78ee8fd74913cce781c2d08c9ed80 GIT binary patch literal 79 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J0TA`erVB%fFbp f)2@MkTk-Q3o{k( Date: Mon, 2 Nov 2009 13:28:14 +0000 Subject: [PATCH 14/92] Minor --- js/util.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/util.js b/js/util.js index 2104598445..b572846b7c 100644 --- a/js/util.js +++ b/js/util.js @@ -287,10 +287,10 @@ var SN = { // StatusNet replyto = '@' + nick + ' '; text.val(replyto + text.val().replace(RegExp(replyto, 'i'), '')); $('#'+SN.C.S.FormNotice+' input#'+SN.C.S.NoticeInReplyTo).val(id); - if (text.get(0).setSelectionRange) { + if (text[0].setSelectionRange) { var len = text.val().length; - text.get(0).setSelectionRange(len,len); - text.get(0).focus(); + text[0].setSelectionRange(len,len); + text[0].focus(); } return false; } @@ -369,7 +369,7 @@ var SN = { // StatusNet var NDMF = $('.entity_send-a-message form'); if (NDMF.length == 0) { $.get(NDM.attr('href'), null, function(data) { - $('.entity_send-a-message').append(document._importNode($('form', data).get(0), true)); + $('.entity_send-a-message').append(document._importNode($('form', data)[0], true)); NDMF = $('.entity_send-a-message .form_notice'); SN.U.FormNoticeEnhancements(NDMF); NDMF.append(''); From 8e64723813525f3911e3402f4ccf84d8813ce25a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 1 Nov 2009 13:30:51 -0500 Subject: [PATCH 15/92] Make unit tests work again by forcing a 'global' on $_have_a_config... Fix a typo in the error message when no config file found. --- lib/common.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/common.php b/lib/common.php index 2c2f6869ee..68bdbf2293 100644 --- a/lib/common.php +++ b/lib/common.php @@ -169,6 +169,7 @@ if (isset($conffile)) { $_config_files[] = INSTALLDIR.'/config.php'; } +global $_have_a_config; $_have_a_config = false; foreach ($_config_files as $_config_file) { @@ -187,7 +188,7 @@ function _have_config() // XXX: Throw a conniption if database not installed // XXX: Find a way to use htmlwriter for this instead of handcoded markup if (!_have_config()) { - echo '

'. _('No configuation file found. ') .'

'; + echo '

'. _('No configuration file found. ') .'

'; echo '

'. _('I looked for configuration files in the following places: ') .'
'. implode($_config_files, '
'); echo '

'. _('You may wish to run the installer to fix this.') .'

'; echo ''. _('Go to the installer.') .''; From fa37967858c3c29000797e510e5f98aca8ab558f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 28 Oct 2009 15:29:20 -0400 Subject: [PATCH 16/92] Rebuilt HTTPClient class as an extension of PEAR HTTP_Request2 package, adding redirect handling and convenience functions. Caching support will be added in future work after unit tests have been added. * extlib: add PEAR HTTP_Request2 0.4.1 alpha * extlib: update PEAR Net_URL2 to 0.3.0 beta for HTTP_Request2 compatibility * moved direct usage of CURL and file_get_contents to HTTPClient class, excluding external-sourced libraries Note some plugins haven't been tested yet. --- classes/File_redirection.php | 66 +- extlib/HTTP/Request2.php | 844 +++++++++++++++ extlib/HTTP/Request2/Adapter.php | 152 +++ extlib/HTTP/Request2/Adapter/Curl.php | 383 +++++++ extlib/HTTP/Request2/Adapter/Mock.php | 171 +++ extlib/HTTP/Request2/Adapter/Socket.php | 971 ++++++++++++++++++ extlib/HTTP/Request2/Exception.php | 62 ++ extlib/HTTP/Request2/MultipartBody.php | 274 +++++ extlib/HTTP/Request2/Observer/Log.php | 215 ++++ extlib/HTTP/Request2/Response.php | 549 ++++++++++ extlib/Net/URL2.php | 471 +++++---- install.php | 7 + lib/Shorturl_api.php | 23 +- lib/curlclient.php | 179 ---- lib/default.php | 2 - lib/httpclient.php | 196 +++- lib/oauthclient.php | 63 +- lib/ping.php | 14 +- lib/snapshot.php | 21 +- plugins/BlogspamNetPlugin.php | 17 +- plugins/LinkbackPlugin.php | 36 +- plugins/SimpleUrl/SimpleUrlPlugin.php | 11 +- .../daemons/synctwitterfriends.php | 4 +- .../daemons/twitterstatusfetcher.php | 45 +- plugins/TwitterBridge/twitter.php | 2 +- .../TwitterBridge/twitterauthorization.php | 2 +- .../TwitterBridge/twitterbasicauthclient.php | 64 +- plugins/WikiHashtagsPlugin.php | 12 +- scripts/enjitqueuehandler.php | 62 +- 29 files changed, 4245 insertions(+), 673 deletions(-) create mode 100644 extlib/HTTP/Request2.php create mode 100644 extlib/HTTP/Request2/Adapter.php create mode 100644 extlib/HTTP/Request2/Adapter/Curl.php create mode 100644 extlib/HTTP/Request2/Adapter/Mock.php create mode 100644 extlib/HTTP/Request2/Adapter/Socket.php create mode 100644 extlib/HTTP/Request2/Exception.php create mode 100644 extlib/HTTP/Request2/MultipartBody.php create mode 100644 extlib/HTTP/Request2/Observer/Log.php create mode 100644 extlib/HTTP/Request2/Response.php delete mode 100644 lib/curlclient.php diff --git a/classes/File_redirection.php b/classes/File_redirection.php index 79052bf7d3..b7945699ab 100644 --- a/classes/File_redirection.php +++ b/classes/File_redirection.php @@ -47,18 +47,15 @@ class File_redirection extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - function _commonCurl($url, $redirs) { - $curlh = curl_init(); - curl_setopt($curlh, CURLOPT_URL, $url); - curl_setopt($curlh, CURLOPT_AUTOREFERER, true); // # setup referer header when folowing redirects - curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 10); // # seconds to wait - curl_setopt($curlh, CURLOPT_MAXREDIRS, $redirs); // # max number of http redirections to follow - curl_setopt($curlh, CURLOPT_USERAGENT, USER_AGENT); - curl_setopt($curlh, CURLOPT_FOLLOWLOCATION, true); // Follow redirects - curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true); - curl_setopt($curlh, CURLOPT_FILETIME, true); - curl_setopt($curlh, CURLOPT_HEADER, true); // Include header in output - return $curlh; + static function _commonHttp($url, $redirs) { + $request = new HTTPClient($url); + $request->setConfig(array( + 'connect_timeout' => 10, // # seconds to wait + 'max_redirs' => $redirs, // # max number of http redirections to follow + 'follow_redirects' => true, // Follow redirects + 'store_body' => false, // We won't need body content here. + )); + return $request; } function _redirectWhere_imp($short_url, $redirs = 10, $protected = false) { @@ -82,32 +79,39 @@ class File_redirection extends Memcached_DataObject if(strpos($short_url,'://') === false){ return $short_url; } - $curlh = File_redirection::_commonCurl($short_url, $redirs); - // Don't include body in output - curl_setopt($curlh, CURLOPT_NOBODY, true); - curl_exec($curlh); - $info = curl_getinfo($curlh); - curl_close($curlh); + try { + $request = self::_commonHttp($short_url, $redirs); + // Don't include body in output + $request->setMethod(HTTP_Request2::METHOD_HEAD); + $response = $request->send(); - if (405 == $info['http_code']) { - $curlh = File_redirection::_commonCurl($short_url, $redirs); - curl_exec($curlh); - $info = curl_getinfo($curlh); - curl_close($curlh); + if (405 == $response->getCode()) { + // Server doesn't support HEAD method? Can this really happen? + // We'll try again as a GET and ignore the response data. + $request = self::_commonHttp($short_url, $redirs); + $response = $request->send(); + } + } catch (Exception $e) { + // Invalid URL or failure to reach server + return $short_url; } - if (!empty($info['redirect_count']) && File::isProtected($info['url'])) { - return File_redirection::_redirectWhere_imp($short_url, $info['redirect_count'] - 1, true); + if ($response->getRedirectCount() && File::isProtected($response->getUrl())) { + // Bump back up the redirect chain until we find a non-protected URL + return self::_redirectWhere_imp($short_url, $response->getRedirectCount() - 1, true); } - $ret = array('code' => $info['http_code'] - , 'redirects' => $info['redirect_count'] - , 'url' => $info['url']); + $ret = array('code' => $response->getCode() + , 'redirects' => $response->getRedirectCount() + , 'url' => $response->getUrl()); - if (!empty($info['content_type'])) $ret['type'] = $info['content_type']; + $type = $response->getHeader('Content-Type'); + if ($type) $ret['type'] = $type; if ($protected) $ret['protected'] = true; - if (!empty($info['download_content_length'])) $ret['size'] = $info['download_content_length']; - if (isset($info['filetime']) && ($info['filetime'] > 0)) $ret['time'] = $info['filetime']; + $size = $request->getHeader('Content-Length'); // @fixme bytes? + if ($size) $ret['size'] = $size; + $time = $request->getHeader('Last-Modified'); + if ($time) $ret['time'] = strtotime($time); return $ret; } diff --git a/extlib/HTTP/Request2.php b/extlib/HTTP/Request2.php new file mode 100644 index 0000000000..e06bb86bca --- /dev/null +++ b/extlib/HTTP/Request2.php @@ -0,0 +1,844 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Request2.php 278226 2009-04-03 21:32:48Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * A class representing an URL as per RFC 3986. + */ +require_once 'Net/URL2.php'; + +/** + * Exception class for HTTP_Request2 package + */ +require_once 'HTTP/Request2/Exception.php'; + +/** + * Class representing a HTTP request + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + * @link http://tools.ietf.org/html/rfc2616#section-5 + */ +class HTTP_Request2 implements SplSubject +{ + /**#@+ + * Constants for HTTP request methods + * + * @link http://tools.ietf.org/html/rfc2616#section-5.1.1 + */ + const METHOD_OPTIONS = 'OPTIONS'; + const METHOD_GET = 'GET'; + const METHOD_HEAD = 'HEAD'; + const METHOD_POST = 'POST'; + const METHOD_PUT = 'PUT'; + const METHOD_DELETE = 'DELETE'; + const METHOD_TRACE = 'TRACE'; + const METHOD_CONNECT = 'CONNECT'; + /**#@-*/ + + /**#@+ + * Constants for HTTP authentication schemes + * + * @link http://tools.ietf.org/html/rfc2617 + */ + const AUTH_BASIC = 'basic'; + const AUTH_DIGEST = 'digest'; + /**#@-*/ + + /** + * Regular expression used to check for invalid symbols in RFC 2616 tokens + * @link http://pear.php.net/bugs/bug.php?id=15630 + */ + const REGEXP_INVALID_TOKEN = '![\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]!'; + + /** + * Regular expression used to check for invalid symbols in cookie strings + * @link http://pear.php.net/bugs/bug.php?id=15630 + * @link http://cgi.netscape.com/newsref/std/cookie_spec.html + */ + const REGEXP_INVALID_COOKIE = '/[\s,;]/'; + + /** + * Fileinfo magic database resource + * @var resource + * @see detectMimeType() + */ + private static $_fileinfoDb; + + /** + * Observers attached to the request (instances of SplObserver) + * @var array + */ + protected $observers = array(); + + /** + * Request URL + * @var Net_URL2 + */ + protected $url; + + /** + * Request method + * @var string + */ + protected $method = self::METHOD_GET; + + /** + * Authentication data + * @var array + * @see getAuth() + */ + protected $auth; + + /** + * Request headers + * @var array + */ + protected $headers = array(); + + /** + * Configuration parameters + * @var array + * @see setConfig() + */ + protected $config = array( + 'adapter' => 'HTTP_Request2_Adapter_Socket', + 'connect_timeout' => 10, + 'timeout' => 0, + 'use_brackets' => true, + 'protocol_version' => '1.1', + 'buffer_size' => 16384, + 'store_body' => true, + + 'proxy_host' => '', + 'proxy_port' => '', + 'proxy_user' => '', + 'proxy_password' => '', + 'proxy_auth_scheme' => self::AUTH_BASIC, + + 'ssl_verify_peer' => true, + 'ssl_verify_host' => true, + 'ssl_cafile' => null, + 'ssl_capath' => null, + 'ssl_local_cert' => null, + 'ssl_passphrase' => null, + + 'digest_compat_ie' => false + ); + + /** + * Last event in request / response handling, intended for observers + * @var array + * @see getLastEvent() + */ + protected $lastEvent = array( + 'name' => 'start', + 'data' => null + ); + + /** + * Request body + * @var string|resource + * @see setBody() + */ + protected $body = ''; + + /** + * Array of POST parameters + * @var array + */ + protected $postParams = array(); + + /** + * Array of file uploads (for multipart/form-data POST requests) + * @var array + */ + protected $uploads = array(); + + /** + * Adapter used to perform actual HTTP request + * @var HTTP_Request2_Adapter + */ + protected $adapter; + + + /** + * Constructor. Can set request URL, method and configuration array. + * + * Also sets a default value for User-Agent header. + * + * @param string|Net_Url2 Request URL + * @param string Request method + * @param array Configuration for this Request instance + */ + public function __construct($url = null, $method = self::METHOD_GET, array $config = array()) + { + if (!empty($url)) { + $this->setUrl($url); + } + if (!empty($method)) { + $this->setMethod($method); + } + $this->setConfig($config); + $this->setHeader('user-agent', 'HTTP_Request2/0.4.1 ' . + '(http://pear.php.net/package/http_request2) ' . + 'PHP/' . phpversion()); + } + + /** + * Sets the URL for this request + * + * If the URL has userinfo part (username & password) these will be removed + * and converted to auth data. If the URL does not have a path component, + * that will be set to '/'. + * + * @param string|Net_URL2 Request URL + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setUrl($url) + { + if (is_string($url)) { + $url = new Net_URL2($url); + } + if (!$url instanceof Net_URL2) { + throw new HTTP_Request2_Exception('Parameter is not a valid HTTP URL'); + } + // URL contains username / password? + if ($url->getUserinfo()) { + $username = $url->getUser(); + $password = $url->getPassword(); + $this->setAuth(rawurldecode($username), $password? rawurldecode($password): ''); + $url->setUserinfo(''); + } + if ('' == $url->getPath()) { + $url->setPath('/'); + } + $this->url = $url; + + return $this; + } + + /** + * Returns the request URL + * + * @return Net_URL2 + */ + public function getUrl() + { + return $this->url; + } + + /** + * Sets the request method + * + * @param string + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception if the method name is invalid + */ + public function setMethod($method) + { + // Method name should be a token: http://tools.ietf.org/html/rfc2616#section-5.1.1 + if (preg_match(self::REGEXP_INVALID_TOKEN, $method)) { + throw new HTTP_Request2_Exception("Invalid request method '{$method}'"); + } + $this->method = $method; + + return $this; + } + + /** + * Returns the request method + * + * @return string + */ + public function getMethod() + { + return $this->method; + } + + /** + * Sets the configuration parameter(s) + * + * The following parameters are available: + *
    + *
  • 'adapter' - adapter to use (string)
  • + *
  • 'connect_timeout' - Connection timeout in seconds (integer)
  • + *
  • 'timeout' - Total number of seconds a request can take. + * Use 0 for no limit, should be greater than + * 'connect_timeout' if set (integer)
  • + *
  • 'use_brackets' - Whether to append [] to array variable names (bool)
  • + *
  • 'protocol_version' - HTTP Version to use, '1.0' or '1.1' (string)
  • + *
  • 'buffer_size' - Buffer size to use for reading and writing (int)
  • + *
  • 'store_body' - Whether to store response body in response object. + * Set to false if receiving a huge response and + * using an Observer to save it (boolean)
  • + *
  • 'proxy_host' - Proxy server host (string)
  • + *
  • 'proxy_port' - Proxy server port (integer)
  • + *
  • 'proxy_user' - Proxy auth username (string)
  • + *
  • 'proxy_password' - Proxy auth password (string)
  • + *
  • 'proxy_auth_scheme' - Proxy auth scheme, one of HTTP_Request2::AUTH_* constants (string)
  • + *
  • 'ssl_verify_peer' - Whether to verify peer's SSL certificate (bool)
  • + *
  • 'ssl_verify_host' - Whether to check that Common Name in SSL + * certificate matches host name (bool)
  • + *
  • 'ssl_cafile' - Cerificate Authority file to verify the peer + * with (use with 'ssl_verify_peer') (string)
  • + *
  • 'ssl_capath' - Directory holding multiple Certificate + * Authority files (string)
  • + *
  • 'ssl_local_cert' - Name of a file containing local cerificate (string)
  • + *
  • 'ssl_passphrase' - Passphrase with which local certificate + * was encoded (string)
  • + *
  • 'digest_compat_ie' - Whether to imitate behaviour of MSIE 5 and 6 + * in using URL without query string in digest + * authentication (boolean)
  • + *
+ * + * @param string|array configuration parameter name or array + * ('parameter name' => 'parameter value') + * @param mixed parameter value if $nameOrConfig is not an array + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception If the parameter is unknown + */ + public function setConfig($nameOrConfig, $value = null) + { + if (is_array($nameOrConfig)) { + foreach ($nameOrConfig as $name => $value) { + $this->setConfig($name, $value); + } + + } else { + if (!array_key_exists($nameOrConfig, $this->config)) { + throw new HTTP_Request2_Exception( + "Unknown configuration parameter '{$nameOrConfig}'" + ); + } + $this->config[$nameOrConfig] = $value; + } + + return $this; + } + + /** + * Returns the value(s) of the configuration parameter(s) + * + * @param string parameter name + * @return mixed value of $name parameter, array of all configuration + * parameters if $name is not given + * @throws HTTP_Request2_Exception If the parameter is unknown + */ + public function getConfig($name = null) + { + if (null === $name) { + return $this->config; + } elseif (!array_key_exists($name, $this->config)) { + throw new HTTP_Request2_Exception( + "Unknown configuration parameter '{$name}'" + ); + } + return $this->config[$name]; + } + + /** + * Sets the autentification data + * + * @param string user name + * @param string password + * @param string authentication scheme + * @return HTTP_Request2 + */ + public function setAuth($user, $password = '', $scheme = self::AUTH_BASIC) + { + if (empty($user)) { + $this->auth = null; + } else { + $this->auth = array( + 'user' => (string)$user, + 'password' => (string)$password, + 'scheme' => $scheme + ); + } + + return $this; + } + + /** + * Returns the authentication data + * + * The array has the keys 'user', 'password' and 'scheme', where 'scheme' + * is one of the HTTP_Request2::AUTH_* constants. + * + * @return array + */ + public function getAuth() + { + return $this->auth; + } + + /** + * Sets request header(s) + * + * The first parameter may be either a full header string 'header: value' or + * header name. In the former case $value parameter is ignored, in the latter + * the header's value will either be set to $value or the header will be + * removed if $value is null. The first parameter can also be an array of + * headers, in that case method will be called recursively. + * + * Note that headers are treated case insensitively as per RFC 2616. + * + * + * $req->setHeader('Foo: Bar'); // sets the value of 'Foo' header to 'Bar' + * $req->setHeader('FoO', 'Baz'); // sets the value of 'Foo' header to 'Baz' + * $req->setHeader(array('foo' => 'Quux')); // sets the value of 'Foo' header to 'Quux' + * $req->setHeader('FOO'); // removes 'Foo' header from request + * + * + * @param string|array header name, header string ('Header: value') + * or an array of headers + * @param string|null header value, header will be removed if null + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setHeader($name, $value = null) + { + if (is_array($name)) { + foreach ($name as $k => $v) { + if (is_string($k)) { + $this->setHeader($k, $v); + } else { + $this->setHeader($v); + } + } + } else { + if (null === $value && strpos($name, ':')) { + list($name, $value) = array_map('trim', explode(':', $name, 2)); + } + // Header name should be a token: http://tools.ietf.org/html/rfc2616#section-4.2 + if (preg_match(self::REGEXP_INVALID_TOKEN, $name)) { + throw new HTTP_Request2_Exception("Invalid header name '{$name}'"); + } + // Header names are case insensitive anyway + $name = strtolower($name); + if (null === $value) { + unset($this->headers[$name]); + } else { + $this->headers[$name] = $value; + } + } + + return $this; + } + + /** + * Returns the request headers + * + * The array is of the form ('header name' => 'header value'), header names + * are lowercased + * + * @return array + */ + public function getHeaders() + { + return $this->headers; + } + + /** + * Appends a cookie to "Cookie:" header + * + * @param string cookie name + * @param string cookie value + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function addCookie($name, $value) + { + $cookie = $name . '=' . $value; + if (preg_match(self::REGEXP_INVALID_COOKIE, $cookie)) { + throw new HTTP_Request2_Exception("Invalid cookie: '{$cookie}'"); + } + $cookies = empty($this->headers['cookie'])? '': $this->headers['cookie'] . '; '; + $this->setHeader('cookie', $cookies . $cookie); + + return $this; + } + + /** + * Sets the request body + * + * @param string Either a string with the body or filename containing body + * @param bool Whether first parameter is a filename + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setBody($body, $isFilename = false) + { + if (!$isFilename) { + $this->body = (string)$body; + } else { + if (!($fp = @fopen($body, 'rb'))) { + throw new HTTP_Request2_Exception("Cannot open file {$body}"); + } + $this->body = $fp; + if (empty($this->headers['content-type'])) { + $this->setHeader('content-type', self::detectMimeType($body)); + } + } + + return $this; + } + + /** + * Returns the request body + * + * @return string|resource|HTTP_Request2_MultipartBody + */ + public function getBody() + { + if (self::METHOD_POST == $this->method && + (!empty($this->postParams) || !empty($this->uploads)) + ) { + if ('application/x-www-form-urlencoded' == $this->headers['content-type']) { + $body = http_build_query($this->postParams, '', '&'); + if (!$this->getConfig('use_brackets')) { + $body = preg_replace('/%5B\d+%5D=/', '=', $body); + } + // support RFC 3986 by not encoding '~' symbol (request #15368) + return str_replace('%7E', '~', $body); + + } elseif ('multipart/form-data' == $this->headers['content-type']) { + require_once 'HTTP/Request2/MultipartBody.php'; + return new HTTP_Request2_MultipartBody( + $this->postParams, $this->uploads, $this->getConfig('use_brackets') + ); + } + } + return $this->body; + } + + /** + * Adds a file to form-based file upload + * + * Used to emulate file upload via a HTML form. The method also sets + * Content-Type of HTTP request to 'multipart/form-data'. + * + * If you just want to send the contents of a file as the body of HTTP + * request you should use setBody() method. + * + * @param string name of file-upload field + * @param mixed full name of local file + * @param string filename to send in the request + * @param string content-type of file being uploaded + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function addUpload($fieldName, $filename, $sendFilename = null, + $contentType = null) + { + if (!is_array($filename)) { + if (!($fp = @fopen($filename, 'rb'))) { + throw new HTTP_Request2_Exception("Cannot open file {$filename}"); + } + $this->uploads[$fieldName] = array( + 'fp' => $fp, + 'filename' => empty($sendFilename)? basename($filename): $sendFilename, + 'size' => filesize($filename), + 'type' => empty($contentType)? self::detectMimeType($filename): $contentType + ); + } else { + $fps = $names = $sizes = $types = array(); + foreach ($filename as $f) { + if (!is_array($f)) { + $f = array($f); + } + if (!($fp = @fopen($f[0], 'rb'))) { + throw new HTTP_Request2_Exception("Cannot open file {$f[0]}"); + } + $fps[] = $fp; + $names[] = empty($f[1])? basename($f[0]): $f[1]; + $sizes[] = filesize($f[0]); + $types[] = empty($f[2])? self::detectMimeType($f[0]): $f[2]; + } + $this->uploads[$fieldName] = array( + 'fp' => $fps, 'filename' => $names, 'size' => $sizes, 'type' => $types + ); + } + if (empty($this->headers['content-type']) || + 'application/x-www-form-urlencoded' == $this->headers['content-type'] + ) { + $this->setHeader('content-type', 'multipart/form-data'); + } + + return $this; + } + + /** + * Adds POST parameter(s) to the request. + * + * @param string|array parameter name or array ('name' => 'value') + * @param mixed parameter value (can be an array) + * @return HTTP_Request2 + */ + public function addPostParameter($name, $value = null) + { + if (!is_array($name)) { + $this->postParams[$name] = $value; + } else { + foreach ($name as $k => $v) { + $this->addPostParameter($k, $v); + } + } + if (empty($this->headers['content-type'])) { + $this->setHeader('content-type', 'application/x-www-form-urlencoded'); + } + + return $this; + } + + /** + * Attaches a new observer + * + * @param SplObserver + */ + public function attach(SplObserver $observer) + { + foreach ($this->observers as $attached) { + if ($attached === $observer) { + return; + } + } + $this->observers[] = $observer; + } + + /** + * Detaches an existing observer + * + * @param SplObserver + */ + public function detach(SplObserver $observer) + { + foreach ($this->observers as $key => $attached) { + if ($attached === $observer) { + unset($this->observers[$key]); + return; + } + } + } + + /** + * Notifies all observers + */ + public function notify() + { + foreach ($this->observers as $observer) { + $observer->update($this); + } + } + + /** + * Sets the last event + * + * Adapters should use this method to set the current state of the request + * and notify the observers. + * + * @param string event name + * @param mixed event data + */ + public function setLastEvent($name, $data = null) + { + $this->lastEvent = array( + 'name' => $name, + 'data' => $data + ); + $this->notify(); + } + + /** + * Returns the last event + * + * Observers should use this method to access the last change in request. + * The following event names are possible: + *
    + *
  • 'connect' - after connection to remote server, + * data is the destination (string)
  • + *
  • 'disconnect' - after disconnection from server
  • + *
  • 'sentHeaders' - after sending the request headers, + * data is the headers sent (string)
  • + *
  • 'sentBodyPart' - after sending a part of the request body, + * data is the length of that part (int)
  • + *
  • 'receivedHeaders' - after receiving the response headers, + * data is HTTP_Request2_Response object
  • + *
  • 'receivedBodyPart' - after receiving a part of the response + * body, data is that part (string)
  • + *
  • 'receivedEncodedBodyPart' - as 'receivedBodyPart', but data is still + * encoded by Content-Encoding
  • + *
  • 'receivedBody' - after receiving the complete response + * body, data is HTTP_Request2_Response object
  • + *
+ * Different adapters may not send all the event types. Mock adapter does + * not send any events to the observers. + * + * @return array The array has two keys: 'name' and 'data' + */ + public function getLastEvent() + { + return $this->lastEvent; + } + + /** + * Sets the adapter used to actually perform the request + * + * You can pass either an instance of a class implementing HTTP_Request2_Adapter + * or a class name. The method will only try to include a file if the class + * name starts with HTTP_Request2_Adapter_, it will also try to prepend this + * prefix to the class name if it doesn't contain any underscores, so that + * + * $request->setAdapter('curl'); + * + * will work. + * + * @param string|HTTP_Request2_Adapter + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setAdapter($adapter) + { + if (is_string($adapter)) { + if (!class_exists($adapter, false)) { + if (false === strpos($adapter, '_')) { + $adapter = 'HTTP_Request2_Adapter_' . ucfirst($adapter); + } + if (preg_match('/^HTTP_Request2_Adapter_([a-zA-Z0-9]+)$/', $adapter)) { + include_once str_replace('_', DIRECTORY_SEPARATOR, $adapter) . '.php'; + } + if (!class_exists($adapter, false)) { + throw new HTTP_Request2_Exception("Class {$adapter} not found"); + } + } + $adapter = new $adapter; + } + if (!$adapter instanceof HTTP_Request2_Adapter) { + throw new HTTP_Request2_Exception('Parameter is not a HTTP request adapter'); + } + $this->adapter = $adapter; + + return $this; + } + + /** + * Sends the request and returns the response + * + * @throws HTTP_Request2_Exception + * @return HTTP_Request2_Response + */ + public function send() + { + // Sanity check for URL + if (!$this->url instanceof Net_URL2) { + throw new HTTP_Request2_Exception('No URL given'); + } elseif (!$this->url->isAbsolute()) { + throw new HTTP_Request2_Exception('Absolute URL required'); + } elseif (!in_array(strtolower($this->url->getScheme()), array('https', 'http'))) { + throw new HTTP_Request2_Exception('Not a HTTP URL'); + } + if (empty($this->adapter)) { + $this->setAdapter($this->getConfig('adapter')); + } + // magic_quotes_runtime may break file uploads and chunked response + // processing; see bug #4543 + if ($magicQuotes = ini_get('magic_quotes_runtime')) { + ini_set('magic_quotes_runtime', false); + } + // force using single byte encoding if mbstring extension overloads + // strlen() and substr(); see bug #1781, bug #10605 + if (extension_loaded('mbstring') && (2 & ini_get('mbstring.func_overload'))) { + $oldEncoding = mb_internal_encoding(); + mb_internal_encoding('iso-8859-1'); + } + + try { + $response = $this->adapter->sendRequest($this); + } catch (Exception $e) { + } + // cleanup in either case (poor man's "finally" clause) + if ($magicQuotes) { + ini_set('magic_quotes_runtime', true); + } + if (!empty($oldEncoding)) { + mb_internal_encoding($oldEncoding); + } + // rethrow the exception + if (!empty($e)) { + throw $e; + } + return $response; + } + + /** + * Tries to detect MIME type of a file + * + * The method will try to use fileinfo extension if it is available, + * deprecated mime_content_type() function in the other case. If neither + * works, default 'application/octet-stream' MIME type is returned + * + * @param string filename + * @return string file MIME type + */ + protected static function detectMimeType($filename) + { + // finfo extension from PECL available + if (function_exists('finfo_open')) { + if (!isset(self::$_fileinfoDb)) { + self::$_fileinfoDb = @finfo_open(FILEINFO_MIME); + } + if (self::$_fileinfoDb) { + $info = finfo_file(self::$_fileinfoDb, $filename); + } + } + // (deprecated) mime_content_type function available + if (empty($info) && function_exists('mime_content_type')) { + return mime_content_type($filename); + } + return empty($info)? 'application/octet-stream': $info; + } +} +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Adapter.php b/extlib/HTTP/Request2/Adapter.php new file mode 100644 index 0000000000..39b092b346 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter.php @@ -0,0 +1,152 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Adapter.php 274684 2009-01-26 23:07:27Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Class representing a HTTP response + */ +require_once 'HTTP/Request2/Response.php'; + +/** + * Base class for HTTP_Request2 adapters + * + * HTTP_Request2 class itself only defines methods for aggregating the request + * data, all actual work of sending the request to the remote server and + * receiving its response is performed by adapters. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +abstract class HTTP_Request2_Adapter +{ + /** + * A list of methods that MUST NOT have a request body, per RFC 2616 + * @var array + */ + protected static $bodyDisallowed = array('TRACE'); + + /** + * Methods having defined semantics for request body + * + * Content-Length header (indicating that the body follows, section 4.3 of + * RFC 2616) will be sent for these methods even if no body was added + * + * @var array + * @link http://pear.php.net/bugs/bug.php?id=12900 + * @link http://pear.php.net/bugs/bug.php?id=14740 + */ + protected static $bodyRequired = array('POST', 'PUT'); + + /** + * Request being sent + * @var HTTP_Request2 + */ + protected $request; + + /** + * Request body + * @var string|resource|HTTP_Request2_MultipartBody + * @see HTTP_Request2::getBody() + */ + protected $requestBody; + + /** + * Length of the request body + * @var integer + */ + protected $contentLength; + + /** + * Sends request to the remote server and returns its response + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + abstract public function sendRequest(HTTP_Request2 $request); + + /** + * Calculates length of the request body, adds proper headers + * + * @param array associative array of request headers, this method will + * add proper 'Content-Length' and 'Content-Type' headers + * to this array (or remove them if not needed) + */ + protected function calculateRequestLength(&$headers) + { + $this->requestBody = $this->request->getBody(); + + if (is_string($this->requestBody)) { + $this->contentLength = strlen($this->requestBody); + } elseif (is_resource($this->requestBody)) { + $stat = fstat($this->requestBody); + $this->contentLength = $stat['size']; + rewind($this->requestBody); + } else { + $this->contentLength = $this->requestBody->getLength(); + $headers['content-type'] = 'multipart/form-data; boundary=' . + $this->requestBody->getBoundary(); + $this->requestBody->rewind(); + } + + if (in_array($this->request->getMethod(), self::$bodyDisallowed) || + 0 == $this->contentLength + ) { + unset($headers['content-type']); + // No body: send a Content-Length header nonetheless (request #12900), + // but do that only for methods that require a body (bug #14740) + if (in_array($this->request->getMethod(), self::$bodyRequired)) { + $headers['content-length'] = 0; + } else { + unset($headers['content-length']); + } + } else { + if (empty($headers['content-type'])) { + $headers['content-type'] = 'application/x-www-form-urlencoded'; + } + $headers['content-length'] = $this->contentLength; + } + } +} +?> diff --git a/extlib/HTTP/Request2/Adapter/Curl.php b/extlib/HTTP/Request2/Adapter/Curl.php new file mode 100644 index 0000000000..4d4de0dcc7 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter/Curl.php @@ -0,0 +1,383 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Curl.php 278226 2009-04-03 21:32:48Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for HTTP_Request2 adapters + */ +require_once 'HTTP/Request2/Adapter.php'; + +/** + * Adapter for HTTP_Request2 wrapping around cURL extension + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +class HTTP_Request2_Adapter_Curl extends HTTP_Request2_Adapter +{ + /** + * Mapping of header names to cURL options + * @var array + */ + protected static $headerMap = array( + 'accept-encoding' => CURLOPT_ENCODING, + 'cookie' => CURLOPT_COOKIE, + 'referer' => CURLOPT_REFERER, + 'user-agent' => CURLOPT_USERAGENT + ); + + /** + * Mapping of SSL context options to cURL options + * @var array + */ + protected static $sslContextMap = array( + 'ssl_verify_peer' => CURLOPT_SSL_VERIFYPEER, + 'ssl_cafile' => CURLOPT_CAINFO, + 'ssl_capath' => CURLOPT_CAPATH, + 'ssl_local_cert' => CURLOPT_SSLCERT, + 'ssl_passphrase' => CURLOPT_SSLCERTPASSWD + ); + + /** + * Response being received + * @var HTTP_Request2_Response + */ + protected $response; + + /** + * Whether 'sentHeaders' event was sent to observers + * @var boolean + */ + protected $eventSentHeaders = false; + + /** + * Whether 'receivedHeaders' event was sent to observers + * @var boolean + */ + protected $eventReceivedHeaders = false; + + /** + * Position within request body + * @var integer + * @see callbackReadBody() + */ + protected $position = 0; + + /** + * Information about last transfer, as returned by curl_getinfo() + * @var array + */ + protected $lastInfo; + + /** + * Sends request to the remote server and returns its response + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public function sendRequest(HTTP_Request2 $request) + { + if (!extension_loaded('curl')) { + throw new HTTP_Request2_Exception('cURL extension not available'); + } + + $this->request = $request; + $this->response = null; + $this->position = 0; + $this->eventSentHeaders = false; + $this->eventReceivedHeaders = false; + + try { + if (false === curl_exec($ch = $this->createCurlHandle())) { + $errorMessage = 'Error sending request: #' . curl_errno($ch) . + ' ' . curl_error($ch); + } + } catch (Exception $e) { + } + $this->lastInfo = curl_getinfo($ch); + curl_close($ch); + + if (!empty($e)) { + throw $e; + } elseif (!empty($errorMessage)) { + throw new HTTP_Request2_Exception($errorMessage); + } + + if (0 < $this->lastInfo['size_download']) { + $this->request->setLastEvent('receivedBody', $this->response); + } + return $this->response; + } + + /** + * Returns information about last transfer + * + * @return array associative array as returned by curl_getinfo() + */ + public function getInfo() + { + return $this->lastInfo; + } + + /** + * Creates a new cURL handle and populates it with data from the request + * + * @return resource a cURL handle, as created by curl_init() + * @throws HTTP_Request2_Exception + */ + protected function createCurlHandle() + { + $ch = curl_init(); + + curl_setopt_array($ch, array( + // setup callbacks + CURLOPT_READFUNCTION => array($this, 'callbackReadBody'), + CURLOPT_HEADERFUNCTION => array($this, 'callbackWriteHeader'), + CURLOPT_WRITEFUNCTION => array($this, 'callbackWriteBody'), + // disallow redirects + CURLOPT_FOLLOWLOCATION => false, + // buffer size + CURLOPT_BUFFERSIZE => $this->request->getConfig('buffer_size'), + // connection timeout + CURLOPT_CONNECTTIMEOUT => $this->request->getConfig('connect_timeout'), + // save full outgoing headers, in case someone is interested + CURLINFO_HEADER_OUT => true, + // request url + CURLOPT_URL => $this->request->getUrl()->getUrl() + )); + + // request timeout + if ($timeout = $this->request->getConfig('timeout')) { + curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); + } + + // set HTTP version + switch ($this->request->getConfig('protocol_version')) { + case '1.0': + curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); + break; + case '1.1': + curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); + } + + // set request method + switch ($this->request->getMethod()) { + case HTTP_Request2::METHOD_GET: + curl_setopt($ch, CURLOPT_HTTPGET, true); + break; + case HTTP_Request2::METHOD_POST: + curl_setopt($ch, CURLOPT_POST, true); + break; + default: + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $this->request->getMethod()); + } + + // set proxy, if needed + if ($host = $this->request->getConfig('proxy_host')) { + if (!($port = $this->request->getConfig('proxy_port'))) { + throw new HTTP_Request2_Exception('Proxy port not provided'); + } + curl_setopt($ch, CURLOPT_PROXY, $host . ':' . $port); + if ($user = $this->request->getConfig('proxy_user')) { + curl_setopt($ch, CURLOPT_PROXYUSERPWD, $user . ':' . + $this->request->getConfig('proxy_password')); + switch ($this->request->getConfig('proxy_auth_scheme')) { + case HTTP_Request2::AUTH_BASIC: + curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_BASIC); + break; + case HTTP_Request2::AUTH_DIGEST: + curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_DIGEST); + } + } + } + + // set authentication data + if ($auth = $this->request->getAuth()) { + curl_setopt($ch, CURLOPT_USERPWD, $auth['user'] . ':' . $auth['password']); + switch ($auth['scheme']) { + case HTTP_Request2::AUTH_BASIC: + curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); + break; + case HTTP_Request2::AUTH_DIGEST: + curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST); + } + } + + // set SSL options + if (0 == strcasecmp($this->request->getUrl()->getScheme(), 'https')) { + foreach ($this->request->getConfig() as $name => $value) { + if ('ssl_verify_host' == $name && null !== $value) { + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, $value? 2: 0); + } elseif (isset(self::$sslContextMap[$name]) && null !== $value) { + curl_setopt($ch, self::$sslContextMap[$name], $value); + } + } + } + + $headers = $this->request->getHeaders(); + // make cURL automagically send proper header + if (!isset($headers['accept-encoding'])) { + $headers['accept-encoding'] = ''; + } + + // set headers having special cURL keys + foreach (self::$headerMap as $name => $option) { + if (isset($headers[$name])) { + curl_setopt($ch, $option, $headers[$name]); + unset($headers[$name]); + } + } + + $this->calculateRequestLength($headers); + + // set headers not having special keys + $headersFmt = array(); + foreach ($headers as $name => $value) { + $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); + $headersFmt[] = $canonicalName . ': ' . $value; + } + curl_setopt($ch, CURLOPT_HTTPHEADER, $headersFmt); + + return $ch; + } + + /** + * Callback function called by cURL for reading the request body + * + * @param resource cURL handle + * @param resource file descriptor (not used) + * @param integer maximum length of data to return + * @return string part of the request body, up to $length bytes + */ + protected function callbackReadBody($ch, $fd, $length) + { + if (!$this->eventSentHeaders) { + $this->request->setLastEvent( + 'sentHeaders', curl_getinfo($ch, CURLINFO_HEADER_OUT) + ); + $this->eventSentHeaders = true; + } + if (in_array($this->request->getMethod(), self::$bodyDisallowed) || + 0 == $this->contentLength || $this->position >= $this->contentLength + ) { + return ''; + } + if (is_string($this->requestBody)) { + $string = substr($this->requestBody, $this->position, $length); + } elseif (is_resource($this->requestBody)) { + $string = fread($this->requestBody, $length); + } else { + $string = $this->requestBody->read($length); + } + $this->request->setLastEvent('sentBodyPart', strlen($string)); + $this->position += strlen($string); + return $string; + } + + /** + * Callback function called by cURL for saving the response headers + * + * @param resource cURL handle + * @param string response header (with trailing CRLF) + * @return integer number of bytes saved + * @see HTTP_Request2_Response::parseHeaderLine() + */ + protected function callbackWriteHeader($ch, $string) + { + // we may receive a second set of headers if doing e.g. digest auth + if ($this->eventReceivedHeaders || !$this->eventSentHeaders) { + // don't bother with 100-Continue responses (bug #15785) + if (!$this->eventSentHeaders || + $this->response->getStatus() >= 200 + ) { + $this->request->setLastEvent( + 'sentHeaders', curl_getinfo($ch, CURLINFO_HEADER_OUT) + ); + } + $this->eventSentHeaders = true; + // we'll need a new response object + if ($this->eventReceivedHeaders) { + $this->eventReceivedHeaders = false; + $this->response = null; + } + } + if (empty($this->response)) { + $this->response = new HTTP_Request2_Response($string, false); + } else { + $this->response->parseHeaderLine($string); + if ('' == trim($string)) { + // don't bother with 100-Continue responses (bug #15785) + if (200 <= $this->response->getStatus()) { + $this->request->setLastEvent('receivedHeaders', $this->response); + } + $this->eventReceivedHeaders = true; + } + } + return strlen($string); + } + + /** + * Callback function called by cURL for saving the response body + * + * @param resource cURL handle (not used) + * @param string part of the response body + * @return integer number of bytes saved + * @see HTTP_Request2_Response::appendBody() + */ + protected function callbackWriteBody($ch, $string) + { + // cURL calls WRITEFUNCTION callback without calling HEADERFUNCTION if + // response doesn't start with proper HTTP status line (see bug #15716) + if (empty($this->response)) { + throw new HTTP_Request2_Exception("Malformed response: {$string}"); + } + if ($this->request->getConfig('store_body')) { + $this->response->appendBody($string); + } + $this->request->setLastEvent('receivedBodyPart', $string); + return strlen($string); + } +} +?> diff --git a/extlib/HTTP/Request2/Adapter/Mock.php b/extlib/HTTP/Request2/Adapter/Mock.php new file mode 100644 index 0000000000..89688003b2 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter/Mock.php @@ -0,0 +1,171 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Mock.php 274406 2009-01-23 18:01:57Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for HTTP_Request2 adapters + */ +require_once 'HTTP/Request2/Adapter.php'; + +/** + * Mock adapter intended for testing + * + * Can be used to test applications depending on HTTP_Request2 package without + * actually performing any HTTP requests. This adapter will return responses + * previously added via addResponse() + * + * $mock = new HTTP_Request2_Adapter_Mock(); + * $mock->addResponse("HTTP/1.1 ... "); + * + * $request = new HTTP_Request2(); + * $request->setAdapter($mock); + * + * // This will return the response set above + * $response = $req->send(); + * + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +class HTTP_Request2_Adapter_Mock extends HTTP_Request2_Adapter +{ + /** + * A queue of responses to be returned by sendRequest() + * @var array + */ + protected $responses = array(); + + /** + * Returns the next response from the queue built by addResponse() + * + * If the queue is empty will return default empty response with status 400, + * if an Exception object was added to the queue it will be thrown. + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws Exception + */ + public function sendRequest(HTTP_Request2 $request) + { + if (count($this->responses) > 0) { + $response = array_shift($this->responses); + if ($response instanceof HTTP_Request2_Response) { + return $response; + } else { + // rethrow the exception, + $class = get_class($response); + $message = $response->getMessage(); + $code = $response->getCode(); + throw new $class($message, $code); + } + } else { + return self::createResponseFromString("HTTP/1.1 400 Bad Request\r\n\r\n"); + } + } + + /** + * Adds response to the queue + * + * @param mixed either a string, a pointer to an open file, + * a HTTP_Request2_Response or Exception object + * @throws HTTP_Request2_Exception + */ + public function addResponse($response) + { + if (is_string($response)) { + $response = self::createResponseFromString($response); + } elseif (is_resource($response)) { + $response = self::createResponseFromFile($response); + } elseif (!$response instanceof HTTP_Request2_Response && + !$response instanceof Exception + ) { + throw new HTTP_Request2_Exception('Parameter is not a valid response'); + } + $this->responses[] = $response; + } + + /** + * Creates a new HTTP_Request2_Response object from a string + * + * @param string + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public static function createResponseFromString($str) + { + $parts = preg_split('!(\r?\n){2}!m', $str, 2); + $headerLines = explode("\n", $parts[0]); + $response = new HTTP_Request2_Response(array_shift($headerLines)); + foreach ($headerLines as $headerLine) { + $response->parseHeaderLine($headerLine); + } + $response->parseHeaderLine(''); + if (isset($parts[1])) { + $response->appendBody($parts[1]); + } + return $response; + } + + /** + * Creates a new HTTP_Request2_Response object from a file + * + * @param resource file pointer returned by fopen() + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public static function createResponseFromFile($fp) + { + $response = new HTTP_Request2_Response(fgets($fp)); + do { + $headerLine = fgets($fp); + $response->parseHeaderLine($headerLine); + } while ('' != trim($headerLine)); + + while (!feof($fp)) { + $response->appendBody(fread($fp, 8192)); + } + return $response; + } +} +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Adapter/Socket.php b/extlib/HTTP/Request2/Adapter/Socket.php new file mode 100644 index 0000000000..ff44d49594 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter/Socket.php @@ -0,0 +1,971 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Socket.php 279760 2009-05-03 10:46:42Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for HTTP_Request2 adapters + */ +require_once 'HTTP/Request2/Adapter.php'; + +/** + * Socket-based adapter for HTTP_Request2 + * + * This adapter uses only PHP sockets and will work on almost any PHP + * environment. Code is based on original HTTP_Request PEAR package. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +class HTTP_Request2_Adapter_Socket extends HTTP_Request2_Adapter +{ + /** + * Regular expression for 'token' rule from RFC 2616 + */ + const REGEXP_TOKEN = '[^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+'; + + /** + * Regular expression for 'quoted-string' rule from RFC 2616 + */ + const REGEXP_QUOTED_STRING = '"(?:\\\\.|[^\\\\"])*"'; + + /** + * Connected sockets, needed for Keep-Alive support + * @var array + * @see connect() + */ + protected static $sockets = array(); + + /** + * Data for digest authentication scheme + * + * The keys for the array are URL prefixes. + * + * The values are associative arrays with data (realm, nonce, nonce-count, + * opaque...) needed for digest authentication. Stored here to prevent making + * duplicate requests to digest-protected resources after we have already + * received the challenge. + * + * @var array + */ + protected static $challenges = array(); + + /** + * Connected socket + * @var resource + * @see connect() + */ + protected $socket; + + /** + * Challenge used for server digest authentication + * @var array + */ + protected $serverChallenge; + + /** + * Challenge used for proxy digest authentication + * @var array + */ + protected $proxyChallenge; + + /** + * Global timeout, exception will be raised if request continues past this time + * @var integer + */ + protected $timeout = null; + + /** + * Remaining length of the current chunk, when reading chunked response + * @var integer + * @see readChunked() + */ + protected $chunkLength = 0; + + /** + * Sends request to the remote server and returns its response + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public function sendRequest(HTTP_Request2 $request) + { + $this->request = $request; + $keepAlive = $this->connect(); + $headers = $this->prepareHeaders(); + + // Use global request timeout if given, see feature requests #5735, #8964 + if ($timeout = $request->getConfig('timeout')) { + $this->timeout = time() + $timeout; + } else { + $this->timeout = null; + } + + try { + if (false === @fwrite($this->socket, $headers, strlen($headers))) { + throw new HTTP_Request2_Exception('Error writing request'); + } + // provide request headers to the observer, see request #7633 + $this->request->setLastEvent('sentHeaders', $headers); + $this->writeBody(); + + if ($this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $request->getConfig('timeout') . ' second(s)' + ); + } + + $response = $this->readResponse(); + + if (!$this->canKeepAlive($keepAlive, $response)) { + $this->disconnect(); + } + + if ($this->shouldUseProxyDigestAuth($response)) { + return $this->sendRequest($request); + } + if ($this->shouldUseServerDigestAuth($response)) { + return $this->sendRequest($request); + } + if ($authInfo = $response->getHeader('authentication-info')) { + $this->updateChallenge($this->serverChallenge, $authInfo); + } + if ($proxyInfo = $response->getHeader('proxy-authentication-info')) { + $this->updateChallenge($this->proxyChallenge, $proxyInfo); + } + + } catch (Exception $e) { + $this->disconnect(); + throw $e; + } + + return $response; + } + + /** + * Connects to the remote server + * + * @return bool whether the connection can be persistent + * @throws HTTP_Request2_Exception + */ + protected function connect() + { + $secure = 0 == strcasecmp($this->request->getUrl()->getScheme(), 'https'); + $tunnel = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); + $headers = $this->request->getHeaders(); + $reqHost = $this->request->getUrl()->getHost(); + if (!($reqPort = $this->request->getUrl()->getPort())) { + $reqPort = $secure? 443: 80; + } + + if ($host = $this->request->getConfig('proxy_host')) { + if (!($port = $this->request->getConfig('proxy_port'))) { + throw new HTTP_Request2_Exception('Proxy port not provided'); + } + $proxy = true; + } else { + $host = $reqHost; + $port = $reqPort; + $proxy = false; + } + + if ($tunnel && !$proxy) { + throw new HTTP_Request2_Exception( + "Trying to perform CONNECT request without proxy" + ); + } + if ($secure && !in_array('ssl', stream_get_transports())) { + throw new HTTP_Request2_Exception( + 'Need OpenSSL support for https:// requests' + ); + } + + // RFC 2068, section 19.7.1: A client MUST NOT send the Keep-Alive + // connection token to a proxy server... + if ($proxy && !$secure && + !empty($headers['connection']) && 'Keep-Alive' == $headers['connection'] + ) { + $this->request->setHeader('connection'); + } + + $keepAlive = ('1.1' == $this->request->getConfig('protocol_version') && + empty($headers['connection'])) || + (!empty($headers['connection']) && + 'Keep-Alive' == $headers['connection']); + $host = ((!$secure || $proxy)? 'tcp://': 'ssl://') . $host; + + $options = array(); + if ($secure || $tunnel) { + foreach ($this->request->getConfig() as $name => $value) { + if ('ssl_' == substr($name, 0, 4) && null !== $value) { + if ('ssl_verify_host' == $name) { + if ($value) { + $options['CN_match'] = $reqHost; + } + } else { + $options[substr($name, 4)] = $value; + } + } + } + ksort($options); + } + + // Changing SSL context options after connection is established does *not* + // work, we need a new connection if options change + $remote = $host . ':' . $port; + $socketKey = $remote . (($secure && $proxy)? "->{$reqHost}:{$reqPort}": '') . + (empty($options)? '': ':' . serialize($options)); + unset($this->socket); + + // We use persistent connections and have a connected socket? + // Ensure that the socket is still connected, see bug #16149 + if ($keepAlive && !empty(self::$sockets[$socketKey]) && + !feof(self::$sockets[$socketKey]) + ) { + $this->socket =& self::$sockets[$socketKey]; + + } elseif ($secure && $proxy && !$tunnel) { + $this->establishTunnel(); + $this->request->setLastEvent( + 'connect', "ssl://{$reqHost}:{$reqPort} via {$host}:{$port}" + ); + self::$sockets[$socketKey] =& $this->socket; + + } else { + // Set SSL context options if doing HTTPS request or creating a tunnel + $context = stream_context_create(); + foreach ($options as $name => $value) { + if (!stream_context_set_option($context, 'ssl', $name, $value)) { + throw new HTTP_Request2_Exception( + "Error setting SSL context option '{$name}'" + ); + } + } + $this->socket = @stream_socket_client( + $remote, $errno, $errstr, + $this->request->getConfig('connect_timeout'), + STREAM_CLIENT_CONNECT, $context + ); + if (!$this->socket) { + throw new HTTP_Request2_Exception( + "Unable to connect to {$remote}. Error #{$errno}: {$errstr}" + ); + } + $this->request->setLastEvent('connect', $remote); + self::$sockets[$socketKey] =& $this->socket; + } + return $keepAlive; + } + + /** + * Establishes a tunnel to a secure remote server via HTTP CONNECT request + * + * This method will fail if 'ssl_verify_peer' is enabled. Probably because PHP + * sees that we are connected to a proxy server (duh!) rather than the server + * that presents its certificate. + * + * @link http://tools.ietf.org/html/rfc2817#section-5.2 + * @throws HTTP_Request2_Exception + */ + protected function establishTunnel() + { + $donor = new self; + $connect = new HTTP_Request2( + $this->request->getUrl(), HTTP_Request2::METHOD_CONNECT, + array_merge($this->request->getConfig(), + array('adapter' => $donor)) + ); + $response = $connect->send(); + // Need any successful (2XX) response + if (200 > $response->getStatus() || 300 <= $response->getStatus()) { + throw new HTTP_Request2_Exception( + 'Failed to connect via HTTPS proxy. Proxy response: ' . + $response->getStatus() . ' ' . $response->getReasonPhrase() + ); + } + $this->socket = $donor->socket; + + $modes = array( + STREAM_CRYPTO_METHOD_TLS_CLIENT, + STREAM_CRYPTO_METHOD_SSLv3_CLIENT, + STREAM_CRYPTO_METHOD_SSLv23_CLIENT, + STREAM_CRYPTO_METHOD_SSLv2_CLIENT + ); + + foreach ($modes as $mode) { + if (stream_socket_enable_crypto($this->socket, true, $mode)) { + return; + } + } + throw new HTTP_Request2_Exception( + 'Failed to enable secure connection when connecting through proxy' + ); + } + + /** + * Checks whether current connection may be reused or should be closed + * + * @param boolean whether connection could be persistent + * in the first place + * @param HTTP_Request2_Response response object to check + * @return boolean + */ + protected function canKeepAlive($requestKeepAlive, HTTP_Request2_Response $response) + { + // Do not close socket on successful CONNECT request + if (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && + 200 <= $response->getStatus() && 300 > $response->getStatus() + ) { + return true; + } + + $lengthKnown = 'chunked' == strtolower($response->getHeader('transfer-encoding')) || + null !== $response->getHeader('content-length'); + $persistent = 'keep-alive' == strtolower($response->getHeader('connection')) || + (null === $response->getHeader('connection') && + '1.1' == $response->getVersion()); + return $requestKeepAlive && $lengthKnown && $persistent; + } + + /** + * Disconnects from the remote server + */ + protected function disconnect() + { + if (is_resource($this->socket)) { + fclose($this->socket); + $this->socket = null; + $this->request->setLastEvent('disconnect'); + } + } + + /** + * Checks whether another request should be performed with server digest auth + * + * Several conditions should be satisfied for it to return true: + * - response status should be 401 + * - auth credentials should be set in the request object + * - response should contain WWW-Authenticate header with digest challenge + * - there is either no challenge stored for this URL or new challenge + * contains stale=true parameter (in other case we probably just failed + * due to invalid username / password) + * + * The method stores challenge values in $challenges static property + * + * @param HTTP_Request2_Response response to check + * @return boolean whether another request should be performed + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function shouldUseServerDigestAuth(HTTP_Request2_Response $response) + { + // no sense repeating a request if we don't have credentials + if (401 != $response->getStatus() || !$this->request->getAuth()) { + return false; + } + if (!$challenge = $this->parseDigestChallenge($response->getHeader('www-authenticate'))) { + return false; + } + + $url = $this->request->getUrl(); + $scheme = $url->getScheme(); + $host = $scheme . '://' . $url->getHost(); + if ($port = $url->getPort()) { + if ((0 == strcasecmp($scheme, 'http') && 80 != $port) || + (0 == strcasecmp($scheme, 'https') && 443 != $port) + ) { + $host .= ':' . $port; + } + } + + if (!empty($challenge['domain'])) { + $prefixes = array(); + foreach (preg_split('/\\s+/', $challenge['domain']) as $prefix) { + // don't bother with different servers + if ('/' == substr($prefix, 0, 1)) { + $prefixes[] = $host . $prefix; + } + } + } + if (empty($prefixes)) { + $prefixes = array($host . '/'); + } + + $ret = true; + foreach ($prefixes as $prefix) { + if (!empty(self::$challenges[$prefix]) && + (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) + ) { + // probably credentials are invalid + $ret = false; + } + self::$challenges[$prefix] =& $challenge; + } + return $ret; + } + + /** + * Checks whether another request should be performed with proxy digest auth + * + * Several conditions should be satisfied for it to return true: + * - response status should be 407 + * - proxy auth credentials should be set in the request object + * - response should contain Proxy-Authenticate header with digest challenge + * - there is either no challenge stored for this proxy or new challenge + * contains stale=true parameter (in other case we probably just failed + * due to invalid username / password) + * + * The method stores challenge values in $challenges static property + * + * @param HTTP_Request2_Response response to check + * @return boolean whether another request should be performed + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function shouldUseProxyDigestAuth(HTTP_Request2_Response $response) + { + if (407 != $response->getStatus() || !$this->request->getConfig('proxy_user')) { + return false; + } + if (!($challenge = $this->parseDigestChallenge($response->getHeader('proxy-authenticate')))) { + return false; + } + + $key = 'proxy://' . $this->request->getConfig('proxy_host') . + ':' . $this->request->getConfig('proxy_port'); + + if (!empty(self::$challenges[$key]) && + (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) + ) { + $ret = false; + } else { + $ret = true; + } + self::$challenges[$key] = $challenge; + return $ret; + } + + /** + * Extracts digest method challenge from (WWW|Proxy)-Authenticate header value + * + * There is a problem with implementation of RFC 2617: several of the parameters + * here are defined as quoted-string and thus may contain backslash escaped + * double quotes (RFC 2616, section 2.2). However, RFC 2617 defines unq(X) as + * just value of quoted-string X without surrounding quotes, it doesn't speak + * about removing backslash escaping. + * + * Now realm parameter is user-defined and human-readable, strange things + * happen when it contains quotes: + * - Apache allows quotes in realm, but apparently uses realm value without + * backslashes for digest computation + * - Squid allows (manually escaped) quotes there, but it is impossible to + * authorize with either escaped or unescaped quotes used in digest, + * probably it can't parse the response (?) + * - Both IE and Firefox display realm value with backslashes in + * the password popup and apparently use the same value for digest + * + * HTTP_Request2 follows IE and Firefox (and hopefully RFC 2617) in + * quoted-string handling, unfortunately that means failure to authorize + * sometimes + * + * @param string value of WWW-Authenticate or Proxy-Authenticate header + * @return mixed associative array with challenge parameters, false if + * no challenge is present in header value + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function parseDigestChallenge($headerValue) + { + $authParam = '(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . + self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')'; + $challenge = "!(?<=^|\\s|,)Digest ({$authParam}\\s*(,\\s*|$))+!"; + if (!preg_match($challenge, $headerValue, $matches)) { + return false; + } + + preg_match_all('!' . $authParam . '!', $matches[0], $params); + $paramsAry = array(); + $knownParams = array('realm', 'domain', 'nonce', 'opaque', 'stale', + 'algorithm', 'qop'); + for ($i = 0; $i < count($params[0]); $i++) { + // section 3.2.1: Any unrecognized directive MUST be ignored. + if (in_array($params[1][$i], $knownParams)) { + if ('"' == substr($params[2][$i], 0, 1)) { + $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); + } else { + $paramsAry[$params[1][$i]] = $params[2][$i]; + } + } + } + // we only support qop=auth + if (!empty($paramsAry['qop']) && + !in_array('auth', array_map('trim', explode(',', $paramsAry['qop']))) + ) { + throw new HTTP_Request2_Exception( + "Only 'auth' qop is currently supported in digest authentication, " . + "server requested '{$paramsAry['qop']}'" + ); + } + // we only support algorithm=MD5 + if (!empty($paramsAry['algorithm']) && 'MD5' != $paramsAry['algorithm']) { + throw new HTTP_Request2_Exception( + "Only 'MD5' algorithm is currently supported in digest authentication, " . + "server requested '{$paramsAry['algorithm']}'" + ); + } + + return $paramsAry; + } + + /** + * Parses [Proxy-]Authentication-Info header value and updates challenge + * + * @param array challenge to update + * @param string value of [Proxy-]Authentication-Info header + * @todo validate server rspauth response + */ + protected function updateChallenge(&$challenge, $headerValue) + { + $authParam = '!(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . + self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')!'; + $paramsAry = array(); + + preg_match_all($authParam, $headerValue, $params); + for ($i = 0; $i < count($params[0]); $i++) { + if ('"' == substr($params[2][$i], 0, 1)) { + $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); + } else { + $paramsAry[$params[1][$i]] = $params[2][$i]; + } + } + // for now, just update the nonce value + if (!empty($paramsAry['nextnonce'])) { + $challenge['nonce'] = $paramsAry['nextnonce']; + $challenge['nc'] = 1; + } + } + + /** + * Creates a value for [Proxy-]Authorization header when using digest authentication + * + * @param string user name + * @param string password + * @param string request URL + * @param array digest challenge parameters + * @return string value of [Proxy-]Authorization request header + * @link http://tools.ietf.org/html/rfc2617#section-3.2.2 + */ + protected function createDigestResponse($user, $password, $url, &$challenge) + { + if (false !== ($q = strpos($url, '?')) && + $this->request->getConfig('digest_compat_ie') + ) { + $url = substr($url, 0, $q); + } + + $a1 = md5($user . ':' . $challenge['realm'] . ':' . $password); + $a2 = md5($this->request->getMethod() . ':' . $url); + + if (empty($challenge['qop'])) { + $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $a2); + } else { + $challenge['cnonce'] = 'Req2.' . rand(); + if (empty($challenge['nc'])) { + $challenge['nc'] = 1; + } + $nc = sprintf('%08x', $challenge['nc']++); + $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $nc . ':' . + $challenge['cnonce'] . ':auth:' . $a2); + } + return 'Digest username="' . str_replace(array('\\', '"'), array('\\\\', '\\"'), $user) . '", ' . + 'realm="' . $challenge['realm'] . '", ' . + 'nonce="' . $challenge['nonce'] . '", ' . + 'uri="' . $url . '", ' . + 'response="' . $digest . '"' . + (!empty($challenge['opaque'])? + ', opaque="' . $challenge['opaque'] . '"': + '') . + (!empty($challenge['qop'])? + ', qop="auth", nc=' . $nc . ', cnonce="' . $challenge['cnonce'] . '"': + ''); + } + + /** + * Adds 'Authorization' header (if needed) to request headers array + * + * @param array request headers + * @param string request host (needed for digest authentication) + * @param string request URL (needed for digest authentication) + * @throws HTTP_Request2_Exception + */ + protected function addAuthorizationHeader(&$headers, $requestHost, $requestUrl) + { + if (!($auth = $this->request->getAuth())) { + return; + } + switch ($auth['scheme']) { + case HTTP_Request2::AUTH_BASIC: + $headers['authorization'] = + 'Basic ' . base64_encode($auth['user'] . ':' . $auth['password']); + break; + + case HTTP_Request2::AUTH_DIGEST: + unset($this->serverChallenge); + $fullUrl = ('/' == $requestUrl[0])? + $this->request->getUrl()->getScheme() . '://' . + $requestHost . $requestUrl: + $requestUrl; + foreach (array_keys(self::$challenges) as $key) { + if ($key == substr($fullUrl, 0, strlen($key))) { + $headers['authorization'] = $this->createDigestResponse( + $auth['user'], $auth['password'], + $requestUrl, self::$challenges[$key] + ); + $this->serverChallenge =& self::$challenges[$key]; + break; + } + } + break; + + default: + throw new HTTP_Request2_Exception( + "Unknown HTTP authentication scheme '{$auth['scheme']}'" + ); + } + } + + /** + * Adds 'Proxy-Authorization' header (if needed) to request headers array + * + * @param array request headers + * @param string request URL (needed for digest authentication) + * @throws HTTP_Request2_Exception + */ + protected function addProxyAuthorizationHeader(&$headers, $requestUrl) + { + if (!$this->request->getConfig('proxy_host') || + !($user = $this->request->getConfig('proxy_user')) || + (0 == strcasecmp('https', $this->request->getUrl()->getScheme()) && + HTTP_Request2::METHOD_CONNECT != $this->request->getMethod()) + ) { + return; + } + + $password = $this->request->getConfig('proxy_password'); + switch ($this->request->getConfig('proxy_auth_scheme')) { + case HTTP_Request2::AUTH_BASIC: + $headers['proxy-authorization'] = + 'Basic ' . base64_encode($user . ':' . $password); + break; + + case HTTP_Request2::AUTH_DIGEST: + unset($this->proxyChallenge); + $proxyUrl = 'proxy://' . $this->request->getConfig('proxy_host') . + ':' . $this->request->getConfig('proxy_port'); + if (!empty(self::$challenges[$proxyUrl])) { + $headers['proxy-authorization'] = $this->createDigestResponse( + $user, $password, + $requestUrl, self::$challenges[$proxyUrl] + ); + $this->proxyChallenge =& self::$challenges[$proxyUrl]; + } + break; + + default: + throw new HTTP_Request2_Exception( + "Unknown HTTP authentication scheme '" . + $this->request->getConfig('proxy_auth_scheme') . "'" + ); + } + } + + + /** + * Creates the string with the Request-Line and request headers + * + * @return string + * @throws HTTP_Request2_Exception + */ + protected function prepareHeaders() + { + $headers = $this->request->getHeaders(); + $url = $this->request->getUrl(); + $connect = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); + $host = $url->getHost(); + + $defaultPort = 0 == strcasecmp($url->getScheme(), 'https')? 443: 80; + if (($port = $url->getPort()) && $port != $defaultPort || $connect) { + $host .= ':' . (empty($port)? $defaultPort: $port); + } + // Do not overwrite explicitly set 'Host' header, see bug #16146 + if (!isset($headers['host'])) { + $headers['host'] = $host; + } + + if ($connect) { + $requestUrl = $host; + + } else { + if (!$this->request->getConfig('proxy_host') || + 0 == strcasecmp($url->getScheme(), 'https') + ) { + $requestUrl = ''; + } else { + $requestUrl = $url->getScheme() . '://' . $host; + } + $path = $url->getPath(); + $query = $url->getQuery(); + $requestUrl .= (empty($path)? '/': $path) . (empty($query)? '': '?' . $query); + } + + if ('1.1' == $this->request->getConfig('protocol_version') && + extension_loaded('zlib') && !isset($headers['accept-encoding']) + ) { + $headers['accept-encoding'] = 'gzip, deflate'; + } + + $this->addAuthorizationHeader($headers, $host, $requestUrl); + $this->addProxyAuthorizationHeader($headers, $requestUrl); + $this->calculateRequestLength($headers); + + $headersStr = $this->request->getMethod() . ' ' . $requestUrl . ' HTTP/' . + $this->request->getConfig('protocol_version') . "\r\n"; + foreach ($headers as $name => $value) { + $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); + $headersStr .= $canonicalName . ': ' . $value . "\r\n"; + } + return $headersStr . "\r\n"; + } + + /** + * Sends the request body + * + * @throws HTTP_Request2_Exception + */ + protected function writeBody() + { + if (in_array($this->request->getMethod(), self::$bodyDisallowed) || + 0 == $this->contentLength + ) { + return; + } + + $position = 0; + $bufferSize = $this->request->getConfig('buffer_size'); + while ($position < $this->contentLength) { + if (is_string($this->requestBody)) { + $str = substr($this->requestBody, $position, $bufferSize); + } elseif (is_resource($this->requestBody)) { + $str = fread($this->requestBody, $bufferSize); + } else { + $str = $this->requestBody->read($bufferSize); + } + if (false === @fwrite($this->socket, $str, strlen($str))) { + throw new HTTP_Request2_Exception('Error writing request'); + } + // Provide the length of written string to the observer, request #7630 + $this->request->setLastEvent('sentBodyPart', strlen($str)); + $position += strlen($str); + } + } + + /** + * Reads the remote server's response + * + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + protected function readResponse() + { + $bufferSize = $this->request->getConfig('buffer_size'); + + do { + $response = new HTTP_Request2_Response($this->readLine($bufferSize), true); + do { + $headerLine = $this->readLine($bufferSize); + $response->parseHeaderLine($headerLine); + } while ('' != $headerLine); + } while (in_array($response->getStatus(), array(100, 101))); + + $this->request->setLastEvent('receivedHeaders', $response); + + // No body possible in such responses + if (HTTP_Request2::METHOD_HEAD == $this->request->getMethod() || + (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && + 200 <= $response->getStatus() && 300 > $response->getStatus()) || + in_array($response->getStatus(), array(204, 304)) + ) { + return $response; + } + + $chunked = 'chunked' == $response->getHeader('transfer-encoding'); + $length = $response->getHeader('content-length'); + $hasBody = false; + if ($chunked || null === $length || 0 < intval($length)) { + // RFC 2616, section 4.4: + // 3. ... If a message is received with both a + // Transfer-Encoding header field and a Content-Length header field, + // the latter MUST be ignored. + $toRead = ($chunked || null === $length)? null: $length; + $this->chunkLength = 0; + + while (!feof($this->socket) && (is_null($toRead) || 0 < $toRead)) { + if ($chunked) { + $data = $this->readChunked($bufferSize); + } elseif (is_null($toRead)) { + $data = $this->fread($bufferSize); + } else { + $data = $this->fread(min($toRead, $bufferSize)); + $toRead -= strlen($data); + } + if ('' == $data && (!$this->chunkLength || feof($this->socket))) { + break; + } + + $hasBody = true; + if ($this->request->getConfig('store_body')) { + $response->appendBody($data); + } + if (!in_array($response->getHeader('content-encoding'), array('identity', null))) { + $this->request->setLastEvent('receivedEncodedBodyPart', $data); + } else { + $this->request->setLastEvent('receivedBodyPart', $data); + } + } + } + + if ($hasBody) { + $this->request->setLastEvent('receivedBody', $response); + } + return $response; + } + + /** + * Reads until either the end of the socket or a newline, whichever comes first + * + * Strips the trailing newline from the returned data, handles global + * request timeout. Method idea borrowed from Net_Socket PEAR package. + * + * @param int buffer size to use for reading + * @return Available data up to the newline (not including newline) + * @throws HTTP_Request2_Exception In case of timeout + */ + protected function readLine($bufferSize) + { + $line = ''; + while (!feof($this->socket)) { + if ($this->timeout) { + stream_set_timeout($this->socket, max($this->timeout - time(), 1)); + } + $line .= @fgets($this->socket, $bufferSize); + $info = stream_get_meta_data($this->socket); + if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $this->request->getConfig('timeout') . ' second(s)' + ); + } + if (substr($line, -1) == "\n") { + return rtrim($line, "\r\n"); + } + } + return $line; + } + + /** + * Wrapper around fread(), handles global request timeout + * + * @param int Reads up to this number of bytes + * @return Data read from socket + * @throws HTTP_Request2_Exception In case of timeout + */ + protected function fread($length) + { + if ($this->timeout) { + stream_set_timeout($this->socket, max($this->timeout - time(), 1)); + } + $data = fread($this->socket, $length); + $info = stream_get_meta_data($this->socket); + if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $this->request->getConfig('timeout') . ' second(s)' + ); + } + return $data; + } + + /** + * Reads a part of response body encoded with chunked Transfer-Encoding + * + * @param int buffer size to use for reading + * @return string + * @throws HTTP_Request2_Exception + */ + protected function readChunked($bufferSize) + { + // at start of the next chunk? + if (0 == $this->chunkLength) { + $line = $this->readLine($bufferSize); + if (!preg_match('/^([0-9a-f]+)/i', $line, $matches)) { + throw new HTTP_Request2_Exception( + "Cannot decode chunked response, invalid chunk length '{$line}'" + ); + } else { + $this->chunkLength = hexdec($matches[1]); + // Chunk with zero length indicates the end + if (0 == $this->chunkLength) { + $this->readLine($bufferSize); + return ''; + } + } + } + $data = $this->fread(min($this->chunkLength, $bufferSize)); + $this->chunkLength -= strlen($data); + if (0 == $this->chunkLength) { + $this->readLine($bufferSize); // Trailing CRLF + } + return $data; + } +} + +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Exception.php b/extlib/HTTP/Request2/Exception.php new file mode 100644 index 0000000000..bfef7d6c22 --- /dev/null +++ b/extlib/HTTP/Request2/Exception.php @@ -0,0 +1,62 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Exception.php 273003 2009-01-07 19:28:22Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for exceptions in PEAR + */ +require_once 'PEAR/Exception.php'; + +/** + * Exception class for HTTP_Request2 package + * + * Such a class is required by the Exception RFC: + * http://pear.php.net/pepr/pepr-proposal-show.php?id=132 + * + * @category HTTP + * @package HTTP_Request2 + * @version Release: 0.4.1 + */ +class HTTP_Request2_Exception extends PEAR_Exception +{ +} +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/MultipartBody.php b/extlib/HTTP/Request2/MultipartBody.php new file mode 100644 index 0000000000..d8afd8344c --- /dev/null +++ b/extlib/HTTP/Request2/MultipartBody.php @@ -0,0 +1,274 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: MultipartBody.php 287306 2009-08-14 15:22:52Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Class for building multipart/form-data request body + * + * The class helps to reduce memory consumption by streaming large file uploads + * from disk, it also allows monitoring of upload progress (see request #7630) + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + * @link http://tools.ietf.org/html/rfc1867 + */ +class HTTP_Request2_MultipartBody +{ + /** + * MIME boundary + * @var string + */ + private $_boundary; + + /** + * Form parameters added via {@link HTTP_Request2::addPostParameter()} + * @var array + */ + private $_params = array(); + + /** + * File uploads added via {@link HTTP_Request2::addUpload()} + * @var array + */ + private $_uploads = array(); + + /** + * Header for parts with parameters + * @var string + */ + private $_headerParam = "--%s\r\nContent-Disposition: form-data; name=\"%s\"\r\n\r\n"; + + /** + * Header for parts with uploads + * @var string + */ + private $_headerUpload = "--%s\r\nContent-Disposition: form-data; name=\"%s\"; filename=\"%s\"\r\nContent-Type: %s\r\n\r\n"; + + /** + * Current position in parameter and upload arrays + * + * First number is index of "current" part, second number is position within + * "current" part + * + * @var array + */ + private $_pos = array(0, 0); + + + /** + * Constructor. Sets the arrays with POST data. + * + * @param array values of form fields set via {@link HTTP_Request2::addPostParameter()} + * @param array file uploads set via {@link HTTP_Request2::addUpload()} + * @param bool whether to append brackets to array variable names + */ + public function __construct(array $params, array $uploads, $useBrackets = true) + { + $this->_params = self::_flattenArray('', $params, $useBrackets); + foreach ($uploads as $fieldName => $f) { + if (!is_array($f['fp'])) { + $this->_uploads[] = $f + array('name' => $fieldName); + } else { + for ($i = 0; $i < count($f['fp']); $i++) { + $upload = array( + 'name' => ($useBrackets? $fieldName . '[' . $i . ']': $fieldName) + ); + foreach (array('fp', 'filename', 'size', 'type') as $key) { + $upload[$key] = $f[$key][$i]; + } + $this->_uploads[] = $upload; + } + } + } + } + + /** + * Returns the length of the body to use in Content-Length header + * + * @return integer + */ + public function getLength() + { + $boundaryLength = strlen($this->getBoundary()); + $headerParamLength = strlen($this->_headerParam) - 4 + $boundaryLength; + $headerUploadLength = strlen($this->_headerUpload) - 8 + $boundaryLength; + $length = $boundaryLength + 6; + foreach ($this->_params as $p) { + $length += $headerParamLength + strlen($p[0]) + strlen($p[1]) + 2; + } + foreach ($this->_uploads as $u) { + $length += $headerUploadLength + strlen($u['name']) + strlen($u['type']) + + strlen($u['filename']) + $u['size'] + 2; + } + return $length; + } + + /** + * Returns the boundary to use in Content-Type header + * + * @return string + */ + public function getBoundary() + { + if (empty($this->_boundary)) { + $this->_boundary = '--' . md5('PEAR-HTTP_Request2-' . microtime()); + } + return $this->_boundary; + } + + /** + * Returns next chunk of request body + * + * @param integer Amount of bytes to read + * @return string Up to $length bytes of data, empty string if at end + */ + public function read($length) + { + $ret = ''; + $boundary = $this->getBoundary(); + $paramCount = count($this->_params); + $uploadCount = count($this->_uploads); + while ($length > 0 && $this->_pos[0] <= $paramCount + $uploadCount) { + $oldLength = $length; + if ($this->_pos[0] < $paramCount) { + $param = sprintf($this->_headerParam, $boundary, + $this->_params[$this->_pos[0]][0]) . + $this->_params[$this->_pos[0]][1] . "\r\n"; + $ret .= substr($param, $this->_pos[1], $length); + $length -= min(strlen($param) - $this->_pos[1], $length); + + } elseif ($this->_pos[0] < $paramCount + $uploadCount) { + $pos = $this->_pos[0] - $paramCount; + $header = sprintf($this->_headerUpload, $boundary, + $this->_uploads[$pos]['name'], + $this->_uploads[$pos]['filename'], + $this->_uploads[$pos]['type']); + if ($this->_pos[1] < strlen($header)) { + $ret .= substr($header, $this->_pos[1], $length); + $length -= min(strlen($header) - $this->_pos[1], $length); + } + $filePos = max(0, $this->_pos[1] - strlen($header)); + if ($length > 0 && $filePos < $this->_uploads[$pos]['size']) { + $ret .= fread($this->_uploads[$pos]['fp'], $length); + $length -= min($length, $this->_uploads[$pos]['size'] - $filePos); + } + if ($length > 0) { + $start = $this->_pos[1] + ($oldLength - $length) - + strlen($header) - $this->_uploads[$pos]['size']; + $ret .= substr("\r\n", $start, $length); + $length -= min(2 - $start, $length); + } + + } else { + $closing = '--' . $boundary . "--\r\n"; + $ret .= substr($closing, $this->_pos[1], $length); + $length -= min(strlen($closing) - $this->_pos[1], $length); + } + if ($length > 0) { + $this->_pos = array($this->_pos[0] + 1, 0); + } else { + $this->_pos[1] += $oldLength; + } + } + return $ret; + } + + /** + * Sets the current position to the start of the body + * + * This allows reusing the same body in another request + */ + public function rewind() + { + $this->_pos = array(0, 0); + foreach ($this->_uploads as $u) { + rewind($u['fp']); + } + } + + /** + * Returns the body as string + * + * Note that it reads all file uploads into memory so it is a good idea not + * to use this method with large file uploads and rely on read() instead. + * + * @return string + */ + public function __toString() + { + $this->rewind(); + return $this->read($this->getLength()); + } + + + /** + * Helper function to change the (probably multidimensional) associative array + * into the simple one. + * + * @param string name for item + * @param mixed item's values + * @param bool whether to append [] to array variables' names + * @return array array with the following items: array('item name', 'item value'); + */ + private static function _flattenArray($name, $values, $useBrackets) + { + if (!is_array($values)) { + return array(array($name, $values)); + } else { + $ret = array(); + foreach ($values as $k => $v) { + if (empty($name)) { + $newName = $k; + } elseif ($useBrackets) { + $newName = $name . '[' . $k . ']'; + } else { + $newName = $name; + } + $ret = array_merge($ret, self::_flattenArray($newName, $v, $useBrackets)); + } + return $ret; + } + } +} +?> diff --git a/extlib/HTTP/Request2/Observer/Log.php b/extlib/HTTP/Request2/Observer/Log.php new file mode 100644 index 0000000000..b1a0552780 --- /dev/null +++ b/extlib/HTTP/Request2/Observer/Log.php @@ -0,0 +1,215 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author David Jean Louis + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Log.php 272593 2009-01-02 16:27:14Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Exception class for HTTP_Request2 package + */ +require_once 'HTTP/Request2/Exception.php'; + +/** + * A debug observer useful for debugging / testing. + * + * This observer logs to a log target data corresponding to the various request + * and response events, it logs by default to php://output but can be configured + * to log to a file or via the PEAR Log package. + * + * A simple example: + * + * require_once 'HTTP/Request2.php'; + * require_once 'HTTP/Request2/Observer/Log.php'; + * + * $request = new HTTP_Request2('http://www.example.com'); + * $observer = new HTTP_Request2_Observer_Log(); + * $request->attach($observer); + * $request->send(); + * + * + * A more complex example with PEAR Log: + * + * require_once 'HTTP/Request2.php'; + * require_once 'HTTP/Request2/Observer/Log.php'; + * require_once 'Log.php'; + * + * $request = new HTTP_Request2('http://www.example.com'); + * // we want to log with PEAR log + * $observer = new HTTP_Request2_Observer_Log(Log::factory('console')); + * + * // we only want to log received headers + * $observer->events = array('receivedHeaders'); + * + * $request->attach($observer); + * $request->send(); + * + * + * @category HTTP + * @package HTTP_Request2 + * @author David Jean Louis + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version Release: 0.4.1 + * @link http://pear.php.net/package/HTTP_Request2 + */ +class HTTP_Request2_Observer_Log implements SplObserver +{ + // properties {{{ + + /** + * The log target, it can be a a resource or a PEAR Log instance. + * + * @var resource|Log $target + */ + protected $target = null; + + /** + * The events to log. + * + * @var array $events + */ + public $events = array( + 'connect', + 'sentHeaders', + 'sentBodyPart', + 'receivedHeaders', + 'receivedBody', + 'disconnect', + ); + + // }}} + // __construct() {{{ + + /** + * Constructor. + * + * @param mixed $target Can be a file path (default: php://output), a resource, + * or an instance of the PEAR Log class. + * @param array $events Array of events to listen to (default: all events) + * + * @return void + */ + public function __construct($target = 'php://output', array $events = array()) + { + if (!empty($events)) { + $this->events = $events; + } + if (is_resource($target) || $target instanceof Log) { + $this->target = $target; + } elseif (false === ($this->target = @fopen($target, 'w'))) { + throw new HTTP_Request2_Exception("Unable to open '{$target}'"); + } + } + + // }}} + // update() {{{ + + /** + * Called when the request notify us of an event. + * + * @param HTTP_Request2 $subject The HTTP_Request2 instance + * + * @return void + */ + public function update(SplSubject $subject) + { + $event = $subject->getLastEvent(); + if (!in_array($event['name'], $this->events)) { + return; + } + + switch ($event['name']) { + case 'connect': + $this->log('* Connected to ' . $event['data']); + break; + case 'sentHeaders': + $headers = explode("\r\n", $event['data']); + array_pop($headers); + foreach ($headers as $header) { + $this->log('> ' . $header); + } + break; + case 'sentBodyPart': + $this->log('> ' . $event['data']); + break; + case 'receivedHeaders': + $this->log(sprintf('< HTTP/%s %s %s', + $event['data']->getVersion(), + $event['data']->getStatus(), + $event['data']->getReasonPhrase())); + $headers = $event['data']->getHeader(); + foreach ($headers as $key => $val) { + $this->log('< ' . $key . ': ' . $val); + } + $this->log('< '); + break; + case 'receivedBody': + $this->log($event['data']->getBody()); + break; + case 'disconnect': + $this->log('* Disconnected'); + break; + } + } + + // }}} + // log() {{{ + + /** + * Log the given message to the configured target. + * + * @param string $message Message to display + * + * @return void + */ + protected function log($message) + { + if ($this->target instanceof Log) { + $this->target->debug($message); + } elseif (is_resource($this->target)) { + fwrite($this->target, $message . "\r\n"); + } + } + + // }}} +} + +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Response.php b/extlib/HTTP/Request2/Response.php new file mode 100644 index 0000000000..c7c1021fbb --- /dev/null +++ b/extlib/HTTP/Request2/Response.php @@ -0,0 +1,549 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Response.php 287948 2009-09-01 17:12:18Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Exception class for HTTP_Request2 package + */ +require_once 'HTTP/Request2/Exception.php'; + +/** + * Class representing a HTTP response + * + * The class is designed to be used in "streaming" scenario, building the + * response as it is being received: + * + * $statusLine = read_status_line(); + * $response = new HTTP_Request2_Response($statusLine); + * do { + * $headerLine = read_header_line(); + * $response->parseHeaderLine($headerLine); + * } while ($headerLine != ''); + * + * while ($chunk = read_body()) { + * $response->appendBody($chunk); + * } + * + * var_dump($response->getHeader(), $response->getCookies(), $response->getBody()); + * + * + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + * @link http://tools.ietf.org/html/rfc2616#section-6 + */ +class HTTP_Request2_Response +{ + /** + * HTTP protocol version (e.g. 1.0, 1.1) + * @var string + */ + protected $version; + + /** + * Status code + * @var integer + * @link http://tools.ietf.org/html/rfc2616#section-6.1.1 + */ + protected $code; + + /** + * Reason phrase + * @var string + * @link http://tools.ietf.org/html/rfc2616#section-6.1.1 + */ + protected $reasonPhrase; + + /** + * Associative array of response headers + * @var array + */ + protected $headers = array(); + + /** + * Cookies set in the response + * @var array + */ + protected $cookies = array(); + + /** + * Name of last header processed by parseHederLine() + * + * Used to handle the headers that span multiple lines + * + * @var string + */ + protected $lastHeader = null; + + /** + * Response body + * @var string + */ + protected $body = ''; + + /** + * Whether the body is still encoded by Content-Encoding + * + * cURL provides the decoded body to the callback; if we are reading from + * socket the body is still gzipped / deflated + * + * @var bool + */ + protected $bodyEncoded; + + /** + * Associative array of HTTP status code / reason phrase. + * + * @var array + * @link http://tools.ietf.org/html/rfc2616#section-10 + */ + protected static $phrases = array( + + // 1xx: Informational - Request received, continuing process + 100 => 'Continue', + 101 => 'Switching Protocols', + + // 2xx: Success - The action was successfully received, understood and + // accepted + 200 => 'OK', + 201 => 'Created', + 202 => 'Accepted', + 203 => 'Non-Authoritative Information', + 204 => 'No Content', + 205 => 'Reset Content', + 206 => 'Partial Content', + + // 3xx: Redirection - Further action must be taken in order to complete + // the request + 300 => 'Multiple Choices', + 301 => 'Moved Permanently', + 302 => 'Found', // 1.1 + 303 => 'See Other', + 304 => 'Not Modified', + 305 => 'Use Proxy', + 307 => 'Temporary Redirect', + + // 4xx: Client Error - The request contains bad syntax or cannot be + // fulfilled + 400 => 'Bad Request', + 401 => 'Unauthorized', + 402 => 'Payment Required', + 403 => 'Forbidden', + 404 => 'Not Found', + 405 => 'Method Not Allowed', + 406 => 'Not Acceptable', + 407 => 'Proxy Authentication Required', + 408 => 'Request Timeout', + 409 => 'Conflict', + 410 => 'Gone', + 411 => 'Length Required', + 412 => 'Precondition Failed', + 413 => 'Request Entity Too Large', + 414 => 'Request-URI Too Long', + 415 => 'Unsupported Media Type', + 416 => 'Requested Range Not Satisfiable', + 417 => 'Expectation Failed', + + // 5xx: Server Error - The server failed to fulfill an apparently + // valid request + 500 => 'Internal Server Error', + 501 => 'Not Implemented', + 502 => 'Bad Gateway', + 503 => 'Service Unavailable', + 504 => 'Gateway Timeout', + 505 => 'HTTP Version Not Supported', + 509 => 'Bandwidth Limit Exceeded', + + ); + + /** + * Constructor, parses the response status line + * + * @param string Response status line (e.g. "HTTP/1.1 200 OK") + * @param bool Whether body is still encoded by Content-Encoding + * @throws HTTP_Request2_Exception if status line is invalid according to spec + */ + public function __construct($statusLine, $bodyEncoded = true) + { + if (!preg_match('!^HTTP/(\d\.\d) (\d{3})(?: (.+))?!', $statusLine, $m)) { + throw new HTTP_Request2_Exception("Malformed response: {$statusLine}"); + } + $this->version = $m[1]; + $this->code = intval($m[2]); + if (!empty($m[3])) { + $this->reasonPhrase = trim($m[3]); + } elseif (!empty(self::$phrases[$this->code])) { + $this->reasonPhrase = self::$phrases[$this->code]; + } + $this->bodyEncoded = (bool)$bodyEncoded; + } + + /** + * Parses the line from HTTP response filling $headers array + * + * The method should be called after reading the line from socket or receiving + * it into cURL callback. Passing an empty string here indicates the end of + * response headers and triggers additional processing, so be sure to pass an + * empty string in the end. + * + * @param string Line from HTTP response + */ + public function parseHeaderLine($headerLine) + { + $headerLine = trim($headerLine, "\r\n"); + + // empty string signals the end of headers, process the received ones + if ('' == $headerLine) { + if (!empty($this->headers['set-cookie'])) { + $cookies = is_array($this->headers['set-cookie'])? + $this->headers['set-cookie']: + array($this->headers['set-cookie']); + foreach ($cookies as $cookieString) { + $this->parseCookie($cookieString); + } + unset($this->headers['set-cookie']); + } + foreach (array_keys($this->headers) as $k) { + if (is_array($this->headers[$k])) { + $this->headers[$k] = implode(', ', $this->headers[$k]); + } + } + + // string of the form header-name: header value + } elseif (preg_match('!^([^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+):(.+)$!', $headerLine, $m)) { + $name = strtolower($m[1]); + $value = trim($m[2]); + if (empty($this->headers[$name])) { + $this->headers[$name] = $value; + } else { + if (!is_array($this->headers[$name])) { + $this->headers[$name] = array($this->headers[$name]); + } + $this->headers[$name][] = $value; + } + $this->lastHeader = $name; + + // string + } elseif (preg_match('!^\s+(.+)$!', $headerLine, $m) && $this->lastHeader) { + if (!is_array($this->headers[$this->lastHeader])) { + $this->headers[$this->lastHeader] .= ' ' . trim($m[1]); + } else { + $key = count($this->headers[$this->lastHeader]) - 1; + $this->headers[$this->lastHeader][$key] .= ' ' . trim($m[1]); + } + } + } + + /** + * Parses a Set-Cookie header to fill $cookies array + * + * @param string value of Set-Cookie header + * @link http://cgi.netscape.com/newsref/std/cookie_spec.html + */ + protected function parseCookie($cookieString) + { + $cookie = array( + 'expires' => null, + 'domain' => null, + 'path' => null, + 'secure' => false + ); + + // Only a name=value pair + if (!strpos($cookieString, ';')) { + $pos = strpos($cookieString, '='); + $cookie['name'] = trim(substr($cookieString, 0, $pos)); + $cookie['value'] = trim(substr($cookieString, $pos + 1)); + + // Some optional parameters are supplied + } else { + $elements = explode(';', $cookieString); + $pos = strpos($elements[0], '='); + $cookie['name'] = trim(substr($elements[0], 0, $pos)); + $cookie['value'] = trim(substr($elements[0], $pos + 1)); + + for ($i = 1; $i < count($elements); $i++) { + if (false === strpos($elements[$i], '=')) { + $elName = trim($elements[$i]); + $elValue = null; + } else { + list ($elName, $elValue) = array_map('trim', explode('=', $elements[$i])); + } + $elName = strtolower($elName); + if ('secure' == $elName) { + $cookie['secure'] = true; + } elseif ('expires' == $elName) { + $cookie['expires'] = str_replace('"', '', $elValue); + } elseif ('path' == $elName || 'domain' == $elName) { + $cookie[$elName] = urldecode($elValue); + } else { + $cookie[$elName] = $elValue; + } + } + } + $this->cookies[] = $cookie; + } + + /** + * Appends a string to the response body + * @param string + */ + public function appendBody($bodyChunk) + { + $this->body .= $bodyChunk; + } + + /** + * Returns the status code + * @return integer + */ + public function getStatus() + { + return $this->code; + } + + /** + * Returns the reason phrase + * @return string + */ + public function getReasonPhrase() + { + return $this->reasonPhrase; + } + + /** + * Returns either the named header or all response headers + * + * @param string Name of header to return + * @return string|array Value of $headerName header (null if header is + * not present), array of all response headers if + * $headerName is null + */ + public function getHeader($headerName = null) + { + if (null === $headerName) { + return $this->headers; + } else { + $headerName = strtolower($headerName); + return isset($this->headers[$headerName])? $this->headers[$headerName]: null; + } + } + + /** + * Returns cookies set in response + * + * @return array + */ + public function getCookies() + { + return $this->cookies; + } + + /** + * Returns the body of the response + * + * @return string + * @throws HTTP_Request2_Exception if body cannot be decoded + */ + public function getBody() + { + if (!$this->bodyEncoded || + !in_array(strtolower($this->getHeader('content-encoding')), array('gzip', 'deflate')) + ) { + return $this->body; + + } else { + if (extension_loaded('mbstring') && (2 & ini_get('mbstring.func_overload'))) { + $oldEncoding = mb_internal_encoding(); + mb_internal_encoding('iso-8859-1'); + } + + try { + switch (strtolower($this->getHeader('content-encoding'))) { + case 'gzip': + $decoded = self::decodeGzip($this->body); + break; + case 'deflate': + $decoded = self::decodeDeflate($this->body); + } + } catch (Exception $e) { + } + + if (!empty($oldEncoding)) { + mb_internal_encoding($oldEncoding); + } + if (!empty($e)) { + throw $e; + } + return $decoded; + } + } + + /** + * Get the HTTP version of the response + * + * @return string + */ + public function getVersion() + { + return $this->version; + } + + /** + * Decodes the message-body encoded by gzip + * + * The real decoding work is done by gzinflate() built-in function, this + * method only parses the header and checks data for compliance with + * RFC 1952 + * + * @param string gzip-encoded data + * @return string decoded data + * @throws HTTP_Request2_Exception + * @link http://tools.ietf.org/html/rfc1952 + */ + public static function decodeGzip($data) + { + $length = strlen($data); + // If it doesn't look like gzip-encoded data, don't bother + if (18 > $length || strcmp(substr($data, 0, 2), "\x1f\x8b")) { + return $data; + } + if (!function_exists('gzinflate')) { + throw new HTTP_Request2_Exception('Unable to decode body: gzip extension not available'); + } + $method = ord(substr($data, 2, 1)); + if (8 != $method) { + throw new HTTP_Request2_Exception('Error parsing gzip header: unknown compression method'); + } + $flags = ord(substr($data, 3, 1)); + if ($flags & 224) { + throw new HTTP_Request2_Exception('Error parsing gzip header: reserved bits are set'); + } + + // header is 10 bytes minimum. may be longer, though. + $headerLength = 10; + // extra fields, need to skip 'em + if ($flags & 4) { + if ($length - $headerLength - 2 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $extraLength = unpack('v', substr($data, 10, 2)); + if ($length - $headerLength - 2 - $extraLength[1] < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $headerLength += $extraLength[1] + 2; + } + // file name, need to skip that + if ($flags & 8) { + if ($length - $headerLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $filenameLength = strpos(substr($data, $headerLength), chr(0)); + if (false === $filenameLength || $length - $headerLength - $filenameLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $headerLength += $filenameLength + 1; + } + // comment, need to skip that also + if ($flags & 16) { + if ($length - $headerLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $commentLength = strpos(substr($data, $headerLength), chr(0)); + if (false === $commentLength || $length - $headerLength - $commentLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $headerLength += $commentLength + 1; + } + // have a CRC for header. let's check + if ($flags & 2) { + if ($length - $headerLength - 2 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $crcReal = 0xffff & crc32(substr($data, 0, $headerLength)); + $crcStored = unpack('v', substr($data, $headerLength, 2)); + if ($crcReal != $crcStored[1]) { + throw new HTTP_Request2_Exception('Header CRC check failed'); + } + $headerLength += 2; + } + // unpacked data CRC and size at the end of encoded data + $tmp = unpack('V2', substr($data, -8)); + $dataCrc = $tmp[1]; + $dataSize = $tmp[2]; + + // finally, call the gzinflate() function + // don't pass $dataSize to gzinflate, see bugs #13135, #14370 + $unpacked = gzinflate(substr($data, $headerLength, -8)); + if (false === $unpacked) { + throw new HTTP_Request2_Exception('gzinflate() call failed'); + } elseif ($dataSize != strlen($unpacked)) { + throw new HTTP_Request2_Exception('Data size check failed'); + } elseif ((0xffffffff & $dataCrc) != (0xffffffff & crc32($unpacked))) { + throw new HTTP_Request2_Exception('Data CRC check failed'); + } + return $unpacked; + } + + /** + * Decodes the message-body encoded by deflate + * + * @param string deflate-encoded data + * @return string decoded data + * @throws HTTP_Request2_Exception + */ + public static function decodeDeflate($data) + { + if (!function_exists('gzuncompress')) { + throw new HTTP_Request2_Exception('Unable to decode body: gzip extension not available'); + } + // RFC 2616 defines 'deflate' encoding as zlib format from RFC 1950, + // while many applications send raw deflate stream from RFC 1951. + // We should check for presence of zlib header and use gzuncompress() or + // gzinflate() as needed. See bug #15305 + $header = unpack('n', substr($data, 0, 2)); + return (0 == $header[1] % 31)? gzuncompress($data): gzinflate($data); + } +} +?> \ No newline at end of file diff --git a/extlib/Net/URL2.php b/extlib/Net/URL2.php index 7a654aed8f..f7fbcd9ce7 100644 --- a/extlib/Net/URL2.php +++ b/extlib/Net/URL2.php @@ -1,44 +1,58 @@ | -// +-----------------------------------------------------------------------+ -// -// $Id: URL2.php,v 1.10 2008/04/26 21:57:08 schmidt Exp $ -// -// Net_URL2 Class (PHP5 Only) - -// This code is released under the BSD License - http://www.opensource.org/licenses/bsd-license.php /** - * @license BSD License + * Net_URL2, a class representing a URL as per RFC 3986. + * + * PHP version 5 + * + * LICENSE: + * + * Copyright (c) 2007-2009, Peytz & Co. A/S + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the distribution. + * * Neither the name of the PHP_LexerGenerator nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category Networking + * @package Net_URL2 + * @author Christian Schmidt + * @copyright 2007-2008 Peytz & Co. A/S + * @license http://www.opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: URL2.php 286661 2009-08-02 12:50:54Z schmidt $ + * @link http://www.rfc-editor.org/rfc/rfc3986.txt + */ + +/** + * Represents a URL as per RFC 3986. + * + * @category Networking + * @package Net_URL2 + * @author Christian Schmidt + * @copyright 2007-2008 Peytz & Co. ApS + * @license http://www.opensource.org/licenses/bsd-license.php New BSD License + * @version Release: @package_version@ + * @link http://pear.php.net/package/Net_URL2 */ class Net_URL2 { @@ -46,24 +60,24 @@ class Net_URL2 * Do strict parsing in resolve() (see RFC 3986, section 5.2.2). Default * is true. */ - const OPTION_STRICT = 'strict'; + const OPTION_STRICT = 'strict'; /** * Represent arrays in query using PHP's [] notation. Default is true. */ - const OPTION_USE_BRACKETS = 'use_brackets'; + const OPTION_USE_BRACKETS = 'use_brackets'; /** * URL-encode query variable keys. Default is true. */ - const OPTION_ENCODE_KEYS = 'encode_keys'; + const OPTION_ENCODE_KEYS = 'encode_keys'; /** * Query variable separators when parsing the query string. Every character * is considered a separator. Default is specified by the * arg_separator.input php.ini setting (this defaults to "&"). */ - const OPTION_SEPARATOR_INPUT = 'input_separator'; + const OPTION_SEPARATOR_INPUT = 'input_separator'; /** * Query variable separator used when generating the query string. Default @@ -75,7 +89,7 @@ class Net_URL2 /** * Default options corresponds to how PHP handles $_GET. */ - private $options = array( + private $_options = array( self::OPTION_STRICT => true, self::OPTION_USE_BRACKETS => true, self::OPTION_ENCODE_KEYS => true, @@ -86,41 +100,43 @@ class Net_URL2 /** * @var string|bool */ - private $scheme = false; + private $_scheme = false; /** * @var string|bool */ - private $userinfo = false; + private $_userinfo = false; /** * @var string|bool */ - private $host = false; + private $_host = false; /** * @var int|bool */ - private $port = false; + private $_port = false; /** * @var string */ - private $path = ''; + private $_path = ''; /** * @var string|bool */ - private $query = false; + private $_query = false; /** * @var string|bool */ - private $fragment = false; + private $_fragment = false; /** + * Constructor. + * * @param string $url an absolute or relative URL - * @param array $options + * @param array $options an array of OPTION_xxx constants */ public function __construct($url, $options = null) { @@ -130,12 +146,12 @@ class Net_URL2 ini_get('arg_separator.output')); if (is_array($options)) { foreach ($options as $optionName => $value) { - $this->setOption($optionName); + $this->setOption($optionName, $value); } } if (preg_match('@^([a-z][a-z0-9.+-]*):@i', $url, $reg)) { - $this->scheme = $reg[1]; + $this->_scheme = $reg[1]; $url = substr($url, strlen($reg[0])); } @@ -145,19 +161,58 @@ class Net_URL2 } $i = strcspn($url, '?#'); - $this->path = substr($url, 0, $i); + $this->_path = substr($url, 0, $i); $url = substr($url, $i); if (preg_match('@^\?([^#]*)@', $url, $reg)) { - $this->query = $reg[1]; + $this->_query = $reg[1]; $url = substr($url, strlen($reg[0])); } if ($url) { - $this->fragment = substr($url, 1); + $this->_fragment = substr($url, 1); } } + /** + * Magic Setter. + * + * This method will magically set the value of a private variable ($var) + * with the value passed as the args + * + * @param string $var The private variable to set. + * @param mixed $arg An argument of any type. + * @return void + */ + public function __set($var, $arg) + { + $method = 'set' . $var; + if (method_exists($this, $method)) { + $this->$method($arg); + } + } + + /** + * Magic Getter. + * + * This is the magic get method to retrieve the private variable + * that was set by either __set() or it's setter... + * + * @param string $var The property name to retrieve. + * @return mixed $this->$var Either a boolean false if the + * property is not set or the value + * of the private property. + */ + public function __get($var) + { + $method = 'get' . $var; + if (method_exists($this, $method)) { + return $this->$method(); + } + + return false; + } + /** * Returns the scheme, e.g. "http" or "urn", or false if there is no * scheme specified, i.e. if this is a relative URL. @@ -166,18 +221,23 @@ class Net_URL2 */ public function getScheme() { - return $this->scheme; + return $this->_scheme; } /** - * @param string|bool $scheme + * Sets the scheme, e.g. "http" or "urn". Specify false if there is no + * scheme specified, i.e. if this is a relative URL. + * + * @param string|bool $scheme e.g. "http" or "urn", or false if there is no + * scheme specified, i.e. if this is a relative + * URL * * @return void * @see getScheme() */ public function setScheme($scheme) { - $this->scheme = $scheme; + $this->_scheme = $scheme; } /** @@ -188,7 +248,9 @@ class Net_URL2 */ public function getUser() { - return $this->userinfo !== false ? preg_replace('@:.*$@', '', $this->userinfo) : false; + return $this->_userinfo !== false + ? preg_replace('@:.*$@', '', $this->_userinfo) + : false; } /** @@ -201,7 +263,9 @@ class Net_URL2 */ public function getPassword() { - return $this->userinfo !== false ? substr(strstr($this->userinfo, ':'), 1) : false; + return $this->_userinfo !== false + ? substr(strstr($this->_userinfo, ':'), 1) + : false; } /** @@ -212,7 +276,7 @@ class Net_URL2 */ public function getUserinfo() { - return $this->userinfo; + return $this->_userinfo; } /** @@ -220,15 +284,15 @@ class Net_URL2 * in the userinfo part as username ":" password. * * @param string|bool $userinfo userinfo or username - * @param string|bool $password + * @param string|bool $password optional password, or false * * @return void */ public function setUserinfo($userinfo, $password = false) { - $this->userinfo = $userinfo; + $this->_userinfo = $userinfo; if ($password !== false) { - $this->userinfo .= ':' . $password; + $this->_userinfo .= ':' . $password; } } @@ -236,21 +300,24 @@ class Net_URL2 * Returns the host part, or false if there is no authority part, e.g. * relative URLs. * - * @return string|bool + * @return string|bool a hostname, an IP address, or false */ public function getHost() { - return $this->host; + return $this->_host; } /** - * @param string|bool $host + * Sets the host part. Specify false if there is no authority part, e.g. + * relative URLs. + * + * @param string|bool $host a hostname, an IP address, or false * * @return void */ public function setHost($host) { - $this->host = $host; + $this->_host = $host; } /** @@ -261,65 +328,72 @@ class Net_URL2 */ public function getPort() { - return $this->port; + return $this->_port; } /** - * @param int|bool $port + * Sets the port number. Specify false if there is no port number specified, + * i.e. if the default port is to be used. + * + * @param int|bool $port a port number, or false * * @return void */ public function setPort($port) { - $this->port = intval($port); + $this->_port = intval($port); } /** * Returns the authority part, i.e. [ userinfo "@" ] host [ ":" port ], or - * false if there is no authority none. + * false if there is no authority. * * @return string|bool */ public function getAuthority() { - if (!$this->host) { + if (!$this->_host) { return false; } $authority = ''; - if ($this->userinfo !== false) { - $authority .= $this->userinfo . '@'; + if ($this->_userinfo !== false) { + $authority .= $this->_userinfo . '@'; } - $authority .= $this->host; + $authority .= $this->_host; - if ($this->port !== false) { - $authority .= ':' . $this->port; + if ($this->_port !== false) { + $authority .= ':' . $this->_port; } return $authority; } /** - * @param string|false $authority + * Sets the authority part, i.e. [ userinfo "@" ] host [ ":" port ]. Specify + * false if there is no authority. + * + * @param string|false $authority a hostname or an IP addresse, possibly + * with userinfo prefixed and port number + * appended, e.g. "foo:bar@example.org:81". * * @return void */ public function setAuthority($authority) { - $this->user = false; - $this->pass = false; - $this->host = false; - $this->port = false; - if (preg_match('@^(([^\@]+)\@)?([^:]+)(:(\d*))?$@', $authority, $reg)) { + $this->_userinfo = false; + $this->_host = false; + $this->_port = false; + if (preg_match('@^(([^\@]*)\@)?([^:]+)(:(\d*))?$@', $authority, $reg)) { if ($reg[1]) { - $this->userinfo = $reg[2]; + $this->_userinfo = $reg[2]; } - $this->host = $reg[3]; + $this->_host = $reg[3]; if (isset($reg[5])) { - $this->port = intval($reg[5]); + $this->_port = intval($reg[5]); } } } @@ -331,65 +405,74 @@ class Net_URL2 */ public function getPath() { - return $this->path; + return $this->_path; } /** - * @param string $path + * Sets the path part (possibly an empty string). + * + * @param string $path a path * * @return void */ public function setPath($path) { - $this->path = $path; + $this->_path = $path; } /** * Returns the query string (excluding the leading "?"), or false if "?" - * isn't present in the URL. + * is not present in the URL. * * @return string|bool * @see self::getQueryVariables() */ public function getQuery() { - return $this->query; + return $this->_query; } /** - * @param string|bool $query + * Sets the query string (excluding the leading "?"). Specify false if "?" + * is not present in the URL. + * + * @param string|bool $query a query string, e.g. "foo=1&bar=2" * * @return void * @see self::setQueryVariables() */ public function setQuery($query) { - $this->query = $query; + $this->_query = $query; } /** - * Returns the fragment name, or false if "#" isn't present in the URL. + * Returns the fragment name, or false if "#" is not present in the URL. * * @return string|bool */ public function getFragment() { - return $this->fragment; + return $this->_fragment; } /** - * @param string|bool $fragment + * Sets the fragment name. Specify false if "#" is not present in the URL. + * + * @param string|bool $fragment a fragment excluding the leading "#", or + * false * * @return void */ public function setFragment($fragment) { - $this->fragment = $fragment; + $this->_fragment = $fragment; } /** * Returns the query string like an array as the variables would appear in - * $_GET in a PHP script. + * $_GET in a PHP script. If the URL does not contain a "?", an empty array + * is returned. * * @return array */ @@ -398,7 +481,7 @@ class Net_URL2 $pattern = '/[' . preg_quote($this->getOption(self::OPTION_SEPARATOR_INPUT), '/') . ']/'; - $parts = preg_split($pattern, $this->query, -1, PREG_SPLIT_NO_EMPTY); + $parts = preg_split($pattern, $this->_query, -1, PREG_SPLIT_NO_EMPTY); $return = array(); foreach ($parts as $part) { @@ -445,6 +528,8 @@ class Net_URL2 } /** + * Sets the query string to the specified variable in the query string. + * * @param array $array (name => value) array * * @return void @@ -452,11 +537,11 @@ class Net_URL2 public function setQueryVariables(array $array) { if (!$array) { - $this->query = false; + $this->_query = false; } else { foreach ($array as $name => $value) { if ($this->getOption(self::OPTION_ENCODE_KEYS)) { - $name = rawurlencode($name); + $name = self::urlencode($name); } if (is_array($value)) { @@ -466,19 +551,21 @@ class Net_URL2 : ($name . '=' . $v); } } elseif (!is_null($value)) { - $parts[] = $name . '=' . $value; + $parts[] = $name . '=' . self::urlencode($value); } else { $parts[] = $name; } } - $this->query = implode($this->getOption(self::OPTION_SEPARATOR_OUTPUT), - $parts); + $this->_query = implode($this->getOption(self::OPTION_SEPARATOR_OUTPUT), + $parts); } } /** - * @param string $name - * @param mixed $value + * Sets the specified variable in the query string. + * + * @param string $name variable name + * @param mixed $value variable value * * @return array */ @@ -490,7 +577,9 @@ class Net_URL2 } /** - * @param string $name + * Removes the specifed variable from the query string. + * + * @param string $name a query string variable, e.g. "foo" in "?foo=1" * * @return void */ @@ -511,27 +600,38 @@ class Net_URL2 // See RFC 3986, section 5.3 $url = ""; - if ($this->scheme !== false) { - $url .= $this->scheme . ':'; + if ($this->_scheme !== false) { + $url .= $this->_scheme . ':'; } $authority = $this->getAuthority(); if ($authority !== false) { $url .= '//' . $authority; } - $url .= $this->path; + $url .= $this->_path; - if ($this->query !== false) { - $url .= '?' . $this->query; + if ($this->_query !== false) { + $url .= '?' . $this->_query; } - if ($this->fragment !== false) { - $url .= '#' . $this->fragment; + if ($this->_fragment !== false) { + $url .= '#' . $this->_fragment; } return $url; } + /** + * Returns a string representation of this URL. + * + * @return string + * @see toString() + */ + public function __toString() + { + return $this->getURL(); + } + /** * Returns a normalized string representation of this URL. This is useful * for comparison of URLs. @@ -555,36 +655,38 @@ class Net_URL2 // See RFC 3886, section 6 // Schemes are case-insensitive - if ($this->scheme) { - $this->scheme = strtolower($this->scheme); + if ($this->_scheme) { + $this->_scheme = strtolower($this->_scheme); } // Hostnames are case-insensitive - if ($this->host) { - $this->host = strtolower($this->host); + if ($this->_host) { + $this->_host = strtolower($this->_host); } // Remove default port number for known schemes (RFC 3986, section 6.2.3) - if ($this->port && - $this->scheme && - $this->port == getservbyname($this->scheme, 'tcp')) { + if ($this->_port && + $this->_scheme && + $this->_port == getservbyname($this->_scheme, 'tcp')) { - $this->port = false; + $this->_port = false; } // Normalize case of %XX percentage-encodings (RFC 3986, section 6.2.2.1) - foreach (array('userinfo', 'host', 'path') as $part) { + foreach (array('_userinfo', '_host', '_path') as $part) { if ($this->$part) { - $this->$part = preg_replace('/%[0-9a-f]{2}/ie', 'strtoupper("\0")', $this->$part); + $this->$part = preg_replace('/%[0-9a-f]{2}/ie', + 'strtoupper("\0")', + $this->$part); } } // Path segment normalization (RFC 3986, section 6.2.2.3) - $this->path = self::removeDotSegments($this->path); + $this->_path = self::removeDotSegments($this->_path); // Scheme based normalization (RFC 3986, section 6.2.3) - if ($this->host && !$this->path) { - $this->path = '/'; + if ($this->_host && !$this->_path) { + $this->_path = '/'; } } @@ -595,7 +697,7 @@ class Net_URL2 */ public function isAbsolute() { - return (bool) $this->scheme; + return (bool) $this->_scheme; } /** @@ -608,7 +710,7 @@ class Net_URL2 */ public function resolve($reference) { - if (is_string($reference)) { + if (!$reference instanceof Net_URL2) { $reference = new self($reference); } if (!$this->isAbsolute()) { @@ -617,54 +719,54 @@ class Net_URL2 // A non-strict parser may ignore a scheme in the reference if it is // identical to the base URI's scheme. - if (!$this->getOption(self::OPTION_STRICT) && $reference->scheme == $this->scheme) { - $reference->scheme = false; + if (!$this->getOption(self::OPTION_STRICT) && $reference->_scheme == $this->_scheme) { + $reference->_scheme = false; } $target = new self(''); - if ($reference->scheme !== false) { - $target->scheme = $reference->scheme; + if ($reference->_scheme !== false) { + $target->_scheme = $reference->_scheme; $target->setAuthority($reference->getAuthority()); - $target->path = self::removeDotSegments($reference->path); - $target->query = $reference->query; + $target->_path = self::removeDotSegments($reference->_path); + $target->_query = $reference->_query; } else { $authority = $reference->getAuthority(); if ($authority !== false) { $target->setAuthority($authority); - $target->path = self::removeDotSegments($reference->path); - $target->query = $reference->query; + $target->_path = self::removeDotSegments($reference->_path); + $target->_query = $reference->_query; } else { - if ($reference->path == '') { - $target->path = $this->path; - if ($reference->query !== false) { - $target->query = $reference->query; + if ($reference->_path == '') { + $target->_path = $this->_path; + if ($reference->_query !== false) { + $target->_query = $reference->_query; } else { - $target->query = $this->query; + $target->_query = $this->_query; } } else { - if (substr($reference->path, 0, 1) == '/') { - $target->path = self::removeDotSegments($reference->path); + if (substr($reference->_path, 0, 1) == '/') { + $target->_path = self::removeDotSegments($reference->_path); } else { // Merge paths (RFC 3986, section 5.2.3) - if ($this->host !== false && $this->path == '') { - $target->path = '/' . $this->path; + if ($this->_host !== false && $this->_path == '') { + $target->_path = '/' . $this->_path; } else { - $i = strrpos($this->path, '/'); + $i = strrpos($this->_path, '/'); if ($i !== false) { - $target->path = substr($this->path, 0, $i + 1); + $target->_path = substr($this->_path, 0, $i + 1); } - $target->path .= $reference->path; + $target->_path .= $reference->_path; } - $target->path = self::removeDotSegments($target->path); + $target->_path = self::removeDotSegments($target->_path); } - $target->query = $reference->query; + $target->_query = $reference->_query; } $target->setAuthority($this->getAuthority()); } - $target->scheme = $this->scheme; + $target->_scheme = $this->_scheme; } - $target->fragment = $reference->fragment; + $target->_fragment = $reference->_fragment; return $target; } @@ -677,7 +779,7 @@ class Net_URL2 * * @return string a path */ - private static function removeDotSegments($path) + public static function removeDotSegments($path) { $output = ''; @@ -685,28 +787,25 @@ class Net_URL2 // method $j = 0; while ($path && $j++ < 100) { - // Step A if (substr($path, 0, 2) == './') { + // Step 2.A $path = substr($path, 2); } elseif (substr($path, 0, 3) == '../') { + // Step 2.A $path = substr($path, 3); - - // Step B } elseif (substr($path, 0, 3) == '/./' || $path == '/.') { + // Step 2.B $path = '/' . substr($path, 3); - - // Step C } elseif (substr($path, 0, 4) == '/../' || $path == '/..') { - $path = '/' . substr($path, 4); - $i = strrpos($output, '/'); + // Step 2.C + $path = '/' . substr($path, 4); + $i = strrpos($output, '/'); $output = $i === false ? '' : substr($output, 0, $i); - - // Step D } elseif ($path == '.' || $path == '..') { + // Step 2.D $path = ''; - - // Step E } else { + // Step 2.E $i = strpos($path, '/'); if ($i === 0) { $i = strpos($path, '/', 1); @@ -722,6 +821,22 @@ class Net_URL2 return $output; } + /** + * Percent-encodes all non-alphanumeric characters except these: _ . - ~ + * Similar to PHP's rawurlencode(), except that it also encodes ~ in PHP + * 5.2.x and earlier. + * + * @param $raw the string to encode + * @return string + */ + public static function urlencode($string) + { + $encoded = rawurlencode($string); + // This is only necessary in PHP < 5.3. + $encoded = str_replace('%7E', '~', $encoded); + return $encoded; + } + /** * Returns a Net_URL2 instance representing the canonical URL of the * currently executing PHP script. @@ -737,13 +852,13 @@ class Net_URL2 // Begin with a relative URL $url = new self($_SERVER['PHP_SELF']); - $url->scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; - $url->host = $_SERVER['SERVER_NAME']; + $url->_scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; + $url->_host = $_SERVER['SERVER_NAME']; $port = intval($_SERVER['SERVER_PORT']); - if ($url->scheme == 'http' && $port != 80 || - $url->scheme == 'https' && $port != 443) { + if ($url->_scheme == 'http' && $port != 80 || + $url->_scheme == 'https' && $port != 443) { - $url->port = $port; + $url->_port = $port; } return $url; } @@ -773,7 +888,7 @@ class Net_URL2 // Begin with a relative URL $url = new self($_SERVER['REQUEST_URI']); - $url->scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; + $url->_scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; // Set host and possibly port $url->setAuthority($_SERVER['HTTP_HOST']); return $url; @@ -792,10 +907,10 @@ class Net_URL2 */ function setOption($optionName, $value) { - if (!array_key_exists($optionName, $this->options)) { + if (!array_key_exists($optionName, $this->_options)) { return false; } - $this->options[$optionName] = $value; + $this->_options[$optionName] = $value; } /** @@ -807,7 +922,7 @@ class Net_URL2 */ function getOption($optionName) { - return isset($this->options[$optionName]) - ? $this->options[$optionName] : false; + return isset($this->_options[$optionName]) + ? $this->_options[$optionName] : false; } } diff --git a/install.php b/install.php index 6bfc4c2e21..d34e92dab4 100644 --- a/install.php +++ b/install.php @@ -93,6 +93,13 @@ $external_libraries=array( 'include'=>'HTTP/Request.php', 'check_class'=>'HTTP_Request' ), + array( + 'name'=>'HTTP_Request2', + 'pear'=>'HTTP_Request2', + 'url'=>'http://pear.php.net/package/HTTP_Request2', + 'include'=>'HTTP/Request2.php', + 'check_class'=>'HTTP_Request2' + ), array( 'name'=>'Mail', 'pear'=>'Mail', diff --git a/lib/Shorturl_api.php b/lib/Shorturl_api.php index 18ae7719b2..ef0d8dda45 100644 --- a/lib/Shorturl_api.php +++ b/lib/Shorturl_api.php @@ -41,22 +41,17 @@ abstract class ShortUrlApi return strlen($url) >= common_config('site', 'shorturllength'); } - protected function http_post($data) { - $ch = curl_init(); - curl_setopt($ch, CURLOPT_URL, $this->service_url); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($ch, CURLOPT_POST, 1); - curl_setopt($ch, CURLOPT_POSTFIELDS, $data); - $response = curl_exec($ch); - $code = curl_getinfo($ch, CURLINFO_HTTP_CODE); - curl_close($ch); - if (($code < 200) || ($code >= 400)) return false; - return $response; + protected function http_post($data) + { + $request = new HTTPClient($this->service_url); + return $request->post($data); } - protected function http_get($url) { - $encoded_url = urlencode($url); - return file_get_contents("{$this->service_url}$encoded_url"); + protected function http_get($url) + { + $service = $this->service_url . urlencode($url); + $request = new HTTPClient($service); + return $request->get(); } protected function tidy($response) { diff --git a/lib/curlclient.php b/lib/curlclient.php deleted file mode 100644 index c307c29844..0000000000 --- a/lib/curlclient.php +++ /dev/null @@ -1,179 +0,0 @@ -. - * - * @category HTTP - * @package StatusNet - * @author Evan Prodromou - * @copyright 2009 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -define(CURLCLIENT_VERSION, "0.1"); - -/** - * Wrapper for Curl - * - * Makes Curl HTTP client calls within our HTTPClient framework - * - * @category HTTP - * @package StatusNet - * @author Evan Prodromou - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -class CurlClient extends HTTPClient -{ - function __construct() - { - } - - function head($url, $headers=null) - { - $ch = curl_init($url); - - $this->setup($ch); - - curl_setopt_array($ch, - array(CURLOPT_NOBODY => true)); - - if (!is_null($headers)) { - curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); - } - - $result = curl_exec($ch); - - curl_close($ch); - - return $this->parseResults($result); - } - - function get($url, $headers=null) - { - $ch = curl_init($url); - - $this->setup($ch); - - if (!is_null($headers)) { - curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); - } - - $result = curl_exec($ch); - - curl_close($ch); - - return $this->parseResults($result); - } - - function post($url, $headers=null, $body=null) - { - $ch = curl_init($url); - - $this->setup($ch); - - curl_setopt($ch, CURLOPT_POST, true); - - if (!is_null($body)) { - curl_setopt($ch, CURLOPT_POSTFIELDS, $body); - } - - if (!is_null($headers)) { - curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); - } - - $result = curl_exec($ch); - - curl_close($ch); - - return $this->parseResults($result); - } - - function setup($ch) - { - curl_setopt_array($ch, - array(CURLOPT_USERAGENT => $this->userAgent(), - CURLOPT_HEADER => true, - CURLOPT_RETURNTRANSFER => true)); - } - - function userAgent() - { - $version = curl_version(); - return parent::userAgent() . " CurlClient/".CURLCLIENT_VERSION . " cURL/" . $version['version']; - } - - function parseResults($results) - { - $resp = new HTTPResponse(); - - $lines = explode("\r\n", $results); - - if (preg_match("#^HTTP/1.[01] (\d\d\d) .+$#", $lines[0], $match)) { - $resp->code = $match[1]; - } else { - throw Exception("Bad format: initial line is not HTTP status line"); - } - - $lastk = null; - - for ($i = 1; $i < count($lines); $i++) { - $l =& $lines[$i]; - if (mb_strlen($l) == 0) { - $resp->body = implode("\r\n", array_slice($lines, $i + 1)); - break; - } - if (preg_match("#^(\S+):\s+(.*)$#", $l, $match)) { - $k = $match[1]; - $v = $match[2]; - - if (array_key_exists($k, $resp->headers)) { - if (is_array($resp->headers[$k])) { - $resp->headers[$k][] = $v; - } else { - $resp->headers[$k] = array($resp->headers[$k], $v); - } - } else { - $resp->headers[$k] = $v; - } - $lastk = $k; - } else if (preg_match("#^\s+(.*)$#", $l, $match)) { - // continuation line - if (is_null($lastk)) { - throw Exception("Bad format: initial whitespace in headers"); - } - $h =& $resp->headers[$lastk]; - if (is_array($h)) { - $n = count($h); - $h[$n-1] .= $match[1]; - } else { - $h .= $match[1]; - } - } - } - - return $resp; - } -} diff --git a/lib/default.php b/lib/default.php index 7ec8558b07..f6cc4b725a 100644 --- a/lib/default.php +++ b/lib/default.php @@ -228,8 +228,6 @@ $default = array('contentlimit' => null), 'message' => array('contentlimit' => null), - 'http' => - array('client' => 'curl'), // XXX: should this be the default? 'location' => array('namespace' => 1), // 1 = geonames, 2 = Yahoo Where on Earth ); diff --git a/lib/httpclient.php b/lib/httpclient.php index f16e31e103..ee894e9832 100644 --- a/lib/httpclient.php +++ b/lib/httpclient.php @@ -31,6 +31,9 @@ if (!defined('STATUSNET')) { exit(1); } +require_once 'HTTP/Request2.php'; +require_once 'HTTP/Request2/Response.php'; + /** * Useful structure for HTTP responses * @@ -38,18 +41,42 @@ if (!defined('STATUSNET')) { * ways of doing them. This class hides the specifics of what underlying * library (curl or PHP-HTTP or whatever) that's used. * + * This extends the HTTP_Request2_Response class with methods to get info + * about any followed redirects. + * * @category HTTP - * @package StatusNet - * @author Evan Prodromou - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ + * @package StatusNet + * @author Evan Prodromou + * @author Brion Vibber + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ */ - -class HTTPResponse +class HTTPResponse extends HTTP_Request2_Response { - public $code = null; - public $headers = array(); - public $body = null; + function __construct(HTTP_Request2_Response $response, $url, $redirects=0) + { + foreach (get_object_vars($response) as $key => $val) { + $this->$key = $val; + } + $this->url = strval($url); + $this->redirectCount = intval($redirects); + } + + /** + * Get the count of redirects that have been followed, if any. + * @return int + */ + function getRedirectCount() { + return $this->redirectCount; + } + + /** + * Gets the final target URL, after any redirects have been followed. + * @return string URL + */ + function getUrl() { + return $this->url; + } } /** @@ -59,64 +86,133 @@ class HTTPResponse * ways of doing them. This class hides the specifics of what underlying * library (curl or PHP-HTTP or whatever) that's used. * + * This extends the PEAR HTTP_Request2 package: + * - sends StatusNet-specific User-Agent header + * - 'follow_redirects' config option, defaulting off + * - 'max_redirs' config option, defaulting to 10 + * - extended response class adds getRedirectCount() and getUrl() methods + * - get() and post() convenience functions return body content directly + * * @category HTTP * @package StatusNet * @author Evan Prodromou + * @author Brion Vibber * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ -class HTTPClient +class HTTPClient extends HTTP_Request2 { - static $_client = null; - static function start() + function __construct($url=null, $method=self::METHOD_GET, $config=array()) { - if (!is_null(self::$_client)) { - return self::$_client; + $this->config['max_redirs'] = 10; + $this->config['follow_redirects'] = false; + parent::__construct($url, $method, $config); + $this->setHeader('User-Agent', $this->userAgent()); + } + + /** + * Convenience function to run a get request and return the response body. + * Use when you don't need to get into details of the response. + * + * @return mixed string on success, false on failure + */ + function get() + { + $this->setMethod(self::METHOD_GET); + return $this->doRequest(); + } + + /** + * Convenience function to post form data and return the response body. + * Use when you don't need to get into details of the response. + * + * @param array associative array of form data to submit + * @return mixed string on success, false on failure + */ + public function post($data=array()) + { + $this->setMethod(self::METHOD_POST); + if ($data) { + $this->addPostParameter($data); } + return $this->doRequest(); + } - $type = common_config('http', 'client'); - - switch ($type) { - case 'curl': - self::$_client = new CurlClient(); - break; - default: - throw new Exception("Unknown HTTP client type '$type'"); - break; + /** + * @return mixed string on success, false on failure + */ + protected function doRequest() + { + try { + $response = $this->send(); + $code = $response->getStatus(); + if (($code < 200) || ($code >= 400)) { + return false; + } + return $response->getBody(); + } catch (HTTP_Request2_Exception $e) { + $this->log(LOG_ERR, $e->getMessage()); + return false; } - - return self::$_client; - } - - function head($url, $headers) - { - throw new Exception("HEAD method unimplemented"); - } - - function get($url, $headers) - { - throw new Exception("GET method unimplemented"); - } - - function post($url, $headers, $body) - { - throw new Exception("POST method unimplemented"); - } - - function put($url, $headers, $body) - { - throw new Exception("PUT method unimplemented"); - } - - function delete($url, $headers) - { - throw new Exception("DELETE method unimplemented"); + } + + protected function log($level, $detail) { + $method = $this->getMethod(); + $url = $this->getUrl(); + common_log($level, __CLASS__ . ": HTTP $method $url - $detail"); } + /** + * Pulls up StatusNet's customized user-agent string, so services + * we hit can track down the responsible software. + */ function userAgent() { return "StatusNet/".STATUSNET_VERSION." (".STATUSNET_CODENAME.")"; } + + function send() + { + $maxRedirs = intval($this->config['max_redirs']); + if (empty($this->config['follow_redirects'])) { + $maxRedirs = 0; + } + $redirs = 0; + do { + try { + $response = parent::send(); + } catch (HTTP_Request2_Exception $e) { + $this->log(LOG_ERR, $e->getMessage()); + throw $e; + } + $code = $response->getStatus(); + if ($code >= 200 && $code < 300) { + $reason = $response->getReasonPhrase(); + $this->log(LOG_INFO, "$code $reason"); + } elseif ($code >= 300 && $code < 400) { + $url = $this->getUrl(); + $target = $response->getHeader('Location'); + + if (++$redirs >= $maxRedirs) { + common_log(LOG_ERR, __CLASS__ . ": Too many redirects: skipping $code redirect from $url to $target"); + break; + } + try { + $this->setUrl($target); + $this->setHeader('Referer', $url); + common_log(LOG_INFO, __CLASS__ . ": Following $code redirect from $url to $target"); + continue; + } catch (HTTP_Request2_Exception $e) { + common_log(LOG_ERR, __CLASS__ . ": Invalid $code redirect from $url to $target"); + } + } else { + $reason = $response->getReasonPhrase(); + $this->log(LOG_ERR, "$code $reason"); + } + break; + } while ($maxRedirs); + return new HTTPResponse($response, $this->getUrl(), $redirs); + } } diff --git a/lib/oauthclient.php b/lib/oauthclient.php index f1827726e7..1a86e2460e 100644 --- a/lib/oauthclient.php +++ b/lib/oauthclient.php @@ -43,7 +43,7 @@ require_once 'OAuth.php'; * @link http://status.net/ * */ -class OAuthClientCurlException extends Exception +class OAuthClientException extends Exception { } @@ -97,9 +97,14 @@ class OAuthClient function getRequestToken($url) { $response = $this->oAuthGet($url); - parse_str($response); - $token = new OAuthToken($oauth_token, $oauth_token_secret); - return $token; + $arr = array(); + parse_str($response, $arr); + if (isset($arr['oauth_token']) && isset($arr['oauth_token_secret'])) { + $token = new OAuthToken($arr['oauth_token'], @$arr['oauth_token_secret']); + return $token; + } else { + throw new OAuthClientException(); + } } /** @@ -177,7 +182,7 @@ class OAuthClient } /** - * Make a HTTP request using cURL. + * Make a HTTP request. * * @param string $url Where to make the * @param array $params post parameters @@ -186,40 +191,32 @@ class OAuthClient */ function httpRequest($url, $params = null) { - $options = array( - CURLOPT_RETURNTRANSFER => true, - CURLOPT_FAILONERROR => true, - CURLOPT_HEADER => false, - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_USERAGENT => 'StatusNet', - CURLOPT_CONNECTTIMEOUT => 120, - CURLOPT_TIMEOUT => 120, - CURLOPT_HTTPAUTH => CURLAUTH_ANY, - CURLOPT_SSL_VERIFYPEER => false, + $request = new HTTPClient($url); + $request->setConfig(array( + 'connect_timeout' => 120, + 'timeout' => 120, + 'follow_redirects' => true, + 'ssl_verify_peer' => false, + )); - // Twitter is strict about accepting invalid "Expect" headers - - CURLOPT_HTTPHEADER => array('Expect:') - ); + // Twitter is strict about accepting invalid "Expect" headers + $request->setHeader('Expect', ''); if (isset($params)) { - $options[CURLOPT_POST] = true; - $options[CURLOPT_POSTFIELDS] = $params; + $request->setMethod(HTTP_Request2::METHOD_POST); + $request->setBody($params); } - $ch = curl_init($url); - curl_setopt_array($ch, $options); - $response = curl_exec($ch); - - if ($response === false) { - $msg = curl_error($ch); - $code = curl_errno($ch); - throw new OAuthClientCurlException($msg, $code); + try { + $response = $request->send(); + $code = $response->getStatus(); + if ($code < 200 || $code >= 400) { + throw new OAuthClientException($response->getBody(), $code); + } + return $response->getBody(); + } catch (Exception $e) { + throw new OAuthClientException($e->getMessage(), $e->getCode()); } - - curl_close($ch); - - return $response; } } diff --git a/lib/ping.php b/lib/ping.php index 175bf8440b..2797c1b2d2 100644 --- a/lib/ping.php +++ b/lib/ping.php @@ -44,20 +44,18 @@ function ping_broadcast_notice($notice) { array('nickname' => $profile->nickname)), $tags)); - $context = stream_context_create(array('http' => array('method' => "POST", - 'header' => - "Content-Type: text/xml\r\n". - "User-Agent: StatusNet/".STATUSNET_VERSION."\r\n", - 'content' => $req))); - $file = file_get_contents($notify_url, false, $context); + $request = new HTTPClient($notify_url, HTTP_Request2::METHOD_POST); + $request->setHeader('Content-Type', 'text/xml'); + $request->setBody($req); + $httpResponse = $request->send(); - if ($file === false || mb_strlen($file) == 0) { + if (!$httpResponse || mb_strlen($httpResponse->getBody()) == 0) { common_log(LOG_WARNING, "XML-RPC empty results for ping ($notify_url, $notice->id) "); continue; } - $response = xmlrpc_decode($file); + $response = xmlrpc_decode($httpResponse->getBody()); if (is_array($response) && xmlrpc_is_fault($response)) { common_log(LOG_WARNING, diff --git a/lib/snapshot.php b/lib/snapshot.php index ede846e5b0..6829e8a751 100644 --- a/lib/snapshot.php +++ b/lib/snapshot.php @@ -172,26 +172,11 @@ class Snapshot { // XXX: Use OICU2 and OAuth to make authorized requests - $postdata = http_build_query($this->stats); - - $opts = - array('http' => - array( - 'method' => 'POST', - 'header' => 'Content-type: '. - 'application/x-www-form-urlencoded', - 'content' => $postdata, - 'user_agent' => 'StatusNet/'.STATUSNET_VERSION - ) - ); - - $context = stream_context_create($opts); - $reporturl = common_config('snapshot', 'reporturl'); - $result = @file_get_contents($reporturl, false, $context); - - return $result; + $request = new HTTPClient($reporturl, HTTP_Request2::METHOD_POST); + $request->addPostParameter($this->stats); + $request->send(); } /** diff --git a/plugins/BlogspamNetPlugin.php b/plugins/BlogspamNetPlugin.php index c14569746f..3bdc735561 100644 --- a/plugins/BlogspamNetPlugin.php +++ b/plugins/BlogspamNetPlugin.php @@ -22,6 +22,7 @@ * @category Plugin * @package StatusNet * @author Evan Prodromou + * @author Brion Vibber * @copyright 2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ @@ -69,14 +70,14 @@ class BlogspamNetPlugin extends Plugin { $args = $this->testArgs($notice); common_debug("Blogspamnet args = " . print_r($args, TRUE)); - $request = xmlrpc_encode_request('testComment', array($args)); - $context = stream_context_create(array('http' => array('method' => "POST", - 'header' => - "Content-Type: text/xml\r\n". - "User-Agent: " . $this->userAgent(), - 'content' => $request))); - $file = file_get_contents($this->baseUrl, false, $context); - $response = xmlrpc_decode($file); + $requestBody = xmlrpc_encode_request('testComment', array($args)); + + $request = new HTTPClient($this->baseUrl, HTTP_Request2::METHOD_POST); + $request->addHeader('Content-Type: text/xml'); + $request->setBody($requestBody); + $httpResponse = $request->send(); + + $response = xmlrpc_decode($httpResponse->getBody()); if (xmlrpc_is_fault($response)) { throw new ServerException("$response[faultString] ($response[faultCode])", 500); } else { diff --git a/plugins/LinkbackPlugin.php b/plugins/LinkbackPlugin.php index 60f7a60c79..0513687e91 100644 --- a/plugins/LinkbackPlugin.php +++ b/plugins/LinkbackPlugin.php @@ -129,27 +129,25 @@ class LinkbackPlugin extends Plugin } } - $request = xmlrpc_encode_request('pingback.ping', $args); - $context = stream_context_create(array('http' => array('method' => "POST", - 'header' => - "Content-Type: text/xml\r\n". - "User-Agent: " . $this->userAgent(), - 'content' => $request))); - $file = file_get_contents($endpoint, false, $context); - if (!$file) { + $request = new HTTPClient($endpoint, 'POST'); + $request->setHeader('User-Agent', $this->userAgent()); + $request->setHeader('Content-Type', 'text/xml'); + $request->setBody(xmlrpc_encode_request('pingback.ping', $args)); + try { + $response = $request->send(); + } catch (HTTP_Request2_Exception $e) { common_log(LOG_WARNING, - "Pingback request failed for '$url' ($endpoint)"); + "Pingback request failed for '$url' ($endpoint)"); + } + $response = xmlrpc_decode($response->getBody()); + if (xmlrpc_is_fault($response)) { + common_log(LOG_WARNING, + "Pingback error for '$url' ($endpoint): ". + "$response[faultString] ($response[faultCode])"); } else { - $response = xmlrpc_decode($file); - if (xmlrpc_is_fault($response)) { - common_log(LOG_WARNING, - "Pingback error for '$url' ($endpoint): ". - "$response[faultString] ($response[faultCode])"); - } else { - common_log(LOG_INFO, - "Pingback success for '$url' ($endpoint): ". - "'$response'"); - } + common_log(LOG_INFO, + "Pingback success for '$url' ($endpoint): ". + "'$response'"); } } diff --git a/plugins/SimpleUrl/SimpleUrlPlugin.php b/plugins/SimpleUrl/SimpleUrlPlugin.php index 82d7720487..d59d63e47c 100644 --- a/plugins/SimpleUrl/SimpleUrlPlugin.php +++ b/plugins/SimpleUrl/SimpleUrlPlugin.php @@ -65,15 +65,6 @@ class SimpleUrlPlugin extends Plugin class SimpleUrl extends ShortUrlApi { protected function shorten_imp($url) { - $curlh = curl_init(); - curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 20); // # seconds to wait - curl_setopt($curlh, CURLOPT_USERAGENT, 'StatusNet'); - curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true); - - curl_setopt($curlh, CURLOPT_URL, $this->service_url.urlencode($url)); - $short_url = curl_exec($curlh); - - curl_close($curlh); - return $short_url; + return $this->http_get($url); } } diff --git a/plugins/TwitterBridge/daemons/synctwitterfriends.php b/plugins/TwitterBridge/daemons/synctwitterfriends.php index ed2bf48a22..671e3c7afa 100755 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php @@ -152,8 +152,8 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon $friends_ids = $client->friendsIds(); } catch (Exception $e) { common_log(LOG_WARNING, $this->name() . - ' - cURL error getting friend ids ' . - $e->getCode() . ' - ' . $e->getMessage()); + ' - error getting friend ids: ' . + $e->getMessage()); return $friends; } diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index 81bbbc7c5f..6c91b28605 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -109,12 +109,16 @@ class TwitterStatusFetcher extends ParallelizingDaemon $flink->find(); $flinks = array(); + common_log(LOG_INFO, "hello"); while ($flink->fetch()) { if (($flink->noticesync & FOREIGN_NOTICE_RECV) == FOREIGN_NOTICE_RECV) { $flinks[] = clone($flink); + common_log(LOG_INFO, "sync: foreign id $flink->foreign_id"); + } else { + common_log(LOG_INFO, "nothing to sync"); } } @@ -515,31 +519,34 @@ class TwitterStatusFetcher extends ParallelizingDaemon return $id; } + /** + * Fetch a remote avatar image and save to local storage. + * + * @param string $url avatar source URL + * @param string $filename bare local filename for download + * @return bool true on success, false on failure + */ function fetchAvatar($url, $filename) { - $avatarfile = Avatar::path($filename); + common_debug($this->name() . " - Fetching Twitter avatar: $url"); - $out = fopen($avatarfile, 'wb'); - if (!$out) { - common_log(LOG_WARNING, $this->name() . - " - Couldn't open file $filename"); + $request = new HTTPClient($url, 'GET', array( + 'follow_redirects' => true, + )); + $data = $request->get(); + if ($data) { + $avatarfile = Avatar::path($filename); + $ok = file_put_contents($avatarfile, $data); + if (!$ok) { + common_log(LOG_WARNING, $this->name() . + " - Couldn't open file $filename"); + return false; + } + } else { return false; } - common_debug($this->name() . " - Fetching Twitter avatar: $url"); - - $ch = curl_init(); - curl_setopt($ch, CURLOPT_URL, $url); - curl_setopt($ch, CURLOPT_FILE, $out); - curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); - curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); - curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0); - $result = curl_exec($ch); - curl_close($ch); - - fclose($out); - - return $result; + return true; } } diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 1a5248a9b9..3c6803e49a 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -215,7 +215,7 @@ function broadcast_basicauth($notice, $flink) try { $status = $client->statusesUpdate($statustxt); - } catch (BasicAuthCurlException $e) { + } catch (HTTP_Request2_Exception $e) { return process_error($e, $flink); } diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index 2a93ff13e2..f1daefab12 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -125,7 +125,7 @@ class TwitterauthorizationAction extends Action $auth_link = $client->getAuthorizeLink($req_tok); - } catch (TwitterOAuthClientException $e) { + } catch (OAuthClientException $e) { $msg = sprintf('OAuth client cURL error - code: %1s, msg: %2s', $e->getCode(), $e->getMessage()); $this->serverError(_('Couldn\'t link your Twitter account.')); diff --git a/plugins/TwitterBridge/twitterbasicauthclient.php b/plugins/TwitterBridge/twitterbasicauthclient.php index 1040d72fb6..e4cae73734 100644 --- a/plugins/TwitterBridge/twitterbasicauthclient.php +++ b/plugins/TwitterBridge/twitterbasicauthclient.php @@ -31,26 +31,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -/** - * Exception wrapper for cURL errors - * - * @category Integration - * @package StatusNet - * @author Adrian Lang - * @author Brenda Wallace - * @author Craig Andrews - * @author Dan Moore - * @author Evan Prodromou - * @author mEDI - * @author Sarven Capadisli - * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - * - */ -class BasicAuthCurlException extends Exception -{ -} - /** * Class for talking to the Twitter API with HTTP Basic Auth. * @@ -198,45 +178,27 @@ class TwitterBasicAuthClient */ function httpRequest($url, $params = null, $auth = true) { - $options = array( - CURLOPT_RETURNTRANSFER => true, - CURLOPT_FAILONERROR => true, - CURLOPT_HEADER => false, - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_USERAGENT => 'StatusNet', - CURLOPT_CONNECTTIMEOUT => 120, - CURLOPT_TIMEOUT => 120, - CURLOPT_HTTPAUTH => CURLAUTH_ANY, - CURLOPT_SSL_VERIFYPEER => false, + $request = new HTTPClient($url, 'GET', array( + 'follow_redirects' => true, + 'connect_timeout' => 120, + 'timeout' => 120, + 'ssl_verifypeer' => false, + )); - // Twitter is strict about accepting invalid "Expect" headers - - CURLOPT_HTTPHEADER => array('Expect:') - ); + // Twitter is strict about accepting invalid "Expect" headers + $request->setHeader('Expect', ''); if (isset($params)) { - $options[CURLOPT_POST] = true; - $options[CURLOPT_POSTFIELDS] = $params; + $request->setMethod('POST'); + $request->addPostParameter($params); } if ($auth) { - $options[CURLOPT_USERPWD] = $this->screen_name . - ':' . $this->password; + $request->setAuth($this->screen_name, $this->password); } - $ch = curl_init($url); - curl_setopt_array($ch, $options); - $response = curl_exec($ch); - - if ($response === false) { - $msg = curl_error($ch); - $code = curl_errno($ch); - throw new BasicAuthCurlException($msg, $code); - } - - curl_close($ch); - - return $response; + $response = $request->send(); + return $response->getBody(); } } diff --git a/plugins/WikiHashtagsPlugin.php b/plugins/WikiHashtagsPlugin.php index 0c5649aa45..a9e675f5ce 100644 --- a/plugins/WikiHashtagsPlugin.php +++ b/plugins/WikiHashtagsPlugin.php @@ -68,10 +68,8 @@ class WikiHashtagsPlugin extends Plugin $editurl = sprintf('http://hashtags.wikia.com/index.php?title=%s&action=edit', urlencode($tag)); - $context = stream_context_create(array('http' => array('method' => "GET", - 'header' => - "User-Agent: " . $this->userAgent()))); - $html = @file_get_contents($url, false, $context); + $request = new HTTPClient($url); + $html = $request->get(); $action->elementStart('div', array('id' => 'wikihashtags', 'class' => 'section')); @@ -100,10 +98,4 @@ class WikiHashtagsPlugin extends Plugin return true; } - - function userAgent() - { - return 'WikiHashtagsPlugin/'.WIKIHASHTAGSPLUGIN_VERSION . - ' StatusNet/' . STATUSNET_VERSION; - } } diff --git a/scripts/enjitqueuehandler.php b/scripts/enjitqueuehandler.php index 08f733b07c..214cc02b47 100755 --- a/scripts/enjitqueuehandler.php +++ b/scripts/enjitqueuehandler.php @@ -46,8 +46,8 @@ class EnjitQueueHandler extends QueueHandler function start() { - $this->log(LOG_INFO, "Starting EnjitQueueHandler"); - $this->log(LOG_INFO, "Broadcasting to ".common_config('enjit', 'apiurl')); + $this->log(LOG_INFO, "Starting EnjitQueueHandler"); + $this->log(LOG_INFO, "Broadcasting to ".common_config('enjit', 'apiurl')); return true; } @@ -56,16 +56,16 @@ class EnjitQueueHandler extends QueueHandler $profile = Profile::staticGet($notice->profile_id); - $this->log(LOG_INFO, "Posting Notice ".$notice->id." from ".$profile->nickname); + $this->log(LOG_INFO, "Posting Notice ".$notice->id." from ".$profile->nickname); - if ( ! $notice->is_local ) { - $this->log(LOG_INFO, "Skipping remote notice"); - return "skipped"; - } + if ( ! $notice->is_local ) { + $this->log(LOG_INFO, "Skipping remote notice"); + return "skipped"; + } - # - # Build an Atom message from the notice - # + # + # Build an Atom message from the notice + # $noticeurl = common_local_url('shownotice', array('notice' => $notice->id)); $msg = $profile->nickname . ': ' . $notice->content; @@ -86,36 +86,20 @@ class EnjitQueueHandler extends QueueHandler $atom .= "".common_date_w3dtf($notice->modified)."\n"; $atom .= "\n"; - $url = common_config('enjit', 'apiurl') . "/submit/". common_config('enjit','apikey'); - $data = "msg=$atom"; + $url = common_config('enjit', 'apiurl') . "/submit/". common_config('enjit','apikey'); + $data = array( + 'msg' => $atom, + ); - # - # POST the message to $config['enjit']['apiurl'] - # - $ch = curl_init(); - - curl_setopt($ch, CURLOPT_URL, $url); - - curl_setopt($ch, CURLOPT_HEADER, 1); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($ch, CURLOPT_POST, 1) ; - curl_setopt($ch, CURLOPT_POSTFIELDS, $data); - - # SSL and Debugging options - # - # curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); - # curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); - # curl_setopt($ch, CURLOPT_VERBOSE, 1); - - $result = curl_exec($ch); - - $code = curl_getinfo($ch, CURLINFO_HTTP_CODE ); - - $this->log(LOG_INFO, "Response Code: $code"); - - curl_close($ch); - - return $code; + # + # POST the message to $config['enjit']['apiurl'] + # + $request = new HTTPClient($url, HTTP_Request2::METHOD_POST); + $request->addPostFields($data); + $response = $request->send(); + + // @fixme handle_notice() is supposed to return true/false. Somethin' funky? + return $response->getStatus(); } } From d8e2d76ba93557f8c12f966b5d0afccf9fbdc83b Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 14:54:31 +0000 Subject: [PATCH 17/92] Typo: z-index should be 2 instead of 1 --- theme/base/css/display.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index fb630d58a6..878662c562 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -693,7 +693,7 @@ top:34px; right:-1px; padding:1.795%; width:65%; -z-index:1; +z-index:2; border-radius:7px; -moz-border-radius:7px; -webkit-radius-border:7px; From b22fc5b74aecd505d4e2df01258171fc65d312cf Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 2 Nov 2009 06:56:31 -0800 Subject: [PATCH 18/92] Revert "Rebuilt HTTPClient class as an extension of PEAR HTTP_Request2 package, adding redirect handling and convenience functions." Going to restructure a little more before finalizing this... This reverts commit fa37967858c3c29000797e510e5f98aca8ab558f. --- classes/File_redirection.php | 66 +- extlib/HTTP/Request2.php | 844 --------------- extlib/HTTP/Request2/Adapter.php | 152 --- extlib/HTTP/Request2/Adapter/Curl.php | 383 ------- extlib/HTTP/Request2/Adapter/Mock.php | 171 --- extlib/HTTP/Request2/Adapter/Socket.php | 971 ------------------ extlib/HTTP/Request2/Exception.php | 62 -- extlib/HTTP/Request2/MultipartBody.php | 274 ----- extlib/HTTP/Request2/Observer/Log.php | 215 ---- extlib/HTTP/Request2/Response.php | 549 ---------- extlib/Net/URL2.php | 469 ++++----- install.php | 7 - lib/Shorturl_api.php | 23 +- lib/curlclient.php | 179 ++++ lib/default.php | 2 + lib/httpclient.php | 196 +--- lib/oauthclient.php | 63 +- lib/ping.php | 14 +- lib/snapshot.php | 21 +- plugins/BlogspamNetPlugin.php | 17 +- plugins/LinkbackPlugin.php | 36 +- plugins/SimpleUrl/SimpleUrlPlugin.php | 11 +- .../daemons/synctwitterfriends.php | 4 +- .../daemons/twitterstatusfetcher.php | 45 +- plugins/TwitterBridge/twitter.php | 2 +- .../TwitterBridge/twitterauthorization.php | 2 +- .../TwitterBridge/twitterbasicauthclient.php | 64 +- plugins/WikiHashtagsPlugin.php | 12 +- scripts/enjitqueuehandler.php | 62 +- 29 files changed, 672 insertions(+), 4244 deletions(-) delete mode 100644 extlib/HTTP/Request2.php delete mode 100644 extlib/HTTP/Request2/Adapter.php delete mode 100644 extlib/HTTP/Request2/Adapter/Curl.php delete mode 100644 extlib/HTTP/Request2/Adapter/Mock.php delete mode 100644 extlib/HTTP/Request2/Adapter/Socket.php delete mode 100644 extlib/HTTP/Request2/Exception.php delete mode 100644 extlib/HTTP/Request2/MultipartBody.php delete mode 100644 extlib/HTTP/Request2/Observer/Log.php delete mode 100644 extlib/HTTP/Request2/Response.php create mode 100644 lib/curlclient.php diff --git a/classes/File_redirection.php b/classes/File_redirection.php index b7945699ab..79052bf7d3 100644 --- a/classes/File_redirection.php +++ b/classes/File_redirection.php @@ -47,15 +47,18 @@ class File_redirection extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - static function _commonHttp($url, $redirs) { - $request = new HTTPClient($url); - $request->setConfig(array( - 'connect_timeout' => 10, // # seconds to wait - 'max_redirs' => $redirs, // # max number of http redirections to follow - 'follow_redirects' => true, // Follow redirects - 'store_body' => false, // We won't need body content here. - )); - return $request; + function _commonCurl($url, $redirs) { + $curlh = curl_init(); + curl_setopt($curlh, CURLOPT_URL, $url); + curl_setopt($curlh, CURLOPT_AUTOREFERER, true); // # setup referer header when folowing redirects + curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 10); // # seconds to wait + curl_setopt($curlh, CURLOPT_MAXREDIRS, $redirs); // # max number of http redirections to follow + curl_setopt($curlh, CURLOPT_USERAGENT, USER_AGENT); + curl_setopt($curlh, CURLOPT_FOLLOWLOCATION, true); // Follow redirects + curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true); + curl_setopt($curlh, CURLOPT_FILETIME, true); + curl_setopt($curlh, CURLOPT_HEADER, true); // Include header in output + return $curlh; } function _redirectWhere_imp($short_url, $redirs = 10, $protected = false) { @@ -79,39 +82,32 @@ class File_redirection extends Memcached_DataObject if(strpos($short_url,'://') === false){ return $short_url; } - try { - $request = self::_commonHttp($short_url, $redirs); - // Don't include body in output - $request->setMethod(HTTP_Request2::METHOD_HEAD); - $response = $request->send(); + $curlh = File_redirection::_commonCurl($short_url, $redirs); + // Don't include body in output + curl_setopt($curlh, CURLOPT_NOBODY, true); + curl_exec($curlh); + $info = curl_getinfo($curlh); + curl_close($curlh); - if (405 == $response->getCode()) { - // Server doesn't support HEAD method? Can this really happen? - // We'll try again as a GET and ignore the response data. - $request = self::_commonHttp($short_url, $redirs); - $response = $request->send(); - } - } catch (Exception $e) { - // Invalid URL or failure to reach server - return $short_url; + if (405 == $info['http_code']) { + $curlh = File_redirection::_commonCurl($short_url, $redirs); + curl_exec($curlh); + $info = curl_getinfo($curlh); + curl_close($curlh); } - if ($response->getRedirectCount() && File::isProtected($response->getUrl())) { - // Bump back up the redirect chain until we find a non-protected URL - return self::_redirectWhere_imp($short_url, $response->getRedirectCount() - 1, true); + if (!empty($info['redirect_count']) && File::isProtected($info['url'])) { + return File_redirection::_redirectWhere_imp($short_url, $info['redirect_count'] - 1, true); } - $ret = array('code' => $response->getCode() - , 'redirects' => $response->getRedirectCount() - , 'url' => $response->getUrl()); + $ret = array('code' => $info['http_code'] + , 'redirects' => $info['redirect_count'] + , 'url' => $info['url']); - $type = $response->getHeader('Content-Type'); - if ($type) $ret['type'] = $type; + if (!empty($info['content_type'])) $ret['type'] = $info['content_type']; if ($protected) $ret['protected'] = true; - $size = $request->getHeader('Content-Length'); // @fixme bytes? - if ($size) $ret['size'] = $size; - $time = $request->getHeader('Last-Modified'); - if ($time) $ret['time'] = strtotime($time); + if (!empty($info['download_content_length'])) $ret['size'] = $info['download_content_length']; + if (isset($info['filetime']) && ($info['filetime'] > 0)) $ret['time'] = $info['filetime']; return $ret; } diff --git a/extlib/HTTP/Request2.php b/extlib/HTTP/Request2.php deleted file mode 100644 index e06bb86bca..0000000000 --- a/extlib/HTTP/Request2.php +++ /dev/null @@ -1,844 +0,0 @@ - - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: Request2.php 278226 2009-04-03 21:32:48Z avb $ - * @link http://pear.php.net/package/HTTP_Request2 - */ - -/** - * A class representing an URL as per RFC 3986. - */ -require_once 'Net/URL2.php'; - -/** - * Exception class for HTTP_Request2 package - */ -require_once 'HTTP/Request2/Exception.php'; - -/** - * Class representing a HTTP request - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @version Release: 0.4.1 - * @link http://tools.ietf.org/html/rfc2616#section-5 - */ -class HTTP_Request2 implements SplSubject -{ - /**#@+ - * Constants for HTTP request methods - * - * @link http://tools.ietf.org/html/rfc2616#section-5.1.1 - */ - const METHOD_OPTIONS = 'OPTIONS'; - const METHOD_GET = 'GET'; - const METHOD_HEAD = 'HEAD'; - const METHOD_POST = 'POST'; - const METHOD_PUT = 'PUT'; - const METHOD_DELETE = 'DELETE'; - const METHOD_TRACE = 'TRACE'; - const METHOD_CONNECT = 'CONNECT'; - /**#@-*/ - - /**#@+ - * Constants for HTTP authentication schemes - * - * @link http://tools.ietf.org/html/rfc2617 - */ - const AUTH_BASIC = 'basic'; - const AUTH_DIGEST = 'digest'; - /**#@-*/ - - /** - * Regular expression used to check for invalid symbols in RFC 2616 tokens - * @link http://pear.php.net/bugs/bug.php?id=15630 - */ - const REGEXP_INVALID_TOKEN = '![\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]!'; - - /** - * Regular expression used to check for invalid symbols in cookie strings - * @link http://pear.php.net/bugs/bug.php?id=15630 - * @link http://cgi.netscape.com/newsref/std/cookie_spec.html - */ - const REGEXP_INVALID_COOKIE = '/[\s,;]/'; - - /** - * Fileinfo magic database resource - * @var resource - * @see detectMimeType() - */ - private static $_fileinfoDb; - - /** - * Observers attached to the request (instances of SplObserver) - * @var array - */ - protected $observers = array(); - - /** - * Request URL - * @var Net_URL2 - */ - protected $url; - - /** - * Request method - * @var string - */ - protected $method = self::METHOD_GET; - - /** - * Authentication data - * @var array - * @see getAuth() - */ - protected $auth; - - /** - * Request headers - * @var array - */ - protected $headers = array(); - - /** - * Configuration parameters - * @var array - * @see setConfig() - */ - protected $config = array( - 'adapter' => 'HTTP_Request2_Adapter_Socket', - 'connect_timeout' => 10, - 'timeout' => 0, - 'use_brackets' => true, - 'protocol_version' => '1.1', - 'buffer_size' => 16384, - 'store_body' => true, - - 'proxy_host' => '', - 'proxy_port' => '', - 'proxy_user' => '', - 'proxy_password' => '', - 'proxy_auth_scheme' => self::AUTH_BASIC, - - 'ssl_verify_peer' => true, - 'ssl_verify_host' => true, - 'ssl_cafile' => null, - 'ssl_capath' => null, - 'ssl_local_cert' => null, - 'ssl_passphrase' => null, - - 'digest_compat_ie' => false - ); - - /** - * Last event in request / response handling, intended for observers - * @var array - * @see getLastEvent() - */ - protected $lastEvent = array( - 'name' => 'start', - 'data' => null - ); - - /** - * Request body - * @var string|resource - * @see setBody() - */ - protected $body = ''; - - /** - * Array of POST parameters - * @var array - */ - protected $postParams = array(); - - /** - * Array of file uploads (for multipart/form-data POST requests) - * @var array - */ - protected $uploads = array(); - - /** - * Adapter used to perform actual HTTP request - * @var HTTP_Request2_Adapter - */ - protected $adapter; - - - /** - * Constructor. Can set request URL, method and configuration array. - * - * Also sets a default value for User-Agent header. - * - * @param string|Net_Url2 Request URL - * @param string Request method - * @param array Configuration for this Request instance - */ - public function __construct($url = null, $method = self::METHOD_GET, array $config = array()) - { - if (!empty($url)) { - $this->setUrl($url); - } - if (!empty($method)) { - $this->setMethod($method); - } - $this->setConfig($config); - $this->setHeader('user-agent', 'HTTP_Request2/0.4.1 ' . - '(http://pear.php.net/package/http_request2) ' . - 'PHP/' . phpversion()); - } - - /** - * Sets the URL for this request - * - * If the URL has userinfo part (username & password) these will be removed - * and converted to auth data. If the URL does not have a path component, - * that will be set to '/'. - * - * @param string|Net_URL2 Request URL - * @return HTTP_Request2 - * @throws HTTP_Request2_Exception - */ - public function setUrl($url) - { - if (is_string($url)) { - $url = new Net_URL2($url); - } - if (!$url instanceof Net_URL2) { - throw new HTTP_Request2_Exception('Parameter is not a valid HTTP URL'); - } - // URL contains username / password? - if ($url->getUserinfo()) { - $username = $url->getUser(); - $password = $url->getPassword(); - $this->setAuth(rawurldecode($username), $password? rawurldecode($password): ''); - $url->setUserinfo(''); - } - if ('' == $url->getPath()) { - $url->setPath('/'); - } - $this->url = $url; - - return $this; - } - - /** - * Returns the request URL - * - * @return Net_URL2 - */ - public function getUrl() - { - return $this->url; - } - - /** - * Sets the request method - * - * @param string - * @return HTTP_Request2 - * @throws HTTP_Request2_Exception if the method name is invalid - */ - public function setMethod($method) - { - // Method name should be a token: http://tools.ietf.org/html/rfc2616#section-5.1.1 - if (preg_match(self::REGEXP_INVALID_TOKEN, $method)) { - throw new HTTP_Request2_Exception("Invalid request method '{$method}'"); - } - $this->method = $method; - - return $this; - } - - /** - * Returns the request method - * - * @return string - */ - public function getMethod() - { - return $this->method; - } - - /** - * Sets the configuration parameter(s) - * - * The following parameters are available: - *
    - *
  • 'adapter' - adapter to use (string)
  • - *
  • 'connect_timeout' - Connection timeout in seconds (integer)
  • - *
  • 'timeout' - Total number of seconds a request can take. - * Use 0 for no limit, should be greater than - * 'connect_timeout' if set (integer)
  • - *
  • 'use_brackets' - Whether to append [] to array variable names (bool)
  • - *
  • 'protocol_version' - HTTP Version to use, '1.0' or '1.1' (string)
  • - *
  • 'buffer_size' - Buffer size to use for reading and writing (int)
  • - *
  • 'store_body' - Whether to store response body in response object. - * Set to false if receiving a huge response and - * using an Observer to save it (boolean)
  • - *
  • 'proxy_host' - Proxy server host (string)
  • - *
  • 'proxy_port' - Proxy server port (integer)
  • - *
  • 'proxy_user' - Proxy auth username (string)
  • - *
  • 'proxy_password' - Proxy auth password (string)
  • - *
  • 'proxy_auth_scheme' - Proxy auth scheme, one of HTTP_Request2::AUTH_* constants (string)
  • - *
  • 'ssl_verify_peer' - Whether to verify peer's SSL certificate (bool)
  • - *
  • 'ssl_verify_host' - Whether to check that Common Name in SSL - * certificate matches host name (bool)
  • - *
  • 'ssl_cafile' - Cerificate Authority file to verify the peer - * with (use with 'ssl_verify_peer') (string)
  • - *
  • 'ssl_capath' - Directory holding multiple Certificate - * Authority files (string)
  • - *
  • 'ssl_local_cert' - Name of a file containing local cerificate (string)
  • - *
  • 'ssl_passphrase' - Passphrase with which local certificate - * was encoded (string)
  • - *
  • 'digest_compat_ie' - Whether to imitate behaviour of MSIE 5 and 6 - * in using URL without query string in digest - * authentication (boolean)
  • - *
- * - * @param string|array configuration parameter name or array - * ('parameter name' => 'parameter value') - * @param mixed parameter value if $nameOrConfig is not an array - * @return HTTP_Request2 - * @throws HTTP_Request2_Exception If the parameter is unknown - */ - public function setConfig($nameOrConfig, $value = null) - { - if (is_array($nameOrConfig)) { - foreach ($nameOrConfig as $name => $value) { - $this->setConfig($name, $value); - } - - } else { - if (!array_key_exists($nameOrConfig, $this->config)) { - throw new HTTP_Request2_Exception( - "Unknown configuration parameter '{$nameOrConfig}'" - ); - } - $this->config[$nameOrConfig] = $value; - } - - return $this; - } - - /** - * Returns the value(s) of the configuration parameter(s) - * - * @param string parameter name - * @return mixed value of $name parameter, array of all configuration - * parameters if $name is not given - * @throws HTTP_Request2_Exception If the parameter is unknown - */ - public function getConfig($name = null) - { - if (null === $name) { - return $this->config; - } elseif (!array_key_exists($name, $this->config)) { - throw new HTTP_Request2_Exception( - "Unknown configuration parameter '{$name}'" - ); - } - return $this->config[$name]; - } - - /** - * Sets the autentification data - * - * @param string user name - * @param string password - * @param string authentication scheme - * @return HTTP_Request2 - */ - public function setAuth($user, $password = '', $scheme = self::AUTH_BASIC) - { - if (empty($user)) { - $this->auth = null; - } else { - $this->auth = array( - 'user' => (string)$user, - 'password' => (string)$password, - 'scheme' => $scheme - ); - } - - return $this; - } - - /** - * Returns the authentication data - * - * The array has the keys 'user', 'password' and 'scheme', where 'scheme' - * is one of the HTTP_Request2::AUTH_* constants. - * - * @return array - */ - public function getAuth() - { - return $this->auth; - } - - /** - * Sets request header(s) - * - * The first parameter may be either a full header string 'header: value' or - * header name. In the former case $value parameter is ignored, in the latter - * the header's value will either be set to $value or the header will be - * removed if $value is null. The first parameter can also be an array of - * headers, in that case method will be called recursively. - * - * Note that headers are treated case insensitively as per RFC 2616. - * - * - * $req->setHeader('Foo: Bar'); // sets the value of 'Foo' header to 'Bar' - * $req->setHeader('FoO', 'Baz'); // sets the value of 'Foo' header to 'Baz' - * $req->setHeader(array('foo' => 'Quux')); // sets the value of 'Foo' header to 'Quux' - * $req->setHeader('FOO'); // removes 'Foo' header from request - * - * - * @param string|array header name, header string ('Header: value') - * or an array of headers - * @param string|null header value, header will be removed if null - * @return HTTP_Request2 - * @throws HTTP_Request2_Exception - */ - public function setHeader($name, $value = null) - { - if (is_array($name)) { - foreach ($name as $k => $v) { - if (is_string($k)) { - $this->setHeader($k, $v); - } else { - $this->setHeader($v); - } - } - } else { - if (null === $value && strpos($name, ':')) { - list($name, $value) = array_map('trim', explode(':', $name, 2)); - } - // Header name should be a token: http://tools.ietf.org/html/rfc2616#section-4.2 - if (preg_match(self::REGEXP_INVALID_TOKEN, $name)) { - throw new HTTP_Request2_Exception("Invalid header name '{$name}'"); - } - // Header names are case insensitive anyway - $name = strtolower($name); - if (null === $value) { - unset($this->headers[$name]); - } else { - $this->headers[$name] = $value; - } - } - - return $this; - } - - /** - * Returns the request headers - * - * The array is of the form ('header name' => 'header value'), header names - * are lowercased - * - * @return array - */ - public function getHeaders() - { - return $this->headers; - } - - /** - * Appends a cookie to "Cookie:" header - * - * @param string cookie name - * @param string cookie value - * @return HTTP_Request2 - * @throws HTTP_Request2_Exception - */ - public function addCookie($name, $value) - { - $cookie = $name . '=' . $value; - if (preg_match(self::REGEXP_INVALID_COOKIE, $cookie)) { - throw new HTTP_Request2_Exception("Invalid cookie: '{$cookie}'"); - } - $cookies = empty($this->headers['cookie'])? '': $this->headers['cookie'] . '; '; - $this->setHeader('cookie', $cookies . $cookie); - - return $this; - } - - /** - * Sets the request body - * - * @param string Either a string with the body or filename containing body - * @param bool Whether first parameter is a filename - * @return HTTP_Request2 - * @throws HTTP_Request2_Exception - */ - public function setBody($body, $isFilename = false) - { - if (!$isFilename) { - $this->body = (string)$body; - } else { - if (!($fp = @fopen($body, 'rb'))) { - throw new HTTP_Request2_Exception("Cannot open file {$body}"); - } - $this->body = $fp; - if (empty($this->headers['content-type'])) { - $this->setHeader('content-type', self::detectMimeType($body)); - } - } - - return $this; - } - - /** - * Returns the request body - * - * @return string|resource|HTTP_Request2_MultipartBody - */ - public function getBody() - { - if (self::METHOD_POST == $this->method && - (!empty($this->postParams) || !empty($this->uploads)) - ) { - if ('application/x-www-form-urlencoded' == $this->headers['content-type']) { - $body = http_build_query($this->postParams, '', '&'); - if (!$this->getConfig('use_brackets')) { - $body = preg_replace('/%5B\d+%5D=/', '=', $body); - } - // support RFC 3986 by not encoding '~' symbol (request #15368) - return str_replace('%7E', '~', $body); - - } elseif ('multipart/form-data' == $this->headers['content-type']) { - require_once 'HTTP/Request2/MultipartBody.php'; - return new HTTP_Request2_MultipartBody( - $this->postParams, $this->uploads, $this->getConfig('use_brackets') - ); - } - } - return $this->body; - } - - /** - * Adds a file to form-based file upload - * - * Used to emulate file upload via a HTML form. The method also sets - * Content-Type of HTTP request to 'multipart/form-data'. - * - * If you just want to send the contents of a file as the body of HTTP - * request you should use setBody() method. - * - * @param string name of file-upload field - * @param mixed full name of local file - * @param string filename to send in the request - * @param string content-type of file being uploaded - * @return HTTP_Request2 - * @throws HTTP_Request2_Exception - */ - public function addUpload($fieldName, $filename, $sendFilename = null, - $contentType = null) - { - if (!is_array($filename)) { - if (!($fp = @fopen($filename, 'rb'))) { - throw new HTTP_Request2_Exception("Cannot open file {$filename}"); - } - $this->uploads[$fieldName] = array( - 'fp' => $fp, - 'filename' => empty($sendFilename)? basename($filename): $sendFilename, - 'size' => filesize($filename), - 'type' => empty($contentType)? self::detectMimeType($filename): $contentType - ); - } else { - $fps = $names = $sizes = $types = array(); - foreach ($filename as $f) { - if (!is_array($f)) { - $f = array($f); - } - if (!($fp = @fopen($f[0], 'rb'))) { - throw new HTTP_Request2_Exception("Cannot open file {$f[0]}"); - } - $fps[] = $fp; - $names[] = empty($f[1])? basename($f[0]): $f[1]; - $sizes[] = filesize($f[0]); - $types[] = empty($f[2])? self::detectMimeType($f[0]): $f[2]; - } - $this->uploads[$fieldName] = array( - 'fp' => $fps, 'filename' => $names, 'size' => $sizes, 'type' => $types - ); - } - if (empty($this->headers['content-type']) || - 'application/x-www-form-urlencoded' == $this->headers['content-type'] - ) { - $this->setHeader('content-type', 'multipart/form-data'); - } - - return $this; - } - - /** - * Adds POST parameter(s) to the request. - * - * @param string|array parameter name or array ('name' => 'value') - * @param mixed parameter value (can be an array) - * @return HTTP_Request2 - */ - public function addPostParameter($name, $value = null) - { - if (!is_array($name)) { - $this->postParams[$name] = $value; - } else { - foreach ($name as $k => $v) { - $this->addPostParameter($k, $v); - } - } - if (empty($this->headers['content-type'])) { - $this->setHeader('content-type', 'application/x-www-form-urlencoded'); - } - - return $this; - } - - /** - * Attaches a new observer - * - * @param SplObserver - */ - public function attach(SplObserver $observer) - { - foreach ($this->observers as $attached) { - if ($attached === $observer) { - return; - } - } - $this->observers[] = $observer; - } - - /** - * Detaches an existing observer - * - * @param SplObserver - */ - public function detach(SplObserver $observer) - { - foreach ($this->observers as $key => $attached) { - if ($attached === $observer) { - unset($this->observers[$key]); - return; - } - } - } - - /** - * Notifies all observers - */ - public function notify() - { - foreach ($this->observers as $observer) { - $observer->update($this); - } - } - - /** - * Sets the last event - * - * Adapters should use this method to set the current state of the request - * and notify the observers. - * - * @param string event name - * @param mixed event data - */ - public function setLastEvent($name, $data = null) - { - $this->lastEvent = array( - 'name' => $name, - 'data' => $data - ); - $this->notify(); - } - - /** - * Returns the last event - * - * Observers should use this method to access the last change in request. - * The following event names are possible: - *
    - *
  • 'connect' - after connection to remote server, - * data is the destination (string)
  • - *
  • 'disconnect' - after disconnection from server
  • - *
  • 'sentHeaders' - after sending the request headers, - * data is the headers sent (string)
  • - *
  • 'sentBodyPart' - after sending a part of the request body, - * data is the length of that part (int)
  • - *
  • 'receivedHeaders' - after receiving the response headers, - * data is HTTP_Request2_Response object
  • - *
  • 'receivedBodyPart' - after receiving a part of the response - * body, data is that part (string)
  • - *
  • 'receivedEncodedBodyPart' - as 'receivedBodyPart', but data is still - * encoded by Content-Encoding
  • - *
  • 'receivedBody' - after receiving the complete response - * body, data is HTTP_Request2_Response object
  • - *
- * Different adapters may not send all the event types. Mock adapter does - * not send any events to the observers. - * - * @return array The array has two keys: 'name' and 'data' - */ - public function getLastEvent() - { - return $this->lastEvent; - } - - /** - * Sets the adapter used to actually perform the request - * - * You can pass either an instance of a class implementing HTTP_Request2_Adapter - * or a class name. The method will only try to include a file if the class - * name starts with HTTP_Request2_Adapter_, it will also try to prepend this - * prefix to the class name if it doesn't contain any underscores, so that - * - * $request->setAdapter('curl'); - * - * will work. - * - * @param string|HTTP_Request2_Adapter - * @return HTTP_Request2 - * @throws HTTP_Request2_Exception - */ - public function setAdapter($adapter) - { - if (is_string($adapter)) { - if (!class_exists($adapter, false)) { - if (false === strpos($adapter, '_')) { - $adapter = 'HTTP_Request2_Adapter_' . ucfirst($adapter); - } - if (preg_match('/^HTTP_Request2_Adapter_([a-zA-Z0-9]+)$/', $adapter)) { - include_once str_replace('_', DIRECTORY_SEPARATOR, $adapter) . '.php'; - } - if (!class_exists($adapter, false)) { - throw new HTTP_Request2_Exception("Class {$adapter} not found"); - } - } - $adapter = new $adapter; - } - if (!$adapter instanceof HTTP_Request2_Adapter) { - throw new HTTP_Request2_Exception('Parameter is not a HTTP request adapter'); - } - $this->adapter = $adapter; - - return $this; - } - - /** - * Sends the request and returns the response - * - * @throws HTTP_Request2_Exception - * @return HTTP_Request2_Response - */ - public function send() - { - // Sanity check for URL - if (!$this->url instanceof Net_URL2) { - throw new HTTP_Request2_Exception('No URL given'); - } elseif (!$this->url->isAbsolute()) { - throw new HTTP_Request2_Exception('Absolute URL required'); - } elseif (!in_array(strtolower($this->url->getScheme()), array('https', 'http'))) { - throw new HTTP_Request2_Exception('Not a HTTP URL'); - } - if (empty($this->adapter)) { - $this->setAdapter($this->getConfig('adapter')); - } - // magic_quotes_runtime may break file uploads and chunked response - // processing; see bug #4543 - if ($magicQuotes = ini_get('magic_quotes_runtime')) { - ini_set('magic_quotes_runtime', false); - } - // force using single byte encoding if mbstring extension overloads - // strlen() and substr(); see bug #1781, bug #10605 - if (extension_loaded('mbstring') && (2 & ini_get('mbstring.func_overload'))) { - $oldEncoding = mb_internal_encoding(); - mb_internal_encoding('iso-8859-1'); - } - - try { - $response = $this->adapter->sendRequest($this); - } catch (Exception $e) { - } - // cleanup in either case (poor man's "finally" clause) - if ($magicQuotes) { - ini_set('magic_quotes_runtime', true); - } - if (!empty($oldEncoding)) { - mb_internal_encoding($oldEncoding); - } - // rethrow the exception - if (!empty($e)) { - throw $e; - } - return $response; - } - - /** - * Tries to detect MIME type of a file - * - * The method will try to use fileinfo extension if it is available, - * deprecated mime_content_type() function in the other case. If neither - * works, default 'application/octet-stream' MIME type is returned - * - * @param string filename - * @return string file MIME type - */ - protected static function detectMimeType($filename) - { - // finfo extension from PECL available - if (function_exists('finfo_open')) { - if (!isset(self::$_fileinfoDb)) { - self::$_fileinfoDb = @finfo_open(FILEINFO_MIME); - } - if (self::$_fileinfoDb) { - $info = finfo_file(self::$_fileinfoDb, $filename); - } - } - // (deprecated) mime_content_type function available - if (empty($info) && function_exists('mime_content_type')) { - return mime_content_type($filename); - } - return empty($info)? 'application/octet-stream': $info; - } -} -?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Adapter.php b/extlib/HTTP/Request2/Adapter.php deleted file mode 100644 index 39b092b346..0000000000 --- a/extlib/HTTP/Request2/Adapter.php +++ /dev/null @@ -1,152 +0,0 @@ - - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: Adapter.php 274684 2009-01-26 23:07:27Z avb $ - * @link http://pear.php.net/package/HTTP_Request2 - */ - -/** - * Class representing a HTTP response - */ -require_once 'HTTP/Request2/Response.php'; - -/** - * Base class for HTTP_Request2 adapters - * - * HTTP_Request2 class itself only defines methods for aggregating the request - * data, all actual work of sending the request to the remote server and - * receiving its response is performed by adapters. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @version Release: 0.4.1 - */ -abstract class HTTP_Request2_Adapter -{ - /** - * A list of methods that MUST NOT have a request body, per RFC 2616 - * @var array - */ - protected static $bodyDisallowed = array('TRACE'); - - /** - * Methods having defined semantics for request body - * - * Content-Length header (indicating that the body follows, section 4.3 of - * RFC 2616) will be sent for these methods even if no body was added - * - * @var array - * @link http://pear.php.net/bugs/bug.php?id=12900 - * @link http://pear.php.net/bugs/bug.php?id=14740 - */ - protected static $bodyRequired = array('POST', 'PUT'); - - /** - * Request being sent - * @var HTTP_Request2 - */ - protected $request; - - /** - * Request body - * @var string|resource|HTTP_Request2_MultipartBody - * @see HTTP_Request2::getBody() - */ - protected $requestBody; - - /** - * Length of the request body - * @var integer - */ - protected $contentLength; - - /** - * Sends request to the remote server and returns its response - * - * @param HTTP_Request2 - * @return HTTP_Request2_Response - * @throws HTTP_Request2_Exception - */ - abstract public function sendRequest(HTTP_Request2 $request); - - /** - * Calculates length of the request body, adds proper headers - * - * @param array associative array of request headers, this method will - * add proper 'Content-Length' and 'Content-Type' headers - * to this array (or remove them if not needed) - */ - protected function calculateRequestLength(&$headers) - { - $this->requestBody = $this->request->getBody(); - - if (is_string($this->requestBody)) { - $this->contentLength = strlen($this->requestBody); - } elseif (is_resource($this->requestBody)) { - $stat = fstat($this->requestBody); - $this->contentLength = $stat['size']; - rewind($this->requestBody); - } else { - $this->contentLength = $this->requestBody->getLength(); - $headers['content-type'] = 'multipart/form-data; boundary=' . - $this->requestBody->getBoundary(); - $this->requestBody->rewind(); - } - - if (in_array($this->request->getMethod(), self::$bodyDisallowed) || - 0 == $this->contentLength - ) { - unset($headers['content-type']); - // No body: send a Content-Length header nonetheless (request #12900), - // but do that only for methods that require a body (bug #14740) - if (in_array($this->request->getMethod(), self::$bodyRequired)) { - $headers['content-length'] = 0; - } else { - unset($headers['content-length']); - } - } else { - if (empty($headers['content-type'])) { - $headers['content-type'] = 'application/x-www-form-urlencoded'; - } - $headers['content-length'] = $this->contentLength; - } - } -} -?> diff --git a/extlib/HTTP/Request2/Adapter/Curl.php b/extlib/HTTP/Request2/Adapter/Curl.php deleted file mode 100644 index 4d4de0dcc7..0000000000 --- a/extlib/HTTP/Request2/Adapter/Curl.php +++ /dev/null @@ -1,383 +0,0 @@ - - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: Curl.php 278226 2009-04-03 21:32:48Z avb $ - * @link http://pear.php.net/package/HTTP_Request2 - */ - -/** - * Base class for HTTP_Request2 adapters - */ -require_once 'HTTP/Request2/Adapter.php'; - -/** - * Adapter for HTTP_Request2 wrapping around cURL extension - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @version Release: 0.4.1 - */ -class HTTP_Request2_Adapter_Curl extends HTTP_Request2_Adapter -{ - /** - * Mapping of header names to cURL options - * @var array - */ - protected static $headerMap = array( - 'accept-encoding' => CURLOPT_ENCODING, - 'cookie' => CURLOPT_COOKIE, - 'referer' => CURLOPT_REFERER, - 'user-agent' => CURLOPT_USERAGENT - ); - - /** - * Mapping of SSL context options to cURL options - * @var array - */ - protected static $sslContextMap = array( - 'ssl_verify_peer' => CURLOPT_SSL_VERIFYPEER, - 'ssl_cafile' => CURLOPT_CAINFO, - 'ssl_capath' => CURLOPT_CAPATH, - 'ssl_local_cert' => CURLOPT_SSLCERT, - 'ssl_passphrase' => CURLOPT_SSLCERTPASSWD - ); - - /** - * Response being received - * @var HTTP_Request2_Response - */ - protected $response; - - /** - * Whether 'sentHeaders' event was sent to observers - * @var boolean - */ - protected $eventSentHeaders = false; - - /** - * Whether 'receivedHeaders' event was sent to observers - * @var boolean - */ - protected $eventReceivedHeaders = false; - - /** - * Position within request body - * @var integer - * @see callbackReadBody() - */ - protected $position = 0; - - /** - * Information about last transfer, as returned by curl_getinfo() - * @var array - */ - protected $lastInfo; - - /** - * Sends request to the remote server and returns its response - * - * @param HTTP_Request2 - * @return HTTP_Request2_Response - * @throws HTTP_Request2_Exception - */ - public function sendRequest(HTTP_Request2 $request) - { - if (!extension_loaded('curl')) { - throw new HTTP_Request2_Exception('cURL extension not available'); - } - - $this->request = $request; - $this->response = null; - $this->position = 0; - $this->eventSentHeaders = false; - $this->eventReceivedHeaders = false; - - try { - if (false === curl_exec($ch = $this->createCurlHandle())) { - $errorMessage = 'Error sending request: #' . curl_errno($ch) . - ' ' . curl_error($ch); - } - } catch (Exception $e) { - } - $this->lastInfo = curl_getinfo($ch); - curl_close($ch); - - if (!empty($e)) { - throw $e; - } elseif (!empty($errorMessage)) { - throw new HTTP_Request2_Exception($errorMessage); - } - - if (0 < $this->lastInfo['size_download']) { - $this->request->setLastEvent('receivedBody', $this->response); - } - return $this->response; - } - - /** - * Returns information about last transfer - * - * @return array associative array as returned by curl_getinfo() - */ - public function getInfo() - { - return $this->lastInfo; - } - - /** - * Creates a new cURL handle and populates it with data from the request - * - * @return resource a cURL handle, as created by curl_init() - * @throws HTTP_Request2_Exception - */ - protected function createCurlHandle() - { - $ch = curl_init(); - - curl_setopt_array($ch, array( - // setup callbacks - CURLOPT_READFUNCTION => array($this, 'callbackReadBody'), - CURLOPT_HEADERFUNCTION => array($this, 'callbackWriteHeader'), - CURLOPT_WRITEFUNCTION => array($this, 'callbackWriteBody'), - // disallow redirects - CURLOPT_FOLLOWLOCATION => false, - // buffer size - CURLOPT_BUFFERSIZE => $this->request->getConfig('buffer_size'), - // connection timeout - CURLOPT_CONNECTTIMEOUT => $this->request->getConfig('connect_timeout'), - // save full outgoing headers, in case someone is interested - CURLINFO_HEADER_OUT => true, - // request url - CURLOPT_URL => $this->request->getUrl()->getUrl() - )); - - // request timeout - if ($timeout = $this->request->getConfig('timeout')) { - curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); - } - - // set HTTP version - switch ($this->request->getConfig('protocol_version')) { - case '1.0': - curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); - break; - case '1.1': - curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); - } - - // set request method - switch ($this->request->getMethod()) { - case HTTP_Request2::METHOD_GET: - curl_setopt($ch, CURLOPT_HTTPGET, true); - break; - case HTTP_Request2::METHOD_POST: - curl_setopt($ch, CURLOPT_POST, true); - break; - default: - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $this->request->getMethod()); - } - - // set proxy, if needed - if ($host = $this->request->getConfig('proxy_host')) { - if (!($port = $this->request->getConfig('proxy_port'))) { - throw new HTTP_Request2_Exception('Proxy port not provided'); - } - curl_setopt($ch, CURLOPT_PROXY, $host . ':' . $port); - if ($user = $this->request->getConfig('proxy_user')) { - curl_setopt($ch, CURLOPT_PROXYUSERPWD, $user . ':' . - $this->request->getConfig('proxy_password')); - switch ($this->request->getConfig('proxy_auth_scheme')) { - case HTTP_Request2::AUTH_BASIC: - curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_BASIC); - break; - case HTTP_Request2::AUTH_DIGEST: - curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_DIGEST); - } - } - } - - // set authentication data - if ($auth = $this->request->getAuth()) { - curl_setopt($ch, CURLOPT_USERPWD, $auth['user'] . ':' . $auth['password']); - switch ($auth['scheme']) { - case HTTP_Request2::AUTH_BASIC: - curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); - break; - case HTTP_Request2::AUTH_DIGEST: - curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST); - } - } - - // set SSL options - if (0 == strcasecmp($this->request->getUrl()->getScheme(), 'https')) { - foreach ($this->request->getConfig() as $name => $value) { - if ('ssl_verify_host' == $name && null !== $value) { - curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, $value? 2: 0); - } elseif (isset(self::$sslContextMap[$name]) && null !== $value) { - curl_setopt($ch, self::$sslContextMap[$name], $value); - } - } - } - - $headers = $this->request->getHeaders(); - // make cURL automagically send proper header - if (!isset($headers['accept-encoding'])) { - $headers['accept-encoding'] = ''; - } - - // set headers having special cURL keys - foreach (self::$headerMap as $name => $option) { - if (isset($headers[$name])) { - curl_setopt($ch, $option, $headers[$name]); - unset($headers[$name]); - } - } - - $this->calculateRequestLength($headers); - - // set headers not having special keys - $headersFmt = array(); - foreach ($headers as $name => $value) { - $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); - $headersFmt[] = $canonicalName . ': ' . $value; - } - curl_setopt($ch, CURLOPT_HTTPHEADER, $headersFmt); - - return $ch; - } - - /** - * Callback function called by cURL for reading the request body - * - * @param resource cURL handle - * @param resource file descriptor (not used) - * @param integer maximum length of data to return - * @return string part of the request body, up to $length bytes - */ - protected function callbackReadBody($ch, $fd, $length) - { - if (!$this->eventSentHeaders) { - $this->request->setLastEvent( - 'sentHeaders', curl_getinfo($ch, CURLINFO_HEADER_OUT) - ); - $this->eventSentHeaders = true; - } - if (in_array($this->request->getMethod(), self::$bodyDisallowed) || - 0 == $this->contentLength || $this->position >= $this->contentLength - ) { - return ''; - } - if (is_string($this->requestBody)) { - $string = substr($this->requestBody, $this->position, $length); - } elseif (is_resource($this->requestBody)) { - $string = fread($this->requestBody, $length); - } else { - $string = $this->requestBody->read($length); - } - $this->request->setLastEvent('sentBodyPart', strlen($string)); - $this->position += strlen($string); - return $string; - } - - /** - * Callback function called by cURL for saving the response headers - * - * @param resource cURL handle - * @param string response header (with trailing CRLF) - * @return integer number of bytes saved - * @see HTTP_Request2_Response::parseHeaderLine() - */ - protected function callbackWriteHeader($ch, $string) - { - // we may receive a second set of headers if doing e.g. digest auth - if ($this->eventReceivedHeaders || !$this->eventSentHeaders) { - // don't bother with 100-Continue responses (bug #15785) - if (!$this->eventSentHeaders || - $this->response->getStatus() >= 200 - ) { - $this->request->setLastEvent( - 'sentHeaders', curl_getinfo($ch, CURLINFO_HEADER_OUT) - ); - } - $this->eventSentHeaders = true; - // we'll need a new response object - if ($this->eventReceivedHeaders) { - $this->eventReceivedHeaders = false; - $this->response = null; - } - } - if (empty($this->response)) { - $this->response = new HTTP_Request2_Response($string, false); - } else { - $this->response->parseHeaderLine($string); - if ('' == trim($string)) { - // don't bother with 100-Continue responses (bug #15785) - if (200 <= $this->response->getStatus()) { - $this->request->setLastEvent('receivedHeaders', $this->response); - } - $this->eventReceivedHeaders = true; - } - } - return strlen($string); - } - - /** - * Callback function called by cURL for saving the response body - * - * @param resource cURL handle (not used) - * @param string part of the response body - * @return integer number of bytes saved - * @see HTTP_Request2_Response::appendBody() - */ - protected function callbackWriteBody($ch, $string) - { - // cURL calls WRITEFUNCTION callback without calling HEADERFUNCTION if - // response doesn't start with proper HTTP status line (see bug #15716) - if (empty($this->response)) { - throw new HTTP_Request2_Exception("Malformed response: {$string}"); - } - if ($this->request->getConfig('store_body')) { - $this->response->appendBody($string); - } - $this->request->setLastEvent('receivedBodyPart', $string); - return strlen($string); - } -} -?> diff --git a/extlib/HTTP/Request2/Adapter/Mock.php b/extlib/HTTP/Request2/Adapter/Mock.php deleted file mode 100644 index 89688003b2..0000000000 --- a/extlib/HTTP/Request2/Adapter/Mock.php +++ /dev/null @@ -1,171 +0,0 @@ - - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: Mock.php 274406 2009-01-23 18:01:57Z avb $ - * @link http://pear.php.net/package/HTTP_Request2 - */ - -/** - * Base class for HTTP_Request2 adapters - */ -require_once 'HTTP/Request2/Adapter.php'; - -/** - * Mock adapter intended for testing - * - * Can be used to test applications depending on HTTP_Request2 package without - * actually performing any HTTP requests. This adapter will return responses - * previously added via addResponse() - * - * $mock = new HTTP_Request2_Adapter_Mock(); - * $mock->addResponse("HTTP/1.1 ... "); - * - * $request = new HTTP_Request2(); - * $request->setAdapter($mock); - * - * // This will return the response set above - * $response = $req->send(); - * - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @version Release: 0.4.1 - */ -class HTTP_Request2_Adapter_Mock extends HTTP_Request2_Adapter -{ - /** - * A queue of responses to be returned by sendRequest() - * @var array - */ - protected $responses = array(); - - /** - * Returns the next response from the queue built by addResponse() - * - * If the queue is empty will return default empty response with status 400, - * if an Exception object was added to the queue it will be thrown. - * - * @param HTTP_Request2 - * @return HTTP_Request2_Response - * @throws Exception - */ - public function sendRequest(HTTP_Request2 $request) - { - if (count($this->responses) > 0) { - $response = array_shift($this->responses); - if ($response instanceof HTTP_Request2_Response) { - return $response; - } else { - // rethrow the exception, - $class = get_class($response); - $message = $response->getMessage(); - $code = $response->getCode(); - throw new $class($message, $code); - } - } else { - return self::createResponseFromString("HTTP/1.1 400 Bad Request\r\n\r\n"); - } - } - - /** - * Adds response to the queue - * - * @param mixed either a string, a pointer to an open file, - * a HTTP_Request2_Response or Exception object - * @throws HTTP_Request2_Exception - */ - public function addResponse($response) - { - if (is_string($response)) { - $response = self::createResponseFromString($response); - } elseif (is_resource($response)) { - $response = self::createResponseFromFile($response); - } elseif (!$response instanceof HTTP_Request2_Response && - !$response instanceof Exception - ) { - throw new HTTP_Request2_Exception('Parameter is not a valid response'); - } - $this->responses[] = $response; - } - - /** - * Creates a new HTTP_Request2_Response object from a string - * - * @param string - * @return HTTP_Request2_Response - * @throws HTTP_Request2_Exception - */ - public static function createResponseFromString($str) - { - $parts = preg_split('!(\r?\n){2}!m', $str, 2); - $headerLines = explode("\n", $parts[0]); - $response = new HTTP_Request2_Response(array_shift($headerLines)); - foreach ($headerLines as $headerLine) { - $response->parseHeaderLine($headerLine); - } - $response->parseHeaderLine(''); - if (isset($parts[1])) { - $response->appendBody($parts[1]); - } - return $response; - } - - /** - * Creates a new HTTP_Request2_Response object from a file - * - * @param resource file pointer returned by fopen() - * @return HTTP_Request2_Response - * @throws HTTP_Request2_Exception - */ - public static function createResponseFromFile($fp) - { - $response = new HTTP_Request2_Response(fgets($fp)); - do { - $headerLine = fgets($fp); - $response->parseHeaderLine($headerLine); - } while ('' != trim($headerLine)); - - while (!feof($fp)) { - $response->appendBody(fread($fp, 8192)); - } - return $response; - } -} -?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Adapter/Socket.php b/extlib/HTTP/Request2/Adapter/Socket.php deleted file mode 100644 index ff44d49594..0000000000 --- a/extlib/HTTP/Request2/Adapter/Socket.php +++ /dev/null @@ -1,971 +0,0 @@ - - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: Socket.php 279760 2009-05-03 10:46:42Z avb $ - * @link http://pear.php.net/package/HTTP_Request2 - */ - -/** - * Base class for HTTP_Request2 adapters - */ -require_once 'HTTP/Request2/Adapter.php'; - -/** - * Socket-based adapter for HTTP_Request2 - * - * This adapter uses only PHP sockets and will work on almost any PHP - * environment. Code is based on original HTTP_Request PEAR package. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @version Release: 0.4.1 - */ -class HTTP_Request2_Adapter_Socket extends HTTP_Request2_Adapter -{ - /** - * Regular expression for 'token' rule from RFC 2616 - */ - const REGEXP_TOKEN = '[^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+'; - - /** - * Regular expression for 'quoted-string' rule from RFC 2616 - */ - const REGEXP_QUOTED_STRING = '"(?:\\\\.|[^\\\\"])*"'; - - /** - * Connected sockets, needed for Keep-Alive support - * @var array - * @see connect() - */ - protected static $sockets = array(); - - /** - * Data for digest authentication scheme - * - * The keys for the array are URL prefixes. - * - * The values are associative arrays with data (realm, nonce, nonce-count, - * opaque...) needed for digest authentication. Stored here to prevent making - * duplicate requests to digest-protected resources after we have already - * received the challenge. - * - * @var array - */ - protected static $challenges = array(); - - /** - * Connected socket - * @var resource - * @see connect() - */ - protected $socket; - - /** - * Challenge used for server digest authentication - * @var array - */ - protected $serverChallenge; - - /** - * Challenge used for proxy digest authentication - * @var array - */ - protected $proxyChallenge; - - /** - * Global timeout, exception will be raised if request continues past this time - * @var integer - */ - protected $timeout = null; - - /** - * Remaining length of the current chunk, when reading chunked response - * @var integer - * @see readChunked() - */ - protected $chunkLength = 0; - - /** - * Sends request to the remote server and returns its response - * - * @param HTTP_Request2 - * @return HTTP_Request2_Response - * @throws HTTP_Request2_Exception - */ - public function sendRequest(HTTP_Request2 $request) - { - $this->request = $request; - $keepAlive = $this->connect(); - $headers = $this->prepareHeaders(); - - // Use global request timeout if given, see feature requests #5735, #8964 - if ($timeout = $request->getConfig('timeout')) { - $this->timeout = time() + $timeout; - } else { - $this->timeout = null; - } - - try { - if (false === @fwrite($this->socket, $headers, strlen($headers))) { - throw new HTTP_Request2_Exception('Error writing request'); - } - // provide request headers to the observer, see request #7633 - $this->request->setLastEvent('sentHeaders', $headers); - $this->writeBody(); - - if ($this->timeout && time() > $this->timeout) { - throw new HTTP_Request2_Exception( - 'Request timed out after ' . - $request->getConfig('timeout') . ' second(s)' - ); - } - - $response = $this->readResponse(); - - if (!$this->canKeepAlive($keepAlive, $response)) { - $this->disconnect(); - } - - if ($this->shouldUseProxyDigestAuth($response)) { - return $this->sendRequest($request); - } - if ($this->shouldUseServerDigestAuth($response)) { - return $this->sendRequest($request); - } - if ($authInfo = $response->getHeader('authentication-info')) { - $this->updateChallenge($this->serverChallenge, $authInfo); - } - if ($proxyInfo = $response->getHeader('proxy-authentication-info')) { - $this->updateChallenge($this->proxyChallenge, $proxyInfo); - } - - } catch (Exception $e) { - $this->disconnect(); - throw $e; - } - - return $response; - } - - /** - * Connects to the remote server - * - * @return bool whether the connection can be persistent - * @throws HTTP_Request2_Exception - */ - protected function connect() - { - $secure = 0 == strcasecmp($this->request->getUrl()->getScheme(), 'https'); - $tunnel = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); - $headers = $this->request->getHeaders(); - $reqHost = $this->request->getUrl()->getHost(); - if (!($reqPort = $this->request->getUrl()->getPort())) { - $reqPort = $secure? 443: 80; - } - - if ($host = $this->request->getConfig('proxy_host')) { - if (!($port = $this->request->getConfig('proxy_port'))) { - throw new HTTP_Request2_Exception('Proxy port not provided'); - } - $proxy = true; - } else { - $host = $reqHost; - $port = $reqPort; - $proxy = false; - } - - if ($tunnel && !$proxy) { - throw new HTTP_Request2_Exception( - "Trying to perform CONNECT request without proxy" - ); - } - if ($secure && !in_array('ssl', stream_get_transports())) { - throw new HTTP_Request2_Exception( - 'Need OpenSSL support for https:// requests' - ); - } - - // RFC 2068, section 19.7.1: A client MUST NOT send the Keep-Alive - // connection token to a proxy server... - if ($proxy && !$secure && - !empty($headers['connection']) && 'Keep-Alive' == $headers['connection'] - ) { - $this->request->setHeader('connection'); - } - - $keepAlive = ('1.1' == $this->request->getConfig('protocol_version') && - empty($headers['connection'])) || - (!empty($headers['connection']) && - 'Keep-Alive' == $headers['connection']); - $host = ((!$secure || $proxy)? 'tcp://': 'ssl://') . $host; - - $options = array(); - if ($secure || $tunnel) { - foreach ($this->request->getConfig() as $name => $value) { - if ('ssl_' == substr($name, 0, 4) && null !== $value) { - if ('ssl_verify_host' == $name) { - if ($value) { - $options['CN_match'] = $reqHost; - } - } else { - $options[substr($name, 4)] = $value; - } - } - } - ksort($options); - } - - // Changing SSL context options after connection is established does *not* - // work, we need a new connection if options change - $remote = $host . ':' . $port; - $socketKey = $remote . (($secure && $proxy)? "->{$reqHost}:{$reqPort}": '') . - (empty($options)? '': ':' . serialize($options)); - unset($this->socket); - - // We use persistent connections and have a connected socket? - // Ensure that the socket is still connected, see bug #16149 - if ($keepAlive && !empty(self::$sockets[$socketKey]) && - !feof(self::$sockets[$socketKey]) - ) { - $this->socket =& self::$sockets[$socketKey]; - - } elseif ($secure && $proxy && !$tunnel) { - $this->establishTunnel(); - $this->request->setLastEvent( - 'connect', "ssl://{$reqHost}:{$reqPort} via {$host}:{$port}" - ); - self::$sockets[$socketKey] =& $this->socket; - - } else { - // Set SSL context options if doing HTTPS request or creating a tunnel - $context = stream_context_create(); - foreach ($options as $name => $value) { - if (!stream_context_set_option($context, 'ssl', $name, $value)) { - throw new HTTP_Request2_Exception( - "Error setting SSL context option '{$name}'" - ); - } - } - $this->socket = @stream_socket_client( - $remote, $errno, $errstr, - $this->request->getConfig('connect_timeout'), - STREAM_CLIENT_CONNECT, $context - ); - if (!$this->socket) { - throw new HTTP_Request2_Exception( - "Unable to connect to {$remote}. Error #{$errno}: {$errstr}" - ); - } - $this->request->setLastEvent('connect', $remote); - self::$sockets[$socketKey] =& $this->socket; - } - return $keepAlive; - } - - /** - * Establishes a tunnel to a secure remote server via HTTP CONNECT request - * - * This method will fail if 'ssl_verify_peer' is enabled. Probably because PHP - * sees that we are connected to a proxy server (duh!) rather than the server - * that presents its certificate. - * - * @link http://tools.ietf.org/html/rfc2817#section-5.2 - * @throws HTTP_Request2_Exception - */ - protected function establishTunnel() - { - $donor = new self; - $connect = new HTTP_Request2( - $this->request->getUrl(), HTTP_Request2::METHOD_CONNECT, - array_merge($this->request->getConfig(), - array('adapter' => $donor)) - ); - $response = $connect->send(); - // Need any successful (2XX) response - if (200 > $response->getStatus() || 300 <= $response->getStatus()) { - throw new HTTP_Request2_Exception( - 'Failed to connect via HTTPS proxy. Proxy response: ' . - $response->getStatus() . ' ' . $response->getReasonPhrase() - ); - } - $this->socket = $donor->socket; - - $modes = array( - STREAM_CRYPTO_METHOD_TLS_CLIENT, - STREAM_CRYPTO_METHOD_SSLv3_CLIENT, - STREAM_CRYPTO_METHOD_SSLv23_CLIENT, - STREAM_CRYPTO_METHOD_SSLv2_CLIENT - ); - - foreach ($modes as $mode) { - if (stream_socket_enable_crypto($this->socket, true, $mode)) { - return; - } - } - throw new HTTP_Request2_Exception( - 'Failed to enable secure connection when connecting through proxy' - ); - } - - /** - * Checks whether current connection may be reused or should be closed - * - * @param boolean whether connection could be persistent - * in the first place - * @param HTTP_Request2_Response response object to check - * @return boolean - */ - protected function canKeepAlive($requestKeepAlive, HTTP_Request2_Response $response) - { - // Do not close socket on successful CONNECT request - if (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && - 200 <= $response->getStatus() && 300 > $response->getStatus() - ) { - return true; - } - - $lengthKnown = 'chunked' == strtolower($response->getHeader('transfer-encoding')) || - null !== $response->getHeader('content-length'); - $persistent = 'keep-alive' == strtolower($response->getHeader('connection')) || - (null === $response->getHeader('connection') && - '1.1' == $response->getVersion()); - return $requestKeepAlive && $lengthKnown && $persistent; - } - - /** - * Disconnects from the remote server - */ - protected function disconnect() - { - if (is_resource($this->socket)) { - fclose($this->socket); - $this->socket = null; - $this->request->setLastEvent('disconnect'); - } - } - - /** - * Checks whether another request should be performed with server digest auth - * - * Several conditions should be satisfied for it to return true: - * - response status should be 401 - * - auth credentials should be set in the request object - * - response should contain WWW-Authenticate header with digest challenge - * - there is either no challenge stored for this URL or new challenge - * contains stale=true parameter (in other case we probably just failed - * due to invalid username / password) - * - * The method stores challenge values in $challenges static property - * - * @param HTTP_Request2_Response response to check - * @return boolean whether another request should be performed - * @throws HTTP_Request2_Exception in case of unsupported challenge parameters - */ - protected function shouldUseServerDigestAuth(HTTP_Request2_Response $response) - { - // no sense repeating a request if we don't have credentials - if (401 != $response->getStatus() || !$this->request->getAuth()) { - return false; - } - if (!$challenge = $this->parseDigestChallenge($response->getHeader('www-authenticate'))) { - return false; - } - - $url = $this->request->getUrl(); - $scheme = $url->getScheme(); - $host = $scheme . '://' . $url->getHost(); - if ($port = $url->getPort()) { - if ((0 == strcasecmp($scheme, 'http') && 80 != $port) || - (0 == strcasecmp($scheme, 'https') && 443 != $port) - ) { - $host .= ':' . $port; - } - } - - if (!empty($challenge['domain'])) { - $prefixes = array(); - foreach (preg_split('/\\s+/', $challenge['domain']) as $prefix) { - // don't bother with different servers - if ('/' == substr($prefix, 0, 1)) { - $prefixes[] = $host . $prefix; - } - } - } - if (empty($prefixes)) { - $prefixes = array($host . '/'); - } - - $ret = true; - foreach ($prefixes as $prefix) { - if (!empty(self::$challenges[$prefix]) && - (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) - ) { - // probably credentials are invalid - $ret = false; - } - self::$challenges[$prefix] =& $challenge; - } - return $ret; - } - - /** - * Checks whether another request should be performed with proxy digest auth - * - * Several conditions should be satisfied for it to return true: - * - response status should be 407 - * - proxy auth credentials should be set in the request object - * - response should contain Proxy-Authenticate header with digest challenge - * - there is either no challenge stored for this proxy or new challenge - * contains stale=true parameter (in other case we probably just failed - * due to invalid username / password) - * - * The method stores challenge values in $challenges static property - * - * @param HTTP_Request2_Response response to check - * @return boolean whether another request should be performed - * @throws HTTP_Request2_Exception in case of unsupported challenge parameters - */ - protected function shouldUseProxyDigestAuth(HTTP_Request2_Response $response) - { - if (407 != $response->getStatus() || !$this->request->getConfig('proxy_user')) { - return false; - } - if (!($challenge = $this->parseDigestChallenge($response->getHeader('proxy-authenticate')))) { - return false; - } - - $key = 'proxy://' . $this->request->getConfig('proxy_host') . - ':' . $this->request->getConfig('proxy_port'); - - if (!empty(self::$challenges[$key]) && - (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) - ) { - $ret = false; - } else { - $ret = true; - } - self::$challenges[$key] = $challenge; - return $ret; - } - - /** - * Extracts digest method challenge from (WWW|Proxy)-Authenticate header value - * - * There is a problem with implementation of RFC 2617: several of the parameters - * here are defined as quoted-string and thus may contain backslash escaped - * double quotes (RFC 2616, section 2.2). However, RFC 2617 defines unq(X) as - * just value of quoted-string X without surrounding quotes, it doesn't speak - * about removing backslash escaping. - * - * Now realm parameter is user-defined and human-readable, strange things - * happen when it contains quotes: - * - Apache allows quotes in realm, but apparently uses realm value without - * backslashes for digest computation - * - Squid allows (manually escaped) quotes there, but it is impossible to - * authorize with either escaped or unescaped quotes used in digest, - * probably it can't parse the response (?) - * - Both IE and Firefox display realm value with backslashes in - * the password popup and apparently use the same value for digest - * - * HTTP_Request2 follows IE and Firefox (and hopefully RFC 2617) in - * quoted-string handling, unfortunately that means failure to authorize - * sometimes - * - * @param string value of WWW-Authenticate or Proxy-Authenticate header - * @return mixed associative array with challenge parameters, false if - * no challenge is present in header value - * @throws HTTP_Request2_Exception in case of unsupported challenge parameters - */ - protected function parseDigestChallenge($headerValue) - { - $authParam = '(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . - self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')'; - $challenge = "!(?<=^|\\s|,)Digest ({$authParam}\\s*(,\\s*|$))+!"; - if (!preg_match($challenge, $headerValue, $matches)) { - return false; - } - - preg_match_all('!' . $authParam . '!', $matches[0], $params); - $paramsAry = array(); - $knownParams = array('realm', 'domain', 'nonce', 'opaque', 'stale', - 'algorithm', 'qop'); - for ($i = 0; $i < count($params[0]); $i++) { - // section 3.2.1: Any unrecognized directive MUST be ignored. - if (in_array($params[1][$i], $knownParams)) { - if ('"' == substr($params[2][$i], 0, 1)) { - $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); - } else { - $paramsAry[$params[1][$i]] = $params[2][$i]; - } - } - } - // we only support qop=auth - if (!empty($paramsAry['qop']) && - !in_array('auth', array_map('trim', explode(',', $paramsAry['qop']))) - ) { - throw new HTTP_Request2_Exception( - "Only 'auth' qop is currently supported in digest authentication, " . - "server requested '{$paramsAry['qop']}'" - ); - } - // we only support algorithm=MD5 - if (!empty($paramsAry['algorithm']) && 'MD5' != $paramsAry['algorithm']) { - throw new HTTP_Request2_Exception( - "Only 'MD5' algorithm is currently supported in digest authentication, " . - "server requested '{$paramsAry['algorithm']}'" - ); - } - - return $paramsAry; - } - - /** - * Parses [Proxy-]Authentication-Info header value and updates challenge - * - * @param array challenge to update - * @param string value of [Proxy-]Authentication-Info header - * @todo validate server rspauth response - */ - protected function updateChallenge(&$challenge, $headerValue) - { - $authParam = '!(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . - self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')!'; - $paramsAry = array(); - - preg_match_all($authParam, $headerValue, $params); - for ($i = 0; $i < count($params[0]); $i++) { - if ('"' == substr($params[2][$i], 0, 1)) { - $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); - } else { - $paramsAry[$params[1][$i]] = $params[2][$i]; - } - } - // for now, just update the nonce value - if (!empty($paramsAry['nextnonce'])) { - $challenge['nonce'] = $paramsAry['nextnonce']; - $challenge['nc'] = 1; - } - } - - /** - * Creates a value for [Proxy-]Authorization header when using digest authentication - * - * @param string user name - * @param string password - * @param string request URL - * @param array digest challenge parameters - * @return string value of [Proxy-]Authorization request header - * @link http://tools.ietf.org/html/rfc2617#section-3.2.2 - */ - protected function createDigestResponse($user, $password, $url, &$challenge) - { - if (false !== ($q = strpos($url, '?')) && - $this->request->getConfig('digest_compat_ie') - ) { - $url = substr($url, 0, $q); - } - - $a1 = md5($user . ':' . $challenge['realm'] . ':' . $password); - $a2 = md5($this->request->getMethod() . ':' . $url); - - if (empty($challenge['qop'])) { - $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $a2); - } else { - $challenge['cnonce'] = 'Req2.' . rand(); - if (empty($challenge['nc'])) { - $challenge['nc'] = 1; - } - $nc = sprintf('%08x', $challenge['nc']++); - $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $nc . ':' . - $challenge['cnonce'] . ':auth:' . $a2); - } - return 'Digest username="' . str_replace(array('\\', '"'), array('\\\\', '\\"'), $user) . '", ' . - 'realm="' . $challenge['realm'] . '", ' . - 'nonce="' . $challenge['nonce'] . '", ' . - 'uri="' . $url . '", ' . - 'response="' . $digest . '"' . - (!empty($challenge['opaque'])? - ', opaque="' . $challenge['opaque'] . '"': - '') . - (!empty($challenge['qop'])? - ', qop="auth", nc=' . $nc . ', cnonce="' . $challenge['cnonce'] . '"': - ''); - } - - /** - * Adds 'Authorization' header (if needed) to request headers array - * - * @param array request headers - * @param string request host (needed for digest authentication) - * @param string request URL (needed for digest authentication) - * @throws HTTP_Request2_Exception - */ - protected function addAuthorizationHeader(&$headers, $requestHost, $requestUrl) - { - if (!($auth = $this->request->getAuth())) { - return; - } - switch ($auth['scheme']) { - case HTTP_Request2::AUTH_BASIC: - $headers['authorization'] = - 'Basic ' . base64_encode($auth['user'] . ':' . $auth['password']); - break; - - case HTTP_Request2::AUTH_DIGEST: - unset($this->serverChallenge); - $fullUrl = ('/' == $requestUrl[0])? - $this->request->getUrl()->getScheme() . '://' . - $requestHost . $requestUrl: - $requestUrl; - foreach (array_keys(self::$challenges) as $key) { - if ($key == substr($fullUrl, 0, strlen($key))) { - $headers['authorization'] = $this->createDigestResponse( - $auth['user'], $auth['password'], - $requestUrl, self::$challenges[$key] - ); - $this->serverChallenge =& self::$challenges[$key]; - break; - } - } - break; - - default: - throw new HTTP_Request2_Exception( - "Unknown HTTP authentication scheme '{$auth['scheme']}'" - ); - } - } - - /** - * Adds 'Proxy-Authorization' header (if needed) to request headers array - * - * @param array request headers - * @param string request URL (needed for digest authentication) - * @throws HTTP_Request2_Exception - */ - protected function addProxyAuthorizationHeader(&$headers, $requestUrl) - { - if (!$this->request->getConfig('proxy_host') || - !($user = $this->request->getConfig('proxy_user')) || - (0 == strcasecmp('https', $this->request->getUrl()->getScheme()) && - HTTP_Request2::METHOD_CONNECT != $this->request->getMethod()) - ) { - return; - } - - $password = $this->request->getConfig('proxy_password'); - switch ($this->request->getConfig('proxy_auth_scheme')) { - case HTTP_Request2::AUTH_BASIC: - $headers['proxy-authorization'] = - 'Basic ' . base64_encode($user . ':' . $password); - break; - - case HTTP_Request2::AUTH_DIGEST: - unset($this->proxyChallenge); - $proxyUrl = 'proxy://' . $this->request->getConfig('proxy_host') . - ':' . $this->request->getConfig('proxy_port'); - if (!empty(self::$challenges[$proxyUrl])) { - $headers['proxy-authorization'] = $this->createDigestResponse( - $user, $password, - $requestUrl, self::$challenges[$proxyUrl] - ); - $this->proxyChallenge =& self::$challenges[$proxyUrl]; - } - break; - - default: - throw new HTTP_Request2_Exception( - "Unknown HTTP authentication scheme '" . - $this->request->getConfig('proxy_auth_scheme') . "'" - ); - } - } - - - /** - * Creates the string with the Request-Line and request headers - * - * @return string - * @throws HTTP_Request2_Exception - */ - protected function prepareHeaders() - { - $headers = $this->request->getHeaders(); - $url = $this->request->getUrl(); - $connect = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); - $host = $url->getHost(); - - $defaultPort = 0 == strcasecmp($url->getScheme(), 'https')? 443: 80; - if (($port = $url->getPort()) && $port != $defaultPort || $connect) { - $host .= ':' . (empty($port)? $defaultPort: $port); - } - // Do not overwrite explicitly set 'Host' header, see bug #16146 - if (!isset($headers['host'])) { - $headers['host'] = $host; - } - - if ($connect) { - $requestUrl = $host; - - } else { - if (!$this->request->getConfig('proxy_host') || - 0 == strcasecmp($url->getScheme(), 'https') - ) { - $requestUrl = ''; - } else { - $requestUrl = $url->getScheme() . '://' . $host; - } - $path = $url->getPath(); - $query = $url->getQuery(); - $requestUrl .= (empty($path)? '/': $path) . (empty($query)? '': '?' . $query); - } - - if ('1.1' == $this->request->getConfig('protocol_version') && - extension_loaded('zlib') && !isset($headers['accept-encoding']) - ) { - $headers['accept-encoding'] = 'gzip, deflate'; - } - - $this->addAuthorizationHeader($headers, $host, $requestUrl); - $this->addProxyAuthorizationHeader($headers, $requestUrl); - $this->calculateRequestLength($headers); - - $headersStr = $this->request->getMethod() . ' ' . $requestUrl . ' HTTP/' . - $this->request->getConfig('protocol_version') . "\r\n"; - foreach ($headers as $name => $value) { - $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); - $headersStr .= $canonicalName . ': ' . $value . "\r\n"; - } - return $headersStr . "\r\n"; - } - - /** - * Sends the request body - * - * @throws HTTP_Request2_Exception - */ - protected function writeBody() - { - if (in_array($this->request->getMethod(), self::$bodyDisallowed) || - 0 == $this->contentLength - ) { - return; - } - - $position = 0; - $bufferSize = $this->request->getConfig('buffer_size'); - while ($position < $this->contentLength) { - if (is_string($this->requestBody)) { - $str = substr($this->requestBody, $position, $bufferSize); - } elseif (is_resource($this->requestBody)) { - $str = fread($this->requestBody, $bufferSize); - } else { - $str = $this->requestBody->read($bufferSize); - } - if (false === @fwrite($this->socket, $str, strlen($str))) { - throw new HTTP_Request2_Exception('Error writing request'); - } - // Provide the length of written string to the observer, request #7630 - $this->request->setLastEvent('sentBodyPart', strlen($str)); - $position += strlen($str); - } - } - - /** - * Reads the remote server's response - * - * @return HTTP_Request2_Response - * @throws HTTP_Request2_Exception - */ - protected function readResponse() - { - $bufferSize = $this->request->getConfig('buffer_size'); - - do { - $response = new HTTP_Request2_Response($this->readLine($bufferSize), true); - do { - $headerLine = $this->readLine($bufferSize); - $response->parseHeaderLine($headerLine); - } while ('' != $headerLine); - } while (in_array($response->getStatus(), array(100, 101))); - - $this->request->setLastEvent('receivedHeaders', $response); - - // No body possible in such responses - if (HTTP_Request2::METHOD_HEAD == $this->request->getMethod() || - (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && - 200 <= $response->getStatus() && 300 > $response->getStatus()) || - in_array($response->getStatus(), array(204, 304)) - ) { - return $response; - } - - $chunked = 'chunked' == $response->getHeader('transfer-encoding'); - $length = $response->getHeader('content-length'); - $hasBody = false; - if ($chunked || null === $length || 0 < intval($length)) { - // RFC 2616, section 4.4: - // 3. ... If a message is received with both a - // Transfer-Encoding header field and a Content-Length header field, - // the latter MUST be ignored. - $toRead = ($chunked || null === $length)? null: $length; - $this->chunkLength = 0; - - while (!feof($this->socket) && (is_null($toRead) || 0 < $toRead)) { - if ($chunked) { - $data = $this->readChunked($bufferSize); - } elseif (is_null($toRead)) { - $data = $this->fread($bufferSize); - } else { - $data = $this->fread(min($toRead, $bufferSize)); - $toRead -= strlen($data); - } - if ('' == $data && (!$this->chunkLength || feof($this->socket))) { - break; - } - - $hasBody = true; - if ($this->request->getConfig('store_body')) { - $response->appendBody($data); - } - if (!in_array($response->getHeader('content-encoding'), array('identity', null))) { - $this->request->setLastEvent('receivedEncodedBodyPart', $data); - } else { - $this->request->setLastEvent('receivedBodyPart', $data); - } - } - } - - if ($hasBody) { - $this->request->setLastEvent('receivedBody', $response); - } - return $response; - } - - /** - * Reads until either the end of the socket or a newline, whichever comes first - * - * Strips the trailing newline from the returned data, handles global - * request timeout. Method idea borrowed from Net_Socket PEAR package. - * - * @param int buffer size to use for reading - * @return Available data up to the newline (not including newline) - * @throws HTTP_Request2_Exception In case of timeout - */ - protected function readLine($bufferSize) - { - $line = ''; - while (!feof($this->socket)) { - if ($this->timeout) { - stream_set_timeout($this->socket, max($this->timeout - time(), 1)); - } - $line .= @fgets($this->socket, $bufferSize); - $info = stream_get_meta_data($this->socket); - if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { - throw new HTTP_Request2_Exception( - 'Request timed out after ' . - $this->request->getConfig('timeout') . ' second(s)' - ); - } - if (substr($line, -1) == "\n") { - return rtrim($line, "\r\n"); - } - } - return $line; - } - - /** - * Wrapper around fread(), handles global request timeout - * - * @param int Reads up to this number of bytes - * @return Data read from socket - * @throws HTTP_Request2_Exception In case of timeout - */ - protected function fread($length) - { - if ($this->timeout) { - stream_set_timeout($this->socket, max($this->timeout - time(), 1)); - } - $data = fread($this->socket, $length); - $info = stream_get_meta_data($this->socket); - if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { - throw new HTTP_Request2_Exception( - 'Request timed out after ' . - $this->request->getConfig('timeout') . ' second(s)' - ); - } - return $data; - } - - /** - * Reads a part of response body encoded with chunked Transfer-Encoding - * - * @param int buffer size to use for reading - * @return string - * @throws HTTP_Request2_Exception - */ - protected function readChunked($bufferSize) - { - // at start of the next chunk? - if (0 == $this->chunkLength) { - $line = $this->readLine($bufferSize); - if (!preg_match('/^([0-9a-f]+)/i', $line, $matches)) { - throw new HTTP_Request2_Exception( - "Cannot decode chunked response, invalid chunk length '{$line}'" - ); - } else { - $this->chunkLength = hexdec($matches[1]); - // Chunk with zero length indicates the end - if (0 == $this->chunkLength) { - $this->readLine($bufferSize); - return ''; - } - } - } - $data = $this->fread(min($this->chunkLength, $bufferSize)); - $this->chunkLength -= strlen($data); - if (0 == $this->chunkLength) { - $this->readLine($bufferSize); // Trailing CRLF - } - return $data; - } -} - -?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Exception.php b/extlib/HTTP/Request2/Exception.php deleted file mode 100644 index bfef7d6c22..0000000000 --- a/extlib/HTTP/Request2/Exception.php +++ /dev/null @@ -1,62 +0,0 @@ - - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: Exception.php 273003 2009-01-07 19:28:22Z avb $ - * @link http://pear.php.net/package/HTTP_Request2 - */ - -/** - * Base class for exceptions in PEAR - */ -require_once 'PEAR/Exception.php'; - -/** - * Exception class for HTTP_Request2 package - * - * Such a class is required by the Exception RFC: - * http://pear.php.net/pepr/pepr-proposal-show.php?id=132 - * - * @category HTTP - * @package HTTP_Request2 - * @version Release: 0.4.1 - */ -class HTTP_Request2_Exception extends PEAR_Exception -{ -} -?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/MultipartBody.php b/extlib/HTTP/Request2/MultipartBody.php deleted file mode 100644 index d8afd8344c..0000000000 --- a/extlib/HTTP/Request2/MultipartBody.php +++ /dev/null @@ -1,274 +0,0 @@ - - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: MultipartBody.php 287306 2009-08-14 15:22:52Z avb $ - * @link http://pear.php.net/package/HTTP_Request2 - */ - -/** - * Class for building multipart/form-data request body - * - * The class helps to reduce memory consumption by streaming large file uploads - * from disk, it also allows monitoring of upload progress (see request #7630) - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @version Release: 0.4.1 - * @link http://tools.ietf.org/html/rfc1867 - */ -class HTTP_Request2_MultipartBody -{ - /** - * MIME boundary - * @var string - */ - private $_boundary; - - /** - * Form parameters added via {@link HTTP_Request2::addPostParameter()} - * @var array - */ - private $_params = array(); - - /** - * File uploads added via {@link HTTP_Request2::addUpload()} - * @var array - */ - private $_uploads = array(); - - /** - * Header for parts with parameters - * @var string - */ - private $_headerParam = "--%s\r\nContent-Disposition: form-data; name=\"%s\"\r\n\r\n"; - - /** - * Header for parts with uploads - * @var string - */ - private $_headerUpload = "--%s\r\nContent-Disposition: form-data; name=\"%s\"; filename=\"%s\"\r\nContent-Type: %s\r\n\r\n"; - - /** - * Current position in parameter and upload arrays - * - * First number is index of "current" part, second number is position within - * "current" part - * - * @var array - */ - private $_pos = array(0, 0); - - - /** - * Constructor. Sets the arrays with POST data. - * - * @param array values of form fields set via {@link HTTP_Request2::addPostParameter()} - * @param array file uploads set via {@link HTTP_Request2::addUpload()} - * @param bool whether to append brackets to array variable names - */ - public function __construct(array $params, array $uploads, $useBrackets = true) - { - $this->_params = self::_flattenArray('', $params, $useBrackets); - foreach ($uploads as $fieldName => $f) { - if (!is_array($f['fp'])) { - $this->_uploads[] = $f + array('name' => $fieldName); - } else { - for ($i = 0; $i < count($f['fp']); $i++) { - $upload = array( - 'name' => ($useBrackets? $fieldName . '[' . $i . ']': $fieldName) - ); - foreach (array('fp', 'filename', 'size', 'type') as $key) { - $upload[$key] = $f[$key][$i]; - } - $this->_uploads[] = $upload; - } - } - } - } - - /** - * Returns the length of the body to use in Content-Length header - * - * @return integer - */ - public function getLength() - { - $boundaryLength = strlen($this->getBoundary()); - $headerParamLength = strlen($this->_headerParam) - 4 + $boundaryLength; - $headerUploadLength = strlen($this->_headerUpload) - 8 + $boundaryLength; - $length = $boundaryLength + 6; - foreach ($this->_params as $p) { - $length += $headerParamLength + strlen($p[0]) + strlen($p[1]) + 2; - } - foreach ($this->_uploads as $u) { - $length += $headerUploadLength + strlen($u['name']) + strlen($u['type']) + - strlen($u['filename']) + $u['size'] + 2; - } - return $length; - } - - /** - * Returns the boundary to use in Content-Type header - * - * @return string - */ - public function getBoundary() - { - if (empty($this->_boundary)) { - $this->_boundary = '--' . md5('PEAR-HTTP_Request2-' . microtime()); - } - return $this->_boundary; - } - - /** - * Returns next chunk of request body - * - * @param integer Amount of bytes to read - * @return string Up to $length bytes of data, empty string if at end - */ - public function read($length) - { - $ret = ''; - $boundary = $this->getBoundary(); - $paramCount = count($this->_params); - $uploadCount = count($this->_uploads); - while ($length > 0 && $this->_pos[0] <= $paramCount + $uploadCount) { - $oldLength = $length; - if ($this->_pos[0] < $paramCount) { - $param = sprintf($this->_headerParam, $boundary, - $this->_params[$this->_pos[0]][0]) . - $this->_params[$this->_pos[0]][1] . "\r\n"; - $ret .= substr($param, $this->_pos[1], $length); - $length -= min(strlen($param) - $this->_pos[1], $length); - - } elseif ($this->_pos[0] < $paramCount + $uploadCount) { - $pos = $this->_pos[0] - $paramCount; - $header = sprintf($this->_headerUpload, $boundary, - $this->_uploads[$pos]['name'], - $this->_uploads[$pos]['filename'], - $this->_uploads[$pos]['type']); - if ($this->_pos[1] < strlen($header)) { - $ret .= substr($header, $this->_pos[1], $length); - $length -= min(strlen($header) - $this->_pos[1], $length); - } - $filePos = max(0, $this->_pos[1] - strlen($header)); - if ($length > 0 && $filePos < $this->_uploads[$pos]['size']) { - $ret .= fread($this->_uploads[$pos]['fp'], $length); - $length -= min($length, $this->_uploads[$pos]['size'] - $filePos); - } - if ($length > 0) { - $start = $this->_pos[1] + ($oldLength - $length) - - strlen($header) - $this->_uploads[$pos]['size']; - $ret .= substr("\r\n", $start, $length); - $length -= min(2 - $start, $length); - } - - } else { - $closing = '--' . $boundary . "--\r\n"; - $ret .= substr($closing, $this->_pos[1], $length); - $length -= min(strlen($closing) - $this->_pos[1], $length); - } - if ($length > 0) { - $this->_pos = array($this->_pos[0] + 1, 0); - } else { - $this->_pos[1] += $oldLength; - } - } - return $ret; - } - - /** - * Sets the current position to the start of the body - * - * This allows reusing the same body in another request - */ - public function rewind() - { - $this->_pos = array(0, 0); - foreach ($this->_uploads as $u) { - rewind($u['fp']); - } - } - - /** - * Returns the body as string - * - * Note that it reads all file uploads into memory so it is a good idea not - * to use this method with large file uploads and rely on read() instead. - * - * @return string - */ - public function __toString() - { - $this->rewind(); - return $this->read($this->getLength()); - } - - - /** - * Helper function to change the (probably multidimensional) associative array - * into the simple one. - * - * @param string name for item - * @param mixed item's values - * @param bool whether to append [] to array variables' names - * @return array array with the following items: array('item name', 'item value'); - */ - private static function _flattenArray($name, $values, $useBrackets) - { - if (!is_array($values)) { - return array(array($name, $values)); - } else { - $ret = array(); - foreach ($values as $k => $v) { - if (empty($name)) { - $newName = $k; - } elseif ($useBrackets) { - $newName = $name . '[' . $k . ']'; - } else { - $newName = $name; - } - $ret = array_merge($ret, self::_flattenArray($newName, $v, $useBrackets)); - } - return $ret; - } - } -} -?> diff --git a/extlib/HTTP/Request2/Observer/Log.php b/extlib/HTTP/Request2/Observer/Log.php deleted file mode 100644 index b1a0552780..0000000000 --- a/extlib/HTTP/Request2/Observer/Log.php +++ /dev/null @@ -1,215 +0,0 @@ - - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @category HTTP - * @package HTTP_Request2 - * @author David Jean Louis - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: Log.php 272593 2009-01-02 16:27:14Z avb $ - * @link http://pear.php.net/package/HTTP_Request2 - */ - -/** - * Exception class for HTTP_Request2 package - */ -require_once 'HTTP/Request2/Exception.php'; - -/** - * A debug observer useful for debugging / testing. - * - * This observer logs to a log target data corresponding to the various request - * and response events, it logs by default to php://output but can be configured - * to log to a file or via the PEAR Log package. - * - * A simple example: - * - * require_once 'HTTP/Request2.php'; - * require_once 'HTTP/Request2/Observer/Log.php'; - * - * $request = new HTTP_Request2('http://www.example.com'); - * $observer = new HTTP_Request2_Observer_Log(); - * $request->attach($observer); - * $request->send(); - * - * - * A more complex example with PEAR Log: - * - * require_once 'HTTP/Request2.php'; - * require_once 'HTTP/Request2/Observer/Log.php'; - * require_once 'Log.php'; - * - * $request = new HTTP_Request2('http://www.example.com'); - * // we want to log with PEAR log - * $observer = new HTTP_Request2_Observer_Log(Log::factory('console')); - * - * // we only want to log received headers - * $observer->events = array('receivedHeaders'); - * - * $request->attach($observer); - * $request->send(); - * - * - * @category HTTP - * @package HTTP_Request2 - * @author David Jean Louis - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version Release: 0.4.1 - * @link http://pear.php.net/package/HTTP_Request2 - */ -class HTTP_Request2_Observer_Log implements SplObserver -{ - // properties {{{ - - /** - * The log target, it can be a a resource or a PEAR Log instance. - * - * @var resource|Log $target - */ - protected $target = null; - - /** - * The events to log. - * - * @var array $events - */ - public $events = array( - 'connect', - 'sentHeaders', - 'sentBodyPart', - 'receivedHeaders', - 'receivedBody', - 'disconnect', - ); - - // }}} - // __construct() {{{ - - /** - * Constructor. - * - * @param mixed $target Can be a file path (default: php://output), a resource, - * or an instance of the PEAR Log class. - * @param array $events Array of events to listen to (default: all events) - * - * @return void - */ - public function __construct($target = 'php://output', array $events = array()) - { - if (!empty($events)) { - $this->events = $events; - } - if (is_resource($target) || $target instanceof Log) { - $this->target = $target; - } elseif (false === ($this->target = @fopen($target, 'w'))) { - throw new HTTP_Request2_Exception("Unable to open '{$target}'"); - } - } - - // }}} - // update() {{{ - - /** - * Called when the request notify us of an event. - * - * @param HTTP_Request2 $subject The HTTP_Request2 instance - * - * @return void - */ - public function update(SplSubject $subject) - { - $event = $subject->getLastEvent(); - if (!in_array($event['name'], $this->events)) { - return; - } - - switch ($event['name']) { - case 'connect': - $this->log('* Connected to ' . $event['data']); - break; - case 'sentHeaders': - $headers = explode("\r\n", $event['data']); - array_pop($headers); - foreach ($headers as $header) { - $this->log('> ' . $header); - } - break; - case 'sentBodyPart': - $this->log('> ' . $event['data']); - break; - case 'receivedHeaders': - $this->log(sprintf('< HTTP/%s %s %s', - $event['data']->getVersion(), - $event['data']->getStatus(), - $event['data']->getReasonPhrase())); - $headers = $event['data']->getHeader(); - foreach ($headers as $key => $val) { - $this->log('< ' . $key . ': ' . $val); - } - $this->log('< '); - break; - case 'receivedBody': - $this->log($event['data']->getBody()); - break; - case 'disconnect': - $this->log('* Disconnected'); - break; - } - } - - // }}} - // log() {{{ - - /** - * Log the given message to the configured target. - * - * @param string $message Message to display - * - * @return void - */ - protected function log($message) - { - if ($this->target instanceof Log) { - $this->target->debug($message); - } elseif (is_resource($this->target)) { - fwrite($this->target, $message . "\r\n"); - } - } - - // }}} -} - -?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Response.php b/extlib/HTTP/Request2/Response.php deleted file mode 100644 index c7c1021fbb..0000000000 --- a/extlib/HTTP/Request2/Response.php +++ /dev/null @@ -1,549 +0,0 @@ - - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @license http://opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: Response.php 287948 2009-09-01 17:12:18Z avb $ - * @link http://pear.php.net/package/HTTP_Request2 - */ - -/** - * Exception class for HTTP_Request2 package - */ -require_once 'HTTP/Request2/Exception.php'; - -/** - * Class representing a HTTP response - * - * The class is designed to be used in "streaming" scenario, building the - * response as it is being received: - * - * $statusLine = read_status_line(); - * $response = new HTTP_Request2_Response($statusLine); - * do { - * $headerLine = read_header_line(); - * $response->parseHeaderLine($headerLine); - * } while ($headerLine != ''); - * - * while ($chunk = read_body()) { - * $response->appendBody($chunk); - * } - * - * var_dump($response->getHeader(), $response->getCookies(), $response->getBody()); - * - * - * - * @category HTTP - * @package HTTP_Request2 - * @author Alexey Borzov - * @version Release: 0.4.1 - * @link http://tools.ietf.org/html/rfc2616#section-6 - */ -class HTTP_Request2_Response -{ - /** - * HTTP protocol version (e.g. 1.0, 1.1) - * @var string - */ - protected $version; - - /** - * Status code - * @var integer - * @link http://tools.ietf.org/html/rfc2616#section-6.1.1 - */ - protected $code; - - /** - * Reason phrase - * @var string - * @link http://tools.ietf.org/html/rfc2616#section-6.1.1 - */ - protected $reasonPhrase; - - /** - * Associative array of response headers - * @var array - */ - protected $headers = array(); - - /** - * Cookies set in the response - * @var array - */ - protected $cookies = array(); - - /** - * Name of last header processed by parseHederLine() - * - * Used to handle the headers that span multiple lines - * - * @var string - */ - protected $lastHeader = null; - - /** - * Response body - * @var string - */ - protected $body = ''; - - /** - * Whether the body is still encoded by Content-Encoding - * - * cURL provides the decoded body to the callback; if we are reading from - * socket the body is still gzipped / deflated - * - * @var bool - */ - protected $bodyEncoded; - - /** - * Associative array of HTTP status code / reason phrase. - * - * @var array - * @link http://tools.ietf.org/html/rfc2616#section-10 - */ - protected static $phrases = array( - - // 1xx: Informational - Request received, continuing process - 100 => 'Continue', - 101 => 'Switching Protocols', - - // 2xx: Success - The action was successfully received, understood and - // accepted - 200 => 'OK', - 201 => 'Created', - 202 => 'Accepted', - 203 => 'Non-Authoritative Information', - 204 => 'No Content', - 205 => 'Reset Content', - 206 => 'Partial Content', - - // 3xx: Redirection - Further action must be taken in order to complete - // the request - 300 => 'Multiple Choices', - 301 => 'Moved Permanently', - 302 => 'Found', // 1.1 - 303 => 'See Other', - 304 => 'Not Modified', - 305 => 'Use Proxy', - 307 => 'Temporary Redirect', - - // 4xx: Client Error - The request contains bad syntax or cannot be - // fulfilled - 400 => 'Bad Request', - 401 => 'Unauthorized', - 402 => 'Payment Required', - 403 => 'Forbidden', - 404 => 'Not Found', - 405 => 'Method Not Allowed', - 406 => 'Not Acceptable', - 407 => 'Proxy Authentication Required', - 408 => 'Request Timeout', - 409 => 'Conflict', - 410 => 'Gone', - 411 => 'Length Required', - 412 => 'Precondition Failed', - 413 => 'Request Entity Too Large', - 414 => 'Request-URI Too Long', - 415 => 'Unsupported Media Type', - 416 => 'Requested Range Not Satisfiable', - 417 => 'Expectation Failed', - - // 5xx: Server Error - The server failed to fulfill an apparently - // valid request - 500 => 'Internal Server Error', - 501 => 'Not Implemented', - 502 => 'Bad Gateway', - 503 => 'Service Unavailable', - 504 => 'Gateway Timeout', - 505 => 'HTTP Version Not Supported', - 509 => 'Bandwidth Limit Exceeded', - - ); - - /** - * Constructor, parses the response status line - * - * @param string Response status line (e.g. "HTTP/1.1 200 OK") - * @param bool Whether body is still encoded by Content-Encoding - * @throws HTTP_Request2_Exception if status line is invalid according to spec - */ - public function __construct($statusLine, $bodyEncoded = true) - { - if (!preg_match('!^HTTP/(\d\.\d) (\d{3})(?: (.+))?!', $statusLine, $m)) { - throw new HTTP_Request2_Exception("Malformed response: {$statusLine}"); - } - $this->version = $m[1]; - $this->code = intval($m[2]); - if (!empty($m[3])) { - $this->reasonPhrase = trim($m[3]); - } elseif (!empty(self::$phrases[$this->code])) { - $this->reasonPhrase = self::$phrases[$this->code]; - } - $this->bodyEncoded = (bool)$bodyEncoded; - } - - /** - * Parses the line from HTTP response filling $headers array - * - * The method should be called after reading the line from socket or receiving - * it into cURL callback. Passing an empty string here indicates the end of - * response headers and triggers additional processing, so be sure to pass an - * empty string in the end. - * - * @param string Line from HTTP response - */ - public function parseHeaderLine($headerLine) - { - $headerLine = trim($headerLine, "\r\n"); - - // empty string signals the end of headers, process the received ones - if ('' == $headerLine) { - if (!empty($this->headers['set-cookie'])) { - $cookies = is_array($this->headers['set-cookie'])? - $this->headers['set-cookie']: - array($this->headers['set-cookie']); - foreach ($cookies as $cookieString) { - $this->parseCookie($cookieString); - } - unset($this->headers['set-cookie']); - } - foreach (array_keys($this->headers) as $k) { - if (is_array($this->headers[$k])) { - $this->headers[$k] = implode(', ', $this->headers[$k]); - } - } - - // string of the form header-name: header value - } elseif (preg_match('!^([^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+):(.+)$!', $headerLine, $m)) { - $name = strtolower($m[1]); - $value = trim($m[2]); - if (empty($this->headers[$name])) { - $this->headers[$name] = $value; - } else { - if (!is_array($this->headers[$name])) { - $this->headers[$name] = array($this->headers[$name]); - } - $this->headers[$name][] = $value; - } - $this->lastHeader = $name; - - // string - } elseif (preg_match('!^\s+(.+)$!', $headerLine, $m) && $this->lastHeader) { - if (!is_array($this->headers[$this->lastHeader])) { - $this->headers[$this->lastHeader] .= ' ' . trim($m[1]); - } else { - $key = count($this->headers[$this->lastHeader]) - 1; - $this->headers[$this->lastHeader][$key] .= ' ' . trim($m[1]); - } - } - } - - /** - * Parses a Set-Cookie header to fill $cookies array - * - * @param string value of Set-Cookie header - * @link http://cgi.netscape.com/newsref/std/cookie_spec.html - */ - protected function parseCookie($cookieString) - { - $cookie = array( - 'expires' => null, - 'domain' => null, - 'path' => null, - 'secure' => false - ); - - // Only a name=value pair - if (!strpos($cookieString, ';')) { - $pos = strpos($cookieString, '='); - $cookie['name'] = trim(substr($cookieString, 0, $pos)); - $cookie['value'] = trim(substr($cookieString, $pos + 1)); - - // Some optional parameters are supplied - } else { - $elements = explode(';', $cookieString); - $pos = strpos($elements[0], '='); - $cookie['name'] = trim(substr($elements[0], 0, $pos)); - $cookie['value'] = trim(substr($elements[0], $pos + 1)); - - for ($i = 1; $i < count($elements); $i++) { - if (false === strpos($elements[$i], '=')) { - $elName = trim($elements[$i]); - $elValue = null; - } else { - list ($elName, $elValue) = array_map('trim', explode('=', $elements[$i])); - } - $elName = strtolower($elName); - if ('secure' == $elName) { - $cookie['secure'] = true; - } elseif ('expires' == $elName) { - $cookie['expires'] = str_replace('"', '', $elValue); - } elseif ('path' == $elName || 'domain' == $elName) { - $cookie[$elName] = urldecode($elValue); - } else { - $cookie[$elName] = $elValue; - } - } - } - $this->cookies[] = $cookie; - } - - /** - * Appends a string to the response body - * @param string - */ - public function appendBody($bodyChunk) - { - $this->body .= $bodyChunk; - } - - /** - * Returns the status code - * @return integer - */ - public function getStatus() - { - return $this->code; - } - - /** - * Returns the reason phrase - * @return string - */ - public function getReasonPhrase() - { - return $this->reasonPhrase; - } - - /** - * Returns either the named header or all response headers - * - * @param string Name of header to return - * @return string|array Value of $headerName header (null if header is - * not present), array of all response headers if - * $headerName is null - */ - public function getHeader($headerName = null) - { - if (null === $headerName) { - return $this->headers; - } else { - $headerName = strtolower($headerName); - return isset($this->headers[$headerName])? $this->headers[$headerName]: null; - } - } - - /** - * Returns cookies set in response - * - * @return array - */ - public function getCookies() - { - return $this->cookies; - } - - /** - * Returns the body of the response - * - * @return string - * @throws HTTP_Request2_Exception if body cannot be decoded - */ - public function getBody() - { - if (!$this->bodyEncoded || - !in_array(strtolower($this->getHeader('content-encoding')), array('gzip', 'deflate')) - ) { - return $this->body; - - } else { - if (extension_loaded('mbstring') && (2 & ini_get('mbstring.func_overload'))) { - $oldEncoding = mb_internal_encoding(); - mb_internal_encoding('iso-8859-1'); - } - - try { - switch (strtolower($this->getHeader('content-encoding'))) { - case 'gzip': - $decoded = self::decodeGzip($this->body); - break; - case 'deflate': - $decoded = self::decodeDeflate($this->body); - } - } catch (Exception $e) { - } - - if (!empty($oldEncoding)) { - mb_internal_encoding($oldEncoding); - } - if (!empty($e)) { - throw $e; - } - return $decoded; - } - } - - /** - * Get the HTTP version of the response - * - * @return string - */ - public function getVersion() - { - return $this->version; - } - - /** - * Decodes the message-body encoded by gzip - * - * The real decoding work is done by gzinflate() built-in function, this - * method only parses the header and checks data for compliance with - * RFC 1952 - * - * @param string gzip-encoded data - * @return string decoded data - * @throws HTTP_Request2_Exception - * @link http://tools.ietf.org/html/rfc1952 - */ - public static function decodeGzip($data) - { - $length = strlen($data); - // If it doesn't look like gzip-encoded data, don't bother - if (18 > $length || strcmp(substr($data, 0, 2), "\x1f\x8b")) { - return $data; - } - if (!function_exists('gzinflate')) { - throw new HTTP_Request2_Exception('Unable to decode body: gzip extension not available'); - } - $method = ord(substr($data, 2, 1)); - if (8 != $method) { - throw new HTTP_Request2_Exception('Error parsing gzip header: unknown compression method'); - } - $flags = ord(substr($data, 3, 1)); - if ($flags & 224) { - throw new HTTP_Request2_Exception('Error parsing gzip header: reserved bits are set'); - } - - // header is 10 bytes minimum. may be longer, though. - $headerLength = 10; - // extra fields, need to skip 'em - if ($flags & 4) { - if ($length - $headerLength - 2 < 8) { - throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); - } - $extraLength = unpack('v', substr($data, 10, 2)); - if ($length - $headerLength - 2 - $extraLength[1] < 8) { - throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); - } - $headerLength += $extraLength[1] + 2; - } - // file name, need to skip that - if ($flags & 8) { - if ($length - $headerLength - 1 < 8) { - throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); - } - $filenameLength = strpos(substr($data, $headerLength), chr(0)); - if (false === $filenameLength || $length - $headerLength - $filenameLength - 1 < 8) { - throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); - } - $headerLength += $filenameLength + 1; - } - // comment, need to skip that also - if ($flags & 16) { - if ($length - $headerLength - 1 < 8) { - throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); - } - $commentLength = strpos(substr($data, $headerLength), chr(0)); - if (false === $commentLength || $length - $headerLength - $commentLength - 1 < 8) { - throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); - } - $headerLength += $commentLength + 1; - } - // have a CRC for header. let's check - if ($flags & 2) { - if ($length - $headerLength - 2 < 8) { - throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); - } - $crcReal = 0xffff & crc32(substr($data, 0, $headerLength)); - $crcStored = unpack('v', substr($data, $headerLength, 2)); - if ($crcReal != $crcStored[1]) { - throw new HTTP_Request2_Exception('Header CRC check failed'); - } - $headerLength += 2; - } - // unpacked data CRC and size at the end of encoded data - $tmp = unpack('V2', substr($data, -8)); - $dataCrc = $tmp[1]; - $dataSize = $tmp[2]; - - // finally, call the gzinflate() function - // don't pass $dataSize to gzinflate, see bugs #13135, #14370 - $unpacked = gzinflate(substr($data, $headerLength, -8)); - if (false === $unpacked) { - throw new HTTP_Request2_Exception('gzinflate() call failed'); - } elseif ($dataSize != strlen($unpacked)) { - throw new HTTP_Request2_Exception('Data size check failed'); - } elseif ((0xffffffff & $dataCrc) != (0xffffffff & crc32($unpacked))) { - throw new HTTP_Request2_Exception('Data CRC check failed'); - } - return $unpacked; - } - - /** - * Decodes the message-body encoded by deflate - * - * @param string deflate-encoded data - * @return string decoded data - * @throws HTTP_Request2_Exception - */ - public static function decodeDeflate($data) - { - if (!function_exists('gzuncompress')) { - throw new HTTP_Request2_Exception('Unable to decode body: gzip extension not available'); - } - // RFC 2616 defines 'deflate' encoding as zlib format from RFC 1950, - // while many applications send raw deflate stream from RFC 1951. - // We should check for presence of zlib header and use gzuncompress() or - // gzinflate() as needed. See bug #15305 - $header = unpack('n', substr($data, 0, 2)); - return (0 == $header[1] % 31)? gzuncompress($data): gzinflate($data); - } -} -?> \ No newline at end of file diff --git a/extlib/Net/URL2.php b/extlib/Net/URL2.php index f7fbcd9ce7..7a654aed8f 100644 --- a/extlib/Net/URL2.php +++ b/extlib/Net/URL2.php @@ -1,58 +1,44 @@ - * @copyright 2007-2008 Peytz & Co. A/S - * @license http://www.opensource.org/licenses/bsd-license.php New BSD License - * @version CVS: $Id: URL2.php 286661 2009-08-02 12:50:54Z schmidt $ - * @link http://www.rfc-editor.org/rfc/rfc3986.txt - */ +// +-----------------------------------------------------------------------+ +// | Copyright (c) 2007-2008, Christian Schmidt, Peytz & Co. A/S | +// | All rights reserved. | +// | | +// | Redistribution and use in source and binary forms, with or without | +// | modification, are permitted provided that the following conditions | +// | are met: | +// | | +// | o Redistributions of source code must retain the above copyright | +// | notice, this list of conditions and the following disclaimer. | +// | o Redistributions in binary form must reproduce the above copyright | +// | notice, this list of conditions and the following disclaimer in the | +// | documentation and/or other materials provided with the distribution.| +// | o The names of the authors may not be used to endorse or promote | +// | products derived from this software without specific prior written | +// | permission. | +// | | +// | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | +// | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | +// | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | +// | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | +// | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | +// | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | +// | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | +// | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | +// | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | +// | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | +// | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | +// | | +// +-----------------------------------------------------------------------+ +// | Author: Christian Schmidt | +// +-----------------------------------------------------------------------+ +// +// $Id: URL2.php,v 1.10 2008/04/26 21:57:08 schmidt Exp $ +// +// Net_URL2 Class (PHP5 Only) +// This code is released under the BSD License - http://www.opensource.org/licenses/bsd-license.php /** - * Represents a URL as per RFC 3986. - * - * @category Networking - * @package Net_URL2 - * @author Christian Schmidt - * @copyright 2007-2008 Peytz & Co. ApS - * @license http://www.opensource.org/licenses/bsd-license.php New BSD License - * @version Release: @package_version@ - * @link http://pear.php.net/package/Net_URL2 + * @license BSD License */ class Net_URL2 { @@ -60,24 +46,24 @@ class Net_URL2 * Do strict parsing in resolve() (see RFC 3986, section 5.2.2). Default * is true. */ - const OPTION_STRICT = 'strict'; + const OPTION_STRICT = 'strict'; /** * Represent arrays in query using PHP's [] notation. Default is true. */ - const OPTION_USE_BRACKETS = 'use_brackets'; + const OPTION_USE_BRACKETS = 'use_brackets'; /** * URL-encode query variable keys. Default is true. */ - const OPTION_ENCODE_KEYS = 'encode_keys'; + const OPTION_ENCODE_KEYS = 'encode_keys'; /** * Query variable separators when parsing the query string. Every character * is considered a separator. Default is specified by the * arg_separator.input php.ini setting (this defaults to "&"). */ - const OPTION_SEPARATOR_INPUT = 'input_separator'; + const OPTION_SEPARATOR_INPUT = 'input_separator'; /** * Query variable separator used when generating the query string. Default @@ -89,7 +75,7 @@ class Net_URL2 /** * Default options corresponds to how PHP handles $_GET. */ - private $_options = array( + private $options = array( self::OPTION_STRICT => true, self::OPTION_USE_BRACKETS => true, self::OPTION_ENCODE_KEYS => true, @@ -100,43 +86,41 @@ class Net_URL2 /** * @var string|bool */ - private $_scheme = false; + private $scheme = false; /** * @var string|bool */ - private $_userinfo = false; + private $userinfo = false; /** * @var string|bool */ - private $_host = false; + private $host = false; /** * @var int|bool */ - private $_port = false; + private $port = false; /** * @var string */ - private $_path = ''; + private $path = ''; /** * @var string|bool */ - private $_query = false; + private $query = false; /** * @var string|bool */ - private $_fragment = false; + private $fragment = false; /** - * Constructor. - * * @param string $url an absolute or relative URL - * @param array $options an array of OPTION_xxx constants + * @param array $options */ public function __construct($url, $options = null) { @@ -146,12 +130,12 @@ class Net_URL2 ini_get('arg_separator.output')); if (is_array($options)) { foreach ($options as $optionName => $value) { - $this->setOption($optionName, $value); + $this->setOption($optionName); } } if (preg_match('@^([a-z][a-z0-9.+-]*):@i', $url, $reg)) { - $this->_scheme = $reg[1]; + $this->scheme = $reg[1]; $url = substr($url, strlen($reg[0])); } @@ -161,58 +145,19 @@ class Net_URL2 } $i = strcspn($url, '?#'); - $this->_path = substr($url, 0, $i); + $this->path = substr($url, 0, $i); $url = substr($url, $i); if (preg_match('@^\?([^#]*)@', $url, $reg)) { - $this->_query = $reg[1]; + $this->query = $reg[1]; $url = substr($url, strlen($reg[0])); } if ($url) { - $this->_fragment = substr($url, 1); + $this->fragment = substr($url, 1); } } - /** - * Magic Setter. - * - * This method will magically set the value of a private variable ($var) - * with the value passed as the args - * - * @param string $var The private variable to set. - * @param mixed $arg An argument of any type. - * @return void - */ - public function __set($var, $arg) - { - $method = 'set' . $var; - if (method_exists($this, $method)) { - $this->$method($arg); - } - } - - /** - * Magic Getter. - * - * This is the magic get method to retrieve the private variable - * that was set by either __set() or it's setter... - * - * @param string $var The property name to retrieve. - * @return mixed $this->$var Either a boolean false if the - * property is not set or the value - * of the private property. - */ - public function __get($var) - { - $method = 'get' . $var; - if (method_exists($this, $method)) { - return $this->$method(); - } - - return false; - } - /** * Returns the scheme, e.g. "http" or "urn", or false if there is no * scheme specified, i.e. if this is a relative URL. @@ -221,23 +166,18 @@ class Net_URL2 */ public function getScheme() { - return $this->_scheme; + return $this->scheme; } /** - * Sets the scheme, e.g. "http" or "urn". Specify false if there is no - * scheme specified, i.e. if this is a relative URL. - * - * @param string|bool $scheme e.g. "http" or "urn", or false if there is no - * scheme specified, i.e. if this is a relative - * URL + * @param string|bool $scheme * * @return void * @see getScheme() */ public function setScheme($scheme) { - $this->_scheme = $scheme; + $this->scheme = $scheme; } /** @@ -248,9 +188,7 @@ class Net_URL2 */ public function getUser() { - return $this->_userinfo !== false - ? preg_replace('@:.*$@', '', $this->_userinfo) - : false; + return $this->userinfo !== false ? preg_replace('@:.*$@', '', $this->userinfo) : false; } /** @@ -263,9 +201,7 @@ class Net_URL2 */ public function getPassword() { - return $this->_userinfo !== false - ? substr(strstr($this->_userinfo, ':'), 1) - : false; + return $this->userinfo !== false ? substr(strstr($this->userinfo, ':'), 1) : false; } /** @@ -276,7 +212,7 @@ class Net_URL2 */ public function getUserinfo() { - return $this->_userinfo; + return $this->userinfo; } /** @@ -284,15 +220,15 @@ class Net_URL2 * in the userinfo part as username ":" password. * * @param string|bool $userinfo userinfo or username - * @param string|bool $password optional password, or false + * @param string|bool $password * * @return void */ public function setUserinfo($userinfo, $password = false) { - $this->_userinfo = $userinfo; + $this->userinfo = $userinfo; if ($password !== false) { - $this->_userinfo .= ':' . $password; + $this->userinfo .= ':' . $password; } } @@ -300,24 +236,21 @@ class Net_URL2 * Returns the host part, or false if there is no authority part, e.g. * relative URLs. * - * @return string|bool a hostname, an IP address, or false + * @return string|bool */ public function getHost() { - return $this->_host; + return $this->host; } /** - * Sets the host part. Specify false if there is no authority part, e.g. - * relative URLs. - * - * @param string|bool $host a hostname, an IP address, or false + * @param string|bool $host * * @return void */ public function setHost($host) { - $this->_host = $host; + $this->host = $host; } /** @@ -328,72 +261,65 @@ class Net_URL2 */ public function getPort() { - return $this->_port; + return $this->port; } /** - * Sets the port number. Specify false if there is no port number specified, - * i.e. if the default port is to be used. - * - * @param int|bool $port a port number, or false + * @param int|bool $port * * @return void */ public function setPort($port) { - $this->_port = intval($port); + $this->port = intval($port); } /** * Returns the authority part, i.e. [ userinfo "@" ] host [ ":" port ], or - * false if there is no authority. + * false if there is no authority none. * * @return string|bool */ public function getAuthority() { - if (!$this->_host) { + if (!$this->host) { return false; } $authority = ''; - if ($this->_userinfo !== false) { - $authority .= $this->_userinfo . '@'; + if ($this->userinfo !== false) { + $authority .= $this->userinfo . '@'; } - $authority .= $this->_host; + $authority .= $this->host; - if ($this->_port !== false) { - $authority .= ':' . $this->_port; + if ($this->port !== false) { + $authority .= ':' . $this->port; } return $authority; } /** - * Sets the authority part, i.e. [ userinfo "@" ] host [ ":" port ]. Specify - * false if there is no authority. - * - * @param string|false $authority a hostname or an IP addresse, possibly - * with userinfo prefixed and port number - * appended, e.g. "foo:bar@example.org:81". + * @param string|false $authority * * @return void */ public function setAuthority($authority) { - $this->_userinfo = false; - $this->_host = false; - $this->_port = false; - if (preg_match('@^(([^\@]*)\@)?([^:]+)(:(\d*))?$@', $authority, $reg)) { + $this->user = false; + $this->pass = false; + $this->host = false; + $this->port = false; + if (preg_match('@^(([^\@]+)\@)?([^:]+)(:(\d*))?$@', $authority, $reg)) { if ($reg[1]) { - $this->_userinfo = $reg[2]; + $this->userinfo = $reg[2]; } - $this->_host = $reg[3]; + $this->host = $reg[3]; if (isset($reg[5])) { - $this->_port = intval($reg[5]); + $this->port = intval($reg[5]); } } } @@ -405,74 +331,65 @@ class Net_URL2 */ public function getPath() { - return $this->_path; + return $this->path; } /** - * Sets the path part (possibly an empty string). - * - * @param string $path a path + * @param string $path * * @return void */ public function setPath($path) { - $this->_path = $path; + $this->path = $path; } /** * Returns the query string (excluding the leading "?"), or false if "?" - * is not present in the URL. + * isn't present in the URL. * * @return string|bool * @see self::getQueryVariables() */ public function getQuery() { - return $this->_query; + return $this->query; } /** - * Sets the query string (excluding the leading "?"). Specify false if "?" - * is not present in the URL. - * - * @param string|bool $query a query string, e.g. "foo=1&bar=2" + * @param string|bool $query * * @return void * @see self::setQueryVariables() */ public function setQuery($query) { - $this->_query = $query; + $this->query = $query; } /** - * Returns the fragment name, or false if "#" is not present in the URL. + * Returns the fragment name, or false if "#" isn't present in the URL. * * @return string|bool */ public function getFragment() { - return $this->_fragment; + return $this->fragment; } /** - * Sets the fragment name. Specify false if "#" is not present in the URL. - * - * @param string|bool $fragment a fragment excluding the leading "#", or - * false + * @param string|bool $fragment * * @return void */ public function setFragment($fragment) { - $this->_fragment = $fragment; + $this->fragment = $fragment; } /** * Returns the query string like an array as the variables would appear in - * $_GET in a PHP script. If the URL does not contain a "?", an empty array - * is returned. + * $_GET in a PHP script. * * @return array */ @@ -481,7 +398,7 @@ class Net_URL2 $pattern = '/[' . preg_quote($this->getOption(self::OPTION_SEPARATOR_INPUT), '/') . ']/'; - $parts = preg_split($pattern, $this->_query, -1, PREG_SPLIT_NO_EMPTY); + $parts = preg_split($pattern, $this->query, -1, PREG_SPLIT_NO_EMPTY); $return = array(); foreach ($parts as $part) { @@ -528,8 +445,6 @@ class Net_URL2 } /** - * Sets the query string to the specified variable in the query string. - * * @param array $array (name => value) array * * @return void @@ -537,11 +452,11 @@ class Net_URL2 public function setQueryVariables(array $array) { if (!$array) { - $this->_query = false; + $this->query = false; } else { foreach ($array as $name => $value) { if ($this->getOption(self::OPTION_ENCODE_KEYS)) { - $name = self::urlencode($name); + $name = rawurlencode($name); } if (is_array($value)) { @@ -551,21 +466,19 @@ class Net_URL2 : ($name . '=' . $v); } } elseif (!is_null($value)) { - $parts[] = $name . '=' . self::urlencode($value); + $parts[] = $name . '=' . $value; } else { $parts[] = $name; } } - $this->_query = implode($this->getOption(self::OPTION_SEPARATOR_OUTPUT), - $parts); + $this->query = implode($this->getOption(self::OPTION_SEPARATOR_OUTPUT), + $parts); } } /** - * Sets the specified variable in the query string. - * - * @param string $name variable name - * @param mixed $value variable value + * @param string $name + * @param mixed $value * * @return array */ @@ -577,9 +490,7 @@ class Net_URL2 } /** - * Removes the specifed variable from the query string. - * - * @param string $name a query string variable, e.g. "foo" in "?foo=1" + * @param string $name * * @return void */ @@ -600,38 +511,27 @@ class Net_URL2 // See RFC 3986, section 5.3 $url = ""; - if ($this->_scheme !== false) { - $url .= $this->_scheme . ':'; + if ($this->scheme !== false) { + $url .= $this->scheme . ':'; } $authority = $this->getAuthority(); if ($authority !== false) { $url .= '//' . $authority; } - $url .= $this->_path; + $url .= $this->path; - if ($this->_query !== false) { - $url .= '?' . $this->_query; + if ($this->query !== false) { + $url .= '?' . $this->query; } - if ($this->_fragment !== false) { - $url .= '#' . $this->_fragment; + if ($this->fragment !== false) { + $url .= '#' . $this->fragment; } return $url; } - /** - * Returns a string representation of this URL. - * - * @return string - * @see toString() - */ - public function __toString() - { - return $this->getURL(); - } - /** * Returns a normalized string representation of this URL. This is useful * for comparison of URLs. @@ -655,38 +555,36 @@ class Net_URL2 // See RFC 3886, section 6 // Schemes are case-insensitive - if ($this->_scheme) { - $this->_scheme = strtolower($this->_scheme); + if ($this->scheme) { + $this->scheme = strtolower($this->scheme); } // Hostnames are case-insensitive - if ($this->_host) { - $this->_host = strtolower($this->_host); + if ($this->host) { + $this->host = strtolower($this->host); } // Remove default port number for known schemes (RFC 3986, section 6.2.3) - if ($this->_port && - $this->_scheme && - $this->_port == getservbyname($this->_scheme, 'tcp')) { + if ($this->port && + $this->scheme && + $this->port == getservbyname($this->scheme, 'tcp')) { - $this->_port = false; + $this->port = false; } // Normalize case of %XX percentage-encodings (RFC 3986, section 6.2.2.1) - foreach (array('_userinfo', '_host', '_path') as $part) { + foreach (array('userinfo', 'host', 'path') as $part) { if ($this->$part) { - $this->$part = preg_replace('/%[0-9a-f]{2}/ie', - 'strtoupper("\0")', - $this->$part); + $this->$part = preg_replace('/%[0-9a-f]{2}/ie', 'strtoupper("\0")', $this->$part); } } // Path segment normalization (RFC 3986, section 6.2.2.3) - $this->_path = self::removeDotSegments($this->_path); + $this->path = self::removeDotSegments($this->path); // Scheme based normalization (RFC 3986, section 6.2.3) - if ($this->_host && !$this->_path) { - $this->_path = '/'; + if ($this->host && !$this->path) { + $this->path = '/'; } } @@ -697,7 +595,7 @@ class Net_URL2 */ public function isAbsolute() { - return (bool) $this->_scheme; + return (bool) $this->scheme; } /** @@ -710,7 +608,7 @@ class Net_URL2 */ public function resolve($reference) { - if (!$reference instanceof Net_URL2) { + if (is_string($reference)) { $reference = new self($reference); } if (!$this->isAbsolute()) { @@ -719,54 +617,54 @@ class Net_URL2 // A non-strict parser may ignore a scheme in the reference if it is // identical to the base URI's scheme. - if (!$this->getOption(self::OPTION_STRICT) && $reference->_scheme == $this->_scheme) { - $reference->_scheme = false; + if (!$this->getOption(self::OPTION_STRICT) && $reference->scheme == $this->scheme) { + $reference->scheme = false; } $target = new self(''); - if ($reference->_scheme !== false) { - $target->_scheme = $reference->_scheme; + if ($reference->scheme !== false) { + $target->scheme = $reference->scheme; $target->setAuthority($reference->getAuthority()); - $target->_path = self::removeDotSegments($reference->_path); - $target->_query = $reference->_query; + $target->path = self::removeDotSegments($reference->path); + $target->query = $reference->query; } else { $authority = $reference->getAuthority(); if ($authority !== false) { $target->setAuthority($authority); - $target->_path = self::removeDotSegments($reference->_path); - $target->_query = $reference->_query; + $target->path = self::removeDotSegments($reference->path); + $target->query = $reference->query; } else { - if ($reference->_path == '') { - $target->_path = $this->_path; - if ($reference->_query !== false) { - $target->_query = $reference->_query; + if ($reference->path == '') { + $target->path = $this->path; + if ($reference->query !== false) { + $target->query = $reference->query; } else { - $target->_query = $this->_query; + $target->query = $this->query; } } else { - if (substr($reference->_path, 0, 1) == '/') { - $target->_path = self::removeDotSegments($reference->_path); + if (substr($reference->path, 0, 1) == '/') { + $target->path = self::removeDotSegments($reference->path); } else { // Merge paths (RFC 3986, section 5.2.3) - if ($this->_host !== false && $this->_path == '') { - $target->_path = '/' . $this->_path; + if ($this->host !== false && $this->path == '') { + $target->path = '/' . $this->path; } else { - $i = strrpos($this->_path, '/'); + $i = strrpos($this->path, '/'); if ($i !== false) { - $target->_path = substr($this->_path, 0, $i + 1); + $target->path = substr($this->path, 0, $i + 1); } - $target->_path .= $reference->_path; + $target->path .= $reference->path; } - $target->_path = self::removeDotSegments($target->_path); + $target->path = self::removeDotSegments($target->path); } - $target->_query = $reference->_query; + $target->query = $reference->query; } $target->setAuthority($this->getAuthority()); } - $target->_scheme = $this->_scheme; + $target->scheme = $this->scheme; } - $target->_fragment = $reference->_fragment; + $target->fragment = $reference->fragment; return $target; } @@ -779,7 +677,7 @@ class Net_URL2 * * @return string a path */ - public static function removeDotSegments($path) + private static function removeDotSegments($path) { $output = ''; @@ -787,25 +685,28 @@ class Net_URL2 // method $j = 0; while ($path && $j++ < 100) { + // Step A if (substr($path, 0, 2) == './') { - // Step 2.A $path = substr($path, 2); } elseif (substr($path, 0, 3) == '../') { - // Step 2.A $path = substr($path, 3); + + // Step B } elseif (substr($path, 0, 3) == '/./' || $path == '/.') { - // Step 2.B $path = '/' . substr($path, 3); + + // Step C } elseif (substr($path, 0, 4) == '/../' || $path == '/..') { - // Step 2.C - $path = '/' . substr($path, 4); - $i = strrpos($output, '/'); + $path = '/' . substr($path, 4); + $i = strrpos($output, '/'); $output = $i === false ? '' : substr($output, 0, $i); + + // Step D } elseif ($path == '.' || $path == '..') { - // Step 2.D $path = ''; + + // Step E } else { - // Step 2.E $i = strpos($path, '/'); if ($i === 0) { $i = strpos($path, '/', 1); @@ -821,22 +722,6 @@ class Net_URL2 return $output; } - /** - * Percent-encodes all non-alphanumeric characters except these: _ . - ~ - * Similar to PHP's rawurlencode(), except that it also encodes ~ in PHP - * 5.2.x and earlier. - * - * @param $raw the string to encode - * @return string - */ - public static function urlencode($string) - { - $encoded = rawurlencode($string); - // This is only necessary in PHP < 5.3. - $encoded = str_replace('%7E', '~', $encoded); - return $encoded; - } - /** * Returns a Net_URL2 instance representing the canonical URL of the * currently executing PHP script. @@ -852,13 +737,13 @@ class Net_URL2 // Begin with a relative URL $url = new self($_SERVER['PHP_SELF']); - $url->_scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; - $url->_host = $_SERVER['SERVER_NAME']; + $url->scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; + $url->host = $_SERVER['SERVER_NAME']; $port = intval($_SERVER['SERVER_PORT']); - if ($url->_scheme == 'http' && $port != 80 || - $url->_scheme == 'https' && $port != 443) { + if ($url->scheme == 'http' && $port != 80 || + $url->scheme == 'https' && $port != 443) { - $url->_port = $port; + $url->port = $port; } return $url; } @@ -888,7 +773,7 @@ class Net_URL2 // Begin with a relative URL $url = new self($_SERVER['REQUEST_URI']); - $url->_scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; + $url->scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; // Set host and possibly port $url->setAuthority($_SERVER['HTTP_HOST']); return $url; @@ -907,10 +792,10 @@ class Net_URL2 */ function setOption($optionName, $value) { - if (!array_key_exists($optionName, $this->_options)) { + if (!array_key_exists($optionName, $this->options)) { return false; } - $this->_options[$optionName] = $value; + $this->options[$optionName] = $value; } /** @@ -922,7 +807,7 @@ class Net_URL2 */ function getOption($optionName) { - return isset($this->_options[$optionName]) - ? $this->_options[$optionName] : false; + return isset($this->options[$optionName]) + ? $this->options[$optionName] : false; } } diff --git a/install.php b/install.php index d34e92dab4..6bfc4c2e21 100644 --- a/install.php +++ b/install.php @@ -93,13 +93,6 @@ $external_libraries=array( 'include'=>'HTTP/Request.php', 'check_class'=>'HTTP_Request' ), - array( - 'name'=>'HTTP_Request2', - 'pear'=>'HTTP_Request2', - 'url'=>'http://pear.php.net/package/HTTP_Request2', - 'include'=>'HTTP/Request2.php', - 'check_class'=>'HTTP_Request2' - ), array( 'name'=>'Mail', 'pear'=>'Mail', diff --git a/lib/Shorturl_api.php b/lib/Shorturl_api.php index ef0d8dda45..18ae7719b2 100644 --- a/lib/Shorturl_api.php +++ b/lib/Shorturl_api.php @@ -41,17 +41,22 @@ abstract class ShortUrlApi return strlen($url) >= common_config('site', 'shorturllength'); } - protected function http_post($data) - { - $request = new HTTPClient($this->service_url); - return $request->post($data); + protected function http_post($data) { + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $this->service_url); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($ch, CURLOPT_POST, 1); + curl_setopt($ch, CURLOPT_POSTFIELDS, $data); + $response = curl_exec($ch); + $code = curl_getinfo($ch, CURLINFO_HTTP_CODE); + curl_close($ch); + if (($code < 200) || ($code >= 400)) return false; + return $response; } - protected function http_get($url) - { - $service = $this->service_url . urlencode($url); - $request = new HTTPClient($service); - return $request->get(); + protected function http_get($url) { + $encoded_url = urlencode($url); + return file_get_contents("{$this->service_url}$encoded_url"); } protected function tidy($response) { diff --git a/lib/curlclient.php b/lib/curlclient.php new file mode 100644 index 0000000000..c307c29844 --- /dev/null +++ b/lib/curlclient.php @@ -0,0 +1,179 @@ +. + * + * @category HTTP + * @package StatusNet + * @author Evan Prodromou + * @copyright 2009 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +define(CURLCLIENT_VERSION, "0.1"); + +/** + * Wrapper for Curl + * + * Makes Curl HTTP client calls within our HTTPClient framework + * + * @category HTTP + * @package StatusNet + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +class CurlClient extends HTTPClient +{ + function __construct() + { + } + + function head($url, $headers=null) + { + $ch = curl_init($url); + + $this->setup($ch); + + curl_setopt_array($ch, + array(CURLOPT_NOBODY => true)); + + if (!is_null($headers)) { + curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); + } + + $result = curl_exec($ch); + + curl_close($ch); + + return $this->parseResults($result); + } + + function get($url, $headers=null) + { + $ch = curl_init($url); + + $this->setup($ch); + + if (!is_null($headers)) { + curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); + } + + $result = curl_exec($ch); + + curl_close($ch); + + return $this->parseResults($result); + } + + function post($url, $headers=null, $body=null) + { + $ch = curl_init($url); + + $this->setup($ch); + + curl_setopt($ch, CURLOPT_POST, true); + + if (!is_null($body)) { + curl_setopt($ch, CURLOPT_POSTFIELDS, $body); + } + + if (!is_null($headers)) { + curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); + } + + $result = curl_exec($ch); + + curl_close($ch); + + return $this->parseResults($result); + } + + function setup($ch) + { + curl_setopt_array($ch, + array(CURLOPT_USERAGENT => $this->userAgent(), + CURLOPT_HEADER => true, + CURLOPT_RETURNTRANSFER => true)); + } + + function userAgent() + { + $version = curl_version(); + return parent::userAgent() . " CurlClient/".CURLCLIENT_VERSION . " cURL/" . $version['version']; + } + + function parseResults($results) + { + $resp = new HTTPResponse(); + + $lines = explode("\r\n", $results); + + if (preg_match("#^HTTP/1.[01] (\d\d\d) .+$#", $lines[0], $match)) { + $resp->code = $match[1]; + } else { + throw Exception("Bad format: initial line is not HTTP status line"); + } + + $lastk = null; + + for ($i = 1; $i < count($lines); $i++) { + $l =& $lines[$i]; + if (mb_strlen($l) == 0) { + $resp->body = implode("\r\n", array_slice($lines, $i + 1)); + break; + } + if (preg_match("#^(\S+):\s+(.*)$#", $l, $match)) { + $k = $match[1]; + $v = $match[2]; + + if (array_key_exists($k, $resp->headers)) { + if (is_array($resp->headers[$k])) { + $resp->headers[$k][] = $v; + } else { + $resp->headers[$k] = array($resp->headers[$k], $v); + } + } else { + $resp->headers[$k] = $v; + } + $lastk = $k; + } else if (preg_match("#^\s+(.*)$#", $l, $match)) { + // continuation line + if (is_null($lastk)) { + throw Exception("Bad format: initial whitespace in headers"); + } + $h =& $resp->headers[$lastk]; + if (is_array($h)) { + $n = count($h); + $h[$n-1] .= $match[1]; + } else { + $h .= $match[1]; + } + } + } + + return $resp; + } +} diff --git a/lib/default.php b/lib/default.php index f6cc4b725a..7ec8558b07 100644 --- a/lib/default.php +++ b/lib/default.php @@ -228,6 +228,8 @@ $default = array('contentlimit' => null), 'message' => array('contentlimit' => null), + 'http' => + array('client' => 'curl'), // XXX: should this be the default? 'location' => array('namespace' => 1), // 1 = geonames, 2 = Yahoo Where on Earth ); diff --git a/lib/httpclient.php b/lib/httpclient.php index ee894e9832..f16e31e103 100644 --- a/lib/httpclient.php +++ b/lib/httpclient.php @@ -31,9 +31,6 @@ if (!defined('STATUSNET')) { exit(1); } -require_once 'HTTP/Request2.php'; -require_once 'HTTP/Request2/Response.php'; - /** * Useful structure for HTTP responses * @@ -41,42 +38,18 @@ require_once 'HTTP/Request2/Response.php'; * ways of doing them. This class hides the specifics of what underlying * library (curl or PHP-HTTP or whatever) that's used. * - * This extends the HTTP_Request2_Response class with methods to get info - * about any followed redirects. - * * @category HTTP - * @package StatusNet - * @author Evan Prodromou - * @author Brion Vibber - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ + * @package StatusNet + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ */ -class HTTPResponse extends HTTP_Request2_Response + +class HTTPResponse { - function __construct(HTTP_Request2_Response $response, $url, $redirects=0) - { - foreach (get_object_vars($response) as $key => $val) { - $this->$key = $val; - } - $this->url = strval($url); - $this->redirectCount = intval($redirects); - } - - /** - * Get the count of redirects that have been followed, if any. - * @return int - */ - function getRedirectCount() { - return $this->redirectCount; - } - - /** - * Gets the final target URL, after any redirects have been followed. - * @return string URL - */ - function getUrl() { - return $this->url; - } + public $code = null; + public $headers = array(); + public $body = null; } /** @@ -86,133 +59,64 @@ class HTTPResponse extends HTTP_Request2_Response * ways of doing them. This class hides the specifics of what underlying * library (curl or PHP-HTTP or whatever) that's used. * - * This extends the PEAR HTTP_Request2 package: - * - sends StatusNet-specific User-Agent header - * - 'follow_redirects' config option, defaulting off - * - 'max_redirs' config option, defaulting to 10 - * - extended response class adds getRedirectCount() and getUrl() methods - * - get() and post() convenience functions return body content directly - * * @category HTTP * @package StatusNet * @author Evan Prodromou - * @author Brion Vibber * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ -class HTTPClient extends HTTP_Request2 +class HTTPClient { + static $_client = null; - function __construct($url=null, $method=self::METHOD_GET, $config=array()) + static function start() { - $this->config['max_redirs'] = 10; - $this->config['follow_redirects'] = false; - parent::__construct($url, $method, $config); - $this->setHeader('User-Agent', $this->userAgent()); - } - - /** - * Convenience function to run a get request and return the response body. - * Use when you don't need to get into details of the response. - * - * @return mixed string on success, false on failure - */ - function get() - { - $this->setMethod(self::METHOD_GET); - return $this->doRequest(); - } - - /** - * Convenience function to post form data and return the response body. - * Use when you don't need to get into details of the response. - * - * @param array associative array of form data to submit - * @return mixed string on success, false on failure - */ - public function post($data=array()) - { - $this->setMethod(self::METHOD_POST); - if ($data) { - $this->addPostParameter($data); + if (!is_null(self::$_client)) { + return self::$_client; } - return $this->doRequest(); - } - /** - * @return mixed string on success, false on failure - */ - protected function doRequest() - { - try { - $response = $this->send(); - $code = $response->getStatus(); - if (($code < 200) || ($code >= 400)) { - return false; - } - return $response->getBody(); - } catch (HTTP_Request2_Exception $e) { - $this->log(LOG_ERR, $e->getMessage()); - return false; + $type = common_config('http', 'client'); + + switch ($type) { + case 'curl': + self::$_client = new CurlClient(); + break; + default: + throw new Exception("Unknown HTTP client type '$type'"); + break; } - } - - protected function log($level, $detail) { - $method = $this->getMethod(); - $url = $this->getUrl(); - common_log($level, __CLASS__ . ": HTTP $method $url - $detail"); + + return self::$_client; + } + + function head($url, $headers) + { + throw new Exception("HEAD method unimplemented"); + } + + function get($url, $headers) + { + throw new Exception("GET method unimplemented"); + } + + function post($url, $headers, $body) + { + throw new Exception("POST method unimplemented"); + } + + function put($url, $headers, $body) + { + throw new Exception("PUT method unimplemented"); + } + + function delete($url, $headers) + { + throw new Exception("DELETE method unimplemented"); } - /** - * Pulls up StatusNet's customized user-agent string, so services - * we hit can track down the responsible software. - */ function userAgent() { return "StatusNet/".STATUSNET_VERSION." (".STATUSNET_CODENAME.")"; } - - function send() - { - $maxRedirs = intval($this->config['max_redirs']); - if (empty($this->config['follow_redirects'])) { - $maxRedirs = 0; - } - $redirs = 0; - do { - try { - $response = parent::send(); - } catch (HTTP_Request2_Exception $e) { - $this->log(LOG_ERR, $e->getMessage()); - throw $e; - } - $code = $response->getStatus(); - if ($code >= 200 && $code < 300) { - $reason = $response->getReasonPhrase(); - $this->log(LOG_INFO, "$code $reason"); - } elseif ($code >= 300 && $code < 400) { - $url = $this->getUrl(); - $target = $response->getHeader('Location'); - - if (++$redirs >= $maxRedirs) { - common_log(LOG_ERR, __CLASS__ . ": Too many redirects: skipping $code redirect from $url to $target"); - break; - } - try { - $this->setUrl($target); - $this->setHeader('Referer', $url); - common_log(LOG_INFO, __CLASS__ . ": Following $code redirect from $url to $target"); - continue; - } catch (HTTP_Request2_Exception $e) { - common_log(LOG_ERR, __CLASS__ . ": Invalid $code redirect from $url to $target"); - } - } else { - $reason = $response->getReasonPhrase(); - $this->log(LOG_ERR, "$code $reason"); - } - break; - } while ($maxRedirs); - return new HTTPResponse($response, $this->getUrl(), $redirs); - } } diff --git a/lib/oauthclient.php b/lib/oauthclient.php index 1a86e2460e..f1827726e7 100644 --- a/lib/oauthclient.php +++ b/lib/oauthclient.php @@ -43,7 +43,7 @@ require_once 'OAuth.php'; * @link http://status.net/ * */ -class OAuthClientException extends Exception +class OAuthClientCurlException extends Exception { } @@ -97,14 +97,9 @@ class OAuthClient function getRequestToken($url) { $response = $this->oAuthGet($url); - $arr = array(); - parse_str($response, $arr); - if (isset($arr['oauth_token']) && isset($arr['oauth_token_secret'])) { - $token = new OAuthToken($arr['oauth_token'], @$arr['oauth_token_secret']); - return $token; - } else { - throw new OAuthClientException(); - } + parse_str($response); + $token = new OAuthToken($oauth_token, $oauth_token_secret); + return $token; } /** @@ -182,7 +177,7 @@ class OAuthClient } /** - * Make a HTTP request. + * Make a HTTP request using cURL. * * @param string $url Where to make the * @param array $params post parameters @@ -191,32 +186,40 @@ class OAuthClient */ function httpRequest($url, $params = null) { - $request = new HTTPClient($url); - $request->setConfig(array( - 'connect_timeout' => 120, - 'timeout' => 120, - 'follow_redirects' => true, - 'ssl_verify_peer' => false, - )); + $options = array( + CURLOPT_RETURNTRANSFER => true, + CURLOPT_FAILONERROR => true, + CURLOPT_HEADER => false, + CURLOPT_FOLLOWLOCATION => true, + CURLOPT_USERAGENT => 'StatusNet', + CURLOPT_CONNECTTIMEOUT => 120, + CURLOPT_TIMEOUT => 120, + CURLOPT_HTTPAUTH => CURLAUTH_ANY, + CURLOPT_SSL_VERIFYPEER => false, - // Twitter is strict about accepting invalid "Expect" headers - $request->setHeader('Expect', ''); + // Twitter is strict about accepting invalid "Expect" headers + + CURLOPT_HTTPHEADER => array('Expect:') + ); if (isset($params)) { - $request->setMethod(HTTP_Request2::METHOD_POST); - $request->setBody($params); + $options[CURLOPT_POST] = true; + $options[CURLOPT_POSTFIELDS] = $params; } - try { - $response = $request->send(); - $code = $response->getStatus(); - if ($code < 200 || $code >= 400) { - throw new OAuthClientException($response->getBody(), $code); - } - return $response->getBody(); - } catch (Exception $e) { - throw new OAuthClientException($e->getMessage(), $e->getCode()); + $ch = curl_init($url); + curl_setopt_array($ch, $options); + $response = curl_exec($ch); + + if ($response === false) { + $msg = curl_error($ch); + $code = curl_errno($ch); + throw new OAuthClientCurlException($msg, $code); } + + curl_close($ch); + + return $response; } } diff --git a/lib/ping.php b/lib/ping.php index 2797c1b2d2..175bf8440b 100644 --- a/lib/ping.php +++ b/lib/ping.php @@ -44,18 +44,20 @@ function ping_broadcast_notice($notice) { array('nickname' => $profile->nickname)), $tags)); - $request = new HTTPClient($notify_url, HTTP_Request2::METHOD_POST); - $request->setHeader('Content-Type', 'text/xml'); - $request->setBody($req); - $httpResponse = $request->send(); + $context = stream_context_create(array('http' => array('method' => "POST", + 'header' => + "Content-Type: text/xml\r\n". + "User-Agent: StatusNet/".STATUSNET_VERSION."\r\n", + 'content' => $req))); + $file = file_get_contents($notify_url, false, $context); - if (!$httpResponse || mb_strlen($httpResponse->getBody()) == 0) { + if ($file === false || mb_strlen($file) == 0) { common_log(LOG_WARNING, "XML-RPC empty results for ping ($notify_url, $notice->id) "); continue; } - $response = xmlrpc_decode($httpResponse->getBody()); + $response = xmlrpc_decode($file); if (is_array($response) && xmlrpc_is_fault($response)) { common_log(LOG_WARNING, diff --git a/lib/snapshot.php b/lib/snapshot.php index 6829e8a751..ede846e5b0 100644 --- a/lib/snapshot.php +++ b/lib/snapshot.php @@ -172,11 +172,26 @@ class Snapshot { // XXX: Use OICU2 and OAuth to make authorized requests + $postdata = http_build_query($this->stats); + + $opts = + array('http' => + array( + 'method' => 'POST', + 'header' => 'Content-type: '. + 'application/x-www-form-urlencoded', + 'content' => $postdata, + 'user_agent' => 'StatusNet/'.STATUSNET_VERSION + ) + ); + + $context = stream_context_create($opts); + $reporturl = common_config('snapshot', 'reporturl'); - $request = new HTTPClient($reporturl, HTTP_Request2::METHOD_POST); - $request->addPostParameter($this->stats); - $request->send(); + $result = @file_get_contents($reporturl, false, $context); + + return $result; } /** diff --git a/plugins/BlogspamNetPlugin.php b/plugins/BlogspamNetPlugin.php index 3bdc735561..c14569746f 100644 --- a/plugins/BlogspamNetPlugin.php +++ b/plugins/BlogspamNetPlugin.php @@ -22,7 +22,6 @@ * @category Plugin * @package StatusNet * @author Evan Prodromou - * @author Brion Vibber * @copyright 2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ @@ -70,14 +69,14 @@ class BlogspamNetPlugin extends Plugin { $args = $this->testArgs($notice); common_debug("Blogspamnet args = " . print_r($args, TRUE)); - $requestBody = xmlrpc_encode_request('testComment', array($args)); - - $request = new HTTPClient($this->baseUrl, HTTP_Request2::METHOD_POST); - $request->addHeader('Content-Type: text/xml'); - $request->setBody($requestBody); - $httpResponse = $request->send(); - - $response = xmlrpc_decode($httpResponse->getBody()); + $request = xmlrpc_encode_request('testComment', array($args)); + $context = stream_context_create(array('http' => array('method' => "POST", + 'header' => + "Content-Type: text/xml\r\n". + "User-Agent: " . $this->userAgent(), + 'content' => $request))); + $file = file_get_contents($this->baseUrl, false, $context); + $response = xmlrpc_decode($file); if (xmlrpc_is_fault($response)) { throw new ServerException("$response[faultString] ($response[faultCode])", 500); } else { diff --git a/plugins/LinkbackPlugin.php b/plugins/LinkbackPlugin.php index 0513687e91..60f7a60c79 100644 --- a/plugins/LinkbackPlugin.php +++ b/plugins/LinkbackPlugin.php @@ -129,25 +129,27 @@ class LinkbackPlugin extends Plugin } } - $request = new HTTPClient($endpoint, 'POST'); - $request->setHeader('User-Agent', $this->userAgent()); - $request->setHeader('Content-Type', 'text/xml'); - $request->setBody(xmlrpc_encode_request('pingback.ping', $args)); - try { - $response = $request->send(); - } catch (HTTP_Request2_Exception $e) { + $request = xmlrpc_encode_request('pingback.ping', $args); + $context = stream_context_create(array('http' => array('method' => "POST", + 'header' => + "Content-Type: text/xml\r\n". + "User-Agent: " . $this->userAgent(), + 'content' => $request))); + $file = file_get_contents($endpoint, false, $context); + if (!$file) { common_log(LOG_WARNING, - "Pingback request failed for '$url' ($endpoint)"); - } - $response = xmlrpc_decode($response->getBody()); - if (xmlrpc_is_fault($response)) { - common_log(LOG_WARNING, - "Pingback error for '$url' ($endpoint): ". - "$response[faultString] ($response[faultCode])"); + "Pingback request failed for '$url' ($endpoint)"); } else { - common_log(LOG_INFO, - "Pingback success for '$url' ($endpoint): ". - "'$response'"); + $response = xmlrpc_decode($file); + if (xmlrpc_is_fault($response)) { + common_log(LOG_WARNING, + "Pingback error for '$url' ($endpoint): ". + "$response[faultString] ($response[faultCode])"); + } else { + common_log(LOG_INFO, + "Pingback success for '$url' ($endpoint): ". + "'$response'"); + } } } diff --git a/plugins/SimpleUrl/SimpleUrlPlugin.php b/plugins/SimpleUrl/SimpleUrlPlugin.php index d59d63e47c..82d7720487 100644 --- a/plugins/SimpleUrl/SimpleUrlPlugin.php +++ b/plugins/SimpleUrl/SimpleUrlPlugin.php @@ -65,6 +65,15 @@ class SimpleUrlPlugin extends Plugin class SimpleUrl extends ShortUrlApi { protected function shorten_imp($url) { - return $this->http_get($url); + $curlh = curl_init(); + curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 20); // # seconds to wait + curl_setopt($curlh, CURLOPT_USERAGENT, 'StatusNet'); + curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true); + + curl_setopt($curlh, CURLOPT_URL, $this->service_url.urlencode($url)); + $short_url = curl_exec($curlh); + + curl_close($curlh); + return $short_url; } } diff --git a/plugins/TwitterBridge/daemons/synctwitterfriends.php b/plugins/TwitterBridge/daemons/synctwitterfriends.php index 671e3c7afa..ed2bf48a22 100755 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php @@ -152,8 +152,8 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon $friends_ids = $client->friendsIds(); } catch (Exception $e) { common_log(LOG_WARNING, $this->name() . - ' - error getting friend ids: ' . - $e->getMessage()); + ' - cURL error getting friend ids ' . + $e->getCode() . ' - ' . $e->getMessage()); return $friends; } diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index 6c91b28605..81bbbc7c5f 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -109,16 +109,12 @@ class TwitterStatusFetcher extends ParallelizingDaemon $flink->find(); $flinks = array(); - common_log(LOG_INFO, "hello"); while ($flink->fetch()) { if (($flink->noticesync & FOREIGN_NOTICE_RECV) == FOREIGN_NOTICE_RECV) { $flinks[] = clone($flink); - common_log(LOG_INFO, "sync: foreign id $flink->foreign_id"); - } else { - common_log(LOG_INFO, "nothing to sync"); } } @@ -519,34 +515,31 @@ class TwitterStatusFetcher extends ParallelizingDaemon return $id; } - /** - * Fetch a remote avatar image and save to local storage. - * - * @param string $url avatar source URL - * @param string $filename bare local filename for download - * @return bool true on success, false on failure - */ function fetchAvatar($url, $filename) { - common_debug($this->name() . " - Fetching Twitter avatar: $url"); + $avatarfile = Avatar::path($filename); - $request = new HTTPClient($url, 'GET', array( - 'follow_redirects' => true, - )); - $data = $request->get(); - if ($data) { - $avatarfile = Avatar::path($filename); - $ok = file_put_contents($avatarfile, $data); - if (!$ok) { - common_log(LOG_WARNING, $this->name() . - " - Couldn't open file $filename"); - return false; - } - } else { + $out = fopen($avatarfile, 'wb'); + if (!$out) { + common_log(LOG_WARNING, $this->name() . + " - Couldn't open file $filename"); return false; } - return true; + common_debug($this->name() . " - Fetching Twitter avatar: $url"); + + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_FILE, $out); + curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); + curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); + curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0); + $result = curl_exec($ch); + curl_close($ch); + + fclose($out); + + return $result; } } diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 3c6803e49a..1a5248a9b9 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -215,7 +215,7 @@ function broadcast_basicauth($notice, $flink) try { $status = $client->statusesUpdate($statustxt); - } catch (HTTP_Request2_Exception $e) { + } catch (BasicAuthCurlException $e) { return process_error($e, $flink); } diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index f1daefab12..2a93ff13e2 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -125,7 +125,7 @@ class TwitterauthorizationAction extends Action $auth_link = $client->getAuthorizeLink($req_tok); - } catch (OAuthClientException $e) { + } catch (TwitterOAuthClientException $e) { $msg = sprintf('OAuth client cURL error - code: %1s, msg: %2s', $e->getCode(), $e->getMessage()); $this->serverError(_('Couldn\'t link your Twitter account.')); diff --git a/plugins/TwitterBridge/twitterbasicauthclient.php b/plugins/TwitterBridge/twitterbasicauthclient.php index e4cae73734..1040d72fb6 100644 --- a/plugins/TwitterBridge/twitterbasicauthclient.php +++ b/plugins/TwitterBridge/twitterbasicauthclient.php @@ -31,6 +31,26 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +/** + * Exception wrapper for cURL errors + * + * @category Integration + * @package StatusNet + * @author Adrian Lang + * @author Brenda Wallace + * @author Craig Andrews + * @author Dan Moore + * @author Evan Prodromou + * @author mEDI + * @author Sarven Capadisli + * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + * + */ +class BasicAuthCurlException extends Exception +{ +} + /** * Class for talking to the Twitter API with HTTP Basic Auth. * @@ -178,27 +198,45 @@ class TwitterBasicAuthClient */ function httpRequest($url, $params = null, $auth = true) { - $request = new HTTPClient($url, 'GET', array( - 'follow_redirects' => true, - 'connect_timeout' => 120, - 'timeout' => 120, - 'ssl_verifypeer' => false, - )); + $options = array( + CURLOPT_RETURNTRANSFER => true, + CURLOPT_FAILONERROR => true, + CURLOPT_HEADER => false, + CURLOPT_FOLLOWLOCATION => true, + CURLOPT_USERAGENT => 'StatusNet', + CURLOPT_CONNECTTIMEOUT => 120, + CURLOPT_TIMEOUT => 120, + CURLOPT_HTTPAUTH => CURLAUTH_ANY, + CURLOPT_SSL_VERIFYPEER => false, - // Twitter is strict about accepting invalid "Expect" headers - $request->setHeader('Expect', ''); + // Twitter is strict about accepting invalid "Expect" headers + + CURLOPT_HTTPHEADER => array('Expect:') + ); if (isset($params)) { - $request->setMethod('POST'); - $request->addPostParameter($params); + $options[CURLOPT_POST] = true; + $options[CURLOPT_POSTFIELDS] = $params; } if ($auth) { - $request->setAuth($this->screen_name, $this->password); + $options[CURLOPT_USERPWD] = $this->screen_name . + ':' . $this->password; } - $response = $request->send(); - return $response->getBody(); + $ch = curl_init($url); + curl_setopt_array($ch, $options); + $response = curl_exec($ch); + + if ($response === false) { + $msg = curl_error($ch); + $code = curl_errno($ch); + throw new BasicAuthCurlException($msg, $code); + } + + curl_close($ch); + + return $response; } } diff --git a/plugins/WikiHashtagsPlugin.php b/plugins/WikiHashtagsPlugin.php index a9e675f5ce..0c5649aa45 100644 --- a/plugins/WikiHashtagsPlugin.php +++ b/plugins/WikiHashtagsPlugin.php @@ -68,8 +68,10 @@ class WikiHashtagsPlugin extends Plugin $editurl = sprintf('http://hashtags.wikia.com/index.php?title=%s&action=edit', urlencode($tag)); - $request = new HTTPClient($url); - $html = $request->get(); + $context = stream_context_create(array('http' => array('method' => "GET", + 'header' => + "User-Agent: " . $this->userAgent()))); + $html = @file_get_contents($url, false, $context); $action->elementStart('div', array('id' => 'wikihashtags', 'class' => 'section')); @@ -98,4 +100,10 @@ class WikiHashtagsPlugin extends Plugin return true; } + + function userAgent() + { + return 'WikiHashtagsPlugin/'.WIKIHASHTAGSPLUGIN_VERSION . + ' StatusNet/' . STATUSNET_VERSION; + } } diff --git a/scripts/enjitqueuehandler.php b/scripts/enjitqueuehandler.php index 214cc02b47..08f733b07c 100755 --- a/scripts/enjitqueuehandler.php +++ b/scripts/enjitqueuehandler.php @@ -46,8 +46,8 @@ class EnjitQueueHandler extends QueueHandler function start() { - $this->log(LOG_INFO, "Starting EnjitQueueHandler"); - $this->log(LOG_INFO, "Broadcasting to ".common_config('enjit', 'apiurl')); + $this->log(LOG_INFO, "Starting EnjitQueueHandler"); + $this->log(LOG_INFO, "Broadcasting to ".common_config('enjit', 'apiurl')); return true; } @@ -56,16 +56,16 @@ class EnjitQueueHandler extends QueueHandler $profile = Profile::staticGet($notice->profile_id); - $this->log(LOG_INFO, "Posting Notice ".$notice->id." from ".$profile->nickname); + $this->log(LOG_INFO, "Posting Notice ".$notice->id." from ".$profile->nickname); - if ( ! $notice->is_local ) { - $this->log(LOG_INFO, "Skipping remote notice"); - return "skipped"; - } + if ( ! $notice->is_local ) { + $this->log(LOG_INFO, "Skipping remote notice"); + return "skipped"; + } - # - # Build an Atom message from the notice - # + # + # Build an Atom message from the notice + # $noticeurl = common_local_url('shownotice', array('notice' => $notice->id)); $msg = $profile->nickname . ': ' . $notice->content; @@ -86,20 +86,36 @@ class EnjitQueueHandler extends QueueHandler $atom .= "".common_date_w3dtf($notice->modified)."\n"; $atom .= "\n"; - $url = common_config('enjit', 'apiurl') . "/submit/". common_config('enjit','apikey'); - $data = array( - 'msg' => $atom, - ); + $url = common_config('enjit', 'apiurl') . "/submit/". common_config('enjit','apikey'); + $data = "msg=$atom"; - # - # POST the message to $config['enjit']['apiurl'] - # - $request = new HTTPClient($url, HTTP_Request2::METHOD_POST); - $request->addPostFields($data); - $response = $request->send(); - - // @fixme handle_notice() is supposed to return true/false. Somethin' funky? - return $response->getStatus(); + # + # POST the message to $config['enjit']['apiurl'] + # + $ch = curl_init(); + + curl_setopt($ch, CURLOPT_URL, $url); + + curl_setopt($ch, CURLOPT_HEADER, 1); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($ch, CURLOPT_POST, 1) ; + curl_setopt($ch, CURLOPT_POSTFIELDS, $data); + + # SSL and Debugging options + # + # curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); + # curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); + # curl_setopt($ch, CURLOPT_VERBOSE, 1); + + $result = curl_exec($ch); + + $code = curl_getinfo($ch, CURLINFO_HTTP_CODE ); + + $this->log(LOG_INFO, "Response Code: $code"); + + curl_close($ch); + + return $code; } } From 3c4ac05cde5a97594d3b0fa7e3f5dbbaf45e4c64 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 2 Nov 2009 11:23:31 -0500 Subject: [PATCH 19/92] remove
stuff from profile list --- lib/profilelist.php | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/lib/profilelist.php b/lib/profilelist.php index 5cc211e362..5f536e0f4d 100644 --- a/lib/profilelist.php +++ b/lib/profilelist.php @@ -200,53 +200,37 @@ class ProfileListItem extends Widget function showFullName() { if (!empty($this->profile->fullname)) { - $this->out->elementStart('dl', 'entity_fn'); - $this->out->element('dt', null, 'Full name'); - $this->out->elementStart('dd'); $this->out->elementStart('span', 'fn'); $this->out->raw($this->highlight($this->profile->fullname)); $this->out->elementEnd('span'); - $this->out->elementEnd('dd'); - $this->out->elementEnd('dl'); } } function showLocation() { if (!empty($this->profile->location)) { - $this->out->elementStart('dl', 'entity_location'); - $this->out->element('dt', null, _('Location')); - $this->out->elementStart('dd', 'label'); + $this->out->elementStart('span', 'location'); $this->out->raw($this->highlight($this->profile->location)); - $this->out->elementEnd('dd'); - $this->out->elementEnd('dl'); + $this->out->elementEnd('span'); } } function showHomepage() { if (!empty($this->profile->homepage)) { - $this->out->elementStart('dl', 'entity_url'); - $this->out->element('dt', null, _('URL')); - $this->out->elementStart('dd'); $this->out->elementStart('a', array('href' => $this->profile->homepage, 'class' => 'url')); $this->out->raw($this->highlight($this->profile->homepage)); $this->out->elementEnd('a'); - $this->out->elementEnd('dd'); - $this->out->elementEnd('dl'); } } function showBio() { if (!empty($this->profile->bio)) { - $this->out->elementStart('dl', 'entity_note'); - $this->out->element('dt', null, _('Note')); - $this->out->elementStart('dd', 'note'); + $this->out->elementStart('p', 'note'); $this->out->raw($this->highlight($this->profile->bio)); - $this->out->elementEnd('dd'); - $this->out->elementEnd('dl'); + $this->out->elementEnd('p'); } } From 8d35831b54d6ff8f732f2e91c4153b90c3ed7a4f Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 16:42:50 +0000 Subject: [PATCH 20/92] Fixed object string name --- js/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/util.js b/js/util.js index b572846b7c..bd0d6b07ba 100644 --- a/js/util.js +++ b/js/util.js @@ -97,11 +97,11 @@ var SN = { // StatusNet SubmitOnReturn: function(event, el) { if (event.keyCode == 13 || event.keyCode == 10) { + $('#'+el[0].id+' #'+SN.C.S.NoticeDataText).blur(); + $('body').focus(); el.submit(); event.preventDefault(); event.stopPropagation(); - $('#'+el[0].id+' #'+SN.U.NoticeDataText).blur(); - $('body').focus(); return false; } return true; From c3cac436e2e5f142010a16a1271253bcda0ebb30 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 16:55:47 +0000 Subject: [PATCH 21/92] Fixed object string name and order for submitonreturn actions --- js/util.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/util.js b/js/util.js index bd0d6b07ba..6ce1084b74 100644 --- a/js/util.js +++ b/js/util.js @@ -97,11 +97,11 @@ var SN = { // StatusNet SubmitOnReturn: function(event, el) { if (event.keyCode == 13 || event.keyCode == 10) { - $('#'+el[0].id+' #'+SN.C.S.NoticeDataText).blur(); - $('body').focus(); el.submit(); event.preventDefault(); event.stopPropagation(); + $('#'+el[0].id+' #'+SN.C.S.NoticeDataText).blur(); + $('body').focus(); return false; } return true; @@ -213,7 +213,7 @@ var SN = { // StatusNet } else { $('#'+form_id+' #'+SN.C.S.NoticeDataText).val(''); - SN.U.NoticeFormEnhancements($('#'+SN.C.S.FormNotice)); + SN.U.FormNoticeEnhancements($('#'+SN.C.S.FormNotice)); } } } From b579a306c7449cc5cd3a6c2a8f729c1e828ee0c3 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 17:06:52 +0000 Subject: [PATCH 22/92] Ran through JSLint --- js/util.js | 68 +++++++++++++++++++++++++++++------------------------- 1 file changed, 37 insertions(+), 31 deletions(-) diff --git a/js/util.js b/js/util.js index 6ce1084b74..051efb6b91 100644 --- a/js/util.js +++ b/js/util.js @@ -24,29 +24,6 @@ * @link http://status.net/ */ -$(document).ready(function(){ - if ($('body.user_in').length > 0) { - $('.'+SN.C.S.FormNotice).each(function() { SN.U.FormNoticeEnhancements($(this)); }); - - $('.form_user_subscribe').each(function() { SN.U.FormXHR($(this)); }); - $('.form_user_unsubscribe').each(function() { SN.U.FormXHR($(this)); }); - $('.form_favor').each(function() { SN.U.FormXHR($(this)); }); - $('.form_disfavor').each(function() { SN.U.FormXHR($(this)); }); - $('.form_group_join').each(function() { SN.U.FormXHR($(this)); }); - $('.form_group_leave').each(function() { SN.U.FormXHR($(this)); }); - $('.form_user_nudge').each(function() { SN.U.FormXHR($(this)); }); - - SN.U.NoticeReply(); - - SN.U.NoticeDataAttach(); - - SN.U.NewDirectMessage(); - } - - SN.U.NoticeAttachments(); -}); - - var SN = { // StatusNet C: { // Config I: { // Init @@ -122,7 +99,7 @@ var SN = { // StatusNet var counter = $('#'+form_id+' #'+SN.C.S.NoticeTextCount); if (remaining.toString() != counter.text()) { - if (!SN.C.I.CounterBlackout || remaining == 0) { + if (!SN.C.I.CounterBlackout || remaining === 0) { if (counter.text() != String(remaining)) { counter.text(remaining); } @@ -219,8 +196,9 @@ var SN = { // StatusNet } }, success: function(data, textStatus) { + var result; if ($('#'+SN.C.S.Error, data).length > 0) { - var result = document._importNode($('p', data)[0], true); + result = document._importNode($('p', data)[0], true); alert(result.textContent || result.innerHTML); } else { @@ -229,12 +207,12 @@ var SN = { // StatusNet } if ($('#'+SN.C.S.CommandResult, data).length > 0) { - var result = document._importNode($('p', data)[0], true); + result = document._importNode($('p', data)[0], true); alert(result.textContent || result.innerHTML); } else { notice = document._importNode($('li', data)[0], true); - if ($('#'+notice.id).length == 0) { + if ($('#'+notice.id).length === 0) { var notice_irt_value = $('#'+SN.C.S.NoticeInReplyTo).val(); var notice_irt = '#notices_primary #notice-'+notice_irt_value; if($('body')[0].id == 'conversation') { @@ -330,7 +308,7 @@ var SN = { // StatusNet $("a.thumbnail").children('img').hide(); anchor.closest(".entry-title").addClass('ov'); - if (anchor.children('img').length == 0) { + if (anchor.children('img').length === 0) { t = setTimeout(function() { $.get($('address .url')[0].href+'attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) { anchor.append(data); @@ -354,7 +332,12 @@ var SN = { // StatusNet NDA.change(function() { S = '
'+$(this).val()+'
'; NDAS = $('#'+SN.C.S.NoticeDataAttachSelected); - (NDAS.length > 0) ? NDAS.replaceWith(S) : $('#'+SN.C.S.FormNotice).append(S); + if (NDAS.length > 0) { + NDAS.replaceWith(S); + } + else { + $('#'+SN.C.S.FormNotice).append(S); + } $('#'+SN.C.S.NoticeDataAttachSelected+' button').click(function(){ $('#'+SN.C.S.NoticeDataAttachSelected).remove(); NDA.val(''); @@ -367,7 +350,7 @@ var SN = { // StatusNet NDM.attr({'href':NDM.attr('href')+'&ajax=1'}); NDM.click(function() { var NDMF = $('.entity_send-a-message form'); - if (NDMF.length == 0) { + if (NDMF.length === 0) { $.get(NDM.attr('href'), null, function(data) { $('.entity_send-a-message').append(document._importNode($('form', data)[0], true)); NDMF = $('.entity_send-a-message .form_notice'); @@ -387,4 +370,27 @@ var SN = { // StatusNet }); } } -} +}; + +$(document).ready(function(){ + if ($('body.user_in').length > 0) { + $('.'+SN.C.S.FormNotice).each(function() { SN.U.FormNoticeEnhancements($(this)); }); + + $('.form_user_subscribe').each(function() { SN.U.FormXHR($(this)); }); + $('.form_user_unsubscribe').each(function() { SN.U.FormXHR($(this)); }); + $('.form_favor').each(function() { SN.U.FormXHR($(this)); }); + $('.form_disfavor').each(function() { SN.U.FormXHR($(this)); }); + $('.form_group_join').each(function() { SN.U.FormXHR($(this)); }); + $('.form_group_leave').each(function() { SN.U.FormXHR($(this)); }); + $('.form_user_nudge').each(function() { SN.U.FormXHR($(this)); }); + + SN.U.NoticeReply(); + + SN.U.NoticeDataAttach(); + + SN.U.NewDirectMessage(); + } + + SN.U.NoticeAttachments(); +}); + From 73b9e531bf7cab8ba6642f9cb85e4b37b48706d7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 2 Nov 2009 09:08:26 -0800 Subject: [PATCH 23/92] Detect "no file" upload error and, for now at least, ignore it gracefully. This was triggering on non-AJAX form submissions for new notices, preventing them from being posted when they contained no attachments. --- lib/imagefile.php | 5 +++++ lib/mediafile.php | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/lib/imagefile.php b/lib/imagefile.php index 88f4614814..cd2f87e6bd 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -79,7 +79,12 @@ class ImageFile @unlink($_FILES[$param]['tmp_name']); throw new Exception(_('Partial upload.')); return; + case UPLOAD_ERR_NO_FILE: + // No file; probably just a non-AJAX submission. + return; default: + common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " . + $_FILES[$param]['error']); throw new Exception(_('System error uploading file.')); return; } diff --git a/lib/mediafile.php b/lib/mediafile.php index d4d184dd0f..29d752f0c6 100644 --- a/lib/mediafile.php +++ b/lib/mediafile.php @@ -152,6 +152,9 @@ class MediaFile throw new ClientException(_('The uploaded file was only' . ' partially uploaded.')); return; + case UPLOAD_ERR_NO_FILE: + // No file; probably just a non-AJAX submission. + return; case UPLOAD_ERR_NO_TMP_DIR: throw new ClientException(_('Missing a temporary folder.')); return; @@ -162,6 +165,8 @@ class MediaFile throw new ClientException(_('File upload stopped by extension.')); return; default: + common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " . + $_FILES[$param]['error']); throw new ClientException(_('System error uploading file.')); return; } From 5581143bee602dbd5417f532f2b483e58d0a4269 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 28 Oct 2009 15:29:20 -0400 Subject: [PATCH 24/92] Rebuilt HTTPClient class as an extension of PEAR HTTP_Request2 package, adding redirect handling and convenience functions. Caching support will be added in future work after unit tests have been added. * extlib: add PEAR HTTP_Request2 0.4.1 alpha * extlib: update PEAR Net_URL2 to 0.3.0 beta for HTTP_Request2 compatibility * moved direct usage of CURL and file_get_contents to HTTPClient class, excluding external-sourced libraries * adapted GeonamesPlugin for new HTTPResponse interface Note some plugins haven't been fully tested yet. --- classes/File_redirection.php | 66 +- extlib/HTTP/Request2.php | 844 +++++++++++++++ extlib/HTTP/Request2/Adapter.php | 152 +++ extlib/HTTP/Request2/Adapter/Curl.php | 383 +++++++ extlib/HTTP/Request2/Adapter/Mock.php | 171 +++ extlib/HTTP/Request2/Adapter/Socket.php | 971 ++++++++++++++++++ extlib/HTTP/Request2/Exception.php | 62 ++ extlib/HTTP/Request2/MultipartBody.php | 274 +++++ extlib/HTTP/Request2/Observer/Log.php | 215 ++++ extlib/HTTP/Request2/Response.php | 549 ++++++++++ extlib/Net/URL2.php | 471 +++++---- install.php | 7 + lib/Shorturl_api.php | 24 +- lib/curlclient.php | 179 ---- lib/default.php | 2 - lib/httpclient.php | 237 ++++- lib/oauthclient.php | 63 +- lib/ping.php | 12 +- lib/snapshot.php | 21 +- plugins/BlogspamNetPlugin.php | 15 +- plugins/GeonamesPlugin.php | 16 +- plugins/LilUrl/LilUrlPlugin.php | 5 +- plugins/LinkbackPlugin.php | 21 +- plugins/SimpleUrl/SimpleUrlPlugin.php | 11 +- .../daemons/synctwitterfriends.php | 4 +- .../daemons/twitterstatusfetcher.php | 43 +- plugins/TwitterBridge/twitter.php | 2 +- .../TwitterBridge/twitterauthorization.php | 2 +- .../TwitterBridge/twitterbasicauthclient.php | 68 +- plugins/WikiHashtagsPlugin.php | 15 +- scripts/enjitqueuehandler.php | 58 +- 31 files changed, 4285 insertions(+), 678 deletions(-) create mode 100644 extlib/HTTP/Request2.php create mode 100644 extlib/HTTP/Request2/Adapter.php create mode 100644 extlib/HTTP/Request2/Adapter/Curl.php create mode 100644 extlib/HTTP/Request2/Adapter/Mock.php create mode 100644 extlib/HTTP/Request2/Adapter/Socket.php create mode 100644 extlib/HTTP/Request2/Exception.php create mode 100644 extlib/HTTP/Request2/MultipartBody.php create mode 100644 extlib/HTTP/Request2/Observer/Log.php create mode 100644 extlib/HTTP/Request2/Response.php delete mode 100644 lib/curlclient.php diff --git a/classes/File_redirection.php b/classes/File_redirection.php index 79052bf7d3..08a6e8d8be 100644 --- a/classes/File_redirection.php +++ b/classes/File_redirection.php @@ -47,18 +47,15 @@ class File_redirection extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - function _commonCurl($url, $redirs) { - $curlh = curl_init(); - curl_setopt($curlh, CURLOPT_URL, $url); - curl_setopt($curlh, CURLOPT_AUTOREFERER, true); // # setup referer header when folowing redirects - curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 10); // # seconds to wait - curl_setopt($curlh, CURLOPT_MAXREDIRS, $redirs); // # max number of http redirections to follow - curl_setopt($curlh, CURLOPT_USERAGENT, USER_AGENT); - curl_setopt($curlh, CURLOPT_FOLLOWLOCATION, true); // Follow redirects - curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true); - curl_setopt($curlh, CURLOPT_FILETIME, true); - curl_setopt($curlh, CURLOPT_HEADER, true); // Include header in output - return $curlh; + static function _commonHttp($url, $redirs) { + $request = new HTTPClient($url); + $request->setConfig(array( + 'connect_timeout' => 10, // # seconds to wait + 'max_redirs' => $redirs, // # max number of http redirections to follow + 'follow_redirects' => true, // Follow redirects + 'store_body' => false, // We won't need body content here. + )); + return $request; } function _redirectWhere_imp($short_url, $redirs = 10, $protected = false) { @@ -82,32 +79,39 @@ class File_redirection extends Memcached_DataObject if(strpos($short_url,'://') === false){ return $short_url; } - $curlh = File_redirection::_commonCurl($short_url, $redirs); - // Don't include body in output - curl_setopt($curlh, CURLOPT_NOBODY, true); - curl_exec($curlh); - $info = curl_getinfo($curlh); - curl_close($curlh); + try { + $request = self::_commonHttp($short_url, $redirs); + // Don't include body in output + $request->setMethod(HTTP_Request2::METHOD_HEAD); + $response = $request->send(); - if (405 == $info['http_code']) { - $curlh = File_redirection::_commonCurl($short_url, $redirs); - curl_exec($curlh); - $info = curl_getinfo($curlh); - curl_close($curlh); + if (405 == $response->getStatus()) { + // Server doesn't support HEAD method? Can this really happen? + // We'll try again as a GET and ignore the response data. + $request = self::_commonHttp($short_url, $redirs); + $response = $request->send(); + } + } catch (Exception $e) { + // Invalid URL or failure to reach server + return $short_url; } - if (!empty($info['redirect_count']) && File::isProtected($info['url'])) { - return File_redirection::_redirectWhere_imp($short_url, $info['redirect_count'] - 1, true); + if ($response->getRedirectCount() && File::isProtected($response->getUrl())) { + // Bump back up the redirect chain until we find a non-protected URL + return self::_redirectWhere_imp($short_url, $response->getRedirectCount() - 1, true); } - $ret = array('code' => $info['http_code'] - , 'redirects' => $info['redirect_count'] - , 'url' => $info['url']); + $ret = array('code' => $response->getStatus() + , 'redirects' => $response->getRedirectCount() + , 'url' => $response->getUrl()); - if (!empty($info['content_type'])) $ret['type'] = $info['content_type']; + $type = $response->getHeader('Content-Type'); + if ($type) $ret['type'] = $type; if ($protected) $ret['protected'] = true; - if (!empty($info['download_content_length'])) $ret['size'] = $info['download_content_length']; - if (isset($info['filetime']) && ($info['filetime'] > 0)) $ret['time'] = $info['filetime']; + $size = $response->getHeader('Content-Length'); // @fixme bytes? + if ($size) $ret['size'] = $size; + $time = $response->getHeader('Last-Modified'); + if ($time) $ret['time'] = strtotime($time); return $ret; } diff --git a/extlib/HTTP/Request2.php b/extlib/HTTP/Request2.php new file mode 100644 index 0000000000..e06bb86bca --- /dev/null +++ b/extlib/HTTP/Request2.php @@ -0,0 +1,844 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Request2.php 278226 2009-04-03 21:32:48Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * A class representing an URL as per RFC 3986. + */ +require_once 'Net/URL2.php'; + +/** + * Exception class for HTTP_Request2 package + */ +require_once 'HTTP/Request2/Exception.php'; + +/** + * Class representing a HTTP request + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + * @link http://tools.ietf.org/html/rfc2616#section-5 + */ +class HTTP_Request2 implements SplSubject +{ + /**#@+ + * Constants for HTTP request methods + * + * @link http://tools.ietf.org/html/rfc2616#section-5.1.1 + */ + const METHOD_OPTIONS = 'OPTIONS'; + const METHOD_GET = 'GET'; + const METHOD_HEAD = 'HEAD'; + const METHOD_POST = 'POST'; + const METHOD_PUT = 'PUT'; + const METHOD_DELETE = 'DELETE'; + const METHOD_TRACE = 'TRACE'; + const METHOD_CONNECT = 'CONNECT'; + /**#@-*/ + + /**#@+ + * Constants for HTTP authentication schemes + * + * @link http://tools.ietf.org/html/rfc2617 + */ + const AUTH_BASIC = 'basic'; + const AUTH_DIGEST = 'digest'; + /**#@-*/ + + /** + * Regular expression used to check for invalid symbols in RFC 2616 tokens + * @link http://pear.php.net/bugs/bug.php?id=15630 + */ + const REGEXP_INVALID_TOKEN = '![\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]!'; + + /** + * Regular expression used to check for invalid symbols in cookie strings + * @link http://pear.php.net/bugs/bug.php?id=15630 + * @link http://cgi.netscape.com/newsref/std/cookie_spec.html + */ + const REGEXP_INVALID_COOKIE = '/[\s,;]/'; + + /** + * Fileinfo magic database resource + * @var resource + * @see detectMimeType() + */ + private static $_fileinfoDb; + + /** + * Observers attached to the request (instances of SplObserver) + * @var array + */ + protected $observers = array(); + + /** + * Request URL + * @var Net_URL2 + */ + protected $url; + + /** + * Request method + * @var string + */ + protected $method = self::METHOD_GET; + + /** + * Authentication data + * @var array + * @see getAuth() + */ + protected $auth; + + /** + * Request headers + * @var array + */ + protected $headers = array(); + + /** + * Configuration parameters + * @var array + * @see setConfig() + */ + protected $config = array( + 'adapter' => 'HTTP_Request2_Adapter_Socket', + 'connect_timeout' => 10, + 'timeout' => 0, + 'use_brackets' => true, + 'protocol_version' => '1.1', + 'buffer_size' => 16384, + 'store_body' => true, + + 'proxy_host' => '', + 'proxy_port' => '', + 'proxy_user' => '', + 'proxy_password' => '', + 'proxy_auth_scheme' => self::AUTH_BASIC, + + 'ssl_verify_peer' => true, + 'ssl_verify_host' => true, + 'ssl_cafile' => null, + 'ssl_capath' => null, + 'ssl_local_cert' => null, + 'ssl_passphrase' => null, + + 'digest_compat_ie' => false + ); + + /** + * Last event in request / response handling, intended for observers + * @var array + * @see getLastEvent() + */ + protected $lastEvent = array( + 'name' => 'start', + 'data' => null + ); + + /** + * Request body + * @var string|resource + * @see setBody() + */ + protected $body = ''; + + /** + * Array of POST parameters + * @var array + */ + protected $postParams = array(); + + /** + * Array of file uploads (for multipart/form-data POST requests) + * @var array + */ + protected $uploads = array(); + + /** + * Adapter used to perform actual HTTP request + * @var HTTP_Request2_Adapter + */ + protected $adapter; + + + /** + * Constructor. Can set request URL, method and configuration array. + * + * Also sets a default value for User-Agent header. + * + * @param string|Net_Url2 Request URL + * @param string Request method + * @param array Configuration for this Request instance + */ + public function __construct($url = null, $method = self::METHOD_GET, array $config = array()) + { + if (!empty($url)) { + $this->setUrl($url); + } + if (!empty($method)) { + $this->setMethod($method); + } + $this->setConfig($config); + $this->setHeader('user-agent', 'HTTP_Request2/0.4.1 ' . + '(http://pear.php.net/package/http_request2) ' . + 'PHP/' . phpversion()); + } + + /** + * Sets the URL for this request + * + * If the URL has userinfo part (username & password) these will be removed + * and converted to auth data. If the URL does not have a path component, + * that will be set to '/'. + * + * @param string|Net_URL2 Request URL + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setUrl($url) + { + if (is_string($url)) { + $url = new Net_URL2($url); + } + if (!$url instanceof Net_URL2) { + throw new HTTP_Request2_Exception('Parameter is not a valid HTTP URL'); + } + // URL contains username / password? + if ($url->getUserinfo()) { + $username = $url->getUser(); + $password = $url->getPassword(); + $this->setAuth(rawurldecode($username), $password? rawurldecode($password): ''); + $url->setUserinfo(''); + } + if ('' == $url->getPath()) { + $url->setPath('/'); + } + $this->url = $url; + + return $this; + } + + /** + * Returns the request URL + * + * @return Net_URL2 + */ + public function getUrl() + { + return $this->url; + } + + /** + * Sets the request method + * + * @param string + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception if the method name is invalid + */ + public function setMethod($method) + { + // Method name should be a token: http://tools.ietf.org/html/rfc2616#section-5.1.1 + if (preg_match(self::REGEXP_INVALID_TOKEN, $method)) { + throw new HTTP_Request2_Exception("Invalid request method '{$method}'"); + } + $this->method = $method; + + return $this; + } + + /** + * Returns the request method + * + * @return string + */ + public function getMethod() + { + return $this->method; + } + + /** + * Sets the configuration parameter(s) + * + * The following parameters are available: + *
    + *
  • 'adapter' - adapter to use (string)
  • + *
  • 'connect_timeout' - Connection timeout in seconds (integer)
  • + *
  • 'timeout' - Total number of seconds a request can take. + * Use 0 for no limit, should be greater than + * 'connect_timeout' if set (integer)
  • + *
  • 'use_brackets' - Whether to append [] to array variable names (bool)
  • + *
  • 'protocol_version' - HTTP Version to use, '1.0' or '1.1' (string)
  • + *
  • 'buffer_size' - Buffer size to use for reading and writing (int)
  • + *
  • 'store_body' - Whether to store response body in response object. + * Set to false if receiving a huge response and + * using an Observer to save it (boolean)
  • + *
  • 'proxy_host' - Proxy server host (string)
  • + *
  • 'proxy_port' - Proxy server port (integer)
  • + *
  • 'proxy_user' - Proxy auth username (string)
  • + *
  • 'proxy_password' - Proxy auth password (string)
  • + *
  • 'proxy_auth_scheme' - Proxy auth scheme, one of HTTP_Request2::AUTH_* constants (string)
  • + *
  • 'ssl_verify_peer' - Whether to verify peer's SSL certificate (bool)
  • + *
  • 'ssl_verify_host' - Whether to check that Common Name in SSL + * certificate matches host name (bool)
  • + *
  • 'ssl_cafile' - Cerificate Authority file to verify the peer + * with (use with 'ssl_verify_peer') (string)
  • + *
  • 'ssl_capath' - Directory holding multiple Certificate + * Authority files (string)
  • + *
  • 'ssl_local_cert' - Name of a file containing local cerificate (string)
  • + *
  • 'ssl_passphrase' - Passphrase with which local certificate + * was encoded (string)
  • + *
  • 'digest_compat_ie' - Whether to imitate behaviour of MSIE 5 and 6 + * in using URL without query string in digest + * authentication (boolean)
  • + *
+ * + * @param string|array configuration parameter name or array + * ('parameter name' => 'parameter value') + * @param mixed parameter value if $nameOrConfig is not an array + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception If the parameter is unknown + */ + public function setConfig($nameOrConfig, $value = null) + { + if (is_array($nameOrConfig)) { + foreach ($nameOrConfig as $name => $value) { + $this->setConfig($name, $value); + } + + } else { + if (!array_key_exists($nameOrConfig, $this->config)) { + throw new HTTP_Request2_Exception( + "Unknown configuration parameter '{$nameOrConfig}'" + ); + } + $this->config[$nameOrConfig] = $value; + } + + return $this; + } + + /** + * Returns the value(s) of the configuration parameter(s) + * + * @param string parameter name + * @return mixed value of $name parameter, array of all configuration + * parameters if $name is not given + * @throws HTTP_Request2_Exception If the parameter is unknown + */ + public function getConfig($name = null) + { + if (null === $name) { + return $this->config; + } elseif (!array_key_exists($name, $this->config)) { + throw new HTTP_Request2_Exception( + "Unknown configuration parameter '{$name}'" + ); + } + return $this->config[$name]; + } + + /** + * Sets the autentification data + * + * @param string user name + * @param string password + * @param string authentication scheme + * @return HTTP_Request2 + */ + public function setAuth($user, $password = '', $scheme = self::AUTH_BASIC) + { + if (empty($user)) { + $this->auth = null; + } else { + $this->auth = array( + 'user' => (string)$user, + 'password' => (string)$password, + 'scheme' => $scheme + ); + } + + return $this; + } + + /** + * Returns the authentication data + * + * The array has the keys 'user', 'password' and 'scheme', where 'scheme' + * is one of the HTTP_Request2::AUTH_* constants. + * + * @return array + */ + public function getAuth() + { + return $this->auth; + } + + /** + * Sets request header(s) + * + * The first parameter may be either a full header string 'header: value' or + * header name. In the former case $value parameter is ignored, in the latter + * the header's value will either be set to $value or the header will be + * removed if $value is null. The first parameter can also be an array of + * headers, in that case method will be called recursively. + * + * Note that headers are treated case insensitively as per RFC 2616. + * + * + * $req->setHeader('Foo: Bar'); // sets the value of 'Foo' header to 'Bar' + * $req->setHeader('FoO', 'Baz'); // sets the value of 'Foo' header to 'Baz' + * $req->setHeader(array('foo' => 'Quux')); // sets the value of 'Foo' header to 'Quux' + * $req->setHeader('FOO'); // removes 'Foo' header from request + * + * + * @param string|array header name, header string ('Header: value') + * or an array of headers + * @param string|null header value, header will be removed if null + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setHeader($name, $value = null) + { + if (is_array($name)) { + foreach ($name as $k => $v) { + if (is_string($k)) { + $this->setHeader($k, $v); + } else { + $this->setHeader($v); + } + } + } else { + if (null === $value && strpos($name, ':')) { + list($name, $value) = array_map('trim', explode(':', $name, 2)); + } + // Header name should be a token: http://tools.ietf.org/html/rfc2616#section-4.2 + if (preg_match(self::REGEXP_INVALID_TOKEN, $name)) { + throw new HTTP_Request2_Exception("Invalid header name '{$name}'"); + } + // Header names are case insensitive anyway + $name = strtolower($name); + if (null === $value) { + unset($this->headers[$name]); + } else { + $this->headers[$name] = $value; + } + } + + return $this; + } + + /** + * Returns the request headers + * + * The array is of the form ('header name' => 'header value'), header names + * are lowercased + * + * @return array + */ + public function getHeaders() + { + return $this->headers; + } + + /** + * Appends a cookie to "Cookie:" header + * + * @param string cookie name + * @param string cookie value + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function addCookie($name, $value) + { + $cookie = $name . '=' . $value; + if (preg_match(self::REGEXP_INVALID_COOKIE, $cookie)) { + throw new HTTP_Request2_Exception("Invalid cookie: '{$cookie}'"); + } + $cookies = empty($this->headers['cookie'])? '': $this->headers['cookie'] . '; '; + $this->setHeader('cookie', $cookies . $cookie); + + return $this; + } + + /** + * Sets the request body + * + * @param string Either a string with the body or filename containing body + * @param bool Whether first parameter is a filename + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setBody($body, $isFilename = false) + { + if (!$isFilename) { + $this->body = (string)$body; + } else { + if (!($fp = @fopen($body, 'rb'))) { + throw new HTTP_Request2_Exception("Cannot open file {$body}"); + } + $this->body = $fp; + if (empty($this->headers['content-type'])) { + $this->setHeader('content-type', self::detectMimeType($body)); + } + } + + return $this; + } + + /** + * Returns the request body + * + * @return string|resource|HTTP_Request2_MultipartBody + */ + public function getBody() + { + if (self::METHOD_POST == $this->method && + (!empty($this->postParams) || !empty($this->uploads)) + ) { + if ('application/x-www-form-urlencoded' == $this->headers['content-type']) { + $body = http_build_query($this->postParams, '', '&'); + if (!$this->getConfig('use_brackets')) { + $body = preg_replace('/%5B\d+%5D=/', '=', $body); + } + // support RFC 3986 by not encoding '~' symbol (request #15368) + return str_replace('%7E', '~', $body); + + } elseif ('multipart/form-data' == $this->headers['content-type']) { + require_once 'HTTP/Request2/MultipartBody.php'; + return new HTTP_Request2_MultipartBody( + $this->postParams, $this->uploads, $this->getConfig('use_brackets') + ); + } + } + return $this->body; + } + + /** + * Adds a file to form-based file upload + * + * Used to emulate file upload via a HTML form. The method also sets + * Content-Type of HTTP request to 'multipart/form-data'. + * + * If you just want to send the contents of a file as the body of HTTP + * request you should use setBody() method. + * + * @param string name of file-upload field + * @param mixed full name of local file + * @param string filename to send in the request + * @param string content-type of file being uploaded + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function addUpload($fieldName, $filename, $sendFilename = null, + $contentType = null) + { + if (!is_array($filename)) { + if (!($fp = @fopen($filename, 'rb'))) { + throw new HTTP_Request2_Exception("Cannot open file {$filename}"); + } + $this->uploads[$fieldName] = array( + 'fp' => $fp, + 'filename' => empty($sendFilename)? basename($filename): $sendFilename, + 'size' => filesize($filename), + 'type' => empty($contentType)? self::detectMimeType($filename): $contentType + ); + } else { + $fps = $names = $sizes = $types = array(); + foreach ($filename as $f) { + if (!is_array($f)) { + $f = array($f); + } + if (!($fp = @fopen($f[0], 'rb'))) { + throw new HTTP_Request2_Exception("Cannot open file {$f[0]}"); + } + $fps[] = $fp; + $names[] = empty($f[1])? basename($f[0]): $f[1]; + $sizes[] = filesize($f[0]); + $types[] = empty($f[2])? self::detectMimeType($f[0]): $f[2]; + } + $this->uploads[$fieldName] = array( + 'fp' => $fps, 'filename' => $names, 'size' => $sizes, 'type' => $types + ); + } + if (empty($this->headers['content-type']) || + 'application/x-www-form-urlencoded' == $this->headers['content-type'] + ) { + $this->setHeader('content-type', 'multipart/form-data'); + } + + return $this; + } + + /** + * Adds POST parameter(s) to the request. + * + * @param string|array parameter name or array ('name' => 'value') + * @param mixed parameter value (can be an array) + * @return HTTP_Request2 + */ + public function addPostParameter($name, $value = null) + { + if (!is_array($name)) { + $this->postParams[$name] = $value; + } else { + foreach ($name as $k => $v) { + $this->addPostParameter($k, $v); + } + } + if (empty($this->headers['content-type'])) { + $this->setHeader('content-type', 'application/x-www-form-urlencoded'); + } + + return $this; + } + + /** + * Attaches a new observer + * + * @param SplObserver + */ + public function attach(SplObserver $observer) + { + foreach ($this->observers as $attached) { + if ($attached === $observer) { + return; + } + } + $this->observers[] = $observer; + } + + /** + * Detaches an existing observer + * + * @param SplObserver + */ + public function detach(SplObserver $observer) + { + foreach ($this->observers as $key => $attached) { + if ($attached === $observer) { + unset($this->observers[$key]); + return; + } + } + } + + /** + * Notifies all observers + */ + public function notify() + { + foreach ($this->observers as $observer) { + $observer->update($this); + } + } + + /** + * Sets the last event + * + * Adapters should use this method to set the current state of the request + * and notify the observers. + * + * @param string event name + * @param mixed event data + */ + public function setLastEvent($name, $data = null) + { + $this->lastEvent = array( + 'name' => $name, + 'data' => $data + ); + $this->notify(); + } + + /** + * Returns the last event + * + * Observers should use this method to access the last change in request. + * The following event names are possible: + *
    + *
  • 'connect' - after connection to remote server, + * data is the destination (string)
  • + *
  • 'disconnect' - after disconnection from server
  • + *
  • 'sentHeaders' - after sending the request headers, + * data is the headers sent (string)
  • + *
  • 'sentBodyPart' - after sending a part of the request body, + * data is the length of that part (int)
  • + *
  • 'receivedHeaders' - after receiving the response headers, + * data is HTTP_Request2_Response object
  • + *
  • 'receivedBodyPart' - after receiving a part of the response + * body, data is that part (string)
  • + *
  • 'receivedEncodedBodyPart' - as 'receivedBodyPart', but data is still + * encoded by Content-Encoding
  • + *
  • 'receivedBody' - after receiving the complete response + * body, data is HTTP_Request2_Response object
  • + *
+ * Different adapters may not send all the event types. Mock adapter does + * not send any events to the observers. + * + * @return array The array has two keys: 'name' and 'data' + */ + public function getLastEvent() + { + return $this->lastEvent; + } + + /** + * Sets the adapter used to actually perform the request + * + * You can pass either an instance of a class implementing HTTP_Request2_Adapter + * or a class name. The method will only try to include a file if the class + * name starts with HTTP_Request2_Adapter_, it will also try to prepend this + * prefix to the class name if it doesn't contain any underscores, so that + * + * $request->setAdapter('curl'); + * + * will work. + * + * @param string|HTTP_Request2_Adapter + * @return HTTP_Request2 + * @throws HTTP_Request2_Exception + */ + public function setAdapter($adapter) + { + if (is_string($adapter)) { + if (!class_exists($adapter, false)) { + if (false === strpos($adapter, '_')) { + $adapter = 'HTTP_Request2_Adapter_' . ucfirst($adapter); + } + if (preg_match('/^HTTP_Request2_Adapter_([a-zA-Z0-9]+)$/', $adapter)) { + include_once str_replace('_', DIRECTORY_SEPARATOR, $adapter) . '.php'; + } + if (!class_exists($adapter, false)) { + throw new HTTP_Request2_Exception("Class {$adapter} not found"); + } + } + $adapter = new $adapter; + } + if (!$adapter instanceof HTTP_Request2_Adapter) { + throw new HTTP_Request2_Exception('Parameter is not a HTTP request adapter'); + } + $this->adapter = $adapter; + + return $this; + } + + /** + * Sends the request and returns the response + * + * @throws HTTP_Request2_Exception + * @return HTTP_Request2_Response + */ + public function send() + { + // Sanity check for URL + if (!$this->url instanceof Net_URL2) { + throw new HTTP_Request2_Exception('No URL given'); + } elseif (!$this->url->isAbsolute()) { + throw new HTTP_Request2_Exception('Absolute URL required'); + } elseif (!in_array(strtolower($this->url->getScheme()), array('https', 'http'))) { + throw new HTTP_Request2_Exception('Not a HTTP URL'); + } + if (empty($this->adapter)) { + $this->setAdapter($this->getConfig('adapter')); + } + // magic_quotes_runtime may break file uploads and chunked response + // processing; see bug #4543 + if ($magicQuotes = ini_get('magic_quotes_runtime')) { + ini_set('magic_quotes_runtime', false); + } + // force using single byte encoding if mbstring extension overloads + // strlen() and substr(); see bug #1781, bug #10605 + if (extension_loaded('mbstring') && (2 & ini_get('mbstring.func_overload'))) { + $oldEncoding = mb_internal_encoding(); + mb_internal_encoding('iso-8859-1'); + } + + try { + $response = $this->adapter->sendRequest($this); + } catch (Exception $e) { + } + // cleanup in either case (poor man's "finally" clause) + if ($magicQuotes) { + ini_set('magic_quotes_runtime', true); + } + if (!empty($oldEncoding)) { + mb_internal_encoding($oldEncoding); + } + // rethrow the exception + if (!empty($e)) { + throw $e; + } + return $response; + } + + /** + * Tries to detect MIME type of a file + * + * The method will try to use fileinfo extension if it is available, + * deprecated mime_content_type() function in the other case. If neither + * works, default 'application/octet-stream' MIME type is returned + * + * @param string filename + * @return string file MIME type + */ + protected static function detectMimeType($filename) + { + // finfo extension from PECL available + if (function_exists('finfo_open')) { + if (!isset(self::$_fileinfoDb)) { + self::$_fileinfoDb = @finfo_open(FILEINFO_MIME); + } + if (self::$_fileinfoDb) { + $info = finfo_file(self::$_fileinfoDb, $filename); + } + } + // (deprecated) mime_content_type function available + if (empty($info) && function_exists('mime_content_type')) { + return mime_content_type($filename); + } + return empty($info)? 'application/octet-stream': $info; + } +} +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Adapter.php b/extlib/HTTP/Request2/Adapter.php new file mode 100644 index 0000000000..39b092b346 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter.php @@ -0,0 +1,152 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Adapter.php 274684 2009-01-26 23:07:27Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Class representing a HTTP response + */ +require_once 'HTTP/Request2/Response.php'; + +/** + * Base class for HTTP_Request2 adapters + * + * HTTP_Request2 class itself only defines methods for aggregating the request + * data, all actual work of sending the request to the remote server and + * receiving its response is performed by adapters. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +abstract class HTTP_Request2_Adapter +{ + /** + * A list of methods that MUST NOT have a request body, per RFC 2616 + * @var array + */ + protected static $bodyDisallowed = array('TRACE'); + + /** + * Methods having defined semantics for request body + * + * Content-Length header (indicating that the body follows, section 4.3 of + * RFC 2616) will be sent for these methods even if no body was added + * + * @var array + * @link http://pear.php.net/bugs/bug.php?id=12900 + * @link http://pear.php.net/bugs/bug.php?id=14740 + */ + protected static $bodyRequired = array('POST', 'PUT'); + + /** + * Request being sent + * @var HTTP_Request2 + */ + protected $request; + + /** + * Request body + * @var string|resource|HTTP_Request2_MultipartBody + * @see HTTP_Request2::getBody() + */ + protected $requestBody; + + /** + * Length of the request body + * @var integer + */ + protected $contentLength; + + /** + * Sends request to the remote server and returns its response + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + abstract public function sendRequest(HTTP_Request2 $request); + + /** + * Calculates length of the request body, adds proper headers + * + * @param array associative array of request headers, this method will + * add proper 'Content-Length' and 'Content-Type' headers + * to this array (or remove them if not needed) + */ + protected function calculateRequestLength(&$headers) + { + $this->requestBody = $this->request->getBody(); + + if (is_string($this->requestBody)) { + $this->contentLength = strlen($this->requestBody); + } elseif (is_resource($this->requestBody)) { + $stat = fstat($this->requestBody); + $this->contentLength = $stat['size']; + rewind($this->requestBody); + } else { + $this->contentLength = $this->requestBody->getLength(); + $headers['content-type'] = 'multipart/form-data; boundary=' . + $this->requestBody->getBoundary(); + $this->requestBody->rewind(); + } + + if (in_array($this->request->getMethod(), self::$bodyDisallowed) || + 0 == $this->contentLength + ) { + unset($headers['content-type']); + // No body: send a Content-Length header nonetheless (request #12900), + // but do that only for methods that require a body (bug #14740) + if (in_array($this->request->getMethod(), self::$bodyRequired)) { + $headers['content-length'] = 0; + } else { + unset($headers['content-length']); + } + } else { + if (empty($headers['content-type'])) { + $headers['content-type'] = 'application/x-www-form-urlencoded'; + } + $headers['content-length'] = $this->contentLength; + } + } +} +?> diff --git a/extlib/HTTP/Request2/Adapter/Curl.php b/extlib/HTTP/Request2/Adapter/Curl.php new file mode 100644 index 0000000000..4d4de0dcc7 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter/Curl.php @@ -0,0 +1,383 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Curl.php 278226 2009-04-03 21:32:48Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for HTTP_Request2 adapters + */ +require_once 'HTTP/Request2/Adapter.php'; + +/** + * Adapter for HTTP_Request2 wrapping around cURL extension + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +class HTTP_Request2_Adapter_Curl extends HTTP_Request2_Adapter +{ + /** + * Mapping of header names to cURL options + * @var array + */ + protected static $headerMap = array( + 'accept-encoding' => CURLOPT_ENCODING, + 'cookie' => CURLOPT_COOKIE, + 'referer' => CURLOPT_REFERER, + 'user-agent' => CURLOPT_USERAGENT + ); + + /** + * Mapping of SSL context options to cURL options + * @var array + */ + protected static $sslContextMap = array( + 'ssl_verify_peer' => CURLOPT_SSL_VERIFYPEER, + 'ssl_cafile' => CURLOPT_CAINFO, + 'ssl_capath' => CURLOPT_CAPATH, + 'ssl_local_cert' => CURLOPT_SSLCERT, + 'ssl_passphrase' => CURLOPT_SSLCERTPASSWD + ); + + /** + * Response being received + * @var HTTP_Request2_Response + */ + protected $response; + + /** + * Whether 'sentHeaders' event was sent to observers + * @var boolean + */ + protected $eventSentHeaders = false; + + /** + * Whether 'receivedHeaders' event was sent to observers + * @var boolean + */ + protected $eventReceivedHeaders = false; + + /** + * Position within request body + * @var integer + * @see callbackReadBody() + */ + protected $position = 0; + + /** + * Information about last transfer, as returned by curl_getinfo() + * @var array + */ + protected $lastInfo; + + /** + * Sends request to the remote server and returns its response + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public function sendRequest(HTTP_Request2 $request) + { + if (!extension_loaded('curl')) { + throw new HTTP_Request2_Exception('cURL extension not available'); + } + + $this->request = $request; + $this->response = null; + $this->position = 0; + $this->eventSentHeaders = false; + $this->eventReceivedHeaders = false; + + try { + if (false === curl_exec($ch = $this->createCurlHandle())) { + $errorMessage = 'Error sending request: #' . curl_errno($ch) . + ' ' . curl_error($ch); + } + } catch (Exception $e) { + } + $this->lastInfo = curl_getinfo($ch); + curl_close($ch); + + if (!empty($e)) { + throw $e; + } elseif (!empty($errorMessage)) { + throw new HTTP_Request2_Exception($errorMessage); + } + + if (0 < $this->lastInfo['size_download']) { + $this->request->setLastEvent('receivedBody', $this->response); + } + return $this->response; + } + + /** + * Returns information about last transfer + * + * @return array associative array as returned by curl_getinfo() + */ + public function getInfo() + { + return $this->lastInfo; + } + + /** + * Creates a new cURL handle and populates it with data from the request + * + * @return resource a cURL handle, as created by curl_init() + * @throws HTTP_Request2_Exception + */ + protected function createCurlHandle() + { + $ch = curl_init(); + + curl_setopt_array($ch, array( + // setup callbacks + CURLOPT_READFUNCTION => array($this, 'callbackReadBody'), + CURLOPT_HEADERFUNCTION => array($this, 'callbackWriteHeader'), + CURLOPT_WRITEFUNCTION => array($this, 'callbackWriteBody'), + // disallow redirects + CURLOPT_FOLLOWLOCATION => false, + // buffer size + CURLOPT_BUFFERSIZE => $this->request->getConfig('buffer_size'), + // connection timeout + CURLOPT_CONNECTTIMEOUT => $this->request->getConfig('connect_timeout'), + // save full outgoing headers, in case someone is interested + CURLINFO_HEADER_OUT => true, + // request url + CURLOPT_URL => $this->request->getUrl()->getUrl() + )); + + // request timeout + if ($timeout = $this->request->getConfig('timeout')) { + curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); + } + + // set HTTP version + switch ($this->request->getConfig('protocol_version')) { + case '1.0': + curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); + break; + case '1.1': + curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); + } + + // set request method + switch ($this->request->getMethod()) { + case HTTP_Request2::METHOD_GET: + curl_setopt($ch, CURLOPT_HTTPGET, true); + break; + case HTTP_Request2::METHOD_POST: + curl_setopt($ch, CURLOPT_POST, true); + break; + default: + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $this->request->getMethod()); + } + + // set proxy, if needed + if ($host = $this->request->getConfig('proxy_host')) { + if (!($port = $this->request->getConfig('proxy_port'))) { + throw new HTTP_Request2_Exception('Proxy port not provided'); + } + curl_setopt($ch, CURLOPT_PROXY, $host . ':' . $port); + if ($user = $this->request->getConfig('proxy_user')) { + curl_setopt($ch, CURLOPT_PROXYUSERPWD, $user . ':' . + $this->request->getConfig('proxy_password')); + switch ($this->request->getConfig('proxy_auth_scheme')) { + case HTTP_Request2::AUTH_BASIC: + curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_BASIC); + break; + case HTTP_Request2::AUTH_DIGEST: + curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_DIGEST); + } + } + } + + // set authentication data + if ($auth = $this->request->getAuth()) { + curl_setopt($ch, CURLOPT_USERPWD, $auth['user'] . ':' . $auth['password']); + switch ($auth['scheme']) { + case HTTP_Request2::AUTH_BASIC: + curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); + break; + case HTTP_Request2::AUTH_DIGEST: + curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST); + } + } + + // set SSL options + if (0 == strcasecmp($this->request->getUrl()->getScheme(), 'https')) { + foreach ($this->request->getConfig() as $name => $value) { + if ('ssl_verify_host' == $name && null !== $value) { + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, $value? 2: 0); + } elseif (isset(self::$sslContextMap[$name]) && null !== $value) { + curl_setopt($ch, self::$sslContextMap[$name], $value); + } + } + } + + $headers = $this->request->getHeaders(); + // make cURL automagically send proper header + if (!isset($headers['accept-encoding'])) { + $headers['accept-encoding'] = ''; + } + + // set headers having special cURL keys + foreach (self::$headerMap as $name => $option) { + if (isset($headers[$name])) { + curl_setopt($ch, $option, $headers[$name]); + unset($headers[$name]); + } + } + + $this->calculateRequestLength($headers); + + // set headers not having special keys + $headersFmt = array(); + foreach ($headers as $name => $value) { + $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); + $headersFmt[] = $canonicalName . ': ' . $value; + } + curl_setopt($ch, CURLOPT_HTTPHEADER, $headersFmt); + + return $ch; + } + + /** + * Callback function called by cURL for reading the request body + * + * @param resource cURL handle + * @param resource file descriptor (not used) + * @param integer maximum length of data to return + * @return string part of the request body, up to $length bytes + */ + protected function callbackReadBody($ch, $fd, $length) + { + if (!$this->eventSentHeaders) { + $this->request->setLastEvent( + 'sentHeaders', curl_getinfo($ch, CURLINFO_HEADER_OUT) + ); + $this->eventSentHeaders = true; + } + if (in_array($this->request->getMethod(), self::$bodyDisallowed) || + 0 == $this->contentLength || $this->position >= $this->contentLength + ) { + return ''; + } + if (is_string($this->requestBody)) { + $string = substr($this->requestBody, $this->position, $length); + } elseif (is_resource($this->requestBody)) { + $string = fread($this->requestBody, $length); + } else { + $string = $this->requestBody->read($length); + } + $this->request->setLastEvent('sentBodyPart', strlen($string)); + $this->position += strlen($string); + return $string; + } + + /** + * Callback function called by cURL for saving the response headers + * + * @param resource cURL handle + * @param string response header (with trailing CRLF) + * @return integer number of bytes saved + * @see HTTP_Request2_Response::parseHeaderLine() + */ + protected function callbackWriteHeader($ch, $string) + { + // we may receive a second set of headers if doing e.g. digest auth + if ($this->eventReceivedHeaders || !$this->eventSentHeaders) { + // don't bother with 100-Continue responses (bug #15785) + if (!$this->eventSentHeaders || + $this->response->getStatus() >= 200 + ) { + $this->request->setLastEvent( + 'sentHeaders', curl_getinfo($ch, CURLINFO_HEADER_OUT) + ); + } + $this->eventSentHeaders = true; + // we'll need a new response object + if ($this->eventReceivedHeaders) { + $this->eventReceivedHeaders = false; + $this->response = null; + } + } + if (empty($this->response)) { + $this->response = new HTTP_Request2_Response($string, false); + } else { + $this->response->parseHeaderLine($string); + if ('' == trim($string)) { + // don't bother with 100-Continue responses (bug #15785) + if (200 <= $this->response->getStatus()) { + $this->request->setLastEvent('receivedHeaders', $this->response); + } + $this->eventReceivedHeaders = true; + } + } + return strlen($string); + } + + /** + * Callback function called by cURL for saving the response body + * + * @param resource cURL handle (not used) + * @param string part of the response body + * @return integer number of bytes saved + * @see HTTP_Request2_Response::appendBody() + */ + protected function callbackWriteBody($ch, $string) + { + // cURL calls WRITEFUNCTION callback without calling HEADERFUNCTION if + // response doesn't start with proper HTTP status line (see bug #15716) + if (empty($this->response)) { + throw new HTTP_Request2_Exception("Malformed response: {$string}"); + } + if ($this->request->getConfig('store_body')) { + $this->response->appendBody($string); + } + $this->request->setLastEvent('receivedBodyPart', $string); + return strlen($string); + } +} +?> diff --git a/extlib/HTTP/Request2/Adapter/Mock.php b/extlib/HTTP/Request2/Adapter/Mock.php new file mode 100644 index 0000000000..89688003b2 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter/Mock.php @@ -0,0 +1,171 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Mock.php 274406 2009-01-23 18:01:57Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for HTTP_Request2 adapters + */ +require_once 'HTTP/Request2/Adapter.php'; + +/** + * Mock adapter intended for testing + * + * Can be used to test applications depending on HTTP_Request2 package without + * actually performing any HTTP requests. This adapter will return responses + * previously added via addResponse() + * + * $mock = new HTTP_Request2_Adapter_Mock(); + * $mock->addResponse("HTTP/1.1 ... "); + * + * $request = new HTTP_Request2(); + * $request->setAdapter($mock); + * + * // This will return the response set above + * $response = $req->send(); + * + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +class HTTP_Request2_Adapter_Mock extends HTTP_Request2_Adapter +{ + /** + * A queue of responses to be returned by sendRequest() + * @var array + */ + protected $responses = array(); + + /** + * Returns the next response from the queue built by addResponse() + * + * If the queue is empty will return default empty response with status 400, + * if an Exception object was added to the queue it will be thrown. + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws Exception + */ + public function sendRequest(HTTP_Request2 $request) + { + if (count($this->responses) > 0) { + $response = array_shift($this->responses); + if ($response instanceof HTTP_Request2_Response) { + return $response; + } else { + // rethrow the exception, + $class = get_class($response); + $message = $response->getMessage(); + $code = $response->getCode(); + throw new $class($message, $code); + } + } else { + return self::createResponseFromString("HTTP/1.1 400 Bad Request\r\n\r\n"); + } + } + + /** + * Adds response to the queue + * + * @param mixed either a string, a pointer to an open file, + * a HTTP_Request2_Response or Exception object + * @throws HTTP_Request2_Exception + */ + public function addResponse($response) + { + if (is_string($response)) { + $response = self::createResponseFromString($response); + } elseif (is_resource($response)) { + $response = self::createResponseFromFile($response); + } elseif (!$response instanceof HTTP_Request2_Response && + !$response instanceof Exception + ) { + throw new HTTP_Request2_Exception('Parameter is not a valid response'); + } + $this->responses[] = $response; + } + + /** + * Creates a new HTTP_Request2_Response object from a string + * + * @param string + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public static function createResponseFromString($str) + { + $parts = preg_split('!(\r?\n){2}!m', $str, 2); + $headerLines = explode("\n", $parts[0]); + $response = new HTTP_Request2_Response(array_shift($headerLines)); + foreach ($headerLines as $headerLine) { + $response->parseHeaderLine($headerLine); + } + $response->parseHeaderLine(''); + if (isset($parts[1])) { + $response->appendBody($parts[1]); + } + return $response; + } + + /** + * Creates a new HTTP_Request2_Response object from a file + * + * @param resource file pointer returned by fopen() + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public static function createResponseFromFile($fp) + { + $response = new HTTP_Request2_Response(fgets($fp)); + do { + $headerLine = fgets($fp); + $response->parseHeaderLine($headerLine); + } while ('' != trim($headerLine)); + + while (!feof($fp)) { + $response->appendBody(fread($fp, 8192)); + } + return $response; + } +} +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Adapter/Socket.php b/extlib/HTTP/Request2/Adapter/Socket.php new file mode 100644 index 0000000000..ff44d49594 --- /dev/null +++ b/extlib/HTTP/Request2/Adapter/Socket.php @@ -0,0 +1,971 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Socket.php 279760 2009-05-03 10:46:42Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for HTTP_Request2 adapters + */ +require_once 'HTTP/Request2/Adapter.php'; + +/** + * Socket-based adapter for HTTP_Request2 + * + * This adapter uses only PHP sockets and will work on almost any PHP + * environment. Code is based on original HTTP_Request PEAR package. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + */ +class HTTP_Request2_Adapter_Socket extends HTTP_Request2_Adapter +{ + /** + * Regular expression for 'token' rule from RFC 2616 + */ + const REGEXP_TOKEN = '[^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+'; + + /** + * Regular expression for 'quoted-string' rule from RFC 2616 + */ + const REGEXP_QUOTED_STRING = '"(?:\\\\.|[^\\\\"])*"'; + + /** + * Connected sockets, needed for Keep-Alive support + * @var array + * @see connect() + */ + protected static $sockets = array(); + + /** + * Data for digest authentication scheme + * + * The keys for the array are URL prefixes. + * + * The values are associative arrays with data (realm, nonce, nonce-count, + * opaque...) needed for digest authentication. Stored here to prevent making + * duplicate requests to digest-protected resources after we have already + * received the challenge. + * + * @var array + */ + protected static $challenges = array(); + + /** + * Connected socket + * @var resource + * @see connect() + */ + protected $socket; + + /** + * Challenge used for server digest authentication + * @var array + */ + protected $serverChallenge; + + /** + * Challenge used for proxy digest authentication + * @var array + */ + protected $proxyChallenge; + + /** + * Global timeout, exception will be raised if request continues past this time + * @var integer + */ + protected $timeout = null; + + /** + * Remaining length of the current chunk, when reading chunked response + * @var integer + * @see readChunked() + */ + protected $chunkLength = 0; + + /** + * Sends request to the remote server and returns its response + * + * @param HTTP_Request2 + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + public function sendRequest(HTTP_Request2 $request) + { + $this->request = $request; + $keepAlive = $this->connect(); + $headers = $this->prepareHeaders(); + + // Use global request timeout if given, see feature requests #5735, #8964 + if ($timeout = $request->getConfig('timeout')) { + $this->timeout = time() + $timeout; + } else { + $this->timeout = null; + } + + try { + if (false === @fwrite($this->socket, $headers, strlen($headers))) { + throw new HTTP_Request2_Exception('Error writing request'); + } + // provide request headers to the observer, see request #7633 + $this->request->setLastEvent('sentHeaders', $headers); + $this->writeBody(); + + if ($this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $request->getConfig('timeout') . ' second(s)' + ); + } + + $response = $this->readResponse(); + + if (!$this->canKeepAlive($keepAlive, $response)) { + $this->disconnect(); + } + + if ($this->shouldUseProxyDigestAuth($response)) { + return $this->sendRequest($request); + } + if ($this->shouldUseServerDigestAuth($response)) { + return $this->sendRequest($request); + } + if ($authInfo = $response->getHeader('authentication-info')) { + $this->updateChallenge($this->serverChallenge, $authInfo); + } + if ($proxyInfo = $response->getHeader('proxy-authentication-info')) { + $this->updateChallenge($this->proxyChallenge, $proxyInfo); + } + + } catch (Exception $e) { + $this->disconnect(); + throw $e; + } + + return $response; + } + + /** + * Connects to the remote server + * + * @return bool whether the connection can be persistent + * @throws HTTP_Request2_Exception + */ + protected function connect() + { + $secure = 0 == strcasecmp($this->request->getUrl()->getScheme(), 'https'); + $tunnel = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); + $headers = $this->request->getHeaders(); + $reqHost = $this->request->getUrl()->getHost(); + if (!($reqPort = $this->request->getUrl()->getPort())) { + $reqPort = $secure? 443: 80; + } + + if ($host = $this->request->getConfig('proxy_host')) { + if (!($port = $this->request->getConfig('proxy_port'))) { + throw new HTTP_Request2_Exception('Proxy port not provided'); + } + $proxy = true; + } else { + $host = $reqHost; + $port = $reqPort; + $proxy = false; + } + + if ($tunnel && !$proxy) { + throw new HTTP_Request2_Exception( + "Trying to perform CONNECT request without proxy" + ); + } + if ($secure && !in_array('ssl', stream_get_transports())) { + throw new HTTP_Request2_Exception( + 'Need OpenSSL support for https:// requests' + ); + } + + // RFC 2068, section 19.7.1: A client MUST NOT send the Keep-Alive + // connection token to a proxy server... + if ($proxy && !$secure && + !empty($headers['connection']) && 'Keep-Alive' == $headers['connection'] + ) { + $this->request->setHeader('connection'); + } + + $keepAlive = ('1.1' == $this->request->getConfig('protocol_version') && + empty($headers['connection'])) || + (!empty($headers['connection']) && + 'Keep-Alive' == $headers['connection']); + $host = ((!$secure || $proxy)? 'tcp://': 'ssl://') . $host; + + $options = array(); + if ($secure || $tunnel) { + foreach ($this->request->getConfig() as $name => $value) { + if ('ssl_' == substr($name, 0, 4) && null !== $value) { + if ('ssl_verify_host' == $name) { + if ($value) { + $options['CN_match'] = $reqHost; + } + } else { + $options[substr($name, 4)] = $value; + } + } + } + ksort($options); + } + + // Changing SSL context options after connection is established does *not* + // work, we need a new connection if options change + $remote = $host . ':' . $port; + $socketKey = $remote . (($secure && $proxy)? "->{$reqHost}:{$reqPort}": '') . + (empty($options)? '': ':' . serialize($options)); + unset($this->socket); + + // We use persistent connections and have a connected socket? + // Ensure that the socket is still connected, see bug #16149 + if ($keepAlive && !empty(self::$sockets[$socketKey]) && + !feof(self::$sockets[$socketKey]) + ) { + $this->socket =& self::$sockets[$socketKey]; + + } elseif ($secure && $proxy && !$tunnel) { + $this->establishTunnel(); + $this->request->setLastEvent( + 'connect', "ssl://{$reqHost}:{$reqPort} via {$host}:{$port}" + ); + self::$sockets[$socketKey] =& $this->socket; + + } else { + // Set SSL context options if doing HTTPS request or creating a tunnel + $context = stream_context_create(); + foreach ($options as $name => $value) { + if (!stream_context_set_option($context, 'ssl', $name, $value)) { + throw new HTTP_Request2_Exception( + "Error setting SSL context option '{$name}'" + ); + } + } + $this->socket = @stream_socket_client( + $remote, $errno, $errstr, + $this->request->getConfig('connect_timeout'), + STREAM_CLIENT_CONNECT, $context + ); + if (!$this->socket) { + throw new HTTP_Request2_Exception( + "Unable to connect to {$remote}. Error #{$errno}: {$errstr}" + ); + } + $this->request->setLastEvent('connect', $remote); + self::$sockets[$socketKey] =& $this->socket; + } + return $keepAlive; + } + + /** + * Establishes a tunnel to a secure remote server via HTTP CONNECT request + * + * This method will fail if 'ssl_verify_peer' is enabled. Probably because PHP + * sees that we are connected to a proxy server (duh!) rather than the server + * that presents its certificate. + * + * @link http://tools.ietf.org/html/rfc2817#section-5.2 + * @throws HTTP_Request2_Exception + */ + protected function establishTunnel() + { + $donor = new self; + $connect = new HTTP_Request2( + $this->request->getUrl(), HTTP_Request2::METHOD_CONNECT, + array_merge($this->request->getConfig(), + array('adapter' => $donor)) + ); + $response = $connect->send(); + // Need any successful (2XX) response + if (200 > $response->getStatus() || 300 <= $response->getStatus()) { + throw new HTTP_Request2_Exception( + 'Failed to connect via HTTPS proxy. Proxy response: ' . + $response->getStatus() . ' ' . $response->getReasonPhrase() + ); + } + $this->socket = $donor->socket; + + $modes = array( + STREAM_CRYPTO_METHOD_TLS_CLIENT, + STREAM_CRYPTO_METHOD_SSLv3_CLIENT, + STREAM_CRYPTO_METHOD_SSLv23_CLIENT, + STREAM_CRYPTO_METHOD_SSLv2_CLIENT + ); + + foreach ($modes as $mode) { + if (stream_socket_enable_crypto($this->socket, true, $mode)) { + return; + } + } + throw new HTTP_Request2_Exception( + 'Failed to enable secure connection when connecting through proxy' + ); + } + + /** + * Checks whether current connection may be reused or should be closed + * + * @param boolean whether connection could be persistent + * in the first place + * @param HTTP_Request2_Response response object to check + * @return boolean + */ + protected function canKeepAlive($requestKeepAlive, HTTP_Request2_Response $response) + { + // Do not close socket on successful CONNECT request + if (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && + 200 <= $response->getStatus() && 300 > $response->getStatus() + ) { + return true; + } + + $lengthKnown = 'chunked' == strtolower($response->getHeader('transfer-encoding')) || + null !== $response->getHeader('content-length'); + $persistent = 'keep-alive' == strtolower($response->getHeader('connection')) || + (null === $response->getHeader('connection') && + '1.1' == $response->getVersion()); + return $requestKeepAlive && $lengthKnown && $persistent; + } + + /** + * Disconnects from the remote server + */ + protected function disconnect() + { + if (is_resource($this->socket)) { + fclose($this->socket); + $this->socket = null; + $this->request->setLastEvent('disconnect'); + } + } + + /** + * Checks whether another request should be performed with server digest auth + * + * Several conditions should be satisfied for it to return true: + * - response status should be 401 + * - auth credentials should be set in the request object + * - response should contain WWW-Authenticate header with digest challenge + * - there is either no challenge stored for this URL or new challenge + * contains stale=true parameter (in other case we probably just failed + * due to invalid username / password) + * + * The method stores challenge values in $challenges static property + * + * @param HTTP_Request2_Response response to check + * @return boolean whether another request should be performed + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function shouldUseServerDigestAuth(HTTP_Request2_Response $response) + { + // no sense repeating a request if we don't have credentials + if (401 != $response->getStatus() || !$this->request->getAuth()) { + return false; + } + if (!$challenge = $this->parseDigestChallenge($response->getHeader('www-authenticate'))) { + return false; + } + + $url = $this->request->getUrl(); + $scheme = $url->getScheme(); + $host = $scheme . '://' . $url->getHost(); + if ($port = $url->getPort()) { + if ((0 == strcasecmp($scheme, 'http') && 80 != $port) || + (0 == strcasecmp($scheme, 'https') && 443 != $port) + ) { + $host .= ':' . $port; + } + } + + if (!empty($challenge['domain'])) { + $prefixes = array(); + foreach (preg_split('/\\s+/', $challenge['domain']) as $prefix) { + // don't bother with different servers + if ('/' == substr($prefix, 0, 1)) { + $prefixes[] = $host . $prefix; + } + } + } + if (empty($prefixes)) { + $prefixes = array($host . '/'); + } + + $ret = true; + foreach ($prefixes as $prefix) { + if (!empty(self::$challenges[$prefix]) && + (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) + ) { + // probably credentials are invalid + $ret = false; + } + self::$challenges[$prefix] =& $challenge; + } + return $ret; + } + + /** + * Checks whether another request should be performed with proxy digest auth + * + * Several conditions should be satisfied for it to return true: + * - response status should be 407 + * - proxy auth credentials should be set in the request object + * - response should contain Proxy-Authenticate header with digest challenge + * - there is either no challenge stored for this proxy or new challenge + * contains stale=true parameter (in other case we probably just failed + * due to invalid username / password) + * + * The method stores challenge values in $challenges static property + * + * @param HTTP_Request2_Response response to check + * @return boolean whether another request should be performed + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function shouldUseProxyDigestAuth(HTTP_Request2_Response $response) + { + if (407 != $response->getStatus() || !$this->request->getConfig('proxy_user')) { + return false; + } + if (!($challenge = $this->parseDigestChallenge($response->getHeader('proxy-authenticate')))) { + return false; + } + + $key = 'proxy://' . $this->request->getConfig('proxy_host') . + ':' . $this->request->getConfig('proxy_port'); + + if (!empty(self::$challenges[$key]) && + (empty($challenge['stale']) || strcasecmp('true', $challenge['stale'])) + ) { + $ret = false; + } else { + $ret = true; + } + self::$challenges[$key] = $challenge; + return $ret; + } + + /** + * Extracts digest method challenge from (WWW|Proxy)-Authenticate header value + * + * There is a problem with implementation of RFC 2617: several of the parameters + * here are defined as quoted-string and thus may contain backslash escaped + * double quotes (RFC 2616, section 2.2). However, RFC 2617 defines unq(X) as + * just value of quoted-string X without surrounding quotes, it doesn't speak + * about removing backslash escaping. + * + * Now realm parameter is user-defined and human-readable, strange things + * happen when it contains quotes: + * - Apache allows quotes in realm, but apparently uses realm value without + * backslashes for digest computation + * - Squid allows (manually escaped) quotes there, but it is impossible to + * authorize with either escaped or unescaped quotes used in digest, + * probably it can't parse the response (?) + * - Both IE and Firefox display realm value with backslashes in + * the password popup and apparently use the same value for digest + * + * HTTP_Request2 follows IE and Firefox (and hopefully RFC 2617) in + * quoted-string handling, unfortunately that means failure to authorize + * sometimes + * + * @param string value of WWW-Authenticate or Proxy-Authenticate header + * @return mixed associative array with challenge parameters, false if + * no challenge is present in header value + * @throws HTTP_Request2_Exception in case of unsupported challenge parameters + */ + protected function parseDigestChallenge($headerValue) + { + $authParam = '(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . + self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')'; + $challenge = "!(?<=^|\\s|,)Digest ({$authParam}\\s*(,\\s*|$))+!"; + if (!preg_match($challenge, $headerValue, $matches)) { + return false; + } + + preg_match_all('!' . $authParam . '!', $matches[0], $params); + $paramsAry = array(); + $knownParams = array('realm', 'domain', 'nonce', 'opaque', 'stale', + 'algorithm', 'qop'); + for ($i = 0; $i < count($params[0]); $i++) { + // section 3.2.1: Any unrecognized directive MUST be ignored. + if (in_array($params[1][$i], $knownParams)) { + if ('"' == substr($params[2][$i], 0, 1)) { + $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); + } else { + $paramsAry[$params[1][$i]] = $params[2][$i]; + } + } + } + // we only support qop=auth + if (!empty($paramsAry['qop']) && + !in_array('auth', array_map('trim', explode(',', $paramsAry['qop']))) + ) { + throw new HTTP_Request2_Exception( + "Only 'auth' qop is currently supported in digest authentication, " . + "server requested '{$paramsAry['qop']}'" + ); + } + // we only support algorithm=MD5 + if (!empty($paramsAry['algorithm']) && 'MD5' != $paramsAry['algorithm']) { + throw new HTTP_Request2_Exception( + "Only 'MD5' algorithm is currently supported in digest authentication, " . + "server requested '{$paramsAry['algorithm']}'" + ); + } + + return $paramsAry; + } + + /** + * Parses [Proxy-]Authentication-Info header value and updates challenge + * + * @param array challenge to update + * @param string value of [Proxy-]Authentication-Info header + * @todo validate server rspauth response + */ + protected function updateChallenge(&$challenge, $headerValue) + { + $authParam = '!(' . self::REGEXP_TOKEN . ')\\s*=\\s*(' . + self::REGEXP_TOKEN . '|' . self::REGEXP_QUOTED_STRING . ')!'; + $paramsAry = array(); + + preg_match_all($authParam, $headerValue, $params); + for ($i = 0; $i < count($params[0]); $i++) { + if ('"' == substr($params[2][$i], 0, 1)) { + $paramsAry[$params[1][$i]] = substr($params[2][$i], 1, -1); + } else { + $paramsAry[$params[1][$i]] = $params[2][$i]; + } + } + // for now, just update the nonce value + if (!empty($paramsAry['nextnonce'])) { + $challenge['nonce'] = $paramsAry['nextnonce']; + $challenge['nc'] = 1; + } + } + + /** + * Creates a value for [Proxy-]Authorization header when using digest authentication + * + * @param string user name + * @param string password + * @param string request URL + * @param array digest challenge parameters + * @return string value of [Proxy-]Authorization request header + * @link http://tools.ietf.org/html/rfc2617#section-3.2.2 + */ + protected function createDigestResponse($user, $password, $url, &$challenge) + { + if (false !== ($q = strpos($url, '?')) && + $this->request->getConfig('digest_compat_ie') + ) { + $url = substr($url, 0, $q); + } + + $a1 = md5($user . ':' . $challenge['realm'] . ':' . $password); + $a2 = md5($this->request->getMethod() . ':' . $url); + + if (empty($challenge['qop'])) { + $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $a2); + } else { + $challenge['cnonce'] = 'Req2.' . rand(); + if (empty($challenge['nc'])) { + $challenge['nc'] = 1; + } + $nc = sprintf('%08x', $challenge['nc']++); + $digest = md5($a1 . ':' . $challenge['nonce'] . ':' . $nc . ':' . + $challenge['cnonce'] . ':auth:' . $a2); + } + return 'Digest username="' . str_replace(array('\\', '"'), array('\\\\', '\\"'), $user) . '", ' . + 'realm="' . $challenge['realm'] . '", ' . + 'nonce="' . $challenge['nonce'] . '", ' . + 'uri="' . $url . '", ' . + 'response="' . $digest . '"' . + (!empty($challenge['opaque'])? + ', opaque="' . $challenge['opaque'] . '"': + '') . + (!empty($challenge['qop'])? + ', qop="auth", nc=' . $nc . ', cnonce="' . $challenge['cnonce'] . '"': + ''); + } + + /** + * Adds 'Authorization' header (if needed) to request headers array + * + * @param array request headers + * @param string request host (needed for digest authentication) + * @param string request URL (needed for digest authentication) + * @throws HTTP_Request2_Exception + */ + protected function addAuthorizationHeader(&$headers, $requestHost, $requestUrl) + { + if (!($auth = $this->request->getAuth())) { + return; + } + switch ($auth['scheme']) { + case HTTP_Request2::AUTH_BASIC: + $headers['authorization'] = + 'Basic ' . base64_encode($auth['user'] . ':' . $auth['password']); + break; + + case HTTP_Request2::AUTH_DIGEST: + unset($this->serverChallenge); + $fullUrl = ('/' == $requestUrl[0])? + $this->request->getUrl()->getScheme() . '://' . + $requestHost . $requestUrl: + $requestUrl; + foreach (array_keys(self::$challenges) as $key) { + if ($key == substr($fullUrl, 0, strlen($key))) { + $headers['authorization'] = $this->createDigestResponse( + $auth['user'], $auth['password'], + $requestUrl, self::$challenges[$key] + ); + $this->serverChallenge =& self::$challenges[$key]; + break; + } + } + break; + + default: + throw new HTTP_Request2_Exception( + "Unknown HTTP authentication scheme '{$auth['scheme']}'" + ); + } + } + + /** + * Adds 'Proxy-Authorization' header (if needed) to request headers array + * + * @param array request headers + * @param string request URL (needed for digest authentication) + * @throws HTTP_Request2_Exception + */ + protected function addProxyAuthorizationHeader(&$headers, $requestUrl) + { + if (!$this->request->getConfig('proxy_host') || + !($user = $this->request->getConfig('proxy_user')) || + (0 == strcasecmp('https', $this->request->getUrl()->getScheme()) && + HTTP_Request2::METHOD_CONNECT != $this->request->getMethod()) + ) { + return; + } + + $password = $this->request->getConfig('proxy_password'); + switch ($this->request->getConfig('proxy_auth_scheme')) { + case HTTP_Request2::AUTH_BASIC: + $headers['proxy-authorization'] = + 'Basic ' . base64_encode($user . ':' . $password); + break; + + case HTTP_Request2::AUTH_DIGEST: + unset($this->proxyChallenge); + $proxyUrl = 'proxy://' . $this->request->getConfig('proxy_host') . + ':' . $this->request->getConfig('proxy_port'); + if (!empty(self::$challenges[$proxyUrl])) { + $headers['proxy-authorization'] = $this->createDigestResponse( + $user, $password, + $requestUrl, self::$challenges[$proxyUrl] + ); + $this->proxyChallenge =& self::$challenges[$proxyUrl]; + } + break; + + default: + throw new HTTP_Request2_Exception( + "Unknown HTTP authentication scheme '" . + $this->request->getConfig('proxy_auth_scheme') . "'" + ); + } + } + + + /** + * Creates the string with the Request-Line and request headers + * + * @return string + * @throws HTTP_Request2_Exception + */ + protected function prepareHeaders() + { + $headers = $this->request->getHeaders(); + $url = $this->request->getUrl(); + $connect = HTTP_Request2::METHOD_CONNECT == $this->request->getMethod(); + $host = $url->getHost(); + + $defaultPort = 0 == strcasecmp($url->getScheme(), 'https')? 443: 80; + if (($port = $url->getPort()) && $port != $defaultPort || $connect) { + $host .= ':' . (empty($port)? $defaultPort: $port); + } + // Do not overwrite explicitly set 'Host' header, see bug #16146 + if (!isset($headers['host'])) { + $headers['host'] = $host; + } + + if ($connect) { + $requestUrl = $host; + + } else { + if (!$this->request->getConfig('proxy_host') || + 0 == strcasecmp($url->getScheme(), 'https') + ) { + $requestUrl = ''; + } else { + $requestUrl = $url->getScheme() . '://' . $host; + } + $path = $url->getPath(); + $query = $url->getQuery(); + $requestUrl .= (empty($path)? '/': $path) . (empty($query)? '': '?' . $query); + } + + if ('1.1' == $this->request->getConfig('protocol_version') && + extension_loaded('zlib') && !isset($headers['accept-encoding']) + ) { + $headers['accept-encoding'] = 'gzip, deflate'; + } + + $this->addAuthorizationHeader($headers, $host, $requestUrl); + $this->addProxyAuthorizationHeader($headers, $requestUrl); + $this->calculateRequestLength($headers); + + $headersStr = $this->request->getMethod() . ' ' . $requestUrl . ' HTTP/' . + $this->request->getConfig('protocol_version') . "\r\n"; + foreach ($headers as $name => $value) { + $canonicalName = implode('-', array_map('ucfirst', explode('-', $name))); + $headersStr .= $canonicalName . ': ' . $value . "\r\n"; + } + return $headersStr . "\r\n"; + } + + /** + * Sends the request body + * + * @throws HTTP_Request2_Exception + */ + protected function writeBody() + { + if (in_array($this->request->getMethod(), self::$bodyDisallowed) || + 0 == $this->contentLength + ) { + return; + } + + $position = 0; + $bufferSize = $this->request->getConfig('buffer_size'); + while ($position < $this->contentLength) { + if (is_string($this->requestBody)) { + $str = substr($this->requestBody, $position, $bufferSize); + } elseif (is_resource($this->requestBody)) { + $str = fread($this->requestBody, $bufferSize); + } else { + $str = $this->requestBody->read($bufferSize); + } + if (false === @fwrite($this->socket, $str, strlen($str))) { + throw new HTTP_Request2_Exception('Error writing request'); + } + // Provide the length of written string to the observer, request #7630 + $this->request->setLastEvent('sentBodyPart', strlen($str)); + $position += strlen($str); + } + } + + /** + * Reads the remote server's response + * + * @return HTTP_Request2_Response + * @throws HTTP_Request2_Exception + */ + protected function readResponse() + { + $bufferSize = $this->request->getConfig('buffer_size'); + + do { + $response = new HTTP_Request2_Response($this->readLine($bufferSize), true); + do { + $headerLine = $this->readLine($bufferSize); + $response->parseHeaderLine($headerLine); + } while ('' != $headerLine); + } while (in_array($response->getStatus(), array(100, 101))); + + $this->request->setLastEvent('receivedHeaders', $response); + + // No body possible in such responses + if (HTTP_Request2::METHOD_HEAD == $this->request->getMethod() || + (HTTP_Request2::METHOD_CONNECT == $this->request->getMethod() && + 200 <= $response->getStatus() && 300 > $response->getStatus()) || + in_array($response->getStatus(), array(204, 304)) + ) { + return $response; + } + + $chunked = 'chunked' == $response->getHeader('transfer-encoding'); + $length = $response->getHeader('content-length'); + $hasBody = false; + if ($chunked || null === $length || 0 < intval($length)) { + // RFC 2616, section 4.4: + // 3. ... If a message is received with both a + // Transfer-Encoding header field and a Content-Length header field, + // the latter MUST be ignored. + $toRead = ($chunked || null === $length)? null: $length; + $this->chunkLength = 0; + + while (!feof($this->socket) && (is_null($toRead) || 0 < $toRead)) { + if ($chunked) { + $data = $this->readChunked($bufferSize); + } elseif (is_null($toRead)) { + $data = $this->fread($bufferSize); + } else { + $data = $this->fread(min($toRead, $bufferSize)); + $toRead -= strlen($data); + } + if ('' == $data && (!$this->chunkLength || feof($this->socket))) { + break; + } + + $hasBody = true; + if ($this->request->getConfig('store_body')) { + $response->appendBody($data); + } + if (!in_array($response->getHeader('content-encoding'), array('identity', null))) { + $this->request->setLastEvent('receivedEncodedBodyPart', $data); + } else { + $this->request->setLastEvent('receivedBodyPart', $data); + } + } + } + + if ($hasBody) { + $this->request->setLastEvent('receivedBody', $response); + } + return $response; + } + + /** + * Reads until either the end of the socket or a newline, whichever comes first + * + * Strips the trailing newline from the returned data, handles global + * request timeout. Method idea borrowed from Net_Socket PEAR package. + * + * @param int buffer size to use for reading + * @return Available data up to the newline (not including newline) + * @throws HTTP_Request2_Exception In case of timeout + */ + protected function readLine($bufferSize) + { + $line = ''; + while (!feof($this->socket)) { + if ($this->timeout) { + stream_set_timeout($this->socket, max($this->timeout - time(), 1)); + } + $line .= @fgets($this->socket, $bufferSize); + $info = stream_get_meta_data($this->socket); + if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $this->request->getConfig('timeout') . ' second(s)' + ); + } + if (substr($line, -1) == "\n") { + return rtrim($line, "\r\n"); + } + } + return $line; + } + + /** + * Wrapper around fread(), handles global request timeout + * + * @param int Reads up to this number of bytes + * @return Data read from socket + * @throws HTTP_Request2_Exception In case of timeout + */ + protected function fread($length) + { + if ($this->timeout) { + stream_set_timeout($this->socket, max($this->timeout - time(), 1)); + } + $data = fread($this->socket, $length); + $info = stream_get_meta_data($this->socket); + if ($info['timed_out'] || $this->timeout && time() > $this->timeout) { + throw new HTTP_Request2_Exception( + 'Request timed out after ' . + $this->request->getConfig('timeout') . ' second(s)' + ); + } + return $data; + } + + /** + * Reads a part of response body encoded with chunked Transfer-Encoding + * + * @param int buffer size to use for reading + * @return string + * @throws HTTP_Request2_Exception + */ + protected function readChunked($bufferSize) + { + // at start of the next chunk? + if (0 == $this->chunkLength) { + $line = $this->readLine($bufferSize); + if (!preg_match('/^([0-9a-f]+)/i', $line, $matches)) { + throw new HTTP_Request2_Exception( + "Cannot decode chunked response, invalid chunk length '{$line}'" + ); + } else { + $this->chunkLength = hexdec($matches[1]); + // Chunk with zero length indicates the end + if (0 == $this->chunkLength) { + $this->readLine($bufferSize); + return ''; + } + } + } + $data = $this->fread(min($this->chunkLength, $bufferSize)); + $this->chunkLength -= strlen($data); + if (0 == $this->chunkLength) { + $this->readLine($bufferSize); // Trailing CRLF + } + return $data; + } +} + +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Exception.php b/extlib/HTTP/Request2/Exception.php new file mode 100644 index 0000000000..bfef7d6c22 --- /dev/null +++ b/extlib/HTTP/Request2/Exception.php @@ -0,0 +1,62 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Exception.php 273003 2009-01-07 19:28:22Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Base class for exceptions in PEAR + */ +require_once 'PEAR/Exception.php'; + +/** + * Exception class for HTTP_Request2 package + * + * Such a class is required by the Exception RFC: + * http://pear.php.net/pepr/pepr-proposal-show.php?id=132 + * + * @category HTTP + * @package HTTP_Request2 + * @version Release: 0.4.1 + */ +class HTTP_Request2_Exception extends PEAR_Exception +{ +} +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/MultipartBody.php b/extlib/HTTP/Request2/MultipartBody.php new file mode 100644 index 0000000000..d8afd8344c --- /dev/null +++ b/extlib/HTTP/Request2/MultipartBody.php @@ -0,0 +1,274 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: MultipartBody.php 287306 2009-08-14 15:22:52Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Class for building multipart/form-data request body + * + * The class helps to reduce memory consumption by streaming large file uploads + * from disk, it also allows monitoring of upload progress (see request #7630) + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + * @link http://tools.ietf.org/html/rfc1867 + */ +class HTTP_Request2_MultipartBody +{ + /** + * MIME boundary + * @var string + */ + private $_boundary; + + /** + * Form parameters added via {@link HTTP_Request2::addPostParameter()} + * @var array + */ + private $_params = array(); + + /** + * File uploads added via {@link HTTP_Request2::addUpload()} + * @var array + */ + private $_uploads = array(); + + /** + * Header for parts with parameters + * @var string + */ + private $_headerParam = "--%s\r\nContent-Disposition: form-data; name=\"%s\"\r\n\r\n"; + + /** + * Header for parts with uploads + * @var string + */ + private $_headerUpload = "--%s\r\nContent-Disposition: form-data; name=\"%s\"; filename=\"%s\"\r\nContent-Type: %s\r\n\r\n"; + + /** + * Current position in parameter and upload arrays + * + * First number is index of "current" part, second number is position within + * "current" part + * + * @var array + */ + private $_pos = array(0, 0); + + + /** + * Constructor. Sets the arrays with POST data. + * + * @param array values of form fields set via {@link HTTP_Request2::addPostParameter()} + * @param array file uploads set via {@link HTTP_Request2::addUpload()} + * @param bool whether to append brackets to array variable names + */ + public function __construct(array $params, array $uploads, $useBrackets = true) + { + $this->_params = self::_flattenArray('', $params, $useBrackets); + foreach ($uploads as $fieldName => $f) { + if (!is_array($f['fp'])) { + $this->_uploads[] = $f + array('name' => $fieldName); + } else { + for ($i = 0; $i < count($f['fp']); $i++) { + $upload = array( + 'name' => ($useBrackets? $fieldName . '[' . $i . ']': $fieldName) + ); + foreach (array('fp', 'filename', 'size', 'type') as $key) { + $upload[$key] = $f[$key][$i]; + } + $this->_uploads[] = $upload; + } + } + } + } + + /** + * Returns the length of the body to use in Content-Length header + * + * @return integer + */ + public function getLength() + { + $boundaryLength = strlen($this->getBoundary()); + $headerParamLength = strlen($this->_headerParam) - 4 + $boundaryLength; + $headerUploadLength = strlen($this->_headerUpload) - 8 + $boundaryLength; + $length = $boundaryLength + 6; + foreach ($this->_params as $p) { + $length += $headerParamLength + strlen($p[0]) + strlen($p[1]) + 2; + } + foreach ($this->_uploads as $u) { + $length += $headerUploadLength + strlen($u['name']) + strlen($u['type']) + + strlen($u['filename']) + $u['size'] + 2; + } + return $length; + } + + /** + * Returns the boundary to use in Content-Type header + * + * @return string + */ + public function getBoundary() + { + if (empty($this->_boundary)) { + $this->_boundary = '--' . md5('PEAR-HTTP_Request2-' . microtime()); + } + return $this->_boundary; + } + + /** + * Returns next chunk of request body + * + * @param integer Amount of bytes to read + * @return string Up to $length bytes of data, empty string if at end + */ + public function read($length) + { + $ret = ''; + $boundary = $this->getBoundary(); + $paramCount = count($this->_params); + $uploadCount = count($this->_uploads); + while ($length > 0 && $this->_pos[0] <= $paramCount + $uploadCount) { + $oldLength = $length; + if ($this->_pos[0] < $paramCount) { + $param = sprintf($this->_headerParam, $boundary, + $this->_params[$this->_pos[0]][0]) . + $this->_params[$this->_pos[0]][1] . "\r\n"; + $ret .= substr($param, $this->_pos[1], $length); + $length -= min(strlen($param) - $this->_pos[1], $length); + + } elseif ($this->_pos[0] < $paramCount + $uploadCount) { + $pos = $this->_pos[0] - $paramCount; + $header = sprintf($this->_headerUpload, $boundary, + $this->_uploads[$pos]['name'], + $this->_uploads[$pos]['filename'], + $this->_uploads[$pos]['type']); + if ($this->_pos[1] < strlen($header)) { + $ret .= substr($header, $this->_pos[1], $length); + $length -= min(strlen($header) - $this->_pos[1], $length); + } + $filePos = max(0, $this->_pos[1] - strlen($header)); + if ($length > 0 && $filePos < $this->_uploads[$pos]['size']) { + $ret .= fread($this->_uploads[$pos]['fp'], $length); + $length -= min($length, $this->_uploads[$pos]['size'] - $filePos); + } + if ($length > 0) { + $start = $this->_pos[1] + ($oldLength - $length) - + strlen($header) - $this->_uploads[$pos]['size']; + $ret .= substr("\r\n", $start, $length); + $length -= min(2 - $start, $length); + } + + } else { + $closing = '--' . $boundary . "--\r\n"; + $ret .= substr($closing, $this->_pos[1], $length); + $length -= min(strlen($closing) - $this->_pos[1], $length); + } + if ($length > 0) { + $this->_pos = array($this->_pos[0] + 1, 0); + } else { + $this->_pos[1] += $oldLength; + } + } + return $ret; + } + + /** + * Sets the current position to the start of the body + * + * This allows reusing the same body in another request + */ + public function rewind() + { + $this->_pos = array(0, 0); + foreach ($this->_uploads as $u) { + rewind($u['fp']); + } + } + + /** + * Returns the body as string + * + * Note that it reads all file uploads into memory so it is a good idea not + * to use this method with large file uploads and rely on read() instead. + * + * @return string + */ + public function __toString() + { + $this->rewind(); + return $this->read($this->getLength()); + } + + + /** + * Helper function to change the (probably multidimensional) associative array + * into the simple one. + * + * @param string name for item + * @param mixed item's values + * @param bool whether to append [] to array variables' names + * @return array array with the following items: array('item name', 'item value'); + */ + private static function _flattenArray($name, $values, $useBrackets) + { + if (!is_array($values)) { + return array(array($name, $values)); + } else { + $ret = array(); + foreach ($values as $k => $v) { + if (empty($name)) { + $newName = $k; + } elseif ($useBrackets) { + $newName = $name . '[' . $k . ']'; + } else { + $newName = $name; + } + $ret = array_merge($ret, self::_flattenArray($newName, $v, $useBrackets)); + } + return $ret; + } + } +} +?> diff --git a/extlib/HTTP/Request2/Observer/Log.php b/extlib/HTTP/Request2/Observer/Log.php new file mode 100644 index 0000000000..b1a0552780 --- /dev/null +++ b/extlib/HTTP/Request2/Observer/Log.php @@ -0,0 +1,215 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author David Jean Louis + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Log.php 272593 2009-01-02 16:27:14Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Exception class for HTTP_Request2 package + */ +require_once 'HTTP/Request2/Exception.php'; + +/** + * A debug observer useful for debugging / testing. + * + * This observer logs to a log target data corresponding to the various request + * and response events, it logs by default to php://output but can be configured + * to log to a file or via the PEAR Log package. + * + * A simple example: + * + * require_once 'HTTP/Request2.php'; + * require_once 'HTTP/Request2/Observer/Log.php'; + * + * $request = new HTTP_Request2('http://www.example.com'); + * $observer = new HTTP_Request2_Observer_Log(); + * $request->attach($observer); + * $request->send(); + * + * + * A more complex example with PEAR Log: + * + * require_once 'HTTP/Request2.php'; + * require_once 'HTTP/Request2/Observer/Log.php'; + * require_once 'Log.php'; + * + * $request = new HTTP_Request2('http://www.example.com'); + * // we want to log with PEAR log + * $observer = new HTTP_Request2_Observer_Log(Log::factory('console')); + * + * // we only want to log received headers + * $observer->events = array('receivedHeaders'); + * + * $request->attach($observer); + * $request->send(); + * + * + * @category HTTP + * @package HTTP_Request2 + * @author David Jean Louis + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version Release: 0.4.1 + * @link http://pear.php.net/package/HTTP_Request2 + */ +class HTTP_Request2_Observer_Log implements SplObserver +{ + // properties {{{ + + /** + * The log target, it can be a a resource or a PEAR Log instance. + * + * @var resource|Log $target + */ + protected $target = null; + + /** + * The events to log. + * + * @var array $events + */ + public $events = array( + 'connect', + 'sentHeaders', + 'sentBodyPart', + 'receivedHeaders', + 'receivedBody', + 'disconnect', + ); + + // }}} + // __construct() {{{ + + /** + * Constructor. + * + * @param mixed $target Can be a file path (default: php://output), a resource, + * or an instance of the PEAR Log class. + * @param array $events Array of events to listen to (default: all events) + * + * @return void + */ + public function __construct($target = 'php://output', array $events = array()) + { + if (!empty($events)) { + $this->events = $events; + } + if (is_resource($target) || $target instanceof Log) { + $this->target = $target; + } elseif (false === ($this->target = @fopen($target, 'w'))) { + throw new HTTP_Request2_Exception("Unable to open '{$target}'"); + } + } + + // }}} + // update() {{{ + + /** + * Called when the request notify us of an event. + * + * @param HTTP_Request2 $subject The HTTP_Request2 instance + * + * @return void + */ + public function update(SplSubject $subject) + { + $event = $subject->getLastEvent(); + if (!in_array($event['name'], $this->events)) { + return; + } + + switch ($event['name']) { + case 'connect': + $this->log('* Connected to ' . $event['data']); + break; + case 'sentHeaders': + $headers = explode("\r\n", $event['data']); + array_pop($headers); + foreach ($headers as $header) { + $this->log('> ' . $header); + } + break; + case 'sentBodyPart': + $this->log('> ' . $event['data']); + break; + case 'receivedHeaders': + $this->log(sprintf('< HTTP/%s %s %s', + $event['data']->getVersion(), + $event['data']->getStatus(), + $event['data']->getReasonPhrase())); + $headers = $event['data']->getHeader(); + foreach ($headers as $key => $val) { + $this->log('< ' . $key . ': ' . $val); + } + $this->log('< '); + break; + case 'receivedBody': + $this->log($event['data']->getBody()); + break; + case 'disconnect': + $this->log('* Disconnected'); + break; + } + } + + // }}} + // log() {{{ + + /** + * Log the given message to the configured target. + * + * @param string $message Message to display + * + * @return void + */ + protected function log($message) + { + if ($this->target instanceof Log) { + $this->target->debug($message); + } elseif (is_resource($this->target)) { + fwrite($this->target, $message . "\r\n"); + } + } + + // }}} +} + +?> \ No newline at end of file diff --git a/extlib/HTTP/Request2/Response.php b/extlib/HTTP/Request2/Response.php new file mode 100644 index 0000000000..c7c1021fbb --- /dev/null +++ b/extlib/HTTP/Request2/Response.php @@ -0,0 +1,549 @@ + + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * The names of the authors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @license http://opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: Response.php 287948 2009-09-01 17:12:18Z avb $ + * @link http://pear.php.net/package/HTTP_Request2 + */ + +/** + * Exception class for HTTP_Request2 package + */ +require_once 'HTTP/Request2/Exception.php'; + +/** + * Class representing a HTTP response + * + * The class is designed to be used in "streaming" scenario, building the + * response as it is being received: + * + * $statusLine = read_status_line(); + * $response = new HTTP_Request2_Response($statusLine); + * do { + * $headerLine = read_header_line(); + * $response->parseHeaderLine($headerLine); + * } while ($headerLine != ''); + * + * while ($chunk = read_body()) { + * $response->appendBody($chunk); + * } + * + * var_dump($response->getHeader(), $response->getCookies(), $response->getBody()); + * + * + * + * @category HTTP + * @package HTTP_Request2 + * @author Alexey Borzov + * @version Release: 0.4.1 + * @link http://tools.ietf.org/html/rfc2616#section-6 + */ +class HTTP_Request2_Response +{ + /** + * HTTP protocol version (e.g. 1.0, 1.1) + * @var string + */ + protected $version; + + /** + * Status code + * @var integer + * @link http://tools.ietf.org/html/rfc2616#section-6.1.1 + */ + protected $code; + + /** + * Reason phrase + * @var string + * @link http://tools.ietf.org/html/rfc2616#section-6.1.1 + */ + protected $reasonPhrase; + + /** + * Associative array of response headers + * @var array + */ + protected $headers = array(); + + /** + * Cookies set in the response + * @var array + */ + protected $cookies = array(); + + /** + * Name of last header processed by parseHederLine() + * + * Used to handle the headers that span multiple lines + * + * @var string + */ + protected $lastHeader = null; + + /** + * Response body + * @var string + */ + protected $body = ''; + + /** + * Whether the body is still encoded by Content-Encoding + * + * cURL provides the decoded body to the callback; if we are reading from + * socket the body is still gzipped / deflated + * + * @var bool + */ + protected $bodyEncoded; + + /** + * Associative array of HTTP status code / reason phrase. + * + * @var array + * @link http://tools.ietf.org/html/rfc2616#section-10 + */ + protected static $phrases = array( + + // 1xx: Informational - Request received, continuing process + 100 => 'Continue', + 101 => 'Switching Protocols', + + // 2xx: Success - The action was successfully received, understood and + // accepted + 200 => 'OK', + 201 => 'Created', + 202 => 'Accepted', + 203 => 'Non-Authoritative Information', + 204 => 'No Content', + 205 => 'Reset Content', + 206 => 'Partial Content', + + // 3xx: Redirection - Further action must be taken in order to complete + // the request + 300 => 'Multiple Choices', + 301 => 'Moved Permanently', + 302 => 'Found', // 1.1 + 303 => 'See Other', + 304 => 'Not Modified', + 305 => 'Use Proxy', + 307 => 'Temporary Redirect', + + // 4xx: Client Error - The request contains bad syntax or cannot be + // fulfilled + 400 => 'Bad Request', + 401 => 'Unauthorized', + 402 => 'Payment Required', + 403 => 'Forbidden', + 404 => 'Not Found', + 405 => 'Method Not Allowed', + 406 => 'Not Acceptable', + 407 => 'Proxy Authentication Required', + 408 => 'Request Timeout', + 409 => 'Conflict', + 410 => 'Gone', + 411 => 'Length Required', + 412 => 'Precondition Failed', + 413 => 'Request Entity Too Large', + 414 => 'Request-URI Too Long', + 415 => 'Unsupported Media Type', + 416 => 'Requested Range Not Satisfiable', + 417 => 'Expectation Failed', + + // 5xx: Server Error - The server failed to fulfill an apparently + // valid request + 500 => 'Internal Server Error', + 501 => 'Not Implemented', + 502 => 'Bad Gateway', + 503 => 'Service Unavailable', + 504 => 'Gateway Timeout', + 505 => 'HTTP Version Not Supported', + 509 => 'Bandwidth Limit Exceeded', + + ); + + /** + * Constructor, parses the response status line + * + * @param string Response status line (e.g. "HTTP/1.1 200 OK") + * @param bool Whether body is still encoded by Content-Encoding + * @throws HTTP_Request2_Exception if status line is invalid according to spec + */ + public function __construct($statusLine, $bodyEncoded = true) + { + if (!preg_match('!^HTTP/(\d\.\d) (\d{3})(?: (.+))?!', $statusLine, $m)) { + throw new HTTP_Request2_Exception("Malformed response: {$statusLine}"); + } + $this->version = $m[1]; + $this->code = intval($m[2]); + if (!empty($m[3])) { + $this->reasonPhrase = trim($m[3]); + } elseif (!empty(self::$phrases[$this->code])) { + $this->reasonPhrase = self::$phrases[$this->code]; + } + $this->bodyEncoded = (bool)$bodyEncoded; + } + + /** + * Parses the line from HTTP response filling $headers array + * + * The method should be called after reading the line from socket or receiving + * it into cURL callback. Passing an empty string here indicates the end of + * response headers and triggers additional processing, so be sure to pass an + * empty string in the end. + * + * @param string Line from HTTP response + */ + public function parseHeaderLine($headerLine) + { + $headerLine = trim($headerLine, "\r\n"); + + // empty string signals the end of headers, process the received ones + if ('' == $headerLine) { + if (!empty($this->headers['set-cookie'])) { + $cookies = is_array($this->headers['set-cookie'])? + $this->headers['set-cookie']: + array($this->headers['set-cookie']); + foreach ($cookies as $cookieString) { + $this->parseCookie($cookieString); + } + unset($this->headers['set-cookie']); + } + foreach (array_keys($this->headers) as $k) { + if (is_array($this->headers[$k])) { + $this->headers[$k] = implode(', ', $this->headers[$k]); + } + } + + // string of the form header-name: header value + } elseif (preg_match('!^([^\x00-\x1f\x7f-\xff()<>@,;:\\\\"/\[\]?={}\s]+):(.+)$!', $headerLine, $m)) { + $name = strtolower($m[1]); + $value = trim($m[2]); + if (empty($this->headers[$name])) { + $this->headers[$name] = $value; + } else { + if (!is_array($this->headers[$name])) { + $this->headers[$name] = array($this->headers[$name]); + } + $this->headers[$name][] = $value; + } + $this->lastHeader = $name; + + // string + } elseif (preg_match('!^\s+(.+)$!', $headerLine, $m) && $this->lastHeader) { + if (!is_array($this->headers[$this->lastHeader])) { + $this->headers[$this->lastHeader] .= ' ' . trim($m[1]); + } else { + $key = count($this->headers[$this->lastHeader]) - 1; + $this->headers[$this->lastHeader][$key] .= ' ' . trim($m[1]); + } + } + } + + /** + * Parses a Set-Cookie header to fill $cookies array + * + * @param string value of Set-Cookie header + * @link http://cgi.netscape.com/newsref/std/cookie_spec.html + */ + protected function parseCookie($cookieString) + { + $cookie = array( + 'expires' => null, + 'domain' => null, + 'path' => null, + 'secure' => false + ); + + // Only a name=value pair + if (!strpos($cookieString, ';')) { + $pos = strpos($cookieString, '='); + $cookie['name'] = trim(substr($cookieString, 0, $pos)); + $cookie['value'] = trim(substr($cookieString, $pos + 1)); + + // Some optional parameters are supplied + } else { + $elements = explode(';', $cookieString); + $pos = strpos($elements[0], '='); + $cookie['name'] = trim(substr($elements[0], 0, $pos)); + $cookie['value'] = trim(substr($elements[0], $pos + 1)); + + for ($i = 1; $i < count($elements); $i++) { + if (false === strpos($elements[$i], '=')) { + $elName = trim($elements[$i]); + $elValue = null; + } else { + list ($elName, $elValue) = array_map('trim', explode('=', $elements[$i])); + } + $elName = strtolower($elName); + if ('secure' == $elName) { + $cookie['secure'] = true; + } elseif ('expires' == $elName) { + $cookie['expires'] = str_replace('"', '', $elValue); + } elseif ('path' == $elName || 'domain' == $elName) { + $cookie[$elName] = urldecode($elValue); + } else { + $cookie[$elName] = $elValue; + } + } + } + $this->cookies[] = $cookie; + } + + /** + * Appends a string to the response body + * @param string + */ + public function appendBody($bodyChunk) + { + $this->body .= $bodyChunk; + } + + /** + * Returns the status code + * @return integer + */ + public function getStatus() + { + return $this->code; + } + + /** + * Returns the reason phrase + * @return string + */ + public function getReasonPhrase() + { + return $this->reasonPhrase; + } + + /** + * Returns either the named header or all response headers + * + * @param string Name of header to return + * @return string|array Value of $headerName header (null if header is + * not present), array of all response headers if + * $headerName is null + */ + public function getHeader($headerName = null) + { + if (null === $headerName) { + return $this->headers; + } else { + $headerName = strtolower($headerName); + return isset($this->headers[$headerName])? $this->headers[$headerName]: null; + } + } + + /** + * Returns cookies set in response + * + * @return array + */ + public function getCookies() + { + return $this->cookies; + } + + /** + * Returns the body of the response + * + * @return string + * @throws HTTP_Request2_Exception if body cannot be decoded + */ + public function getBody() + { + if (!$this->bodyEncoded || + !in_array(strtolower($this->getHeader('content-encoding')), array('gzip', 'deflate')) + ) { + return $this->body; + + } else { + if (extension_loaded('mbstring') && (2 & ini_get('mbstring.func_overload'))) { + $oldEncoding = mb_internal_encoding(); + mb_internal_encoding('iso-8859-1'); + } + + try { + switch (strtolower($this->getHeader('content-encoding'))) { + case 'gzip': + $decoded = self::decodeGzip($this->body); + break; + case 'deflate': + $decoded = self::decodeDeflate($this->body); + } + } catch (Exception $e) { + } + + if (!empty($oldEncoding)) { + mb_internal_encoding($oldEncoding); + } + if (!empty($e)) { + throw $e; + } + return $decoded; + } + } + + /** + * Get the HTTP version of the response + * + * @return string + */ + public function getVersion() + { + return $this->version; + } + + /** + * Decodes the message-body encoded by gzip + * + * The real decoding work is done by gzinflate() built-in function, this + * method only parses the header and checks data for compliance with + * RFC 1952 + * + * @param string gzip-encoded data + * @return string decoded data + * @throws HTTP_Request2_Exception + * @link http://tools.ietf.org/html/rfc1952 + */ + public static function decodeGzip($data) + { + $length = strlen($data); + // If it doesn't look like gzip-encoded data, don't bother + if (18 > $length || strcmp(substr($data, 0, 2), "\x1f\x8b")) { + return $data; + } + if (!function_exists('gzinflate')) { + throw new HTTP_Request2_Exception('Unable to decode body: gzip extension not available'); + } + $method = ord(substr($data, 2, 1)); + if (8 != $method) { + throw new HTTP_Request2_Exception('Error parsing gzip header: unknown compression method'); + } + $flags = ord(substr($data, 3, 1)); + if ($flags & 224) { + throw new HTTP_Request2_Exception('Error parsing gzip header: reserved bits are set'); + } + + // header is 10 bytes minimum. may be longer, though. + $headerLength = 10; + // extra fields, need to skip 'em + if ($flags & 4) { + if ($length - $headerLength - 2 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $extraLength = unpack('v', substr($data, 10, 2)); + if ($length - $headerLength - 2 - $extraLength[1] < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $headerLength += $extraLength[1] + 2; + } + // file name, need to skip that + if ($flags & 8) { + if ($length - $headerLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $filenameLength = strpos(substr($data, $headerLength), chr(0)); + if (false === $filenameLength || $length - $headerLength - $filenameLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $headerLength += $filenameLength + 1; + } + // comment, need to skip that also + if ($flags & 16) { + if ($length - $headerLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $commentLength = strpos(substr($data, $headerLength), chr(0)); + if (false === $commentLength || $length - $headerLength - $commentLength - 1 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $headerLength += $commentLength + 1; + } + // have a CRC for header. let's check + if ($flags & 2) { + if ($length - $headerLength - 2 < 8) { + throw new HTTP_Request2_Exception('Error parsing gzip header: data too short'); + } + $crcReal = 0xffff & crc32(substr($data, 0, $headerLength)); + $crcStored = unpack('v', substr($data, $headerLength, 2)); + if ($crcReal != $crcStored[1]) { + throw new HTTP_Request2_Exception('Header CRC check failed'); + } + $headerLength += 2; + } + // unpacked data CRC and size at the end of encoded data + $tmp = unpack('V2', substr($data, -8)); + $dataCrc = $tmp[1]; + $dataSize = $tmp[2]; + + // finally, call the gzinflate() function + // don't pass $dataSize to gzinflate, see bugs #13135, #14370 + $unpacked = gzinflate(substr($data, $headerLength, -8)); + if (false === $unpacked) { + throw new HTTP_Request2_Exception('gzinflate() call failed'); + } elseif ($dataSize != strlen($unpacked)) { + throw new HTTP_Request2_Exception('Data size check failed'); + } elseif ((0xffffffff & $dataCrc) != (0xffffffff & crc32($unpacked))) { + throw new HTTP_Request2_Exception('Data CRC check failed'); + } + return $unpacked; + } + + /** + * Decodes the message-body encoded by deflate + * + * @param string deflate-encoded data + * @return string decoded data + * @throws HTTP_Request2_Exception + */ + public static function decodeDeflate($data) + { + if (!function_exists('gzuncompress')) { + throw new HTTP_Request2_Exception('Unable to decode body: gzip extension not available'); + } + // RFC 2616 defines 'deflate' encoding as zlib format from RFC 1950, + // while many applications send raw deflate stream from RFC 1951. + // We should check for presence of zlib header and use gzuncompress() or + // gzinflate() as needed. See bug #15305 + $header = unpack('n', substr($data, 0, 2)); + return (0 == $header[1] % 31)? gzuncompress($data): gzinflate($data); + } +} +?> \ No newline at end of file diff --git a/extlib/Net/URL2.php b/extlib/Net/URL2.php index 7a654aed8f..f7fbcd9ce7 100644 --- a/extlib/Net/URL2.php +++ b/extlib/Net/URL2.php @@ -1,44 +1,58 @@ | -// +-----------------------------------------------------------------------+ -// -// $Id: URL2.php,v 1.10 2008/04/26 21:57:08 schmidt Exp $ -// -// Net_URL2 Class (PHP5 Only) - -// This code is released under the BSD License - http://www.opensource.org/licenses/bsd-license.php /** - * @license BSD License + * Net_URL2, a class representing a URL as per RFC 3986. + * + * PHP version 5 + * + * LICENSE: + * + * Copyright (c) 2007-2009, Peytz & Co. A/S + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the distribution. + * * Neither the name of the PHP_LexerGenerator nor the names of its + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * @category Networking + * @package Net_URL2 + * @author Christian Schmidt + * @copyright 2007-2008 Peytz & Co. A/S + * @license http://www.opensource.org/licenses/bsd-license.php New BSD License + * @version CVS: $Id: URL2.php 286661 2009-08-02 12:50:54Z schmidt $ + * @link http://www.rfc-editor.org/rfc/rfc3986.txt + */ + +/** + * Represents a URL as per RFC 3986. + * + * @category Networking + * @package Net_URL2 + * @author Christian Schmidt + * @copyright 2007-2008 Peytz & Co. ApS + * @license http://www.opensource.org/licenses/bsd-license.php New BSD License + * @version Release: @package_version@ + * @link http://pear.php.net/package/Net_URL2 */ class Net_URL2 { @@ -46,24 +60,24 @@ class Net_URL2 * Do strict parsing in resolve() (see RFC 3986, section 5.2.2). Default * is true. */ - const OPTION_STRICT = 'strict'; + const OPTION_STRICT = 'strict'; /** * Represent arrays in query using PHP's [] notation. Default is true. */ - const OPTION_USE_BRACKETS = 'use_brackets'; + const OPTION_USE_BRACKETS = 'use_brackets'; /** * URL-encode query variable keys. Default is true. */ - const OPTION_ENCODE_KEYS = 'encode_keys'; + const OPTION_ENCODE_KEYS = 'encode_keys'; /** * Query variable separators when parsing the query string. Every character * is considered a separator. Default is specified by the * arg_separator.input php.ini setting (this defaults to "&"). */ - const OPTION_SEPARATOR_INPUT = 'input_separator'; + const OPTION_SEPARATOR_INPUT = 'input_separator'; /** * Query variable separator used when generating the query string. Default @@ -75,7 +89,7 @@ class Net_URL2 /** * Default options corresponds to how PHP handles $_GET. */ - private $options = array( + private $_options = array( self::OPTION_STRICT => true, self::OPTION_USE_BRACKETS => true, self::OPTION_ENCODE_KEYS => true, @@ -86,41 +100,43 @@ class Net_URL2 /** * @var string|bool */ - private $scheme = false; + private $_scheme = false; /** * @var string|bool */ - private $userinfo = false; + private $_userinfo = false; /** * @var string|bool */ - private $host = false; + private $_host = false; /** * @var int|bool */ - private $port = false; + private $_port = false; /** * @var string */ - private $path = ''; + private $_path = ''; /** * @var string|bool */ - private $query = false; + private $_query = false; /** * @var string|bool */ - private $fragment = false; + private $_fragment = false; /** + * Constructor. + * * @param string $url an absolute or relative URL - * @param array $options + * @param array $options an array of OPTION_xxx constants */ public function __construct($url, $options = null) { @@ -130,12 +146,12 @@ class Net_URL2 ini_get('arg_separator.output')); if (is_array($options)) { foreach ($options as $optionName => $value) { - $this->setOption($optionName); + $this->setOption($optionName, $value); } } if (preg_match('@^([a-z][a-z0-9.+-]*):@i', $url, $reg)) { - $this->scheme = $reg[1]; + $this->_scheme = $reg[1]; $url = substr($url, strlen($reg[0])); } @@ -145,19 +161,58 @@ class Net_URL2 } $i = strcspn($url, '?#'); - $this->path = substr($url, 0, $i); + $this->_path = substr($url, 0, $i); $url = substr($url, $i); if (preg_match('@^\?([^#]*)@', $url, $reg)) { - $this->query = $reg[1]; + $this->_query = $reg[1]; $url = substr($url, strlen($reg[0])); } if ($url) { - $this->fragment = substr($url, 1); + $this->_fragment = substr($url, 1); } } + /** + * Magic Setter. + * + * This method will magically set the value of a private variable ($var) + * with the value passed as the args + * + * @param string $var The private variable to set. + * @param mixed $arg An argument of any type. + * @return void + */ + public function __set($var, $arg) + { + $method = 'set' . $var; + if (method_exists($this, $method)) { + $this->$method($arg); + } + } + + /** + * Magic Getter. + * + * This is the magic get method to retrieve the private variable + * that was set by either __set() or it's setter... + * + * @param string $var The property name to retrieve. + * @return mixed $this->$var Either a boolean false if the + * property is not set or the value + * of the private property. + */ + public function __get($var) + { + $method = 'get' . $var; + if (method_exists($this, $method)) { + return $this->$method(); + } + + return false; + } + /** * Returns the scheme, e.g. "http" or "urn", or false if there is no * scheme specified, i.e. if this is a relative URL. @@ -166,18 +221,23 @@ class Net_URL2 */ public function getScheme() { - return $this->scheme; + return $this->_scheme; } /** - * @param string|bool $scheme + * Sets the scheme, e.g. "http" or "urn". Specify false if there is no + * scheme specified, i.e. if this is a relative URL. + * + * @param string|bool $scheme e.g. "http" or "urn", or false if there is no + * scheme specified, i.e. if this is a relative + * URL * * @return void * @see getScheme() */ public function setScheme($scheme) { - $this->scheme = $scheme; + $this->_scheme = $scheme; } /** @@ -188,7 +248,9 @@ class Net_URL2 */ public function getUser() { - return $this->userinfo !== false ? preg_replace('@:.*$@', '', $this->userinfo) : false; + return $this->_userinfo !== false + ? preg_replace('@:.*$@', '', $this->_userinfo) + : false; } /** @@ -201,7 +263,9 @@ class Net_URL2 */ public function getPassword() { - return $this->userinfo !== false ? substr(strstr($this->userinfo, ':'), 1) : false; + return $this->_userinfo !== false + ? substr(strstr($this->_userinfo, ':'), 1) + : false; } /** @@ -212,7 +276,7 @@ class Net_URL2 */ public function getUserinfo() { - return $this->userinfo; + return $this->_userinfo; } /** @@ -220,15 +284,15 @@ class Net_URL2 * in the userinfo part as username ":" password. * * @param string|bool $userinfo userinfo or username - * @param string|bool $password + * @param string|bool $password optional password, or false * * @return void */ public function setUserinfo($userinfo, $password = false) { - $this->userinfo = $userinfo; + $this->_userinfo = $userinfo; if ($password !== false) { - $this->userinfo .= ':' . $password; + $this->_userinfo .= ':' . $password; } } @@ -236,21 +300,24 @@ class Net_URL2 * Returns the host part, or false if there is no authority part, e.g. * relative URLs. * - * @return string|bool + * @return string|bool a hostname, an IP address, or false */ public function getHost() { - return $this->host; + return $this->_host; } /** - * @param string|bool $host + * Sets the host part. Specify false if there is no authority part, e.g. + * relative URLs. + * + * @param string|bool $host a hostname, an IP address, or false * * @return void */ public function setHost($host) { - $this->host = $host; + $this->_host = $host; } /** @@ -261,65 +328,72 @@ class Net_URL2 */ public function getPort() { - return $this->port; + return $this->_port; } /** - * @param int|bool $port + * Sets the port number. Specify false if there is no port number specified, + * i.e. if the default port is to be used. + * + * @param int|bool $port a port number, or false * * @return void */ public function setPort($port) { - $this->port = intval($port); + $this->_port = intval($port); } /** * Returns the authority part, i.e. [ userinfo "@" ] host [ ":" port ], or - * false if there is no authority none. + * false if there is no authority. * * @return string|bool */ public function getAuthority() { - if (!$this->host) { + if (!$this->_host) { return false; } $authority = ''; - if ($this->userinfo !== false) { - $authority .= $this->userinfo . '@'; + if ($this->_userinfo !== false) { + $authority .= $this->_userinfo . '@'; } - $authority .= $this->host; + $authority .= $this->_host; - if ($this->port !== false) { - $authority .= ':' . $this->port; + if ($this->_port !== false) { + $authority .= ':' . $this->_port; } return $authority; } /** - * @param string|false $authority + * Sets the authority part, i.e. [ userinfo "@" ] host [ ":" port ]. Specify + * false if there is no authority. + * + * @param string|false $authority a hostname or an IP addresse, possibly + * with userinfo prefixed and port number + * appended, e.g. "foo:bar@example.org:81". * * @return void */ public function setAuthority($authority) { - $this->user = false; - $this->pass = false; - $this->host = false; - $this->port = false; - if (preg_match('@^(([^\@]+)\@)?([^:]+)(:(\d*))?$@', $authority, $reg)) { + $this->_userinfo = false; + $this->_host = false; + $this->_port = false; + if (preg_match('@^(([^\@]*)\@)?([^:]+)(:(\d*))?$@', $authority, $reg)) { if ($reg[1]) { - $this->userinfo = $reg[2]; + $this->_userinfo = $reg[2]; } - $this->host = $reg[3]; + $this->_host = $reg[3]; if (isset($reg[5])) { - $this->port = intval($reg[5]); + $this->_port = intval($reg[5]); } } } @@ -331,65 +405,74 @@ class Net_URL2 */ public function getPath() { - return $this->path; + return $this->_path; } /** - * @param string $path + * Sets the path part (possibly an empty string). + * + * @param string $path a path * * @return void */ public function setPath($path) { - $this->path = $path; + $this->_path = $path; } /** * Returns the query string (excluding the leading "?"), or false if "?" - * isn't present in the URL. + * is not present in the URL. * * @return string|bool * @see self::getQueryVariables() */ public function getQuery() { - return $this->query; + return $this->_query; } /** - * @param string|bool $query + * Sets the query string (excluding the leading "?"). Specify false if "?" + * is not present in the URL. + * + * @param string|bool $query a query string, e.g. "foo=1&bar=2" * * @return void * @see self::setQueryVariables() */ public function setQuery($query) { - $this->query = $query; + $this->_query = $query; } /** - * Returns the fragment name, or false if "#" isn't present in the URL. + * Returns the fragment name, or false if "#" is not present in the URL. * * @return string|bool */ public function getFragment() { - return $this->fragment; + return $this->_fragment; } /** - * @param string|bool $fragment + * Sets the fragment name. Specify false if "#" is not present in the URL. + * + * @param string|bool $fragment a fragment excluding the leading "#", or + * false * * @return void */ public function setFragment($fragment) { - $this->fragment = $fragment; + $this->_fragment = $fragment; } /** * Returns the query string like an array as the variables would appear in - * $_GET in a PHP script. + * $_GET in a PHP script. If the URL does not contain a "?", an empty array + * is returned. * * @return array */ @@ -398,7 +481,7 @@ class Net_URL2 $pattern = '/[' . preg_quote($this->getOption(self::OPTION_SEPARATOR_INPUT), '/') . ']/'; - $parts = preg_split($pattern, $this->query, -1, PREG_SPLIT_NO_EMPTY); + $parts = preg_split($pattern, $this->_query, -1, PREG_SPLIT_NO_EMPTY); $return = array(); foreach ($parts as $part) { @@ -445,6 +528,8 @@ class Net_URL2 } /** + * Sets the query string to the specified variable in the query string. + * * @param array $array (name => value) array * * @return void @@ -452,11 +537,11 @@ class Net_URL2 public function setQueryVariables(array $array) { if (!$array) { - $this->query = false; + $this->_query = false; } else { foreach ($array as $name => $value) { if ($this->getOption(self::OPTION_ENCODE_KEYS)) { - $name = rawurlencode($name); + $name = self::urlencode($name); } if (is_array($value)) { @@ -466,19 +551,21 @@ class Net_URL2 : ($name . '=' . $v); } } elseif (!is_null($value)) { - $parts[] = $name . '=' . $value; + $parts[] = $name . '=' . self::urlencode($value); } else { $parts[] = $name; } } - $this->query = implode($this->getOption(self::OPTION_SEPARATOR_OUTPUT), - $parts); + $this->_query = implode($this->getOption(self::OPTION_SEPARATOR_OUTPUT), + $parts); } } /** - * @param string $name - * @param mixed $value + * Sets the specified variable in the query string. + * + * @param string $name variable name + * @param mixed $value variable value * * @return array */ @@ -490,7 +577,9 @@ class Net_URL2 } /** - * @param string $name + * Removes the specifed variable from the query string. + * + * @param string $name a query string variable, e.g. "foo" in "?foo=1" * * @return void */ @@ -511,27 +600,38 @@ class Net_URL2 // See RFC 3986, section 5.3 $url = ""; - if ($this->scheme !== false) { - $url .= $this->scheme . ':'; + if ($this->_scheme !== false) { + $url .= $this->_scheme . ':'; } $authority = $this->getAuthority(); if ($authority !== false) { $url .= '//' . $authority; } - $url .= $this->path; + $url .= $this->_path; - if ($this->query !== false) { - $url .= '?' . $this->query; + if ($this->_query !== false) { + $url .= '?' . $this->_query; } - if ($this->fragment !== false) { - $url .= '#' . $this->fragment; + if ($this->_fragment !== false) { + $url .= '#' . $this->_fragment; } return $url; } + /** + * Returns a string representation of this URL. + * + * @return string + * @see toString() + */ + public function __toString() + { + return $this->getURL(); + } + /** * Returns a normalized string representation of this URL. This is useful * for comparison of URLs. @@ -555,36 +655,38 @@ class Net_URL2 // See RFC 3886, section 6 // Schemes are case-insensitive - if ($this->scheme) { - $this->scheme = strtolower($this->scheme); + if ($this->_scheme) { + $this->_scheme = strtolower($this->_scheme); } // Hostnames are case-insensitive - if ($this->host) { - $this->host = strtolower($this->host); + if ($this->_host) { + $this->_host = strtolower($this->_host); } // Remove default port number for known schemes (RFC 3986, section 6.2.3) - if ($this->port && - $this->scheme && - $this->port == getservbyname($this->scheme, 'tcp')) { + if ($this->_port && + $this->_scheme && + $this->_port == getservbyname($this->_scheme, 'tcp')) { - $this->port = false; + $this->_port = false; } // Normalize case of %XX percentage-encodings (RFC 3986, section 6.2.2.1) - foreach (array('userinfo', 'host', 'path') as $part) { + foreach (array('_userinfo', '_host', '_path') as $part) { if ($this->$part) { - $this->$part = preg_replace('/%[0-9a-f]{2}/ie', 'strtoupper("\0")', $this->$part); + $this->$part = preg_replace('/%[0-9a-f]{2}/ie', + 'strtoupper("\0")', + $this->$part); } } // Path segment normalization (RFC 3986, section 6.2.2.3) - $this->path = self::removeDotSegments($this->path); + $this->_path = self::removeDotSegments($this->_path); // Scheme based normalization (RFC 3986, section 6.2.3) - if ($this->host && !$this->path) { - $this->path = '/'; + if ($this->_host && !$this->_path) { + $this->_path = '/'; } } @@ -595,7 +697,7 @@ class Net_URL2 */ public function isAbsolute() { - return (bool) $this->scheme; + return (bool) $this->_scheme; } /** @@ -608,7 +710,7 @@ class Net_URL2 */ public function resolve($reference) { - if (is_string($reference)) { + if (!$reference instanceof Net_URL2) { $reference = new self($reference); } if (!$this->isAbsolute()) { @@ -617,54 +719,54 @@ class Net_URL2 // A non-strict parser may ignore a scheme in the reference if it is // identical to the base URI's scheme. - if (!$this->getOption(self::OPTION_STRICT) && $reference->scheme == $this->scheme) { - $reference->scheme = false; + if (!$this->getOption(self::OPTION_STRICT) && $reference->_scheme == $this->_scheme) { + $reference->_scheme = false; } $target = new self(''); - if ($reference->scheme !== false) { - $target->scheme = $reference->scheme; + if ($reference->_scheme !== false) { + $target->_scheme = $reference->_scheme; $target->setAuthority($reference->getAuthority()); - $target->path = self::removeDotSegments($reference->path); - $target->query = $reference->query; + $target->_path = self::removeDotSegments($reference->_path); + $target->_query = $reference->_query; } else { $authority = $reference->getAuthority(); if ($authority !== false) { $target->setAuthority($authority); - $target->path = self::removeDotSegments($reference->path); - $target->query = $reference->query; + $target->_path = self::removeDotSegments($reference->_path); + $target->_query = $reference->_query; } else { - if ($reference->path == '') { - $target->path = $this->path; - if ($reference->query !== false) { - $target->query = $reference->query; + if ($reference->_path == '') { + $target->_path = $this->_path; + if ($reference->_query !== false) { + $target->_query = $reference->_query; } else { - $target->query = $this->query; + $target->_query = $this->_query; } } else { - if (substr($reference->path, 0, 1) == '/') { - $target->path = self::removeDotSegments($reference->path); + if (substr($reference->_path, 0, 1) == '/') { + $target->_path = self::removeDotSegments($reference->_path); } else { // Merge paths (RFC 3986, section 5.2.3) - if ($this->host !== false && $this->path == '') { - $target->path = '/' . $this->path; + if ($this->_host !== false && $this->_path == '') { + $target->_path = '/' . $this->_path; } else { - $i = strrpos($this->path, '/'); + $i = strrpos($this->_path, '/'); if ($i !== false) { - $target->path = substr($this->path, 0, $i + 1); + $target->_path = substr($this->_path, 0, $i + 1); } - $target->path .= $reference->path; + $target->_path .= $reference->_path; } - $target->path = self::removeDotSegments($target->path); + $target->_path = self::removeDotSegments($target->_path); } - $target->query = $reference->query; + $target->_query = $reference->_query; } $target->setAuthority($this->getAuthority()); } - $target->scheme = $this->scheme; + $target->_scheme = $this->_scheme; } - $target->fragment = $reference->fragment; + $target->_fragment = $reference->_fragment; return $target; } @@ -677,7 +779,7 @@ class Net_URL2 * * @return string a path */ - private static function removeDotSegments($path) + public static function removeDotSegments($path) { $output = ''; @@ -685,28 +787,25 @@ class Net_URL2 // method $j = 0; while ($path && $j++ < 100) { - // Step A if (substr($path, 0, 2) == './') { + // Step 2.A $path = substr($path, 2); } elseif (substr($path, 0, 3) == '../') { + // Step 2.A $path = substr($path, 3); - - // Step B } elseif (substr($path, 0, 3) == '/./' || $path == '/.') { + // Step 2.B $path = '/' . substr($path, 3); - - // Step C } elseif (substr($path, 0, 4) == '/../' || $path == '/..') { - $path = '/' . substr($path, 4); - $i = strrpos($output, '/'); + // Step 2.C + $path = '/' . substr($path, 4); + $i = strrpos($output, '/'); $output = $i === false ? '' : substr($output, 0, $i); - - // Step D } elseif ($path == '.' || $path == '..') { + // Step 2.D $path = ''; - - // Step E } else { + // Step 2.E $i = strpos($path, '/'); if ($i === 0) { $i = strpos($path, '/', 1); @@ -722,6 +821,22 @@ class Net_URL2 return $output; } + /** + * Percent-encodes all non-alphanumeric characters except these: _ . - ~ + * Similar to PHP's rawurlencode(), except that it also encodes ~ in PHP + * 5.2.x and earlier. + * + * @param $raw the string to encode + * @return string + */ + public static function urlencode($string) + { + $encoded = rawurlencode($string); + // This is only necessary in PHP < 5.3. + $encoded = str_replace('%7E', '~', $encoded); + return $encoded; + } + /** * Returns a Net_URL2 instance representing the canonical URL of the * currently executing PHP script. @@ -737,13 +852,13 @@ class Net_URL2 // Begin with a relative URL $url = new self($_SERVER['PHP_SELF']); - $url->scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; - $url->host = $_SERVER['SERVER_NAME']; + $url->_scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; + $url->_host = $_SERVER['SERVER_NAME']; $port = intval($_SERVER['SERVER_PORT']); - if ($url->scheme == 'http' && $port != 80 || - $url->scheme == 'https' && $port != 443) { + if ($url->_scheme == 'http' && $port != 80 || + $url->_scheme == 'https' && $port != 443) { - $url->port = $port; + $url->_port = $port; } return $url; } @@ -773,7 +888,7 @@ class Net_URL2 // Begin with a relative URL $url = new self($_SERVER['REQUEST_URI']); - $url->scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; + $url->_scheme = isset($_SERVER['HTTPS']) ? 'https' : 'http'; // Set host and possibly port $url->setAuthority($_SERVER['HTTP_HOST']); return $url; @@ -792,10 +907,10 @@ class Net_URL2 */ function setOption($optionName, $value) { - if (!array_key_exists($optionName, $this->options)) { + if (!array_key_exists($optionName, $this->_options)) { return false; } - $this->options[$optionName] = $value; + $this->_options[$optionName] = $value; } /** @@ -807,7 +922,7 @@ class Net_URL2 */ function getOption($optionName) { - return isset($this->options[$optionName]) - ? $this->options[$optionName] : false; + return isset($this->_options[$optionName]) + ? $this->_options[$optionName] : false; } } diff --git a/install.php b/install.php index 6bfc4c2e21..d34e92dab4 100644 --- a/install.php +++ b/install.php @@ -93,6 +93,13 @@ $external_libraries=array( 'include'=>'HTTP/Request.php', 'check_class'=>'HTTP_Request' ), + array( + 'name'=>'HTTP_Request2', + 'pear'=>'HTTP_Request2', + 'url'=>'http://pear.php.net/package/HTTP_Request2', + 'include'=>'HTTP/Request2.php', + 'check_class'=>'HTTP_Request2' + ), array( 'name'=>'Mail', 'pear'=>'Mail', diff --git a/lib/Shorturl_api.php b/lib/Shorturl_api.php index 18ae7719b2..de4d550127 100644 --- a/lib/Shorturl_api.php +++ b/lib/Shorturl_api.php @@ -41,22 +41,18 @@ abstract class ShortUrlApi return strlen($url) >= common_config('site', 'shorturllength'); } - protected function http_post($data) { - $ch = curl_init(); - curl_setopt($ch, CURLOPT_URL, $this->service_url); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($ch, CURLOPT_POST, 1); - curl_setopt($ch, CURLOPT_POSTFIELDS, $data); - $response = curl_exec($ch); - $code = curl_getinfo($ch, CURLINFO_HTTP_CODE); - curl_close($ch); - if (($code < 200) || ($code >= 400)) return false; - return $response; + protected function http_post($data) + { + $request = HTTPClient::start(); + $response = $request->post($this->service_url, null, $data); + return $response->getBody(); } - protected function http_get($url) { - $encoded_url = urlencode($url); - return file_get_contents("{$this->service_url}$encoded_url"); + protected function http_get($url) + { + $request = HTTPClient::start(); + $response = $request->get($this->service_url . urlencode($url)); + return $response->getBody(); } protected function tidy($response) { diff --git a/lib/curlclient.php b/lib/curlclient.php deleted file mode 100644 index c307c29844..0000000000 --- a/lib/curlclient.php +++ /dev/null @@ -1,179 +0,0 @@ -. - * - * @category HTTP - * @package StatusNet - * @author Evan Prodromou - * @copyright 2009 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -if (!defined('STATUSNET')) { - exit(1); -} - -define(CURLCLIENT_VERSION, "0.1"); - -/** - * Wrapper for Curl - * - * Makes Curl HTTP client calls within our HTTPClient framework - * - * @category HTTP - * @package StatusNet - * @author Evan Prodromou - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -class CurlClient extends HTTPClient -{ - function __construct() - { - } - - function head($url, $headers=null) - { - $ch = curl_init($url); - - $this->setup($ch); - - curl_setopt_array($ch, - array(CURLOPT_NOBODY => true)); - - if (!is_null($headers)) { - curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); - } - - $result = curl_exec($ch); - - curl_close($ch); - - return $this->parseResults($result); - } - - function get($url, $headers=null) - { - $ch = curl_init($url); - - $this->setup($ch); - - if (!is_null($headers)) { - curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); - } - - $result = curl_exec($ch); - - curl_close($ch); - - return $this->parseResults($result); - } - - function post($url, $headers=null, $body=null) - { - $ch = curl_init($url); - - $this->setup($ch); - - curl_setopt($ch, CURLOPT_POST, true); - - if (!is_null($body)) { - curl_setopt($ch, CURLOPT_POSTFIELDS, $body); - } - - if (!is_null($headers)) { - curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); - } - - $result = curl_exec($ch); - - curl_close($ch); - - return $this->parseResults($result); - } - - function setup($ch) - { - curl_setopt_array($ch, - array(CURLOPT_USERAGENT => $this->userAgent(), - CURLOPT_HEADER => true, - CURLOPT_RETURNTRANSFER => true)); - } - - function userAgent() - { - $version = curl_version(); - return parent::userAgent() . " CurlClient/".CURLCLIENT_VERSION . " cURL/" . $version['version']; - } - - function parseResults($results) - { - $resp = new HTTPResponse(); - - $lines = explode("\r\n", $results); - - if (preg_match("#^HTTP/1.[01] (\d\d\d) .+$#", $lines[0], $match)) { - $resp->code = $match[1]; - } else { - throw Exception("Bad format: initial line is not HTTP status line"); - } - - $lastk = null; - - for ($i = 1; $i < count($lines); $i++) { - $l =& $lines[$i]; - if (mb_strlen($l) == 0) { - $resp->body = implode("\r\n", array_slice($lines, $i + 1)); - break; - } - if (preg_match("#^(\S+):\s+(.*)$#", $l, $match)) { - $k = $match[1]; - $v = $match[2]; - - if (array_key_exists($k, $resp->headers)) { - if (is_array($resp->headers[$k])) { - $resp->headers[$k][] = $v; - } else { - $resp->headers[$k] = array($resp->headers[$k], $v); - } - } else { - $resp->headers[$k] = $v; - } - $lastk = $k; - } else if (preg_match("#^\s+(.*)$#", $l, $match)) { - // continuation line - if (is_null($lastk)) { - throw Exception("Bad format: initial whitespace in headers"); - } - $h =& $resp->headers[$lastk]; - if (is_array($h)) { - $n = count($h); - $h[$n-1] .= $match[1]; - } else { - $h .= $match[1]; - } - } - } - - return $resp; - } -} diff --git a/lib/default.php b/lib/default.php index 7ec8558b07..f6cc4b725a 100644 --- a/lib/default.php +++ b/lib/default.php @@ -228,8 +228,6 @@ $default = array('contentlimit' => null), 'message' => array('contentlimit' => null), - 'http' => - array('client' => 'curl'), // XXX: should this be the default? 'location' => array('namespace' => 1), // 1 = geonames, 2 = Yahoo Where on Earth ); diff --git a/lib/httpclient.php b/lib/httpclient.php index f16e31e103..3f82620761 100644 --- a/lib/httpclient.php +++ b/lib/httpclient.php @@ -31,6 +31,9 @@ if (!defined('STATUSNET')) { exit(1); } +require_once 'HTTP/Request2.php'; +require_once 'HTTP/Request2/Response.php'; + /** * Useful structure for HTTP responses * @@ -38,18 +41,53 @@ if (!defined('STATUSNET')) { * ways of doing them. This class hides the specifics of what underlying * library (curl or PHP-HTTP or whatever) that's used. * + * This extends the HTTP_Request2_Response class with methods to get info + * about any followed redirects. + * * @category HTTP - * @package StatusNet - * @author Evan Prodromou - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ + * @package StatusNet + * @author Evan Prodromou + * @author Brion Vibber + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ */ - -class HTTPResponse +class HTTPResponse extends HTTP_Request2_Response { - public $code = null; - public $headers = array(); - public $body = null; + function __construct(HTTP_Request2_Response $response, $url, $redirects=0) + { + foreach (get_object_vars($response) as $key => $val) { + $this->$key = $val; + } + $this->url = strval($url); + $this->redirectCount = intval($redirects); + } + + /** + * Get the count of redirects that have been followed, if any. + * @return int + */ + function getRedirectCount() + { + return $this->redirectCount; + } + + /** + * Gets the final target URL, after any redirects have been followed. + * @return string URL + */ + function getUrl() + { + return $this->url; + } + + /** + * Check if the response is OK, generally a 200 status code. + * @return bool + */ + function isOk() + { + return ($this->getStatus() == 200); + } } /** @@ -59,64 +97,163 @@ class HTTPResponse * ways of doing them. This class hides the specifics of what underlying * library (curl or PHP-HTTP or whatever) that's used. * + * This extends the PEAR HTTP_Request2 package: + * - sends StatusNet-specific User-Agent header + * - 'follow_redirects' config option, defaulting off + * - 'max_redirs' config option, defaulting to 10 + * - extended response class adds getRedirectCount() and getUrl() methods + * - get() and post() convenience functions return body content directly + * * @category HTTP * @package StatusNet * @author Evan Prodromou + * @author Brion Vibber * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ -class HTTPClient +class HTTPClient extends HTTP_Request2 { - static $_client = null; - static function start() + function __construct($url=null, $method=self::METHOD_GET, $config=array()) { - if (!is_null(self::$_client)) { - return self::$_client; + $this->config['max_redirs'] = 10; + $this->config['follow_redirects'] = true; + parent::__construct($url, $method, $config); + $this->setHeader('User-Agent', $this->userAgent()); + } + + /** + * Convenience/back-compat instantiator + * @return HTTPClient + */ + public static function start() + { + return new HTTPClient(); + } + + /** + * Convenience function to run a GET request. + * + * @return HTTPResponse + * @throws HTTP_Request2_Exception + */ + public function get($url, $headers=array()) + { + return $this->doRequest($url, self::METHOD_GET, $headers); + } + + /** + * Convenience function to run a HEAD request. + * + * @return HTTPResponse + * @throws HTTP_Request2_Exception + */ + public function head($url, $headers=array()) + { + return $this->doRequest($url, self::METHOD_HEAD, $headers); + } + + /** + * Convenience function to POST form data. + * + * @param string $url + * @param array $headers optional associative array of HTTP headers + * @param array $data optional associative array or blob of form data to submit + * @return HTTPResponse + * @throws HTTP_Request2_Exception + */ + public function post($url, $headers=array(), $data=array()) + { + if ($data) { + $this->addPostParameter($data); } + return $this->doRequest($url, self::METHOD_POST, $headers); + } - $type = common_config('http', 'client'); - - switch ($type) { - case 'curl': - self::$_client = new CurlClient(); - break; - default: - throw new Exception("Unknown HTTP client type '$type'"); - break; + /** + * @return HTTPResponse + * @throws HTTP_Request2_Exception + */ + protected function doRequest($url, $method, $headers) + { + $this->setUrl($url); + $this->setMethod($method); + if ($headers) { + foreach ($headers as $header) { + $this->setHeader($header); + } } - - return self::$_client; - } - - function head($url, $headers) - { - throw new Exception("HEAD method unimplemented"); - } - - function get($url, $headers) - { - throw new Exception("GET method unimplemented"); - } - - function post($url, $headers, $body) - { - throw new Exception("POST method unimplemented"); - } - - function put($url, $headers, $body) - { - throw new Exception("PUT method unimplemented"); - } - - function delete($url, $headers) - { - throw new Exception("DELETE method unimplemented"); + $response = $this->send(); + return $response; + } + + protected function log($level, $detail) { + $method = $this->getMethod(); + $url = $this->getUrl(); + common_log($level, __CLASS__ . ": HTTP $method $url - $detail"); } + /** + * Pulls up StatusNet's customized user-agent string, so services + * we hit can track down the responsible software. + * + * @return string + */ function userAgent() { return "StatusNet/".STATUSNET_VERSION." (".STATUSNET_CODENAME.")"; } + + /** + * Actually performs the HTTP request and returns an HTTPResponse object + * with response body and header info. + * + * Wraps around parent send() to add logging and redirection processing. + * + * @return HTTPResponse + * @throw HTTP_Request2_Exception + */ + public function send() + { + $maxRedirs = intval($this->config['max_redirs']); + if (empty($this->config['follow_redirects'])) { + $maxRedirs = 0; + } + $redirs = 0; + do { + try { + $response = parent::send(); + } catch (HTTP_Request2_Exception $e) { + $this->log(LOG_ERR, $e->getMessage()); + throw $e; + } + $code = $response->getStatus(); + if ($code >= 200 && $code < 300) { + $reason = $response->getReasonPhrase(); + $this->log(LOG_INFO, "$code $reason"); + } elseif ($code >= 300 && $code < 400) { + $url = $this->getUrl(); + $target = $response->getHeader('Location'); + + if (++$redirs >= $maxRedirs) { + common_log(LOG_ERR, __CLASS__ . ": Too many redirects: skipping $code redirect from $url to $target"); + break; + } + try { + $this->setUrl($target); + $this->setHeader('Referer', $url); + common_log(LOG_INFO, __CLASS__ . ": Following $code redirect from $url to $target"); + continue; + } catch (HTTP_Request2_Exception $e) { + common_log(LOG_ERR, __CLASS__ . ": Invalid $code redirect from $url to $target"); + } + } else { + $reason = $response->getReasonPhrase(); + $this->log(LOG_ERR, "$code $reason"); + } + break; + } while ($maxRedirs); + return new HTTPResponse($response, $this->getUrl(), $redirs); + } } diff --git a/lib/oauthclient.php b/lib/oauthclient.php index f1827726e7..1a86e2460e 100644 --- a/lib/oauthclient.php +++ b/lib/oauthclient.php @@ -43,7 +43,7 @@ require_once 'OAuth.php'; * @link http://status.net/ * */ -class OAuthClientCurlException extends Exception +class OAuthClientException extends Exception { } @@ -97,9 +97,14 @@ class OAuthClient function getRequestToken($url) { $response = $this->oAuthGet($url); - parse_str($response); - $token = new OAuthToken($oauth_token, $oauth_token_secret); - return $token; + $arr = array(); + parse_str($response, $arr); + if (isset($arr['oauth_token']) && isset($arr['oauth_token_secret'])) { + $token = new OAuthToken($arr['oauth_token'], @$arr['oauth_token_secret']); + return $token; + } else { + throw new OAuthClientException(); + } } /** @@ -177,7 +182,7 @@ class OAuthClient } /** - * Make a HTTP request using cURL. + * Make a HTTP request. * * @param string $url Where to make the * @param array $params post parameters @@ -186,40 +191,32 @@ class OAuthClient */ function httpRequest($url, $params = null) { - $options = array( - CURLOPT_RETURNTRANSFER => true, - CURLOPT_FAILONERROR => true, - CURLOPT_HEADER => false, - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_USERAGENT => 'StatusNet', - CURLOPT_CONNECTTIMEOUT => 120, - CURLOPT_TIMEOUT => 120, - CURLOPT_HTTPAUTH => CURLAUTH_ANY, - CURLOPT_SSL_VERIFYPEER => false, + $request = new HTTPClient($url); + $request->setConfig(array( + 'connect_timeout' => 120, + 'timeout' => 120, + 'follow_redirects' => true, + 'ssl_verify_peer' => false, + )); - // Twitter is strict about accepting invalid "Expect" headers - - CURLOPT_HTTPHEADER => array('Expect:') - ); + // Twitter is strict about accepting invalid "Expect" headers + $request->setHeader('Expect', ''); if (isset($params)) { - $options[CURLOPT_POST] = true; - $options[CURLOPT_POSTFIELDS] = $params; + $request->setMethod(HTTP_Request2::METHOD_POST); + $request->setBody($params); } - $ch = curl_init($url); - curl_setopt_array($ch, $options); - $response = curl_exec($ch); - - if ($response === false) { - $msg = curl_error($ch); - $code = curl_errno($ch); - throw new OAuthClientCurlException($msg, $code); + try { + $response = $request->send(); + $code = $response->getStatus(); + if ($code < 200 || $code >= 400) { + throw new OAuthClientException($response->getBody(), $code); + } + return $response->getBody(); + } catch (Exception $e) { + throw new OAuthClientException($e->getMessage(), $e->getCode()); } - - curl_close($ch); - - return $response; } } diff --git a/lib/ping.php b/lib/ping.php index 175bf8440b..5698c40387 100644 --- a/lib/ping.php +++ b/lib/ping.php @@ -44,20 +44,16 @@ function ping_broadcast_notice($notice) { array('nickname' => $profile->nickname)), $tags)); - $context = stream_context_create(array('http' => array('method' => "POST", - 'header' => - "Content-Type: text/xml\r\n". - "User-Agent: StatusNet/".STATUSNET_VERSION."\r\n", - 'content' => $req))); - $file = file_get_contents($notify_url, false, $context); + $request = HTTPClient::start(); + $httpResponse = $request->post($notify_url, array('Content-Type: text/xml'), $req); - if ($file === false || mb_strlen($file) == 0) { + if (!$httpResponse || mb_strlen($httpResponse->getBody()) == 0) { common_log(LOG_WARNING, "XML-RPC empty results for ping ($notify_url, $notice->id) "); continue; } - $response = xmlrpc_decode($file); + $response = xmlrpc_decode($httpResponse->getBody()); if (is_array($response) && xmlrpc_is_fault($response)) { common_log(LOG_WARNING, diff --git a/lib/snapshot.php b/lib/snapshot.php index ede846e5b0..2a10c6b935 100644 --- a/lib/snapshot.php +++ b/lib/snapshot.php @@ -172,26 +172,9 @@ class Snapshot { // XXX: Use OICU2 and OAuth to make authorized requests - $postdata = http_build_query($this->stats); - - $opts = - array('http' => - array( - 'method' => 'POST', - 'header' => 'Content-type: '. - 'application/x-www-form-urlencoded', - 'content' => $postdata, - 'user_agent' => 'StatusNet/'.STATUSNET_VERSION - ) - ); - - $context = stream_context_create($opts); - $reporturl = common_config('snapshot', 'reporturl'); - - $result = @file_get_contents($reporturl, false, $context); - - return $result; + $request = HTTPClient::start(); + $request->post($reporturl, null, $this->stats); } /** diff --git a/plugins/BlogspamNetPlugin.php b/plugins/BlogspamNetPlugin.php index c14569746f..51236001aa 100644 --- a/plugins/BlogspamNetPlugin.php +++ b/plugins/BlogspamNetPlugin.php @@ -22,6 +22,7 @@ * @category Plugin * @package StatusNet * @author Evan Prodromou + * @author Brion Vibber * @copyright 2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ @@ -69,14 +70,12 @@ class BlogspamNetPlugin extends Plugin { $args = $this->testArgs($notice); common_debug("Blogspamnet args = " . print_r($args, TRUE)); - $request = xmlrpc_encode_request('testComment', array($args)); - $context = stream_context_create(array('http' => array('method' => "POST", - 'header' => - "Content-Type: text/xml\r\n". - "User-Agent: " . $this->userAgent(), - 'content' => $request))); - $file = file_get_contents($this->baseUrl, false, $context); - $response = xmlrpc_decode($file); + $requestBody = xmlrpc_encode_request('testComment', array($args)); + + $request = HTTPClient::start(); + $httpResponse = $request->post($this->baseUrl, array('Content-Type: text/xml'), $requestBody); + + $response = xmlrpc_decode($httpResponse->getBody()); if (xmlrpc_is_fault($response)) { throw new ServerException("$response[faultString] ($response[faultCode])", 500); } else { diff --git a/plugins/GeonamesPlugin.php b/plugins/GeonamesPlugin.php index 80ef44cc96..e18957c36d 100644 --- a/plugins/GeonamesPlugin.php +++ b/plugins/GeonamesPlugin.php @@ -74,8 +74,8 @@ class GeonamesPlugin extends Plugin $result = $client->get('http://ws.geonames.org/search?'.$str); - if ($result->code == "200") { - $rj = json_decode($result->body); + if ($result->isOk()) { + $rj = json_decode($result->getBody()); if (count($rj->geonames) > 0) { $n = $rj->geonames[0]; @@ -121,9 +121,9 @@ class GeonamesPlugin extends Plugin $result = $client->get('http://ws.geonames.org/hierarchyJSON?'.$str); - if ($result->code == "200") { + if ($result->isOk()) { - $rj = json_decode($result->body); + $rj = json_decode($result->getBody()); if (count($rj->geonames) > 0) { @@ -182,9 +182,9 @@ class GeonamesPlugin extends Plugin $result = $client->get('http://ws.geonames.org/findNearbyPlaceNameJSON?'.$str); - if ($result->code == "200") { + if ($result->isOk()) { - $rj = json_decode($result->body); + $rj = json_decode($result->getBody()); if (count($rj->geonames) > 0) { @@ -249,9 +249,9 @@ class GeonamesPlugin extends Plugin $result = $client->get('http://ws.geonames.org/hierarchyJSON?'.$str); - if ($result->code == "200") { + if ($result->isOk()) { - $rj = json_decode($result->body); + $rj = json_decode($result->getBody()); if (count($rj->geonames) > 0) { diff --git a/plugins/LilUrl/LilUrlPlugin.php b/plugins/LilUrl/LilUrlPlugin.php index 7665b6c1e4..852253b023 100644 --- a/plugins/LilUrl/LilUrlPlugin.php +++ b/plugins/LilUrl/LilUrlPlugin.php @@ -58,7 +58,10 @@ class LilUrl extends ShortUrlApi $y = @simplexml_load_string($response); if (!isset($y->body)) return $url; $x = $y->body->p[0]->a->attributes(); - if (isset($x['href'])) return $x['href']; + if (isset($x['href'])) { + common_log(LOG_INFO, __CLASS__ . ": shortened $url to $x[href]"); + return $x['href']; + } return $url; } } diff --git a/plugins/LinkbackPlugin.php b/plugins/LinkbackPlugin.php index 60f7a60c79..915d15c075 100644 --- a/plugins/LinkbackPlugin.php +++ b/plugins/LinkbackPlugin.php @@ -129,18 +129,12 @@ class LinkbackPlugin extends Plugin } } - $request = xmlrpc_encode_request('pingback.ping', $args); - $context = stream_context_create(array('http' => array('method' => "POST", - 'header' => - "Content-Type: text/xml\r\n". - "User-Agent: " . $this->userAgent(), - 'content' => $request))); - $file = file_get_contents($endpoint, false, $context); - if (!$file) { - common_log(LOG_WARNING, - "Pingback request failed for '$url' ($endpoint)"); - } else { - $response = xmlrpc_decode($file); + $request = HTTPClient::start(); + try { + $response = $request->post($endpoint, + array('Content-Type: text/xml'), + xmlrpc_encode_request('pingback.ping', $args)); + $response = xmlrpc_decode($response->getBody()); if (xmlrpc_is_fault($response)) { common_log(LOG_WARNING, "Pingback error for '$url' ($endpoint): ". @@ -150,6 +144,9 @@ class LinkbackPlugin extends Plugin "Pingback success for '$url' ($endpoint): ". "'$response'"); } + } catch (HTTP_Request2_Exception $e) { + common_log(LOG_WARNING, + "Pingback request failed for '$url' ($endpoint)"); } } diff --git a/plugins/SimpleUrl/SimpleUrlPlugin.php b/plugins/SimpleUrl/SimpleUrlPlugin.php index 82d7720487..d59d63e47c 100644 --- a/plugins/SimpleUrl/SimpleUrlPlugin.php +++ b/plugins/SimpleUrl/SimpleUrlPlugin.php @@ -65,15 +65,6 @@ class SimpleUrlPlugin extends Plugin class SimpleUrl extends ShortUrlApi { protected function shorten_imp($url) { - $curlh = curl_init(); - curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 20); // # seconds to wait - curl_setopt($curlh, CURLOPT_USERAGENT, 'StatusNet'); - curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true); - - curl_setopt($curlh, CURLOPT_URL, $this->service_url.urlencode($url)); - $short_url = curl_exec($curlh); - - curl_close($curlh); - return $short_url; + return $this->http_get($url); } } diff --git a/plugins/TwitterBridge/daemons/synctwitterfriends.php b/plugins/TwitterBridge/daemons/synctwitterfriends.php index ed2bf48a22..671e3c7afa 100755 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php @@ -152,8 +152,8 @@ class SyncTwitterFriendsDaemon extends ParallelizingDaemon $friends_ids = $client->friendsIds(); } catch (Exception $e) { common_log(LOG_WARNING, $this->name() . - ' - cURL error getting friend ids ' . - $e->getCode() . ' - ' . $e->getMessage()); + ' - error getting friend ids: ' . + $e->getMessage()); return $friends; } diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index 81bbbc7c5f..b5428316bd 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -109,12 +109,16 @@ class TwitterStatusFetcher extends ParallelizingDaemon $flink->find(); $flinks = array(); + common_log(LOG_INFO, "hello"); while ($flink->fetch()) { if (($flink->noticesync & FOREIGN_NOTICE_RECV) == FOREIGN_NOTICE_RECV) { $flinks[] = clone($flink); + common_log(LOG_INFO, "sync: foreign id $flink->foreign_id"); + } else { + common_log(LOG_INFO, "nothing to sync"); } } @@ -515,31 +519,32 @@ class TwitterStatusFetcher extends ParallelizingDaemon return $id; } + /** + * Fetch a remote avatar image and save to local storage. + * + * @param string $url avatar source URL + * @param string $filename bare local filename for download + * @return bool true on success, false on failure + */ function fetchAvatar($url, $filename) { - $avatarfile = Avatar::path($filename); + common_debug($this->name() . " - Fetching Twitter avatar: $url"); - $out = fopen($avatarfile, 'wb'); - if (!$out) { - common_log(LOG_WARNING, $this->name() . - " - Couldn't open file $filename"); + $request = HTTPClient::start(); + $response = $request->get($url); + if ($response->isOk()) { + $avatarfile = Avatar::path($filename); + $ok = file_put_contents($avatarfile, $response->getBody()); + if (!$ok) { + common_log(LOG_WARNING, $this->name() . + " - Couldn't open file $filename"); + return false; + } + } else { return false; } - common_debug($this->name() . " - Fetching Twitter avatar: $url"); - - $ch = curl_init(); - curl_setopt($ch, CURLOPT_URL, $url); - curl_setopt($ch, CURLOPT_FILE, $out); - curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); - curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); - curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0); - $result = curl_exec($ch); - curl_close($ch); - - fclose($out); - - return $result; + return true; } } diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index 1a5248a9b9..3c6803e49a 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -215,7 +215,7 @@ function broadcast_basicauth($notice, $flink) try { $status = $client->statusesUpdate($statustxt); - } catch (BasicAuthCurlException $e) { + } catch (HTTP_Request2_Exception $e) { return process_error($e, $flink); } diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index 2a93ff13e2..f1daefab12 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -125,7 +125,7 @@ class TwitterauthorizationAction extends Action $auth_link = $client->getAuthorizeLink($req_tok); - } catch (TwitterOAuthClientException $e) { + } catch (OAuthClientException $e) { $msg = sprintf('OAuth client cURL error - code: %1s, msg: %2s', $e->getCode(), $e->getMessage()); $this->serverError(_('Couldn\'t link your Twitter account.')); diff --git a/plugins/TwitterBridge/twitterbasicauthclient.php b/plugins/TwitterBridge/twitterbasicauthclient.php index 1040d72fb6..d1cf45aec6 100644 --- a/plugins/TwitterBridge/twitterbasicauthclient.php +++ b/plugins/TwitterBridge/twitterbasicauthclient.php @@ -31,26 +31,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -/** - * Exception wrapper for cURL errors - * - * @category Integration - * @package StatusNet - * @author Adrian Lang - * @author Brenda Wallace - * @author Craig Andrews - * @author Dan Moore - * @author Evan Prodromou - * @author mEDI - * @author Sarven Capadisli - * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - * - */ -class BasicAuthCurlException extends Exception -{ -} - /** * Class for talking to the Twitter API with HTTP Basic Auth. * @@ -198,45 +178,27 @@ class TwitterBasicAuthClient */ function httpRequest($url, $params = null, $auth = true) { - $options = array( - CURLOPT_RETURNTRANSFER => true, - CURLOPT_FAILONERROR => true, - CURLOPT_HEADER => false, - CURLOPT_FOLLOWLOCATION => true, - CURLOPT_USERAGENT => 'StatusNet', - CURLOPT_CONNECTTIMEOUT => 120, - CURLOPT_TIMEOUT => 120, - CURLOPT_HTTPAUTH => CURLAUTH_ANY, - CURLOPT_SSL_VERIFYPEER => false, - - // Twitter is strict about accepting invalid "Expect" headers - - CURLOPT_HTTPHEADER => array('Expect:') - ); - - if (isset($params)) { - $options[CURLOPT_POST] = true; - $options[CURLOPT_POSTFIELDS] = $params; - } + $request = HTTPClient::start(); + $request->setConfig(array( + 'follow_redirects' => true, + 'connect_timeout' => 120, + 'timeout' => 120, + 'ssl_verifypeer' => false, + )); if ($auth) { - $options[CURLOPT_USERPWD] = $this->screen_name . - ':' . $this->password; + $request->setAuth($this->screen_name, $this->password); } - $ch = curl_init($url); - curl_setopt_array($ch, $options); - $response = curl_exec($ch); - - if ($response === false) { - $msg = curl_error($ch); - $code = curl_errno($ch); - throw new BasicAuthCurlException($msg, $code); + if (isset($params)) { + // Twitter is strict about accepting invalid "Expect" headers + $headers = array('Expect:'); + $response = $request->post($url, $headers, $params); + } else { + $response = $request->get($url); } - curl_close($ch); - - return $response; + return $response->getBody(); } } diff --git a/plugins/WikiHashtagsPlugin.php b/plugins/WikiHashtagsPlugin.php index 0c5649aa45..334fc13ba1 100644 --- a/plugins/WikiHashtagsPlugin.php +++ b/plugins/WikiHashtagsPlugin.php @@ -68,14 +68,13 @@ class WikiHashtagsPlugin extends Plugin $editurl = sprintf('http://hashtags.wikia.com/index.php?title=%s&action=edit', urlencode($tag)); - $context = stream_context_create(array('http' => array('method' => "GET", - 'header' => - "User-Agent: " . $this->userAgent()))); - $html = @file_get_contents($url, false, $context); + $request = HTTPClient::start(); + $response = $request->get($url); + $html = $response->getBody(); $action->elementStart('div', array('id' => 'wikihashtags', 'class' => 'section')); - if (!empty($html)) { + if ($response->isOk() && !empty($html)) { $action->element('style', null, "span.editsection { display: none }\n". "table.toc { display: none }"); @@ -100,10 +99,4 @@ class WikiHashtagsPlugin extends Plugin return true; } - - function userAgent() - { - return 'WikiHashtagsPlugin/'.WIKIHASHTAGSPLUGIN_VERSION . - ' StatusNet/' . STATUSNET_VERSION; - } } diff --git a/scripts/enjitqueuehandler.php b/scripts/enjitqueuehandler.php index 08f733b07c..afcac539a6 100755 --- a/scripts/enjitqueuehandler.php +++ b/scripts/enjitqueuehandler.php @@ -46,8 +46,8 @@ class EnjitQueueHandler extends QueueHandler function start() { - $this->log(LOG_INFO, "Starting EnjitQueueHandler"); - $this->log(LOG_INFO, "Broadcasting to ".common_config('enjit', 'apiurl')); + $this->log(LOG_INFO, "Starting EnjitQueueHandler"); + $this->log(LOG_INFO, "Broadcasting to ".common_config('enjit', 'apiurl')); return true; } @@ -56,16 +56,16 @@ class EnjitQueueHandler extends QueueHandler $profile = Profile::staticGet($notice->profile_id); - $this->log(LOG_INFO, "Posting Notice ".$notice->id." from ".$profile->nickname); + $this->log(LOG_INFO, "Posting Notice ".$notice->id." from ".$profile->nickname); - if ( ! $notice->is_local ) { - $this->log(LOG_INFO, "Skipping remote notice"); - return "skipped"; - } + if ( ! $notice->is_local ) { + $this->log(LOG_INFO, "Skipping remote notice"); + return "skipped"; + } - # - # Build an Atom message from the notice - # + # + # Build an Atom message from the notice + # $noticeurl = common_local_url('shownotice', array('notice' => $notice->id)); $msg = $profile->nickname . ': ' . $notice->content; @@ -86,36 +86,18 @@ class EnjitQueueHandler extends QueueHandler $atom .= "".common_date_w3dtf($notice->modified)."\n"; $atom .= "\n"; - $url = common_config('enjit', 'apiurl') . "/submit/". common_config('enjit','apikey'); - $data = "msg=$atom"; + $url = common_config('enjit', 'apiurl') . "/submit/". common_config('enjit','apikey'); + $data = array( + 'msg' => $atom, + ); - # - # POST the message to $config['enjit']['apiurl'] - # - $ch = curl_init(); + # + # POST the message to $config['enjit']['apiurl'] + # + $request = HTTPClient::start(); + $response = $request->post($url, null, $data); - curl_setopt($ch, CURLOPT_URL, $url); - - curl_setopt($ch, CURLOPT_HEADER, 1); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($ch, CURLOPT_POST, 1) ; - curl_setopt($ch, CURLOPT_POSTFIELDS, $data); - - # SSL and Debugging options - # - # curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); - # curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); - # curl_setopt($ch, CURLOPT_VERBOSE, 1); - - $result = curl_exec($ch); - - $code = curl_getinfo($ch, CURLINFO_HTTP_CODE ); - - $this->log(LOG_INFO, "Response Code: $code"); - - curl_close($ch); - - return $code; + return $response->isOk(); } } From 4aa6deb8abb725be7fa6dc30bdfd2e7de1ff24d1 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 17:19:08 +0000 Subject: [PATCH 25/92] Make sure to call FormNoticeEnhancements with a new copy of the form object --- js/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/util.js b/js/util.js index 051efb6b91..cc7a587da8 100644 --- a/js/util.js +++ b/js/util.js @@ -234,7 +234,7 @@ var SN = { // StatusNet $('#'+form_id+' #'+SN.C.S.NoticeDataAttach).val(''); $('#'+form_id+' #'+SN.C.S.NoticeInReplyTo).val(''); $('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove(); - SN.U.FormNoticeEnhancements(form); + SN.U.FormNoticeEnhancements($('#'+form_id)); } }, complete: function(xhr, textStatus) { From b179ab650a129bdd3533b1b225a1e7d5c8f8756c Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Mon, 2 Nov 2009 10:38:01 -0500 Subject: [PATCH 26/92] do not allow [ and ] - they are not legal URL characters --- lib/util.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/util.php b/lib/util.php index d159c583ec..caffcd8076 100644 --- a/lib/util.php +++ b/lib/util.php @@ -452,9 +452,9 @@ function common_replace_urls_callback($text, $callback, $notice_id = null) { ')'. '(?:'. '(?:\:\d+)?'. //:port - '(?:/[\pN\pL$\[\]\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@]*)?'. // /path - '(?:\?[\pN\pL\$\[\]\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@\/]*)?'. // ?query string - '(?:\#[\pN\pL$\[\]\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"\@/\?\#]*)?'. // #fragment + '(?:/[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@]*)?'. // /path + '(?:\?[\pN\pL\$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@\/]*)?'. // ?query string + '(?:\#[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"\@/\?\#]*)?'. // #fragment ')(? Date: Mon, 2 Nov 2009 10:38:58 -0500 Subject: [PATCH 27/92] do not allow " in URLs - they are not legal URL characters --- lib/util.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/util.php b/lib/util.php index caffcd8076..31a78a876a 100644 --- a/lib/util.php +++ b/lib/util.php @@ -452,9 +452,9 @@ function common_replace_urls_callback($text, $callback, $notice_id = null) { ')'. '(?:'. '(?:\:\d+)?'. //:port - '(?:/[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@]*)?'. // /path - '(?:\?[\pN\pL\$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"@\/]*)?'. // ?query string - '(?:\#[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\"\@/\?\#]*)?'. // #fragment + '(?:/[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'@]*)?'. // /path + '(?:\?[\pN\pL\$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'@\/]*)?'. // ?query string + '(?:\#[\pN\pL$\,\!\(\)\.\:\-\_\+\/\=\&\;\%\~\*\$\+\'\@/\?\#]*)?'. // #fragment ')(? Date: Mon, 2 Nov 2009 12:52:46 -0500 Subject: [PATCH 28/92] fix the [] unit tests --- tests/URLDetectionTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/URLDetectionTest.php b/tests/URLDetectionTest.php index 0cc03ccce7..d83f9faf58 100644 --- a/tests/URLDetectionTest.php +++ b/tests/URLDetectionTest.php @@ -185,12 +185,12 @@ class URLDetectionTest extends PHPUnit_Framework_TestCase array('http://example.com/path/(foo)/bar', 'http://example.com/path/(foo)/bar'), array('http://example.com/path/[foo]/bar', - 'http://example.com/path/[foo]/bar'), + 'http://example.com/path/[foo]/bar'), array('http://example.com/path/foo/(bar)', 'http://example.com/path/foo/(bar)'), //Not a valid url - urls cannot contain unencoded square brackets array('http://example.com/path/foo/[bar]', - 'http://example.com/path/foo/[bar]'), + 'http://example.com/path/foo/[bar]'), array('Hey, check out my cool site http://example.com okay?', 'Hey, check out my cool site http://example.com okay?'), array('What about parens (e.g. http://example.com/path/foo/(bar))?', From 1b00cdf12413d1b6b92edf6aa377448edb516a12 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 17:56:55 +0000 Subject: [PATCH 29/92] Binding keyup/keydown only once for .form_notice --- js/util.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/js/util.js b/js/util.js index cc7a587da8..b90f33ec7d 100644 --- a/js/util.js +++ b/js/util.js @@ -53,6 +53,8 @@ var SN = { // StatusNet U: { // Utils FormNoticeEnhancements: function(form) { form_id = form.attr('id'); + $('#'+form_id+' #'+SN.C.S.NoticeDataText).unbind('keyup'); + $('#'+form_id+' #'+SN.C.S.NoticeDataText).unbind('keydown'); if (maxLength > 0) { $('#'+form_id+' #'+SN.C.S.NoticeDataText).bind('keyup', function(e) { SN.U.Counter(form); @@ -68,8 +70,6 @@ var SN = { // StatusNet if($('body')[0].id != 'conversation') { $('#'+form_id+' textarea').focus(); } - - SN.U.FormNoticeXHR(form); }, SubmitOnReturn: function(event, el) { @@ -190,7 +190,7 @@ var SN = { // StatusNet } else { $('#'+form_id+' #'+SN.C.S.NoticeDataText).val(''); - SN.U.FormNoticeEnhancements($('#'+SN.C.S.FormNotice)); + SN.U.FormNoticeEnhancements($('#'+form_id)); } } } @@ -354,6 +354,7 @@ var SN = { // StatusNet $.get(NDM.attr('href'), null, function(data) { $('.entity_send-a-message').append(document._importNode($('form', data)[0], true)); NDMF = $('.entity_send-a-message .form_notice'); + SN.U.FormNoticeXHR(NDMF); SN.U.FormNoticeEnhancements(NDMF); NDMF.append(''); $('.entity_send-a-message button').click(function(){ @@ -374,7 +375,10 @@ var SN = { // StatusNet $(document).ready(function(){ if ($('body.user_in').length > 0) { - $('.'+SN.C.S.FormNotice).each(function() { SN.U.FormNoticeEnhancements($(this)); }); + $('.'+SN.C.S.FormNotice).each(function() { + SN.U.FormNoticeXHR($(this)); + SN.U.FormNoticeEnhancements($(this)); + }); $('.form_user_subscribe').each(function() { SN.U.FormXHR($(this)); }); $('.form_user_unsubscribe').each(function() { SN.U.FormXHR($(this)); }); From 1cf67f4f714be45cf93302f223a58c65402e3038 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Mon, 2 Nov 2009 12:57:51 -0500 Subject: [PATCH 30/92] allow <> to surround the url (like () or []) --- lib/util.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 31a78a876a..ed7e10f6bd 100644 --- a/lib/util.php +++ b/lib/util.php @@ -422,7 +422,7 @@ function common_render_text($text) function common_replace_urls_callback($text, $callback, $notice_id = null) { // Start off with a regex $regex = '#'. - '(?:^|[\s\(\)\[\]\{\}\\\'\\\";]+)(?![\@\!\#])'. + '(?:^|[\s\<\>\(\)\[\]\{\}\\\'\\\";]+)(?![\@\!\#])'. '('. '(?:'. '(?:'. //Known protocols @@ -480,6 +480,10 @@ function callback_helper($matches, $callback, $notice_id) { array( 'left'=>'{', 'right'=>'}' + ), + array( + 'left'=>'<', + 'right'=>'>' ) ); $cannotEndWith=array('.','?',',','#'); From b62e47308754374bd4ca8c7366dc46eebff7cf81 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 2 Nov 2009 11:26:46 -0800 Subject: [PATCH 31/92] Update master .po template & merge updates to all localizations --- locale/bg/LC_MESSAGES/statusnet.mo | Bin 97732 -> 119506 bytes locale/bg/LC_MESSAGES/statusnet.po | 3716 +++++++++-- locale/ca/LC_MESSAGES/statusnet.mo | Bin 84543 -> 103127 bytes locale/ca/LC_MESSAGES/statusnet.po | 3775 ++++++++++-- locale/cs/LC_MESSAGES/statusnet.mo | Bin 38703 -> 51797 bytes locale/cs/LC_MESSAGES/statusnet.po | 3687 +++++++++-- locale/de/LC_MESSAGES/statusnet.mo | Bin 84579 -> 103431 bytes locale/de/LC_MESSAGES/statusnet.po | 3861 ++++++++++-- locale/el/LC_MESSAGES/statusnet.mo | Bin 27725 -> 37126 bytes locale/el/LC_MESSAGES/statusnet.po | 3649 +++++++++-- locale/en_GB/LC_MESSAGES/statusnet.mo | Bin 78521 -> 96014 bytes locale/en_GB/LC_MESSAGES/statusnet.po | 3795 ++++++++++-- locale/es/LC_MESSAGES/statusnet.mo | Bin 83472 -> 101938 bytes locale/es/LC_MESSAGES/statusnet.po | 3756 +++++++++-- locale/fi/LC_MESSAGES/statusnet.mo | Bin 86008 -> 104971 bytes locale/fi/LC_MESSAGES/statusnet.po | 3775 ++++++++++-- locale/fr/LC_MESSAGES/statusnet.mo | Bin 86462 -> 105593 bytes locale/fr/LC_MESSAGES/statusnet.po | 7415 +++++++++++++--------- locale/ga/LC_MESSAGES/statusnet.mo | Bin 73858 -> 106699 bytes locale/ga/LC_MESSAGES/statusnet.po | 8195 +++++++++++++++++-------- locale/he/LC_MESSAGES/statusnet.mo | Bin 42235 -> 56035 bytes locale/he/LC_MESSAGES/statusnet.po | 3673 +++++++++-- locale/it/LC_MESSAGES/statusnet.mo | Bin 83401 -> 102032 bytes locale/it/LC_MESSAGES/statusnet.po | 3771 ++++++++++-- locale/ja/LC_MESSAGES/statusnet.mo | Bin 46648 -> 60793 bytes locale/ja/LC_MESSAGES/statusnet.po | 3689 +++++++++-- locale/ko/LC_MESSAGES/statusnet.mo | Bin 88929 -> 108710 bytes locale/ko/LC_MESSAGES/statusnet.po | 3923 ++++++++++-- locale/mk/LC_MESSAGES/statusnet.mo | Bin 50541 -> 67520 bytes locale/mk/LC_MESSAGES/statusnet.po | 3695 +++++++++-- locale/nb/LC_MESSAGES/statusnet.mo | Bin 22230 -> 28771 bytes locale/nb/LC_MESSAGES/statusnet.po | 3637 +++++++++-- locale/nl/LC_MESSAGES/statusnet.mo | Bin 63579 -> 80080 bytes locale/nl/LC_MESSAGES/statusnet.po | 3738 +++++++++-- locale/nn/LC_MESSAGES/statusnet.mo | Bin 80329 -> 98211 bytes locale/nn/LC_MESSAGES/statusnet.po | 3752 +++++++++-- locale/pl/LC_MESSAGES/statusnet.mo | Bin 124708 -> 135651 bytes locale/pl/LC_MESSAGES/statusnet.po | 1579 ++++- locale/pt/LC_MESSAGES/statusnet.mo | Bin 25415 -> 32851 bytes locale/pt/LC_MESSAGES/statusnet.po | 3639 +++++++++-- locale/pt_BR/LC_MESSAGES/statusnet.mo | Bin 83652 -> 102280 bytes locale/pt_BR/LC_MESSAGES/statusnet.po | 3756 +++++++++-- locale/ru/LC_MESSAGES/statusnet.mo | Bin 109421 -> 132937 bytes locale/ru/LC_MESSAGES/statusnet.po | 3788 ++++++++++-- locale/statusnet.po | 1484 ++++- locale/sv/LC_MESSAGES/statusnet.mo | Bin 69744 -> 85551 bytes locale/sv/LC_MESSAGES/statusnet.po | 3706 +++++++++-- locale/te/LC_MESSAGES/statusnet.mo | Bin 43726 -> 59280 bytes locale/te/LC_MESSAGES/statusnet.po | 3649 +++++++++-- locale/tr/LC_MESSAGES/statusnet.mo | Bin 37703 -> 50465 bytes locale/tr/LC_MESSAGES/statusnet.po | 3684 +++++++++-- locale/uk/LC_MESSAGES/statusnet.mo | Bin 109628 -> 133916 bytes locale/uk/LC_MESSAGES/statusnet.po | 3764 ++++++++++-- locale/vi/LC_MESSAGES/statusnet.mo | Bin 78725 -> 99171 bytes locale/vi/LC_MESSAGES/statusnet.po | 3895 ++++++++++-- locale/zh_CN/LC_MESSAGES/statusnet.mo | Bin 76504 -> 93634 bytes locale/zh_CN/LC_MESSAGES/statusnet.po | 3746 +++++++++-- locale/zh_TW/LC_MESSAGES/statusnet.mo | Bin 17868 -> 24937 bytes locale/zh_TW/LC_MESSAGES/statusnet.po | 3640 +++++++++-- 59 files changed, 97298 insertions(+), 18534 deletions(-) diff --git a/locale/bg/LC_MESSAGES/statusnet.mo b/locale/bg/LC_MESSAGES/statusnet.mo index 335fe0b92bebef6009af8c47bb55c17e7078a14b..e444a365f805ae09540c1a649a589f6d384f335d 100644 GIT binary patch delta 27743 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 L%$(~x)y@1r34@7o delta 19663 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 E0cW<+ivR!s diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index c0bc8379f5..da920ef257 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet 0.6.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-06-27 18:04+0000\n" "Last-Translator: Yasen Pramatarov \n" "Language-Team: Bulgarian \n" @@ -19,14 +19,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Търсене на \"%s\" в потока" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." @@ -37,17 +37,19 @@ msgid " from " msgstr " от " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Реплики на %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s ви кани да ползвате заедно %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -105,6 +107,7 @@ msgstr "" "Искрено ваши, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s вече получава бележките ви в %2$s." @@ -127,25 +130,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s реплики на съобщения от %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Бележка на %1$s от %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Общ поток в %s" @@ -155,34 +161,48 @@ msgstr "Общ поток в %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s и приятели" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Общ поток на %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Състояние на %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Поток на %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -190,7 +210,8 @@ msgstr "" "(Трябва да получите веднага електронно писмо с указания за потвърждаване " "адреса на е-пощата ви.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -199,7 +220,8 @@ msgstr "" "**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е услуга за микроблогване. " @@ -211,32 +233,36 @@ msgstr ". Изписват се пълните имена или псевдон #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "От 1 до 64 малки букви или цифри, без пунктоация и интервали. Задължително " "поле." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 или повече знака" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 или повече знака. И не ги забравяйте!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 или повече знака. Задължително поле." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -246,6 +272,7 @@ msgstr "" "от %s, трябва да го одобрите." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -281,7 +308,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Не е открит методът в API." @@ -304,16 +358,23 @@ msgstr "Не е открит методът в API." #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Методът в API все още се разработва." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Относно" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Приемане" @@ -324,6 +385,9 @@ msgstr "Приемане" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Добавяне" @@ -341,27 +405,29 @@ msgstr "Добавяне или премахване OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Адрес" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Адреси на приятели, които каните (по един на ред)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Всички абонаменти" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Всички бележки за %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Всички бележки, намерени с \"%s\"" @@ -371,30 +437,37 @@ msgstr "Всички бележки, намерени с \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Вече сте влезли." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Вече сте абонирани!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Наистина ли искате да изтриете тази бележка?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Одобряване на абонамента" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Автоматично влизане занапред. Да не се ползва на общи компютри!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -404,15 +477,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Аватар" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Аватарът е обновен." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -422,6 +499,7 @@ msgstr "" "съобщение с инструкции. (Добавихте ли %s в списъка си там?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -430,7 +508,7 @@ msgstr "" "спам) за съобщение с указания." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Очаква се потвърждение за този телефонен номер." @@ -441,6 +519,8 @@ msgstr "Преди »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "За мен" @@ -448,16 +528,18 @@ msgstr "За мен" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Автобиографията е твърде дълга (до 140 символа)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Грешка при изтриване на бележката." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Грешка при четене адреса на аватара '%s'" @@ -465,6 +547,8 @@ msgstr "Грешка при четене адреса на аватара '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Грешка при запазване на новата парола." @@ -472,31 +556,34 @@ msgstr "Грешка при запазване на новата парола." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Отказ" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Грешка при създаване на потребителски OpenID обект" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Грешка при нормализация на този Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Грешка при нормализиране адреса на е-пощата" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Промяна" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Промяна обработката на писмата" @@ -506,11 +593,12 @@ msgid "Change password" msgstr "Смяна на паролата" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Смяна на паролата" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Промяна настройките на профила" @@ -520,6 +608,9 @@ msgstr "Промяна настройките на профила" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Потвърждаване" @@ -532,12 +623,14 @@ msgstr "Потвърждаване на адреса" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Потвърждаването е прекъснато." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Код за потвърждение" @@ -546,7 +639,8 @@ msgstr "Код за потвърждение" msgid "Confirmation code not found." msgstr "Кодът за потвърждение не е открит." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -580,20 +674,24 @@ msgstr "" "само приятни мигове!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Свързване" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Свързване на съществуваща сметка" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Контакт" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Грешка при създаване на OpenID форма: %s" @@ -601,35 +699,39 @@ msgstr "Грешка при създаване на OpenID форма: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Грешка при проследяване на потребител: %s вече е в списъка ви." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Грешка при проследяване — потребителят не е намерен." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Грешка при пренасочване към сървър: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Грешка при запазване данните на аватара" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Грешка при запазване на новия профил" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Грешка при абониране на друг потребител за вас." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Грешка при абониране." @@ -649,15 +751,17 @@ msgstr "Грешка при преобразуване на tokens за одоб #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Грешка при изтриване потвърждението по е-поща." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Грешка при изтриване на абонамента." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Не са открити бележки." @@ -670,29 +774,38 @@ msgstr "Не е получен token за одобрение." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Не може да се вмъкне код за потвърждение." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Грешка при добавяне на нов абонамент." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Грешка при запазване на профила." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Грешка при обновяване записа на потребител." @@ -708,42 +821,48 @@ msgstr "Грешка при обновяване записа на потреб #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Грешка при обновяване на потребителя." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Създаване" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Създаване на нов потребител с този псевдоним." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Създаване на нова сметка" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Създаване на нов акаунт за OpenID, който вече има потребител." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Текущ потвърден Jabber/GTalk адрес." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Текущ потвърден телефонен номер за SMS-и." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Текущ потвърден адрес на е-поща." @@ -752,23 +871,27 @@ msgid "Currently" msgstr "В момента" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Грешка в базата от данни — отговор при вмъкването: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Изтриване на бележката" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Опишете себе си и интересите си в до 140 букви" @@ -776,11 +899,13 @@ msgstr "Опишете себе си и интересите си в до 140 б #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Е-поща" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Адрес на е-поща" @@ -790,39 +915,43 @@ msgid "Email Settings" msgstr "Настройки на е-поща" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Адресът на е-поща вече се използва." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Потвърждаване адреса на е-поща" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Адрес на е-поща, като \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Адреси на е-поща" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Въведете псевдоним или е-поща." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Въведете кода, който получихте по телефона." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Грешка при одобряване на token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Грешка при свързване на потребителя към OpenID." @@ -833,39 +962,46 @@ msgstr "Грешка при свързване на потребителя." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Грешка при вмъкване на аватар" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Грешка при вмъкване на нов профил" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Грешка при вмъкване на отдалечен профил" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Грешка при запазване на потвърждение за адрес" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Грешка при запазване на отдалечен профил" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Грешка при запазване на профил" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Грешка при запазване на потребител." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Грешка при запазване на потребител — невалидност." @@ -874,6 +1010,9 @@ msgstr "Грешка при запазване на потребител — н #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Грешка в настройките на потребителя." @@ -884,6 +1023,7 @@ msgstr "Грешка при обновяване на профил" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Грешка при обновяване на отдалечен профил" @@ -893,33 +1033,36 @@ msgid "Error with confirmation code." msgstr "Грешка в кода за потвърждение." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Съществуващ псевдоним" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Въпроси" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Неуспешно обновяване на аватара." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Емисия с приятелите на %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Емисия с отговорите към %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Емисия за етикета %s" @@ -934,7 +1077,7 @@ msgstr "Търсене в съдържанието на бележките" msgid "Find people on this site" msgstr "Търсене на хора в сайта" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -947,6 +1090,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Пълно име" @@ -955,23 +1103,33 @@ msgstr "Пълно име" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Пълното име е твърде дълго (макс. 255 знака)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Помощ" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Начало" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Лична страница" @@ -979,21 +1137,27 @@ msgstr "Лична страница" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Адресът на личната страница не е правилен URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Искам да изпращам бележки по пощата." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM адрес" @@ -1003,7 +1167,7 @@ msgid "IM Settings" msgstr "IM настройки" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1011,7 +1175,7 @@ msgstr "" "Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си " "име и парола." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1019,7 +1183,7 @@ msgstr "" "Ако искате да добавите OpenID към сметката си, въведете го в кутийката " "отдолу и натиснете \"Добавяне\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1030,25 +1194,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Входяща поща" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Входящият адрес на е-поща е премахнат." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Грешна стара парола" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Грешно име или парола." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1057,30 +1227,31 @@ msgstr "" "възстановяване на паролата." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Неправилен адрес на аватар '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Неправилен адрес на е-поща: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Неправилен адрес на домашна страница '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Неправилен адрес на лиценз '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Невалидно съдържание на бележка" @@ -1095,13 +1266,13 @@ msgid "Invalid notice url" msgstr "Неправилен адрес на бележка" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Неправилен адрес на профил '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Неправилен адрес на профил (грешен формат)" @@ -1119,28 +1290,35 @@ msgstr "Неправилен размер." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Неправилно име или парола." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Поканите са изпратени." #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Изпратени са покани до следните хора:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Покани" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Покани за нови потребители" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1152,11 +1330,12 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Този Jabber ID принадлежи на друг потребител." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1166,12 +1345,14 @@ msgstr "" "сте добавили %s в списъка си с приятели в IM или GTalk клиента си." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Език" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Името на езика е твърде дълго (може да е до 50 знака)." @@ -1180,7 +1361,15 @@ msgstr "Името на езика е твърде дълго (може да е #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Местоположение" @@ -1189,7 +1378,12 @@ msgstr "Местоположение" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Името на местоположението е твърде дълго (макс. 255 знака)." @@ -1198,18 +1392,22 @@ msgstr "Името на местоположението е твърде дъл #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Вход" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Влизане с [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1219,22 +1417,26 @@ msgstr "" "Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " "нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Изход" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "По-дълго име, за предпочитане \"истинското\" ви име." #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Загубена или забравена парола" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Задаване на нова е-поща, от която да се публикува. Отменя предишната." @@ -1245,16 +1447,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Управление на пощата, идваща от %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Участник от" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Микроблог на %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1266,42 +1470,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Текстовете и файловите ми са достъпни под " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Ново" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Нов адрес на е-поща за публикщуване в %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Добавен е нов входящ адрес на е-поща." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Нов псевдоним" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Нова бележка" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Нова парола" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Новата парола е запазена. Влязохте успешно." @@ -1311,7 +1523,13 @@ msgstr "Новата парола е запазена. Влязохте успе #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Псевдоним" @@ -1320,7 +1538,12 @@ msgstr "Псевдоним" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Опитайте друг псевдоним, този вече е зает." @@ -1329,49 +1552,60 @@ msgstr "Опитайте друг псевдоним, този вече е за #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Псевдонимът може да съдържа само малки букви, числа и никакво разстояние " "между тях." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Този псевдоним не е разрешен тук." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Псевдоним на потребител, когото искате да следите" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Псевдоним или е-поща" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Не" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Няма Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Няма заявка за одобрение." #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Не е избран оператор." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Не е въведен код." @@ -1383,11 +1617,15 @@ msgstr "Няма код за потвърждение." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Няма съдържание!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Не е въведена е-поща." @@ -1396,7 +1634,9 @@ msgid "No id." msgstr "Няма id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Няма входящ адрес на е-поща." @@ -1407,6 +1647,7 @@ msgstr "Отдалеченият сървър не е предоставил п #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Няма псевдоним." @@ -1414,12 +1655,14 @@ msgstr "Няма псевдоним." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Няма потвърждения, очакващи да бъдат отказани." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Не е въведен телефонен номер." @@ -1429,7 +1672,8 @@ msgid "No profile URL returned by server." msgstr "Сървърът не е върнал адрес на профила." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Няма указана е-поща за този потребител." @@ -1441,7 +1685,7 @@ msgstr "Заявката не е намерена!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Няма резултати" @@ -1452,12 +1696,16 @@ msgstr "Няма размер." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Не е открита бележка с такъв идентификатор." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Не е открита бележка с такъв идентификатор." @@ -1467,13 +1715,15 @@ msgid "No such OpenID." msgstr "Няма такъв OpenID-адрес." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Няма такъв документ." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Няма такава бележка." @@ -1511,12 +1761,22 @@ msgstr "Няма такъв абонамент" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Няма такъв потребител" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Няма потребител с такава е-поща или потребителско име." @@ -1530,32 +1790,38 @@ msgid "Not a recovery code." msgstr "Това не е код за възстановяване." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Това не е регистриран потребител." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Неподдържан формат на данните" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Неправилен Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Неправилен OpenID" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Това не е правилен адрес на е-поща." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Неправилен адрес на е-поща." @@ -1563,6 +1829,11 @@ msgstr "Неправилен адрес на е-поща." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Неправилен псевдоним." @@ -1582,7 +1853,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Неправилен адрес на профил (няма YADIS документ)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Файлът не е изображение или е повреден." @@ -1593,11 +1865,13 @@ msgstr "Забранено." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Неочакван отговор." #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Не е открито." @@ -1613,11 +1887,15 @@ msgstr "Не е открито." #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Не сте влезли в системата." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Не сте абонирани!" @@ -1634,39 +1912,44 @@ msgid "Notice feed for %s" msgstr "Емисия с бележки на %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Бележката няма профил" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Бележки" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Бележки с етикет %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Стара парола" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Настройки на OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Автоматично предаване на OpenID" @@ -1674,29 +1957,34 @@ msgstr "Автоматично предаване на OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Влизане с OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Влизането с OpenID е прекратено." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Грешка при влизане с OpenID: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Проблем с OpenID: %s" @@ -1712,11 +2000,12 @@ msgid "OpenID settings" msgstr "Настройки на OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Може да добавите и лично съобщение към поканата." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Частично качване на файла." @@ -1726,34 +2015,46 @@ msgstr "Частично качване на файла." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Парола" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Паролата и потвърждението й не съвпадат." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Паролата трябва да е от поне 6 знака." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Поискано е възстановяване на парола" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Паролата е записана." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Паролите не съвпадат." @@ -1773,14 +2074,17 @@ msgid "People search" msgstr "Търсене на хора" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Лично" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Лично съобщение" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Телефонен номер — с код, без пунктоация и без интервали." @@ -1794,7 +2098,7 @@ msgstr "" "на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Публикуване промяната на състоянието ми в Jabber/GTalk." @@ -1803,7 +2107,9 @@ msgstr "Публикуване промяната на състоянието м #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Настройки" @@ -1812,42 +2118,52 @@ msgstr "Настройки" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Настройките са запазени." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Предпочитан език" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Поверителност" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Проблем при записване на бележката." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Профил" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Адрес на профила" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Настройки на профила" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Непознат профил" @@ -1856,17 +2172,19 @@ msgid "Public Stream Feed" msgstr "Емисия на общия поток" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Общ поток" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Публикуване на MicroID за адреса в Jabber/GTalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Публикуване на MicroID за адреса на е-пощата." @@ -1876,12 +2194,14 @@ msgid "Recent Tags" msgstr "Скорошни етикети" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Възстановяване" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Възстановяване на паролата" @@ -1894,37 +2214,45 @@ msgstr "Код за възстановяване на непознат потр #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Регистриране" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Записването не е позволено." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Записването е успешно." #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Охвърляне" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Запомни ме" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Отдалечен профил без съответстващ локален" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Отдалечен абонамент" @@ -1938,6 +2266,9 @@ msgstr "Отдалечен абонамент" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Премахване" @@ -1946,7 +2277,7 @@ msgstr "Премахване" msgid "Remove OpenID" msgstr "Премахване на OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1955,34 +2286,41 @@ msgstr "" "невъзможно. За да го изтриете, първо добавете друг OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Отговори" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Отговори на %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Обновяване" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Нова парола" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Телефонен номер за SMS" @@ -1991,17 +2329,18 @@ msgstr "Телефонен номер за SMS" msgid "SMS Settings" msgstr "Настройки за SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Потвърждение за SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Също като паролата по-горе" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Същото като паролата по-горе. Задължително поле." @@ -2014,12 +2353,21 @@ msgstr "Същото като паролата по-горе. Задължите #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Запазване" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Търсене" @@ -2029,7 +2377,7 @@ msgid "Search Stream Feed" msgstr "Търсене в емисията на потока" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2038,7 +2386,7 @@ msgstr "" "Търсене на бележки в %%site.name%% по съдържанието им. Отделяйте фразите за " "търсене (трябва да са по-дълги от 3 символа) с интервали." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2048,33 +2396,38 @@ msgstr "" "Отделяйте фразите за " #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Изберете оператор" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Прати" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Изпратете писмо до този адрес за публикуване като бележка." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Изпращане на уведомления за нови абонаменти по пощата." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Изпращане на бележките по Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2083,15 +2436,18 @@ msgstr "" "такси от оператора." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Изпращане по Jabber/GTalk на отговори от хора, " #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Настройки" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Настройките са запазени." @@ -2111,27 +2467,32 @@ msgid "Something weird happened." msgstr "Случи се нещо странно." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Входящата поща не е разрешена." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Това не е вашият входящ адрес." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Изходен код" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Статистики" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Няма запазен OpenID." @@ -2139,24 +2500,28 @@ msgstr "Няма запазен OpenID." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Абониране" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Абонати" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Абонаментът е одобрен" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Абонаментът е отказан" @@ -2164,28 +2529,35 @@ msgstr "Абонаментът е отказан" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Абонаменти" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Системна грешка при качване на файл." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Етикети" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Текст" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Търсене на текст" @@ -2205,6 +2577,7 @@ msgid "That confirmation code is not for you!" msgstr "Този код за потвърждение не е за вас!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Тази е-поща вече се използва от друг потребител." @@ -2214,63 +2587,73 @@ msgid "That file is too big." msgstr "Файлът е твърде голям." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Това вече е вашият Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Това и сега е адресът на е-пощата ви." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Това и сега е номерът на телефона ви." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Това не е вашият Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Това не е вашият адрес на е-поща." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Това не е вашият телефонен номер." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Грешен IM адрес." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Този код за потвърждение е грешен." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Този телефонен номер вече се използва от друг потребител." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Това е твърде дълго. Трябва да е най-много 255 знака." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресът \"%s\" е потвърден за сметката ви." @@ -2279,11 +2662,14 @@ msgstr "Адресът \"%s\" е потвърден за сметката ви." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Адресът е премахнат." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2292,7 +2678,8 @@ msgstr "" "Абонаментът е одобрен, но не е зададен callback URL. За да завършите " "одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2302,33 +2689,38 @@ msgstr "" "абонамента, проверете инструкциите на сайта." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Това са хората, които четат бележките на %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Tова са хората, които четат бележките ви." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Хора, чийто бележки %s чете." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Няма хора, чийто бележки четете." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "Тези хора са потребители тук и автоматично сте абонирани за тях:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Кодът за потвърждение е твърде стар. Започнете процеса отново." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2337,7 +2729,7 @@ msgstr "" "преминете към OpenID доставчика си натиснете бутона за изпращане." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2352,6 +2744,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Този метод изисква заявка POST или DELETE." @@ -2360,25 +2755,37 @@ msgstr "Този метод изисква заявка POST или DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Този метод изисква заявка POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Страницата не е достъпна във вида медия, който приемате" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Часови пояс" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Не е избран часови пояс" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2391,18 +2798,21 @@ msgstr "" "профила си в нея по-долу." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Трябва да се дадат два идентификатора или имена на потребители." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Адрес на личната ви страница, блог или профил в друг сайт" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" @@ -2414,15 +2824,22 @@ msgstr "Адрес на профила ви в друга, съвместима #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Неочаквано изпращане на форма." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Неочаквано подновяване на паролата." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Непознато действие" @@ -2453,38 +2870,47 @@ msgstr "Отписване" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Неподдържана версия на OMB" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Форматът на файла с изображението не се поддържа." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Бележки през SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Бележки през месинджър (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Бележки от %1$s и приятели в %2$s." #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Качване" @@ -2505,6 +2931,7 @@ msgid "Upload a new profile image" msgstr "Качване на нова снимка за профила" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2512,7 +2939,9 @@ msgstr "" "услугата на сайта." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Използва се само за промени, обяви или възстановяване на паролата" @@ -2536,11 +2965,16 @@ msgstr "Потребителят, когото проследявате, не с #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Потребителят няма профил." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Потребителски псевдоним" @@ -2549,29 +2983,33 @@ msgid "User not found." msgstr "Потребителят не е открит." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "В кой часови пояс сте обикновено?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Какво става, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Къде се намирате (град, община, държава и т.н.)" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Грешен вид изображение за '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Грешен размер на изображението '%s'" @@ -2579,7 +3017,9 @@ msgstr "Грешен размер на изображението '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Да" @@ -2600,11 +3040,12 @@ msgid "You are already logged in!" msgstr "Вече сте влезли!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Вече сте абонирани за следните потребители:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "С указания потребител не сте записани като приятели." @@ -2622,7 +3063,7 @@ msgstr "Първо се регистрирайте, за да започнете msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2631,6 +3072,7 @@ msgstr "" "\"Премахване\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2639,7 +3081,8 @@ msgstr "" "Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%" "%). Въведете адреса си в настройките по-долу." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "Можете да обновите личния си профил, за да знаят хората повече за вас." @@ -2648,21 +3091,23 @@ msgstr "Можете да обновите личния си профил, за #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Можете да ползвате локален абонамент!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Не сте ни изпратили този профил" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2676,16 +3121,19 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Не може да изтривате бележки на друг потребител." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "За да каните хора в %s, трябва да сте влезли." #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2693,20 +3141,21 @@ msgstr "" "Ще ви уведомим при приемане на покана и записване в сайта. Благодарим ви за " "увеличаването на общността тук!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Разпознати сте. Въведете паролата си по-долу. " #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Вашият OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Псевдонимът ви на този сървър или е-пощата, с която сте регистрирани." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2715,47 +3164,57 @@ msgstr "" "[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и " "същ акаунт. От тук се управляват съответните OpenID." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "преди няколко секунди" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "преди около %d дни" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "преди около %d часа" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "преди около %d минути" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "преди около %d месеца" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "преди около ден" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "преди около минута" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "преди около месец" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "преди около година" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "преди около час" @@ -2777,12 +3236,14 @@ msgid "reply" msgstr "отговор" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "също като паролата по-горе" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "неподдържан вид файл" @@ -2803,6 +3264,26 @@ msgstr "« След" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" @@ -2811,6 +3292,7 @@ msgid "This notice is not a favorite!" msgstr "Тази бележка не е отбелязана като любима!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Грешка при изтриване на любима бележка." @@ -2818,22 +3300,28 @@ msgstr "Грешка при изтриване на любима бележка. msgid "Favor" msgstr "Любимо" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Изпращане на писмо при отбелязване на моя бележка като любима." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Изпращане на писмо при ново лично съобщение." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Тази бележка вече е отбелязана като любима!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Грешка при отбелязване като любима." @@ -2843,11 +3331,13 @@ msgstr "Нелюбимо" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s любими бележки" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Емисия с любимите бележки на %s" @@ -2889,23 +3379,32 @@ msgid "Login with your username and password. " msgstr "Влезте с името и паролата си. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Твърде дълго. Може да е най-много 140 знака." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Не е указан получател." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Не може да изпращате съобщения до този потребител." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2913,11 +3412,13 @@ msgstr "" "тихичко." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Няма такъв потребител" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Ново съобщение" @@ -2971,6 +3472,11 @@ msgstr "Можете а обновите личните си данни тук " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Потребител без съответстващ профил" @@ -2999,6 +3505,8 @@ msgid "New password successfully saved. " msgstr "Новата парола е записана. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Паролата трябва да е 6 или повече знака." @@ -3019,12 +3527,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Емисия с любимите бележки на %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Грешка при изтегляне на любимите бележки" @@ -3032,7 +3543,7 @@ msgstr "Грешка при изтегляне на любимите бележ msgid "No such message." msgstr "Няма такова съобщение" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Само подателят и получателят могат да четат това съобщение." @@ -3056,53 +3567,72 @@ msgid "Mobile carrier for your phone. " msgstr "Мобилен оператор на телефона ви." #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Преки съобщения до %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Всички преки съобщения, изпратени до %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Изпратени от вас преки съобщения" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Всички преки съобщения, изпратени от %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Липсва текст на съобщението" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Получателят не е открит" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Не може да изпращате преки съобщения до хора, които не са в списъка ви с " "приятели." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Отбелязани като любими от %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s бележки отбелязани като любими от %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s отбеляза бележката ви като любима" @@ -3125,14 +3655,17 @@ msgstr "" "там." #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Настройки за Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Профил в Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Текущ проверен профил в Twitter" @@ -3141,6 +3674,7 @@ msgid "Twitter Username" msgstr "Име в Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Без интервали, моля!" @@ -3149,18 +3683,22 @@ msgid "Twitter Password" msgstr "Парола за Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Автоматично препращане на бележките ми към Twitter" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Препращане на локалните отговори с \"@\" и към Twitter" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Абониране за приятелите ми от Twitter тук" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3169,6 +3707,7 @@ msgstr "" "черта. Може да е най-много 15 знака." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Грешка при сверяване на данните ви с Twitter" @@ -3179,33 +3718,43 @@ msgstr "Грешка при извличане данните на профил #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Грешка при записване настройките за Twitter" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Настройките за Twitter са запазени." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Това не е вашият профил в Twitter." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Грешка при премахване на профила от Twitter" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Профилът от Twitter е премахнат." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Грешка при записване настройките за Twitter" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Настройките за Twitter са запазени." @@ -3222,18 +3771,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Резултат от командата" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Командата е изпълнена" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Грешка при изпълнение на командата" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "За съжаление тази команда все още не се поддържа." @@ -3243,90 +3793,112 @@ msgid "Subscriptions: %1$s\n" msgstr "Абонаменти: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Потребителят няма последна бележка" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Бележката е отбелязана като любима." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Пълно име: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Местоположение: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Домашна страница: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Относно: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" "Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Прякото съобщение до %s е изпратено." -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Грешка при изпращане на прякото съобщение" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Уточнете името на потребителя, за когото се абонирате." -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Абонирани сте за %s." -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Уточнете името на потребителя, от когото се отписвате." -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Отписани сте от %s." #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Командата все още не се поддържа." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Уведомлението е изключено." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Грешка при изключване на уведомлението." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Уведомлението е включено." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Грешка при включване на уведомлението." @@ -3334,11 +3906,11 @@ msgstr "Грешка при включване на уведомлението." msgid "Commands:\n" msgstr "Команди:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Грешка при вмъкване на съобщението." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Грешка при обновяване на бележката с нов URL-адрес." @@ -3353,7 +3925,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Ново лично съобщение от %s" @@ -3367,7 +3939,7 @@ msgstr "" "%1$s (%2$s) ви изпрати лично съобщение:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Само потребителят може да отваря собствената си кутия." @@ -3376,31 +3948,39 @@ msgid "This form should automatically submit itself. " msgstr "Тази форма сама ще се изпрати автоматично." #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Любими" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Любими бележки на %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Потребител" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Входящи" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Получените от вас съобщения" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Изходящи" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Изпратените от вас съобщения" @@ -3413,14 +3993,19 @@ msgid "Twitter integration options" msgstr "Настройки за интеграция с Twitter" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "До" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Грешка при обработка на съобщението" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s и приятели, страница %d" @@ -3430,21 +4015,31 @@ msgid "You can upload your personal avatar." msgstr "Можете да качите личен аватар тук." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Настройки за аватар" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Оригинал" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Преглед" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Изрязване" @@ -3462,35 +4057,44 @@ msgid "There was a problem with your session token. " msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Изберете квадратна област от изображението за аватар" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Няма такава бележка." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Неподдържан вид файл" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Не е указан профил." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Не е открит профил с такъв идентификатор." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Блокиране на потребителя" @@ -3498,11 +4102,11 @@ msgstr "Блокиране на потребителя" msgid "Are you sure you want to block this user? " msgstr "Наистина ли искате да блокирате този потребител? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Вече сте блокирали този потребител." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Грешка при записване данните за блокирането." @@ -3519,38 +4123,56 @@ msgstr "Ще изтриете напълно бележката. " msgid "Add to favorites" msgstr "Добавяне към любимите" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "За да създавате група, трябва да сте влезли." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Няма псевдоним." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Няма такава група." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "За да редактирате групата, трябва да сте й администратор." -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3562,15 +4184,16 @@ msgstr "" "между тях." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Автобиографията е твърде дълга (до 140 символа)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Грешка при обновяване на групата." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Настройките са запазени." @@ -3589,7 +4212,8 @@ msgstr "Нов адрес на е-поща за публикщуване в %s" msgid "Send me email when someone " msgstr "Изпращане на писмо при ново лично съобщение." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3605,7 +4229,7 @@ msgstr "" "На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения " "от %s, трябва да го одобрите." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3619,52 +4243,67 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Пропускане" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Няма съдържание!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Страниране" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "След" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Преди" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Благодарим ви, че поканихте приятели да ползват %s!" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Изпратени са покани до следните хора:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, fuzzy, php-format msgid "You have been invited to %s" msgstr "\"Побутване\" от %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Емисия с приятелите на %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Изпращане на покани" @@ -3708,13 +4347,15 @@ msgstr "" msgid "Sync preferences" msgstr "Синхронизиране на настройките" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 #, fuzzy msgid "Disfavor favorite" msgstr "Нелюбимо" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Популярни бележки" @@ -3728,7 +4369,8 @@ msgid "The most popular notices on the site right now." msgstr "Най-популярните бележки в момента в сайта." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Избрани потребители" @@ -3742,15 +4384,17 @@ msgstr "Избрани потребители, страница %d" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Потребителят е забранил да се абонирате за него." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Липсва ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Лого на групата" @@ -3758,11 +4402,13 @@ msgstr "Лого на групата" msgid "You can upload a logo image for your group." msgstr "Може да качите лого за групата ви." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Лотого е обновено." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Неуспешно обновяване на логото." @@ -3781,7 +4427,8 @@ msgid "A list of the users in this group." msgstr "Списък с потребителите в тази група." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Групи" @@ -3796,6 +4443,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Създаване на нова група" @@ -3805,7 +4453,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Търсене на групи в %%site.name%% по име, местоположение или описание." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Търсене на групи" @@ -3828,20 +4476,20 @@ msgstr "Изпращане на бележките по Jabber/GTalk " msgid "A confirmation code was sent " msgstr "Няма код за потвърждение." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "За да се присъедините към група, трябва да сте влезли." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Вече членувате в тази група." -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Грешка при проследяване — потребителят не е намерен." -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s се присъедини към групата %s" @@ -3850,15 +4498,18 @@ msgstr "%s се присъедини към групата %s" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "За напуснете група, трябва да сте влезли." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Няма такава група" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Не членувате в тази група." @@ -3867,22 +4518,26 @@ msgstr "Не членувате в тази група." msgid "You may not leave a group while you are its administrator." msgstr "Не може да изтривате бележки на друг потребител." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "Грешка при обновяване записа на потребител." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Грешка при проследяване — потребителят не е намерен." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3894,15 +4549,17 @@ msgstr "" msgid "New group" msgstr "Нова група" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Използвайте тази бланка за създаване на нова група." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Грешка при създаване на групата." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Грешка при създаване на нов абонамент." @@ -3916,12 +4573,15 @@ msgstr "Това е твърде дълго. " msgid "Don't send a message to yourself; " msgstr "Не може да изпращате съобщения до този потребител." -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Бележки" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Грешка в Ajax" @@ -3938,7 +4598,7 @@ msgstr "Побутването е изпратено" msgid "Nudge sent!" msgstr "Побутването е изпратено!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Влизане с OpenID" @@ -3964,11 +4624,13 @@ msgstr "Автоматично съкращаване на адреси" msgid "Service" msgstr "Услуга" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Услуга за автоматично съкращаване, която да се ползва." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Услугата за съкращаване е твърде дълга (може да е до 50 знака)." @@ -3976,17 +4638,18 @@ msgstr "Услугата за съкращаване е твърде дълга msgid "Change your password." msgstr "Смяна на паролата." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Паролата е записана." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Това не е правилен адрес на е-поща." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3996,11 +4659,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Данни на профила" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4013,20 +4677,25 @@ msgstr "" "ботове)." #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Неправилен етикет: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Грешка при запазване етикетите." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Общ поток, страница %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Грешка при изтегляне на общия поток" @@ -4047,11 +4716,13 @@ msgstr "Емисия на общия поток" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4107,7 +4778,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Отговори на %s, страница %d" @@ -4117,51 +4789,72 @@ msgstr "Отговори на %s, страница %d" msgid "%s favorite notices, page %d" msgstr "Любими бележки на %s, страница %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Профил на групата" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Бележки" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Емисия с бележки на %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Членове" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Всички членове" @@ -4177,7 +4870,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Само подателят и получателят могат да четат това съобщение." -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, страница %d" @@ -4188,30 +4881,37 @@ msgid "'s profile" msgstr "Профил на " #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Потребителски профил" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Снимка" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Потребителски действия" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Изпращате на пряко съобщение до този потребител." -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Съобщение" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Всички абонати" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Всички групи" @@ -4237,7 +4937,7 @@ msgstr "Изпращане на бележките по Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Очаква се потвърждение за този телефонен номер." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Мобилен оператор" @@ -4300,16 +5000,17 @@ msgstr "Хора, чийто бележки %s чете." msgid "These are the people whose " msgstr "Това са хората, които четат бележките на %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Бележки с етикет %s, страница %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4334,7 +5035,7 @@ msgstr "Етикети" msgid "Tag user" msgstr "Етикети" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4344,16 +5045,16 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Грешка при запазване на етикетите." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4361,20 +5062,23 @@ msgstr "" msgid "No such tag." msgstr "Няма такъв етикет." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Бележки с етикет %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Не е открито." @@ -4385,15 +5089,16 @@ msgstr "" "Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " "там." -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Име в Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Парола за Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Приятели от Twitter" @@ -4406,153 +5111,162 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Грешка при извличане данните на профила \"%s\" от Twitter." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Грешка при запазване на потребител." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Сървърът не е върнал адрес на профила." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Не е открита бележка с такъв идентификатор." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Отписване" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Групи на %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Групи на %s, страница %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Грешка при записване на бележката. Непознат потребител." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново след няколко минути." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Забранено ви е да публикувате бележки в този сайт." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Качване на аватар" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Друго" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Други настройки" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Неозаглавена страница" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Търсене за хора или бележки" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Сметка" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Промяна на поща, аватар, парола, профил" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Свързване към моментни съобщения, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Излизане от сайта" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Влизане в сайта" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Създаване на нова сметка" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Влизане с OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Помощ" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Нова бележка" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Нова бележка" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Абонаменти" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Лиценз на програмата StatusNet" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Всички " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "лиценз." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Блокиране на потребителя" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Блокиране" @@ -4566,12 +5280,15 @@ msgstr "%s любими бележки" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Създаване на нова сметка" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Публикувано" @@ -4591,53 +5308,59 @@ msgstr "Филтриране на етикетите" msgid "All" msgstr "Всички" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Етикет" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Изберете етикет за конкретизиране" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Адрес на страница, блог или профил в друг сайт на групата" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Описание" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Опишете групата или темата й в до 140 букви" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Къде се намира групата — град, община, държава и т.н. (ако е приложимо)" +msgstr "" +"Къде се намира групата — град, община, държава и т.н. (ако е приложимо)" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Група" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Редактиране настройките на групата %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Лого" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Добавяне или редактиране логото на %s" @@ -4668,11 +5391,11 @@ msgstr "Присъединяване" msgid "Leave" msgstr "Напускане" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Вход с име и парола" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Създаване на нова сметка" @@ -4694,17 +5417,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s вече получава бележките ви в %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Местоположение: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Лична страница: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4713,7 +5436,7 @@ msgstr "" "Биография: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Побутнати сте от %s" @@ -4728,39 +5451,47 @@ msgstr "%1$s (%2$s) се чуди с какво се занимавате нап msgid "%1$s just added your notice from %2$s" msgstr "%1$s току-що отбеляза като любима бележката ви от %2$s." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "От" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Изпращане на пряко съобщеие" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Изпращане на бележка" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Налични знаци" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "в отговор на" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Отговаряне на тази бележка" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Отговор" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Изтриване на бележката" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Изтриване" @@ -4781,27 +5512,29 @@ msgstr "Побутване на този потребител" msgid "Tags in %s's notices" msgstr "Етикети в бележките на %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(няма)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Общ поток" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Скорошни етикети" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Избрано" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Популярно" @@ -4817,31 +5550,33 @@ msgstr "Търсене на групи в сайта" msgid "Untitled section" msgstr "Неозаглавен раздел" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Абонаменти на %s" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Абонирани за %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Групи, в които участва %s" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете приятели и колеги да се присъединят към вас в %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Потребителят ви е блокирал." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Абониране за този потребител" @@ -4854,10 +5589,11 @@ msgid "Top posters" msgstr "Най-често пишещи" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Разблокиране на този потребител" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Разблокиране" @@ -4865,6 +5601,2051 @@ msgstr "Разблокиране" msgid "Unsubscribe from this user" msgstr "Отписване от този потребител" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Емисия с приятелите на %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Емисия с приятелите на %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Емисия с приятелите на %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s и приятели" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Можете да качите личен аватар тук." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватарът е обновен." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Изпращане на писмо при ново лично съобщение." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Може да качите лого за групата ви." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Изберете квадратна област от изображението за аватар" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Микроблог на %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Търсене на хора в %%site.name%% по техните име, място или интереси. " +"Отделяйте фразите за " + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Грешка при изпращане на прякото съобщение" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Търсене на \"%s\" в потока" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"За по-голяма сигурност, моля въведете отново потребителското си име и парола " +"при промяна на настройките." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Емисия на общия поток" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Емисия на общия поток" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Емисия на общия поток" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Създаване" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Профил на групата" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Профил на " + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Емисия с бележки на %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Емисия с бележки на %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Емисия с бележки на %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Изходяща кутия за %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Аватар" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Настройки на профила" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. " +"Проверете съобщенията (или папката за спам) за кода и указанията за " +"използването му." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Няма такъв потребител" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " +"там." + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Грешка при извличане данните на профила \"%s\" от Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " +"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Търсене за хора или бележки" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " +"отново след няколко минути." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Свързване към моментни съобщения, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Побутване" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си " +"име и парола." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s вече получава бележките ви в %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"С уважение,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Търсене" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Няма такъв документ." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Списък с потребителите в тази група." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Списък с потребителите в тази група." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Потребителски профил" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s и приятели, страница %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Списък с потребителите в тази група." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Разблокиране на този потребител" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Код за потвърждение" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Грешка при изтриване на бележката." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Неправилен етикет: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Опитайте друг псевдоним, този вече е зает." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Грешка при отбелязване като любима." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Нова бележка" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Нова бележка" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Неправилен псевдоним." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Не е указан профил." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Потребителят ви е блокирал." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Не членувате в тази група." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Блокиране на потребителя" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "За да създавате група, трябва да сте влезли." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Групи" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Грешка при обновяване на потребителя." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Грешка при записване настройките за Twitter" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Настройките са запазени." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "За да редактирате групата, трябва да сте й администратор." + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Няма резултати" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Потребителят ви е блокирал." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Съобщение" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Грешка при запазване на профила." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и " +"същ акаунт. От тук се управляват съответните OpenID." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Настройки на профила" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Ако сте забравили или загубили паролата си, може да получите нова на е-" +"пощата, въведена в профила ви." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Разпознати сте. Въведете паролата си по-долу. " + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Поискано е възстановяване на парола" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Грешка в кода за потвърждение." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Абониране за този потребител" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Любими бележки на %s, страница %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Емисия с бележки на %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Емисия с бележки на %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Емисия с бележки на %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Няма такъв потребител" + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Бележки с етикет %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Емисия с бележки на %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s вече получава бележките ви в %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Емисия с бележки на %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Емисия с бележки на %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Тази бележка вече е отбелязана като любима!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Тази бележка не е отбелязана като любима!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Грешка при изтегляне на общия поток" + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Не е указан получател." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Не са открити бележки." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Реплики на %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "лиценз." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Абонаменти на %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Настройки на профила" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Не членувате в тази група." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Проблем при записване на бележката." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Съобщение до %1$s в %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Потребителски профил" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Профил" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Качване" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Смяна на паролата" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Свързване" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Търсене" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Списък" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Блокиране" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Блокиране на потребителя" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Добавяне или редактиране логото на %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Няма съдържание!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Потребител" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Търсене" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Адресът на личната страница не е правилен URL." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Няма такъв етикет." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Преки съобщения до %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Твърде дълго. Може да е най-много 140 знака." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Грешка при проследяване — потребителят не е намерен." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Автобиографията е твърде дълга (до 140 символа)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Вече членувате в тази група." + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Грешка при проследяване — потребителят не е намерен." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Не членувате в тази група." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Грешка при проследяване — потребителят не е намерен." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Групи на %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Групи, в които участва %s" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Търсене на групи в сайта" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Форматът на файла с изображението не се поддържа." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Снимка" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Автобиографията е твърде дълга (до 140 символа)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Потребителят, когото проследявате, не съществува. " + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Забранено." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Грешка при преобразуване на tokens за одобрение в tokens за достъп." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Непозната версия на протокола OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Няма такава бележка." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Няма такава бележка." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Страницата не е достъпна във вида медия, който приемате" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " +"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Всички бележки, намерени с \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опишете себе си и интересите си в до 140 букви" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опишете себе си и интересите си в до 140 букви" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Автобиографията е твърде дълга (до 140 символа)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Неправилен адрес на профил (няма YADIS документ)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не е получен token за одобрение." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Емисия с бележки на %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Съобщение до %1$s в %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Емисия с любимите бележки на %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Емисия с любимите бележки на %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Емисия с любимите бележки на %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Емисия с бележки на %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Бележки" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Страницата не е достъпна във вида медия, който приемате" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Емисия с бележки на %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " +"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Абонаментът е одобрен, но не е зададен callback URL. За да завършите " +"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " +"абонамента, проверете инструкциите на сайта." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Грешка при четене адреса на аватара '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Грешен вид изображение за '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Грешка при пренасочване към сървър: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Лиценз на програмата StatusNet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Грешка при обновяване на потребител с потвърден email адрес." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Побутването е изпратено" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" +"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" +"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Отговаряне на тази бележка" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Проблем при записване на бележката." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Няма код за потвърждение." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Влизане в сайта" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Изберете оператор" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Опишете групата или темата й в до 140 букви" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опишете групата или темата й в до 140 букви" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Емисия с бележки на %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s отбеляза бележката ви като любима" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " от " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Грешка при изтриване на любима бележка." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Изтриване на бележката" + #, fuzzy #~ msgid "Code not yet ready." #~ msgstr "Командата все още не се поддържа." @@ -4885,9 +7666,6 @@ msgstr "Отписване от този потребител" #~ msgid "Showing recently popular notices" #~ msgstr "Търсене в съдържанието на бележките" -#~ msgid "List" -#~ msgstr "Списък" - #~ msgid "Icons" #~ msgstr "Икони" diff --git a/locale/ca/LC_MESSAGES/statusnet.mo b/locale/ca/LC_MESSAGES/statusnet.mo index aadf38da9892a697549dc353a73e23c97e03266a..c3a36098bed7fd5048324a41f7d06022b0dfd144 100644 GIT binary patch delta 29248 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 VcSbtf7Vks9PD}I$&-HPJ{XdOWc)NlLdPGSg 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 diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 44944c8ba8..1df50f70d1 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-06-12 09:18+0000\n" "Last-Translator: animarval \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Cerca \"%s\" al flux" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,17 +37,19 @@ msgid " from " msgstr " de " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Notificacions contestant a %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s t'ha convidat us ha convidat a unir-te al grup %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -83,8 +85,8 @@ msgstr "" "que conegueu i gent que us interessi.\n" "\n" "Podeu també compartir notícies sobre vosaltres mateixos, el que penseu, o la " -"vostra vida a la xarxa amb gent que conegueu. És també força bo per " -"conèixer nova gent amb qui compartir els vostres interessos.\n" +"vostra vida a la xarxa amb gent que conegueu. És també força bo per conèixer " +"nova gent amb qui compartir els vostres interessos.\n" "\n" "%1$s said:\n" "\n" @@ -99,11 +101,13 @@ msgstr "" "\n" "%6$s\n" "\n" -"If not, you can ignore this message. Thanks for your patience and your time.\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" "\n" "Sincerely, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ara està escoltant els teus avisos a %2$s." @@ -126,25 +130,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s notificacions que responen a notificacions de %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "estat de %1$s a %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Flux públic de %s" @@ -154,34 +161,48 @@ msgstr "Flux públic de %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s i amics" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s línia temporal pública" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s estat" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s línia temporal" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s notificacions de tots!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -189,7 +210,8 @@ msgstr "" "(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb " "instruccions sobre com confirmar la teva direcció de correu electrònic.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -198,7 +220,8 @@ msgstr "" "**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** és un servei de microblogging." @@ -211,32 +234,36 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 lletres en minúscula o números, sense signes de puntuació o espais" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 lletres en minúscula o números, sense puntuacions ni espais. Requerit." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 o més caràcters" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 o més caràcters, i no te n'oblidis!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 o més caràcters. Requerit." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -246,6 +273,7 @@ msgstr "" "has afegit. Has d'acceptar que %s et pugui enviar missatges." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -281,7 +309,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "No s'ha trobat el mètode API!" @@ -304,16 +359,23 @@ msgstr "No s'ha trobat el mètode API!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Mètode API en construcció." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Sobre" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Acceptar" @@ -324,6 +386,9 @@ msgstr "Acceptar" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Afegir" @@ -341,27 +406,29 @@ msgstr "Afegir o eliminar OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adreça" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Direccions d'amic per convidar (una per línia)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Totes les subscripcions" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Totes les actualitzacions per a %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" " @@ -371,32 +438,39 @@ msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" " #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Ja estàs connectat." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Ja estàs subscrit!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "N'estàs segur que vols eliminar aquesta notificació?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoritzar subscripció" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Iniciar sessió automàticament en el futur; no utilitzar en ordinadors " "compartits!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -406,15 +480,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar actualitzat." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -425,6 +503,7 @@ msgstr "" "llista d'amics?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -433,7 +512,7 @@ msgstr "" "carpeta de spam!) per al missatge amb les instruccions." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Esperant confirmació per aquest número de telèfon." @@ -444,6 +523,8 @@ msgstr "Anterior »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografia" @@ -451,16 +532,18 @@ msgstr "Biografia" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "La biografia és massa llarga (màx. 140 caràcters)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "No es pot esborrar la notificació." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "No es pot llegir l'URL de l'avatar '%s'" @@ -468,6 +551,8 @@ msgstr "No es pot llegir l'URL de l'avatar '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "No es pot guardar la nova contrasenya." @@ -475,31 +560,34 @@ msgstr "No es pot guardar la nova contrasenya." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancel·lar" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Impossible crear una instància de l'objecte OpenID" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Impossible normalitzar aquest Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "No es pot normalitzar aquesta direcció de correu electrònic" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Canviar" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Canviar correu electrònic" @@ -509,11 +597,12 @@ msgid "Change password" msgstr "Canviar contrasenya" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Canviar la teva contrasenya" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Canviar les preferències del teu perfil" @@ -523,6 +612,9 @@ msgstr "Canviar les preferències del teu perfil" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmar" @@ -535,12 +627,14 @@ msgstr "Confirmar adreça" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmació cancel·lada." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Codi de confirmació" @@ -549,7 +643,8 @@ msgstr "Codi de confirmació" msgid "Confirmation code not found." msgstr "Codi de confirmació no trobat. " -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -574,28 +669,31 @@ msgstr "" "publicar les notificacions a través de missatgeria instantània.\n" "* [Buscar gent](%%%%action.peoplesearch%%%%) que puguis conèixer o que " "comparteixi els teus interessos. \n" -"* Actualitzar les [preferències del teu " -"perfil](%%%%action.profilesettings%%%%) per explicar als demés més sobre tu. " -"* Llegir els [documents de la xarxa](%%%%doc.help%%%%) per conèixer les " -"característiques del nostre servei. \n" +"* Actualitzar les [preferències del teu perfil](%%%%action.profilesettings%%%" +"%) per explicar als demés més sobre tu. * Llegir els [documents de la xarxa]" +"(%%%%doc.help%%%%) per conèixer les característiques del nostre servei. \n" "\n" "Gràcies per registrar-te i esperem que gaudeixis d'aquest servei." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Connectar-se" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Connectar-se a un compte existent" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Posar-se en contacte" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "No s'ha pogut crear el formulari OpenID: %s" @@ -603,36 +701,40 @@ msgstr "No s'ha pogut crear el formulari OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" "No pots subscriure't de nou a aquest usuari: %s ja està a la teva llista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "No s'ha pogut redirigir al servidor: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "No s'ha pogut guardar la informació de l'avatar" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "No s'ha pogut guardar la informació del nou perfil" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "No pots subscriure a un altre a tu mateix." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "No pots subscriure." @@ -652,15 +754,17 @@ msgstr "No s'han pogut convertir els senyals de petició a senyals d'accés." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "No s'ha pogut eliminar la confirmació de correu electrònic." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "No s'ha pogut eliminar la subscripció." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "No es pot trobar cap estatus." @@ -673,29 +777,38 @@ msgstr "No s'ha pogut obtenir un senyal de petició." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "No s'ha pogut inserir el codi de confirmació." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "No s'ha pogut inserir una nova subscripció." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "No s'ha pogut guardar el perfil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "No es pot actualitzar l'usuari per autosubscriure." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "No s'ha pogut actualitzar el registre de l'usuari." @@ -711,42 +824,48 @@ msgstr "No s'ha pogut actualitzar el registre de l'usuari." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "No s'ha pogut actualitzar l'usuari." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Crear" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Crear un nou usuari amb aquest sobrenom." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Crear nou compte" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Crear nou compte per a un OpenID que ja té un usuari." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Adreça actual Jabber/Gtalk confirmada." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de telèfon actualment confirmat i activat per SMS." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Correu electrònic confirmat actualment." @@ -755,23 +874,27 @@ msgid "Currently" msgstr "Actualment" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Hashtag de l'error de la base de dades:%s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Error de BD en inserir resposta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Eliminar nota." #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters" @@ -779,11 +902,13 @@ msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Correu electrònic" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Direcció de correu electrònic" @@ -793,39 +918,43 @@ msgid "Email Settings" msgstr "Configuració del correu electrònic" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "L'adreça de correu electrònic ja existeix." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmació de l'adreça de correu electrònic" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Correu electrònic, com Email address, like \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Direcció de correu electrònic" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Escriu un sobrenom o una adreça de correu electrònic." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Escriu el codi que has rebut en el teu telèfon mòbil." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Error en autoritzar senyal" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Error en connectar usuari a OpenID." @@ -836,39 +965,46 @@ msgstr "Error en connectar usuari." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Error en inserir avatar" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Error en inserir el nou perfil" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Error en inserir perfil remot" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Error en guardar confirmació de l'adreça." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Error en guardar perfil remot" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Error en guardar perfil." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Error en guardar l'usuari." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Error en guardar usuari; invàlid." @@ -877,6 +1013,9 @@ msgstr "Error en guardar usuari; invàlid." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Error en configurar l'usuari." @@ -887,6 +1026,7 @@ msgstr "Error en actualitzar el perfil" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Error en actualitzar el perfil remot" @@ -896,33 +1036,36 @@ msgid "Error with confirmation code." msgstr "Error amb el codi de confirmació." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Sobrenom ja existent." -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Preguntes freqüents" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Error en actualitzar avatar." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed per a amics de %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed per a respostes a %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed per a l'etiqueta %s" @@ -937,7 +1080,7 @@ msgstr "Trobar contingut de les notes" msgid "Find people on this site" msgstr "Trobar gent en aquest lloc" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -950,6 +1093,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nom complet" @@ -958,23 +1106,33 @@ msgstr "Nom complet" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "El teu nom és massa llarg (màx. 255 caràcters)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Ajuda" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Inici" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Pàgina personal" @@ -982,21 +1140,27 @@ msgstr "Pàgina personal" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "La pàgina personal no és un URL vàlid." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Vull publicar notificacions per correu electrònic." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "Missatgeria Instantània" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Adreça de missatgeria instantània" @@ -1006,7 +1170,7 @@ msgid "IM Settings" msgstr "Configuració de missatgeria instantània" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1014,7 +1178,7 @@ msgstr "" "Si ja tens un compte, inicia una sessió amb el teu nom d'usuari i " "contrasenya per a connectar-lo al teu OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1022,7 +1186,7 @@ msgstr "" "Si vols afegir un compte OpenID, introdueix-lo en el camp de sota i clica " "\"Afegir\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1033,25 +1197,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Correu electrònic entrant" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Eliminat el correu electrònic entrant." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Contrasenya antiga incorrecta" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Nom d'usuari o contrasenya incorrectes." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1060,30 +1230,31 @@ msgstr "" "correu electrònic registrada." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "L'URL de l'avatar '%s' és invàlid" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Correu electrònic invàlid: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "La pàgina personal '%s' és invàlida" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "L'URL de la llicència '%s' és invàlid" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "El contingut de l'avís és invàlid" @@ -1098,13 +1269,13 @@ msgid "Invalid notice url" msgstr "L'URL de l'avís '%s' és invàlid" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "L'URL del perfil '%s' és invàlid." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "L'URL del perfil és invàlid (format incorrecte)" @@ -1122,44 +1293,52 @@ msgstr "Mida invàlida." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Nom d'usuari o contrasenya invàlids." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitació(ons) enviada(des)" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitació(ons) enviada(des) a la següent gent:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invitar" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invitar nous usuaris" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Utilitza el software de microblogging [StatusNet](http://status.net), versió %" -"s, disponible sota la [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +"Utilitza el software de microblogging [StatusNet](http://status.net), versió " +"%s, disponible sota la [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Aquest Jabber ID ja està sent utilitzat per un altre usuari." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1170,12 +1349,14 @@ msgstr "" "missatgeria instantània o a GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Idioma" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "L'idioma és massa llarg (màx 50 caràcters)." @@ -1184,7 +1365,15 @@ msgstr "L'idioma és massa llarg (màx 50 caràcters)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Ubicació" @@ -1193,7 +1382,12 @@ msgstr "Ubicació" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "La ubicació és massa llarga (màx. 255 caràcters)." @@ -1202,18 +1396,22 @@ msgstr "La ubicació és massa llarga (màx. 255 caràcters)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Inici de sessió" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Inici de sessió amb un compte [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1224,22 +1422,26 @@ msgstr "" "tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " "[OpenID] (%%action.openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Sortir" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nom llarg, preferiblement el teu nom \"real\"" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Contrasenya oblidada o perduda?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Posar un nou correu electrònic per publicar; cancel·lar l'antic." @@ -1250,16 +1452,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Gestionar com reps correus de %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membre des de" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog de %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1272,42 +1476,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "El meu text i els meus fitxers estan disponibles sota " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nou" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nou correu electrònic per publicar a %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nou correu electrònic entrant afegit." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nou sobrenom" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nou avís" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nova contrasenya" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió." @@ -1317,7 +1529,13 @@ msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Sobrenom" @@ -1326,7 +1544,12 @@ msgstr "Sobrenom" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Aquest sobrenom ja existeix. Prova un altre. " @@ -1335,49 +1558,60 @@ msgstr "Aquest sobrenom ja existeix. Prova un altre. " #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "El sobrenom ha de tenir només lletres minúscules i números i no pot tenir " "espais." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Sobrenom no permès." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Sobrenom de l'usuari que vols seguir" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Sobrenom o correu electrònic" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "No" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Cap Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Cap petició d'autorització!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "No s'ha sel·leccionat cap transport." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "No hi ha cap codi entrat" @@ -1389,11 +1623,15 @@ msgstr "Cap codi de confirmació." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Cap contingut!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "No hi ha cap direcció de correu electrònic." @@ -1402,7 +1640,9 @@ msgid "No id." msgstr "Cap identificador." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "No hi ha cap direcció de correu electrònic entrant." @@ -1413,6 +1653,7 @@ msgstr "Cap sobrenom retornat pel servidor remot." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Cap sobrenom." @@ -1420,12 +1661,14 @@ msgstr "Cap sobrenom." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Cap confirmació pendent per a cancel·lar." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "No hi ha cap número de telèfon." @@ -1435,7 +1678,8 @@ msgid "No profile URL returned by server." msgstr "Cap URL de perfil retornar pel servidor." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Cap adreça de correu electrònic registrada per aquest usuari." @@ -1447,7 +1691,7 @@ msgstr "Cap petició trobada!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Cap resultat" @@ -1458,12 +1702,16 @@ msgstr "Cap mida." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "No s'ha trobat cap estatus amb aquesta ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "No s'ha trobat cap estatus amb la ID trobada." @@ -1473,13 +1721,15 @@ msgid "No such OpenID." msgstr "No existeix aquest compte OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "No existeix aquest document." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "No existeix aquest avís." @@ -1517,12 +1767,22 @@ msgstr "No existeix aquesta subscripció" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "No existeix aquest usuari." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "No hi ha cap usuari amb aquesta direcció o usuari." @@ -1536,32 +1796,38 @@ msgid "Not a recovery code." msgstr "No és un codi de recuperació." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Usuari no registrat." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Format de data no suportat." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Jabber ID no vàlid" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "OpenID no vàlid." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "No és una direcció de correu electrònic vàlida." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Adreça de correu electrònic no vàlida." @@ -1569,6 +1835,11 @@ msgstr "Adreça de correu electrònic no vàlida." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Sobrenom no vàlid." @@ -1588,7 +1859,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "URL de perfil no vàlid (cap document YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "No és una imatge o és un fitxer corrupte." @@ -1599,11 +1871,13 @@ msgstr "No autoritzat." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Resposta inesperada!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "No s'ha trobat" @@ -1619,11 +1893,15 @@ msgstr "No s'ha trobat" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "No connectat." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "No estàs subscrit!" @@ -1640,39 +1918,44 @@ msgid "Notice feed for %s" msgstr "Feed d'avisos de %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Avís sense perfil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Avisos" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Aviso etiquetats amb %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Antiga contrasenya" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configuració del compte OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Auto-enviament d'OpenID" @@ -1680,29 +1963,34 @@ msgstr "Auto-enviament d'OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Accés OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Autenticació OpenID cancel·lada." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Autenticació OpenID fallida: %s." #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Error OpenID: %s" @@ -1718,11 +2006,12 @@ msgid "OpenID settings" msgstr "Configuració OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Opcionalment pots afegir un missatge a la invitació." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Càrrega parcial." @@ -1732,34 +2021,46 @@ msgstr "Càrrega parcial." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Contrasenya" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "La contrasenya i la confirmació no coincideixen." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "La contrasenya ha de tenir 6 o més caràcters." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Recuperació de contrasenya sol·licitada" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Contrasenya guardada." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Les contrasenyes no coincideixen." @@ -1779,14 +2080,17 @@ msgid "People search" msgstr "Cerca de gent" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personal" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Missatge personal" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de telèfon, no puntuació ni espais, en l'àrea del codi" @@ -1801,7 +2105,7 @@ msgstr "" "avisos de ningú, clica \"Cancel·lar\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Enviar un avís quan el meu estat Jabber/GTalk canvii." @@ -1810,7 +2114,9 @@ msgstr "Enviar un avís quan el meu estat Jabber/GTalk canvii." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferències" @@ -1819,42 +2125,52 @@ msgstr "Preferències" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Preferències guardades." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Preferència d'idioma" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacitat" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problema en guardar l'avís." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Perfil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL del perfil" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Configuració del perfil" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Perfil desconegut" @@ -1863,17 +2179,19 @@ msgid "Public Stream Feed" msgstr "Feed del flux públic" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Línia temporal pública" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publica una MicroID per a la meva direcció de Jabber/GTalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publica una MicroID per al meu correu electrònic." @@ -1883,12 +2201,14 @@ msgid "Recent Tags" msgstr "Etiquetes recents" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recuperar" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recuperar contrasenya" @@ -1901,37 +2221,45 @@ msgstr "Codi de recuperació d'un usuari desconegut." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrar-se" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registre no permès." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registre satisfactori" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Rebutjar" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Recorda'm" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Perfil remot sense perfil corresponent" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Subscripció remota" @@ -1945,6 +2273,9 @@ msgstr "Subscripció remota" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Eliminar" @@ -1953,7 +2284,7 @@ msgstr "Eliminar" msgid "Remove OpenID" msgstr "Eliminar OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1962,34 +2293,41 @@ msgstr "" "eliminar-lo, afegeix un altre abans." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Respostes" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Respostes a %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Restablir" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Restablir contrasenya" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Número de telèfon pels SMS" @@ -1998,17 +2336,18 @@ msgstr "Número de telèfon pels SMS" msgid "SMS Settings" msgstr "Configuració SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Confirmació SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Igual a la contrasenya de dalt" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Igual a la contrasenya de dalt. Requerit." @@ -2021,12 +2360,21 @@ msgstr "Igual a la contrasenya de dalt. Requerit." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Cercar" @@ -2036,7 +2384,7 @@ msgid "Search Stream Feed" msgstr "Feed del flux de cerca" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2045,7 +2393,7 @@ msgstr "" "Troba avisos a %%site.name%% per contingut. Separa els termes de cerca amb " "espais; han de ser majors a 3 caràcters." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2055,37 +2403,41 @@ msgstr "" "de cerca amb espais; han de ser majors a 3 caràcters." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Selecciona un transport" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Enviar" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" -"Enviar correu electrònic a aquesta direcció per publicar noves " -"notificacions." +"Enviar correu electrònic a aquesta direcció per publicar noves notificacions." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" "Envia'm notificacions quan algú nou se'm subscrigui, al meu correu " "electrònic." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Enviar-me avisos per Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2094,17 +2446,20 @@ msgstr "" "exorbitant càrrega del meu transport." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic " "subscrita." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Configuració" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Configuració guardada." @@ -2124,27 +2479,32 @@ msgid "Something weird happened." msgstr "Alguna cosa estranya ha passat." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Perdó, no hi ha un correu electrònic entrant permès." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Perdó, aquest no és el teu correu electrònic entrant permès." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Font" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Estadístiques" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "No s'ha trobat l'OpenID emmagatzemat." @@ -2152,24 +2512,28 @@ msgstr "No s'ha trobat l'OpenID emmagatzemat." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Subscriure's" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscriptors" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Subscripció autoritzada" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Subscripció rebutjada" @@ -2177,28 +2541,35 @@ msgstr "Subscripció rebutjada" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscripcions" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Error del sistema en pujar el fitxer." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Etiquetes" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Text" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Cerca de text" @@ -2218,6 +2589,7 @@ msgid "That confirmation code is not for you!" msgstr "Aquest codi de confirmació no és per a tu!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Aquest correu electrònic pertany a un altre usuari." @@ -2227,63 +2599,73 @@ msgid "That file is too big." msgstr "Aquest fitxer és massa gran." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Aquest ja és el teu Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Aquest ja és el teu correu electrònic." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Aquest ja és el teu número de telèfon." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Aquest no és el teu Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Aquest no és el teu correu electrònic" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Aquest no és el teu número de telèfon." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Aquesta adreça de missatgeria instantània és incorrecta." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Aquest és un número de confirmació incorrecte." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Aquest número de telèfon pertany a un altre usuari." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Massa llarg. La longitud màxima és de 140 caràcters." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Massa llarg. La longitud màxima és de 255 caràcters." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'adreça \"%s\" ha estat confirmada per al teu compte." @@ -2292,11 +2674,14 @@ msgstr "L'adreça \"%s\" ha estat confirmada per al teu compte." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "L'adreça ha estat eliminada." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2306,7 +2691,8 @@ msgstr "" "Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " "El teu identificador de subscripció és:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2316,34 +2702,39 @@ msgstr "" "de nou les instruccions per a saber com rebutjar la subscripció completament." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Aquestes són les persones que escolten els avisos de %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Aquestes són les persones que escolten els teus avisos." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Aquestes són les persones que %s escolta." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Aquestes són les persones que escoltes." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Aquestes persona ja són usuaris i tu estàs subscrit automàticament a ells:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Aquest codi de confirmació és massa vell. Si us plau comença de nou." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2352,7 +2743,7 @@ msgstr "" "botó d'enviament per a anar al teu proveïdor d'OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2367,6 +2758,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Aquest mètode requereix POST o DELETE." @@ -2375,25 +2769,37 @@ msgstr "Aquest mètode requereix POST o DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Aquest mètode requereix POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Aquesta pàgina no està disponible en un tipus de mèdia que acceptis." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Franja horària" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Franja horària no seleccionada." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2406,18 +2812,21 @@ msgstr "" "perfil a sota." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Dos ids d'usuari o screen_names has de ser substituïts." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL del teu web, blog o perfil en un altre lloc" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL del teu perfil en un altre servei de microblogging compatible" @@ -2429,15 +2838,22 @@ msgstr "URL del teu perfil en un altre servei de microblogging compatible" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Enviament de formulari inesperat." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Restabliment de contrasenya inesperat." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Acció desconeguda" @@ -2468,38 +2884,47 @@ msgstr "Cancel·lar subscripció" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Versió OMB no suportada" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Format d'imatge no suportat." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Actualitzacions per SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Actualitzacions per Missatgeria Instantània" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualitzacions de %1$s i amics a %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Pujar" @@ -2520,6 +2945,7 @@ msgid "Upload a new profile image" msgstr "Carregar una nova imatge per al perfil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2527,7 +2953,9 @@ msgstr "" "utilitzin aquest servei." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenyes" @@ -2552,11 +2980,16 @@ msgstr "L'usuari que vols seguir no existeix." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "L'usuari no té perfil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Sobrenom de l'usuari" @@ -2565,29 +2998,33 @@ msgid "User not found." msgstr "No s'ha trobat l'usuari." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Quina franja horària seria normal ser?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Què tal, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "On ets, per exemple \"Ciutat, Estat (o Regió), País\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Tipus d'imatge incorrecte per a '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Mida d'imatge incorrecta per a '%s'" @@ -2595,7 +3032,9 @@ msgstr "Mida d'imatge incorrecta per a '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Sí" @@ -2618,11 +3057,12 @@ msgid "You are already logged in!" msgstr "Ja t'has connectat!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Ja estàs subscrit a aquests usuaris:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "No ets amic dels usuaris que has especificat." @@ -2639,16 +3079,17 @@ msgstr "Pots crear un nou compte i començar a enviar avisos." #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -"Pots rebre missatges SMS a través del teu coreu electrònic des de " -"%%site.name%%." +"Pots rebre missatges SMS a través del teu coreu electrònic des de %%site.name" +"%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "Pots eliminar un OpenID del teu compte clicant el botó \"Eliminar\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2657,7 +3098,8 @@ msgstr "" "Pots enviar i rebre avisos via [missatges instantanis](%%doc.im%%) de Jabber/" "GTalk. Configura la teva adreça i opcions a sota." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2668,21 +3110,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Pots utilitzar la subscripció local!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "No pots registrar-te si no estàs d'acord amb la llicència." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "No ens vas enviar aquest perfil" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2704,11 +3148,13 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "No pots eliminar l'estatus d'un altre usuari." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" @@ -2716,6 +3162,7 @@ msgstr "" "%s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2723,22 +3170,23 @@ msgstr "" "Seràs avisat quan les teves invitacions siguin acceptades i els teus " "convidats es registrin al lloc. Gràcies per fer créixer la comunitat." -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "T'has identificat. Escriu una nova contrasenya a continuació." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "El teu URL OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "El teu nom d'usuari en aquest servidor, o la teva adreça de correu " "electrònic registrada." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2747,47 +3195,57 @@ msgstr "" "[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix " "compte d'usuari. Administra els teus OpenID associats aquí." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "fa pocs segons" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "fa %d dies" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "fa %d hores" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "fa %d minuts" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "fa %d mesos" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "fa un dia" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "fa un minut" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "fa un mes" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "fa un any" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "fa una hora" @@ -2809,12 +3267,14 @@ msgid "reply" msgstr "resposta" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "repeteix la contrasenya anterior" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tipus de fitxer no suportat" @@ -2835,6 +3295,26 @@ msgstr "« Posterior" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" "Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " @@ -2845,6 +3325,7 @@ msgid "This notice is not a favorite!" msgstr "Aquesta notificació no és un favorit!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "No pots eliminar favorits." @@ -2852,23 +3333,29 @@ msgstr "No pots eliminar favorits." msgid "Favor" msgstr "Favorit" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Envia'm un correu electrònic quan algú afegeixi una nota meva com a favorit." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Aquesta nota ja és favorita." #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "No es pot crear favorit." @@ -2878,11 +3365,13 @@ msgstr "Desfavorit" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s notificacions favorites" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed de notes favorites de %s" @@ -2926,33 +3415,44 @@ msgid "Login with your username and password. " msgstr "Entra amb el teu usuari i contrasenya. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "És massa llarg. Màxim del missatge és 140 caràcters." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "No has especificat el destinatari." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "No pots enviar un missatge a aquest usuari." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Aquest usuari no existeix" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nou missatge" @@ -3008,6 +3508,11 @@ msgstr "Pots actualitzar la informació del teu perfil aquí " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Usuari sense perfil coincident" @@ -3036,6 +3541,8 @@ msgid "New password successfully saved. " msgstr "La nova contrasenya s'ha guardat satisfactòriament. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "La contrasenya hauria de ser d'entre 6 a més caràcters." @@ -3059,12 +3566,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Per subscriure't, pots [accedir] (%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed per favorits de %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "No s'ha pogut recuperar els avisos de favorits." @@ -3072,7 +3582,7 @@ msgstr "No s'ha pogut recuperar els avisos de favorits." msgid "No such message." msgstr "No existeix el missatge." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Només el remitent i el receptor poden llegir aquest missatge." @@ -3096,51 +3606,70 @@ msgid "Mobile carrier for your phone. " msgstr "Transport per al teu telèfon. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Missatges directes a %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Tots els missatges directes enviats a %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Missatges directes que has enviat" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tots els missatges directes enviats per %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "No hi ha text al missatge!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "No has escrit cap usuari receptor." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "No pots enviar missatges directes a usuaris que no siguin amics teus." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favorits de %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s actualitzacions favorites per %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s ha afegit la teva nota com a favorita" @@ -3163,14 +3692,17 @@ msgstr "" "a Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Configuració Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Compte Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Compte Twitter verificat actualment." @@ -3179,6 +3711,7 @@ msgid "Twitter Username" msgstr "Usuari Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "No espais, si us plaus." @@ -3187,18 +3720,22 @@ msgid "Twitter Password" msgstr "Contrasenya Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Automàticament envia les meves notes a Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Envia respostes locals '@' a Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Subscriure'm als meus amics de Twitter aquí." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3207,6 +3744,7 @@ msgstr "" "minúscules, i guions baixos (_). 15 caràcters màxim." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "No es poden verificar les teves credencials de Twitter!" @@ -3217,33 +3755,43 @@ msgstr "No es pot recuperar la informació del compte per \"%s\" de Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "No s'ha pogut guardar la teva configuració de Twitter!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Configuració de Twitter guardada." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Aquest no és el teu compte de Twitter." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "No es pot eliminar aquest usuari de Twitter." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Compte de Twitter eliminat." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "No es poden guardar les preferències de Twitter." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Preferències de Twitter guardades." @@ -3260,18 +3808,19 @@ msgid "The subscription has been rejected, but no " msgstr "La subscripció ha estat rebutjada, però no " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Resultats de les comandes" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Comanda completada" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Comanda fallida" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Perdona, aquesta comanda no està implementada." @@ -3281,89 +3830,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Subscripcions: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "L'usuari no té última nota" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Nota marcada com a favorita." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nom complet: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Localització: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Pàgina web: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Sobre tu: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Missatge directe per a %s enviat" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Error al enviar el missatge directe." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Especifica el nom de l'usuari a que vols subscriure't" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Subscrit a %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Especifica el nom de l'usuari del que vols deixar d'estar subscrit" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Has deixat d'estar subscrit a %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Comanda encara no implementada." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notificacions off." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "No es poden posar en off les notificacions." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notificacions on." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "No es poden posar en on les notificacions." @@ -3371,11 +3942,11 @@ msgstr "No es poden posar en on les notificacions." msgid "Commands:\n" msgstr "Comandes:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "No s'ha pogut inserir el missatge." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "No s'ha pogut inserir el missatge amb la nova URI." @@ -3392,7 +3963,7 @@ msgstr "" "Tens una nova direcció per publicar a %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Nou missatge privat de %s" @@ -3406,7 +3977,7 @@ msgstr "" "%1$s (%2$s) t'ha enviat un nou missatge privat:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Només l'usuari pot llegir les seves safates de correu." @@ -3415,31 +3986,39 @@ msgid "This form should automatically submit itself. " msgstr "Aquest formulari s'ha d'enviar automàticament. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favorits" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "%s's notes favorites" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Usuari" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Safata d'entrada" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Els teus missatges rebuts" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Safata de sortida" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Els teus missatges enviats" @@ -3452,14 +4031,19 @@ msgid "Twitter integration options" msgstr "Opcions d'integració amb Twitter" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "A" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "No es pot analitzar el missatge." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s i amics, pàgina %d" @@ -3469,21 +4053,31 @@ msgid "You can upload your personal avatar." msgstr "Pots pujar el teu avatar personal." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Configuració de l'avatar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Previsualitzar" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Crop" @@ -3500,36 +4094,45 @@ msgid "There was a problem with your session token. " msgstr "Ha ocorregut un error amb la teva sessió. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" "Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " "avatar." #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "S'ha perdut el nostre fitxer de dades." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Hem perdut el nostre arxiu." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Tipus de fitxer desconegut" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "No s'ha especificat perfil." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "No hi ha cap perfil amb aquesta ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Usuari bloquejat." @@ -3537,11 +4140,11 @@ msgstr "Usuari bloquejat." msgid "Are you sure you want to block this user? " msgstr "N'estàs segur/a que vols bloquejar aquest usuari? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Ja havies bloquejat aquest usuari." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Error al guardar la informació del block." @@ -3558,38 +4161,56 @@ msgstr "Estàs a punt d'eliminar permanentment una notificació. " msgid "Add to favorites" msgstr "Afegir a favorits" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Editar el grup %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "La safata d'entrada ha d'estar habilitat per als grups de treball" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Has d'haver entrat per crear un grup." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Cap sobrenom." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "No existeix tal grup" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Has de ser admin per editar aquest grup" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Utilitza aquest formulari per editar el grup." @@ -3600,14 +4221,15 @@ msgstr "" "espais. " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "la descripció és massa llarga (màx. 140 caràcters)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "No s'ha pogut actualitzar el grup." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Configuració guardada." @@ -3624,7 +4246,8 @@ msgstr "Indicar una nova direcció de correu electrònic per publicar; " msgid "Send me email when someone " msgstr "Envia'm un correu electrònic quan algú " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Permetre que els amics em reclamin i m'enviïn un correu electrònic." @@ -3638,7 +4261,7 @@ msgstr "" "S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que " "has afegit. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Error del servidor - no es pot obtenir l'usuari!" @@ -3652,51 +4275,66 @@ msgstr "Si vols l'aplicació %s per actualitzar automàticament " msgid "Allow %s to update my Facebook status" msgstr "Permetre %s actualitzar el meu estat a Facebook" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Saltar" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Cap contingut!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginació" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Posteriors" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Anteriors" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Gràcies per convidar els teus amics a utilitzar %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Les invitacions han estat enviades als següents usuaris:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Has estat convidat a %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Convidar els teus amics a utilitzar %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Amics ja utilitzant %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Enviar invitacions" @@ -3707,7 +4345,8 @@ msgstr "No s'ha pogut eliminar l'usuari de Facebook." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" -msgstr "Ha ocorregut un problema al guardar les preferències de sincronització!" +msgstr "" +"Ha ocorregut un problema al guardar les preferències de sincronització!" #: actions/facebooksettings.php:67 msgid "Sync preferences saved." @@ -3740,12 +4379,14 @@ msgstr "Si vols que %s s'actualitzi automàticament " msgid "Sync preferences" msgstr "Preferències de sincronització" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Desfavoritar favorit" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Notificacions populars" @@ -3759,7 +4400,8 @@ msgid "The most popular notices on the site right now." msgstr "Les notificacions més populars en aquest lloc ara mateix." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Usuaris destacats" @@ -3773,15 +4415,17 @@ msgstr "Usuaris destacats, pàgina %d" msgid "A selection of some of the great users on %s" msgstr "Una selecció d'alguns dels millors usuaris a %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Aquest usuari t'ha bloquejat com a subscriptor." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "No ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo del grup" @@ -3789,11 +4433,13 @@ msgstr "Logo del grup" msgid "You can upload a logo image for your group." msgstr "Pots pujar una imatge de logo per al grup." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo actualitzat." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Error en actualitzar logo." @@ -3812,7 +4458,8 @@ msgid "A list of the users in this group." msgstr "La llista dels usuaris d'aquest grup." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Grups" @@ -3827,6 +4474,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% grups amb qui pots trobar i parlar " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Crear nou grup" @@ -3836,7 +4484,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Troba grups a %%site.name%% per nom, ubicació o descripció. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Cercar grup" @@ -3858,20 +4506,20 @@ msgstr "Enviar-me avisos per Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Un codi de confirmació ha estat enviat " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Has d'haver entrat per participar en un grup." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Ja ets membre d'aquest grup" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "No s'ha pogut afegir l'usuari %s al grup %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s s'ha pogut afegir al grup %s" @@ -3882,15 +4530,18 @@ msgstr "" "Les safates d'entrada han d'estar activades per entrar a formar part dels " "grups." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Has d'haver entrat per a poder marxar d'un grup." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "No s'ha trobat el grup." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "No ets membre d'aquest grup." @@ -3898,21 +4549,25 @@ msgstr "No ets membre d'aquest grup." msgid "You may not leave a group while you are its administrator." msgstr "No pots abandonar aquest grup mentre en sigui l'administrador." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "No s'han trobat registres dels membres." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s ha abandonat el grup %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Accedir al lloc" @@ -3924,15 +4579,17 @@ msgstr "No té cap estatus ara mateix" msgid "New group" msgstr "Nou grup" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Utilitza aquest formulari per crear un nou grup." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "No s'ha pogut crear el grup." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "No s'ha pogut establir la pertinença d'aquest grup." @@ -3944,11 +4601,14 @@ msgstr "Això és massa llarg. " msgid "Don't send a message to yourself; " msgstr "No t'enviïs missatges a tu mateix; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Notificació publicada" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax Error" @@ -3967,7 +4627,7 @@ msgstr "Reclamació enviada" msgid "Nudge sent!" msgstr "Reclamació enviada!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "Accés OpenID" @@ -3991,28 +4651,32 @@ msgstr "Auto-escurçament de la URL" msgid "Service" msgstr "Servei" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Servei d'auto-escurçament a utilitzar." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." -msgstr "El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)." +msgstr "" +"El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)." #: actions/passwordsettings.php:69 msgid "Change your password." msgstr "Canviar contrasenya" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Contrasenya canviada." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Etiqueta no vàlida per a la gent: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Usuaris que s'han etiquetat %s - pàgina %d" @@ -4022,11 +4686,12 @@ msgstr "Usuaris que s'han etiquetat %s - pàgina %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Aquests són usuaris que s'han etiquetat ells mateixos \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Informació del perfil" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4038,20 +4703,25 @@ msgid "Automatically subscribe to whoever " msgstr "Automàticament subscriure's a tothom " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Etiqueta no vàlida: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "No s'han pogut guardar les etiquetes." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Línia temporal pública, pàgina %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "No s'ha pogut recuperar la conversa pública." @@ -4061,8 +4731,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Això és %%site.name%%, un servei de " -"[microblogging](http://ca.wikipedia.org/wiki/Microblogging) " +"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" +"wiki/Microblogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4073,11 +4743,13 @@ msgstr "Núvol públic d'etiquetes" msgid "These are most popular recent tags on %s " msgstr "Aquestes són les etiquetes recents més populars a %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Núvol d'etiquetes" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Ho senti, però només la gent convidada pot registrar-se." @@ -4127,7 +4799,8 @@ msgstr "(Hauries de rebre un missatge per correu electrònic " msgid "That's a local profile! Login to subscribe." msgstr "Aquest és un perfil local! Entra per subscriure-t'hi." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Respostes a %s, pàgina %d" @@ -4137,50 +4810,71 @@ msgstr "Respostes a %s, pàgina %d" msgid "%s favorite notices, page %d" msgstr "%s notificacions favorites, pàgina %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s grup" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s grup, pàgina %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Perfil del grup" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Avisos" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Accions del grup" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Feed d'avisos del grup %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Membres" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Cap)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Tots els membres" @@ -4190,14 +4884,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de " -"[microblogging](http://ca.wikipedia.org/wiki/Microblogging)" +"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" +"(http://ca.wikipedia.org/wiki/Microblogging)" #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "Només el remitent i el destinatari " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, pàgina %d" @@ -4207,30 +4901,37 @@ msgid "'s profile" msgstr "perfil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Perfil de l'usuari" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Foto" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Accions de l'usuari" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Enviar un missatge directe a aquest usuari" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Missatge" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Tots els subscriptors" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Tots els grups" @@ -4240,8 +4941,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** té un compte a %%%%site.name%%%%, un servei de " -"[microblogging](http://ca.wikipedia.org/wiki/Microblogging) " +"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" +"ca.wikipedia.org/wiki/Microblogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4256,7 +4957,7 @@ msgid "A confirmation code was sent to the phone number you added. " msgstr "" "El codi de confirmació s'ha enviat al número de telèfon que tens afegit. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Transport mòbil" @@ -4314,16 +5015,17 @@ msgstr "Aquestes són les persones les notícies dels quals " msgid "These are the people whose " msgstr "Aquestes són les persones les quals" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Notificació etiquetada amb %s, pàgina %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Missatges etiquetats \"%s\", més recents primer" @@ -4345,7 +5047,7 @@ msgstr "Etiqueta %s" msgid "Tag user" msgstr "Etiqueta usuari" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4357,18 +5059,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Només pots etiquetar gent a la que estiguis subscrit o que s'hagin subscrit " "a tu." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "No s'han pogut guardar les etiquetes." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Utilitza aquest formulari per afegir etiquetes als teus subscriptors i " @@ -4378,20 +5080,23 @@ msgstr "" msgid "No such tag." msgstr "No existeix aquesta etiqueta." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Microblog etiquetat com %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Ha fallat el bloqueig d'usuari." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Ha fallat el desbloqueig d'usuari." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "No s'ha trobat." @@ -4399,15 +5104,16 @@ msgstr "No s'ha trobat." msgid "Add your Twitter account to automatically send " msgstr "Afegeix el teu compte Twitter per automàticament enviar " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Usuari Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Contrasenya Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Amics Twitter" @@ -4420,145 +5126,154 @@ msgstr "Nom d'usuari sols pot contenir números, " msgid "Unable to retrieve account information " msgstr "No s'ha pogut obtenir informació del compte " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Error al moure el block." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "No id en el perfil sol·licitat." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "No hi ha cap perfil amb aquesta id." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "No subscrit" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s grups" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s grups, pàgina %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Problema al guardar la notificació. Usuari desconegut." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Masses notificacions massa ràpid; pren un respir i publica de nou en uns " "minuts." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Pujar un avatar" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Altres" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Altres opcions" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Pàgina sense titol" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Navegació primària del lloc" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Perfil personal i línia temporal dels amics" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Cercar gent o text" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Compte" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Canviar correu electrònic, avatar, contrasenya, perfil" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Connectar a missatgeria instantània, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Sortir d'aquest lloc" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Accedir a aquest lloc" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Crear nou compte" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Accedir amb OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Ajuda'm" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Avís del lloc" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Vistes locals" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Notificació pàgina" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Navegació del lloc secundària" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Llicència del programari StatusNet" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Tot " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "llicència." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Bloquejar aquest usuari" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquejar" @@ -4571,11 +5286,14 @@ msgstr "Deixar de tenir favorita aquesta notificació" msgid "To use the %s Facebook Application you need to login " msgstr "Per utilitzar la Aplicació de Facebook %s necessites haver accedit " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr " un nou compte." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Publicat" @@ -4595,53 +5313,59 @@ msgstr "Filtre d'etiquetes" msgid "All" msgstr "Tot" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Etiqueta" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Elegeix una etiqueta para reduir la llista" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Anar" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL del teu web, blog del grup u tema" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Descripció" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Descriu el grup amb 140 caràcters" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Localització del grup, si n'hi ha, com \"Ciutat, Estat (o Regió), País\"" +msgstr "" +"Localització del grup, si n'hi ha, com \"Ciutat, Estat (o Regió), País\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Grup" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Admin" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Editar propietats del grup %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Afegir o editar logo %s" @@ -4671,11 +5395,11 @@ msgstr "Inici de sessió" msgid "Leave" msgstr "Abandonar" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Accedir amb el nom d'usuari i contrasenya" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Crear nou compte" @@ -4697,17 +5421,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s ara està escoltant " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Ubicació: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Pàgina personal: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4716,7 +5440,7 @@ msgstr "" "Biografia: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Has estat reclamat per %s" @@ -4731,39 +5455,47 @@ msgstr "%1$s (%2$s) vol saber què estàs fent " msgid "%1$s just added your notice from %2$s" msgstr "%1$s ha afegit la teva notificació des de %2$s." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Des de" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar notificació directa" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Enviar notificació" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Caràcters disponibles" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "en resposta a" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "respondre a aquesta nota" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Respondre" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Eliminar aquesta nota" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Eliminar" @@ -4784,27 +5516,29 @@ msgstr "Enviar una reclamació a aquest usuari" msgid "Tags in %s's notices" msgstr "Etiquetes en les notificacions de %s's" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(cap)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Públic" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Grups d'usuaris" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Etiquetes recents" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Destacat" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" @@ -4820,31 +5554,33 @@ msgstr "Trobar un grup en aquest lloc" msgid "Untitled section" msgstr "Secció sense títol" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Persones %s subscrites a" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Persones subscrites a %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s grups són membres de" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amics i companys perquè participin a %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Un usuari t'ha bloquejat." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Subscriure's a aquest usuari" @@ -4857,10 +5593,11 @@ msgid "Top posters" msgstr "Que més publiquen" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Desbloquejar aquest usuari" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Desbloquejar" @@ -4868,6 +5605,2068 @@ msgstr "Desbloquejar" msgid "Unsubscribe from this user" msgstr "Deixar d'estar subscrit des d'aquest usuari" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed per a amics de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed per a amics de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed per a amics de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s i amics" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Pots pujar el teu avatar personal." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualitzat." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, " +"no ho podràs desfer." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " +"us plau." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Pots pujar una imatge de logo per al grup." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "" +"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " +"avatar." + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog de %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes " +"de cerca amb espais; han de ser majors a 3 caràcters." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Error al enviar el missatge directe." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Cerca \"%s\" al flux" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i " +"contrasenya abans de canviar la teva configuració." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed del flux públic" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed del flux públic" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed del flux públic" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"excepte les següents dades privades: contrasenya, adreça de correu " +"electrònic, adreça de missatgeria instantània, número de telèfon." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Crear" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Perfil del grup" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "perfil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed d'avisos de %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed d'avisos de %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed d'avisos de %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Safata de sortida per %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Configuració del perfil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa " +"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les " +"instruccions per utilitzar-lo." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Aquest usuari no existeix" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes " +"a Twitter, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "No es pot recuperar la informació del compte per \"%s\" de Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Si us plau, revisa aquestes dades per a estar segur que desitges " +"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " +"avisos de ningú, clica \"Cancel·lar\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Cercar gent o text" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " +"minuts." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Connectar a missatgeria instantània, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Reclamar" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Per utilitzar la Aplicació de Facebook %s necessites haver accedit " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s ara està escoltant els teus avisos a %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentament,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Cercar" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "No existeix aquest document." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "La llista dels usuaris d'aquest grup." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "La llista dels usuaris d'aquest grup." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Perfil de l'usuari" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s i amics, pàgina %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "La llista dels usuaris d'aquest grup." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Ha fallat el desbloqueig d'usuari." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Codi de confirmació" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "No es pot esborrar la notificació." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etiqueta no vàlida: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Aquest sobrenom ja existeix. Prova un altre. " + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "No es pot crear favorit." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nou avís" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nou avís" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Sobrenom no vàlid." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "No s'ha especificat perfil." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Un usuari t'ha bloquejat." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "No ets membre d'aquest grup." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Usuari bloquejat." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Has d'haver entrat per crear un grup." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Grups" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "No s'ha pogut actualitzar l'usuari." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "No s'ha pogut guardar la teva configuració de Twitter!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferències de sincronització guardades." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Has de ser admin per editar aquest grup" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Cap resultat" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Un usuari t'ha bloquejat." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Missatge" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "No s'ha pogut guardar el perfil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix " +"compte d'usuari. Administra els teus OpenID associats aquí." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configuració del perfil" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" +"wiki/Microblogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova " +"que t'enviarem al correu electrònic que tinguis posat al teu compte." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "T'has identificat. Escriu una nova contrasenya a continuació." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Recuperació de contrasenya sol·licitada" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Error amb el codi de confirmació." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Subscriure's a aquest usuari" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s notificacions favorites, pàgina %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed d'avisos del grup %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed d'avisos del grup %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed d'avisos del grup %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" +"(http://ca.wikipedia.org/wiki/Microblogging)" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "No existeix aquest usuari." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Aviso etiquetats amb %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed d'avisos del grup %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" +"ca.wikipedia.org/wiki/Microblogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s ara està escoltant " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed d'avisos de %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed d'avisos de %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Aquesta nota ja és favorita." + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Aquesta notificació no és un favorit!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "No s'ha pogut recuperar la conversa pública." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "No has especificat el destinatari." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "No es pot trobar cap estatus." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Notificacions contestant a %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "llicència." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s subscripcions" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Configuració del perfil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "No ets membre d'aquest grup." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problema en guardar l'avís." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Missatge per a %1$s a %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Perfil de l'usuari" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Perfil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Pujar" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Canviar la teva contrasenya" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connectar-se" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Cercar" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Inici de sessió" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquejar" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Usuari bloquejat." + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Afegir o editar logo %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Cap contingut!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Usuari" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Cercar" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "La pàgina personal no és un URL vàlid." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "No existeix aquesta etiqueta." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Missatges directes a %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "És massa llarg. Màxim del missatge és 140 caràcters." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "la descripció és massa llarga (màx. 140 caràcters)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Ja ets membre d'aquest grup" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "No s'ha pogut afegir l'usuari %s al grup %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "No ets membre d'aquest grup." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s grups" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s grups són membres de" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Accions del grup" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Massa llarg. La longitud màxima és de 140 caràcters." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Format d'imatge no suportat." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Foto" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "la descripció és massa llarga (màx. 140 caràcters)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "L'usuari que vols seguir no existeix." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "No autoritzat." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "No s'han pogut convertir els senyals de petició a senyals d'accés." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versió desconeguda del protocol OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "No existeix aquest avís." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Hem perdut el nostre arxiu." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Aquesta pàgina no està disponible en " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no " +"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " +"[OpenID] (%%action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" " + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Explica'ns alguna cosa sobre tu " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "La biografia és massa llarga (màx. 140 caràcters)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "URL de perfil no vàlid (cap document YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Aquest és un perfil local! Entra per subscriure-t'hi." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "No s'ha pogut obtenir un senyal de petició." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed d'avisos del grup %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Missatge per a %1$s a %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed per favorits de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed per favorits de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed per favorits de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s grup" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Notificació publicada" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Aquesta pàgina no està disponible en " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed d'avisos de %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Si us plau, revisa aquestes dades per a estar segur que desitges " +"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " +"avisos de ningú, clica \"Cancel·lar\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. " +"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " +"El teu identificador de subscripció és:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix " +"de nou les instruccions per a saber com rebutjar la subscripció completament." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "No es pot llegir l'URL de l'avatar '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipus d'imatge incorrecte per a '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "No s'ha pogut redirigir al servidor: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Llicència del programari StatusNet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Reclamació enviada" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "respondre a aquesta nota" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problema en guardar l'avís." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Cap codi de confirmació." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Accedir a aquest lloc" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecciona un transport" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Descriu el grup amb 140 caràcters" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Descriu el grup amb 140 caràcters" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed d'avisos de %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s ha afegit la teva nota com a favorita" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " de " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "No pots eliminar favorits." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Eliminar nota." + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Crear nou compte" diff --git a/locale/cs/LC_MESSAGES/statusnet.mo b/locale/cs/LC_MESSAGES/statusnet.mo index 4618fd73d778b6e5942d7b337820c54ebf77d024..f20634a2f663f8421e562276ddad62a4d01fdcee 100644 GIT binary patch delta 17151 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 delta 10640 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 diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index aee74f1af3..f4c2137201 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-07-07 22:07+0000\n" "Last-Translator: Tomas Kral \n" "Language-Team: LANGUAGE \n" @@ -18,14 +18,14 @@ msgstr "" # jak přeložit stream? #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, fuzzy, php-format msgid " Search Stream for \"%s\"" msgstr " Hledej \"%s\" ve Streamu" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -38,17 +38,19 @@ msgid " from " msgstr " od " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -80,6 +82,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1 od teď naslouchá tvým sdělením v %2" @@ -102,25 +105,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1 statusů na %2" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Veřejný \"Stream\"" @@ -130,40 +136,55 @@ msgstr "Veřejný \"Stream\"" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s a přátelé" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -172,7 +193,8 @@ msgstr "" "**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** je služba mikroblogů." @@ -184,30 +206,34 @@ msgstr "Přispěvatelá by měly být zmíněny přezdívkou nebo celým jménem #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 a více znaků" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 a více znaků, a nezapomeňte" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -217,6 +243,7 @@ msgstr "" "posílání zpráv." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -246,7 +273,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -269,16 +323,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "O nás" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Přijmout" @@ -289,6 +350,9 @@ msgstr "Přijmout" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Přidat" @@ -306,27 +370,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adresa" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Všechny odběry" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Všechny aktualizace pro %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Všechny položky obsahující \"%s\"" @@ -336,30 +402,37 @@ msgstr "Všechny položky obsahující \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Již přihlášen" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Již přihlášeno" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizovaný odběr" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Příště automaticky přihlásit; ne pro počítače, které používá " #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -367,15 +440,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Obrázek" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Obrázek nahrán" #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -385,13 +462,14 @@ msgstr "" "účtu. (Přidal jste si %s do vašich kontaktů?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -403,6 +481,8 @@ msgstr "Starší »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "O mě" @@ -410,16 +490,18 @@ msgstr "O mě" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Nelze přečíst adresu obrázku '%s'" @@ -427,6 +509,8 @@ msgstr "Nelze přečíst adresu obrázku '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Nelze uložit nové heslo" @@ -434,31 +518,34 @@ msgstr "Nelze uložit nové heslo" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Zrušit" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Nelze dolozit zákaznický objekt OpenID" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Nelze normalizovat JabberID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Změnit" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -468,11 +555,12 @@ msgid "Change password" msgstr "Změnit heslo" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -482,6 +570,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Heslo znovu" @@ -494,12 +585,14 @@ msgstr "Potvrď adresu" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Potvrď zrušení" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -508,7 +601,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "Potvrzující kód nebyl nalezen" -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -528,20 +622,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Připojit" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Zruš existující účet" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakt" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Nelze vytvořit OpenID z: %s" @@ -549,35 +647,39 @@ msgstr "Nelze vytvořit OpenID z: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Nelze přesměrovat na server: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Nelze uložin informace o obrázku" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Nelze uložit nové informace do profilu" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -597,15 +699,17 @@ msgstr "Nelze konvertovat řetězec požadavku na přístupový řetězec." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Nelze smazat potvrzení emailu" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Nelze smazat odebírání" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -618,29 +722,38 @@ msgstr "Nelze získat řetězec požadavku." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Nelze vložit potvrzující kód" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Nelze vložit odebírání" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Nelze uložit profil" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -656,42 +769,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Nelze aktualizovat uživatele" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Vytvořit" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Vytvořit nového uživatele s touto přezdívkou" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Vytvořit nový účet" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Pro toto OpenID již uživatel existuje" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Potvrzené Jabber/GTalk adresy" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -700,23 +819,27 @@ msgid "Currently" msgstr "Nyní" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Chyba v DB při vkládání odpovědi: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Popiš sebe a své zájmy ve 140 znacích" @@ -724,11 +847,13 @@ msgstr "Popiš sebe a své zájmy ve 140 znacích" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -738,39 +863,43 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Emailová adresa již existuje" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Potvrzení emailové adresy" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Zadej přezdívku nebo emailovou adresu" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Chyba potvrujícího řetězce" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Chyba při propojení uživatele na OpenID" @@ -781,39 +910,46 @@ msgstr "Chyba přihlašování uživatele" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Chyba při kládání obrázku" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Chyba při vkládání nového profilu" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Chyba při vkládaní vzdáleného profilu" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Chyba při ukládání potvrzení adresy" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Chyba při ukládnání vzdáleného profilu" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Chyba při ukládaní profilu" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Chyba při ukládaní uživatele" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Chyba při ukládaní uživatele; neplatný" @@ -822,6 +958,9 @@ msgstr "Chyba při ukládaní uživatele; neplatný" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Chyba nastavení uživatele" @@ -832,6 +971,7 @@ msgstr "Chyba při aktualizaci profilu" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Chyba při aktualizaci vzdáleného profilu" @@ -841,33 +981,36 @@ msgid "Error with confirmation code." msgstr "Chyba v ověřovacím kódu" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Existující jméno" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Nahrávání obrázku selhalo." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, fuzzy, php-format msgid "Feed for friends of %s" msgstr "Feed přítel uživatele: %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, fuzzy, php-format msgid "Feed for replies to %s" msgstr "Feed odpovědí na %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -882,7 +1025,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -893,6 +1036,11 @@ msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo." #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Celé jméno" @@ -901,23 +1049,33 @@ msgstr "Celé jméno" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Nápověda" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Domů" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Moje stránky" @@ -925,21 +1083,27 @@ msgstr "Moje stránky" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Stránka není platnou URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM adresa" @@ -949,7 +1113,7 @@ msgid "IM Settings" msgstr "IM nastavení" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -957,7 +1121,7 @@ msgstr "" "Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte " "účet s OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -965,7 +1129,7 @@ msgstr "" "Pokud chcete přidat OpenID k vašemu účtu, zadejte OpenID do pole níže a " "klikněte na \"Přidat\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -974,25 +1138,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Neplatné heslo" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Neplatné jméno nebo heslo" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1001,30 +1171,31 @@ msgstr "" "u vašeho účtu." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Neplatná adresa obrázku '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Neplatná adresa '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Neplatná adresa licence '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Neplatný obsah sdělení" @@ -1039,13 +1210,13 @@ msgid "Invalid notice url" msgstr "Neplatná url sdělení" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Neplatná adresa profilu '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Neplatná adresa profilu (špatný formát)" @@ -1063,28 +1234,35 @@ msgstr "Neplatná velikost" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Neplatné jméno nebo heslo" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1096,11 +1274,12 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID již patří jinému uživateli" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1110,12 +1289,14 @@ msgstr "" "jste přidal %s do vašeho seznamu kontaktů." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1124,7 +1305,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Umístění" @@ -1133,7 +1322,12 @@ msgstr "Umístění" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" @@ -1142,18 +1336,22 @@ msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Přihlásit" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Přihlaste se pomocí [OpenID](%%doc.openid%%) účtu." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1164,22 +1362,26 @@ msgstr "" "[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" "action.openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Odhlásit" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Ztracené nebo zapomenuté heslo?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1190,16 +1392,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Členem od" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Mikroblog od %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1209,42 +1413,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Mé texty a soubory jsou k dispozici pod" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nová přezdívka" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nové sdělení" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nové heslo" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nové heslo bylo uloženo. Nyní jste přihlášen." @@ -1254,7 +1466,13 @@ msgstr "Nové heslo bylo uloženo. Nyní jste přihlášen." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Přezdívka" @@ -1263,7 +1481,12 @@ msgstr "Přezdívka" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Přezdívku již někdo používá. Zkuste jinou" @@ -1272,47 +1495,58 @@ msgstr "Přezdívku již někdo používá. Zkuste jinou" #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Přezdívka není povolena" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Přezdívka uživatele, kterého chcete sledovat" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Přezdívka nebo email" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Žádné Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Žádné potvrení!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1324,11 +1558,15 @@ msgstr "Žádný potvrzující kód." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Žádný obsah!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1337,7 +1575,9 @@ msgid "No id." msgstr "Žádné id" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1348,6 +1588,7 @@ msgstr "Nebyla poskytnuta žádná přezdívka od servru." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Žádná přezdívka." @@ -1355,12 +1596,14 @@ msgstr "Žádná přezdívka." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Nečeká žádné potvrzení na zrušení." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1370,7 +1613,8 @@ msgid "No profile URL returned by server." msgstr "Nebylo vráceno žádné URL profilu od servu." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Žádný registrovaný email pro tohoto uživatele." @@ -1382,7 +1626,7 @@ msgstr "Žádný požadavek nebyl nalezen!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Žádné výsledky." @@ -1393,12 +1637,16 @@ msgstr "Žádná velikost" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1408,13 +1656,15 @@ msgid "No such OpenID." msgstr "Žádné takové OpenID" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Žádný takový dokument." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Žádné takové oznámení." @@ -1452,12 +1702,22 @@ msgstr "Žádné takové odebírání" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Žádný takový uživatel." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1471,32 +1731,38 @@ msgid "Not a recovery code." msgstr "Není obnovujícím kódem" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Není platným Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Není platným OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Není platnou mailovou adresou." @@ -1504,6 +1770,11 @@ msgstr "Není platnou mailovou adresou." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Není platnou přezdívkou." @@ -1523,7 +1794,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Není platnou adresou profilu (není YADIS dokumentem)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Není obrázkem, nebo jde o poškozený soubor." @@ -1534,11 +1806,13 @@ msgstr "Neautorizován." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Nečekaná odpověď." #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1554,11 +1828,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Nepřihlášen" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Nepřihlášen!" @@ -1575,39 +1853,44 @@ msgid "Notice feed for %s" msgstr "Feed sdělení pro %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Sdělení nemá profil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Sdělení" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Staré heslo" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Nastavení OpenID účtu" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Přihlásit automaticky pomocí OpenID" @@ -1615,29 +1898,34 @@ msgstr "Přihlásit automaticky pomocí OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID přihlášení" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID adresa" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Přihlašovaní pomocí OpenID zrušeno" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Přihlašovaní pomocí OpenID selhalo: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID selhalo: %s" @@ -1653,11 +1941,12 @@ msgid "OpenID settings" msgstr "Nastavení OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Částečné náhrání." @@ -1667,34 +1956,46 @@ msgstr "Částečné náhrání." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Heslo" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Heslo a potvrzení nesouhlasí" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Heslo musí být alespoň 6 znaků dlouhé" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Žádost o obnovu hesla" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Heslo uloženo" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Hesla nesouhlasí" @@ -1714,14 +2015,17 @@ msgid "People search" msgstr "Hledání lidí" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Osobní" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1736,7 +2040,7 @@ msgstr "" "klikněte na \"Zrušit\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Poslat oznámení, když se změní můj Jabber/Gtalk status." @@ -1745,7 +2049,9 @@ msgstr "Poslat oznámení, když se změní můj Jabber/Gtalk status." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Nastavení" @@ -1754,42 +2060,52 @@ msgstr "Nastavení" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Nastavení uloženo" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Soukromí" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problém při ukládání sdělení" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Adresa Profilu" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Nastavené Profilu" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Neznámý profil" @@ -1799,17 +2115,19 @@ msgid "Public Stream Feed" msgstr "Veřejný Stream Feed" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Veřejné zprávy" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1819,12 +2137,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Obnovit" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Obnovit" @@ -1837,37 +2157,45 @@ msgstr "Obnovyt kód pro neznámého uživatele" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrovat" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Odmítnout" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Zapamatuj si mě" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Vzdálený profil s nesouhlasícím profilem" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Vzdálený odběr" @@ -1881,6 +2209,9 @@ msgstr "Vzdálený odběr" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Odstranit" @@ -1889,7 +2220,7 @@ msgstr "Odstranit" msgid "Remove OpenID" msgstr "Odstranit OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1898,34 +2229,41 @@ msgstr "" "přihlášení, nejprve přidejte jiné OpenID" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Odpovědi" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Odpovědi na %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Reset" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Resetovat heslo" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1934,17 +2272,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Stejné jako heslo výše" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1957,12 +2296,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Uložit" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Hledat" @@ -1973,7 +2321,7 @@ msgid "Search Stream Feed" msgstr "Hledat ve Stream Feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1982,7 +2330,7 @@ msgstr "" "Hledej sdělení na %%site.name%% podle obsahu. Minimální délka musí být " "alespoň 3 znaky" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -1992,48 +2340,56 @@ msgstr "" "Minimální délka musí být alespoň 3 znaky" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Odeslat" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Zasílat oznámení pomocí Jabber/GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Nastavení" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Nastavení uloženo" @@ -2053,27 +2409,32 @@ msgid "Something weird happened." msgstr "Něco zvláštního se stalo" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Zdroj" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistiky" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Uložené OpenID nebylo nalezeno." @@ -2081,24 +2442,28 @@ msgstr "Uložené OpenID nebylo nalezeno." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Odebírat" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Odběratelé" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Odběr autorizován" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Odběr odmítnut" @@ -2106,28 +2471,35 @@ msgstr "Odběr odmítnut" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Odběry" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Chyba systému při nahrávání souboru" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Vyhledávání textu" @@ -2147,6 +2519,7 @@ msgid "That confirmation code is not for you!" msgstr "Tento potvrzující kód vám nepatří!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2156,63 +2529,73 @@ msgid "That file is too big." msgstr "Soubor je příliš velký" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Toto je již vaše Jabber" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Toto není váš Jabber" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Toto je špatná IM adresa" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adresa \"%s\" byla potvrzena pro váš účet" @@ -2221,11 +2604,14 @@ msgstr "Adresa \"%s\" byla potvrzena pro váš účet" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Adresa byla odstraněna" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2235,7 +2621,8 @@ msgstr "" "nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " "je:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2245,33 +2632,38 @@ msgstr "" "nápovědě jak správně postupovat při zamítání odběru" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Toto jsou lidé, kteří naslouchají vašim sdělením " #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Toto jsou lidé, jejiž sdělením nasloucháte" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Tento potvrzující kód je příliš starý Prosím zkuste znovu" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2280,7 +2672,7 @@ msgstr "" "přechod k vašemu OpenID poskytovately." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2295,6 +2687,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2303,25 +2698,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Tato stránka není k dispozici v typu média která přijímáte." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2333,18 +2740,21 @@ msgstr "" "mikroblozích](%%doc.openmublog%%), vložte níže asdresu " #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Adresa profilu na jiných kompatibilních mikroblozích." @@ -2356,15 +2766,22 @@ msgstr "Adresa profilu na jiných kompatibilních mikroblozích." #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Nečekaná forma submission." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Nečekané resetování hesla." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2395,38 +2812,47 @@ msgstr "Odhlásit" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Nepodporovaná verze OMB." #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Nepodporovaný formát obrázku." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Upload" @@ -2445,12 +2871,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla." @@ -2474,11 +2903,16 @@ msgstr "Úživatel, kterému nasloucháte neexistuje." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Uživatel nemá profil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Přezdívka" @@ -2487,29 +2921,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Co se děje %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Místo. Město, stát." #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Neplatný typ obrázku pro '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Neplatná velikost obrázku '%s'" @@ -2517,7 +2955,9 @@ msgstr "Neplatná velikost obrázku '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2538,11 +2978,12 @@ msgid "You are already logged in!" msgstr "Již jste přihlášen" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2560,7 +3001,7 @@ msgstr "Můžete vytvožit nový účet a začít posílat oznámení." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2568,6 +3009,7 @@ msgstr "" "Můžete odstranit OpenID z vašeho účtu, kliknutím na tlačítko \"Odebrat\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2576,7 +3018,8 @@ msgstr "" "Můžete odesílat nebo přijámat sdělení pomocí Jabber/GTalk [zpráv](%%doc.im%" "%).Zadejte svou adresu níže." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2587,21 +3030,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Můžete použít místní odebírání." #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Neodeslal jste nám profil" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2615,35 +3060,39 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Byl jste identifikován. Zadejte nové heslo" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Vaše OpenID adresa" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Vaše přezdívka na tomto servu, nebo váš email zadaný při registraci" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2652,47 +3101,57 @@ msgstr "" "[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. " "Zde může spravovat vaše OpenID" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "před pár sekundami" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "před %d dny" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "asi před %d hodinami" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "asi před %d minutami" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "asi před %d mesíci" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "asi přede dnem" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "asi před minutou" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "asi před měsícem" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "asi před rokem" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "asi před hodinou" @@ -2714,12 +3173,14 @@ msgid "reply" msgstr "odpověď" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "stejné jako heslo výše" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2741,6 +3202,26 @@ msgstr "« Novější" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2749,6 +3230,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2756,22 +3238,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2781,11 +3269,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2825,33 +3315,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2905,6 +3406,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2933,6 +3439,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2953,12 +3461,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2966,7 +3477,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2990,51 +3501,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3053,14 +3583,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3069,6 +3602,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3077,24 +3611,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3105,33 +3644,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3148,18 +3697,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3169,89 +3719,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3259,11 +3831,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3278,7 +3850,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3290,7 +3862,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3299,31 +3871,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3336,14 +3916,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s a přátelé" @@ -3353,22 +3938,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Nastavení" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3385,35 +3980,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Žádné takové oznámení." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Žádný takový uživatel." @@ -3422,12 +4026,12 @@ msgstr "Žádný takový uživatel." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Již jste přihlášen" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3444,40 +4048,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Žádná přezdívka." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Žádné takové oznámení." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3487,16 +4109,17 @@ msgid "Nickname must have only lowercase letters " msgstr "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Nelze aktualizovat uživatele" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Nastavení uloženo" @@ -3514,7 +4137,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3530,7 +4154,7 @@ msgstr "" "Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro " "posílání zpráv." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3544,54 +4168,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Žádný obsah!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Novější" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Starší »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Feed přítel uživatele: %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3637,12 +4276,14 @@ msgstr "" msgid "Sync preferences" msgstr "Nastavení" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Žádné takové oznámení." @@ -3657,7 +4298,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3671,15 +4313,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3687,12 +4331,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Obrázek nahrán" -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Nahrávání obrázku selhalo." @@ -3712,7 +4358,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3727,6 +4374,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Vytvořit nový účet" @@ -3739,7 +4387,7 @@ msgstr "" "Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " "Minimální délka musí být alespoň 3 znaky" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Hledání lidí" @@ -3763,21 +4411,21 @@ msgstr "Zasílat oznámení pomocí Jabber/GTalk" msgid "A confirmation code was sent " msgstr "Žádný potvrzující kód." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Již jste přihlášen" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Nelze přesměrovat na server: %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3786,16 +4434,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Žádné takové oznámení." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Neodeslal jste nám profil" @@ -3804,21 +4455,25 @@ msgstr "Neodeslal jste nám profil" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Nelze vytvořit OpenID z: %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3830,16 +4485,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Nelze uložin informace o obrázku" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Nelze vytvořit odebírat" @@ -3853,12 +4510,15 @@ msgstr "Soubor je příliš velký" msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Sdělení" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3875,7 +4535,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID přihlášení" @@ -3903,11 +4563,13 @@ msgstr "" msgid "Service" msgstr "Hledat" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" @@ -3917,17 +4579,18 @@ msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" msgid "Change your password." msgstr "Změnit heslo" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Heslo uloženo" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Není platnou mailovou adresou." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3937,12 +4600,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Neznámý profil" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3952,21 +4616,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Neplatná adresa '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Nelze uložit profil" -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Veřejné zprávy" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3987,11 +4656,13 @@ msgstr "Veřejný Stream Feed" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4048,7 +4719,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Odpovědi na %s" @@ -4058,53 +4730,74 @@ msgstr "Odpovědi na %s" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Žádné takové oznámení." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Sdělení" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Feed sdělení pro %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Členem od" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4119,7 +4812,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4130,32 +4823,39 @@ msgid "'s profile" msgstr "Profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Uživatel nemá profil." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Odběratelé" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4181,7 +4881,7 @@ msgstr "Zasílat oznámení pomocí Jabber/GTalk" msgid "A confirmation code was sent to the phone number you added. " msgstr "Tento potvrzující kód vám nepatří!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4245,17 +4945,18 @@ msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" msgid "These are the people whose " msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Žádné Jabber ID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Mikroblog od %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4279,7 +4980,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4289,17 +4990,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Nelze uložin informace o obrázku" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4308,20 +5009,23 @@ msgstr "" msgid "No such tag." msgstr "Žádné takové oznámení." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Mikroblog od %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Žádný požadavek nebyl nalezen!" @@ -4330,16 +5034,17 @@ msgstr "Žádný požadavek nebyl nalezen!" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Nové heslo" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4352,157 +5057,166 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Nelze smazat potvrzení emailu" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Chyba při ukládaní uživatele" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Nebylo vráceno žádné URL profilu od servu." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Vzdálený profil s nesouhlasícím profilem" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Odhlásit" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Nahrávání obrázku selhalo." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "O nás" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Vytvořit nový účet" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Žádné takové OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Nápověda" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Nové sdělení" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Nové sdělení" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Odběry" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Žádný takový uživatel." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4515,12 +5229,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Vytvořit nový účet" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Veřejné" @@ -4542,34 +5259,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Odběry" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Popiš sebe a své zájmy ve 140 znacích" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4579,21 +5301,21 @@ msgstr "Místo. Město, stát." msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Odhlásit" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4626,12 +5348,12 @@ msgstr "Přihlásit" msgid "Leave" msgstr "Uložit" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Neplatné jméno nebo heslo" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Vytvořit nový účet" @@ -4652,24 +5374,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1 od teď naslouchá tvým sdělením v %2" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Umístění %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Moje stránky: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4684,43 +5406,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1 od teď naslouchá tvým sdělením v %2" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Nové sdělení" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 a více znaků" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "odpověd na ..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "odpověď" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4741,27 +5471,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Veřejné" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Hledání lidí" @@ -4779,32 +5511,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Vzdálený odběr" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Vzdálený odběr" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "Uživatel nemá profil." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Odběr autorizován" @@ -4818,11 +5552,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Žádný takový uživatel." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4830,6 +5565,2021 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed přítel uživatele: %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed přítel uživatele: %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed přítel uživatele: %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s a přátelé" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Obrázek nahrán" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Mikroblog od %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " +"Minimální délka musí být alespoň 3 znaky" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +# jak přeložit stream? +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Hledej \"%s\" ve Streamu" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Veřejný Stream Feed" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Veřejný Stream Feed" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Veřejný Stream Feed" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní " +"číslo." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Vytvořit" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Žádné takové oznámení." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Obrázek" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Nastavené Profilu" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "Tento potvrzující kód vám nepatří!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Žádný takový uživatel." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Nelze smazat potvrzení emailu" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " +"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " +"klikněte na \"Zrušit\"" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte " +"účet s OpenID." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1 naslouchá vašim sdělením na %s. \n" +"\n" +"\t%3\n" +"\n" +"S úctou váš,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Hledat" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Žádný takový dokument." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Nelze přesměrovat na server: %s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Žádný takový uživatel." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Uživatel nemá profil." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s a přátelé" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Žádný takový uživatel." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Umístění" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Žádné takové oznámení." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Neplatná adresa '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Přezdívku již někdo používá. Zkuste jinou" + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Nelze uložin informace o obrázku" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nové sdělení" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nové sdělení" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Není platnou přezdívkou." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Uživatel nemá profil." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Neodeslal jste nám profil" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Žádný takový uživatel." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Nelze aktualizovat uživatele" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Nastavení uloženo" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Žádné výsledky." + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Uživatel nemá profil." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Nelze uložit profil" + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. " +"Zde může spravovat vaše OpenID" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Nastavené Profilu" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Pokud jste zapomněl nebo stratil heslo, můžete si nechat zaslat nové na vaší " +"emailovou adresu uloženou u vašeho účtu." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Byl jste identifikován. Zadejte nové heslo" + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Žádost o obnovu hesla" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Chyba v ověřovacím kódu" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Odběr autorizován" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Žádné takové oznámení." + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed sdělení pro %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Žádný takový uživatel." + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1 od teď naslouchá tvým sdělením v %2" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed sdělení pro %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Nelze aktualizovat uživatele" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Nelze aktualizovat uživatele" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1 statusů na %2" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Mikroblog od %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Všechny odběry" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Nastavené Profilu" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Neodeslal jste nám profil" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problém při ukládání sdělení" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Uživatel nemá profil." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Upload" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Změnit heslo" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Připojit" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Hledat" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Přihlásit" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Žádný takový uživatel." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Žádný takový uživatel." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Žádný obsah!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Hledat" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Stránka není platnou URL." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Žádné takové oznámení." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Nelze přesměrovat na server: %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Již jste přihlášen" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Nelze přesměrovat na server: %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Neodeslal jste nám profil" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Nelze vytvořit OpenID z: %s" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Nepodporovaný formát obrázku." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Úživatel, kterému nasloucháte neexistuje." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Neautorizován." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Nelze konvertovat řetězec požadavku na přístupový řetězec." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Neznámá verze OMB protokolu." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Žádné takové oznámení." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Žádné takové oznámení." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Tato stránka není k dispozici v typu média která přijímáte." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? " +"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" +"action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Všechny položky obsahující \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Není platnou adresou profilu (není YADIS dokumentem)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Nelze získat řetězec požadavku." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed sdělení pro %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Odpovědi na %s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed přítel uživatele: %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed přítel uživatele: %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed přítel uživatele: %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Feed sdělení pro %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Sdělení" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Tato stránka není k dispozici v typu média která přijímáte." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed sdělení pro %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " +"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " +"klikněte na \"Zrušit\"" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v " +"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " +"je:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v " +"nápovědě jak správně postupovat při zamítání odběru" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Nelze přečíst adresu obrázku '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Neplatný typ obrázku pro '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Nelze přesměrovat na server: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Nové sdělení" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Nelze přesměrovat na server: %s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Odpovědi na %s" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problém při ukládání sdělení" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Žádný potvrzující kód." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Popiš sebe a své zájmy ve 140 znacích" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed sdělení pro %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1 od teď naslouchá tvým sdělením v %2" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " od " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Nové sdělení" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Vytvořit nový účet" @@ -4842,10 +7592,3 @@ msgstr "" #~ msgid "Error inserting notice" #~ msgstr "Chyba při vkládání nového sdělení" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Pokud jste zapomněl nebo stratil heslo, můžete si nechat zaslat nové na " -#~ "vaší emailovou adresu uloženou u vašeho účtu." diff --git a/locale/de/LC_MESSAGES/statusnet.mo b/locale/de/LC_MESSAGES/statusnet.mo index 335b267155d3ccfb26d974791c90a26b57617d37..4cb3b2b5ad1bccbd832f1df07c348e66e187b0b0 100644 GIT binary patch delta 29091 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 bE3!@Uuegls&C4zLeQ&3MnfjIbIDP*g-&s2E delta 20819 zcmZYH1)Nny1NZSW8#F8|ODwr`_tM?n-JQ}b9T%iK4sZn|R6=+Vgexo(A|jxOib{y2 zU=f0#NEp1o|IYA!{Jih^Ji~YD%*>fM_wItv+_#h6S{WI*79Fw5vi_Q25p8U}ET|6i zpgJs#s@DkBZf8tQ|K1oPaTss~n@~@7P!;ejrotsHuGiOW_CD2=Alruh_-&N?=V?Kf|13x-kE0a3UG%U>36Zy?Lno#i%8C z4Wn=~X2AC_Kb}NwuDckG>AKp@n#b7?HK1Xr^7W{heHV-3i2xBz&2N|)b9S>0$D@{} zGipkwqK?r)m;VDcCY_?Y=T*WssD>A!W^NN|z}uXOs6BHESKQ!JdIWH7Usa*y*w{F{d?7j zsN+tkDd~y1aRF)ucA(0?K&|z8RL6HwGxrzj$qV zUKodiP%|?hv(Ue{*<~EYJftsTS$u{CvG@QxrEM`U>0ziTU50VE9km%xJ0GChi5X}+ zs(_l&)~J~og_^M?7*N4mM0CS(SMVe1$)96Ej2@KquJ$UUmS`B3!PihrbQ*Kwebf`D z8En&qQ3Gy(YJV{5xG!|&I|eiVs_+RJ+WmJ?=Q?bN-L08XBd&p3`>vP_N1-;`1T26H zQA@PP}tdWHGd$mWxg690!9;XYKy=TIF!#I*Pn)p4?+ zY&eWXJ#ih>jP$_NxXk6hjyeqoP!I4mrodlN1AZ7FqO}MgW~VAEHX&UV)!`h}TCc=N ze8=U7P`mjUYU{XQA>6kHKo5}I{X`TU+PhI=JKHiSk2iMqeu_ITsr@gh-d(7P&aNt zP5BY$1uRDT0rtY|qwS1LL2a(psDZ3Qot7<_2G3v^UP2B03Z})Im6Kwsg7)O3t zEQD=QGckDr^Phppd@{5<*P$ACA2rf5SQek6-UG!Z+RyW{n4WYW)O};{2rfs}YdOh2 zKnIK^Jp*6Gb*QDwHQ6p*z5tQ@WE4kDU2D`5baWN^VnfnHu>ih@n%eJBPw+G9zQ?G6 z{N?gvSr0u}A!lXO@okEwa5!ov0vm{|C2|rqvffi|!vj!Hl7KNd8TH0nhS~9b%!ubv zYk3=s;8U!Qd8gTr=U$kT^kUS&|A)!(fHmNKNJLZg31-2YSQ($AMi|c$Y1endtT+_a z;cU!}D{&sahdO@Mr`z{PKh%fQAk^_(gnF;6M$Pa6Or!JvF%j+luaYu2r>Kgzu_C6P zVV}4z>bUhpJ?S9SCS8H`@Ca&ChOy8ZcvjRB)WR@qgIcQgsHN+QvGnf^CZZ{xiF(r4 zPz}9}8tDh9hE6-Lpz7U6Ez!T24I^jTO&N!}uM8&52x{v4p*Hs@%!{)ypk2JpWgI{) z#bwk09;2o_^(Sa0P0H)}uPwidy^koflC9e~h{>ayIj?smL!Z$fd(;dKMLo$3=MvQY>##U(N8NV;Bk(6wM|V;8|AT5TdX9ZF7Ma8R z>q#4sq21gKH3K72Q@Q|EzQv^vVF}U~P%{uQ*LGYA^`zZU1DJ$4Z~F0hLBQNdr{9?wA{2!Q{BmmHRG#2PW+y zRDV}65(B>y(a3&BZJK{kPmpT9o$73ui*zB3#|BsoC!+?s4K=m9Py;=VTA~Z6c5h)E z-gibVu=PqK^#Wd9BI>Y}vlptPk*F!!f+_Gl)QFF`{Nt!6{~9%r8!r7bYLh-jJy6<( zb|A5+e)6N*i^oDb|J7YVf6PO{SS*M^)SK=DSNdFUDNqB6bCz`Z)leO^ zLrr;iEP%tYFs{T3I{!zA=*j-TGWgt8D887V4M?{~t?6^r6ND|Xdm$Rjk}ig+u?K1i zhB&992D%J&e-Je@8(lgP1A3yPMDpVWSMV3A!SJQ_R79bkARlS~@u-IDp*n1eD(`_& zI0Cg<16UGY!$NopQ{n?u`_Gm#|B6H|v&Sw2YNW+b4VFXg>UyZD?1ws@!%$B$7d4QL zsCKrZI@*ir@jF!cUDOgiLLF;wIX_cC_T|j~C?Z|RP{(Ib70;n&<|b-so}qU63zv>r zVK-+s3@5(`s>2eP25Y!X@%W4Qy?INHmc*uo=FGlhF9~=YT25M)ppj zp1jRU>rhmOb5IQiQ7@p^QSbJH7=u?a9X>)mm|11-kHS)<14W3aq0XoqhoE--VyuMQ zu>#)2au~bX?&9XC4#!|;T<-GkVnfmyg7%3!qh@w8Y6)jz6fVNzI{&W|(UX0OTEknY zCwhQ7E`PZ4Y_Hh{<59<_113EI79+hIHKmu4hP|6u8l%?O^Ir?K_DwM>4#1Q;{{bTE zXg+4f-IxkbqGskR)WB|H7QBy{Fxgr=r8!VjT@+QnCaPX5)MvmT)E=3Q8sL1?DOiRn zbpF>8(G$OgE%0q@j!!Tf)?a5k=!L2`7B!$rSQO`AKHP(vne$i>|8@BVUbjov7&Y*z zs8i)*((nI5M6~u7F*`m-?bgieZN*Bc&wx&-H6M@aU=^0d!>A>A;LN_ke%LfbEm3FG zdtkov0P4Yh-oX5qCla>Nu1O`-4Xv>R&cOY+8`Z&pO?=kl3M_*q->_@l3srwH*2F_t z1pmTVEbykCp_-^Y(bu{1&47L46RyJdsD>lovQ|XhFc`HYYcU`Gf)y~$X8UAyaVY80 z*b}egVXV2u4(M;JMY`HnJ9ASp2kFfLB6*1%!(8|S#$ot2`y*CiE2c+N3)% z43DD*coMJR6V!~Jdz+n(skYm_(gBl`?t?mhL!5z0M6_!cIM<<$$4=Bk( zsPnrNwItgxEuKWp)Hzf~KVlyI0}Ep2U3MVVF&XJj_!IVY`3-j4`+Fl#?v2L$^zZE@ z5{DO2YyA|}VC{G9uS^GF1nJGFfo@05%zjLbS5W8r7u3N2MLkI7J$B&5Fp6|#)cuVy zCw9OWrbJoLjqz9s=d>m>GSDiM|G4N zOJa5GfJ0Facs#`XYwhlkQ4}NJvzw(fY5;w(IL<-sjSy;gUq%fe!#=yq8(|I7E3p`U zgKh8y7Qr_AJ#RWr!BY4SHpdc)%)f4!oM^uRZ9{c@2IKHIERPuu*bz5G6Zszi($~FsghuR>9qs@U{=!0P;0pz zGvoWHB{+-PR1Yv3OC7c|R0pS$o`@Oni8JL9TQ88ENDKufF(cMRbK%Y5~jyR zF1;R;k=~7ZqW!4NcpbG@?qUjjj*%GtfgNy4%tSg4DGzuRh_o||9%Ct3dDM2e3$-Uc z#CCWW!?D(f_EgkEbvPY0fJImd_n~IyKE`9@G22cR?8+;%KWYHSj%!l}ICezpk&*0U z`zmdU%}7td+W0AIhEkufFQPbSVN^qpfz!;tHeI^U>~YD9aip7JVH}2wa5d_Nd}nxCoQO)7`E2iw z16UT{$EtV_HKT>UwhvGZYmjb&p}-9yda}Q;F6R8kz9M_0I#`Y!@iT0U z`Oeu6hN1Sz42;2f&h@AP@5P;X4VUA>^L8)gykPHZfy_+6YfnVGxH}fdfvA~Si8=+F zF(dAF9!Kqsi>UhEMZ5MTumH(6H~=T0267#XVCrveKjl&P)x@GY|3itCA|r@et5c}s z_$6uy9$-22F4^-QkC{m}LDlPxC2hEJ#%>F&|uZr>C+bQgb)k)7m4eVpAh^cPcHLQbqNDoB~XbI{`LZ}Wdq4q|^EnB|? zD%}xF;B?dj?LrOg^IHKsqB~@$!7M-68>^w#Y5;02N1{eP$E8E4P5CJ{z^kb9o&QIB ze`(afyI?+Cfdz0srobzxJ@;dPh&E5ApKL)r)Mjb!?1tKWub`fMBdVcemmpn+OJ0)uOq1A zdKOp?OB0B#m?%1g&15`s#Q4Od1)gIr1n1ysL)cu`MGdBwLzL|0_s$SeM|ZJ2rnt|B z!5XNFUtu`@j@oojunMMrU^{GpD(`_>x;_|%gHat$#I!iaxe}9;eiH+Ff*nLOg(p!{ zdPyp3nDNKdcP&3jHTVg9$z6sUgJE%Qz2*dC`>b{4V9{>K0`5#Us z?L+(BZ3+$}y$|)~%lF8BVd#Q6NxzP3@F1qfcE8(KZZA~%7_5!Uo!_7yB-0;mbEA%P z6VzVo^#}7`jL2*VckMaV+qc{oHSZ`$^Bl2(0pV($WRInnd)(ZBPw$Mcp_W)!;^q!jSVg>Pf!A z)|loW`wgcD79qVJHQ-aI&2}C&@EfQlx`Wv;*}wXXVg2(E(Hxd%&=K7(2CA5;gKBJETbM9oBb)Uj*n9FMt4Z$v%NQPd2bN40Yg)lWpS zfUS@_nH@lRRK?Dy5sySQFx$Bf>yh4r+MIu)j$x|g_Pz|5gLGk32lX)yd!gE!fzh}c zHSp~LBC2>CHL`1%)G%rjrAlFvj#D|*spyT`BTG;X?L;+v6t%g|q1OBsYNmciEm1^D zo6d|{%0kXS8COshwYJSr9SlN^a1LrJH=$s56&L(N!sY@_o(nuwO*1nSt_aNb5$e1vK!d0P9#v8bspfO^tOs0ZkP z8c=`KQjSBlw*)I<5Y^t7sQ1MWSdRX^sC0J3by1sb1ZqlWqo!^ zJVVV;mMA;WT&TTL8ucpfj+JpC>eYJ!o8V~-Xk?kv8*d9XM}0B)9W~OwP%n)18BEf* z+)}7l>p0X>%t8%lJ!$~&qMkSrwZYqjJnQK@D!=r8e8qu78tzCUGG{vn@9rr;^ z<#^O4n}-_6O4KF{p{DpW=E0k&CydBwlD=%#K;1VI^&*;r8pwRq%mq>X?aj#fSH{O= zl)~$%8=_+D)aF2)f-0ydYlk|X-BFut6l%%VqmESw_2frT1N$7C;R9TW)iT+7U!m$< z4iHfXcU?hbX4`QTYQ!Z_Ph1tlu?=eE9h`%llTdqP5o+zZ!G8H~+tcW+bFR8GVMT<7xB=P*g1|20tW{$;2q zJ%F0Iqo@IW?#h2bwUa)lJ+5UjtLJjNy>Xh6?z4($B4A?2G zS8ozH#P8UH}N=~|SsBkqV{q{pD9a2$pkK9sN)>32#SPkZP- zYOk~?V?RT>q0;?On{PDgmHsMfQ~Sss33zW4(TF~B6@I|Hq#vWEGHY3zE{VFaHI~N# zsNMd$%in|*Nbf^^1-pmMF=aV>d^=(#(koFfuFtWt&i|i8G*z|Y?Qt27I%X44Yqb#7 zUM6~Oxqo$}g zs^QV7shf+MksxY72T^afo2c{s4>n*)l2^2QrbQ*&P6BE#&Bm&D88vfRD%%-pjsZ>C z0wSI87;5daRk01^LmkU_m+p)j=n&@;)H&aadV!rmeJ{9#`bP8!^|5WLnxtQH#i3@R zC62_&RXP8aiQFSYBP&?VcH9ls@G#Wznu}VZU8pC&f|}wdsLdHu-9C91)B{z=9+-f- z{~OfOJ;x%LxrRylo7P%2IRARW`DEx6>_Xk}E9wOiQ_~*5W~k$}49npUsN3?zX|PvACcaK zdO`KAXJ=puRwMmC)cwD>beZ~gCWd2m^0zo|p+27g1rA;TAf_v-NKJ?nk%nKkG09mjgju&p2WEV`b(Fj zzlqC7#wc#cNrkUmrBTkRltmD%X^)jNa3&b;1uNxL1kMopt%_nb*yFVTIf4le> zl$Rh~iu6Zetl9@uZ|oZTmck6gV<`O7w&TrlH%@TAOPyPU$E1I!PAftm?&(5aY4Uy} zbS4}i6eqNyJRgD2&;Rf08X&VGH~)^U32$;kdcq*$jj8?{ev6abt^Fv|i}1gfUNbMR zFNh4Jj;>hepE!g*rqh<*-Y>7eNC#5zM^kc|Q7IXfbX9aWuElPo|DleqiG)jpg@icr zzQN^$PlzAGnuK1ijU43d<^EcvZ@Bi}p?n=dS0nO{8_$2#Bzi^D2$sRi%pG$Gx*Fjr z!U$?zBD_LgJzDDLS|3E-dz2T!os><)+!!RU1@XJYPZIa2pPKZKM0KSluB$z^RXNu* z;(;&t;~hdBZqO&=%PS3ex-L<9oa_7_@_r$&8hLqKx#|paZ3PzB5hID#DG1cbE?;0CNUI9WE*V!1%M*2(2U$a${J~xiK z_)YRVxO*p)_ndeQ?peY;bxCg{9q_vHgQprH{P)W0Zaj~1u0Wq9eW};Pm5s#fr1`k; zo)L~yo(ZpDh_Y^a)dXH6ryAXEBKJ1&>crO)k0qnQLZ6*2un3vD`ct_*Y5ga!-(UyAE3VAe;C)3|Ci3c1HiXPiTnA;y8%+8> z`31=S4ivHODOB| zlQP^NovAaE{O$a3;`Jb*YbrNYadD;fFUfQjag8aiufjZIr0R6vLKjPn#_qwa|l#&aChosfNH-t!8JV(Wxgm#31bT~qVTti6Tp-u$x z9Ilbs#OIN}nXrv8nEVH>>~qS-a(^7*1@T4X=Og4IbfRua{Eqyx;q-rlh^`HU6x^_r z!g++JRD5|YC*9s922m#y>1?FuQl~!gGK5I-50O`c_&uC~sR;k?HJZEx>h7W7sMbFf ziI-O_4c?~0D!f5BLeLdWUL0XpgChR4hh4jlSE0J5|>smwDN_a|o zAoboLyiL5QzLKa;IR+6 zO2!cXjIu7o=M%;gpYO`Y5f6+d@gb236jmgj>pzVyAf1(TO3L3M{yKGr6RH!Rf`_m( zVJ2ZVbw0T`@z5jnD(b=ZG zBiy{3bXzLDyq*(zgHVC|;)F2-T?44w9N$-mn2!8-?khw52%#1El}P6x-V$R8*U5X^ z-A}gHNbmnPWSpa5KN+crzd<}D`2~sB#?Q##Ox`ZSS>msf|10*U>^t&w?IW)#>C&hx z(USD%6<23EE_U(El%%14(l3WvlG%ccSr|>`NE%6w4P0Ytr7s~ndAfXymq>Xv;(c7B z%Fa)nx}-m#tUU3L$=gl3sJnLo@q>gA%j+xRbIGgc z>Mfz*8S!a2fwIG{ZYk1334asnP#*Zp-9XxV%T@Yb33pwjyfz_&tGA3gX;x}D< zs4Jh!!{jFa3Sk*#&G9th1IibWzJ@VwZtsP;^OT2-+Z0yDxtO2uwQF#xvm<%yiLb&c z1YONZ7jWeXHp^>BIvpXqOV`2Fw0nX<=!zoVhxi)8RGp_zWc>H4Pr5FlKNZHio7z!f z7V$hT{VE+iA@3A^r+ng*h;PQvUe8c{X;jsll;_uR{Br-JP76PmnzI}KX7=c{-A;3evzTk{>Y(U`t64;^g9jj7&RcF|7frF zklqvG>W>~hVsz-?@M7Vi;-eFczjaIz|G}8De(i*;q45b-Oyr>6!w2>cJsZ0;A|j!8 z-vs~PN#*>elN+v>lFzR>WwrloO7GD0si{mTH0=-LADTYVA2nle=;n;h#-BB_gb=d1~3pBG{L>hnMLr!7bm`es2f;}2NW%fGxR);EhA z`hymq3$MlK!`AdxV;;s}k;S z-cZ|rwqbtCxV|HXC-fhlkSFx!#+=6gY}2q5{YLa1JB%#9&l`>W#5bDwQE#^LN56T{ zZ~WHVeznbe{eL&-jvP38#MqI3->r51Jl|#Y|J*vwpS>-=|72Ti=;5~cVWEXP+896W z&dYwaUH$y+yO#K!b{F-R?=IJo_RC-?@ zKPuY{#n+r(1g$5F`aZ}a(?FZB$4dnv~Fv6nyglV7Rg zU%XPppLC_S-|1>jzs1!I{@kmtg}PqLAMXG9eJ20v_o+ffZcYmeeepwM<2U>1HUHsH z$Nkd3Tw!;l@w?y7?=QW*G+pU3CCZkMD^sCL+4y3mONWZz*<`}UjTr7Xx_2s6@YinP z{;A(i_=g@Y@Mk>Q9@_VNJ`>9L__6V)KA8|oc-kw%U-M4^|JFbM`jIa#t*U1FuG(T^ z_B}ISgeP8!Fh@=Bjbx@lFebSv6&#e@R1eO`VM-)EOm5bi|`P zrYw5zR}zAYqD+TiWO`F8_+@$%7mUeZ&IPkan~8~^Mw_N4v0;qa7#57oVpary&O+{x ztmbnQ+?dT25B{3XWDOrXd|+@*cGEW)lfyI$?#f{jf@N}=N{O>`nn7WS(QzhV5_jb> zu_m#5J~P(@#}_cmgSiWuT*3MUO^d|c1x-y8?9s@iNGw>`)C@~}QPf;8iFb>eHzE?( zmN6s3f*;14HNl?c&B9=z3T97mRyz|N{IY^c8RRc=8U*K8G&K^xt!N@6f`3*um4gkc znQdvB_8&YvuJQ0ey@w{`N#t)i7MtL{8fJU&jhZHNa8pgwB>1AH84#RYi>Jz8+nf(( zsACodPuDRY1dr7-If7C3Orc;{ebXkmw!Zl)IJJQ(6a1}#iA#LYzzhvfoZG}~HNgqZ z%=O?~EzGOIJl#$1VB?l%#p+f}d%aesY;bBTQ!FvEwb@~UAG9&G5_7jTHB4}IJDN<^ z-t-LaX>YOz-)(Q!CuZwtcADV*PNryL+0N#LNu1o(JTbwE-A&%$zV4=fV&xtzYhrXS z(>N?~TpzPLEZDHWIUKAvz)TIM8)&j6b{}X~nc()p=G(-&ub42CxM-*u8J^g4q?wph zH)CSV7<1DED~>h25}%AUkHUiGCYqALr4vp4#J?w+T_*U&WHTh#c8V#R_;`w$XA^H~E2oGjjU`i#9Sz!8x sC#GFu-ZQ~>7MYB}*k#Ooz2MGKJnPwI=2o!j3K|&en_|JkzG?b@0Lz9zPXGV_ diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index ed02528794..8f5b44600d 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-04-28 00:01+0000\n" "Last-Translator: Dawid Jan \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Suche im Stream nach \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,18 +37,20 @@ msgid " from " msgstr "von" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s Antworten an %2$s" # Nedd a concrete example with full data #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s hat Dich eingeladen, auch bei %2$s mitzumachen." -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -99,11 +101,13 @@ msgstr "" "\n" "%6$s\n" "\n" -"Wenn nicht, ignoriere diese Nachricht. Danke für Deine Geduld und Deine Zeit\n" +"Wenn nicht, ignoriere diese Nachricht. Danke für Deine Geduld und Deine " +"Zeit\n" "\n" "Schöne Grüße von %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s hat deine Nachrichten auf %2$s abonniert." @@ -126,25 +130,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "Nachrichten von %1$, die auf Nachrichten von %2$ / %3$ antworten." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s Status auf %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s öffentlicher Stream" @@ -154,34 +161,48 @@ msgstr "%s öffentlicher Stream" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s und Freunde" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s öffentliche Zeitleiste" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s Status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s Zeitleiste" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s Nachrichten von allen!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -189,7 +210,8 @@ msgstr "" "(Sie sollten in Kürze eine E-Mail mit der Anleitung zur Überprüfung Ihrer " "Mailadresse erhalten.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -198,7 +220,8 @@ msgstr "" "**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** ist ein Microbloggingdienst." @@ -212,32 +235,36 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 Kleinbuchstaben oder Ziffern, keine Sonder- oder Leerzeichen" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 kleingeschriebene Buchstaben oder Zahlen, keine Satz- oder Leerzeichen. " "Pflicht." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 oder mehr Zeichen" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 oder mehr Zeichen, und nicht vergessen!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 oder mehr Buchstaben. Pflicht." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -247,6 +274,7 @@ msgstr "" "hast. Du musst zulassen, dass %s dir Nachrichten schicken darf." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -282,7 +310,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API-Methode nicht gefunden!" @@ -305,16 +360,23 @@ msgstr "API-Methode nicht gefunden!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API-Methode im Aufbau." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Über" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Akzeptieren" @@ -325,6 +387,9 @@ msgstr "Akzeptieren" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Hinzufügen" @@ -342,29 +407,31 @@ msgstr "OpenIDs hinzufügen oder löschen" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adresse" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" "Addressen von Freunden, die Du einladen möchtest. (Jeweils eine Addresse pro " "Zeile)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Alle Abonnements" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Alle Aktualisierungen für %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Alle Aktualisierungen, die den Suchbegriff \"%s\" enthalten" @@ -374,30 +441,37 @@ msgstr "Alle Aktualisierungen, die den Suchbegriff \"%s\" enthalten" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Bereits eingeloggt." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Bereits abonniert!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Sind sie sicher, dass sie diese Nachricht löschen wollen?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Abonnement bestätigen" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Automatisch einloggen; nicht bei gemeinsam genutzten PCs einsetzen!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -407,15 +481,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar aktualisiert." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -426,6 +504,7 @@ msgstr "" "Freundeliste hinzugefügt?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -434,7 +513,7 @@ msgstr "" "(auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Warte auf die Bestätigung dieser Telefonnummer." @@ -445,6 +524,8 @@ msgstr "Ältere" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografie" @@ -452,16 +533,18 @@ msgstr "Biografie" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Die Biografie ist zu lang (max. 140 Zeichen)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Die Nachricht konnte nicht gelöscht werden." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Konnte Avatar-URL nicht öffnen '%s'" @@ -469,6 +552,8 @@ msgstr "Konnte Avatar-URL nicht öffnen '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Konnte neues Passwort nicht speichern" @@ -476,31 +561,34 @@ msgstr "Konnte neues Passwort nicht speichern" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Abbrechen" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Konnte kein OpenID consumer Objekt erzeugen." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Konnte diese Jabber ID nicht normalisieren" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Konnte diese E-Mail-Adresse nicht normalisieren" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Ändern" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Ändere die E-Mail Verarbeitung" @@ -510,11 +598,12 @@ msgid "Change password" msgstr "Passwort ändern" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Ändere dein Passwort" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Ändern der Profileinstellungen" @@ -524,6 +613,9 @@ msgstr "Ändern der Profileinstellungen" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Bestätigen" @@ -536,12 +628,14 @@ msgstr "Adresse bestätigen" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Bestätigung abgebrochen." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Bestätigungscode" @@ -550,7 +644,8 @@ msgstr "Bestätigungscode" msgid "Confirmation code not found." msgstr "Bestätigungscode nicht gefunden." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -585,20 +680,24 @@ msgstr "" "zu erfahren" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Verbinden" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Verbinde bestehendes Konto" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakt" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Konnte OpenID-Formular nicht erstellen: %s" @@ -606,35 +705,39 @@ msgstr "Konnte OpenID-Formular nicht erstellen: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Kann Nutzer %s nicht folgen: schon in deiner Kontaktliste eingetragen" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Konnte nicht zum Server umleiten: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Konnte Avatarinfo nicht speichern" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Neue Profildaten konnten nicht gespeichert werden." -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Die Gegenseite konnte Dich nicht abonnieren." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Konnte nicht abbonieren." @@ -654,15 +757,17 @@ msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Konnte E-Mailbestätigung nicht löschen." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Konnte Abonnement nicht löschen." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Konnte keine Statusmeldungen finden." @@ -675,29 +780,38 @@ msgstr "Konnte keinen Anfrage-Token bekommen." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Konnte keinen Bestätigungscode einfügen." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Konnte neues Abonnement nicht eintragen." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Konnte Profil nicht speichern." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Autosubscribe konnte nicht aktiviert werden." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Konnte Nutzereintrag nicht schreiben" @@ -713,42 +827,48 @@ msgstr "Konnte Nutzereintrag nicht schreiben" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Konnte Benutzerdaten nicht aktualisieren." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Erstellen" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Neuen Nutzer mit diesem Nicknamen erstellen." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Neues Konto anlegen" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Erzeugen eines Kontos zu einer OpenID, die schon einem Nutzer gehört." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Aktuelle bestätigte Jabber/GTalk-Adresse" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Aktuelle für den SMS Dienst bestätigte Telefon Nummer" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Aktuelle bestätigte E-Mail Adresse" @@ -757,23 +877,27 @@ msgid "Currently" msgstr "Momentan" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Datenbankfehler beim Einfügen der Antwort: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Notiz löschen" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Beschreibe dich selbst in 140 Zeichen" @@ -781,11 +905,13 @@ msgstr "Beschreibe dich selbst in 140 Zeichen" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-Mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "E-Mail Adresse" @@ -795,39 +921,43 @@ msgid "Email Settings" msgstr "E-Mail Einstellungen" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Diese E-Mail Adresse existiert bereits." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Bestätigung der E-Mail Adresse" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "E-Mail Adresse, z.B. \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "E-Mail Adressen" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Gib einen Spitznamen oder eine E-Mail Adresse ein." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Gib den Code ein, den du auf deinem Handy via SMS bekommen hast." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Fehler beim Autorisieren des Tokens" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Fehler beim Verbinden des Nutzers mit der OpenID." @@ -838,39 +968,46 @@ msgstr "Fehler beim Verbinden des Nutzers." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Fehler beim Einfügen des Avatars" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Neues Profil konnte nicht angelegt werden" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Fehler beim Einfügen des entfernten Profils" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Fehler beim Speichern der Adressbestätigung." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Fehler beim Speichern des entfernten Profils" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Fehler bei Speichern des Profils." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Fehler beim Speichern des Nutzers." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Fehler beim Speichern des Nutzers, ungültig." @@ -879,6 +1016,9 @@ msgstr "Fehler beim Speichern des Nutzers, ungültig." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Fehler bei den Nutzereinstellungen." @@ -889,6 +1029,7 @@ msgstr "Fehler beim Update des Profils" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Fehler beim Update des entfernten Profils" @@ -898,33 +1039,36 @@ msgid "Error with confirmation code." msgstr "Fehler beim Bestätigungscode." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Nick wird bereits verwendet" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Aktualisierung des Avatars fehlgeschlagen." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed der Freunde von %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed der Antworten an %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed für den Tag %s" @@ -939,7 +1083,7 @@ msgstr "Durchsuche den Inhalt der Notices" msgid "Find people on this site" msgstr "Finde Leute auf dieser Seite" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -952,6 +1096,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Vollständiger Name" @@ -960,23 +1109,33 @@ msgstr "Vollständiger Name" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Ihr vollständiger Name ist zu lang (maximal 255 Zeichen)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Hilfe" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Startseite" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Homepage" @@ -984,22 +1143,28 @@ msgstr "Homepage" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "" "Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Ich möchte Einträge per E-Mail veröffentlichen." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM Adresse" @@ -1009,7 +1174,7 @@ msgid "IM Settings" msgstr "IM Einstellungen" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1017,7 +1182,7 @@ msgstr "" "Wenn du schon ein Konto hast, dann melde dich mit Nutzernamen und Passwort " "an, um deine OpenID zu verknüpfen." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1025,7 +1190,7 @@ msgstr "" "Wenn du deinem Konto eine OpenID hinzufügen möchtest, dann trage sie hier " "ein und klicke auf \"Hinzufügen\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1037,25 +1202,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Eingehende E-Mail" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Eingehende E-Mail Adresse entfernt" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Altes Passwort falsch" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Falscher Benutzername oder Passwort." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1064,30 +1235,31 @@ msgstr "" "hinterlegte E-Mailadresse geschickt." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Ungültiger Avatar-URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Ungültige E-Mail Adresse: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ungültige Homepage '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Ungültige Lizenz-URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Ungültiger Nachrichteninhalt" @@ -1102,13 +1274,13 @@ msgid "Invalid notice url" msgstr "Ungültige Nachrichten-URL" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ungültige Profil-URL '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Ungültige Profil-URL (falsches Format)" @@ -1126,28 +1298,35 @@ msgstr "Ungültige Größe." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Benutzername oder Passwort falsch." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Einladung(en) verschickt" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Einladung(en) an folgende Personen geschickt:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Einladen" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Lade neue Leute ein" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1159,11 +1338,12 @@ msgstr "" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Diese Jabber ID wird bereits von einem anderen Benutzer verwendet." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1174,12 +1354,14 @@ msgstr "" "Programm oder GTalk aufgenommen hast." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Sprache" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)" @@ -1188,7 +1370,15 @@ msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Aufenthaltsort" @@ -1197,7 +1387,12 @@ msgstr "Aufenthaltsort" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." @@ -1206,18 +1401,22 @@ msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Einloggen" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Mit [OpenID](%%doc.openid%%) Konto einloggen" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1228,22 +1427,26 @@ msgstr "" "[Registriere](%%action.register%%) ein neues Konto oder versuche es mit " "[OpenID](%%action.openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Abmelden" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Längerer Name, bevorzugt dein \"echter\" Name" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Passwort vergessen?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Neue Mailadresse für Postings aktivieren; die alte wird automatisch " @@ -1256,64 +1459,74 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Einstellen, wie und wann du Emails von %%site.name%% bekommst." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Mitglied seit" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog von %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " "email but isn't listed here, send email to let us know at %s." msgstr "" "Netzbetreiber deines Telefons. Falls du einen Betreiber kennst, der SMS-via-" -"Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter " -"%s." +"Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter %" +"s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Meine Texte und Daten sind verfügbar unter" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Neu" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Neue E-Mail Adresse um auf %s zu schreiben" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Neue Eingangs-Emailadresse hinzugefügt." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Neuer Nutzername" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Neue Nachricht" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Neues Passwort" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt eingeloggt." @@ -1323,7 +1536,13 @@ msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt eingeloggt." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Nutzername" @@ -1332,7 +1551,12 @@ msgstr "Nutzername" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." @@ -1341,49 +1565,60 @@ msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. " "Leerzeichen sind nicht erlaubt." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Nutzername nicht erlaubt." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Nutzername des Nutzers, dem du folgen möchtest" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Nutzername oder E-Mail" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Nein" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Keine Jabber-ID" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Keine Bestätigungsanfrage!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Kein Netzanbieter ausgewählt." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Kein Code eingegeben" @@ -1395,11 +1630,15 @@ msgstr "Kein Bestätigungs-Code." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Kein Inhalt!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Keine E-Mail Adresse." @@ -1408,7 +1647,9 @@ msgid "No id." msgstr "Keine ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Keine Eingangs-Emailadresse" @@ -1419,6 +1660,7 @@ msgstr "Der entferne Server hat keinen Nutzernamen geliefert." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Kein Nutzername." @@ -1426,12 +1668,14 @@ msgstr "Kein Nutzername." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Keine ausstehende Bestätigung, die abgebrochen werden kann." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Keine Telefonnummer." @@ -1441,7 +1685,8 @@ msgid "No profile URL returned by server." msgstr "Der entfernte Server hat keine Profil-URL geliefert." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Der Nutzer hat keine registrierte E-Mailadresse." @@ -1453,7 +1698,7 @@ msgstr "Keine Anfrage gefunden!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Keine Ergebnisse" @@ -1465,13 +1710,17 @@ msgstr "Keine Größe." # Duplicate with: "No status with that ID found." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Keine Nachricht mit dieser ID gefunden." # Duplicate with: "No status found with that ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Keine Nachricht mit dieser ID gefunden." @@ -1481,13 +1730,15 @@ msgid "No such OpenID." msgstr "Diese OpenID ist nicht bekannt." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Unbekanntes Dokument." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Unbekannte Nachricht." @@ -1525,12 +1776,22 @@ msgstr "Unbekanntes Abonnement" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Unbekannter Benutzer." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Kein Benutzer mit dieser E-Mail Adresse oder mit diesem Nutzernamen." @@ -1544,32 +1805,38 @@ msgid "Not a recovery code." msgstr "Kein Wiederherstellungscode." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Kein registrierter Nutzer." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Ungültige Jabber-ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Ungültige OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Ungültige E-Mail-Adresse" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Ungültige E-Mail-Adresse." @@ -1577,6 +1844,11 @@ msgstr "Ungültige E-Mail-Adresse." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Ungültiger Nutzername." @@ -1596,7 +1868,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Ungültige Profil-URL (kein YADIS-Dokument)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Kein Bild oder defekte Datei." @@ -1607,11 +1880,13 @@ msgstr "Nicht autorisiert." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Unerwartete Antwort!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Nicht gefunden" @@ -1627,11 +1902,15 @@ msgstr "Nicht gefunden" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Nicht eingeloggt." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Nicht abonniert!" @@ -1648,39 +1927,44 @@ msgid "Notice feed for %s" msgstr "Feed der Nachrichten von %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Nachricht hat kein Profil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Nachrichten" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Nachrichten, die mit %s getagt sind" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Altes Passwort" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID Account erstellen" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID Automatische Übertragung" @@ -1688,29 +1972,34 @@ msgstr "OpenID Automatische Übertragung" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID Anmeldung" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID-URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID-Authentifizierung abgebrochen." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID-Authentifizierung fehlgeschlagen: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID-Fehler: %s" @@ -1726,13 +2015,14 @@ msgid "OpenID settings" msgstr "OpenID-Einstellungen" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" "Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht " "anfügen." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Unvollständiger Upload" @@ -1742,34 +2032,46 @@ msgstr "Unvollständiger Upload" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Passwort" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Passwort und seine Bestätigung stimmen nicht überein." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Passwort muss mehr als 6 Zeichen enthalten" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Wiederherstellung des Passworts angefordert" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Passwort gespeichert." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Passwörter stimmen nicht überein." @@ -1789,14 +2091,17 @@ msgid "People search" msgstr "Suche nach anderen Nutzern" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Eigene" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Private Nachricht" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl" @@ -1811,7 +2116,7 @@ msgstr "" "\"Abbrechen\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Schicke eine Nachricht, wenn sich mein Jabber/GTalk Status verändert." @@ -1820,7 +2125,9 @@ msgstr "Schicke eine Nachricht, wenn sich mein Jabber/GTalk Status verändert." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Einstellungen" @@ -1829,42 +2136,52 @@ msgstr "Einstellungen" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Einstellungen gesichert." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Bevorzugte Sprache" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privatsphäre" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profil-URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profil Einstellungen" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profil unbekannt" @@ -1873,17 +2190,19 @@ msgid "Public Stream Feed" msgstr "Feed des öffentlichen Streams" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Öffentliche Zeitleiste" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "MicroID für meine Jabber/GTalk-Adresse veröffentlichen." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "MicroID für meine Emailadresse veröffentlichen." @@ -1893,12 +2212,14 @@ msgid "Recent Tags" msgstr "Neueste Tags" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Wiederherstellung" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Stelle Passwort wieder her" @@ -1911,37 +2232,45 @@ msgstr "Wiederherstellungscode für unbekannten Nutzer." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrieren" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registrierung nicht gestattet" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registrierung erfolgreich" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Ablehnen" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Anmeldedaten merken" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Entferntes Profil ohne ein passendes Profil" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Entferntes Abonnement" @@ -1955,6 +2284,9 @@ msgstr "Entferntes Abonnement" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Entfernen" @@ -1963,7 +2295,7 @@ msgstr "Entfernen" msgid "Remove OpenID" msgstr "Entferne OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1972,34 +2304,41 @@ msgstr "" "Falls du sie also entfernen musst, füge zuerst eine neue OpenID hinzu." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Antworten" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Antworten an %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Zurücksetzen" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Passwort zurücksetzen" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS Telefonnummer" @@ -2008,17 +2347,18 @@ msgstr "SMS Telefonnummer" msgid "SMS Settings" msgstr "SMS Einstellungen" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS Konfiguration" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Gleiches Passwort wie zuvor" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." @@ -2031,12 +2371,21 @@ msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Speichern" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Suchen" @@ -2046,7 +2395,7 @@ msgid "Search Stream Feed" msgstr "Stream-Feed suchen" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2056,7 +2405,7 @@ msgstr "" "Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 " "Zeichen bestehen." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2067,33 +2416,38 @@ msgstr "" "mindestens 3 Zeichen bestehen." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Wähle einen Netzanbieter" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Senden" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Schicke ein Mail an diese Adresse um eine Nachricht zu posten." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Informiere mich über neues Abonnements per Mail." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2102,17 +2456,20 @@ msgstr "" "meinem Netzbetreiber entstehen können." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -"Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit " -"Jabber/GTalk." +"Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/" +"GTalk." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Einstellungen" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Einstellungen gespeichert." @@ -2132,27 +2489,32 @@ msgid "Something weird happened." msgstr "Etwas eigenartiges ist passiert." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Sorry, keinen eingehenden E-Mails gestattet." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Sorry, das ist nicht deine Addresse für eingehende E-Mails." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Quellcode" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistiken" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Gespeicherte OpenID nicht gefunden." @@ -2160,24 +2522,28 @@ msgstr "Gespeicherte OpenID nicht gefunden." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Abonnieren" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnenten" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Abonnement autorisiert" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Abonnement abgelehnt" @@ -2185,28 +2551,35 @@ msgstr "Abonnement abgelehnt" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnements" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Systemfehler beim hochladen der Datei." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Text" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Volltextsuche" @@ -2226,6 +2599,7 @@ msgid "That confirmation code is not for you!" msgstr "Dieser Bestätigungscode ist nicht für dich!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Diese E-Mail Adresse gehört einem anderen Nutzer." @@ -2235,65 +2609,75 @@ msgid "That file is too big." msgstr "Diese Datei ist zu groß." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Diese JabberID hast du schon angegeben." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Dies ist bereits deine E-Mail Adresse." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Dies ist bereits deine Telefonnummer." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Dies ist nicht deine JabberID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Dies ist nicht deine E-Mail Adresse." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Dies ist nicht deine Telefonnummer." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Das ist die falsche IM Adresse." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Die Bestätigungsnummer ist falsch." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Diese Telefonnummer wird bereits von einem anderen Benutzer verwendet." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" "Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" "Das war zu lang. Die Länge einer Nachricht ist auf 255 Zeichen beschränkt." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Die Adresse \"%s\" wurde für dein Konto bestätigt." @@ -2302,11 +2686,14 @@ msgstr "Die Adresse \"%s\" wurde für dein Konto bestätigt." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Die Adresse wurde entfernt." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2316,7 +2703,8 @@ msgstr "" "zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " "bestätigt werden. Dein Abonnement-Token ist:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2327,35 +2715,40 @@ msgstr "" "vollständig abgelehnt werden. Dein Abonnement-Token ist:" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Dies sind die Leute, die %ss Nachrichten lesen." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Dies sind die Leute, die deine Nachrichten lesen." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Dies sind die Leute, deren Nachrichten %s liest." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Dies sind die Leute, deren Nachrichten du liest." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Diese Leute sind bereits registrierte Benutzer und Du hast Sie automatisch " "abonniert." -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Der Bestätigungscode ist zu alt. Bitte fange nochmal von vorne an." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2364,7 +2757,7 @@ msgstr "" "klicke auf \"Senden\", um zu deinem OpenID-Anbieter zu gelangen." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2379,6 +2772,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Diese Methode benötigt ein POST oder DELETE." @@ -2387,25 +2783,37 @@ msgstr "Diese Methode benötigt ein POST oder DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Diese Methode benötigt ein POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Dies Seite liegt in keinem von dir akzeptierten Mediatype vor." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Zeitzone" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Keine Zeitzone ausgewählt." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2418,19 +2826,22 @@ msgstr "" "dann gib deine Profil-URL unten an." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Zwei IDs oder Benutzernamen müssen angegeben werden." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" "URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen Site" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst" @@ -2442,15 +2853,22 @@ msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Unerwartete Formulareingabe." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Unerwarteter Passwortreset." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Unbekannter Befehl" @@ -2481,38 +2899,47 @@ msgstr "Abbestellen" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Nicht unterstützte OMB-Version" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Bildformat wird nicht unterstützt." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Updates via SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Updates via Instant Messenger (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates von %1$s und Freunden auf %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates von %1$s auf %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Hochladen" @@ -2534,12 +2961,15 @@ msgid "Upload a new profile image" msgstr "Neues Bild für dein Profil hochladen" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "Lade deine Freunde und Kollegen ein diesen Dienst zu nutzen." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Wird nur für Updates, wichtige Mitteilungen und zur " @@ -2565,11 +2995,16 @@ msgstr "Aufgeführte Nutzer existiert nicht." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Benutzer hat kein Profil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Benutzername" @@ -2578,29 +3013,33 @@ msgid "User not found." msgstr "Benutzer nicht gefunden." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "In welcher Zeitzone befinden Sie sich üblicherweise?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Was ist los, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Wo du bist, z.B. \"Stadt, Gebiet, Land\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Falscher Bildtyp für '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Falsche Bildgröße bei '%s'" @@ -2608,7 +3047,9 @@ msgstr "Falsche Bildgröße bei '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Ja" @@ -2631,11 +3072,12 @@ msgid "You are already logged in!" msgstr "Du bist bereits angemeldet!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Du hast diese Benutzer bereits abonniert:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Der angebene Benutzer gehört nicht zu Deinem Freunde-Netzwerk" @@ -2653,7 +3095,7 @@ msgstr "Du kannst ein neues Konto erstellen, um Nachrichten zu verschicken." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kannst SMS per Mail empfangen von %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2662,6 +3104,7 @@ msgstr "" "klickst." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2670,7 +3113,8 @@ msgstr "" "Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und " "senden. Stelle deine Adresse und Einstellungen unten ein." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2681,24 +3125,25 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Du kannst ein lokales Abonnement erstellen!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" "Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Dieses Profil hast du uns nicht geschickt" -#: ../lib/mail.php:147 -#, php-format -#, fuzzy +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, fuzzy, php-format msgid "" "You have a new posting address on %1$s.\n" "\n" @@ -2719,18 +3164,20 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 #, fuzzy msgid "You may not delete another user's status." msgstr "Du kannst den Status eines anderen Benutzers nicht löschen." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#, php-format -#, fuzzy +#: actions/invite.php:41 +#, fuzzy, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Du musst angemeldet sein, um andere Benutzer zu %s einzuladen" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 #, fuzzy msgid "" "You will be notified when your invitees accept the invitation and register " @@ -2740,21 +3187,22 @@ msgstr "" "die Empfänger auf der Seite registriert haben. Danke, dass du uns hilfst zu " "wachsen!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 #, fuzzy msgid "You've been identified. Enter a new password below. " msgstr "Du wurdest indentifiziert. Bitte trage unten ein neues Passwort ein." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Deine OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Dein Benutzername oder E-Mail Adresse auf diesem Server." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2763,47 +3211,57 @@ msgstr "" "Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben " "Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "vor %d Tagen" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "vor %d Stunden" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "vor %d Minuten" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "vor %d Monaten" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "vor einem Tag" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "vor einer Minute" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "vor einem Monat" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "vor einem Jahr" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "vor einer Stunde" @@ -2826,13 +3284,15 @@ msgid "reply" msgstr "antworten" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 #, fuzzy msgid "same as password above" msgstr "Gleiches Passwort wie oben" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "Nicht unterstützter Dateityp" @@ -2853,6 +3313,26 @@ msgstr "Früher" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 #, fuzzy msgid "There was a problem with your session token. Try again, please." msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." @@ -2863,6 +3343,7 @@ msgid "This notice is not a favorite!" msgstr "Diese Nachricht ist kein Favorit!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Konnte Favoriten nicht löschen." @@ -2871,20 +3352,23 @@ msgstr "Konnte Favoriten nicht löschen." msgid "Favor" msgstr "Zu Favoriten hinzufügen" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 #, fuzzy msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 #, fuzzy msgid "Send me email when someone sends me a private message." msgstr "" "Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 #, fuzzy msgid "This notice is already a favorite!" msgstr "Diese Nachricht ist bereits ein Favorit!" @@ -2892,6 +3376,9 @@ msgstr "Diese Nachricht ist bereits ein Favorit!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Konnte keinen Favoriten erstellen." @@ -2902,26 +3389,24 @@ msgstr "Aus Favoriten entfernen" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#, php-format -#, fuzzy +#: actions/favoritesrss.php:110 +#, fuzzy, php-format msgid "%s favorite notices" msgstr "%ss Favoriten" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#, php-format -#, fuzzy +#: actions/favoritesrss.php:114 +#, fuzzy, php-format msgid "Feed of favorite notices of %s" msgstr "Feed von %ss Favoriten" #: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Inbox for %s - page %d" msgstr "Posteingang von %s - Seite %d" #: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Inbox for %s" msgstr "Posteingang von %s" @@ -2933,8 +3418,7 @@ msgstr "" "enthält." #: actions/invite.php:178 actions/invite.php:213 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" @@ -2959,24 +3443,33 @@ msgid "Login with your username and password. " msgstr "Anmelden mit deinem Benutzernamen und Passwort. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 #, fuzzy msgid "That's too long. Max message size is 140 chars." msgstr "Das ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Kein Empfänger angegeben." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Du kannst diesem Benutzer keine Nachricht schicken." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 #, fuzzy msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." @@ -2984,11 +3477,13 @@ msgstr "" "Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach leise." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Kein solcher Benutzer" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Neue Nachricht" @@ -2998,8 +3493,7 @@ msgid "Notice without matching profile" msgstr "Nachricht ohne entsprechendes Profil" #: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " msgstr "" "Mit [OpenID](%%doc.openid%%) kannst du dich auf mehreren Seiten anmelden " @@ -3036,8 +3530,7 @@ msgstr "" "Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " msgstr "Suche nach Leuten auf %%site.name%% nach Name, Ort oder Interessen." @@ -3052,6 +3545,11 @@ msgstr "Du kannst dein persönliches Profil hier aktualisieren " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 #, fuzzy msgid "User without matching profile" msgstr "Benutzer ohne passendes Profil" @@ -3085,6 +3583,8 @@ msgid "New password successfully saved. " msgstr "Neues Passwort erfolgreich gespeichert. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Das Passwort muss aus 6 oder mehr Zeichen bestehen." @@ -3103,19 +3603,20 @@ msgid "(You should receive a message by email momentarily, with " msgstr "(Du solltest jeden Moment eine E-Mail erhalten mit " #: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Zum Abonnieren bitte [anmelden](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 -#, php-format -#, fuzzy +#: actions/showfavorites.php:147 +#, fuzzy, php-format msgid "Feed for favorites of %s" msgstr "Feed der Favoriten von %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 #, fuzzy msgid "Could not retrieve favorite notices." msgstr "Konnte Favoriten nicht abrufen." @@ -3125,20 +3626,18 @@ msgstr "Konnte Favoriten nicht abrufen." msgid "No such message." msgstr "Keine derartige Nachricht." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient may read this message." msgstr "Nur der Absender und Empfänger können diese Nachricht lesen." #: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Message to %1$s on %2$s" msgstr "Nachricht an %1$s auf %2$s" #: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Message from %1$s on %2$s" msgstr "Nachricht von %1$s auf %2$s" @@ -3148,42 +3647,54 @@ msgid "Send a message" msgstr "Eine Nachricht verschicken" #: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Mobile carrier for your phone. " msgstr "Mobilfunkanbieter deines Telefons. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Direkte Nachricht an %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Alle an %s gesendeten direkten Nachrichten" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Von dir gesendete direkte Nachrichten" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alle von %s gesendeten direkten Nachrichten" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Fehlender Nachrichtentext!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Empfänger nicht gefunden." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 #, fuzzy msgid "Can't send direct messages to users who aren't your friend." msgstr "" @@ -3191,27 +3702,30 @@ msgstr "" "du nicht befreundet bist." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#, php-format -#, fuzzy +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, fuzzy, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoriten von %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#, php-format -#, fuzzy +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, fuzzy, php-format msgid "%s updates favorited by %s / %s." msgstr "%s Updates in den Favoriten von %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s hat deine Nachricht als Favorit gespeichert" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "" "%1$s just added your notice from %2$s as one of their favorites.\n" "\n" @@ -3228,14 +3742,17 @@ msgstr "" "zu übermitteln, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter Einstellungen" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitter Konto" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Derzeit bestätigter Twitter Account." @@ -3244,6 +3761,7 @@ msgid "Twitter Username" msgstr "Twitter Benutzername" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Keine Leerzeichen, bitte." @@ -3252,19 +3770,23 @@ msgid "Twitter Password" msgstr "Twitter Passwort" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Sende meine Nachrichten automatisch an Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 #, fuzzy msgid "Send local \"@\" replies to Twitter." msgstr "Sende lokale \"@\" Antworten an Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Hier meine Twitter Freunde abonnieren." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 #, fuzzy msgid "" "Username must have only numbers, upper- and lowercase letters, and " @@ -3274,46 +3796,56 @@ msgstr "" "(_) enthalten. Maximal 15 Zeichen." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 #, fuzzy msgid "Could not verify your Twitter credentials!" msgstr "Das Überprüfen deiner Twitter Berechtigungen war nicht erfolgreich!" #: actions/twittersettings.php:137 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." msgstr "" "Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Konnte Twitter Einstellungen nicht speichern!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Twitter Einstellungen gespeichert." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Das ist nicht dein Twitter Konto." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Konnte Twitter Benutzer nicht entfernen." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Twitter Account entfernt." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Konnte Twitter Einstellungen nicht speichern." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Twitter Einstellungen gespeichert." @@ -3333,21 +3865,22 @@ msgid "The subscription has been rejected, but no " msgstr "Das Abonnement wurde abgelehnt, aber kein " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 #, fuzzy msgid "Command results" msgstr "Befehl Ausgabe" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 #, fuzzy msgid "Command complete" msgstr "Befehl ausgeführt" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 #, fuzzy msgid "Command failed" msgstr "Befehl fehlgeschlagen" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 #, fuzzy msgid "Sorry, this command is not yet implemented." msgstr "Leider ist dieser Befehl noch nicht implementiert." @@ -3358,95 +3891,116 @@ msgid "Subscriptions: %1$s\n" msgstr "Abonnements: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 #, fuzzy msgid "User has no last notice" msgstr "Benutzer hat keine letzte Nachricht" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 #, fuzzy msgid "Notice marked as fave." msgstr "Nachricht als Favorit markiert." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Vollständiger Name: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, fuzzy, php-format msgid "Location: %s" msgstr "Standort: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Über: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Direkte Nachricht an %s abgeschickt" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Fehler beim Senden der Nachricht" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 #, fuzzy msgid "Specify the name of the user to subscribe to" msgstr "Gib den Namen des Benutzers den du abonnieren möchtest an" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "%s abonniert" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 #, fuzzy msgid "Specify the name of the user to unsubscribe from" msgstr "Gib den Namen des Benutzers ein, den du nicht mehr abonnieren möchtest" -#: classes/Command.php:295 classes/Command.php:335 -#, php-format -#, fuzzy +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, fuzzy, php-format msgid "Unsubscribed from %s" msgstr "%s nicht mehr abonniert" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 #, fuzzy msgid "Command not yet implemented." msgstr "Befehl noch nicht implementiert." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Benachrichtigung deaktiviert." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Konnte Benachrichtigung nicht deaktivieren." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Benachrichtigung aktiviert." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Konnte Benachrichtigung nicht aktivieren." @@ -3454,12 +4008,12 @@ msgstr "Konnte Benachrichtigung nicht aktivieren." msgid "Commands:\n" msgstr "Befehle:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 #, fuzzy msgid "Could not insert message." msgstr "Konnte Nachricht nicht einfügen." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 #, fuzzy msgid "Could not update message with new URI." msgstr "Konnte Nachricht nicht mit neuer URI versehen." @@ -3478,7 +4032,7 @@ msgstr "" "Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Neue private Nachricht von %s" @@ -3492,7 +4046,7 @@ msgstr "" "%1$s (%2$s) hat dir einen private Nachricht geschickt:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 #, fuzzy msgid "Only the user can read their own mailboxes." msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen." @@ -3503,32 +4057,39 @@ msgid "This form should automatically submit itself. " msgstr "Dieses Formular sollte sich automatisch abschicken. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favoriten" #: lib/personal.php:66 lib/personalgroupnav.php:114 -#, php-format -#, fuzzy +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, fuzzy, php-format msgid "%s's favorite notices" msgstr "%ss favorisierte Nachrichten" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Benutzer" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Posteingang" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Deine eingehenden Nachrichten" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Postausgang" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Deine gesendeten Nachrichten" @@ -3541,15 +4102,20 @@ msgid "Twitter integration options" msgstr "Twitter Integrationseinstellungen" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "An" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 #, fuzzy msgid "Could not parse message." msgstr "Konnte Nachricht nicht parsen." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s und Freunde, Seite %d" @@ -3559,21 +4125,31 @@ msgid "You can upload your personal avatar." msgstr "Du kannst dein persönliches Avatar hochladen." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Avatar Einstellungen" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Vorschau" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Zuschneiden" @@ -3591,38 +4167,47 @@ msgid "There was a problem with your session token. " msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 #, fuzzy msgid "Pick a square area of the image to be your avatar" msgstr "" "Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 #, fuzzy msgid "Lost our file data." msgstr "Daten verloren." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Daten verloren." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Unbekannter Dateityp" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Kein Profil angegeben." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Kein Benutzer-Profil mit dieser ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Benutzer blockieren" @@ -3630,11 +4215,11 @@ msgstr "Benutzer blockieren" msgid "Are you sure you want to block this user? " msgstr "Bist du sicher, dass du diesen Benutzer blockieren möchtest? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Du hast diesen Benutzer bereits blockiert." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 #, fuzzy msgid "Failed to save block information." msgstr "Konnte Blockierungsdaten nicht speichern." @@ -3654,41 +4239,59 @@ msgstr "Du bist dabei diese Nachricht dauerhaft zu entfernen. " msgid "Add to favorites" msgstr "Zu Favoriten hinzufügen" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Gruppe %s bearbeiten" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 #, fuzzy msgid "Inboxes must be enabled for groups to work" msgstr "Posteingänge müssen aktiviert sein, damit Gruppen funktionieren" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Kein Benutzername" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Keine derartige Gruppe" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten." @@ -3698,14 +4301,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Der Benutzername darf nur aus Kleinbuchstaben bestehen " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Konnte Gruppe nicht aktualisieren." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Einstellungen gespeichert." @@ -3724,7 +4328,8 @@ msgstr "Neue E-Mailadresse um Nachrichten auf %s hinzuzufügen; " msgid "Send me email when someone " msgstr "Schicke mir eine E-Mail, wenn jemand " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Erlaube Freunden mich zu stupsen und mir E-Mails zu senden." @@ -3739,14 +4344,13 @@ msgstr "" "Ein Bestätigungscode wurde an die E-Mailadresse geschickt, die du " "hinzugefügt hast." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 #, fuzzy msgid "Server error - couldn't get user!" msgstr "Serverfehler - Benutzer nicht gefunden!" #: actions/facebookhome.php:196 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "If you would like the %s app to automatically update " msgstr "Wenn du automatische Aktualisierungen der Anwendung %s möchtest " @@ -3755,56 +4359,70 @@ msgstr "Wenn du automatische Aktualisierungen der Anwendung %s möchtest " msgid "Allow %s to update my Facebook status" msgstr "Erlaube %s meinen Facebook Status zu aktualisieren" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Überspringen" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Kein Inhalt!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 #, fuzzy msgid "Pagination" msgstr "Seitenerstellung" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Später" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Vorher" -#: actions/facebookinvite.php:70 -#, php-format -#, fuzzy +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, fuzzy, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Danke, dass du deine Freunde zu %s einlädst" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" msgstr "Einladung(en) an folgende Personen geschickt:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, fuzzy, php-format msgid "You have been invited to %s" msgstr "Du wurdest von %s angestupst" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Lade deine Freunde ein %s zu nutzen" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Freunde, die %s bereits benutzen:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Einladungen versenden" @@ -3816,7 +4434,8 @@ msgstr "Konnte Facebook Benutzer nicht entfernen." #: actions/facebooksettings.php:65 #, fuzzy msgid "There was a problem saving your sync preferences!" -msgstr "Es gab ein Problem beim Speichern deiner Synchronisationseinstellungen." +msgstr "" +"Es gab ein Problem beim Speichern deiner Synchronisationseinstellungen." #: actions/facebooksettings.php:67 #, fuzzy @@ -3854,13 +4473,15 @@ msgstr "Wenn du %s automatisch aktualisieren lassen möchtest " msgid "Sync preferences" msgstr "Synchronisationseinstellungen" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 #, fuzzy msgid "Disfavor favorite" msgstr "Aus Favoriten entfernen" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Beliebte Nachrichten" @@ -3874,33 +4495,34 @@ msgid "The most popular notices on the site right now." msgstr "Die momentan beliebtesten Nachrichten auf dieser Seite." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 #, fuzzy msgid "Featured users" msgstr "Featured Benutzer" #: actions/featured.php:71 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Featured users, page %d" msgstr "Featured Benutzer, Seite %d" #: actions/featured.php:99 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "A selection of some of the great users on %s" msgstr "Eine Auswahl der tollen Benutzer auf %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 #, fuzzy msgid "That user has blocked you from subscribing." msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Keine ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Gruppen-Logo" @@ -3908,12 +4530,14 @@ msgstr "Gruppen-Logo" msgid "You can upload a logo image for your group." msgstr "Du kannst ein Logo für Deine Gruppe hochladen." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Logo aktualisiert." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Aktualisierung des Logos fehlgeschlagen." @@ -3933,7 +4557,8 @@ msgid "A list of the users in this group." msgstr "Liste der Benutzer in dieser Gruppe." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppen" @@ -3943,12 +4568,12 @@ msgid "Groups, page %d" msgstr "Gruppen, Seite %d" #: actions/groups.php:90 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% Gruppen - finde und tausche dich aus mit " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Neue Gruppe erstellen" @@ -3957,9 +4582,10 @@ msgstr "Neue Gruppe erstellen" #, fuzzy, php-format msgid "" "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Suche nach Gruppen auf %%site.name%% nach Name, Ort oder Beschreibung. " +msgstr "" +"Suche nach Gruppen auf %%site.name%% nach Name, Ort oder Beschreibung. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Gruppen-Suche" @@ -3984,21 +4610,21 @@ msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Es wurde ein Bestätigungscode gesendet " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Du musst angemeldet sein, um Mitglied einer Gruppe zu werden." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Du bist bereits Mitglied dieser Gruppe" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s ist der Gruppe %s beigetreten" @@ -4008,16 +4634,19 @@ msgstr "%s ist der Gruppe %s beigetreten" msgid "Inboxes must be enabled for groups to work." msgstr "Damit Gruppen funktionieren müssen Posteingänge aktiviert sein." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Keine derartige Gruppe." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Du bist kein Mitglied dieser Gruppe." @@ -4028,22 +4657,26 @@ msgid "You may not leave a group while you are its administrator." msgstr "" "Du kannst eine Gruppe nicht verlassen solange du der Administrator bist." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "Konnte Mitgliedseintrag nicht finden." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s hat die Gruppe %s verlassen" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 #, fuzzy msgid "Login to site" msgstr "An Seite anmelden" @@ -4056,17 +4689,19 @@ msgstr "Kein aktueller Status" msgid "New group" msgstr "Neue Gruppe" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 #, fuzzy msgid "Use this form to create a new group." msgstr "Benutzer dieses Formular, um eine neue Gruppe zu erstellen." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Konnte Gruppe nicht erstellen." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Konnte Gruppenmitgliedschaft nicht setzen." @@ -4080,12 +4715,15 @@ msgstr "Das ist zu lang. " msgid "Don't send a message to yourself; " msgstr "Schreibe dir selbst keine Nachrichten; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Nachricht hinzugefügt" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax Fehler" @@ -4104,7 +4742,7 @@ msgstr "Stups abgeschickt" msgid "Nudge sent!" msgstr "Stups gesendet!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID Anmeldung" @@ -4131,11 +4769,13 @@ msgstr "URL Auto-Verkürzung" msgid "Service" msgstr "Dienst" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "URL Auto-Kürzungs Dienst." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL Auto-Kürzungs Dienst ist zu lange (max. 50 Zeichen)" @@ -4144,17 +4784,18 @@ msgstr "URL Auto-Kürzungs Dienst ist zu lange (max. 50 Zeichen)" msgid "Change your password." msgstr "Ändere dein Passwort," -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Passwort gespeichert" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Ungültiger Tag: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Benutzer die sich selbst mit %s getagged haben - Seite %d" @@ -4164,12 +4805,13 @@ msgstr "Benutzer die sich selbst mit %s getagged haben - Seite %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Benutzer die sich selbst mit \"%s\" getagged haben " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Profilinformation" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4182,20 +4824,25 @@ msgid "Automatically subscribe to whoever " msgstr "Abonniere automatisch alle Kontakte, die mich abonnieren " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Ungültiger Tag: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Konnte Tags nicht speichern." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Öffentliche Zeitleiste, Seite %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Konnte öffentlichen Stream nicht abrufen." @@ -4218,11 +4865,13 @@ msgstr "Öffentliche Tag-Wolke" msgid "These are most popular recent tags on %s " msgstr "Das sind die beliebtesten Tags auf %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Tag-Wolke" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Es tut uns leid, zum Registrieren benötigst du eine Einladung." @@ -4281,7 +4930,8 @@ msgstr "(Du solltest eine Nachricht per E-Mail erhalten " msgid "That's a local profile! Login to subscribe." msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Antworten an %s, Seite %d" @@ -4291,55 +4941,76 @@ msgstr "Antworten an %s, Seite %d" msgid "%s favorite notices, page %d" msgstr "%ss favorisierte Nachrichten, Seite %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s Gruppe" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s Gruppe, Seite %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Gruppenprofil" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Nachricht" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 #, fuzzy msgid "Group actions" msgstr "Gruppenaktionen" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Nachrichtenfeed der Gruppe %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Mitglieder" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 #, fuzzy msgid "(None)" msgstr "(Kein)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Alle Mitglieder" @@ -4356,7 +5027,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Nur der Absender und Empfänger " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, Seite %d" @@ -4367,35 +5038,42 @@ msgid "'s profile" msgstr "s Profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Benutzerprofil" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Foto" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "Benutzeraktionen" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 #, fuzzy msgid "Send a direct message to this user" msgstr "Direkte Nachricht an Benutzer verschickt" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "Nachricht" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Alle Abonnenten" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Alle Gruppen" @@ -4405,8 +5083,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] " -"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " +"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de." +"wikipedia.org/wiki/Mikro-blogging) Dienst " #: actions/smssettings.php:128 #, fuzzy @@ -4425,7 +5103,7 @@ msgstr "" "Ein Bestätigungscode wurde an die Telefonnummer gesendet, die du hinzugefügt " "hast. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Netzanbieter" @@ -4455,8 +5133,7 @@ msgid "%s subscribers" msgstr "%s Abonnenten" #: actions/subscribers.php:52 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "%s subscribers, page %d" msgstr "%s Abonnenten, Seite %d" @@ -4490,18 +5167,18 @@ msgstr "Dies sind die Leute, deren Nachrichten " msgid "These are the people whose " msgstr "Dies sind die Leute, deren " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Nachrichten, die mit %s getagt sind, Seite %d" -#: actions/tag.php:66 -#, php-format -#, fuzzy +#: actions/tag.php:66 actions/tag.php:73 +#, fuzzy, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Nachrichten getagt mit \"%s\", neueste zuerst" @@ -4525,7 +5202,7 @@ msgstr "Tag %s" msgid "Tag user" msgstr "Benutzer taggen" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4538,18 +5215,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert " "haben." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Konnte Tags nicht speichern." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4561,21 +5238,24 @@ msgstr "" msgid "No such tag." msgstr "Tag nicht vorhanden." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Microblog getaggt mit %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Blockieren des Benutzers fehlgeschlagen." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 #, fuzzy msgid "Unblock user failed." msgstr "Freigeben des Benutzers fehlgeschlagen." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Nicht gefunden." @@ -4584,15 +5264,16 @@ msgstr "Nicht gefunden." msgid "Add your Twitter account to automatically send " msgstr "Füge dein Twitter Konto hinzu zum automatischen Versenden von " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Twitter Benutzername" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Twitter Passwort" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Twitter Freunde" @@ -4606,169 +5287,179 @@ msgstr "Für den Benutzernamen gelten nur Nummern, " msgid "Unable to retrieve account information " msgstr "Konnte Kontoinformationen nicht abrufen " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Fehler beim Freigeben des Benutzers." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Der entfernte Server hat keine Profil-ID geliefert." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Kein Profil mit dieser ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Abbestellt" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s Gruppen" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s Gruppen, Seite %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " "ein paar Minuten ab." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." -msgstr "Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." +msgstr "" +"Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Avatar hochladen" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 #, fuzzy msgid "Other" msgstr "Sonstige" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 #, fuzzy msgid "Other options" msgstr "Sonstige Optionen" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Seite ohne Titel" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Hauptnavigation" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 #, fuzzy msgid "Personal profile and friends timeline" msgstr "Persönliches Profil und Freundes-Zeitleiste" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 #, fuzzy msgid "Search for people or text" msgstr "Suche nach Leuten oder Text" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Konto" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 #, fuzzy msgid "Connect to IM, SMS, Twitter" msgstr "Verbinde zu IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 #, fuzzy msgid "Logout from the site" msgstr "Von der Seite abmelden" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 #, fuzzy msgid "Login to the site" msgstr "Auf der Seite anmelden" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Neues Konto erstellen" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Mit OpenID anmelden" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Hilf mir!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Neue Nachricht" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 #, fuzzy msgid "Local views" msgstr "Lokale Ansichten" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Neue Nachricht" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Unternavigation" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 #, fuzzy msgid "StatusNet software license" msgstr "StatusNet Software Lizenz" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 #, fuzzy msgid "All " msgstr "Alle " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 #, fuzzy msgid "license." msgstr "Lizenz." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Benutzer blockieren" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Blockieren" @@ -4782,12 +5473,15 @@ msgstr "Aus Favoriten entfernen" msgid "To use the %s Facebook Application you need to login " msgstr "Um die %s Facebookanwendung zu benutzen, musst du dich anmelden " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr " ein neues Konto." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Öffentlich" @@ -4809,36 +5503,41 @@ msgstr "Tags filtern" msgid "All" msgstr "Alle" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Tag" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 #, fuzzy msgid "Choose a tag to narrow list" msgstr "Wähle einen Tag, um die Liste einzuschränken" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 #, fuzzy msgid "Go" msgstr "Los" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL der Homepage oder Blogs der Gruppe oder des Themas" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Beschreibung" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4848,25 +5547,23 @@ msgstr "Ort der Gruppe, optional, z.B. \"Stadt, Gebiet (oder Region), Land\"" msgid "Group" msgstr "Gruppe" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 #, fuzzy msgid "Admin" msgstr "Admin" -#: lib/groupnav.php:101 -#, php-format -#, fuzzy +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, fuzzy, php-format msgid "Edit %s group properties" msgstr "%s Gruppeneinstellungen bearbeiten" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 -#, php-format -#, fuzzy +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, fuzzy, php-format msgid "Add or edit %s logo" msgstr "%s Logo hinzufügen oder bearbeiten" @@ -4879,8 +5576,7 @@ msgid "Groups with most posts" msgstr "Gruppen mit den meisten Beiträgen" #: lib/grouptagcloudsection.php:56 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Tags in %s group's notices" msgstr "Tags in den Nachrichten der Gruppe %s" @@ -4899,12 +5595,12 @@ msgstr "Beitreten" msgid "Leave" msgstr "Verlassen" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Anmelden mit einem Benutzernamen und Passwort" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Für ein neues Konto registrieren" @@ -4914,8 +5610,7 @@ msgid "Login or register with OpenID" msgstr "Anmelden oder registrieren mit OpenID" #: lib/mail.php:175 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "" "Hey, %s.\n" "\n" @@ -4928,19 +5623,18 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s liest ab sofort " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Standort: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Homepage: %s\n" -#: lib/mail.php:258 -#, php-format -#, fuzzy +#: lib/mail.php:258 lib/mail.php:257 +#, fuzzy, php-format msgid "" "Bio: %s\n" "\n" @@ -4948,7 +5642,7 @@ msgstr "" "Biografie: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Du wurdest von %s angestupst" @@ -4963,47 +5657,55 @@ msgstr "%s$s (%2$s) fragt sich was du so machst " msgid "%1$s just added your notice from %2$s" msgstr "%1$s hat deine Nachrichten von %2$s hinzugefügt" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr "Von" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 #, fuzzy msgid "Send a direct notice" msgstr "Versende eine direkte Nachricht" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Nachricht versenden" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "Verfügbare Zeichen" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "als Antwort auf" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 #, fuzzy msgid "Reply to this notice" msgstr "Auf diese Nachricht antworten" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "Antworten" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 #, fuzzy msgid "Delete this notice" msgstr "Notiz löschen" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "Löschen" @@ -5024,33 +5726,34 @@ msgid "Send a nudge to this user" msgstr "Sende diesem Benutzer einen Stupser" #: lib/personaltagcloudsection.php:56 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Tags in %s's notices" msgstr "Tags in %ss Nachrichten" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 #, fuzzy msgid "(none)" msgstr "(leer)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Öffentlich" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Benutzer-Gruppen" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Aktuelle Tags" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Featured" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Beliebt" @@ -5067,32 +5770,33 @@ msgstr "Finde Gruppen auf dieser Seite" msgid "Untitled section" msgstr "Abschnitt ohne Titel" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Leute, die %s abonniert hat" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Leute, die %s abonniert haben" -#: lib/subgroupnav.php:97 -#, php-format -#, fuzzy +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, fuzzy, php-format msgid "Groups %s is a member of" msgstr "Gruppen zu denen %s gehört" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein dir auf %s beizutreten" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Dieser Benutzer hat dich blockiert." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Abonniere diesen Benutzer" @@ -5106,11 +5810,12 @@ msgid "Top posters" msgstr "Top-Schreiber" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Benutzer freigeben" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Freigeben" @@ -5118,6 +5823,2072 @@ msgstr "Freigeben" msgid "Unsubscribe from this user" msgstr "Lösche dein Abonnement von diesem Benutzer" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed der Freunde von %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed der Freunde von %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed der Freunde von %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s und Freunde" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Du kannst dein persönliches Avatar hochladen." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar aktualisiert." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion " +"ist irreversibel." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" +"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Du kannst ein Logo für Deine Gruppe hochladen." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "" +"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog von %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. " +"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " +"mindestens 3 Zeichen bestehen." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Fehler beim Senden der Nachricht" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Suche im Stream nach \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort " +"ein, bevor die Änderungen an ihren Einstellungen übernommen werden." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed des öffentlichen Streams" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed des öffentlichen Streams" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed des öffentlichen Streams" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, " +"Telefonnummer." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Erstellen" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Gruppenprofil" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "s Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed der Nachrichten von %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed der Nachrichten von %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed der Nachrichten von %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Postausgang von %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profil Einstellungen" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer " +"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf " +"den Code und die Anweisungen, um ihn zu benutzen." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Kein solcher Benutzer" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter " +"zu übermitteln, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" +"Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " +"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " +"\"Abbrechen\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Suche nach Leuten oder Text" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " +"ein paar Minuten ab." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Verbinde zu IM, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Stups" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Um die %s Facebookanwendung zu benutzen, musst du dich anmelden " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s hat deine Nachrichten auf %2$s abonniert.\n" +"\n" +"\t%3$s\n" +"\n" +"Gruß,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Suchen" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Unbekanntes Dokument." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Liste der Benutzer in dieser Gruppe." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Liste der Benutzer in dieser Gruppe." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Benutzerprofil" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s und Freunde, Seite %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Liste der Benutzer in dieser Gruppe." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Freigeben des Benutzers fehlgeschlagen." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Bestätigungscode" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Die Nachricht konnte nicht gelöscht werden." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ungültiger Tag: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Konnte keinen Favoriten erstellen." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Neue Nachricht" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Neue Nachricht" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Ungültiger Nutzername." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Kein Profil angegeben." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Dieser Benutzer hat dich blockiert." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Du bist kein Mitglied dieser Gruppe." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Benutzer blockieren" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Gruppen" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Konnte Benutzerdaten nicht aktualisieren." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Konnte Twitter Einstellungen nicht speichern!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Synchronisationseinstellungen gespeichert." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Keine Ergebnisse" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Dieser Benutzer hat dich blockiert." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Nachricht" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Konnte Profil nicht speichern." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben " +"Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profil Einstellungen" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/" +"Mikro-blogging) Dienst " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-" +"Mail Adresse, die in deinem Account eingetragen ist, ein neues zusenden " +"lassen." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Du wurdest indentifiziert. Bitte trage unten ein neues Passwort ein." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Wiederherstellung des Passworts angefordert" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Fehler beim Bestätigungscode." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Abonniere diesen Benutzer" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%ss favorisierte Nachrichten, Seite %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Nachrichtenfeed der Gruppe %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Nachrichtenfeed der Gruppe %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Nachrichtenfeed der Gruppe %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] " +"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Kein lokaler Benutzer." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Nachrichten, die mit %s getagt sind" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Nachrichtenfeed der Gruppe %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de." +"wikipedia.org/wiki/Mikro-blogging) Dienst " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s liest ab sofort " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed der Nachrichten von %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed der Nachrichten von %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Diese Nachricht ist bereits ein Favorit!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Diese Nachricht ist kein Favorit!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Konnte öffentlichen Stream nicht abrufen." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Kein Empfänger angegeben." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Konnte keine Statusmeldungen finden." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s Antworten an %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Updates von %1$s auf %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "Lizenz." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s Abonnements" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profil Einstellungen" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du bist kein Mitglied dieser Gruppe." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problem bei Speichern der Nachricht." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Nachricht an %1$s auf %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Benutzerprofil" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Hochladen" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Ändere dein Passwort" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Verbinden" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Suchen" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Liste" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Blockieren" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Benutzer blockieren" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "%s Logo hinzufügen oder bearbeiten" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Kein Inhalt!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Benutzer" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Suchen" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "" +"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Tag nicht vorhanden." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direkte Nachricht an %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Das ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du bist bereits Mitglied dieser Gruppe" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du bist kein Mitglied dieser Gruppe." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s Gruppen" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Gruppen zu denen %s gehört" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Gruppenaktionen" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" +"Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Bildformat wird nicht unterstützt." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Foto" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Updates von %1$s auf %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Aufgeführte Nutzer existiert nicht." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Nicht autorisiert." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Unbekannte OMB-Protokollversion." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Unbekannte Nachricht." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Daten verloren." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Updates von %1$s auf %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Diese Seite liegt in nicht verfügbar in einem " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? " +"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit " +"[OpenID](%%action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alle Aktualisierungen, die den Suchbegriff \"%s\" enthalten" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Beschreibe dich selbst in 140 Zeichen" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Beschreibe dich selbst und deine " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Die Biografie ist zu lang (max. 140 Zeichen)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Ungültige Profil-URL (kein YADIS-Dokument)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Konnte keinen Anfrage-Token bekommen." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Nachrichtenfeed der Gruppe %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Nachricht an %1$s auf %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed der Favoriten von %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed der Favoriten von %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed der Favoriten von %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s Gruppe" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Nachricht hinzugefügt" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Diese Seite liegt in nicht verfügbar in einem " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed der Nachrichten von %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " +"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " +"\"Abbrechen\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL " +"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " +"bestätigt werden. Dein Abonnement-Token ist:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " +"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " +"vollständig abgelehnt werden. Dein Abonnement-Token ist:" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Konnte Avatar-URL nicht öffnen '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Falscher Bildtyp für '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Konnte nicht zum Server umleiten: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet Software Lizenz" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Die bestätigte Emailadresse konnte nicht gespeichert werden." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Stups abgeschickt" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Auf diese Nachricht antworten" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problem bei Speichern der Nachricht." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Kein Bestätigungs-Code." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Auf der Seite anmelden" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Wähle einen Netzanbieter" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed der Nachrichten von %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s hat deine Nachricht als Favorit gespeichert" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "von" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Konnte Favoriten nicht löschen." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Notiz löschen" + #~ msgid "Code not yet ready." #~ msgstr "Code noch nicht fertig." @@ -5141,10 +7912,6 @@ msgstr "Lösche dein Abonnement von diesem Benutzer" #~ msgid "Tag a person" #~ msgstr "Tagge eine Person" -#, fuzzy -#~ msgid "List" -#~ msgstr "Liste" - #~ msgid "Icons" #~ msgstr "Icons" diff --git a/locale/el/LC_MESSAGES/statusnet.mo b/locale/el/LC_MESSAGES/statusnet.mo index 1846399637aa3abeb1023201791df2a1e610f66e..ffcd47205e526a48cc512d03d7a57286f81552c2 100644 GIT binary patch delta 8582 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 p^eaQxE;IGr%Ln-G+bug4<@Epn diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 4a54996a84..b074e5f63e 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-09-08 20:21+0000\n" "Last-Translator: Giannis Pappas \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Αναζήτηση ροής για \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,17 +37,19 @@ msgid " from " msgstr "από" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -79,6 +81,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" @@ -95,25 +98,28 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Δημόσια ροή %s" @@ -123,35 +129,48 @@ msgstr "Δημόσια ροή %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s και οι φίλοι του/της" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Κατάσταση του/της %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 -#, php-format -#, fuzzy +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, fuzzy, php-format msgid "%s timeline" msgstr "Χρονοδιάγραμμα του χρήστη %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -159,9 +178,9 @@ msgstr "" "(Σύντομα θα λάβετε μέσω ηλεκτρονικού ταχυδρομείου ένα μήνυμα με οδηγίες για " "την επιβεβαίωση της ηλεκτρονικής σας διεύθυνσης.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 -#, php-format -#, fuzzy +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 +#, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " @@ -169,9 +188,9 @@ msgstr "" "To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " "έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 -#, php-format -#, fuzzy +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 +#, fuzzy, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" "Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " @@ -183,30 +202,34 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά. Απαραίτητο." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 ή περισσότεροι χαρακτήρες" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 ή περισσότεροι χαρακτήρες και μην το ξεχάσετε!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 ή περισσότεροι χαρακτήρες. Απαραίτητο." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -216,6 +239,7 @@ msgstr "" "Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. " #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -251,7 +275,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" @@ -274,16 +325,23 @@ msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Η μέθοδος του ΑΡΙ είναι υπό κατασκευή." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Περί" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Αποδοχή" @@ -294,6 +352,9 @@ msgstr "Αποδοχή" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Προσθήκη" @@ -311,27 +372,29 @@ msgstr "Προσθήκη ή διαγραφή OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Διεύθυνση" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Διευθύνσεις φίλων σου που θες να προσκαλέσεις (μία ανά γραμμή)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Όλες οι συνδρομές" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Όλες οι ενημερώσεις για %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\"" @@ -341,30 +404,37 @@ msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τ #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Ήδη συνδεδεμένος." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Είσαι ήδη συνδρομητής!." #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Εξουσιοδοτημένη συνδρομή" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Αυτόματη σύνδεση στο μέλλον. ΟΧΙ για κοινόχρηστους υπολογιστές!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 #, fuzzy msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" @@ -375,17 +445,20 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "" #: ../actions/imsettings.php:55 actions/imsettings.php:56 -#, php-format -#, fuzzy +#: actions/imsettings.php:108 actions/imsettings.php:114 +#, fuzzy, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" @@ -395,6 +468,7 @@ msgstr "" "λίστα φίλων?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 #, fuzzy msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " @@ -404,7 +478,7 @@ msgstr "" "φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. " #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου." @@ -416,6 +490,8 @@ msgstr "Προηγούμενο »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Βιογραφικό" @@ -423,17 +499,19 @@ msgstr "Βιογραφικό" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 #, fuzzy msgid "Can't delete this notice." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "" @@ -441,6 +519,8 @@ msgstr "" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Αδύνατη η αποθήκευση του νέου κωδικού" @@ -448,31 +528,34 @@ msgstr "Αδύνατη η αποθήκευση του νέου κωδικού" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Ακύρωση" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Απέτυχη η χρήση αντικειμένου OpenID consumer." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Αδυναμία κανονικοποίησης του Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Αλλαγή" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -482,11 +565,12 @@ msgid "Change password" msgstr "Αλλαγή κωδικού" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Αλλάξτε τον κωδικό σας" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" @@ -496,6 +580,9 @@ msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Επιβεβαίωση" @@ -508,12 +595,14 @@ msgstr "Επιβεβαίωση διεύθυνσης" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Η επιβεβαίωση ακυρώθηκε." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -522,9 +611,9 @@ msgstr "" msgid "Confirmation code not found." msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." -#: ../actions/register.php:202 -#, php-format -#, fuzzy +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 +#, fuzzy, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " "want to...\n" @@ -549,9 +638,8 @@ msgstr "" "δέχεσε μηνύματα στο instant messager σου.\n" "* [Search for people](%%%%action.peoplesearch%%%%) που μπορεί να ξέρεις ή " "που έχουν τα ίδια ενδιαφέροντα με σένα. \n" -"* Ενημερώσεις το προφίλ σου [profile " -"settings](%%%%action.profilesettings%%%%) για να μάθουν οι άλλοι περισσότερα " -"για σένα. \n" +"* Ενημερώσεις το προφίλ σου [profile settings](%%%%action.profilesettings%%%" +"%) για να μάθουν οι άλλοι περισσότερα για σένα. \n" "* Διαβάσεις τα [online docs](%%%%doc.help%%%%) για λειτουργίες που μπορεί να " "μην έχεις μάθει ακόμα. \n" "\n" @@ -559,20 +647,24 @@ msgstr "" "μας." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Σύνδεση" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Σύνδεση με υπάρχων λογαριασμό" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Επικοινωνία" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s " @@ -580,35 +672,40 @@ msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s " #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." +msgstr "" +"Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Δε μπόρεσα να σώσω την πληροφορία του avatar" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Απέτυχε η συνδρομή." @@ -628,15 +725,17 @@ msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε to #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Απέτυχε η διαγραφή συνδρομής." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." @@ -649,29 +748,38 @@ msgstr "" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Απέτυχε η εισαγωγή νέας συνδρομής." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Απέτυχε η αποθήκευση του προφίλ." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Απέτυχε η ενημέρωση εγγραφής του χρήστη." @@ -687,43 +795,49 @@ msgstr "Απέτυχε η ενημέρωση εγγραφής του χρήστ #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Απέτυχε η ενημέρωση του χρήστη." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Δημιουργία" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Δημιουργία νέου χρήστη με αυτό το ψευδώνυμο." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Δημιουργία νέου λογαριασμού" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 #, fuzzy msgid "Creating new account for OpenID that already has a user." msgstr "Μετατροπή υπάρχοντος λογαριασμού σε λογαριασμό OpenID." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Τρέχουσα επιβεβαιωμένη Jabber/GTalk διεύθυνση." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Τρέχων επιβεβαιωμένο, μέσω SMS, νούμερο κινητού τηλεφώνου." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση." @@ -732,23 +846,27 @@ msgid "Currently" msgstr "" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Διαγραφή μηνύματος" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" @@ -756,11 +874,13 @@ msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέ #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Διεύθυνση Email" @@ -770,39 +890,43 @@ msgid "Email Settings" msgstr "Ρυθμίσεις Email" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Η διεύθυνση email υπάρχει ήδη." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Επιβεβαίωση διεύθυνσης email" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Διεύθυνση email, π.χ: \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Διευθύνσεις email" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "" @@ -813,39 +937,46 @@ msgstr "" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "" @@ -854,6 +985,9 @@ msgstr "" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "" @@ -864,6 +998,7 @@ msgstr "" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "" @@ -873,33 +1008,36 @@ msgid "Error with confirmation code." msgstr "" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Συχνές ερωτήσεις" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Ροή φίλων του/της %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Ροή απαντήσεων προς τον/την %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -914,7 +1052,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -927,6 +1065,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Ονοματεπώνυμο" @@ -935,23 +1078,33 @@ msgstr "Ονοματεπώνυμο" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Βοήθεια" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Αρχή" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Αρχική σελίδα" @@ -959,21 +1112,27 @@ msgstr "Αρχική σελίδα" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Θέλω να δημοσιεύω ενημερώσεις μέσω email" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "ΙΜ" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Διεύθυνση ΙΜ" @@ -983,7 +1142,7 @@ msgid "IM Settings" msgstr "Ρυθμίσεις ΙΜ" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -991,7 +1150,7 @@ msgstr "" "Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για " "να τον συνδέσετε στο OpenID σας." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -999,7 +1158,7 @@ msgstr "" "Εάν θέλετε να προσθέσετε ένα OpenID στον λογαριασμό σας, πληκτρολογήστε τον " "από κάτω και πατήστε \"Προσθήκη\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1010,25 +1169,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Εισερχόμενο email" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Λάθος παλιός κωδικός" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Λάθος όνομα χρήστη ή κωδικός" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1037,30 +1202,31 @@ msgstr "" "που έχετε καταχωρίσει στον λογαριασμό σας." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "" @@ -1075,13 +1241,13 @@ msgid "Invalid notice url" msgstr "" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "" @@ -1099,28 +1265,35 @@ msgstr "" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1129,11 +1302,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1141,12 +1315,14 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1155,7 +1331,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Τοποθεσία" @@ -1164,7 +1348,12 @@ msgstr "Τοποθεσία" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)." @@ -1173,18 +1362,22 @@ msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 2 #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Σύνδεση" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Συνδεθείτε με έναν λογαριασμό [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1195,22 +1388,26 @@ msgstr "" "ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " "δοκιμάστε το [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Αποσύνδεση" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Χάσατε ή ξεχάσατε τον κωδικό σας;" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1221,16 +1418,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Μέλος από" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1240,42 +1439,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Νέο ψευδώνυμο" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Νέος κωδικός" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "" @@ -1285,7 +1492,13 @@ msgstr "" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Ψευδώνυμο" @@ -1294,7 +1507,12 @@ msgstr "Ψευδώνυμο" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." @@ -1303,47 +1521,58 @@ msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμά #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Το ψευδώνυμο αυτό δεν επιτρέπεται." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Το ψευδώνυμο του χρήστη που θέλετε να παρακολουθήσετε" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Ψευδώνυμο ή email" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1355,11 +1584,15 @@ msgstr "" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1368,7 +1601,9 @@ msgid "No id." msgstr "" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1379,6 +1614,7 @@ msgstr "" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "" @@ -1386,12 +1622,14 @@ msgstr "" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1401,7 +1639,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "" @@ -1413,7 +1652,7 @@ msgstr "" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "" @@ -1424,12 +1663,16 @@ msgstr "" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1439,13 +1682,15 @@ msgid "No such OpenID." msgstr "" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "" @@ -1483,12 +1728,22 @@ msgstr "" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1502,32 +1757,38 @@ msgid "Not a recovery code." msgstr "" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "" @@ -1535,6 +1796,11 @@ msgstr "" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "" @@ -1554,7 +1820,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "" @@ -1565,11 +1832,13 @@ msgstr "" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1585,11 +1854,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "" @@ -1606,39 +1879,44 @@ msgid "Notice feed for %s" msgstr "" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1646,29 +1924,34 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "" @@ -1684,11 +1967,12 @@ msgid "OpenID settings" msgstr "Ρυθμίσεις OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "" @@ -1698,34 +1982,46 @@ msgstr "" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Κωδικός" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Ο κωδικός και η επιβεβαίωση του δεν ταυτίζονται." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Ο κωδικός πρέπει να είναι 6 χαρακτήρες ή περισσότεροι." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Ο κωδικός αποθηκεύτηκε." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Οι κωδικοί δεν ταυτίζονται." @@ -1745,14 +2041,17 @@ msgid "People search" msgstr "" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Προσωπικά" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1764,7 +2063,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1773,7 +2072,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Προτιμήσεις" @@ -1782,42 +2083,52 @@ msgstr "Προτιμήσεις" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Οι προτιμήσεις αποθηκεύτηκαν" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "" @@ -1826,17 +2137,19 @@ msgid "Public Stream Feed" msgstr "" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1846,12 +2159,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1864,37 +2179,45 @@ msgstr "" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -1908,6 +2231,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "" @@ -1916,41 +2242,48 @@ msgstr "" msgid "Remove OpenID" msgstr "" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1959,17 +2292,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1982,12 +2316,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "" @@ -1997,14 +2340,14 @@ msgid "Search Stream Feed" msgstr "" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2012,48 +2355,56 @@ msgid "" msgstr "" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "" @@ -2073,27 +2424,32 @@ msgid "Something weird happened." msgstr "" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "" @@ -2101,24 +2457,28 @@ msgstr "" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "" @@ -2126,28 +2486,35 @@ msgstr "" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "" @@ -2167,6 +2534,7 @@ msgid "That confirmation code is not for you!" msgstr "" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2176,63 +2544,73 @@ msgid "That file is too big." msgstr "" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -2241,18 +2619,22 @@ msgstr "" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2260,40 +2642,45 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2305,6 +2692,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2313,25 +2703,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2340,18 +2742,21 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2363,15 +2768,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2400,38 +2812,47 @@ msgstr "" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "" @@ -2448,12 +2869,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" @@ -2477,11 +2901,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "" @@ -2490,29 +2919,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "" @@ -2520,7 +2953,9 @@ msgstr "" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2541,11 +2976,12 @@ msgid "You are already logged in!" msgstr "" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2563,20 +2999,22 @@ msgstr "" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2585,21 +3023,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2613,82 +3053,96 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "" @@ -2710,12 +3164,14 @@ msgid "reply" msgstr "" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2736,6 +3192,26 @@ msgstr "" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2744,6 +3220,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2751,22 +3228,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2776,11 +3259,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2820,33 +3305,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2900,6 +3396,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2928,6 +3429,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2948,12 +3451,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2961,7 +3467,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2985,51 +3491,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3048,14 +3573,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3064,6 +3592,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3072,24 +3601,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3100,33 +3634,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3143,18 +3687,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3164,89 +3709,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3254,11 +3821,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3273,7 +3840,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3285,7 +3852,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3294,31 +3861,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3331,14 +3906,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s και οι φίλοι του/της" @@ -3348,22 +3928,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Ρυθμίσεις OpenID" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3380,35 +3970,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "" @@ -3416,11 +4015,11 @@ msgstr "" msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3437,40 +4036,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Νέο ψευδώνυμο" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3480,16 +4097,17 @@ msgid "Nickname must have only lowercase letters " msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "" @@ -3506,7 +4124,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3519,7 +4138,7 @@ msgstr "Η διεύθυνση email υπάρχει ήδη." msgid "A confirmation code was sent to the email address you added. " msgstr "" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3533,51 +4152,66 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Ροή φίλων του/της %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3621,12 +4255,14 @@ msgstr "" msgid "Sync preferences" msgstr "Προτιμήσεις" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "" @@ -3640,7 +4276,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3654,15 +4291,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3670,12 +4309,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Αποσύνδεση" -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "" @@ -3694,7 +4335,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3709,6 +4351,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Δημιουργία νέου λογαριασμού" @@ -3719,7 +4362,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "" @@ -3741,20 +4384,20 @@ msgstr "" msgid "A confirmation code was sent " msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3763,16 +4406,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -3780,21 +4426,25 @@ msgstr "" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3806,16 +4456,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" @@ -3828,11 +4480,14 @@ msgstr "" msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3849,7 +4504,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Ρυθμίσεις OpenID" @@ -3875,11 +4530,13 @@ msgstr "" msgid "Service" msgstr "" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)." @@ -3889,17 +4546,18 @@ msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 2 msgid "Change your password." msgstr "Αλλαγή κωδικού" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Ο κωδικός αποθηκεύτηκε." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3909,11 +4567,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3923,21 +4582,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3957,11 +4621,13 @@ msgstr "" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4010,7 +4676,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "" @@ -4020,52 +4687,73 @@ msgstr "" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Μέλος από" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4080,7 +4768,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4091,31 +4779,38 @@ msgid "'s profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4138,7 +4833,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4197,16 +4892,17 @@ msgstr "" msgid "These are the people whose " msgstr "" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4228,7 +4924,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4238,17 +4934,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4256,20 +4952,23 @@ msgstr "" msgid "No such tag." msgstr "" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "" @@ -4277,15 +4976,16 @@ msgstr "" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Όνομα χρήστη στο Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Κωδικός στο Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Φίλοι στο Twitter" @@ -4298,146 +4998,155 @@ msgstr "Το όνομα χρήστη πρέπει να έχει μόνο νού msgid "Unable to retrieve account information " msgstr "" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Περί" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Δημιουργία νέου λογαριασμού" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Βοήθεια" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4450,12 +5159,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Δημιουργία νέου λογαριασμού" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "" @@ -4475,31 +5187,36 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Περιγραφή" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \"Πόλη, Περιοχή, Χώρα)" @@ -4508,20 +5225,20 @@ msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \" msgid "Group" msgstr "Ομάδα" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Διαχειριστής" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Επεξεργασία ιδιοτήτων της ομάδας %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Λογότυπο" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s" @@ -4553,11 +5270,11 @@ msgstr "Συμμετοχή" msgid "Leave" msgstr "Αποχώρηση" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Σύνδεση με όνομα χρήστη και κωδικό" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Δημιουργία νέου λογαριασμού" @@ -4580,17 +5297,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Τοποθεσία: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Αρχική σελίδα: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4599,7 +5316,7 @@ msgstr "" "Βιογραφικό: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4614,40 +5331,48 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Από" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 ή περισσότεροι χαρακτήρες" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4668,28 +5393,30 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 #, fuzzy msgid "(none)" msgstr "(κανένα)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Δημόσια" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Ομάδες χρηστών" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Πρόσφατες ετικέτες " -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Προτεινόμενα" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Δημοφιλή" @@ -4705,31 +5432,33 @@ msgstr "Βρες ομάδες στο site" msgid "Untitled section" msgstr "Ενότητα χωρίς τίτλο" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "" #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Γίνε συνδρομητής αυτού του χρήστη" @@ -4742,10 +5471,11 @@ msgid "Top posters" msgstr "Κορυφαίοι δημοσιευτές" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4753,6 +5483,1967 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Ροή φίλων του/της %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s και οι φίλοι του/της" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Ρυθμίσεις OpenID" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, php-format +msgid "Microblog by %s group" +msgstr "" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Αναζήτηση ροής για \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό " +"σας, πριν αλλάξετε τις ρυθμίσεις σας." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Δημόσια ροή %s" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, " +"διεύθυνση IM, τηλεφωνικό νούμερο." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Δημιουργία" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +msgid "Edit Avatar" +msgstr "" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που " +"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " +"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για " +"να τον συνδέσετε στο OpenID σας." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "" + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s και οι φίλοι του/της" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" +msgstr "" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Τοποθεσία" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Μήνυμα" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Μήνυμα" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +msgid "Not a valid invitation code." +msgstr "" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "" + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Απέτυχε η ενημέρωση του χρήστη." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Οι προτιμήσεις αποθηκεύτηκαν" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Διαχειριστής" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Απέτυχε η αποθήκευση του προφίλ." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί " +"καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Ο κωδικός αποθηκεύτηκε." + +#: actions/register.php:86 +msgid "Sorry, invalid invitation code." +msgstr "" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Γίνε συνδρομητής αυτού του χρήστη" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s και οι φίλοι του/της" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Διαχειριστής" + +#: actions/shownotice.php:101 +msgid "Not a local notice" +msgstr "" + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" + +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Απέτυχε η ενημέρωση του χρήστη." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Αλλάξτε τον κωδικό σας" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Σύνδεση" + +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Σύνδεση" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "" + +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" +msgstr "" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +msgid "in context" +msgstr "" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." + +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Ομάδες χρηστών" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Ομάδες με τα περισσότερα μέλη" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Βρες ομάδες στο site" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη " +"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " +"δοκιμάστε το [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Ροή φίλων του/της %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Αδύνατη η αποθήκευση του προφίλ." + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." + +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" + +#: lib/action.php:785 +msgid "Site content license" +msgstr "" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" +msgstr "" + +#: lib/command.php:441 +msgid "Error saving notice." +msgstr "" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "" + +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "από" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Διαγραφή μηνύματος" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Δημιουργία νέου λογαριασμού" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.mo b/locale/en_GB/LC_MESSAGES/statusnet.mo index 4eeac7304f8599e5c1a260a71cd466ac4970bde5..b970c431985f5ab63f50b0b336774dbb77faed9a 100644 GIT binary patch delta 29027 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 delta 21074 zcma*v1$G}^BkVZ!H$y$ zoASrb5XTu)Nx6(z!z~hro!}19j6>-#V~Ay#jzE};slJswKjbS z%Q{ZL`HM*NAjc_2YmrnK`?BN2qmTTLv!6fIVfJQ@QyZ(IItpMm+=Qv|p!FDLC;bCv z#9LSZgI;l*3|I&?p>mjo{+*^oH1n>Q2FIdaoQxWfkC|{Irp0}j84p`8pz7bT>5%58 zUJg`;`B5E~Le*=CYPTJR(Z4f{NHhj)!7|j$wy6Rh!E|^IwbYle2;RWTn7xJLBw{mE z`A(bu0=1H*TRP5g?204sBv!*Ft?08Lk*P#pz)!F~{()JsRBN^c>!J2;Fy_Ts*bmpC z8j5V=I5V&fR>j}&Z7k5%Ed6>cPWl)|<1@^L(d}6Od_*d=bDU6Yg<9ecsG0Oa?QJ4* zKAqvHm3R%a;G3w1eALo@f+cYmHpCmK_baw{oDx_A)z1Lyu=cFK8ho7$bubY*{LU0q z{tVO>%*O~^j+t;1#^8R`;kt^MF+&G)So2#OpawJmRlXRtvKz1%eiwQ`S8GcVfBlvhJ_&;see8H_p`Z=O-Y?k8%s37; zfV!yst{9C8sFj(DIq2V6ZZmdZe$uD03_irdSiHAc(iT{N^Z?Y7&cbM1jXI16tv6Ba zWbI=*s(@P2S5PZ61hr!CU_b>Q6449$Y{74+ng5N2F>^x7x7w+U+M)qi8t0?7=pg3B z8>ktF_ciIFr~%hUwci(Y-KX2~HGNrsRrrbwo&Kw+dmYrzoYw595m!g;eFsd1Lr{n9 zH7tbFQCqap=I=w@ic_fT9MRvjmlbu`t70@J^k@AwvZ-XG#g9=V{0!Cc2~>x-Fg-p% zb(|`Z1Ba2Q8P`UwNM{VgSvLPY)NR;;n!qtkgO^bQz7-&%y$Bv)mMSMUCjA1c!^x<< zo{ORQiOo+!o#wr$r9Xl?R5!2~rX6T*NjcOC*G1*`L2d0EjK;tkB3k-ytQS!;dWc$y zY=g`U%Ap#12~|GC=FdRAztZOKLJjB#)K)&Q<>7p7lwZ(V3t54H(}jqZYzXRuGZwWa z<54615VdsMQ7dp1wRERZTlNQPN$+3=e2jW8Y=~L8f~WyjwYI?*Awv8o&b7 ziyxtue5dsk#*w~>T`~7ivm#?qhwEL`Ko+5H%SRZFhcF1wpay;p)8j=Ubn-=A%&!PPF+mZT?);AzqAXe;aB52QV5>Vn8GO zi-;O{h+2t|;f~V-Gh#dr$F}$(mcYkY9*d1I4Rysaq{pLX`V`e+$VfBrOsK+t$$6O#Pe~ zO@0|Hf-O)hG5R&uKNFFuWaxA*LN%}zHPS;^1|Oil197jLpXX&TBkAs__lDt4oQdijWrGTM$Ke6X2sE{FWxN7jaxAb zo-je7yYen-g|}e1?*A7=bo!5`WN=SW75~7B z7&hL_xDM*NbwSNE0d+{{U|rmaI+Q_dv<99NwFNaX2%Dp}sugPMI$$LIJAH|0iQh!c zbUvz~Rj85fLN#>IdJa|Z25O6*VlE7Q(;UiZ)O)2dWkpa+-xGDXhhPDmhyk7Al{RAw zYAep725=9xs73-nybt}{gC8B0B-ue#e{Y6+DSEJrLg(3Jms-vr@_n)BJ%RJe98Dl52 z{+elhGIW|dqE=uqYDuS|%0IH{?O1~JDbxytyk$BriJECg)Br|d9-M|cd@E5av=KGn z9jHTmFhE2zK7$(Z6-x5C*A5-IWTkhHXHJEaS zQ2m|5Pz+orqLJM}9h#@88Kj$PmO2;aBV7c`VSS9l(Wrs0L@n())Ij&4w&)b9-Cr;o zZ&)LynR=y=dI6^n5p~$i+7;E&VAK+QglTXSYQ#Hj{yx;qkD&%~!KN>v4(UDAgwjtp z1BpcS6N75692U|2uVxE+VSWlmU}5x8U%Fkk{0G#MUqN-~zHK^6gBnP*HQwe|MRn8? zwd9?!5DvtmI2SAE{_iBBnccv(^==3 z!KSOUYbx=lAhwbK!GwuYgu`8?FX76yo9Ch|Tu#Z5R0UC;bIU<`7Qodc+u zH=k=vM0GeB)u5010KJF$wr|6%_#eSD`O1K&; z;6*Hpk?)#Q{35EuVb~65+x)B8fOIC`%(xwDWk;j7@J)=sx3ReH|9eCt(+I^2(1nWLzIUBn!C1G8bOg=R_fpq9EAs(uYry=JJN0STxxG6^-nsi<2p3)ATS zFC?NFe~2&PDtr;|V=k<>$aK&ZRc{1pK%=l2PR4?`5w$WWu`oWh`GwvyTh|CR@Uf^{ z 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�G+@caqf`A6a| zx#ev7Ht{0FuM>VHK7ufWmOjH_gh@0woA5KCf_kve7}DXy%kth#o7aUrJs%jHB+?5g z=i&c31c}cHcL|Sdg@-tUu#CL2xCKwzvZi#lk#sL?LL(~({L1a*HVr!U$?s2E&!>bk zHa{i9{?U#)Z<4>7znnOoN$45NOI2)K=??bASlgKLDiLOqu0(iB`5J=$wy{oyJf+D` zW$RzW={BAThZ9CpCyQ-2GwH8%{@W1w7=vuVEB_b-*-m!St!-XB>5r*5hLA>uJf9K2 zZQor=TVE0{kI$c;#J?x+JzM7i1*ZtNNUMLRACWS6f{J+wEeU<-aF7al`jNguoe<)A zY$KD1Pa%IfVI`q2`8RFZVai7Eel+13@wdq@NXSQMOWk<Ec!l$J5SLWwWP9ndMuV(>a1>phd zKGb`ku!?vw{Ys)bWf?>;VFU3cWW*CcLYbZoq!*iL%0B|UOS%Z=8H1VB;X5?2Qorn0#7)khvyjAvn zvYm$d{x>J%1O=PPNJspA;%Uh*OuQC;L;iB|))9^npFsX~>_*uSCX-WDcg0)L7p(rdE0oa+9aWGdRhVS0&!vHmd9x z>eL~zaVct>0UQ764EYexK{jVIdj zu}mh4{Bwj^l)Z=t3A-qtM*2KvwQGAV$lj;?Wc)#4Wqb=`2*+%LGp%jNTTFZ&Rw3wl zk#r$jKHOwE4M=Ao76-9_YgAbrr5cPBoY{HmlAsgss;vn~8Ff{X@O zkivgHVWb<9F`x1!#8(lYPQ1@QDm^7W#HMRd=EYte;SK6g(kpXqXHvxV#=%}<*KOX* z-9~v~-RF7_y5CHS>X|Oc`{u7fNgM9palMFHnUWg!>+X87iJ85@iQjoU9~bsU59sAJ zdXm>$|D;Mp@8P|MI<@+Bdo8-&(4m8dCfyns7o6O~b%(kBxgfW)_jFi6uh#IK{+n6d zT>kE0H`!}AqHkzIw}E|nB|RK5GbChqw;sd2r=!YxO-48HYlpdc{V&tInf)1I?liwj zxZBO&6Yhq2)5ktbN_yk2>pzWfU-yQL@0)aSd^^`)lG)ASpU>>Zdr=c({6ksX7yXi1 z-B2%hQk*wvQlfWlQqiOelaIK5(;RLF@5d>ry;4(ddex?W;k_{}+@Bfgrt{B7y2ZTI z)9-t|-|p%k&+X>)Z|8O!dI>X5_!Bz1d6NddbJX>BM7h(vdb9ubTjh6iCiS1QGdQ_Q zAvZk8OPasHYqOx2cW%KHe}00S(ccj3*76=Ld?BgnqAJ1u<`QmJ|3V2jk9T58CO;);06D^((YvM!3X91 zL1o+xe$%pUjF+%{vL9Q{&F2mND1#qb-Yw@XU6I-!Ro;Eq&t1Wd@@}upmprn9yCf)S z*_vvuzqE>b*8ifa+tZJ)=FafitdH|%ua6HM(LJ$m4}VZ~H@CmIx;w_(vf+S#yM|jP z>Dk60*MF^+Tg4lf)W9!U+g+dhW*xV?>xb2IrT;3m!7al!SEH+4TtsDe! z_m`Qx#C^H_K`q=#{;Zbn;pD}w+(yC4_1RF@8*n(x`{~d~e_{u>O46r?IY$Yd+@_m5 zyUT+7^Ie&H=i?>)-rd~m-kcNTy&@+Qy|X9NdOJ^+N$Pnj(oHVg%dO)2LwmdB{6oFn zmy^CflhySi&wk;*(bp~Sf8N)f>96YN#`{nDx$~1coR10iYYcK{B>5LJ1|@y_Ya`cd z`ulwE*6;hgQkTzpH;09Lo&JdNkB)T9dY}K%F+-`+CCZeKE?uEYnR0QZN+lJ)vd9hT zJ#^3juk^KD&#zMlFXUENZ_2ILz0$XR?_T$H-qAbty{MkmlcwDL*0onFA^0CRYW07) zNm<>bs?Tx+{kQ9s%yr7{rmB;2nUZsby0iavn{xTh)4Aon-lOyQyVJRu{?olm=3b?9 zy-(k$k{p-8J?{G1GP>P$v%HJrm-*W>xkvx~VwLs=Od6<5mE10y`+<0ouj=yR{@}74z5lP9lw7K^+t~HjR&l@mpI0fFt5nF59e diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index a105d2b867..67c09140e5 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-05-21 01:42+0000\n" "Last-Translator: Bruce Cowan \n" "Language-Team: LANGUAGE \n" @@ -18,7 +18,7 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Search Stream for \"%s\"" @@ -26,7 +26,7 @@ msgstr " Search Stream for \"%s\"" # Adjusted for grammar. #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -39,17 +39,19 @@ msgid " from " msgstr "from" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Updates replying to %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s has invited you to join them on %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -101,11 +103,13 @@ msgstr "" "\n" "%6$s\n" "\n" -"If not, you can ignore this message. Thanks for your patience and your time.\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" "\n" "Sincerely, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s is now listening to your notices on %2$s." @@ -128,25 +132,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s updates that reply to updates from %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s's status on %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Public Stream" @@ -156,34 +163,48 @@ msgstr "%s Public Stream" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s and friends" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s public timeline" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s timeline" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s updates from everyone!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -191,16 +212,18 @@ msgstr "" "(You should receive a message by e-mail momentarily, with instructions on " "how to confirm your e-mail address.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** is a microblogging service brought to you by " -"[%%site.broughtby%%](%%site.broughtbyurl%%)." +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is a microblogging service." @@ -212,39 +235,44 @@ msgstr ". Contributors should be attributed by full name or nickname." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 lowercase letters or numbers, no punctuation or spaces" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "1-64 lowercase letters or numbers, no punctuation or spaces. Required." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 or more characters" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 or more characters, and don't forget it!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 or more characters. Required." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." msgstr "" -"A confirmation code was sent to the IM address you added. You must approve " -"%s for sending messages to you." +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -278,7 +306,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API method not found!" @@ -301,16 +356,23 @@ msgstr "API method not found!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API method under construction." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "About" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Accept" @@ -321,6 +383,9 @@ msgstr "Accept" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Add" @@ -338,27 +403,29 @@ msgstr "Add or remove OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Address" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Addresses of friends to invite (one per line)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "All subscriptions" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "All updates for %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "All updates matching search term \"%s\"" @@ -368,30 +435,37 @@ msgstr "All updates matching search term \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Already logged in." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Already subscribed!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Are you sure you want to delete this notice?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Authorise subscription" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Automatically login in the future; not for shared computers!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -400,18 +474,21 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar updated." # Buddy? #: ../actions/imsettings.php:55 actions/imsettings.php:56 -#, php-format -#, fuzzy +#: actions/imsettings.php:108 actions/imsettings.php:114 +#, fuzzy, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" @@ -420,6 +497,7 @@ msgstr "" "message with further instructions. (Did you add %s to your buddy list?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -428,7 +506,7 @@ msgstr "" "a message with further instructions." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Awaiting confirmation on this phone number." @@ -440,6 +518,8 @@ msgstr "Before »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Bio" @@ -447,16 +527,18 @@ msgstr "Bio" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Bio is too long (max 140 chars)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Can't delete this notice." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Can't read avatar URL '%s'" @@ -464,6 +546,8 @@ msgstr "Can't read avatar URL '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Can't save new password." @@ -471,31 +555,34 @@ msgstr "Can't save new password." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancel" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Cannot create OpenID consumer object." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Cannot normalise Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Cannot normalise that e-mail address" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Change" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Change e-mail handling" @@ -505,11 +592,12 @@ msgid "Change password" msgstr "Change password" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Change your password" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Change your profile settings" @@ -519,6 +607,9 @@ msgstr "Change your profile settings" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirm" @@ -531,12 +622,14 @@ msgstr "Confirm Address" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmation cancelled." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Confirmation code" @@ -545,7 +638,8 @@ msgstr "Confirmation code" msgid "Confirmation code not found." msgstr "Confirmation code not found." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -579,21 +673,25 @@ msgstr "" "Thanks for signing up and we hope you enjoy using this service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Connect" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Connect existing account" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contact" # Thought form was incorrect #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Could not create OpenID from: %s" @@ -601,35 +699,39 @@ msgstr "Could not create OpenID from: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Could not follow user: %s is already on your list." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Could not follow user: User not found." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Could not redirect to server: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Could not save avatar info" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Could not save new profile info" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Could not subscribe other to you." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Could not subscribe." @@ -649,15 +751,17 @@ msgstr "Couldn't convert request tokens to access tokens." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Couldn't delete e-mail confirmation." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Couldn't delete subscription." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Couldn't find any statuses." @@ -670,29 +774,38 @@ msgstr "Couldn't get a request token." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Couldn't insert confirmation code." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Couldn't insert new subscription." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Couldn't save profile." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Couldn't update user for autosubscribe." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Couldn't update user record." @@ -708,42 +821,48 @@ msgstr "Couldn't update user record." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Couldn't update user." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Create" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Create a new user with this nickname." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Create new account" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Creating new account for OpenID that already has a user." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Current confirmed Jabber/GTalk address." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Current confirmed SMS-enabled phone number." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Current confirmed e-mail address." @@ -752,23 +871,27 @@ msgid "Currently" msgstr "Currently" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "DB error inserting hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "DB error inserting reply: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Delete notice" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Describe yourself and your interests in 140 chars" @@ -776,11 +899,13 @@ msgstr "Describe yourself and your interests in 140 chars" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "E-mail Address" @@ -790,39 +915,43 @@ msgid "Email Settings" msgstr "E-mail Settings" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "E-mail address already exists." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "E-mail address confirmation" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "E-mail address, like \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "E-mail addresses" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Enter a nickname or e-mail address." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Enter the code you received on your phone." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Error authorising token." #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Error connecting user to OpenID." @@ -833,39 +962,46 @@ msgstr "Error connecting user." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Error inserting avatar." #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Error inserting new profile." #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Error inserting remote profile." #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Error saving address confirmation." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Error saving remote profile." #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Error saving the profile." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Error saving the user." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Error saving user; invalid." @@ -874,6 +1010,9 @@ msgstr "Error saving user; invalid." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Error setting user." @@ -886,6 +1025,7 @@ msgstr "Error updating profile." # Added full stop #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Error updating remote profile." @@ -895,33 +1035,36 @@ msgid "Error with confirmation code." msgstr "Error with confirmation code." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Existing nickname" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "F.A.Q." #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Failed updating avatar." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed for friends of %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed for replies to %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed for tag %s" @@ -936,7 +1079,7 @@ msgstr "Find content of notices" msgid "Find people on this site" msgstr "Find people on this site" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -949,6 +1092,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Full name" @@ -957,23 +1105,33 @@ msgstr "Full name" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Full name is too long (max 255 chars)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Help" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Home" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Homepage" @@ -981,22 +1139,28 @@ msgstr "Homepage" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Homepage is not a valid URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "I want to post notices by e-mail." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "I.M." # possibly use I.M. #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "I.M. Address" @@ -1007,7 +1171,7 @@ msgid "IM Settings" msgstr "I.M. Settings" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1015,7 +1179,7 @@ msgstr "" "If you already have an account, login with your username and password to " "connect it to your OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1024,7 +1188,7 @@ msgstr "" "click \"Add\"." # double space here -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1035,25 +1199,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Incoming e-mail" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Incoming e-mail address removed." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Incorrect old password" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Incorrect username or password." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1063,30 +1233,31 @@ msgstr "" # Avatar? #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Invalid avatar URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Invalid e-mail address: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Invalid homepage '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Invalid licence URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Invalid notice content" @@ -1102,13 +1273,13 @@ msgid "Invalid notice url" msgstr "Invalid notice URL" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Invalid profile URL '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Invalid profile URL (bad format)" @@ -1126,28 +1297,35 @@ msgstr "Invalid size." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Invalid username or password." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitation(s) sent" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitation(s) sent to the following people:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invite" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invite new users" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1159,11 +1337,12 @@ msgstr "" "org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID already belongs to another user." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1173,12 +1352,14 @@ msgstr "" "add %s to your buddy list in your IM client or on GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Language" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Language is too long (max 50 chars)." @@ -1187,7 +1368,15 @@ msgstr "Language is too long (max 50 chars)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Location" @@ -1196,7 +1385,12 @@ msgstr "Location" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Location is too long (max 255 chars)." @@ -1205,44 +1399,52 @@ msgstr "Location is too long (max 255 chars)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Login" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Login with an [OpenID](%%doc.openid%%) account." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" "(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" "%). " msgstr "" -"Login with your username and password. Don't have a username yet? " -"[Register](%%action.register%%) a new account, or try " -"[OpenID](%%action.openidlogin%%). " +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Logout" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Longer name, preferably your \"real\" name" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Lost or forgotten password?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Make a new e-mail address for posting to - cancels the old one." @@ -1253,65 +1455,74 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Manage how you get e-mail from %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Member since" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog by %s" # Carrier? -#: ../actions/smssettings.php:304 -#, php-format -#, fuzzy +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, fuzzy, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " "email but isn't listed here, send email to let us know at %s." msgstr "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"e-mail but isn't listed here, send e-mail to let us know at %s." +"Mobile carrier for your phone. If you know a carrier that accepts SMS over e-" +"mail but isn't listed here, send e-mail to let us know at %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "My text and files are available under " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "New" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "New e-mail address for posting to %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "New incoming e-mail address added." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "New nickname" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "New notice" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "New password" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "New password successfully saved. You are now logged in." @@ -1321,7 +1532,13 @@ msgstr "New password successfully saved. You are now logged in." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Nickname" @@ -1330,7 +1547,12 @@ msgstr "Nickname" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Nickname already in use. Try another one." @@ -1339,49 +1561,60 @@ msgstr "Nickname already in use. Try another one." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Nickname must have only lowercase letters and numbers, and no spaces." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Nickname not allowed." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Nickname of the user you want to follow" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Nickname or e-mail" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "No" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "No Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "No authorisation request!" # Carrier? #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 #, fuzzy msgid "No carrier selected." msgstr "No carrier selected." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "No code entered" @@ -1393,11 +1626,15 @@ msgstr "No confirmation code." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "No content!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "No e-mail address." @@ -1406,7 +1643,9 @@ msgid "No id." msgstr "No id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "No incoming e-mail address." @@ -1417,6 +1656,7 @@ msgstr "No nickname provided by remote server." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "No nickname." @@ -1424,12 +1664,14 @@ msgstr "No nickname." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "No pending confirmation to cancel." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "No phone number." @@ -1439,7 +1681,8 @@ msgid "No profile URL returned by server." msgstr "No profile URL returned by server." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "No registered e-mail address for that user." @@ -1451,7 +1694,7 @@ msgstr "No request found!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "No results" @@ -1462,12 +1705,16 @@ msgstr "No size." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "No status found with that ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "No status with that ID found." @@ -1477,13 +1724,15 @@ msgid "No such OpenID." msgstr "No such OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "No such document." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "No such notice." @@ -1521,12 +1770,22 @@ msgstr "No such subscription" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "No such user." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "No user with that e-mail address or username." @@ -1540,33 +1799,39 @@ msgid "Not a recovery code." msgstr "Not a recovery code." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Not a registered user." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Not a supported data format." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Not a valid Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Not a valid OpenID." # Missing full stop, needs to merge with: actions/register.php:63 actions/register.php:70 actions/register.php:152 #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Not a valid e-mail address." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Not a valid e-mail address." @@ -1574,6 +1839,11 @@ msgstr "Not a valid e-mail address." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Not a valid nickname." @@ -1593,7 +1863,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Not a valid profile URL (no YADIS document)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Not an image or corrupt file." @@ -1604,11 +1875,13 @@ msgstr "Not authorised." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Not expecting this response!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Not found" @@ -1624,12 +1897,16 @@ msgstr "Not found" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Not logged in." # removed full stop -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Not subscribed!" @@ -1646,39 +1923,44 @@ msgid "Notice feed for %s" msgstr "Notice feed for %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Notice has no profile" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Notices" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Notices tagged with %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Old password" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID Account Setup" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID Auto-Submit" @@ -1686,29 +1968,34 @@ msgstr "OpenID Auto-Submit" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID Login" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID authentication cancelled." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID authentication failed: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID failure: %s" @@ -1724,11 +2011,12 @@ msgid "OpenID settings" msgstr "OpenID settings" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Optionally add a personal message to the invitation." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Partial upload." @@ -1738,34 +2026,46 @@ msgstr "Partial upload." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Password" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Password and confirmation do not match." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Password must be 6 chars or more." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Password recovery requested" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Password saved." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Passwords don't match." @@ -1785,14 +2085,17 @@ msgid "People search" msgstr "People Search" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personal" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Personal message" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Phone number, no punctuation or spaces, with area code" @@ -1807,7 +2110,7 @@ msgstr "" "click \"Cancel\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post a notice when my Jabber/GTalk status changes." @@ -1816,7 +2119,9 @@ msgstr "Post a notice when my Jabber/GTalk status changes." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferences" @@ -1825,42 +2130,52 @@ msgstr "Preferences" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Preferences saved." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Preferred language" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacy" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problem saving notice." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profile" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profile URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profile settings" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profile unknown" @@ -1869,17 +2184,19 @@ msgid "Public Stream Feed" msgstr "Public Stream Feed" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Public timeline" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publish a MicroID for my Jabber/GTalk address." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publish a MicroID for my e-mail address." @@ -1889,12 +2206,14 @@ msgid "Recent Tags" msgstr "Recent Tags" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recover" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recover password" @@ -1907,37 +2226,45 @@ msgstr "Recovery code for unknown user." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Register" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registration not allowed." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registration successful" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Reject" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Remember me" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Remote profile with no matching profile" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Remote subscribe" @@ -1951,6 +2278,9 @@ msgstr "Remote subscribe" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Remove" @@ -1959,7 +2289,7 @@ msgstr "Remove" msgid "Remove OpenID" msgstr "Remove OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1968,34 +2298,41 @@ msgstr "" "remove it, add another OpenID first." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Replies" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Replies to %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Reset" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Reset password" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS Phone number" @@ -2004,17 +2341,18 @@ msgstr "SMS Phone number" msgid "SMS Settings" msgstr "SMS Settings" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS confirmation" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Same as password above" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Same as password above. Required." @@ -2027,12 +2365,21 @@ msgstr "Same as password above. Required." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Save" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Search" @@ -2042,7 +2389,7 @@ msgid "Search Stream Feed" msgstr "Search Stream Feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2051,7 +2398,7 @@ msgstr "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2062,35 +2409,40 @@ msgstr "" # Carrier? #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 #, fuzzy msgid "Select a carrier" msgstr "Select a carrier" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Send" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Send e-mail to this address to post new notices." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Send me notices of new subscriptions through e-mail." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Send me notices through Jabber/GTalk." # Carrier #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 #, fuzzy msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " @@ -2100,15 +2452,19 @@ msgstr "" "from my carrier." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Send me replies through Jabber/GTalk from people I'm not subscribed to." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Settings" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Settings saved." @@ -2128,27 +2484,32 @@ msgid "Something weird happened." msgstr "Something weird happened." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Sorry, no incoming e-mail allowed." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Sorry, that is not your incoming e-mail address." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Source" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistics" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Stored OpenID not found." @@ -2156,24 +2517,28 @@ msgstr "Stored OpenID not found." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Subscribe" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscribers" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Subscription authorised" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Subscription rejected" @@ -2181,28 +2546,35 @@ msgstr "Subscription rejected" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscriptions" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "System error uploading file." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Text" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Text search" @@ -2222,6 +2594,7 @@ msgid "That confirmation code is not for you!" msgstr "That confirmation code is not for you!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "That e-mail address already belongs to another user." @@ -2231,63 +2604,73 @@ msgid "That file is too big." msgstr "That file is too big." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "That is already your Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "That is already your e-mail address." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "That is already your phone number." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "That is not your Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "That is not your e-mail address." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "That is not your phone number." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "That is the wrong IM address." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "That is the wrong confirmation number." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "That phone number already belongs to another user." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "That's too long. Max notice size is 140 chars." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "That's too long. Max notice size is 255 chars." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "The address \"%s\" has been confirmed for your account." @@ -2296,11 +2679,14 @@ msgstr "The address \"%s\" has been confirmed for your account." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "The address was removed." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2310,7 +2696,8 @@ msgstr "" "with the site's instructions for details on how to authorise the " "subscription. Your subscription token is:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2321,35 +2708,39 @@ msgstr "" "subscription." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "These are the people who listen to %s's notices." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "These are the people who listen to your notices." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "These are the people whose notices %s listens to." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "These are the people whose notices you listen to." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -"These people are already users and you were automatically subscribed to " -"them:" +"These people are already users and you were automatically subscribed to them:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "This confirmation code is too old. Please start again." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2358,7 +2749,7 @@ msgstr "" "button to go to your OpenID provider." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2373,6 +2764,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "This method requires a POST or DELETE." @@ -2381,50 +2775,64 @@ msgstr "This method requires a POST or DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "This method requires a POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "This page is not available in a media type you accept" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Timezone" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Timezone not selected." # double space. -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"To subscribe, you can [login](%%action.login%%), or " -"[register](%%action.register%%) a new account. If you already have an " -"account on a [compatible microblogging site](%%doc.openmublog%%), enter " -"your profile URL below." +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Two user ids or screen_names must be supplied." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL of your homepage, blog, or profile on another site" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL of your profile on another compatible microblogging service" @@ -2436,15 +2844,22 @@ msgstr "URL of your profile on another compatible microblogging service" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Unexpected form submission." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Unexpected password reset." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Unknown action" @@ -2475,38 +2890,47 @@ msgstr "Unsubscribe" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Unsupported OMB version" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Unsupported image file format." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Updates by SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Updates by instant messenger (I.M.)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Updates from %1$s and friends on %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Upload" @@ -2527,13 +2951,16 @@ msgid "Upload a new profile image" msgstr "Upload a new profile image" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" "Use this form to invite your friends and colleagues to use this service." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Used only for updates, announcements, and password recovery" @@ -2557,11 +2984,16 @@ msgstr "User being listened to doesn't exist." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "User has no profile." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "User nickname" @@ -2570,29 +3002,33 @@ msgid "User not found." msgstr "User not found." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "In which timezone are you?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "What's up, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Where you are, like \"City, State (or Region), Country\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Wrong image type for '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Wrong size image at '%s'" @@ -2600,7 +3036,9 @@ msgstr "Wrong size image at '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Yes" @@ -2623,11 +3061,12 @@ msgid "You are already logged in!" msgstr "You are already logged in!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "You are already subscribed to these users:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "You are not friends with the specified user." @@ -2645,7 +3084,7 @@ msgstr "You can create a new account to start posting notices." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "You can receive SMS messages through e-mail from %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2654,40 +3093,43 @@ msgstr "" "\"Remove\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"You can send and receive notices through Jabber/GTalk [instant " -"messages](%%doc.im%%). Configure your address and settings below." +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" -"You can update your personal profile info here so people know more about " -"you." +"You can update your personal profile info here so people know more about you." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "You can use the local subscription!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "You can't register if you don't agree to the licence." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "You did not send us that profile" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2709,16 +3151,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "You may not delete another user's status." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "You must be logged in to invite other users to use %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2727,21 +3172,22 @@ msgstr "" "on the site. Thanks for growing the community!" # extra spaces. -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "You've been identified. Enter a new password below. " #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Your OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Your nickname on this server, or your registered e-mail address." # extra spaces. -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2750,47 +3196,57 @@ msgstr "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "a few seconds ago" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "about %d days ago" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "about %d hours ago" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "about %d minutes ago" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "about %d months ago" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "about a day ago" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "about a minute ago" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "about a month ago" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "about a year ago" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "about an hour ago" @@ -2812,12 +3268,14 @@ msgid "reply" msgstr "reply" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "same as password above" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "unsupported file type" @@ -2839,6 +3297,26 @@ msgstr "← After" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "There was a problem with your session token. Try again, please." @@ -2847,6 +3325,7 @@ msgid "This notice is not a favorite!" msgstr "This notice is not a favourite!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Could not delete favourite." @@ -2854,22 +3333,28 @@ msgstr "Could not delete favourite." msgid "Favor" msgstr "Favour" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Send me e-mail when someone adds my notice as a favourite." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Send me e-mail when someone sends me a private message." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "This notice is already a favourite!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Could not create favourite." @@ -2879,11 +3364,13 @@ msgstr "Disfavour" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s's favorite notices" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed of favourite notices of %s" @@ -2926,34 +3413,45 @@ msgid "Login with your username and password. " msgstr "Login with your username and password. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "That's too long. Max message size is 140 chars." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "No recipient specified." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "You can't send a message to this user." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" "Don't send a message to yourself; just say it to yourself quietly instead." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "No such user" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "New message" @@ -3008,6 +3506,11 @@ msgstr "You can update your personal profile info here " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "User without matching profile" @@ -3036,6 +3539,8 @@ msgid "New password successfully saved. " msgstr "New password successfully saved. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Password must be 6 or more characters." @@ -3058,12 +3563,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "To subscribe, you can [login](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed for favourites of %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Could not retrieve favourite notices." @@ -3071,7 +3579,7 @@ msgstr "Could not retrieve favourite notices." msgid "No such message." msgstr "No such message." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Only the sender and recipient may read this message." @@ -3091,57 +3599,75 @@ msgstr "Send a message" # Carrier? #: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Mobile carrier for your phone. " msgstr "Mobile carrier for your phone. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Direct messages to %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "All the direct messages sent to %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Direct Messages You've Sent" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "All the direct messages sent from %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "No message text!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Recipient user not found." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "Can't send direct messages to users who aren't your friend." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favourites from %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s updates favourited by %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s added your notice as a favourite" @@ -3163,14 +3689,17 @@ msgstr "" "Add your Twitter account to automatically send your notices to Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter settings" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitter Account" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Current verified Twitter account." @@ -3179,6 +3708,7 @@ msgid "Twitter Username" msgstr "Twitter Username" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "No spaces, please." @@ -3187,18 +3717,22 @@ msgid "Twitter Password" msgstr "Twitter Password" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Automatically send my notices to Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Send local \"@\" replies to Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Subscribe to my Twitter friends here." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3207,6 +3741,7 @@ msgstr "" "underscore (_). 15 chars max." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Could not verify your Twitter credentials!" @@ -3217,33 +3752,43 @@ msgstr "Unable to retrieve account information for \"%s\" from Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Unable to save your Twitter settings!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Twitter settings saved." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "That is not your Twitter account." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Couldn't remove Twitter user." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Twitter account removed." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Couldn't save Twitter preferences." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Twitter preferences saved." @@ -3260,18 +3805,19 @@ msgid "The subscription has been rejected, but no " msgstr "The subscription has been rejected, but no " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Command results" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Command complete" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Command failed" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Sorry, this command is not yet implemented." @@ -3281,89 +3827,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Subscriptions: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "User has no last notice" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Notice marked as fave." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Fullname: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Location: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Homepage: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "About: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Message too long - maximum is 140 characters, you sent %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Direct message to %s sent" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Error sending direct message." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Specify the name of the user to subscribe to" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Subscribed to %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Specify the name of the user to unsubscribe from" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Unsubscribed from %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Command not yet implemented." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notification off." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Can't turn off notification." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notification on." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Can't turn on notification." @@ -3371,11 +3939,11 @@ msgstr "Can't turn on notification." msgid "Commands:\n" msgstr "Commands:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Could not insert message." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Could not update message with new URI." @@ -3392,7 +3960,7 @@ msgstr "" "You have a new posting address on %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "New private message from %s" @@ -3406,7 +3974,7 @@ msgstr "" "%1$s (%2$s) sent you a private message:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Only the user can read their own mailboxes." @@ -3415,31 +3983,39 @@ msgid "This form should automatically submit itself. " msgstr "This form should automatically submit itself. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favourites" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "%s's favourite notices" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "User" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Inbox" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Your incoming messages" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Outbox" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Your sent messages" @@ -3452,14 +4028,19 @@ msgid "Twitter integration options" msgstr "Twitter integration options" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "To" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Could not parse message." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s and friends, page %d" @@ -3470,21 +4051,31 @@ msgstr "You can upload your personal avatar." # requires full stops? #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Avatar settings" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Preview" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Crop" @@ -3501,34 +4092,43 @@ msgid "There was a problem with your session token. " msgstr "There was a problem with your session token. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Pick a square area of the image to be your avatar" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Lost our file data." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Lost our file." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Unknown file type" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "No profile specified." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "No profile with that ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Block user" @@ -3536,11 +4136,11 @@ msgstr "Block user" msgid "Are you sure you want to block this user? " msgstr "Are you sure you want to block this user? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "You have already blocked this user." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Failed to save block information." @@ -3557,38 +4157,56 @@ msgstr "You are about to permanently delete a notice. " msgid "Add to favorites" msgstr "Add to favourites" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Edit %s group" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "Inboxes must be enabled for groups to work" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "You must be logged in to create a group." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "No nickname" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "No such group" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "You must be an admin to edit the group" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Use this form to edit the group." @@ -3597,14 +4215,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Nickname must have only lowercase letters " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "description is too long (max 140 chars)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Could not update group." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Options saved." @@ -3621,7 +4240,8 @@ msgstr "Make a new e-mail address for posting to; " msgid "Send me email when someone " msgstr "Send me e-mail when someone " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Allow friends to nudge me and send me an e-mail." @@ -3633,7 +4253,7 @@ msgstr "That e-mail address already belongs " msgid "A confirmation code was sent to the email address you added. " msgstr "A confirmation code was sent to the e-mail address you added. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Server error - couldn't get user!" @@ -3647,53 +4267,68 @@ msgstr "If you would like the %s app to automatically update " msgid "Allow %s to update my Facebook status" msgstr "Allow %s to update my Facebook status" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Skip" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "No notice content!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Pagination" # erm, not sure what to do here, « is recognised as a quotation mark. #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "After" # erm, not sure what to do here, » is recognised as a quotation mark. #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Before" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Thanks for inviting your friends to use %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Invitations have been sent to the following users:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "You have been invited to %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Invite your friends to use %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Friends already using %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Send invitations" @@ -3735,12 +4370,14 @@ msgstr "If you would like %s to automatically update " msgid "Sync preferences" msgstr "Sync preferences" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Disfavor favourite" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Popular notices" @@ -3754,7 +4391,8 @@ msgid "The most popular notices on the site right now." msgstr "The most popular notices on the site right now." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Featured users" @@ -3768,15 +4406,17 @@ msgstr "Featured users, page %d" msgid "A selection of some of the great users on %s" msgstr "A selection of some of the great users on %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "That user has blocked you from subscribing." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "No ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Group logo" @@ -3784,11 +4424,13 @@ msgstr "Group logo" msgid "You can upload a logo image for your group." msgstr "You can upload a logo image for your group." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo updated." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Failed updating logo." @@ -3807,7 +4449,8 @@ msgid "A list of the users in this group." msgstr "A list of the users in this group." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Groups" @@ -3822,6 +4465,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% groups let you find and talk with " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Create a new group" @@ -3832,7 +4476,7 @@ msgid "" msgstr "" "Search for groups on %%site.name%% by their name, location, or description. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Group search" @@ -3854,20 +4498,20 @@ msgstr "Send me replies through Jabber/GTalk " msgid "A confirmation code was sent " msgstr "A confirmation code was sent " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "You must be logged in to join a group." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "You are already a member of that group" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Could not join user %s to group %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s joined group %s" @@ -3876,15 +4520,18 @@ msgstr "%s joined group %s" msgid "Inboxes must be enabled for groups to work." msgstr "Inboxes must be enabled for groups to work." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "You must be logged in to leave a group." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "No such group." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "You are not a member of that group." @@ -3892,22 +4539,26 @@ msgstr "You are not a member of that group." msgid "You may not leave a group while you are its administrator." msgstr "You may not leave a group while you are its administrator." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Could not find membership record." # Thought form was incorrect -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Could not remove user %s to group %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s left group %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Login to site" @@ -3919,15 +4570,17 @@ msgstr "No current status" msgid "New group" msgstr "New group" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Use this form to create a new group." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Could not create group." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Could not set group membership." @@ -3939,11 +4592,14 @@ msgstr "That's too long. " msgid "Don't send a message to yourself; " msgstr "Don't send a message to yourself; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Notice posted" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax Error" @@ -3961,7 +4617,7 @@ msgstr "Nudge sent" msgid "Nudge sent!" msgstr "Nudge sent!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "OpenID login" @@ -3986,11 +4642,13 @@ msgstr "URL Auto-shortening" msgid "Service" msgstr "Service" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Automatic shortening service to use." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL shortening service is too long (max 50 chars)." @@ -3998,16 +4656,17 @@ msgstr "URL shortening service is too long (max 50 chars)." msgid "Change your password." msgstr "Change your password." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Password change" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Not a valid people tag: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Users self-tagged with %s - page %d" @@ -4017,36 +4676,41 @@ msgstr "Users self-tagged with %s - page %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "These are users who have tagged themselves \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Profile information" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- " -"separated" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " msgstr "Automatically subscribe to whoever " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Invalid tag: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Couldn't save tags." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Public timeline, page %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Could not retrieve public stream." @@ -4056,8 +4720,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki" -"/Micro-blogging) service " +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4068,11 +4732,13 @@ msgstr "Public tag cloud" msgid "These are most popular recent tags on %s " msgstr "These are most popular recent tags on %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Tag cloud" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Sorry, only invited people can register." @@ -4121,7 +4787,8 @@ msgstr "(You should receive a message by e-mail " msgid "That's a local profile! Login to subscribe." msgstr "That's a local profile! Login to subscribe." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Replies to %s, page %d" @@ -4131,50 +4798,71 @@ msgstr "Replies to %s, page %d" msgid "%s favorite notices, page %d" msgstr "%s favourite notices, page %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s group" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s group, page %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Group profile" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Note" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Group actions" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Notice feed for %s group" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Members" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(None)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "All members" @@ -4184,14 +4872,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "Only the sender and recipient " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, page %d" @@ -4201,30 +4889,37 @@ msgid "'s profile" msgstr "'s profile" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "User profile" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Photo" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "User actions" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Send a direct message to this user" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Message" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "All subscribers" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "All groups" @@ -4234,8 +4929,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** has an account on %%%%site.name%%%%, a [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4250,7 +4945,7 @@ msgid "A confirmation code was sent to the phone number you added. " msgstr "A confirmation code was sent to the phone number you added. " # Carrier? -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Mobile carrier" @@ -4309,16 +5004,17 @@ msgstr "These are the people whose notices " msgid "These are the people whose " msgstr "These are the people whose " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Notices tagged with %s, page %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Messages tagged \"%s\", most recent first" @@ -4340,7 +5036,7 @@ msgstr "Tag %s" msgid "Tag user" msgstr "Tag user" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4352,17 +5048,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "There was a problem with your session token." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "You can only tag people you are subscribed to or who are subscribed to you." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Could not save tags." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Use this form to add tags to your subscribers or subscriptions." @@ -4370,20 +5066,23 @@ msgstr "Use this form to add tags to your subscribers or subscriptions." msgid "No such tag." msgstr "No such tag." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Microblog tagged with %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Block user failed." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Unblock user failed." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Not found." @@ -4391,15 +5090,16 @@ msgstr "Not found." msgid "Add your Twitter account to automatically send " msgstr "Add your Twitter account to automatically send " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Twitter user name" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Twitter password" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Twitter Friends" @@ -4412,144 +5112,153 @@ msgstr "Username must have only numbers, " msgid "Unable to retrieve account information " msgstr "Unable to retrieve account information " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Error removing the block." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "No profile id in request." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "No profile with that id." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Unsubscribed" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s groups" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s groups, page %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Problem saving notice. Unknown user." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Too many notices too fast; take a breather and post again in a few minutes." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Upload an avatar" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Other" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Other options" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Untitled page" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Primary site navigation" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Personal profile and friends timeline" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Search for people or text" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Account" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Change your e-mail, avatar, password, profile" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Connect to IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Logout from the site" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Login to the site" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Create an account" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Login with OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Help me!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Site notice" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Local views" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Page notice" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Secondary site navigation" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "StatusNet software licence" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "All " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "licence." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Block this user" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Block" @@ -4562,11 +5271,14 @@ msgstr "Disfavour this notice" msgid "To use the %s Facebook Application you need to login " msgstr "To use the %s Facebook Application you need to login " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr " a new account." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Published" @@ -4586,53 +5298,59 @@ msgstr "Filter tags" msgid "All" msgstr "All" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Tag" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Choose a tag to narrow list" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Go" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL of the homepage or blog of the group or topic" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Description" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Describe the group or topic in 140 chars" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" +"Location for the group, if any, like \"City, State (or Region), Country\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Group" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Admin" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Edit %s group properties" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Add or edit %s logo" @@ -4662,11 +5380,11 @@ msgstr "Join" msgid "Leave" msgstr "Leave" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Login with a username and password" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Sign up for a new account" @@ -4688,17 +5406,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s is now listening to " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Location: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Homepage: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4707,7 +5425,7 @@ msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "You've been nudged by %s" @@ -4722,39 +5440,47 @@ msgstr "%1$s (%2$s) is wondering what you are up to " msgid "%1$s just added your notice from %2$s" msgstr "%1$s just added your notice from %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "From" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Send a direct notice" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Send a notice" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Available characters" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "in reply to" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Reply to this notice" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Reply" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Delete this notice" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Delete" @@ -4775,27 +5501,29 @@ msgstr "Send a nudge to this user" msgid "Tags in %s's notices" msgstr "Tags in %s's notices" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(none)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Public" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "User groups" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Recent tags" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Featured" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" @@ -4811,31 +5539,33 @@ msgstr "Find groups on this site" msgid "Untitled section" msgstr "Untitled section" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "People %s subscribes to" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "People subscribed to %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Groups %s is a member of" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Invite friends and colleagues to join you on %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "User has blocked you." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Subscribe to this user" @@ -4848,10 +5578,11 @@ msgid "Top posters" msgstr "Top posters" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Unblock this user" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Unblock" @@ -4859,6 +5590,2068 @@ msgstr "Unblock" msgid "Unsubscribe from this user" msgstr "Unsubscribe from this user" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed for friends of %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed for friends of %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed for friends of %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s and friends" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "You can upload your personal avatar." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar updated." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "There was a problem with your session token. Try again, please." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Send me e-mail when someone sends me a private message." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "You can upload a logo image for your group." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Pick a square area of the image to be your avatar" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog by %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Error sending direct message." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Search Stream for \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Public Stream Feed" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Public Stream Feed" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Public Stream Feed" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +# Adjusted for grammar. +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" except this private data: password, e-mail address, IM address, phone " +"number." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Create" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Group profile" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "'s profile" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Notice feed for %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Notice feed for %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Notice feed for %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Outbox for %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profile settings" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "No such user" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Add your Twitter account to automatically send your notices to Twitter, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Unable to retrieve account information for \"%s\" from Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Search for people or text" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Too many notices too fast; take a breather and post again in a few minutes." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Connect to IM, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Nudge" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "To use the %s Facebook Application you need to login " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Search" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "No such document." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "A list of the users in this group." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "A list of the users in this group." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "User profile" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s and friends, page %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "A list of the users in this group." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Unblock user failed." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Confirmation code" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Can't delete this notice." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Invalid tag: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Nickname already in use. Try another one." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Could not create favourite." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "New notice" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "New notice" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Not a valid nickname." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "No profile specified." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "User has blocked you." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "You are not a member of that group." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Block user" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "You must be logged in to create a group." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Groups" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Couldn't update user." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Unable to save your Twitter settings!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Sync preferences saved." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "You must be an admin to edit the group" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "No results" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "User has blocked you." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Message" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Couldn't save profile." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +# extra spaces. +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profile settings" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +# double space here +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"e-mail address you have stored in your account." + +# extra spaces. +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "You've been identified. Enter a new password below. " + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Password recovery requested" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Error with confirmation code." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Subscribe to this user" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s favourite notices, page %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Notice feed for %s group" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Notice feed for %s group" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Notice feed for %s group" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Not a local user." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Notices tagged with %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Notice feed for %s group" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s is now listening to " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Notice feed for %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Notice feed for %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "This notice is already a favourite!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "This notice is not a favourite!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Could not retrieve public stream." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "No recipient specified." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Couldn't find any statuses." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Updates replying to %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "licence." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s subscriptions" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profile settings" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "You are not a member of that group." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problem saving notice." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Message to %1$s on %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "User profile" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profile" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Upload" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Change your password" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connect" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Search" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Login" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Block" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Block user" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Add or edit %s logo" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "No content!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "User" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Search" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Homepage is not a valid URL." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "No such tag." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direct messages to %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "That's too long. Max message size is 140 chars." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Could not follow user: User not found." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "description is too long (max 140 chars)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "You are already a member of that group" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Could not join user %s to group %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "You are not a member of that group." + +# Thought form was incorrect +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Could not remove user %s to group %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s groups" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Groups %s is a member of" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Group actions" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "That's too long. Max notice size is 140 chars." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Unsupported image file format." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Photo" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "description is too long (max 140 chars)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "User being listened to doesn't exist." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Not authorised." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Couldn't convert request tokens to access tokens." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Unknown version of OMB protocol." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "No such notice." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Lost our file." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "This page is not available in a " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "All updates matching search term \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Describe yourself and your interests in 140 chars" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Describe yourself and your " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Bio is too long (max 140 chars)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Not a valid profile URL (no YADIS document)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "That's a local profile! Login to subscribe." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Couldn't get a request token." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Notice feed for %s group" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Message to %1$s on %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed for favourites of %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed for favourites of %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed for favourites of %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s group" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Notice posted" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "This page is not available in a " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Notice feed for %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"The subscription has been authorised, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorise the " +"subscription. Your subscription token is:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Can't read avatar URL '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Wrong image type for '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Could not redirect to server: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet software licence" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Couldn't update user with confirmed e-mail address." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Nudge sent" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Message too long - maximum is 140 characters, you sent %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Message too long - maximum is 140 characters, you sent %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Reply to this notice" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problem saving notice." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "No confirmation code." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Login to the site" + +# Carrier? +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Select a carrier" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Describe the group or topic in 140 chars" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Describe the group or topic in 140 chars" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Notice feed for %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s added your notice as a favourite" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "from" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Could not delete favourite." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Delete notice" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Create new account" diff --git a/locale/es/LC_MESSAGES/statusnet.mo b/locale/es/LC_MESSAGES/statusnet.mo index 05eabcc750d7182a58a50a4f0c4127bd1ce35df9..dffc701b44cf49a079d36087962d801c2d2ef5a9 100644 GIT binary patch delta 29229 zcma*v2YeLO!vFuB6hiO4ZUO;93B5+?y*EL+Az4Bojcfu^WC2mBQU+X56i`GIMP$VY z(nLWl*abyJQ3MeLdqd^-`R+OKa-Zkk=l`GA>*Rgf%$zxGW_f(>s^!tUHx>z;DIc}Y z!_g_qFzQTYiMx`?DSQeG8g&M;I)R?x$ z2AG5$FaE zss~1+CShPMk$562t$VN;>5owrO5~WKsEv(Cw?cK@1gwn9P#1m}HI%QQhTsw=V8iJq ze;D>9JppA4+a{XNTxl*3&Zi$_o=oWs(12`k|rSO&|^Fhk(Qilhgk z$|s?2d^_sK>#!_7gSyTUTmBB}I#)2DC;gj4_nz2Bc#ZybCMfgQ$AXSohAR|4WkbA{ou`P4wb*R2O^am@e*!y3j2) zor#*Xi_wcau|B?q>cL;I23DQx@wCL&sPZ(_b?-&3g6(tZf6dz0$

HMK2b;!_4Xg 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 diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index c0e69e3a75..85a11f8779 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-07-12 05:49+0000\n" "Last-Translator: Jorge \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Busca \"%s\" en la Corriente" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,19 +37,20 @@ msgid " from " msgstr "desde" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Actualizaciones en respuesta a %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s te ha invitado a que te unas con el/ellos en %2$s" -#: ../actions/invite.php:170 -#, php-format -#, fuzzy +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 +#, fuzzy, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" @@ -106,6 +107,7 @@ msgstr "" "Sinceramente, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s ahora está escuchando tus avisos en %2$s" @@ -128,25 +130,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "actualizaciones de %1$s en respuesta a las de %2$s / %3$s" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "estado de %1$s en %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Mensajes publicos de %s" @@ -156,34 +161,48 @@ msgstr "Mensajes publicos de %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s y amigos" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "línea temporal pública de %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "estado de %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "línea temporal de %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "¡Actualizaciones de todos en %s!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -191,7 +210,8 @@ msgstr "" "(Deberías recibir un mensaje por correo eléctronico en unos momentos, con " "instrucciones sobre cómo confirmar tu dirección de correo.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -200,7 +220,8 @@ msgstr "" "**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** es un servicio de microblogueo." @@ -212,33 +233,37 @@ msgstr ". Los colaboradores deben ser citados por su nombre completo o apodo." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 letras en minúscula o números, sin signos de puntuación o espacios" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 letras en minúscula o números, sin signos de puntuación o espacios. " "Requerido." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 o más caracteres" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 o más caracteres, ¡no te olvides!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 o más caracters. Requerido." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -249,6 +274,7 @@ msgstr "" "mensajes." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -284,7 +310,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "¡No se encontró el método de la API!" @@ -307,16 +360,23 @@ msgstr "¡No se encontró el método de la API!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Método API en construcción." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Acerca de" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Aceptar" @@ -327,6 +387,9 @@ msgstr "Aceptar" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Añadir" @@ -344,27 +407,29 @@ msgstr "Agregar o quitar OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Dirección" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Direcciones de los amigos a invitar (una por línea)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Todas las suscripciones" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Todas las actualizaciones para %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" @@ -374,32 +439,39 @@ msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Ya estás conectado." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "¡Ya está suscrito!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "¿Estás seguro de que quieres eliminar este aviso?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar la suscripción" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Iniciar sesión automáticamente en el futuro. ¡No usar en ordenadores " "compartidos! " #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -409,15 +481,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar actualizado" #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -428,6 +504,7 @@ msgstr "" "de amigos?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -436,7 +513,7 @@ msgstr "" "la de spam!) por un mensaje con las instrucciones." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Esperando confirmación de este número de teléfono." @@ -448,6 +525,8 @@ msgstr "Antes »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografía" @@ -455,16 +534,18 @@ msgstr "Biografía" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "La biografía es demasiado larga (máx. 140 caracteres)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "No se puede eliminar este aviso." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "No se puede leer el URL del avatar '%s'" @@ -472,6 +553,8 @@ msgstr "No se puede leer el URL del avatar '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "No se puede guardar la nueva contraseña." @@ -479,31 +562,34 @@ msgstr "No se puede guardar la nueva contraseña." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancelar" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Imposible crear una instancia del objeto OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "No se puede normalizar este Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "No se puede normalizar esta dirección de correo electrónico." #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Cambiar" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Cambiar el manejo del correo." @@ -513,11 +599,12 @@ msgid "Change password" msgstr "Cambiar contraseña" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Cambia tu contraseña" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Cambia tus opciones de perfil" @@ -527,6 +614,9 @@ msgstr "Cambia tus opciones de perfil" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmar" @@ -539,12 +629,14 @@ msgstr "Confirmar la dirección" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmación cancelada." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Código de confirmación" @@ -553,7 +645,8 @@ msgstr "Código de confirmación" msgid "Confirmation code not found." msgstr "Código de confirmación no encontrado." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -571,7 +664,8 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%. Desde aquí, puedes...\n" +"¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%. Desde aquí, " +"puedes...\n" "\n" "* Ir a [tu perfil](%s) y enviar tu primer mensaje.\n" "* Agregar una [cuenta Jabber/Gtalk](%%%%action.imsettings%%%%) para enviar " @@ -586,20 +680,24 @@ msgstr "" "Gracias por suscribirte y esperamos que disfrutes el uso de este servicio." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Conectarse" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Conectarse a una cuenta existente" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Ponerse en contacto" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "No se pudo crear el formulario OpenID: %s" @@ -607,43 +705,48 @@ msgstr "No se pudo crear el formulario OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "No puede seguir al usuario: %s ya esta en su lista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "No puede seguir al usuario. Usuario no encontrado" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "No se pudo redirigir al servidor: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "No se pudo guardar la información del avatar" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "No se pudo guardar la información del nuevo perfil" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 #, fuzzy msgid "Could not subscribe other to you." msgstr "No se pudo suscribir otro a tí." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "No se pudo suscribir." #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "No se pudo actualizar el usuario con la dirección de correo confirmada." +msgstr "" +"No se pudo actualizar el usuario con la dirección de correo confirmada." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 @@ -656,15 +759,17 @@ msgstr "No se pudieron convertir las clavesde petición a claves de acceso." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "No se pudo eliminar la confirmación de correo electrónico." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "No se pudo eliminar la suscripción." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "No se pudo encontrar ningún estado." @@ -677,29 +782,38 @@ msgstr "No se pudo obtener la señal de petición." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "No se pudo insertar el código de confirmación." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "No se pudo insertar una nueva suscripción." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "No se pudo guardar el perfil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "No se pudo actualizar el usuario para autosuscribirse." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "No se pudo actualizar información de usuario." @@ -715,42 +829,48 @@ msgstr "No se pudo actualizar información de usuario." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "No se pudo actualizar el usuario." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Crear" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Crear un nuevo usuario con este apodo." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Crear una nueva cuenta" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Crear nueva cuenta para un OpenID que ya tiene un usuario." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Dirección actual Jabber/Gtalk confirmada." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Actual número telefónico para SMS confirmado." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Actual dirección de correo electrónico confirmada" @@ -760,23 +880,27 @@ msgstr "Actualmente" # 'Hash' existe en español (http://es.wikipedia.org/wiki/Hash) pero lo cambio por 'clave' para ser más claros - @fauno #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Error de la BD al insertar la etiqueta clave: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Error de BD al insertar respuesta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Borrar aviso" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" @@ -784,11 +908,13 @@ msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Correo electrónico" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Correo Electrónico" @@ -798,39 +924,43 @@ msgid "Email Settings" msgstr "Opciones de Email" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "La dirección de correo electrónico ya existe." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmación de correo electrónico" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Correo electrónico, como \"NombredeUsuario@ejemplo.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Direcciones de correo electrónico" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Ingresa un apodo o correo electronico" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Ingrese el código recibido en su teléfono" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Error al autorizar clave" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Error al conectar tu usuario a OpenID" @@ -841,39 +971,46 @@ msgstr "Error al conectar usuario" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Error al insertar el avatar" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Error al insertar el nuevo perfil" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Error al insertar perfil remoto" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Error al guardar confirmación de la dirección." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Error al guardar perfil remoto" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Error al guardar el perfil." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Error al guardar el usuario." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Error al guardar el usuario; inválido." @@ -882,6 +1019,9 @@ msgstr "Error al guardar el usuario; inválido." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Error al configurar el usuario." @@ -892,6 +1032,7 @@ msgstr "Error al actualizar el perfil" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Error al actualizar el perfil remoto" @@ -901,33 +1042,36 @@ msgid "Error with confirmation code." msgstr "Error con el código de confirmación." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Apodo existente" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Preguntas Frecuentes" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Error al actualizar avatar." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed de los amigos de %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed de respuestas a %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed para tag %s" @@ -942,7 +1086,7 @@ msgstr "Encontrar el contenido de avisos" msgid "Find people on this site" msgstr "Encontrar gente en este sitio" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -955,6 +1099,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nombre completo" @@ -963,23 +1112,33 @@ msgstr "Nombre completo" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Tu nombre es demasiado largo (max. 255 carac.)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Ayuda" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Inicio" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Página de inicio" @@ -987,21 +1146,27 @@ msgstr "Página de inicio" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "La página de inicio no es un URL válido." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Deseo enviar estados por email" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Dirección de mensajería instantánea" @@ -1011,7 +1176,7 @@ msgid "IM Settings" msgstr "Configuración de mensajería instantánea" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1019,7 +1184,7 @@ msgstr "" "Si ya tienes una cuenta, ingresa con tu nombre de usuario y contraseña para " "conectarla con tu OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1027,7 +1192,7 @@ msgstr "" "Si quieres agregar una cuenta OpenID, ponla en el campo de abajo y haz clic " "en \"Añadir\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1038,25 +1203,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Correo entrante" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Dirección de correo entrante removida." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Contraseña antigua incorrecta." #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Nombre de usuario o contraseña incorrectos." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1065,30 +1236,31 @@ msgstr "" "correo registrada." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "El URL del avatar '%s' es inválido" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Dirección de correo electrónico inválida: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "La página de incicio '%s' no es válida" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "El URL de la licencia '%s' es inválido" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "El contenido del aviso es inválido" @@ -1103,13 +1275,13 @@ msgid "Invalid notice url" msgstr "El URL del aviso es inválido" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "El URL del perfil '%s' es inválido" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "El URL del perfil es inválido (formato incorrecto)" @@ -1127,28 +1299,35 @@ msgstr "Tamaño inválido." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Usuario o contraseña inválidos." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitacion(es) enviada(s)" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitacion(es) enviada(s) a las siguientes personas:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invitar" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invitar nuevos usuarios:" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1160,11 +1339,12 @@ msgstr "" "licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "El Jabber ID ya pertenece a otro usuario." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1175,12 +1355,14 @@ msgstr "" "mensajería instantánea o en GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Idioma" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Idioma es muy largo ( max 50 car.)" @@ -1189,7 +1371,15 @@ msgstr "Idioma es muy largo ( max 50 car.)" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Ubicación" @@ -1198,7 +1388,12 @@ msgstr "Ubicación" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." @@ -1207,18 +1402,22 @@ msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Inicio de sesión" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Inicio de sesión con una cuenta [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1229,22 +1428,26 @@ msgstr "" "(%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action." "openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Salir" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nombre más largo, preferiblemente tu nombre \"real\"" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "¿Contraseña olvidada o perdida?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Hace una nueva dirección de correo para postear; cancela la anterior." @@ -1255,16 +1458,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Gestiona la forma en que recibes correo desde %%site.name%%" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Miembro desde" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog por %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1277,42 +1482,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Mi texto y archivos están disponibles bajo" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nuevo" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nueva dirección de correo para postear a %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nueva dirección de correo entrante agregada." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nuevo apodo" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nuevo aviso" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nueva contraseña" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nueva contraseña guardada correctamente. Has iniciado una sesión." @@ -1322,7 +1535,13 @@ msgstr "Nueva contraseña guardada correctamente. Has iniciado una sesión." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Apodo" @@ -1331,7 +1550,12 @@ msgstr "Apodo" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "El apodo ya existe. Prueba otro." @@ -1340,49 +1564,60 @@ msgstr "El apodo ya existe. Prueba otro." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "El apodo debe tener solamente letras minúsculas y números y no puede tener " "espacios. " #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Apodo prohibido." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Apodo del usuario que quieres seguir" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Apodo o correo electrónico" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "No" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Ningún Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "¡Ninguna petición de autorización!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "No se seleccionó un operador móvil." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "No ingresó código" @@ -1394,11 +1629,15 @@ msgstr "Ningún código de confirmación." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "¡Ningún contenido!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Sin dirección de correo electrónico" @@ -1407,7 +1646,9 @@ msgid "No id." msgstr "Ningún identificador." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "No hay dirección de correo entrante." @@ -1418,6 +1659,7 @@ msgstr "Ningún apodo devuelto por el servidor remoto." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Ningún apodo." @@ -1425,12 +1667,14 @@ msgstr "Ningún apodo." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Ninguna confirmación pendiente para cancelar." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Sin número telefónico" @@ -1440,7 +1684,8 @@ msgid "No profile URL returned by server." msgstr "Ningun URL de perfil devuelto por el servidor." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Ninguna dirección de correo electrónico registrada por este usuario." @@ -1452,7 +1697,7 @@ msgstr "¡Ninguna petición encontrada!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Ningún resultado" @@ -1463,12 +1708,16 @@ msgstr "Ningún tamaño." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "No se encontró estado para ese ID" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "No hay estado para ese ID" @@ -1478,13 +1727,15 @@ msgid "No such OpenID." msgstr "No existe esa cuenta OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "No existe ese documento." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "No existe ese aviso." @@ -1522,12 +1773,22 @@ msgstr "No existe esa suscripción" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "No existe ese usuario." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "No hay ningún usuario con esa dirección de correo o nombre de usuario." @@ -1541,32 +1802,38 @@ msgid "Not a recovery code." msgstr "No es un código de recuperación." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "No es un usuario registrado" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "No es un formato de dato soportado" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Jabber ID no válido" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "La cuenta OpenID no es válida." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "No es una dirección de correo electrónico válida" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Correo electrónico no válido" @@ -1574,6 +1841,11 @@ msgstr "Correo electrónico no válido" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Apodo no válido" @@ -1593,7 +1865,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "URL de perfil no válido (ningún documento YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "No es una imagen o es un fichero corrupto." @@ -1604,11 +1877,13 @@ msgstr "No autorizado." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "¡Respuesta inesperada!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "No encontrado" @@ -1624,11 +1899,15 @@ msgstr "No encontrado" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "No conectado." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "¡No estás suscrito!" @@ -1645,39 +1924,44 @@ msgid "Notice feed for %s" msgstr "Feed de avisos de %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Aviso sin perfil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Avisos" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Avisos marcados con %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Antigua contraseña" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "Cuenta OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configuración de la Cuenta OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Auto-envío de OpenID" @@ -1685,29 +1969,34 @@ msgstr "Auto-envío de OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Ingreso desde una cuenta OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL de la cuenta OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Autenticación OpenID cancelada." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Autenticación OpenID fallida: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Error OpenID: %s" @@ -1723,11 +2012,12 @@ msgid "OpenID settings" msgstr "Configuración OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Opcionalmente añada un mensaje personalizado a su invitación." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Carga parcial." @@ -1737,34 +2027,46 @@ msgstr "Carga parcial." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Contraseña" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "La contraseña y la confirmación no coinciden." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "La contraseña debe tener 6 o más caracteres." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Recuperación de contraseña solicitada" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Se guardó Contraseña." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Las contraseñas no coinciden" @@ -1784,14 +2086,17 @@ msgid "People search" msgstr "Buscador de gente" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personal" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Mensaje Personal" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número telefónico, sin puntuación ni espacios, incluya código de área" @@ -1806,7 +2111,7 @@ msgstr "" "\"Cancelar\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Enviar un aviso cuando el estado de mi Jabber/GTalk cambie." @@ -1815,7 +2120,9 @@ msgstr "Enviar un aviso cuando el estado de mi Jabber/GTalk cambie." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferencias" @@ -1824,42 +2131,52 @@ msgstr "Preferencias" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Preferencias guardadas." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Lenguaje de preferencia" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacidad" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Hubo un problema al guardar el aviso." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Perfil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL del perfil" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Configuración del perfil" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Perfil desconocido" @@ -1868,17 +2185,19 @@ msgid "Public Stream Feed" msgstr "Feed del flujo público" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Línea temporal pública" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar un MicroID para mi cuenta Jabber/GTalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publicar un MicroID para mi dirección de correo." @@ -1888,12 +2207,14 @@ msgid "Recent Tags" msgstr "Tags recientes" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recuperar" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recuperar contraseña" @@ -1906,37 +2227,45 @@ msgstr "Código de recuperación para usuario desconocido." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrarse" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registro de usuario no permitido." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registro exitoso." #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Rechazar" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Recordarme" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Perfil remoto sin perfil coincidente" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Subscripción remota" @@ -1950,6 +2279,9 @@ msgstr "Subscripción remota" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Eliminar" @@ -1958,7 +2290,7 @@ msgstr "Eliminar" msgid "Remove OpenID" msgstr "Eliminar OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1967,34 +2299,41 @@ msgstr "" "eliminarlo, agrega otro antes." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Respuestas" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Respuestas a %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Restablecer" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Restablecer contraseña" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Número telefónico para sms" @@ -2003,17 +2342,18 @@ msgstr "Número telefónico para sms" msgid "SMS Settings" msgstr "Preferencias SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS confirmación" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Igual a la contraseña de arriba" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Igual a la contraseña de arriba. Requerida" @@ -2026,12 +2366,21 @@ msgstr "Igual a la contraseña de arriba. Requerida" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Guardar" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Buscar" @@ -2041,7 +2390,7 @@ msgid "Search Stream Feed" msgstr "Feed del flujo de búsqueda" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2050,7 +2399,7 @@ msgstr "" "Buscar avisos en %%site.name%% por contenido. Separa los términos de " "búsqueda con espacios; deben tener una longitud mínima de 3 caracteres." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2060,33 +2409,38 @@ msgstr "" "los términos con espacios; deben tener una longitud mínima de 3 caracteres." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Seleccione un operador móvil" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Enviar" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Envie emails a esta dirección para ingresar nuevos avisos" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Enviarme avisos de suscripciones nuevas por correo." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Enviarme avisos por Jabber/GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2095,16 +2449,19 @@ msgstr "" "mi operador móvil" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envirame respuestas por medio de Jabber/GTalk de gente a la cual no sigo." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Configuración" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Se guardó configuración." @@ -2124,27 +2481,32 @@ msgid "Something weird happened." msgstr "Algo raro pasó." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Lo sentimos, pero no se permite correos entrantes" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Lo sentimos, pero este no es su dirección de correo entrante." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Fuente" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Estadísticas" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "No se ha encontrado el OpenID almacenado." @@ -2152,24 +2514,28 @@ msgstr "No se ha encontrado el OpenID almacenado." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Suscribirse" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Suscriptores" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Suscripción autorizada" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Suscripción rechazada" @@ -2177,28 +2543,35 @@ msgstr "Suscripción rechazada" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Suscripciones" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Error del sistema al cargar el archivo." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Texto" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Búsqueda de texto" @@ -2218,6 +2591,7 @@ msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación no es para ti!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Esa dirección de correo pertenece a otro usuario." @@ -2227,63 +2601,73 @@ msgid "That file is too big." msgstr "Ese archivo es demasiado grande." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Ese ya es tu Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Esa ya es tu dirección de correo electrónico" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Ese ya es tu número telefónico" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Ese no es tu Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Esa no es tu dirección de correo electrónico" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Ese no es tu número telefónico" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Esa dirección de mensajería instantánea es incorrecta." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Ese no es el número de confirmación" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Ese número telefónico ya pertenece a otro usuario" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Demasiado largo. La longitud máxima es de 140 caracteres. " #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Es demasiado largo. La longitud máxima es de 255 caracteres. " #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "La dirección \"%s\" fue confirmada para tu cuenta." @@ -2292,11 +2676,14 @@ msgstr "La dirección \"%s\" fue confirmada para tu cuenta." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "La dirección fue eliminada." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2306,7 +2693,8 @@ msgstr "" "Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu " "identificador de suscripción es:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2317,35 +2705,40 @@ msgstr "" "completamente." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Estas son las personas que escuchan los avisos de %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Estas son las personas que escuchan tus avisos." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Estas son las personas que %s escucha sus avisos." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Estas son las personas que escuchas sus avisos." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Estas personas ya son usuarios y fuiste suscripto automáticamente a ellos:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "" "Este código de confirmación es demasiado viejo. Por favor empieza de nuevo." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2354,7 +2747,7 @@ msgstr "" "clic en el botón de envío para ir a tu proveedor de OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2369,6 +2762,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Este método requiere un PUBLICAR O ELIMINAR" @@ -2377,25 +2773,37 @@ msgstr "Este método requiere un PUBLICAR O ELIMINAR" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Este método requiere PUBLICAR" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Esta página no está disponible en el tipo de medio que aceptas." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Zona horaria" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Zona horaria no seleccionada" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2408,18 +2816,21 @@ msgstr "" "tu perfil debajo." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Deben proveerse dos identificaciones de usuario o nombres en pantalla." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "El URL de tu página de inicio, blog o perfil en otro sitio" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" @@ -2431,15 +2842,22 @@ msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Restablecimiento de contraseña inesperado." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Acción desconocida" @@ -2470,38 +2888,47 @@ msgstr "Cancelar suscripción" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Versión OMB no soportada" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Formato de imagen no soportado." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Actualizaciones por sms" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Actualizaciones por mensajería instantánea" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "¡Actualizaciones de %1$s y amigos en %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Cargar" @@ -2522,14 +2949,16 @@ msgid "Upload a new profile image" msgstr "Cargar una nueva imagen de perfil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" -"Usa este formulario para invitar a tus amigos y colegas a usar este " -"servicio." +"Usa este formulario para invitar a tus amigos y colegas a usar este servicio." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Se usa sólo para actualizaciones, anuncios y recuperación de contraseñas" @@ -2554,11 +2983,16 @@ msgstr "El usuario al que quieres seguir no existe." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "El usuario no tiene un perfil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Apodo del usuario" @@ -2567,29 +3001,33 @@ msgid "User not found." msgstr "Usuario no encontrado" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "En que zona horaria se encuentra normalmente?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "¿Qué tal, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Tipo de imagen incorrecto para '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Tamaño de imagen incorrecto para '%s'" @@ -2597,7 +3035,9 @@ msgstr "Tamaño de imagen incorrecto para '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Sí" @@ -2620,11 +3060,12 @@ msgid "You are already logged in!" msgstr "¡Ya te has conectado!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Ya estás suscrito a estos usuarios:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "No eres amigo del usuario especificado." @@ -2640,9 +3081,10 @@ msgstr "Puedes crear una nueva cuenta y empezar a enviar avisos." #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Puedes recibir mensajes SMS por correo electrónico desde %%site.name%%." +msgstr "" +"Puedes recibir mensajes SMS por correo electrónico desde %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2651,6 +3093,7 @@ msgstr "" "\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2659,7 +3102,8 @@ msgstr "" "Puedes enviar y recibir avisos vía [mensajes instantáneos](%%doc.im%%) de " "Jabber/GTalk. Configura tu dirección y opciones abajo." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2670,21 +3114,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "¡Puedes usar la suscripción local!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "No puedes registrarte si no estás de acuerdo con la licencia." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "No nos enviaste ese perfil" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2706,16 +3152,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "No puedes borrar el estado de otro usuario." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Debes estar conectado para invitar otros usuarios a usar %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2723,22 +3172,23 @@ msgstr "" "Recibirás un mensaje cuando tus invitados acepten tu invitacion y se " "registren en el sitio. ¡Gracias por extender la comunidad! " -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Te has identificado. Escribe una nueva contraseña a continuación." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "El URL de tu OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "Tu nombre de usuario en este servidor, o la dirección de correo electrónico " "registrada." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2747,47 +3197,57 @@ msgstr "" "[OpenID](%%doc.openid%%) te permite ingresar a muchos sitios con la misma " "cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "hace unos segundos" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "hace %d días" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "hace %d horas" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "hace %d minutos" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "hace %d meses" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "hace un día" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "hace un minuto" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "hace un mes" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "hace un año" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "hace una hora" @@ -2809,12 +3269,14 @@ msgid "reply" msgstr "responder" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "repita la contraseña anterior" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tipo de archivo soportado" @@ -2836,6 +3298,26 @@ msgstr "« Después" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" "Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." @@ -2845,6 +3327,7 @@ msgid "This notice is not a favorite!" msgstr "¡Este aviso no es un favorito!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "No se pudo borrar favorito." @@ -2852,24 +3335,30 @@ msgstr "No se pudo borrar favorito." msgid "Favor" msgstr "Aceptar" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Enviarme un correo electrónico cuando alguien agrega mi aviso a favoritos." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" "Enviarme un correo electrónico cuando alguien me envía un mensaje privado." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "¡Este aviso ya está en favoritos!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "No se pudo crear favorito." @@ -2879,11 +3368,13 @@ msgstr "Sacar" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s avisos favoritos" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed de avisos favoritos de %s" @@ -2926,33 +3417,44 @@ msgid "Login with your username and password. " msgstr "Entrar con nombre y contraseña de usuario." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Demasiado largo. Máximo 140 caracteres. " #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "No se especificó receptor." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "No puedes enviar mensaje a este usuario." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No te auto envíes un mensaje; dícetelo a ti mismo." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "No existe el usuario." #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nuevo Mensaje " @@ -2990,8 +3492,7 @@ msgstr "Bandeja de salida para %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"Ésta es tu bandeja de salida, incluye la lista de mensajes privados " -"enviados." +"Ésta es tu bandeja de salida, incluye la lista de mensajes privados enviados." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format @@ -3008,6 +3509,11 @@ msgstr "Puedes actualizar aquí tu información de perfil personal" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Usuario sin perfil equivalente" @@ -3036,6 +3542,8 @@ msgid "New password successfully saved. " msgstr "Se guardo exitosamente la nueva contraseña." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Cotrnaseña debe tener 6 o más caracteres." @@ -3058,12 +3566,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Para suscribirse, puedes [login](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed para favoritos de %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "No se pudo recibir avisos favoritos." @@ -3071,7 +3582,7 @@ msgstr "No se pudo recibir avisos favoritos." msgid "No such message." msgstr "No existe el mensaje." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Sólo el remitente y el receptor pueden leer este mensaje." @@ -3095,51 +3606,70 @@ msgid "Mobile carrier for your phone. " msgstr "Operador móvil para tu teléfono." #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Mensajes directos a %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Todos los mensajes directos enviados a %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Mensajes directos que has enviado" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Todos los mensajes directos enviados desde %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "¡Sin texto de mensaje!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "No se encuentra usuario receptor." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "No se puede enviar mensajes directos a usuarios que no son tu amigo." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoritos desde %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s actualizaciones favoritas por %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s agregó tu aviso a favoritos" @@ -3161,14 +3691,17 @@ msgstr "" "Agregar tu cuenta Twitter para enviar automáticamente tus avisos a Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Configuración de Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Cuenta Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Cuenta Twitter actual verificada." @@ -3177,6 +3710,7 @@ msgid "Twitter Username" msgstr "Nombre de usuario Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Sin espacios, por favor." @@ -3185,18 +3719,22 @@ msgid "Twitter Password" msgstr "Contraseña Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Enviar automáticamente mis avisos a Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Enviar respuestas \"@\" locales a Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Suscribir a mis amigos Twitter aquí." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3205,6 +3743,7 @@ msgstr "" "y subrayadas (_). Máx. 15 caracteres." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "¡No se pudo verificar tus credenciales Twitter!" @@ -3215,33 +3754,43 @@ msgstr "No se pudo obtener tu información de cuenta para \"%s% desde Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "¡No se pudo guardar tu configuración de Twitter!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Se guardó configuración de Twitter." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "No es tu cuenta Twitter." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "No se pudo eliminar usuario Twitter." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Se eliminó cuenta Twitter." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "No se pudo guardar preferencias de Twitter." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Se guardó preferencias de Twitter." @@ -3258,18 +3807,19 @@ msgid "The subscription has been rejected, but no " msgstr "Se rechazó la suscripción, pero no" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Resultados de comando" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Comando completo" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Comando falló" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Disculpa, todavía no se implementa este comando." @@ -3279,89 +3829,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Suscripciones: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Usuario no tiene último aviso" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Aviso marcado como favorito." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nombre completo: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Lugar: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Página de inicio: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Sobre: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Se envió mensaje directo a %s" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Error al enviar mensaje directo." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Especificar el nombre del usuario a suscribir" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Suscrito a %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Especificar el nombre del usuario para desuscribirse de" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Desuscrito de %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Todavía no se implementa comando." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notificación no activa." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "No se puede desactivar notificación." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notificación activada." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "No se puede activar notificación." @@ -3369,11 +3941,11 @@ msgstr "No se puede activar notificación." msgid "Commands:\n" msgstr "Comandos:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "No se pudo insertar mensaje." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "No se pudo actualizar mensaje con nuevo URI." @@ -3390,7 +3962,7 @@ msgstr "" "Tienes nueva dirección para publicar en %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Nuevo mensaje privado de %s" @@ -3404,7 +3976,7 @@ msgstr "" "%1$s (%2$s) te envió un mensaje privado:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Sólo el usuario puede leer sus bandejas de correo." @@ -3413,31 +3985,39 @@ msgid "This form should automatically submit itself. " msgstr "Este formulario debería enviarse automáticamente." #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favoritos" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Avisos favoritos de %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Bandeja de Entrada" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Mensajes entrantes" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Bandeja de Salida" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Mensajes enviados" @@ -3450,14 +4030,19 @@ msgid "Twitter integration options" msgstr "Opciones de integración de Twitter" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Para" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "No se pudo analizar sintácticamente mensaje." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s y amigos, página %d" @@ -3467,22 +4052,32 @@ msgid "You can upload your personal avatar." msgstr "Puedes cargar tu avatar personal." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Configuración de Avatar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Vista previa" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Cortar" @@ -3499,36 +4094,45 @@ msgid "There was a problem with your session token. " msgstr "Hubo problemas con tu clave de sessión." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Elige un área cuadrada de la imagen para que sea tu avatar" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Se perdió nuestros datos de archivo." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Se perdió nuestro archivo" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 #, fuzzy msgid "Unknown file type" msgstr "tipo de archivo desconocido" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "No se especificó perfil." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "No existe perfil con ese ID" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Bloquear usuario." @@ -3537,12 +4141,12 @@ msgstr "Bloquear usuario." msgid "Are you sure you want to block this user? " msgstr "¿Seguro de que quieres bloquear este usuario?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Ya bloqueaste este usuario." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "No se guardó información de bloqueo." @@ -3560,40 +4164,58 @@ msgstr "¿Estás seguro de que quieres eliminar permanentemente este aviso?" msgid "Add to favorites" msgstr "Agregar a favoritos" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Editar grupo %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "Se debe habilitar las bandejas de entrada para grupos" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Debes estar conectado para crear un grupo" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Ningún apodo." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "No existe ese grupo" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Debes ser un admin para editar el grupo" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Usa este formulario para editar el grupo." @@ -3603,16 +4225,17 @@ msgid "Nickname must have only lowercase letters " msgstr "El apodo sólo debe tener letras en minúscula" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Descripción es demasiado larga (máx. 140 caracteres)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "No se pudo actualizar el grupo." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Se guardó configuración de Opciones." @@ -3630,7 +4253,8 @@ msgstr "Crear una nueva dirección de correo electrónico para publicar;" msgid "Send me email when someone " msgstr "Enviarme un correo cuando alguien" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir que amigos me contacten y envién un correo." @@ -3646,7 +4270,7 @@ msgstr "" "Un código de confirmación fue enviado a la dirección de correo electrónico " "que agreaste. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "¡Error de servidor - no se pudo acceder a usuario!" @@ -3660,55 +4284,70 @@ msgstr "Si quieres que la aplicación %s se actualice automáticamente" msgid "Allow %s to update my Facebook status" msgstr "Permitir que %s actualice mi estado de Facebook" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Saltar" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "¡Aviso sin contenido!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginación" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Después" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Antes" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Gracias por invitar a tus amigos a usar %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" msgstr "Se enviarón invitaciones a los siguientes usuarios: " -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Te invitaron a %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Invita a tus amigos a usar %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Amigos que ya usan %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Enviar invitaciones" @@ -3754,12 +4393,14 @@ msgstr "Si quieres que %s se actualice automáticamente" msgid "Sync preferences" msgstr "Preferencias de sincronización" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Sacar favorito" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Avisos populares" @@ -3775,7 +4416,8 @@ msgid "The most popular notices on the site right now." msgstr "Ahora se muestran los avisos más populares en el sitio." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Usuarios que figuran" @@ -3789,15 +4431,17 @@ msgstr "Usuarios que figuran, página %d" msgid "A selection of some of the great users on %s" msgstr "Una selección de algunos de los grandes usuarios en %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Ese usuario te ha bloqueado la suscripción." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Sin ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo de grupo" @@ -3805,12 +4449,14 @@ msgstr "Logo de grupo" msgid "You can upload a logo image for your group." msgstr "Puedes cargar una imagen de logo para tu grupo." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "SE actualizó logo." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Error al actualizar logo." @@ -3830,7 +4476,8 @@ msgid "A list of the users in this group." msgstr "Lista de los usuarios en este grupo." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupos" @@ -3845,6 +4492,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "Los grupos %%%%site.name%%%% dejan que los encuentres y les hables " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Crear un grupo nuevo" @@ -3855,7 +4503,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Buscar grupos en %%site.name%% por nombre, lugar o descripción." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Buscador de grupos" @@ -3879,21 +4527,21 @@ msgstr "Enviarme avisos a través de Jabber/GTalk" msgid "A confirmation code was sent " msgstr "Se envió un código de confirmación." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Debes estar conectado para unirte a un grupo." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Ya eres miembro de ese grupo" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "No se puede unir usuario %s a grupo %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s se unió a grupo %s" @@ -3902,16 +4550,19 @@ msgstr "%s se unió a grupo %s" msgid "Inboxes must be enabled for groups to work." msgstr "Se debe habilitar bandejas de entrada para que funcionen grupos." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Debes estar conectado para dejar un grupo." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "No existe ese grupo." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "No eres miembro de ese grupo" @@ -3920,22 +4571,26 @@ msgstr "No eres miembro de ese grupo" msgid "You may not leave a group while you are its administrator." msgstr "No puedes dejar un grupo mientras seas su administrador." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "No se pudo encontrar registro de miembro" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "No se pudo eliminar a usuario %s de grupo %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s dejó grupo %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Ingresar a sitio" @@ -3947,16 +4602,18 @@ msgstr "No existe estado actual" msgid "New group" msgstr "Grupo nuevo " -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Usa este formulario para crear un grupo nuevo." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "No se pudo crear grupo." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "No se pudo configurar miembros de grupo." @@ -3970,12 +4627,15 @@ msgstr "Ese demasiado largo." msgid "Don't send a message to yourself; " msgstr "No te auto envíes un mensaje;" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Aviso publicado" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Error de Ajax" @@ -3996,7 +4656,7 @@ msgstr "Se envió zumbido" msgid "Nudge sent!" msgstr "¡Zumbido enviado!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Ingreso de OpenID" @@ -4024,11 +4684,13 @@ msgstr "Acorte automático de URL" msgid "Service" msgstr "Servicio" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Servicio de acorte automático a usar." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Servicio de acorte de URL demasiado largo (máx. 50 caracteres)." @@ -4038,17 +4700,18 @@ msgstr "Servicio de acorte de URL demasiado largo (máx. 50 caracteres)." msgid "Change your password." msgstr "Cambia tu contraseña." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Cambio de contraseña " -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "No es un tag de personas válido: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Usuarios auto marcados con %s - página %d" @@ -4058,12 +4721,13 @@ msgstr "Usuarios auto marcados con %s - página %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Estos usuarios se han marcado \"%s\"" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Información de perfil " -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "Tags para ti (letras, números, -, ., y _), coma - o espacio - separado" @@ -4074,21 +4738,26 @@ msgid "Automatically subscribe to whoever " msgstr "Suscribirse automáticamente a quien quiera " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Tag no válido: '%s' " -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "No se pudo guardar tags." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Línea de tiempo pública, página %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "No se pudo acceder a corriente pública." @@ -4098,8 +4767,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Es un %%site.name%%, un servicio [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " +"Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) " #: actions/publictagcloud.php:57 #, fuzzy @@ -4111,11 +4780,13 @@ msgstr "Nube de tags pública" msgid "These are most popular recent tags on %s " msgstr "Éstos son los tags recientes más populares en %s" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Nube de tags" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Disculpa, sólo personas invitadas pueden registrarse." @@ -4171,7 +4842,8 @@ msgstr "(Debieras recibir un mensaje por correo" msgid "That's a local profile! Login to subscribe." msgstr "¡Es un perfil local! Ingresa para suscribirte" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Respuestas a %s, página %d" @@ -4181,53 +4853,74 @@ msgstr "Respuestas a %s, página %d" msgid "%s favorite notices, page %d" msgstr "%s avisos favoritos, página %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Grupo %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Grupo %s, página %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Perfil de grupo" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Nota" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Acciones del grupo" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Feed de avisos de grupo %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Miembros" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Ninguno)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Todos los miembros" @@ -4244,7 +4937,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Sólo el remitente y el receptor" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, página %d" @@ -4255,33 +4948,40 @@ msgid "'s profile" msgstr "Perfil de" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Perfil de usuario" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Foto" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "Acciones de usuario" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Enviar un mensaje directo a este usuario" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Mensaje" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Todos los suscriptores" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Todos los grupos" @@ -4291,8 +4991,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " +"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/smssettings.php:128 #, fuzzy @@ -4307,9 +5007,10 @@ msgstr "Enviarme avisos por SMS;" #: actions/smssettings.php:335 #, fuzzy msgid "A confirmation code was sent to the phone number you added. " -msgstr "Se envió un código de confirmación al número de teléfono que agregaste." +msgstr "" +"Se envió un código de confirmación al número de teléfono que agregaste." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Operador móvil" @@ -4374,17 +5075,18 @@ msgstr "Estas son las personas cuyos avisos" msgid "These are the people whose " msgstr "Estas son las personas cuyos" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Jabber " -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Avisos marcados con %s, página %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Mensajes marcados \"%s\", el más reciente primero" @@ -4407,7 +5109,7 @@ msgstr "%s tag" msgid "Tag user" msgstr "Usuario de tag" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4418,19 +5120,19 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Sólo puedes marcar a las personas a quienes estás suscrito o que están " "suscritas a ti." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "No se pudo guardar tags." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Usar este formulario para agregar tags a tus suscriptores o suscripciones." @@ -4439,20 +5141,23 @@ msgstr "" msgid "No such tag." msgstr "No existe ese tag." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Microblog marcado con %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Falló bloquear usuario." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Falló desbloquear usuario." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "No se encontró." @@ -4461,15 +5166,16 @@ msgstr "No se encontró." msgid "Add your Twitter account to automatically send " msgstr "Agregar tu cuenta Twitter a enviar automáticamente" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Nombre de usuario de Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Contraseña de Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Amigos en Twitter" @@ -4482,159 +5188,168 @@ msgstr "Nombre de usuario sólo debe tener números, " msgid "Unable to retrieve account information " msgstr "No se pudo acceder a información de cuenta" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Error al sacar bloqueo." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Ningún perfil de Id en solicitud." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Ningún perfil con ese ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Desuscrito" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Grupos %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Grupos %s, página %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Hubo problemas al guardar el aviso. Usuario desconocido." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " "minutos." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Tienes prohibido publicar avisos en este sitio." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Cargar un avatar." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Otro" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Otras opciones" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Página sin título" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Navegación de sitio primario" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Perfil personal y línea de tiempo de amigos" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Buscar personas o texto" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Cuenta" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Cambia tu correo electrónico, avatar, contraseña, perfil" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Conectarse a IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Salir de sitio" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Ingresar a sitio" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Crear una cuenta" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Ingresar con OpenID." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "¡Ayúdame!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Aviso de sitio" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Vistas locales" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Aviso de página" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Navegación de sitio secundario" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Licencia de software de StatusNet" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Todo" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "Licencia." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Bloquear este usuario." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquear" @@ -4647,12 +5362,15 @@ msgstr "Sacar este aviso" msgid "To use the %s Facebook Application you need to login " msgstr "Para usar la Aplicación de Facebook %s debes ingresar" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "una cuenta nueva. " #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Publicado" @@ -4674,34 +5392,39 @@ msgstr "Filtrar tags" msgid "All" msgstr "Todo" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Tag" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Elegir tag para reducir lista" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Ir" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "El URL de página de inicio o blog del grupo or tema" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Descripción" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Describir al grupo o tema en 140 caracteres" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4712,21 +5435,21 @@ msgstr "" msgid "Group" msgstr "Grupo" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Admin" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Editar propiedades del grupo %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Agregar o editar el logo de %s" @@ -4759,12 +5482,12 @@ msgstr "Unirse" msgid "Leave" msgstr "Dejar" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Ingresar con un nombre de usuario y contraseña." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Registrar una cuenta nueva " @@ -4787,17 +5510,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s ahora está escuchando " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Lugar: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Página de inicio: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4806,7 +5529,7 @@ msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s te mandó un zumbido " @@ -4821,43 +5544,51 @@ msgstr "%1$s (%2$s) quiere saber qué estás haciendo" msgid "%1$s just added your notice from %2$s" msgstr "%1$s recién agregó tu aviso de %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr "Desde" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar un aviso directo" # ¿zumbido? creo que así lo traduce msn -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Enviar un aviso" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "Caracteres disponibles" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "en respuesta a..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Responder este aviso." -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Borrar este aviso" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Borrar" @@ -4881,27 +5612,29 @@ msgstr "Enviar zumbido a este usuario" msgid "Tags in %s's notices" msgstr "Tags en avisos de %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(ninguno)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Público" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Grupos de usuario" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Tags recientes" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Destacado" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" @@ -4918,31 +5651,33 @@ msgstr "Encontrar grupos en este sitio" msgid "Untitled section" msgstr "Sección sin título" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Personas a las que %s está suscrito" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Personas suscritas a %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s es miembro de los grupos" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Invita a amigos y colegas a unirse a %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "El usuario te ha bloqueado." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Suscribirse a este usuario" @@ -4956,11 +5691,12 @@ msgid "Top posters" msgstr "Principales posteadores" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Desbloquear este usuario" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Desbloquear" @@ -4968,6 +5704,2068 @@ msgstr "Desbloquear" msgid "Unsubscribe from this user" msgstr "Desuscribirse de este usuario" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed de los amigos de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed de los amigos de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed de los amigos de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s y amigos" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Puedes cargar tu avatar personal." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualizado" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Estás a punto de eliminar permanentemente un aviso. Si lo hace, no se podrá " +"deshacer" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" +"Enviarme un correo electrónico cuando alguien me envía un mensaje privado." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Puedes cargar una imagen de logo para tu grupo." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Elige un área cuadrada de la imagen para que sea tu avatar" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog por %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa " +"los términos con espacios; deben tener una longitud mínima de 3 caracteres." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Error al enviar mensaje directo." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Busca \"%s\" en la Corriente" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Por razones de seguridad, por favor vuelve a escribir tu nombre de usuario y " +"contraseña antes de cambiar tu configuración." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed del flujo público" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed del flujo público" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed del flujo público" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"excepto los siguientes datos privados: contraseña, dirección de correo " +"electrónico, dirección de mensajería instantánea, número de teléfono." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Crear" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Perfil de grupo" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Perfil de" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed de avisos de %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed de avisos de %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed de avisos de %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Bandeja de salida para %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Configuración del perfil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Un código de confirmación fue enviado al número de teléfono que agregaste. " +"Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las " +"instrucciones sobre cómo usarlo." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "No existe el usuario." + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Agregar tu cuenta Twitter para enviar automáticamente tus avisos a Twitter, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "No se pudo obtener tu información de cuenta para \"%s% desde Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Por favor revisa estos detalles para asegurar que deseas suscribirte a los " +"avisos de este usuario. Si no pediste esta suscripción, haz clic en " +"\"Cancelar\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Buscar personas o texto" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " +"minutos." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Conectarse a IM, SMS, Twitter" + +# ¿zumbido? creo que así lo traduce msn +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Zumbido " + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Para usar la Aplicación de Facebook %s debes ingresar" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"\t%1$s ahora está escuchando tus avisos en %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentamente,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Buscar" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "No existe ese documento." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Lista de los usuarios en este grupo." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Lista de los usuarios en este grupo." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Perfil de usuario" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s y amigos, página %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Lista de los usuarios en este grupo." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Falló desbloquear usuario." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmación" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "No se puede eliminar este aviso." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Tag no válido: '%s' " + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "El apodo ya existe. Prueba otro." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "No se pudo crear favorito." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nuevo aviso" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nuevo aviso" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Apodo no válido" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "No se especificó perfil." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "El usuario te ha bloqueado." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "No eres miembro de ese grupo" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquear usuario." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Debes estar conectado para crear un grupo" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Grupos" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "No se pudo actualizar el usuario." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "¡No se pudo guardar tu configuración de Twitter!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferencias de sincronización guardadas." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Debes ser un admin para editar el grupo" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Ningún resultado" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "El usuario te ha bloqueado." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Mensaje" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "No se pudo guardar el perfil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) te permite ingresar a muchos sitios con la misma " +"cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configuración del perfil" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si has olvidado o perdido tu contraseña, puedes obtener una nueva enviada a " +"la dirección de correo electrónico que almacenaste en tu cuenta." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Te has identificado. Escribe una nueva contraseña a continuación." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Recuperación de contraseña solicitada" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Error con el código de confirmación." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Suscribirse a este usuario" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s avisos favoritos, página %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed de avisos de grupo %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed de avisos de grupo %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed de avisos de grupo %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-" +"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "No es usuario local." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Avisos marcados con %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed de avisos de grupo %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s ahora está escuchando " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed de avisos de %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed de avisos de %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "¡Este aviso ya está en favoritos!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "¡Este aviso no es un favorito!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "No se pudo acceder a corriente pública." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "No se especificó receptor." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "No se pudo encontrar ningún estado." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Actualizaciones en respuesta a %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "Licencia." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Suscripciones %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Configuración del perfil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "No eres miembro de ese grupo" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Hubo un problema al guardar el aviso." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Mensaje a %1$s en %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Perfil de usuario" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Perfil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Cargar" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Cambia tu contraseña" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Conectarse" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Buscar" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Inicio de sesión" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquear" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Bloquear usuario." + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Agregar o editar el logo de %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "¡Ningún contenido!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Usuario" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Buscar" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "La página de inicio no es un URL válido." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "No existe ese tag." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Mensajes directos a %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Demasiado largo. Máximo 140 caracteres. " + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "No puede seguir al usuario. Usuario no encontrado" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Descripción es demasiado larga (máx. 140 caracteres)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Ya eres miembro de ese grupo" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "No se puede unir usuario %s a grupo %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "No eres miembro de ese grupo" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "No se pudo eliminar a usuario %s de grupo %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Grupos %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s es miembro de los grupos" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Acciones del grupo" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Demasiado largo. La longitud máxima es de 140 caracteres. " + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato de imagen no soportado." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Foto" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Descripción es demasiado larga (máx. 140 caracteres)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "El usuario al que quieres seguir no existe." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "No autorizado." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "No se pudieron convertir las clavesde petición a claves de acceso." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versión desconocida del protocolo OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "No existe ese aviso." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Se perdió nuestro archivo" + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Esta página no está disponible en un " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Inicia una sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea]" +"(%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action." +"openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Descríbete y cuenta de tus " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "La biografía es demasiado larga (máx. 140 caracteres)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "URL de perfil no válido (ningún documento YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "¡Es un perfil local! Ingresa para suscribirte" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "No se pudo obtener la señal de petición." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed de avisos de grupo %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Mensaje a %1$s en %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed para favoritos de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed para favoritos de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed para favoritos de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Grupo %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Aviso publicado" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Esta página no está disponible en un " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed de avisos de %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Por favor revisa estos detalles para asegurar que deseas suscribirte a los " +"avisos de este usuario. Si no pediste esta suscripción, haz clic en " +"\"Cancelar\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Se ha autorizado la suscripción, pero no se ha enviado un URL de retorno. " +"Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu " +"identificador de suscripción es:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Se ha rechazado la suscripción, pero no se ha enviado un URL de retorno. Lee " +"de nuevo las instrucciones para saber cómo rechazar la suscripción " +"completamente." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "No se puede leer el URL del avatar '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo de imagen incorrecto para '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "No se pudo redirigir al servidor: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licencia de software de StatusNet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "" +"No se pudo actualizar el usuario con la dirección de correo confirmada." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Se envió zumbido" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Responder este aviso." + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Hubo un problema al guardar el aviso." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Ningún código de confirmación." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Ingresar a sitio" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Seleccione un operador móvil" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Describir al grupo o tema en 140 caracteres" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Describir al grupo o tema en 140 caracteres" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed de avisos de %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s agregó tu aviso a favoritos" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "desde" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "No se pudo borrar favorito." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Borrar aviso" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Crear una nueva cuenta" diff --git a/locale/fi/LC_MESSAGES/statusnet.mo b/locale/fi/LC_MESSAGES/statusnet.mo index 7e64ddb00d44ed4e59db664dc03fd8901bd86882..3aca83c61d5e39365ee67889ada2d21f08deaa3a 100644 GIT binary patch delta 29179 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 delta 20826 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 E5BEz>s{jB1 diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 5a53dd2df5..992e943b9a 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-02-28 01:41+0000\n" "Last-Translator: Antti Salminen \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Hakusyöte haulle \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -38,17 +38,19 @@ msgstr " lähteestä " # Onko päivitys hyvä sana? #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Vastaukset päivitykseen %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s on kutsunut sinut liittymään palveluun %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -105,6 +107,7 @@ msgstr "" "Terveisin, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." @@ -127,26 +130,29 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" "%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Käyttäjän %1$s päivitys %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s julkinen syöte" @@ -156,34 +162,48 @@ msgstr "%s julkinen syöte" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s ja kaverit" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s julkinen aikajana" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s päivitys" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s aikajana" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s päivitykset kaikilta!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -191,16 +211,18 @@ msgstr "" "(Saat pian sähköpostiisi viestin, jonka ohjeita seuraamalla voit vahvistaa " "sähköpostiosoitteesi.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa " -"[%%site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" +"site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** on mikroblogipalvelu. " @@ -215,34 +237,38 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " "välilyöntejä" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " "välilyöntejä. Pakollinen." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 tai useampia merkkejä" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 tai useampia merkkejä äläkä unohda mitä kirjoitit!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 tai useampia merkkejä. Pakollinen." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -252,6 +278,7 @@ msgstr "" "antaa osoitteelle %s oikeus lähettää viestejä sinulle." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -286,7 +313,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API-metodia ei löytynyt!" @@ -309,16 +363,23 @@ msgstr "API-metodia ei löytynyt!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API-metodi on työn alla!" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Tietoa" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Hyväksy" @@ -329,6 +390,9 @@ msgstr "Hyväksy" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Lisää" @@ -346,27 +410,29 @@ msgstr "Lisää tai poista OpenID:t" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Osoite" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Kutsuttavien kavereiden osoitteet (yksi per rivi)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Kaikki tilaukset" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Kaikki päivitykset käyttäjältä %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Kaikki päivitykset hakuehdolla \"%s\"" @@ -376,33 +442,40 @@ msgstr "Kaikki päivitykset hakuehdolla \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Olet jo kirjautunut sisään." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Tilaat jo!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Oletko varma että haluat poistaa tämän päivityksen?" # "anna lupa" ehkä parempi #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Valtuuta tilaus" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Kirjaudu sisään automaattisesti tulevaisuudessa; ei tietokoneille joilla " "useampi käyttäjä!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -413,15 +486,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Kuva" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Kuva päivitetty." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -432,6 +509,7 @@ msgstr "" "ystävälistaasi?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -441,7 +519,7 @@ msgstr "" "lisäohjeita. " #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Odotetaan vahvistusta tälle puhelinnumerolle." @@ -453,6 +531,8 @@ msgstr "Aiemmin »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Tietoja" @@ -460,16 +540,18 @@ msgstr "Tietoja" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Tätä päivitystä ei voi poistaa." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Kuvan URL-osoitetta '%s' ei voi avata." @@ -477,6 +559,8 @@ msgstr "Kuvan URL-osoitetta '%s' ei voi avata." #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Uutta salasanaa ei voida tallentaa." @@ -484,31 +568,34 @@ msgstr "Uutta salasanaa ei voida tallentaa." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Peruuta" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Ei voitu luoda OpenID Consumer-oliota." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Ei voida normalisoida Jabber ID -tunnusta" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Ei voida normalisoida sähköpostiosoitetta" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Vaihda" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Muuta sähköpostin käsittelyasetuksia." @@ -518,11 +605,12 @@ msgid "Change password" msgstr "Vaihda salasana" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Vaihda salasanasi" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Vaihda profiiliasetuksesi" @@ -532,6 +620,9 @@ msgstr "Vaihda profiiliasetuksesi" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Vahvista" @@ -544,12 +635,14 @@ msgstr "Vahvista osoite" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Vahvistus peruttu." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Vahvistuskoodi" @@ -558,7 +651,8 @@ msgstr "Vahvistuskoodi" msgid "Confirmation code not found." msgstr "Vahvistuskoodia ei löytynyt." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -592,21 +686,25 @@ msgstr "" "Kiitokset rekisteröitymisestäsi ja toivomme että pidät palvelustamme." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Yhdistä" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Yhdistä olemassa oleva käyttäjätunnus" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Ota yhteyttä" # on lomake #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Ei voitu luoda OpenID lomaketta: %s" @@ -614,35 +712,39 @@ msgstr "Ei voitu luoda OpenID lomaketta: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Ei voitu tilata käyttäjää: %s on jo listallasi" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Ei voitu tilata käyttäjää: Käyttäjää ei löytynyt." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Ei voitu uudelleenohjata palvelimelle: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Ei voitu tallentaa profiilikuvan tietoja" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Ei voitu tallentaa uutta profiilitietoa" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Toista ei voitu asettaa tilaamaan sinua." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Ei voitu tilata." @@ -662,15 +764,17 @@ msgstr "Ei voitu muuttaa request tokeneita access tokeneiksi." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Ei voitu poistaa sähköpostivahvistusta." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Ei voitu poistaa tilausta." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Ei löytynyt yhtään päivitystä." @@ -683,29 +787,38 @@ msgstr "Ei saatu request tokenia." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Ei voitu asettaa vahvistuskoodia." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Ei voitu lisätä uutta tilausta." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Ei voitu tallentaa profiilia." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Ei voitu päivittää käyttäjätietoja." @@ -721,45 +834,51 @@ msgstr "Ei voitu päivittää käyttäjätietoja." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Ei voitu päivittää käyttäjää." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Luo" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Luo uusi käyttäjä tällä käyttäjätunnuksella." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Luo uusi käyttäjätili" # Koodista selviää, että tämä on virhetilanne jossa on yritetty luoda tuollaista. #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "" "Yritettiin luoda uusi käyttäjätili OpenID tunnukselle, jolla on jo " "käyttäjätili." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Tämän hetken vahvistettu Jabber/GTalk -osoite." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Tämän hetken vahvistettu SMS puhelinnumero." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Tämän hetken vahvistettu sähköpostiosoite." @@ -768,23 +887,27 @@ msgid "Currently" msgstr "Tällä hetkellä" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Tietokantavirhe tallennettaessa vastausta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Poista päivitys" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Kuvaile itseäsi ja kiinnostuksiasi 140 merkillä" @@ -792,11 +915,13 @@ msgstr "Kuvaile itseäsi ja kiinnostuksiasi 140 merkillä" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Sähköposti" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Sähköpostiosoite" @@ -806,39 +931,43 @@ msgid "Email Settings" msgstr "Sähköpostiasetukset" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Sähköpostiosoite on jo käytössä." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Sähköpostiosoitteen vahvistus" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Sähköpostiosoite, esimerkiksi \"käyttäjätunnus@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Sähköpostiosoitteet" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Syötä käyttäjätunnus tai sähköpostiosoite" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Syötä koodi jonka sait puhelimeesi." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Virhe tapahtui tokenin hyväksynnässä." #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Virhe tapahtui käyttäjän ja OpenID-tunnuksen yhdistämisessä." @@ -849,39 +978,46 @@ msgstr "Virhe tapahtui käyttäjän yhdistämisessä." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Virhe tapahtui profiilikuvan lisäämisessä" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Virhe tapahtui uuden profiilin lisäämisessä" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Virhe tapahtui uuden etäprofiilin lisäämisessä" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Virhe tapahtui osoitevahvistuksen tallentamisessa" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Virhe tapahtui etäprofiilin tallentamisessa" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Virhe tapahtui profiilin tallentamisessa." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Virhe tapahtui käyttäjän tallentamisessa." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." @@ -890,6 +1026,9 @@ msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Virhe tapahtui käyttäjän asettamisessa." @@ -900,6 +1039,7 @@ msgstr "Virhe tapahtui profiilin päivittämisessä" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Virhe tapahtui etäprofiilin päivittämisessä" @@ -910,36 +1050,39 @@ msgstr "Virhe vahvistuskoodin kanssa." # openid-tunnuksen liittämisessä omaan olemassaolevaan tunnukseen. #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Käytetty tunnus" # Ei tämäkään kauheasti kerro, mutta ehkä silti englanninkielisiin sivustoihin tutustumattomalle edes lievästi selkeämpi. -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "UKK" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Profiilikuvan päivittäminen epäonnistui." # Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Syöte käyttäjän %s kavereille" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Syöte käyttäjän %s saamista vastauksista" # tägille vai tagille? #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Syöte tägille %s" @@ -954,7 +1097,7 @@ msgstr "Hae päivityksien sisällöstä" msgid "Find people on this site" msgstr "Hae ihmisiä tältä sivustolta" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -967,6 +1110,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Koko nimi" @@ -975,24 +1123,34 @@ msgstr "Koko nimi" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Ohjeet" # Tämä teksti tulee linkkiin, joka vie käyttäjän omalle sivulle. #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Koti" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Kotisivu" @@ -1000,22 +1158,28 @@ msgstr "Kotisivu" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Kotisivun verkko-osoite ei ole toimiva." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Haluan lähettää päivityksiä sähköpostilla." # IM ei ole suomessa käytössä ollenkaan, pikaviestimistä puhutaan ainakin jossain... surullista kyllä ainoa suosittu termi olisi varmaan joku "mese", mutta se ei taida sentään olla yleistynyt tarkoittamaan muuta kuin MS:n tuotetta. #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "Pikaviestin" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Pikaviestiosoite" @@ -1025,7 +1189,7 @@ msgid "IM Settings" msgstr "Pikaviestiasetukset" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1033,7 +1197,7 @@ msgstr "" "Jos sinulla on jo käyttäjätunnus, kirjaudu sisään käyttäjätunnuksella ja " "salasanalla yhdistääksesi OpenID-tunnuksesi siihen." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1041,7 +1205,7 @@ msgstr "" "Jos haluat lisätä OpenID-tunnuksen käyttäjätunnukseesi, syötä se alla " "olevaan laatikkoon ja paina \"Lisää\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1053,25 +1217,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Saapuva sähköposti" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Saapuvan sähköpostin osoite poistettu." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Väärä vanha salasana" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Väärä käyttäjätunnus tai salasana" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1080,31 +1250,32 @@ msgstr "" "joka on rekisteröity käyttäjätunnuksellesi." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Kuvan URL-verkkosoite '%s' ei kelpaa" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Sähköpostiosoite %s ei kelpaa" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Kotisivun osoite '%s' ei kelpaa" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Lisenssin verkko-osoite '%s' ei kelpaa" # status päivitys, päivitys, tätä ei ole vielä päätetty #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Päivityksen sisältö ei kelpaa" @@ -1120,13 +1291,13 @@ msgid "Invalid notice url" msgstr "Päivityksen URL ei kelpaa" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Profiilin URL-osoite '%s' ei kelpaa." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Profiilin URL-osoite '%s' ei kelpaa (virheellinen muoto)." @@ -1144,28 +1315,35 @@ msgstr "Koko ei kelpaa." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Käyttäjätunnus tai salasana ei kelpaa." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Kutsu(t) lähetettiin" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Kutsu(t) lähetettiin seuraaville henkilöille:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Kutsu" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Kutsu uusia käyttäjiä" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1173,15 +1351,16 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" "Sivusto käyttää [StatusNet](http://status.net/) mikroblogausohjelmistoa, " -"versio %s, saatavilla lisenssillä [GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +"versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" +"www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID kuuluu jo toiselle käyttäjälle." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1192,13 +1371,15 @@ msgstr "" "GTalkissa." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Kieli" # heh #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Kieli on liian pitkä (max 50 merkkiä)." @@ -1207,7 +1388,15 @@ msgstr "Kieli on liian pitkä (max 50 merkkiä)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Kotipaikka" @@ -1216,7 +1405,12 @@ msgstr "Kotipaikka" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." @@ -1225,18 +1419,22 @@ msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Kirjaudu sisään" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Kirjaudu sisään [OpenID](%%doc.openid%%)-tunnuksella" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1247,22 +1445,26 @@ msgstr "" "käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " "kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Kirjaudu ulos" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Pitempi nimi, mieluiten oikea nimesi" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Oletko hukannut tai unohtanut salasanasi?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Tee uusi sähköpostiosoite johon lähettää päivityksiä; tämä poistaa vanhan " @@ -1275,16 +1477,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Määritä miten saat sähköpostin palvelusta %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Käyttäjänä alkaen" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Käyttäjän %s mikroblogi" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1297,6 +1501,8 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" "Minun tekstini ja tiedostoni ovat käytettävissä seuraavan lisenssin " @@ -1305,36 +1511,42 @@ msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Uusi" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Uusi saapuvan sähköpostin osoite lisätty." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Uusi käyttäjätunnus" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Uusi päivitys" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Uusi salasana" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "" "Uusi salasana tallennettiin onnistuneesti. Olet nyt kirjautunut sisään." @@ -1346,7 +1558,13 @@ msgstr "" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Tunnus" @@ -1355,7 +1573,12 @@ msgstr "Tunnus" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." @@ -1364,49 +1587,60 @@ msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Käyttäjätunnuksessa voi olla ainoastaan pieniä kirjaimia ja numeroita ilman " "välilyöntiä." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Käyttäjätunnus ei ole sallittu." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Käyttäjän, jota haluat seurata, käyttäjätunnus" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Käyttäjätunnus tai sähköposti" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Ei" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Ei Jabber ID -osoitetta" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Ei valtuutuspyyntöä!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Operaattoria ei ole valittu." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Koodia ei ole syötetty." @@ -1418,11 +1652,15 @@ msgstr "Varmistuskoodia ei ole annettu." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Ei sisältöä!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Sähköpostiosoitetta ei ole." @@ -1431,7 +1669,9 @@ msgid "No id." msgstr "Id puuttuu." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Saapuvan sähköpostin osoitetta ei ole." @@ -1442,6 +1682,7 @@ msgstr "Käyttäjätunnusta ei saatu etäpalvelimelta." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Tunnusta ei ole." @@ -1449,12 +1690,14 @@ msgstr "Tunnusta ei ole." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Avoimia vahvistuksia ei ole peruutettavana." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Puhelinnumeroa ei ole." @@ -1464,7 +1707,8 @@ msgid "No profile URL returned by server." msgstr "Profiilin verkko-osoitetta ei saatu palvelimelta." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Rekisteröityä sähköpostiosoitetta ei ole tälle käyttäjälle." @@ -1476,7 +1720,7 @@ msgstr "Kyselyä ei löytynyt!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Ei hakutuloksia" @@ -1487,12 +1731,16 @@ msgstr "Kokoa ei ole." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." @@ -1502,13 +1750,15 @@ msgid "No such OpenID." msgstr "Annettua OpenID-tunnusta ei ole." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Dokumenttia ei ole." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Päivitystä ei ole." @@ -1546,12 +1796,22 @@ msgstr "Tilausta ei ole." #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Käyttäjää ei ole." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Käyttäjää tuolla sähköpostilla tai käyttäjätunnuksella ei ole." @@ -1565,32 +1825,38 @@ msgid "Not a recovery code." msgstr "Tuo ei ole palautuskoodi." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Tuo ei ole rekisteröitynyt käyttäjä." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Tuo ei ole tuettu tietomuoto." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Tuo ei ole kelvollinen Jabber ID." #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Tuo ei ole kelvollinen OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Tuo ei ole kelvollinen sähköpostiosoite" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite." @@ -1598,6 +1864,11 @@ msgstr "Tuo ei ole kelvollinen sähköpostiosoite." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Tuo ei ole kelvollinen tunnus." @@ -1620,7 +1891,8 @@ msgstr "" "löytynyt)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Tuo ei ole kelvollinen kuva tai tiedosto on rikkoutunut." @@ -1631,11 +1903,13 @@ msgstr "Ei valtuutusta." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Odottamaton vastaus saatu!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Ei löytynyt" @@ -1651,11 +1925,15 @@ msgstr "Ei löytynyt" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Et ole kirjautunut sisään." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Ei ole tilattu!." @@ -1673,41 +1951,46 @@ msgid "Notice feed for %s" msgstr "Päivityksien syöte käyttäjälle %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Päivitykselle ei ole profiilia" # Notice suomennos vielä hakusessa #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Päivitykset" # tagi, tägätty, tagätty, tagatty, tagitetty, #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Päivitykset joilla on tagi %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Vanha salasana" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID-tunnuksen asetukset" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID automaattilähetys" @@ -1715,29 +1998,34 @@ msgstr "OpenID automaattilähetys" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID-sisäänkirjautuminen" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID-osoite" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID tunnistautuminen peruttiin." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID tunnistautuminen epäonnistui: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID virhe: %s" @@ -1753,11 +2041,12 @@ msgid "OpenID settings" msgstr "OpenID asetukset" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Voit myös lisätä oman viestisi kutsuun" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Osittain ladattu palvelimelle." @@ -1767,34 +2056,46 @@ msgstr "Osittain ladattu palvelimelle." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Salasana" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Salasana ja salasanan vahvistus eivät täsmää." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Salasanan palautuspyyntö lähetetty." #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Salasana tallennettu." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Salasanat eivät täsmää." @@ -1815,14 +2116,17 @@ msgstr "Etsi ihmisiä" # Tämä on otsikko käyttäjän sivun välilehdelle, jossa näkyy omat ja tilausten viestit. Omat on ehkä paremmin kuvaava, kuin henkilökohtainen. Saa kyllä muutakin ehdottaa. #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Omat" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Henkilökohtainen viesti" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Puhelinnumero, ei välimerkkejä tai välilyöntejä, suuntanumerollinen" @@ -1837,7 +2141,7 @@ msgstr "" "paina \"Peruuta\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Lähetä päivitys kun Jabber/GTalk -tilatietoni vaihtuu." @@ -1846,7 +2150,9 @@ msgstr "Lähetä päivitys kun Jabber/GTalk -tilatietoni vaihtuu." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Asetukset" @@ -1855,42 +2161,52 @@ msgstr "Asetukset" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Asetukset tallennettu." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Ensisijainen kieli" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Yksityisyys" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Ongelma päivityksen tallentamisessa." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profiili" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profiilin URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profiiliasetukset" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Tuntematon profiili." @@ -1900,17 +2216,19 @@ msgstr "Julkinen syöte" # Suorakäännös voisi sopia. Tähän voisi jotain suomenkielistä termiä hakea tai ottaa tuollainen vähän erikoisempi suora käännös. #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Julkinen aikajana" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Julkaise MicroID Jabber/GTalk-osoitteelleni." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Julkaise MicroID sähköpostiosoitteelleni." @@ -1922,12 +2240,14 @@ msgstr "Tuoreet tagit" # Palautuslomakkeen toimintonappi #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Palauta" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Salasanan palautus" @@ -1940,37 +2260,45 @@ msgstr "Tuntemattoman käyttäjän palautuskoodi" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Rekisteröidy" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Rekisteröityminen ei ole sallittu." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Rekisteröityminen onnistui" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Hylkää" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Muista minut" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Etäprofiilille ei löytynyt vastaavaa profiilia" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Etätilaus" @@ -1984,6 +2312,9 @@ msgstr "Etätilaus" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Poista" @@ -1992,7 +2323,7 @@ msgstr "Poista" msgid "Remove OpenID" msgstr "Poista OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -2001,6 +2332,7 @@ msgstr "" "palveluun. Jos haluat poistaa sen, lisää ensin uusi OpenID-tunnus." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Vastaukset" @@ -2008,29 +2340,35 @@ msgstr "Vastaukset" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Vastaukset käyttäjälle %s" # Palauta, aseta uudelleen, uudelleenasetus, nollaus, tyhjää #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Vaihda" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Vaihda salasana" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS puhelinnumero" @@ -2039,17 +2377,18 @@ msgstr "SMS puhelinnumero" msgid "SMS Settings" msgstr "SMS-asetukset" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS vahvistus" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Sama kuin ylläoleva salasana" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Sama kuin ylläoleva salasana. Pakollinen." @@ -2062,12 +2401,21 @@ msgstr "Sama kuin ylläoleva salasana. Pakollinen." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Tallenna" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Haku" @@ -2077,7 +2425,7 @@ msgid "Search Stream Feed" msgstr "Hakusyöte" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2086,7 +2434,7 @@ msgstr "" "Hae päivityksiä palvelun %%site.name%% sisällöistä. Erota hakutermit " "välilyönnillä; hakutermien pitää olla 3 tai useamman merkin pituisia." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2097,33 +2445,38 @@ msgstr "" "olla 3 tai useamman merkin pituisia." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Valitse operaattori" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Lähetä" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Lähetä sähköpostia tähän osoitteeseen tehdäksesi päivityksiä." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Lähetä sähköpostilla tieto uusista tilaajista." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Lähetä minulle päivityksiä Jabberilla/GTalkilla." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2132,17 +2485,20 @@ msgstr "" "tästä matkapuhelinoperaattoriltani." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Lähetä Jabberilla/GTalkilla sellaistenkin ihmisten vastaukset, joita en ole " "tilannut. " #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Asetukset" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Asetukset tallennettu." @@ -2162,27 +2518,32 @@ msgid "Something weird happened." msgstr "Jotain erikoista tapahtui." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Valitettavasti päivitysten teko sähköpostilla ei ole sallittua." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Valitettavasti tuo ei ole oikea osoite sähköpostipäivityksille." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Lähdekoodi" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Tilastot" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Tallennettua OpenID-tunnusta ei löytynyt." @@ -2190,24 +2551,28 @@ msgstr "Tallennettua OpenID-tunnusta ei löytynyt." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Tilaa" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Tilaajat" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Tilaus sallittu" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Tilaus hylätty" @@ -2215,28 +2580,35 @@ msgstr "Tilaus hylätty" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tilaukset" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Tiedoston lähetyksessä tapahtui järjestelmävirhe." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tagit" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Teksti" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Tekstihaku" @@ -2256,6 +2628,7 @@ msgid "That confirmation code is not for you!" msgstr "Tämä vahvistuskoodi ei ole sinun!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Tämä sähköpostiosoite kuuluu jo toisella käyttäjällä." @@ -2265,63 +2638,73 @@ msgid "That file is too big." msgstr "Tämä tiedosto on liian iso." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Tämä on jo Jabber ID -tunnuksesi." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Tämä on jo sähköpostiosoitteesi." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Tämä on jo puhelinnumerosi." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Tämä ei ole Jabber ID-tunnuksesi." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Tämä ei ole sähköpostiosoitteesi." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Tämä ei ole puhelinnumerosi." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Tämä on väärä pikaviestiosoite." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Tämä on väärä vahvistukoodi." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Tämä puhelinnumero kuuluu jo toiselle käyttäjälle." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Päivitys on liian pitkä. Maksimipituus on 140 merkkiä." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Päivitys on liian pitkä. Maksimipituus on 255 merkkiä." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Osoite \"%s\" on vahvistettu sinun käyttäjätunnuksellesi." @@ -2330,12 +2713,15 @@ msgstr "Osoite \"%s\" on vahvistettu sinun käyttäjätunnuksellesi." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Osoite on poistettu." # Ilmeisesti jotain etäprofiilin tilausvirheitä nämä on. Laitoin callbackin tuohon ettei huku tietoa virheestä... -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2346,7 +2732,8 @@ msgstr "" "Tilauskoodisi on:" # Etäprofiilin tilausjuttua. -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2356,35 +2743,40 @@ msgstr "" "saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Nämä ihmiset seuraavat käyttäjän %s päivityksiä." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Nämä ihmiset seuraavat sinun päivityksiäsi." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Käyttäjä %s seuraa näiden ihmisten päivityksiä." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Näiden ihmisten päivityksiä sinä seuraat." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Nämä ihmiset ovat jo käyttäjiä ja sinä olet automaattisesti tilannut heidän " "päivityksensä:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Vahvistuskoodi on liian vanha. Aloita uudelleen." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2393,7 +2785,7 @@ msgstr "" "tapahdu, paina lähetä painiketta mennäksesi OpenID-palveluntajoajalle." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2402,13 +2794,16 @@ msgid "" msgstr "" "Tämä on ensimmäinen kerta kun olet sisäänkirjautunut %s -palveluun, joten " "OpenID-tunnuksesi pitää yhdistää johonkin tämän palvelun käyttäjätunnukseen. " -"Tätä varten voit luoda uuden käyttäjätunnuksen tai yhdistää OpenID-" -"tunnuksen olemassa olevaan käyttäjätunnukseen, jos sinulla sellainen jo on." +"Tätä varten voit luoda uuden käyttäjätunnuksen tai yhdistää OpenID-tunnuksen " +"olemassa olevaan käyttäjätunnukseen, jos sinulla sellainen jo on." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Tämä metodi edellyttää joko POST tai DELETE sanoman." @@ -2418,25 +2813,37 @@ msgstr "Tämä metodi edellyttää joko POST tai DELETE sanoman." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Tämä metodi edellyttää POST sanoman." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Tämä sivu ei ole saatavilla sinulle sopivassa mediatyypissä." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Aikavyöhyke" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Aikavyöhykettä ei ole valittu." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2445,23 +2852,25 @@ msgid "" msgstr "" "Tilataksesi päivitykset, voit [kirjautua sisään](%%action.login%%), tai " "[rekisteröidä](%%action.register%%) uuden käyttäjätunnuksen. Jos sinulla on " -"jo käyttäjätunnus jossain [yhteensopivassa " -"mikroblogauspalvelussa](%%doc.openmublog%%), syötä profiilisi URL-osoite " -"alla olevaan kenttään." +"jo käyttäjätunnus jossain [yhteensopivassa mikroblogauspalvelussa](%%doc." +"openmublog%%), syötä profiilisi URL-osoite alla olevaan kenttään." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Kaksi käyttäjätunnusta tai nimeä täytyy antaa." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" @@ -2473,15 +2882,22 @@ msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Odottamaton lomakkeen lähetys." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Odottamaton salasanan uudelleenasetus." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Tuntematon toiminto" @@ -2513,32 +2929,39 @@ msgstr "Peruuta tilaus" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "OMB versiota ei ole tuettu" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Kuvatiedoston formaattia ei ole tuettu." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Päivitykset SMS:llä" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Päivitykset pikaviestintä käyttäen (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" @@ -2546,6 +2969,8 @@ msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" # tai lähetä #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Lataa" @@ -2567,6 +2992,7 @@ msgid "Upload a new profile image" msgstr "Lataa uusi profiilikuva" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2574,7 +3000,9 @@ msgstr "" "tätä palvelua." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Käytetään ainoastaan päivityksien lähettämiseen, ilmoitusasioihin ja " @@ -2600,11 +3028,16 @@ msgstr "Käyttäjää jota seurataan ei ole olemassa." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Käyttäjällä ei ole profiilia." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Käyttäjätunnus" @@ -2613,30 +3046,34 @@ msgid "User not found." msgstr "Käyttäjää ei löytynyt." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Missä aikavyöhykkeessä olet normaalisti?" # Suora FB kopio. #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Mitä teet juuri nyt, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Kuvan '%s' tyyppi on väärä" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Kuvan '%s' koko on väärä" @@ -2644,7 +3081,9 @@ msgstr "Kuvan '%s' koko on väärä" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Kyllä" @@ -2667,11 +3106,12 @@ msgid "You are already logged in!" msgstr "Olet jo kirjautunut sisään!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Olet jos tilannut seuraavien käyttäjien päivitykset:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Et ole määritellyn käyttäjän kaveri." @@ -2690,23 +3130,24 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" "Voit saada SMS viestit sähköpostin välityksellä %%site.name%% -palvelusta." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "Voit poistaa OpenID-tunnuksen painamalla \"Poista\"-nappia." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"Voit lähettää ja vastaanottaa päivityksiä " -"Jabber/GTalk-[pikaviestintä](%%doc.im%%) käyttäen. Alla voit määrittää " -"osoitteesi ja asetuksesi. " +"Voit lähettää ja vastaanottaa päivityksiä Jabber/GTalk-[pikaviestintä](%%doc." +"im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. " -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2717,21 +3158,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Voit käyttää paikallista tilausta!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Et lähettänyt profiilia" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2753,11 +3196,13 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Et voi poistaa toisen käyttäjän päivitystä." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" @@ -2765,6 +3210,7 @@ msgstr "" "%s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2772,21 +3218,22 @@ msgstr "" "Lähetämme sinulle ilmoituksen, kun joku kutsumistasi henkilöistä hyväksyy " "kutsun ja rekisteröityy palveluun. Kiitoksia yhteisön kasvattamisesta!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Sinut on tunnistettu. Syötä uusi salasana alle. " #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "OpenID URL-osoitteesi" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "Käyttäjätunnuksesi tässä palvelussa tai rekisteröity sähköpostiosoitteesi." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2795,47 +3242,57 @@ msgstr "" "[OpenID](%%doc.openid%%) mahdollistaa kirjautumisen sisään useaan palveluun " "yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "muutama sekunti sitten" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "noin %d päivää sitten" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "noin %d tuntia sitten" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "noin %d minuuttia sitten" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "noin %d kuukautta sitten" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "noin päivä sitten" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "noin minuutti sitten" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "noin kuukausi sitten" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "noin vuosi sitten" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "noin tunti sitten" @@ -2857,12 +3314,14 @@ msgid "reply" msgstr "vastaus" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "sama salasana kuin yllä" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tiedoston tyyppi ei ole tuettu" @@ -2883,6 +3342,26 @@ msgstr "« Myöhemmin" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" "Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " @@ -2893,6 +3372,7 @@ msgid "This notice is not a favorite!" msgstr "Tämä päivitys ei ole suosikki!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Ei voitu poistaa suosikkia." @@ -2900,22 +3380,28 @@ msgstr "Ei voitu poistaa suosikkia." msgid "Favor" msgstr "Lisää suosikiksi" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Lähetä sähköpostia, jos joku lähettää minulle yksityisviestin." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Tämä päivitys on jo suosikki!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Ei voitu lisätä suosikiksi." @@ -2925,11 +3411,13 @@ msgstr "Poista suosikeista" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Käyttäjän %s suosikkipäivitykset" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Käyttäjän %s suosikkipäivityksien syöte" @@ -2971,33 +3459,44 @@ msgid "Login with your username and password. " msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on 140 merkkiä." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Vastaanottajaa ei ole määritelty." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Et voi lähettää viestiä tälle käyttäjälle." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Tuota käyttäjää ei ole." #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Uusi viesti" @@ -3057,6 +3556,11 @@ msgstr "Voit päivittää täällä henkilökohtaista profiiliasi " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Käyttäjälle ei löydy profiilia" @@ -3085,6 +3589,8 @@ msgid "New password successfully saved. " msgstr "Uuden salasanan tallennus onnistui. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." @@ -3107,6 +3613,7 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Tilataksesi päivitykset, voit [kirjautua sisään](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Käyttäjän %s suosikkien syöte" @@ -3114,6 +3621,8 @@ msgstr "Käyttäjän %s suosikkien syöte" # suosikkipäivitystä? #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Ei saatu haettua suosikkipäivityksiä." @@ -3121,7 +3630,7 @@ msgstr "Ei saatu haettua suosikkipäivityksiä." msgid "No such message." msgstr "Tuota viestiä ei ole." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Vain lähettäjä ja vastaanottaja voivat lukea tämän viestin." @@ -3146,54 +3655,72 @@ msgid "Mobile carrier for your phone. " msgstr "Matkapuhelinoperaattorisi" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Suorat viestit käyttäjälle %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Kaikki suorat viestit käyttäjälle %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Suorat viestit, jotka sinä olet lähettänyt" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Kaikki suorat viestit käytäjältä %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Viestissä ei ole tekstiä!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Vastaanottajaa ei löytynyt." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" -"Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä " -"kaveri." +"Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Käyttäjän %s suosikit" # ensimmäinen on sivuston/palvelun nimi sorsasta päätellen. #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s lisäsi päivityksesi suosikkeihinsa" @@ -3216,14 +3743,17 @@ msgstr "" "myös Twitteriin, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter-asetukset" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitter käyttäjätili" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Tämänhetkinen vahvistettu Twitter käyttäjätilisi." @@ -3232,6 +3762,7 @@ msgid "Twitter Username" msgstr "Twitter-käyttäjätunnus" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Ei välilyöntejä, kiitos." @@ -3240,18 +3771,22 @@ msgid "Twitter Password" msgstr "Twitter-salasana" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Lähetä päivitykseni automaattisesti Twitteriin." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Lähetä paikalliset \"@\"-vastaukset Twitteriin." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Tilaa kavereitteni Twitter päivitykset täällä." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3260,6 +3795,7 @@ msgstr "" "alaviiva (_). 15 merkkiä maksimissaan." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Twitter-tunnustasi ei voitu vahvistaa!" @@ -3270,33 +3806,43 @@ msgstr "Ei pystytty hakemaan käyttäjän \"%s\" tietoja Twitteristä." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Twitter-asetuksia ei voitu tallentaa!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Twitter-asetukset tallennettu." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Tämä ei ole sinun Twitter käyttäjätilisi." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Twitter käyttäjää ei onnistuttu poistamaan." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Twitter käyttäjätili poistettu." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Twitter-asetuksia ei voitu tallentaa." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Twitter-asetukset tallennettu." @@ -3315,18 +3861,19 @@ msgid "The subscription has been rejected, but no " msgstr "Tilaus on hylätty, mutta " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Komennon tulos" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Komento suoritettu" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Komento epäonnistui" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Valitettavasti tätä komentoa ei ole vielä toteutettu." @@ -3336,89 +3883,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Tilaukset: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Käyttäjällä ei ole viimeistä päivitystä" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Päivitys on merkitty suosikiksi." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Koko nimi: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Kotipaikka: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Kotisivu: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Tietoa: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Suora viesti käyttäjälle %s lähetetty" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Tapahtui virhe suoran viestin lähetyksessä." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Käyttäjän %s päivitykset tilattu" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Anna käyttäjätunnus, jonka päivityksien tilauksen haluat lopettaa" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Käyttäjän %s päivitysten tilaus lopetettu" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Komentoa ei ole vielä toteutettu." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Ilmoitukset pois päältä." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Ilmoituksia ei voi pistää pois päältä." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Ilmoitukset päällä." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Ilmoituksia ei voi pistää päälle." @@ -3426,11 +3995,11 @@ msgstr "Ilmoituksia ei voi pistää päälle." msgid "Commands:\n" msgstr "Komennot:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Viestin tallennus ei onnistunut." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut." @@ -3447,7 +4016,7 @@ msgstr "" "Sinulla on uusi lähetysosoite palvelussa %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Uusi yksityisviesti käyttäjältä %s" @@ -3461,7 +4030,7 @@ msgstr "" "%1$s (%2$s) lähetti sinulle yksityisviestin:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan." @@ -3470,31 +4039,39 @@ msgid "This form should automatically submit itself. " msgstr "Tämän lomakkeen pitäisi automaattisesti lähettää tiedot. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Suosikit" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Käyttäjän %s suosikkipäivitykset" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Käyttäjä" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Saapuneet" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Sinulle saapuneet viestit" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Lähetetyt" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Lähettämäsi viestit" @@ -3507,14 +4084,19 @@ msgid "Twitter integration options" msgstr "Twitter yhdistämisen asetukset" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Vastaanottaja" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Ei voitu lukea viestiä." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s ja kaverit, sivu %d" @@ -3524,21 +4106,31 @@ msgid "You can upload your personal avatar." msgstr "Voit ladata oman profiilikuvasi." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Profiilikuva-asetukset" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Alkuperäinen" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Esikatselu" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Rajaa" @@ -3555,34 +4147,43 @@ msgid "There was a problem with your session token. " msgstr "Istuntoavaimesi kanssa oli ongelma." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Tiedoston data hävisi." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Tiedosto hävisi." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Tunnistamaton tiedoston tyyppi" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Profiilia ei ole määritelty." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Ei profiilia tuolle ID:lle." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Estä käyttäjä" @@ -3590,11 +4191,11 @@ msgstr "Estä käyttäjä" msgid "Are you sure you want to block this user? " msgstr "Oletko varma että haluat estää tämän käyttäjän?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Sinä olet jo estänyt tämän käyttäjän." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Käyttäjän estotiedon tallennus epäonnistui." @@ -3611,38 +4212,56 @@ msgstr "Olet poistamassa pysyvästi tämän päivityksen. " msgid "Add to favorites" msgstr "Lisää suosikkeihin" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Muokkaa ryhmää %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "Toimiakseen postilaatikkojen pitää olla käytössä ryhmille" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Tunnusta ei ole." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Tuota ryhmää ei ole." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Käytä tätä lomaketta muokataksesi ryhmää." @@ -3651,14 +4270,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Tunnuksessa voi olla ainoastaan pieniä kirjaimia " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "kuvaus on liian pitkä (max 140 merkkiä)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Ei voitu päivittää ryhmää." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Asetukset tallennettu." @@ -3675,7 +4295,8 @@ msgstr "Tee uusi sähköpostiosoite päivityksien lähettämiseen; " msgid "Send me email when someone " msgstr "Lähetä sähköpostia kun joku " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Salli kavereiden tönäistä minua ja lähetä sähköpostilla ilmoitus." @@ -3687,7 +4308,7 @@ msgstr "Sähköpostiosoite on jo käytössä " msgid "A confirmation code was sent to the email address you added. " msgstr "Vahvistuskoodi lähetettiin lisäämääsi sähköpostiosoitteeseen. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Palvelinvirhe - käyttäjän tietoja ei saatu!" @@ -3701,51 +4322,66 @@ msgstr "Jos haluat %s-sovelluksen automaattisesti päivittävän " msgid "Allow %s to update my Facebook status" msgstr "Salli palvelun %s päivittää Facebook-tilani" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Ohita" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Päivityksellä ei ole sisältöä!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Sivutus" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Myöhemmin" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Aiemmin" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Kiitos, kun kutsuit kavereitasi käyttämään palvelua %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Kutsu lähetettiin seuraaville henkilöille:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Sinut on kutsuttu palveluun %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Kutsu kavereitasi käyttämään %s palvelua" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Kaverisi jotka käyttävät jo %s palvelua:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Lähetä kutsut" @@ -3788,12 +4424,14 @@ msgstr "Jos haluat että %s päivittää automaattisesti " msgid "Sync preferences" msgstr "Synkronointiasetukset" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Poista suosikeista" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Suosituimmat päivitykset" @@ -3807,7 +4445,8 @@ msgid "The most popular notices on the site right now." msgstr "Suosituimmat päivitykset sivustolla juuri nyt." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Esittelyssä olevat käyttäjät" @@ -3822,15 +4461,17 @@ msgstr "Esittelyssä olevat käyttäjät, sivu %d" msgid "A selection of some of the great users on %s" msgstr "Valikoima joitakin loistavia palvelun %s käyttäjiä" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "ID-tunnusta ei ole" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Ryhmän logo" @@ -3838,11 +4479,13 @@ msgstr "Ryhmän logo" msgid "You can upload a logo image for your group." msgstr "Voit ladata ryhmälle logon." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo päivitetty." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Logon päivittäminen epäonnistui." @@ -3861,7 +4504,8 @@ msgid "A list of the users in this group." msgstr "Lista ryhmän käyttäjistä." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Ryhmät" @@ -3876,6 +4520,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%%-ryhmissä voit löytää ja keskustella " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Luo uusi ryhmä" @@ -3886,7 +4531,7 @@ msgid "" msgstr "" "Hae %%site.name%% ryhmiä niiden nimen, paikan tai kuvauksen perusteella. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Ryhmähaku" @@ -3908,20 +4553,20 @@ msgstr "Lähetä minulle vastaukset Jabberin/GTalkin kautta " msgid "A confirmation code was sent " msgstr "Varmistuskoodi lähetettiin " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Sinun pitää olla kirjautunut sisään, jos haluat liittyä ryhmään." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Sinä kuulut jo tähän ryhmään " -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Käyttäjää %s ei voinut liittää ryhmään %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s liittyi ryhmään %s" @@ -3931,15 +4576,18 @@ msgid "Inboxes must be enabled for groups to work." msgstr "" "Postilaatikkojen täytyy olla otettu käyttöön, jotta ryhmäominaisuus toimii." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Tuota ryhmää ei ole." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Sinä et kuulu tähän ryhmään." @@ -3947,21 +4595,25 @@ msgstr "Sinä et kuulu tähän ryhmään." msgid "You may not leave a group while you are its administrator." msgstr "Et voi erota ryhmästä, kun olet sen ylläpitäjä." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Ei löydetty käyttäjän jäsenyystietoja." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s erosi ryhmästä %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Kirjaudu sisään" @@ -3973,15 +4625,17 @@ msgstr "Ei nykyistä tilatietoa" msgid "New group" msgstr "Uusi ryhmä" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Käytä tätä lomaketta luodaksesi ryhmän." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Ryhmän luonti ei onnistunut." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." @@ -3993,11 +4647,14 @@ msgstr "Liikaa merkkejä. " msgid "Don't send a message to yourself; " msgstr "Älä lähetä viestiä itsellesi; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Päivitys lähetetty" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax-virhe" @@ -4016,7 +4673,7 @@ msgstr "Tönäisy lähetetty" msgid "Nudge sent!" msgstr "Tönäisy lähetetty!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "OpenID sisäänkirjautuminen" @@ -4040,11 +4697,13 @@ msgstr "URL-osoitteen automaattinen lyhennys" msgid "Service" msgstr "Palvelu" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Käytettävä automaattinen lyhennyspalvelu." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL-lyhennyspalvelun nimi on liian pitkä (max 50 merkkiä)." @@ -4052,16 +4711,17 @@ msgstr "URL-lyhennyspalvelun nimi on liian pitkä (max 50 merkkiä)." msgid "Change your password." msgstr "Vaihda salasanasi." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Salasanan vaihto" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Ei sallittu henkilötagi: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" @@ -4071,11 +4731,12 @@ msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Näillä käyttäjillä on henkilötagi \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Profiilitieto" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4087,20 +4748,25 @@ msgid "Automatically subscribe to whoever " msgstr "Tilaa automaattisesti kaikki, jotka " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Virheellinen tagi: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Tageja ei voitu tallentaa." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Julkinen aikajana, sivu %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Julkista päivitysvirtaa ei saatu." @@ -4123,11 +4789,13 @@ msgstr "Julkinen tagipilvi" msgid "These are most popular recent tags on %s " msgstr "Nämä ovat suosituimmat viimeaikaiset tagit %s -palvelussa" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Tagipilvi" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Valitettavasti vain kutsutut ihmiset voivat rekisteröityä." @@ -4175,10 +4843,10 @@ msgstr "(Sinun pitäisi saada viesti sähköpostilla " #: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." msgstr "" -"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata " -"päivitykset." +"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Vastaukset käyttäjälle %s, sivu %d" @@ -4188,52 +4856,73 @@ msgstr "Vastaukset käyttäjälle %s, sivu %d" msgid "%s favorite notices, page %d" msgstr "Käyttäjän %s suosikkipäivitykset, sivu %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Ryhmä %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Ryhmä %s, sivu %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Ryhmän profiili" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" # Missähän yhteydessä tämä oikein on. pitää tarkistaa vielä #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Huomaa" # Pitää tarkistaa -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Ryhmän toiminnot" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Päivityssyöte ryhmälle %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Jäsenet" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Tyhjä)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Kaikki jäsenet" @@ -4243,14 +4932,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on " -"[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" +"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "Vain lähettäjä ja vastaanottaja " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, sivu %d" @@ -4260,30 +4949,37 @@ msgid "'s profile" msgstr "nimisen käyttäjän profiili" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Käyttäjän profiili" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Kuva" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Käyttäjän toiminnot" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Lähetä suora viesti tälle käyttäjälle" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Viesti" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Kaikki tilaajat" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Kaikki ryhmät" @@ -4308,7 +5004,7 @@ msgstr "Lähetä minulle päivitykset SMS:n välityksellä; " msgid "A confirmation code was sent to the phone number you added. " msgstr "Vahvistuskoodi on lähetetty antamaasi puhelinnumeroon. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Matkapuhelinoperaattori" @@ -4366,17 +5062,18 @@ msgstr "Tässä ovat ihmiset, joiden päivityksiä " msgid "These are the people whose " msgstr "Tässä ovat ihmiset, joiden " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" # tagi, tägätty, tagätty, tagatty, tagitetty, -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Päivitykset joissa on tagi %s, sivu %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Viestit joissa on tagi %s, uusimmat ensin" @@ -4398,7 +5095,7 @@ msgstr "Tagi %s" msgid "Tag user" msgstr "Tagaa käyttäjä" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4410,18 +5107,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Voit tagata ainoastaan ihmisiä, joita tilaat tai jotka tilaavat sinun " "päivityksiäsi." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Tagien tallennus epäonnistui." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Käytä tätä lomaketta lisätäksesi tageja tilaajillesi ja käyttäjille jotka " @@ -4431,20 +5128,23 @@ msgstr "" msgid "No such tag." msgstr "Tuota tagia ei ole." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Mikroblogi merkitty tageillä %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Käyttäjän esto epäonnistui." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Käyttäjän eston poisto epäonnistui." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Ei löytynyt." @@ -4452,15 +5152,16 @@ msgstr "Ei löytynyt." msgid "Add your Twitter account to automatically send " msgstr "Lisää Twitter käyttäjätilisi lähettääksesi automaattisesti " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Twitter käyttäjätunnus" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Twitter salasana" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Twitter kaverit" @@ -4473,145 +5174,154 @@ msgstr "Käyttäjätunnuksessa voi olla ainoastaan numeroita, " msgid "Unable to retrieve account information " msgstr "Käyttäjätietoa ei saatu " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Tapahtui virhe, kun estoa poistettiin." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Ei profiili id:tä kyselyssä." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Ei profiilia tuolla id:llä." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Tilaus lopetettu" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Käyttäjän %s ryhmät" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Käyttäjän %s ryhmät, sivu %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " "päivityksien lähettämista muutaman minuutin päästä." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Päivityksesi tähän palveluun on estetty." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Lataa kuva" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Muut" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Muita asetuksia" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Nimetön sivu" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Ensisijainen sivunavigointi" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Henkilökohtainen profiili ja kavereiden aikajana" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Hae ihmisiä tai tekstiä" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Käyttäjätili" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Yhdistä pikaviestimeen, SMS, Twitteriin" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Kirjaudu ulos palvelusta" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Kirjaudu sisään palveluun" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Luo uusi käyttäjätili" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Kirjaudu sisään OpenID-tunnuksella" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Auta minua!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Palvelun ilmoitus" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Paikalliset näkymät" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Sivuilmoitus" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Toissijainen sivunavigointi" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Kaikki " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "lisenssi." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Estä tämä käyttäjä" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Estä" @@ -4624,11 +5334,14 @@ msgstr "Poista tämä päivitys suosikeista" msgid "To use the %s Facebook Application you need to login " msgstr "Käyttääksesi %s Facebook-sovellusta sinun pitää kirjautua sisään " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr " uusi käyttäjätili." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Julkaistu" @@ -4649,55 +5362,61 @@ msgstr "Suodata tagien perusteella" msgid "All" msgstr "Kaikki" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Tagi" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Valitse tagi lyhentääksesi listaa" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Mene" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Kuvaus" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" -"Ryhmän paikka, jos sellainen on, kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" +"Ryhmän paikka, jos sellainen on, kuten \"Kaupunki, Maakunta (tai Lääni), Maa" +"\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Ryhmä" # Hallinnointi, ylläpitäjä -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Ylläpito" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Muokkaa %s ryhmän ominaisuuksia" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Lisää ryhmälle %s logo tai muokkaa sitä " @@ -4727,11 +5446,11 @@ msgstr "Liity" msgid "Leave" msgstr "Eroa" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Luo uusi käyttäjätili" @@ -4753,17 +5472,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s seuraa nyt käyttäjää" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Kotipaikka: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Kotisivu: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4772,7 +5491,7 @@ msgstr "" "Tietoja: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s tönäisi sinua" @@ -4788,39 +5507,47 @@ msgstr "%1$s (%2$s) miettii mitä hommailet " msgid "%1$s just added your notice from %2$s" msgstr "%1$s lisäsi juuri päivityksesi ajalta %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Lähettäjä" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Lähetä suora viesti" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Lähetä päivitys" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Sallitut merkit" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "vastaus viestiin" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Vastaa tähän päivitykseen" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Vastaus" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Poista tämä päivitys" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Poista" @@ -4841,27 +5568,29 @@ msgstr "Lähetä tönäisy tälle käyttäjälle" msgid "Tags in %s's notices" msgstr "Tagit käyttäjän %s päivityksissä" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(tyhjä)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Julkinen" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Käyttäjäryhmät" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Viimeaikaiset tagit" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Esittelyssä" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Suosituimmat" @@ -4878,31 +5607,33 @@ msgstr "Etsi ryhmiä tästä palvelusta" msgid "Untitled section" msgstr "Nimetön osa" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Ihmiset joiden tilaaja %s on" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Ryhmät, joiden jäsen %s on" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Käyttäjä on asettanut eston sinulle." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Tilaa tämä käyttäjä" @@ -4915,13 +5646,2089 @@ msgid "Top posters" msgstr "Eniten päivityksiä" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Poista esto tältä käyttäjältä" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Poista esto" #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Peruuta tämän käyttäjän tilaus" + +# Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Syöte käyttäjän %s kavereille" + +# Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Syöte käyttäjän %s kavereille" + +# Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Syöte käyttäjän %s kavereille" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s ja kaverit" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Voit ladata oman profiilikuvasi." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Kuva päivitetty." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Olet poistamassa tämän päivityksen pysyvästi. Kun tämä on tehty, poistoa ei " +"voi enää perua." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " +"uudelleen." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Lähetä sähköpostia, jos joku lähettää minulle yksityisviestin." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Voit ladata ryhmälle logon." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Käyttäjän %s mikroblogi" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Hae ihmisiä palvelun %%site.name%% käyttäjien nimistä, paikoista ja " +"kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää " +"olla 3 tai useamman merkin pituisia." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Tapahtui virhe suoran viestin lähetyksessä." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Hakusyöte haulle \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen " +"asetuksiesi muuttamista." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Julkinen syöte" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Julkinen syöte" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Julkinen syöte" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, " +"puhelinnumero." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Luo" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Ryhmän profiili" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "nimisen käyttäjän profiili" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Käyttäjän %s lähetetyt viestit" + +# Avatar ei ole laajalti käytössä minun tietääkseni missään suomenkielisessä sivustossa tai ohjelmistossa, "kuva" tai silloin kuin täsmennystä tarvitaan "profiilikuva" tai "käyttäjäkuva" on selkeämpi. +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Kuva" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profiiliasetukset" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi " +"vahvistuskoodisi ja miten sitä käytetään. " + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Tuota käyttäjää ei ole." + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Lisää Twitter käyttäjätunnuksesi lähettääksesi päivitykset automaattisesti " +"myös Twitteriin, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Ei pystytty hakemaan käyttäjän \"%s\" tietoja Twitteristä." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " +"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " +"paina \"Peruuta\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Hae ihmisiä tai tekstiä" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " +"päivityksien lähettämista muutaman minuutin päästä." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Yhdistä pikaviestimeen, SMS, Twitteriin" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Tönäise" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Käyttääksesi %s Facebook-sovellusta sinun pitää kirjautua sisään " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s seuraa nyt päivityksiäsi palvelussa %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Terveisin,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Haku" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Dokumenttia ei ole." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Lista ryhmän käyttäjistä." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Lista ryhmän käyttäjistä." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Käyttäjän profiili" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s ja kaverit, sivu %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Lista ryhmän käyttäjistä." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Käyttäjän eston poisto epäonnistui." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Vahvistuskoodi" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Tätä päivitystä ei voi poistaa." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Virheellinen tagi: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Ei voitu lisätä suosikiksi." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Uusi päivitys" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Uusi päivitys" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Tuo ei ole kelvollinen tunnus." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Profiilia ei ole määritelty." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Käyttäjä on asettanut eston sinulle." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Sinä et kuulu tähän ryhmään." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Estä käyttäjä" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Ryhmät" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Ei voitu päivittää käyttäjää." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Twitter-asetuksia ei voitu tallentaa!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Synkronointiasetukset tallennettiin." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" + +# Hallinnointi, ylläpitäjä +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Ylläpito" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Ei hakutuloksia" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Käyttäjä on asettanut eston sinulle." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Viesti" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Ei voitu tallentaa profiilia." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) mahdollistaa kirjautumisen sisään useaan palveluun " +"yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profiiliasetukset" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-" +"blogging)palvelu " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Jos olet unohtanut tai hukannut salasanasi, voit saada uuden sähköpostiisi, " +"jonka olet tallettanut käyttäjätunnuksellesi." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Sinut on tunnistettu. Syötä uusi salasana alle. " + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Salasanan palautuspyyntö lähetetty." + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Virhe vahvistuskoodin kanssa." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Tilaa tämä käyttäjä" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Käyttäjän %s suosikkipäivitykset, sivu %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Päivityssyöte ryhmälle %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Päivityssyöte ryhmälle %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Päivityssyöte ryhmälle %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" + +# Hallinnointi, ylläpitäjä +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Ylläpito" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Käyttäjä ei ole rekisteröitynyt tähän palveluun." + +# tagi, tägätty, tagätty, tagatty, tagitetty, +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Päivitykset joilla on tagi %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Päivityssyöte ryhmälle %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " +"[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s seuraa nyt käyttäjää" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Tämä päivitys on jo suosikki!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Tämä päivitys ei ole suosikki!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Julkista päivitysvirtaa ei saatu." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Vastaanottajaa ei ole määritelty." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Ei löytynyt yhtään päivitystä." + +# Onko päivitys hyvä sana? +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Vastaukset päivitykseen %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "lisenssi." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Käyttäjän %s tilaukset" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profiiliasetukset" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Sinä et kuulu tähän ryhmään." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Ongelma päivityksen tallentamisessa." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Viesti käyttäjälle %1$s, %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Käyttäjän profiili" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profiili" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +# tai lähetä +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Lataa" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Vaihda salasanasi" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Yhdistä" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Haku" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Kirjaudu sisään" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Estä" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Estä käyttäjä" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Lisää ryhmälle %s logo tai muokkaa sitä " + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Ei sisältöä!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Käyttäjä" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Haku" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Kotisivun verkko-osoite ei ole toimiva." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Tuota tagia ei ole." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Suorat viestit käyttäjälle %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on 140 merkkiä." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Ei voitu tilata käyttäjää: Käyttäjää ei löytynyt." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "kuvaus on liian pitkä (max 140 merkkiä)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Sinä kuulut jo tähän ryhmään " + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Käyttäjää %s ei voinut liittää ryhmään %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Sinä et kuulu tähän ryhmään." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Käyttäjän %s ryhmät" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Ryhmät, joiden jäsen %s on" + +# Pitää tarkistaa +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Ryhmän toiminnot" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Päivitys on liian pitkä. Maksimipituus on 140 merkkiä." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Kuvatiedoston formaattia ei ole tuettu." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Kuva" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "kuvaus on liian pitkä (max 140 merkkiä)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Käyttäjää jota seurataan ei ole olemassa." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Ei valtuutusta." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Ei voitu muuttaa request tokeneita access tokeneiksi." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Tuntematon OMB-protokollan versio." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Päivitystä ei ole." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Tiedosto hävisi." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Tämä sivu ei ole saatavilla " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Kirjaud sisään käyttäjätunnuksella ja salasanalla. Ei vielä " +"käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " +"kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Kaikki päivitykset hakuehdolla \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Kuvaile itseäsi ja kiinnostuksiasi 140 merkillä" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Kuvaile itseäsi ja" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" +"Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei " +"löytynyt)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "" +"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Ei saatu request tokenia." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Päivityssyöte ryhmälle %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Viesti käyttäjälle %1$s, %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Käyttäjän %s suosikkien syöte" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Käyttäjän %s suosikkien syöte" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Käyttäjän %s suosikkien syöte" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Ryhmä %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Päivitys lähetetty" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Tämä sivu ei ole saatavilla " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " +"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " +"paina \"Peruuta\"." + +# Ilmeisesti jotain etäprofiilin tilausvirheitä nämä on. Laitoin callbackin tuohon ettei huku tietoa virheestä... +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole " +"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " +"Tilauskoodisi on:" + +# Etäprofiilin tilausjuttua. +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " +"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kuvan URL-osoitetta '%s' ei voi avata." + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Kuvan '%s' tyyppi on väärä" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Ei voitu uudelleenohjata palvelimelle: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet-ohjelmiston lisenssi" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Tönäisy lähetetty" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Vastaa tähän päivitykseen" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Ongelma päivityksen tallentamisessa." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Varmistuskoodia ei ole annettu." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Kirjaudu sisään palveluun" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Valitse operaattori" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s lisäsi päivityksesi suosikkeihinsa" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " lähteestä " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Ei voitu poistaa suosikkia." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Poista päivitys" diff --git a/locale/fr/LC_MESSAGES/statusnet.mo b/locale/fr/LC_MESSAGES/statusnet.mo index 1d3509af158616cfa72df4cba4178f61db04bf42..06a6adf0a0f3c0d8cc21a92ca82344f218fc0120 100644 GIT binary patch delta 29228 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 c|9ZT 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\n" "Language-Team: LANGUAGE \n" @@ -28,52 +28,51 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 1.1.0\n" -#: ../actions/noticesearchrss.php:64 -#: actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Flux de recherche pour « %s »" # à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. -#: ../actions/finishopenidlogin.php:82 -#: ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 -#: actions/register.php:205 -#: actions/finishopenidlogin.php:110 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. " +#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 +#: actions/finishopenidlogin.php:88 actions/register.php:205 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"à l'exception de ces données personnelles : mot de passe, adresse e-mail, " +"adresse de messagerie instantanée, numéro de téléphone. " -#: ../actions/showstream.php:400 -#: ../lib/stream.php:109 -#: actions/showstream.php:418 -#: lib/mailbox.php:164 -#: lib/stream.php:76 +#: ../actions/showstream.php:400 ../lib/stream.php:109 +#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " msgstr "de" -#: ../actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Réponses à %2$s" -#: ../actions/invite.php:168 -#: actions/invite.php:176 -#: actions/invite.php:211 +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s vous invite à vous inscrire sur %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" "\n" -"You can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" "\n" "%1$s said:\n" "\n" @@ -83,11 +82,13 @@ msgid "" "\n" "%5$s\n" "\n" -"If you'd like to try the service, click on the link below to accept the invitation.\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" "\n" "%6$s\n" "\n" -"If not, you can ignore this message. Thanks for your patience and your time.\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" "\n" "Sincerely, %2$s\n" msgstr "" @@ -120,10 +121,8 @@ msgstr "" "\n" "Cordialement, %2$s\n" -#: ../lib/mail.php:124 -#: lib/mail.php:124 -#: lib/mail.php:126 -#: lib/mail.php:241 +#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s suit maintenant vos statuts dans %2$s." @@ -145,815 +144,758 @@ msgstr "" "Cordialement,\n" "%4$s.\n" -#: ../actions/twitapistatuses.php:482 -#: actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s statuts en réponses aux statuts de %2$s / %3$s." -#: ../actions/shownotice.php:45 -#: actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: ../actions/shownotice.php:45 actions/shownotice.php:45 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Statut de %1$s sur %2$s" -#: ../actions/invite.php:84 -#: ../actions/invite.php:92 -#: actions/invite.php:91 -#: actions/invite.php:99 -#: actions/invite.php:123 -#: actions/invite.php:131 +#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 +#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" -#: ../actions/publicrss.php:62 -#: actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: ../actions/publicrss.php:62 actions/publicrss.php:48 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Flux public de %s" -#: ../actions/all.php:47 -#: ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 -#: ../lib/stream.php:51 -#: actions/all.php:47 -#: actions/allrss.php:60 -#: actions/twitapistatuses.php:155 -#: lib/personal.php:51 -#: actions/all.php:65 -#: actions/allrss.php:103 -#: actions/facebookhome.php:164 -#: actions/twitapistatuses.php:126 -#: lib/personalgroupnav.php:99 +#: ../actions/all.php:47 ../actions/allrss.php:60 +#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 +#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 +#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 +#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s et ses amis" -#: ../actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Activité publique %s" -#: ../lib/mail.php:206 -#: lib/mail.php:212 -#: lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Statut de %s" -#: ../actions/twitapistatuses.php:338 -#: actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Activité de %s" -#: ../actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s statuts " -#: ../actions/register.php:213 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Vous recevrez bientôt un courriel contenant les instructions pour confirmer votre adresse.)" +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Vous recevrez bientôt un courriel contenant les instructions pour confirmer " +"votre adresse.)" -#: ../lib/util.php:257 -#: lib/util.php:273 -#: lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** est un service de microblogging qui vous est proposé par [%%site.broughtby%%](%%site.broughtbyurl%%)." +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** est un service de microblogging qui vous est proposé par " +"[%%site.broughtby%%](%%site.broughtbyurl%%)." -#: ../lib/util.php:259 -#: lib/util.php:275 -#: lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** est un service de micro-blogging." -#: ../lib/util.php:274 -#: lib/util.php:290 +#: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "Les utilisateurs doivent être désignés par leur nom complet ou leur pseudo." +msgstr "" +"Les utilisateurs doivent être désignés par leur nom complet ou leur pseudo." -#: ../actions/finishopenidlogin.php:73 -#: ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 -#: actions/profilesettings.php:76 -#: actions/finishopenidlogin.php:101 -#: actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 +#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 +#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" -#: ../actions/register.php:152 -#: actions/register.php:166 +#: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces. Requis." -#: ../actions/password.php:42 -#: actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: ../actions/password.php:42 actions/profilesettings.php:181 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 caractères ou plus" -#: ../actions/recoverpassword.php:180 -#: actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 caractères ou plus, et ne l'oubliez pas !" -#: ../actions/register.php:154 -#: actions/register.php:168 -#: actions/register.php:373 +#: ../actions/register.php:154 actions/register.php:168 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 caractères ou plus. Requis." -#: ../actions/imsettings.php:197 -#: actions/imsettings.php:205 +#: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Un code de confirmation a été envoyé à votre adresse de messagerie instantanée. Vous devez approuver %s pour recevoir des messages." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Un code de confirmation a été envoyé à votre adresse de messagerie " +"instantanée. Vous devez approuver %s pour recevoir des messages." -#: ../actions/emailsettings.php:213 -#: actions/emailsettings.php:231 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." msgstr "" "Un code de confirmation a été envoyé à l'adresse courriel indiquée. Vérifiez " "votre boîte de réception pour récupérer le code et les instructions." -#: ../actions/smssettings.php:216 -#: actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +#: ../actions/smssettings.php:216 actions/smssettings.php:224 +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." msgstr "" "Un code de confirmation a été envoyé au numéro de téléphone indiqué. " -"Vérifiez votre boîte de réception pour récupérer le code et les " -"instructions." +"Vérifiez votre boîte de réception pour récupérer le code et les instructions." -#: ../actions/twitapiaccount.php:49 -#: ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 -#: ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 -#: ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 -#: actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 -#: actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 -#: actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 -#: actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 -#: actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 -#: actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 -#: actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 -#: actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 -#: actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 -#: actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 -#: actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 -#: actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 -#: actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 -#: actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 -#: actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 +#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 +#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 +#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 +#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 +#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 +#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 +#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 +#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 +#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 +#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 +#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 +#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 +#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 +#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Méthode API non trouvée !" -#: ../actions/twitapiaccount.php:57 -#: ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 -#: ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 -#: ../actions/twitapidirect_messages.php:43 +#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 +#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 +#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 #: ../actions/twitapidirect_messages.php:49 #: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 -#: ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 -#: ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 -#: ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 -#: ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 -#: actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 -#: actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 -#: actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 -#: actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 -#: actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 -#: actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 -#: actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 -#: actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 -#: actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 -#: actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 +#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 +#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 +#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 +#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 +#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 +#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 +#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 +#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 +#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 +#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 +#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 +#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Méthode API en construction." -#: ../lib/util.php:324 -#: lib/util.php:340 -#: lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "À propos" -#: ../actions/userauthorization.php:119 -#: actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Accepter" -#: ../actions/emailsettings.php:62 -#: ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 -#: ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 -#: actions/imsettings.php:64 -#: actions/openidsettings.php:58 -#: actions/smssettings.php:71 -#: actions/twittersettings.php:85 -#: actions/emailsettings.php:120 -#: actions/imsettings.php:127 -#: actions/openidsettings.php:111 -#: actions/smssettings.php:133 -#: actions/twittersettings.php:163 +#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 +#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 +#: actions/emailsettings.php:63 actions/imsettings.php:64 +#: actions/openidsettings.php:58 actions/smssettings.php:71 +#: actions/twittersettings.php:85 actions/emailsettings.php:120 +#: actions/imsettings.php:127 actions/openidsettings.php:111 +#: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Ajouter" -#: ../actions/openidsettings.php:43 -#: actions/openidsettings.php:44 +#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 #: actions/openidsettings.php:93 msgid "Add OpenID" msgstr "Ajouter un identifiant OpenID" -#: ../lib/settingsaction.php:97 -#: lib/settingsaction.php:91 +#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 #: lib/accountsettingsaction.php:117 msgid "Add or remove OpenIDs" msgstr "Ajouter ou supprimer des identifiants OpenIDs" -#: ../actions/emailsettings.php:38 -#: ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 -#: actions/emailsettings.php:39 -#: actions/imsettings.php:40 -#: actions/smssettings.php:39 -#: actions/emailsettings.php:94 -#: actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 +#: ../actions/smssettings.php:39 actions/emailsettings.php:39 +#: actions/imsettings.php:40 actions/smssettings.php:39 +#: actions/emailsettings.php:94 actions/imsettings.php:94 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adresse" -#: ../actions/invite.php:131 -#: actions/invite.php:139 -#: actions/invite.php:176 +#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Adresses d'amis à inviter (un par ligne)" -#: ../actions/showstream.php:273 -#: actions/showstream.php:288 -#: actions/showstream.php:422 +#: ../actions/showstream.php:273 actions/showstream.php:288 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Tous les abonnements" -#: ../actions/publicrss.php:64 -#: actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: ../actions/publicrss.php:64 actions/publicrss.php:50 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Tous les statuts de %s" -#: ../actions/noticesearchrss.php:66 -#: actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Statuts correspondant au(x) terme(s) \"%s\"" -#: ../actions/finishopenidlogin.php:29 -#: ../actions/login.php:31 -#: ../actions/openidlogin.php:29 -#: ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 -#: actions/login.php:31 -#: actions/openidlogin.php:29 -#: actions/register.php:30 -#: actions/finishopenidlogin.php:34 -#: actions/login.php:77 -#: actions/openidlogin.php:30 -#: actions/register.php:92 +#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 +#: ../actions/openidlogin.php:29 ../actions/register.php:30 +#: actions/finishopenidlogin.php:29 actions/login.php:31 +#: actions/openidlogin.php:29 actions/register.php:30 +#: actions/finishopenidlogin.php:34 actions/login.php:77 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Déjà connecté." -#: ../lib/subs.php:42 -#: lib/subs.php:42 -#: lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Déjà abonné !" -#: ../actions/deletenotice.php:54 -#: actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Êtes-vous sûr(e) de vouloir supprimer ce statut ?" -#: ../actions/userauthorization.php:77 -#: actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser l'abonnement" -#: ../actions/login.php:104 -#: ../actions/register.php:178 -#: actions/register.php:192 +#: ../actions/login.php:104 ../actions/register.php:178 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Ouvrir automatiquement ma session à l'avenir (déconseillé pour les ordinateurs publics ou partagés)" +msgstr "" +"Ouvrir automatiquement ma session à l'avenir (déconseillé pour les " +"ordinateurs publics ou partagés)" -#: ../actions/profilesettings.php:65 -#: actions/profilesettings.php:98 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "M'abonner automatiquement à tous ceux qui s'abonnent à moi (recommandé pour les utilisateurs non-humains)" +#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"M'abonner automatiquement à tous ceux qui s'abonnent à moi (recommandé pour " +"les utilisateurs non-humains)" -#: ../actions/avatar.php:32 -#: ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 -#: actions/avatarsettings.php:65 -#: actions/showgroup.php:209 -#: lib/accountsettingsaction.php:107 +#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 +#: actions/profilesettings.php:34 actions/avatarsettings.php:65 +#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" -#: ../actions/avatar.php:113 -#: actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: ../actions/avatar.php:113 actions/profilesettings.php:350 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar mis à jour." -#: ../actions/imsettings.php:55 -#: actions/imsettings.php:56 +#: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "En attente d'une confirmation pour cette adresse. Vérifiez votre compte Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à votre liste de contacts ?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " +"Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à " +"votre liste de contacts ?)" -#: ../actions/emailsettings.php:54 -#: actions/emailsettings.php:55 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "En attente d'une confirmation pour cette adresse. Vérifiez votre compte Jabber/GTalk pour recevoir de nouvelles instructions." +#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " +"Jabber/GTalk pour recevoir de nouvelles instructions." -#: ../actions/smssettings.php:58 -#: actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: ../actions/smssettings.php:58 actions/smssettings.php:58 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Numéro de téléphone en attente de confirmation." -#: ../lib/util.php:1318 -#: lib/util.php:1452 +#: ../lib/util.php:1318 lib/util.php:1452 msgid "Before »" msgstr "Avant »" -#: ../actions/profilesettings.php:49 -#: ../actions/register.php:170 -#: actions/profilesettings.php:82 -#: actions/register.php:184 -#: actions/profilesettings.php:112 -#: actions/register.php:402 +#: ../actions/profilesettings.php:49 ../actions/register.php:170 +#: actions/profilesettings.php:82 actions/register.php:184 +#: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Bio" -#: ../actions/profilesettings.php:101 -#: ../actions/register.php:82 -#: ../actions/updateprofile.php:103 -#: actions/profilesettings.php:216 -#: actions/register.php:89 -#: actions/updateprofile.php:104 -#: actions/profilesettings.php:205 -#: actions/register.php:174 -#: actions/updateprofile.php:107 +#: ../actions/profilesettings.php:101 ../actions/register.php:82 +#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 +#: actions/register.php:89 actions/updateprofile.php:104 +#: actions/profilesettings.php:205 actions/register.php:174 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "La bio est trop longue (140 caractères maximum)." -#: ../lib/deleteaction.php:41 -#: lib/deleteaction.php:41 -#: lib/deleteaction.php:69 +#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Impossible de supprimer ce statut." -#: ../actions/updateprofile.php:119 -#: actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Impossible de lire l'URL '%s'" -#: ../actions/password.php:85 -#: ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 -#: actions/recoverpassword.php:313 -#: actions/passwordsettings.php:169 -#: actions/recoverpassword.php:347 +#: ../actions/password.php:85 ../actions/recoverpassword.php:300 +#: actions/profilesettings.php:404 actions/recoverpassword.php:313 +#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Impossible de sauvegarder le nouveau mot de passe." -#: ../actions/emailsettings.php:57 -#: ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 -#: actions/emailsettings.php:58 -#: actions/imsettings.php:59 -#: actions/smssettings.php:62 -#: actions/emailsettings.php:111 -#: actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 +#: ../actions/smssettings.php:62 actions/emailsettings.php:58 +#: actions/imsettings.php:59 actions/smssettings.php:62 +#: actions/emailsettings.php:111 actions/imsettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Annuler" -#: ../lib/openid.php:121 -#: lib/openid.php:121 -#: lib/openid.php:130 +#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Impossible d'instancier l'objet client pour OpenID." -#: ../actions/imsettings.php:163 -#: actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: ../actions/imsettings.php:163 actions/imsettings.php:171 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Impossible d'utiliser cet identifiant Jabber" -#: ../actions/emailsettings.php:181 -#: actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Impossible d'utiliser cette adresse courriel" -#: ../actions/password.php:45 -#: actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: ../actions/password.php:45 actions/profilesettings.php:184 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Modifier" -#: ../lib/settingsaction.php:88 -#: lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Modifier le traitement des courriels" -#: ../actions/password.php:32 -#: actions/profilesettings.php:36 +#: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "Modifier le mot de passe" -#: ../lib/settingsaction.php:94 -#: lib/accountsettingsaction.php:111 +#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Modifier votre mot de passe" -#: ../lib/settingsaction.php:85 -#: lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Modifier vos paramètres de profil" -#: ../actions/password.php:43 -#: ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 -#: ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 -#: actions/recoverpassword.php:187 -#: actions/register.php:169 -#: actions/smssettings.php:65 -#: actions/passwordsettings.php:105 -#: actions/recoverpassword.php:221 -#: actions/register.php:376 -#: actions/smssettings.php:122 +#: ../actions/password.php:43 ../actions/recoverpassword.php:181 +#: ../actions/register.php:155 ../actions/smssettings.php:65 +#: actions/profilesettings.php:182 actions/recoverpassword.php:187 +#: actions/register.php:169 actions/smssettings.php:65 +#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 +#: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmer" -#: ../actions/confirmaddress.php:90 -#: actions/confirmaddress.php:90 +#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 #: actions/confirmaddress.php:144 msgid "Confirm Address" msgstr "Confirmer l'adresse" -#: ../actions/emailsettings.php:238 -#: ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 -#: actions/emailsettings.php:256 -#: actions/imsettings.php:230 -#: actions/smssettings.php:253 -#: actions/emailsettings.php:379 -#: actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 +#: ../actions/smssettings.php:245 actions/emailsettings.php:256 +#: actions/imsettings.php:230 actions/smssettings.php:253 +#: actions/emailsettings.php:379 actions/imsettings.php:361 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmation annulée." -#: ../actions/smssettings.php:63 -#: actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Code de confirmation" -#: ../actions/confirmaddress.php:38 -#: actions/confirmaddress.php:38 +#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Code de confirmation non trouvé." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" "\n" "* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Félicitations, %s! Bienvenue dans %%%%site.name%%%%. Vous pouvez maintenant :\n" +"Félicitations, %s! Bienvenue dans %%%%site.name%%%%. Vous pouvez " +"maintenant :\n" "\n" "* Visiter [votre profil](%s) et publier votre premier statut.\n" -"* Ajouter une adresse [Jabber/GTalk](%%%%action.imsettings%%%%) afin d'envoyer et recevoir vos statuts par messagerie instantanée.\n" -"* [Chercher des personnes](%%%%action.peoplesearch%%%%) que vous pourriez connaître ou qui partagent vos intêrets.\n" -"* Mettre votre [profil](%%%%action.profilesettings%%%%) à jour pour en dire plus à votre sujet.\n" -"* Parcourir la [documentation](%%%%doc.help%%%%) en ligne pour en savoir plus sur le fonctionnement du service.\n" +"* Ajouter une adresse [Jabber/GTalk](%%%%action.imsettings%%%%) afin " +"d'envoyer et recevoir vos statuts par messagerie instantanée.\n" +"* [Chercher des personnes](%%%%action.peoplesearch%%%%) que vous pourriez " +"connaître ou qui partagent vos intêrets.\n" +"* Mettre votre [profil](%%%%action.profilesettings%%%%) à jour pour en dire " +"plus à votre sujet.\n" +"* Parcourir la [documentation](%%%%doc.help%%%%) en ligne pour en savoir " +"plus sur le fonctionnement du service.\n" "\n" -"Merci pour votre inscription ! Nous vous souhaitons d'apprécier notre service." +"Merci pour votre inscription ! Nous vous souhaitons d'apprécier notre " +"service." -#: ../actions/finishopenidlogin.php:91 -#: actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 -#: lib/action.php:330 +#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Connecter" -#: ../actions/finishopenidlogin.php:86 -#: actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Connecter à un compte existant" -#: ../lib/util.php:332 -#: lib/util.php:348 -#: lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contact" -#: ../lib/openid.php:178 -#: lib/openid.php:178 -#: lib/openid.php:187 +#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Impossible de créer le formulaire OpenID : %s" -#: ../actions/twitapifriendships.php:60 -#: ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 -#: actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 -#: actions/twitapifriendships.php:64 +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Impossible de suivre l'utilisateur : %s est déjà dans votre liste." -#: ../actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Impossible de suivre l'utilisateur : Utilisateur non trouvé." -#: ../lib/openid.php:160 -#: lib/openid.php:160 -#: lib/openid.php:169 +#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Impossible de rediriger vers le serveur : %s" -#: ../actions/updateprofile.php:162 -#: actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Impossible de sauvegarder les informations de l'avatar" -#: ../actions/updateprofile.php:155 -#: actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Impossible de sauvegarder les informations du nouveau profil" -#: ../lib/subs.php:54 -#: lib/subs.php:61 -#: lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Impossible d'abonner une autre personne à votre profil." -#: ../lib/subs.php:46 -#: lib/subs.php:46 -#: lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Impossible de s'abonner." -#: ../actions/recoverpassword.php:102 -#: actions/recoverpassword.php:105 +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." +msgstr "" +"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." #: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 -#: actions/finishremotesubscribe.php:114 +#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." msgstr "Impossible de convertir les jetons de requête en jetons d'accès" -#: ../actions/confirmaddress.php:84 -#: ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 -#: ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 -#: actions/emailsettings.php:252 -#: actions/imsettings.php:226 -#: actions/smssettings.php:249 -#: actions/confirmaddress.php:126 -#: actions/emailsettings.php:375 -#: actions/imsettings.php:357 -#: actions/smssettings.php:370 +#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 +#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 +#: actions/confirmaddress.php:84 actions/emailsettings.php:252 +#: actions/imsettings.php:226 actions/smssettings.php:249 +#: actions/confirmaddress.php:126 actions/emailsettings.php:375 +#: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Impossible de supprimer le courriel de confirmation." -#: ../lib/subs.php:103 -#: lib/subs.php:116 -#: lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Impossible de cesser l'abonnement" -#: ../actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Aucun statut n'a été trouvé." -#: ../actions/remotesubscribe.php:127 -#: actions/remotesubscribe.php:136 +#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." msgstr "Impossible d'obtenir le jeton de requête." -#: ../actions/emailsettings.php:205 -#: ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 -#: actions/emailsettings.php:223 -#: actions/imsettings.php:195 -#: actions/smssettings.php:214 -#: actions/emailsettings.php:337 -#: actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 +#: ../actions/smssettings.php:206 actions/emailsettings.php:223 +#: actions/imsettings.php:195 actions/smssettings.php:214 +#: actions/emailsettings.php:337 actions/imsettings.php:311 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Impossible d'insérer le code de confirmation." #: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 -#: actions/finishremotesubscribe.php:218 +#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Impossible d'insérer un nouvel abonnement." -#: ../actions/profilesettings.php:184 -#: ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 -#: actions/twitapiaccount.php:94 -#: actions/profilesettings.php:302 -#: actions/twitapiaccount.php:81 +#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 +#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 +#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Impossible d'enregistrer le profil." -#: ../actions/profilesettings.php:161 -#: actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Impossible de mettre à jour l'auto-abonnement." -#: ../actions/emailsettings.php:280 -#: ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 -#: actions/emailsettings.php:312 -#: actions/emailsettings.php:440 -#: actions/emailsettings.php:462 +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Impossible de mettre à jour le dossier de l'utilisateur." -#: ../actions/confirmaddress.php:72 -#: ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 -#: ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 -#: ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 -#: ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 -#: actions/emailsettings.php:174 -#: actions/emailsettings.php:277 -#: actions/imsettings.php:146 -#: actions/imsettings.php:251 -#: actions/profilesettings.php:256 -#: actions/smssettings.php:165 -#: actions/smssettings.php:277 -#: actions/confirmaddress.php:114 -#: actions/emailsettings.php:280 -#: actions/emailsettings.php:411 -#: actions/imsettings.php:252 -#: actions/imsettings.php:395 -#: actions/othersettings.php:162 -#: actions/profilesettings.php:259 -#: actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 +#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 +#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 +#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 +#: actions/confirmaddress.php:72 actions/emailsettings.php:174 +#: actions/emailsettings.php:277 actions/imsettings.php:146 +#: actions/imsettings.php:251 actions/profilesettings.php:256 +#: actions/smssettings.php:165 actions/smssettings.php:277 +#: actions/confirmaddress.php:114 actions/emailsettings.php:280 +#: actions/emailsettings.php:411 actions/imsettings.php:252 +#: actions/imsettings.php:395 actions/othersettings.php:162 +#: actions/profilesettings.php:259 actions/smssettings.php:266 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Impossible de mettre à jour l'utilisateur." -#: ../actions/finishopenidlogin.php:84 -#: actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Créer" -#: ../actions/finishopenidlogin.php:70 -#: actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Créer un nouvel utilisateur avec ce pseudo." -#: ../actions/finishopenidlogin.php:68 -#: actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Créer un nouveau compte" -#: ../actions/finishopenidlogin.php:191 -#: actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Création d'un nouveau compte pour un OpenID qui a déjà un utilisateur." -#: ../actions/imsettings.php:45 -#: actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: ../actions/imsettings.php:45 actions/imsettings.php:46 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Adresse Jabber/GTalk actuellement confirmée." -#: ../actions/smssettings.php:46 -#: actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Numéro de téléphone actuellement confirmé pour recevoir les SMS." -#: ../actions/emailsettings.php:44 -#: actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Adresse courriel actuellement confirmée." -#: ../actions/showstream.php:356 -#: actions/showstream.php:367 +#: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "Actuellement" -#: ../classes/Notice.php:72 -#: classes/Notice.php:86 -#: classes/Notice.php:91 +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erreur de base de donnée en insérant le hashtag : %s" -#: ../lib/util.php:1061 -#: lib/util.php:1110 -#: classes/Notice.php:698 +#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Erreur de base de donnée en insérant la réponse :%s" @@ -962,2391 +904,2189 @@ msgstr "Erreur de base de donnée en insérant la réponse :%s" # Nouveau message\n # #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n # à "Supprimer l'avis" -#: ../actions/deletenotice.php:41 -#: actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Supprimer ce statut" -#: ../actions/profilesettings.php:51 -#: ../actions/register.php:172 -#: actions/profilesettings.php:84 -#: actions/register.php:186 -#: actions/profilesettings.php:114 +#: ../actions/profilesettings.php:51 ../actions/register.php:172 +#: actions/profilesettings.php:84 actions/register.php:186 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Décrivez vos intérêts en 140 caractères" -#: ../actions/register.php:158 -#: ../actions/register.php:161 -#: ../lib/settingsaction.php:87 -#: actions/register.php:172 -#: actions/register.php:175 -#: lib/settingsaction.php:87 -#: actions/register.php:381 -#: actions/register.php:385 -#: lib/accountsettingsaction.php:113 +#: ../actions/register.php:158 ../actions/register.php:161 +#: ../lib/settingsaction.php:87 actions/register.php:172 +#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 +#: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Courriel" -#: ../actions/emailsettings.php:59 -#: actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Adresse courriel" -#: ../actions/emailsettings.php:32 -#: actions/emailsettings.php:32 +#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 #: actions/emailsettings.php:60 msgid "Email Settings" msgstr "Paramètres du courriel" -#: ../actions/register.php:73 -#: actions/register.php:80 -#: actions/register.php:163 +#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Cette adresse courriel est déjà utilisée." -#: ../lib/mail.php:90 -#: lib/mail.php:90 -#: lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmation de l'adresse courriel" -#: ../actions/emailsettings.php:61 -#: actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Adresse courriel (ex : nom@mondomaine.com)" -#: ../actions/invite.php:129 -#: actions/invite.php:137 -#: actions/invite.php:174 +#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Adresses courriel" -#: ../actions/recoverpassword.php:191 -#: actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Entrez un pseudo ou une adresse courriel." -#: ../actions/smssettings.php:64 -#: actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Entrez le code que vous avez reçu sur votre téléphone." -#: ../actions/userauthorization.php:137 -#: actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Erreur d'autorisation du jeton" -#: ../actions/finishopenidlogin.php:253 -#: actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Erreur lors de la connexion de l'utilisateur sur OpenID" -#: ../actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:78 +#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 #: actions/finishaddopenid.php:126 msgid "Error connecting user." msgstr "Erreur lors de la connexion de l'utilisateur." #: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 -#: actions/finishremotesubscribe.php:166 +#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Erreur lors de l'insertion de l'avatar" #: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 -#: actions/finishremotesubscribe.php:158 +#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Erreur lors de l'insertion du nouveau profil" #: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 -#: actions/finishremotesubscribe.php:182 +#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Erreur lors de l'insertion du profil distant" -#: ../actions/recoverpassword.php:240 -#: actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Erreur lors de l'enregistrement de la confirmation du courriel." -#: ../actions/userauthorization.php:140 -#: actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Erreur lors de l'enregistrement du profil distant" -#: ../lib/openid.php:226 -#: lib/openid.php:226 -#: lib/openid.php:235 +#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Erreur lors de l'enregistrement du profil." -#: ../lib/openid.php:237 -#: lib/openid.php:237 -#: lib/openid.php:246 +#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Erreur lors de l'enregistrement de l'utilisateur." -#: ../actions/password.php:80 -#: actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: ../actions/password.php:80 actions/profilesettings.php:399 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Erreur lors de l'enregistrement de l'utilisateur ; invalide." -#: ../actions/login.php:47 -#: ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 -#: ../actions/register.php:98 -#: actions/login.php:47 -#: actions/login.php:73 -#: actions/recoverpassword.php:320 -#: actions/register.php:108 -#: actions/login.php:112 -#: actions/login.php:138 -#: actions/recoverpassword.php:354 -#: actions/register.php:198 +#: ../actions/login.php:47 ../actions/login.php:73 +#: ../actions/recoverpassword.php:307 ../actions/register.php:98 +#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 +#: actions/register.php:108 actions/login.php:112 actions/login.php:138 +#: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Erreur lors de la configuration de l'utilisateur." -#: ../actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:83 +#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 #: actions/finishaddopenid.php:131 msgid "Error updating profile" msgstr "Erreur lors de la mise à jour du profil" #: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 -#: actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Erreur lors de la mise à jour du profil distant" -#: ../actions/recoverpassword.php:80 -#: actions/recoverpassword.php:80 +#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 #: actions/recoverpassword.php:86 msgid "Error with confirmation code." msgstr "Erreur dans le code de confirmation." -#: ../actions/finishopenidlogin.php:89 -#: actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Ce pseudo est déjà utilisé" -#: ../lib/util.php:326 -#: lib/util.php:342 -#: lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" -#: ../actions/avatar.php:115 -#: actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: ../actions/avatar.php:115 actions/profilesettings.php:352 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "La mise à jour de l'avatar a échoué." -#: ../actions/all.php:61 -#: ../actions/allrss.php:64 -#: actions/all.php:61 -#: actions/allrss.php:64 -#: actions/all.php:75 -#: actions/allrss.php:107 +#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 +#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Flux des amis de %s" -#: ../actions/replies.php:65 -#: ../actions/repliesrss.php:80 -#: actions/replies.php:65 -#: actions/repliesrss.php:66 -#: actions/replies.php:134 -#: actions/repliesrss.php:71 +#: ../actions/replies.php:65 ../actions/repliesrss.php:80 +#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Flux des réponses à %s" -#: ../actions/tag.php:55 -#: actions/tag.php:55 -#: actions/tag.php:61 +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Flux du marquage %s" -#: ../lib/searchaction.php:105 -#: lib/searchaction.php:105 +#: ../lib/searchaction.php:105 lib/searchaction.php:105 #: lib/searchgroupnav.php:83 msgid "Find content of notices" msgstr "Chercher dans le contenu des statuts" -#: ../lib/searchaction.php:101 -#: lib/searchaction.php:101 +#: ../lib/searchaction.php:101 lib/searchaction.php:101 #: lib/searchgroupnav.php:81 msgid "Find people on this site" msgstr "Chercher des personnes sur ce site" -#: ../actions/login.php:122 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et votre mot de passe afin d'enregistrer vos préférences." +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " +"votre mot de passe afin d'enregistrer vos préférences." -#: ../actions/profilesettings.php:44 -#: ../actions/register.php:164 -#: actions/profilesettings.php:77 -#: actions/register.php:178 -#: actions/profilesettings.php:103 -#: actions/register.php:391 -#: actions/showgroup.php:235 -#: actions/showstream.php:262 -#: actions/tagother.php:105 -#: lib/groupeditform.php:142 +#: ../actions/profilesettings.php:44 ../actions/register.php:164 +#: actions/profilesettings.php:77 actions/register.php:178 +#: actions/profilesettings.php:103 actions/register.php:391 +#: actions/showgroup.php:235 actions/showstream.php:262 +#: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nom complet" -#: ../actions/profilesettings.php:98 -#: ../actions/register.php:79 -#: ../actions/updateprofile.php:93 -#: actions/profilesettings.php:213 -#: actions/register.php:86 -#: actions/updateprofile.php:94 -#: actions/editgroup.php:195 -#: actions/newgroup.php:146 -#: actions/profilesettings.php:202 -#: actions/register.php:171 -#: actions/updateprofile.php:97 +#: ../actions/profilesettings.php:98 ../actions/register.php:79 +#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 +#: actions/register.php:86 actions/updateprofile.php:94 +#: actions/editgroup.php:195 actions/newgroup.php:146 +#: actions/profilesettings.php:202 actions/register.php:171 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Nom complet trop long (maximum de 255 caractères)." -#: ../lib/util.php:322 -#: lib/util.php:338 -#: lib/action.php:344 -#: lib/action.php:566 +#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Aide" -#: ../lib/util.php:298 -#: lib/util.php:314 -#: lib/action.php:322 -#: lib/facebookaction.php:200 +#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Accueil" -#: ../actions/profilesettings.php:46 -#: ../actions/register.php:167 -#: actions/profilesettings.php:79 -#: actions/register.php:181 -#: actions/profilesettings.php:107 -#: actions/register.php:396 -#: lib/groupeditform.php:146 +#: ../actions/profilesettings.php:46 ../actions/register.php:167 +#: actions/profilesettings.php:79 actions/register.php:181 +#: actions/profilesettings.php:107 actions/register.php:396 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Site personnel" -#: ../actions/profilesettings.php:95 -#: ../actions/register.php:76 -#: actions/profilesettings.php:210 -#: actions/register.php:83 -#: actions/editgroup.php:192 -#: actions/newgroup.php:143 -#: actions/profilesettings.php:199 -#: actions/register.php:168 +#: ../actions/profilesettings.php:95 ../actions/register.php:76 +#: actions/profilesettings.php:210 actions/register.php:83 +#: actions/editgroup.php:192 actions/newgroup.php:143 +#: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "L'adresse du site personnel n'est pas un URL valide. " -#: ../actions/emailsettings.php:91 -#: actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Je veux envoyer mes statuts par courriel." -#: ../lib/settingsaction.php:102 -#: lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" -#: ../actions/imsettings.php:60 -#: actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: ../actions/imsettings.php:60 actions/imsettings.php:61 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Adresse de messagerie instantanée" -#: ../actions/imsettings.php:33 -#: actions/imsettings.php:33 +#: ../actions/imsettings.php:33 actions/imsettings.php:33 #: actions/imsettings.php:59 msgid "IM Settings" msgstr "Paramètres de messagerie instantanée" -#: ../actions/finishopenidlogin.php:88 -#: actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Si vous avez déjà un compte, ouvrez une session avec votre identifiant et votre mot de passe pour les relier à votre OpenID." +#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Si vous avez déjà un compte, ouvrez une session avec votre identifiant et " +"votre mot de passe pour les relier à votre OpenID." -#: ../actions/openidsettings.php:45 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Pour ajouter un OpenID à votre compte, entrez-le dans le champ ci-dessous et cliquez sur « Ajouter »." +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Pour ajouter un OpenID à votre compte, entrez-le dans le champ ci-dessous et " +"cliquez sur « Ajouter »." -#: ../actions/recoverpassword.php:137 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un nouveau à l'adresse courriel indiquée dans votre compte. " +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un " +"nouveau à l'adresse courriel indiquée dans votre compte. " -#: ../actions/emailsettings.php:67 -#: ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 -#: actions/smssettings.php:76 -#: actions/emailsettings.php:127 -#: actions/smssettings.php:140 +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Courriel entrant" -#: ../actions/emailsettings.php:283 -#: actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "L'adresse de courriel entrant a été supprimée." -#: ../actions/password.php:69 -#: actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: ../actions/password.php:69 actions/profilesettings.php:388 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Ancien mot de passe incorrect" -#: ../actions/login.php:67 -#: actions/login.php:67 -#: actions/facebookhome.php:131 -#: actions/login.php:132 +#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Identifiant ou mot de passe incorrect." -#: ../actions/recoverpassword.php:265 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Les instructions pour récupérer votre mot de passe ont été envoyées à l'adresse courriel indiquée dans votre compte." +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Les instructions pour récupérer votre mot de passe ont été envoyées à " +"l'adresse courriel indiquée dans votre compte." -#: ../actions/updateprofile.php:114 -#: actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "URL de l'avatar invalide : '%s'" -#: ../actions/invite.php:55 -#: actions/invite.php:62 -#: actions/invite.php:70 +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Adresse courriel invalide : %s" -#: ../actions/updateprofile.php:98 -#: actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Site personnel invalide '%s'" -#: ../actions/updateprofile.php:82 -#: actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "URL de la licence invalide '%s'" -#: ../actions/postnotice.php:61 -#: actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: ../actions/postnotice.php:61 actions/postnotice.php:62 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Contenu invalide" -#: ../actions/postnotice.php:67 -#: actions/postnotice.php:68 +#: ../actions/postnotice.php:67 actions/postnotice.php:68 #: actions/postnotice.php:72 msgid "Invalid notice uri" msgstr "URI du statut invalide" -#: ../actions/postnotice.php:72 -#: actions/postnotice.php:73 +#: ../actions/postnotice.php:72 actions/postnotice.php:73 #: actions/postnotice.php:77 msgid "Invalid notice url" msgstr "URL du statut invalide" -#: ../actions/updateprofile.php:87 -#: actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "URL du profil invalide '%s'." -#: ../actions/remotesubscribe.php:96 -#: actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "URL du profil invalide (mauvais format)" #: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 -#: actions/finishremotesubscribe.php:80 +#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 msgid "Invalid profile URL returned by server." msgstr "URL du profil invalide, retourné par le serveur." -#: ../actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:37 +#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." msgstr "Taille incorrecte." -#: ../actions/finishopenidlogin.php:235 -#: ../actions/register.php:93 -#: ../actions/register.php:111 -#: actions/finishopenidlogin.php:241 -#: actions/register.php:103 -#: actions/register.php:121 -#: actions/finishopenidlogin.php:279 -#: actions/register.php:193 -#: actions/register.php:211 +#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 +#: ../actions/register.php:111 actions/finishopenidlogin.php:241 +#: actions/register.php:103 actions/register.php:121 +#: actions/finishopenidlogin.php:279 actions/register.php:193 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Identifiant ou mot de passe incorrect." -#: ../actions/invite.php:79 -#: actions/invite.php:86 -#: actions/invite.php:102 +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitation(s) envoyée(s)" -#: ../actions/invite.php:97 -#: actions/invite.php:104 -#: actions/invite.php:136 +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitation(s) envoyée(s) aux personnes suivantes :" -#: ../lib/util.php:306 -#: lib/util.php:322 -#: lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Inviter" -#: ../actions/invite.php:123 -#: actions/invite.php:130 -#: actions/invite.php:104 +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Inviter de nouveaux utilisateurs" -#: ../lib/util.php:261 -#: lib/util.php:277 -#: lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), version %s, disponible sous la licence [GNU Affero General Public License] (http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), " +"version %s, disponible sous la licence [GNU Affero General Public License] " +"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: ../actions/imsettings.php:173 -#: actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: ../actions/imsettings.php:173 actions/imsettings.php:181 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Identifiant Jabber déjà utilisé par un autre utilisateur." -#: ../actions/imsettings.php:62 -#: actions/imsettings.php:63 +#: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Adresse Jabber ou GTalk (ex : nom@mondomaine.com). Assurez-vous d'ajouter %s à votre liste d'amis dans votre logiciel de messagerie instantanée ou dans GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Adresse Jabber ou GTalk (ex : nom@mondomaine.com). Assurez-vous d'ajouter %s " +"à votre liste d'amis dans votre logiciel de messagerie instantanée ou dans " +"GTalk." -#: ../actions/profilesettings.php:57 -#: actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Langue" -#: ../actions/profilesettings.php:113 -#: actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "La langue est trop longue (255 caractères maximum)." -#: ../actions/profilesettings.php:52 -#: ../actions/register.php:173 -#: actions/profilesettings.php:85 -#: actions/register.php:187 -#: actions/profilesettings.php:117 -#: actions/register.php:408 -#: actions/showgroup.php:244 -#: actions/showstream.php:271 -#: actions/tagother.php:113 -#: lib/groupeditform.php:156 -#: lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: ../actions/profilesettings.php:52 ../actions/register.php:173 +#: actions/profilesettings.php:85 actions/register.php:187 +#: actions/profilesettings.php:117 actions/register.php:408 +#: actions/showgroup.php:244 actions/showstream.php:271 +#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Emplacement" -#: ../actions/profilesettings.php:104 -#: ../actions/register.php:85 -#: ../actions/updateprofile.php:108 -#: actions/profilesettings.php:219 -#: actions/register.php:92 -#: actions/updateprofile.php:109 -#: actions/editgroup.php:201 -#: actions/newgroup.php:152 -#: actions/profilesettings.php:208 -#: actions/register.php:177 -#: actions/updateprofile.php:112 +#: ../actions/profilesettings.php:104 ../actions/register.php:85 +#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 +#: actions/register.php:92 actions/updateprofile.php:109 +#: actions/editgroup.php:201 actions/newgroup.php:152 +#: actions/profilesettings.php:208 actions/register.php:177 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Emplacement trop long (maximum de 255 caractères)." -#: ../actions/login.php:97 -#: ../actions/login.php:106 -#: ../actions/openidlogin.php:68 -#: ../lib/util.php:310 -#: actions/login.php:97 -#: actions/login.php:106 -#: actions/openidlogin.php:77 -#: lib/util.php:326 -#: actions/facebooklogin.php:93 -#: actions/login.php:186 -#: actions/login.php:239 -#: actions/openidlogin.php:112 -#: lib/action.php:335 -#: lib/facebookaction.php:288 -#: lib/facebookaction.php:315 -#: lib/logingroupnav.php:75 +#: ../actions/login.php:97 ../actions/login.php:106 +#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 +#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 +#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 +#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Ouvrir une session" -#: ../actions/openidlogin.php:44 -#: actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Ouvrir une session avec un compte [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%action.openidlogin%%)." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez " +"un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%" +"action.openidlogin%%)." -#: ../lib/util.php:308 -#: lib/util.php:324 -#: lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Fermeture de session" -#: ../actions/register.php:166 -#: actions/register.php:180 -#: actions/register.php:393 +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nom plus long, votre \"vrai\" nom de préférence" -#: ../actions/login.php:110 -#: actions/login.php:110 -#: actions/login.php:245 -#: lib/facebookaction.php:320 +#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Mot de passe perdu ?" -#: ../actions/emailsettings.php:80 -#: ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 -#: actions/smssettings.php:89 +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Nouvelle adresse courriel pour poster ; annule l'ancienne." -#: ../actions/emailsettings.php:27 -#: actions/emailsettings.php:27 +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Configurez les courriels que vous souhaitez recevoir de %%site.name%%." -#: ../actions/showstream.php:300 -#: actions/showstream.php:315 -#: actions/showstream.php:480 +#: ../actions/showstream.php:300 actions/showstream.php:315 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membre depuis" -#: ../actions/userrss.php:70 -#: actions/userrss.php:67 -#: actions/userrss.php:72 +#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Micro-blogging par %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Votre fournisseur de téléphonie mobile. Si vous connaissez un fournisseur qui accepte la réception de SMS par courriel mais qui n'est pas listé ici, écrivez-nous à %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Votre fournisseur de téléphonie mobile. Si vous connaissez un fournisseur " +"qui accepte la réception de SMS par courriel mais qui n'est pas listé ici, " +"écrivez-nous à %s." -#: ../actions/finishopenidlogin.php:79 -#: ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 -#: actions/register.php:202 -#: actions/finishopenidlogin.php:107 -#: actions/register.php:429 +#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 +#: actions/finishopenidlogin.php:85 actions/register.php:202 +#: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Mes textes et mes fichiers sont disponibles sous" -#: ../actions/emailsettings.php:82 -#: ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 -#: actions/smssettings.php:91 -#: actions/emailsettings.php:142 -#: actions/smssettings.php:152 +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nouveau" -#: ../lib/mail.php:144 -#: lib/mail.php:144 -#: lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nouvelle adresse courriel pour poster dans %s" -#: ../actions/emailsettings.php:297 -#: actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nouvelle adresse courriel ajoutée." -#: ../actions/finishopenidlogin.php:71 -#: actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nouveau pseudo" -#: ../actions/newnotice.php:87 -#: actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: ../actions/newnotice.php:87 actions/newnotice.php:96 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nouveau statut" -#: ../actions/password.php:41 -#: ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 -#: actions/recoverpassword.php:185 -#: actions/passwordsettings.php:101 -#: actions/recoverpassword.php:219 +#: ../actions/password.php:41 ../actions/recoverpassword.php:179 +#: actions/profilesettings.php:180 actions/recoverpassword.php:185 +#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nouveau mot de passe" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte." +msgstr "" +"Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte." -#: ../actions/login.php:101 -#: ../actions/profilesettings.php:41 -#: ../actions/register.php:151 -#: actions/login.php:101 -#: actions/profilesettings.php:74 -#: actions/register.php:165 -#: actions/login.php:228 -#: actions/profilesettings.php:98 -#: actions/register.php:367 -#: actions/showgroup.php:224 -#: actions/showstream.php:251 -#: actions/tagother.php:95 -#: lib/facebookaction.php:308 -#: lib/groupeditform.php:137 +#: ../actions/login.php:101 ../actions/profilesettings.php:41 +#: ../actions/register.php:151 actions/login.php:101 +#: actions/profilesettings.php:74 actions/register.php:165 +#: actions/login.php:228 actions/profilesettings.php:98 +#: actions/register.php:367 actions/showgroup.php:224 +#: actions/showstream.php:251 actions/tagother.php:95 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Pseudo" -#: ../actions/finishopenidlogin.php:175 -#: ../actions/profilesettings.php:110 -#: ../actions/register.php:69 -#: actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 -#: actions/register.php:76 -#: actions/editgroup.php:183 -#: actions/finishopenidlogin.php:215 -#: actions/newgroup.php:134 -#: actions/profilesettings.php:214 -#: actions/register.php:159 +#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 +#: ../actions/register.php:69 actions/finishopenidlogin.php:181 +#: actions/profilesettings.php:225 actions/register.php:76 +#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 +#: actions/newgroup.php:134 actions/profilesettings.php:214 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Pseudo déjà utilisé. Essayez-en un autre." -#: ../actions/finishopenidlogin.php:165 -#: ../actions/profilesettings.php:88 -#: ../actions/register.php:67 -#: ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 -#: actions/profilesettings.php:203 -#: actions/register.php:74 -#: actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 -#: actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 +#: ../actions/register.php:67 ../actions/updateprofile.php:77 +#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 +#: actions/register.php:74 actions/updateprofile.php:78 +#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Les pseudos ne peuvent contenir que des caractères minuscules et des chiffres, sans espaces." +msgstr "" +"Les pseudos ne peuvent contenir que des caractères minuscules et des " +"chiffres, sans espaces." -#: ../actions/finishopenidlogin.php:170 -#: actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Pseudo non autorisé." -#: ../actions/remotesubscribe.php:72 -#: actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Pseudo de l'utilisateur que vous voulez suivre" -#: ../actions/recoverpassword.php:162 -#: actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Pseudo ou courriel" -#: ../actions/deletenotice.php:59 -#: actions/deletenotice.php:60 -#: actions/block.php:147 -#: actions/deletenotice.php:118 +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Non" -#: ../actions/imsettings.php:156 -#: actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: ../actions/imsettings.php:156 actions/imsettings.php:164 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Aucun identifiant Jabber" -#: ../actions/userauthorization.php:129 -#: actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Pas de requête d'autorisation !" -#: ../actions/smssettings.php:181 -#: actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Aucun fournisseur sélectionné." -#: ../actions/smssettings.php:316 -#: actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Aucun code entré" -#: ../actions/confirmaddress.php:33 -#: actions/confirmaddress.php:33 +#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." msgstr "Aucun code de confirmation." -#: ../actions/newnotice.php:44 -#: actions/newmessage.php:53 -#: actions/newnotice.php:44 -#: classes/Command.php:197 -#: actions/newmessage.php:109 -#: actions/newnotice.php:126 -#: classes/Command.php:223 +#: ../actions/newnotice.php:44 actions/newmessage.php:53 +#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 +#: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Aucun contenu !" -#: ../actions/emailsettings.php:174 -#: actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Aucune adresse courriel." -#: ../actions/userbyid.php:32 -#: actions/userbyid.php:32 -#: actions/userbyid.php:70 +#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "Aucun identifiant." -#: ../actions/emailsettings.php:271 -#: actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Aucune adresse pour le courriel entrant." #: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 -#: actions/finishremotesubscribe.php:68 +#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." msgstr "Aucun pseudo proposé par le serveur distant." -#: ../actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 -#: actions/leavegroup.php:81 +#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 +#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Aucun pseudo." -#: ../actions/emailsettings.php:222 -#: ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 -#: actions/emailsettings.php:240 -#: actions/imsettings.php:214 -#: actions/smssettings.php:237 -#: actions/emailsettings.php:363 -#: actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 +#: ../actions/smssettings.php:229 actions/emailsettings.php:240 +#: actions/imsettings.php:214 actions/smssettings.php:237 +#: actions/emailsettings.php:363 actions/imsettings.php:345 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Aucune confirmation à annuler." -#: ../actions/smssettings.php:176 -#: actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Aucun numéro de téléphone." #: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 -#: actions/finishremotesubscribe.php:75 +#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." msgstr "Aucun URL de profil renvoyé par le serveur." -#: ../actions/recoverpassword.php:226 -#: actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Aucune adresse courriel enregistrée pour cet utilisateur." -#: ../actions/userauthorization.php:49 -#: actions/userauthorization.php:55 +#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 #: actions/userauthorization.php:57 msgid "No request found!" msgstr "Aucune requête trouvée !" -#: ../actions/noticesearch.php:64 -#: ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 -#: actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 -#: actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 +#: actions/noticesearch.php:69 actions/peoplesearch.php:69 +#: actions/groupsearch.php:81 actions/noticesearch.php:104 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Aucun résultat " -#: ../actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:32 +#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 #: actions/avatarbynickname.php:64 msgid "No size." msgstr "Aucune taille" -#: ../actions/twitapistatuses.php:595 -#: actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 -#: actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Aucun statut trouvé avec cet identifiant. " -#: ../actions/twitapistatuses.php:555 -#: actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Aucun statut trouvé avec cet identifiant." -#: ../actions/openidsettings.php:135 -#: actions/openidsettings.php:144 +#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." msgstr "OpenID non trouvé." -#: ../actions/doc.php:29 -#: actions/doc.php:29 -#: actions/doc.php:64 +#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Document non trouvé. " -#: ../actions/shownotice.php:32 -#: ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 -#: actions/shownotice.php:32 -#: actions/shownotice.php:83 -#: lib/deleteaction.php:30 -#: actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 +#: ../lib/deleteaction.php:30 actions/shownotice.php:32 +#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Statut non trouvé. " -#: ../actions/recoverpassword.php:56 -#: actions/recoverpassword.php:56 +#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 #: actions/recoverpassword.php:62 msgid "No such recovery code." msgstr "Code de récupération non trouvé. " -#: ../actions/postnotice.php:56 -#: actions/postnotice.php:57 +#: ../actions/postnotice.php:56 actions/postnotice.php:57 #: actions/postnotice.php:60 msgid "No such subscription" msgstr "Abonnement non trouvé " -#: ../actions/all.php:34 -#: ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 -#: ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 -#: ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 -#: ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 -#: ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 -#: ../actions/xrds.php:35 -#: ../lib/gallery.php:57 -#: ../lib/subs.php:33 -#: ../lib/subs.php:82 -#: actions/all.php:34 -#: actions/allrss.php:35 -#: actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 -#: actions/foaf.php:40 -#: actions/ical.php:31 -#: actions/remotesubscribe.php:93 -#: actions/remotesubscribe.php:100 -#: actions/replies.php:57 -#: actions/repliesrss.php:35 -#: actions/showfavorites.php:34 -#: actions/showstream.php:110 -#: actions/userbyid.php:36 -#: actions/userrss.php:35 -#: actions/xrds.php:35 -#: classes/Command.php:120 -#: classes/Command.php:162 -#: classes/Command.php:203 -#: classes/Command.php:237 -#: lib/gallery.php:62 -#: lib/mailbox.php:36 -#: lib/subs.php:33 -#: lib/subs.php:95 -#: actions/all.php:53 -#: actions/allrss.php:66 -#: actions/avatarbynickname.php:75 -#: actions/favoritesrss.php:64 -#: actions/foaf.php:41 -#: actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 -#: actions/replies.php:73 -#: actions/repliesrss.php:38 -#: actions/showfavorites.php:105 -#: actions/showstream.php:100 -#: actions/userbyid.php:74 -#: actions/usergroups.php:92 -#: actions/userrss.php:38 -#: actions/xrds.php:73 -#: classes/Command.php:140 -#: classes/Command.php:185 -#: classes/Command.php:234 -#: classes/Command.php:271 -#: lib/galleryaction.php:60 -#: lib/mailbox.php:82 -#: lib/subs.php:34 -#: lib/subs.php:109 +#: ../actions/all.php:34 ../actions/allrss.php:35 +#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 +#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 +#: ../actions/replies.php:57 ../actions/repliesrss.php:35 +#: ../actions/showstream.php:110 ../actions/userbyid.php:36 +#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 +#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 +#: actions/allrss.php:35 actions/avatarbynickname.php:43 +#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 +#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 +#: actions/replies.php:57 actions/repliesrss.php:35 +#: actions/showfavorites.php:34 actions/showstream.php:110 +#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 +#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 +#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 +#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 +#: actions/foaf.php:41 actions/remotesubscribe.php:123 +#: actions/remotesubscribe.php:130 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/showstream.php:100 actions/userbyid.php:74 +#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 +#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 +#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Utilisateur non trouvé." -#: ../actions/recoverpassword.php:211 -#: actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Aucun utilisateur trouvé avec ce courriel ou ce nom." -#: ../lib/gallery.php:80 -#: lib/gallery.php:85 +#: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "Il n'y a personne à montrer !" -#: ../actions/recoverpassword.php:60 -#: actions/recoverpassword.php:60 +#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 #: actions/recoverpassword.php:66 msgid "Not a recovery code." msgstr "Ceci n'est pas un code de récupération." -#: ../scripts/maildaemon.php:50 -#: scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Ceci n'est pas un utilisateur inscrit." -#: ../lib/twitterapi.php:226 -#: ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 -#: lib/twitterapi.php:391 -#: lib/twitterapi.php:418 -#: lib/twitterapi.php:502 -#: lib/twitterapi.php:448 -#: lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Format de données non supporté." -#: ../actions/imsettings.php:167 -#: actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: ../actions/imsettings.php:167 actions/imsettings.php:175 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Identifiant Jabber invalide." -#: ../lib/openid.php:131 -#: lib/openid.php:131 -#: lib/openid.php:140 +#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "OpenID invalide." -#: ../actions/emailsettings.php:185 -#: actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Adresse courriel invalide" -#: ../actions/register.php:63 -#: actions/register.php:70 -#: actions/register.php:152 +#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Adresse courriel invalide." -#: ../actions/profilesettings.php:91 -#: ../actions/register.php:71 -#: actions/profilesettings.php:206 -#: actions/register.php:78 -#: actions/editgroup.php:186 -#: actions/newgroup.php:137 -#: actions/profilesettings.php:195 -#: actions/register.php:161 +#: ../actions/profilesettings.php:91 ../actions/register.php:71 +#: actions/profilesettings.php:206 actions/register.php:78 +#: actions/editgroup.php:186 actions/newgroup.php:137 +#: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Pseudo invalide." -#: ../actions/remotesubscribe.php:120 -#: actions/remotesubscribe.php:129 +#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 #: actions/remotesubscribe.php:159 msgid "Not a valid profile URL (incorrect services)." msgstr "URL de profil invalide (services incorrects)." -#: ../actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:122 +#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 #: actions/remotesubscribe.php:152 msgid "Not a valid profile URL (no XRDS defined)." msgstr "URL de profil invalide (aucun XRDS défini)." -#: ../actions/remotesubscribe.php:104 -#: actions/remotesubscribe.php:113 +#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 #: actions/remotesubscribe.php:143 msgid "Not a valid profile URL (no YADIS document)." msgstr "URL de profil invalide (aucun document YADIS)." -#: ../actions/avatar.php:95 -#: actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: ../actions/avatar.php:95 actions/profilesettings.php:332 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Ceci n'est pas une image, ou c'est un fichier corrompu." #: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 -#: actions/finishremotesubscribe.php:54 +#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 msgid "Not authorized." msgstr "Non autorisé." #: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Réponse inattendue !" -#: ../actions/twitapistatuses.php:422 -#: actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Non trouvé" -#: ../actions/finishaddopenid.php:29 -#: ../actions/logout.php:33 -#: ../actions/newnotice.php:29 -#: ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 -#: ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 -#: actions/disfavor.php:29 -#: actions/favor.php:30 -#: actions/finishaddopenid.php:29 -#: actions/logout.php:33 -#: actions/newmessage.php:28 -#: actions/newnotice.php:29 -#: actions/subscribe.php:28 -#: actions/unsubscribe.php:25 -#: lib/deleteaction.php:38 -#: lib/settingsaction.php:27 -#: actions/block.php:59 -#: actions/disfavor.php:61 -#: actions/favor.php:64 -#: actions/finishaddopenid.php:67 -#: actions/logout.php:71 -#: actions/newmessage.php:83 -#: actions/newnotice.php:90 -#: actions/nudge.php:63 -#: actions/subedit.php:31 -#: actions/subscribe.php:30 -#: actions/unblock.php:60 -#: actions/unsubscribe.php:27 -#: lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 +#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 +#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 +#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 +#: actions/finishaddopenid.php:29 actions/logout.php:33 +#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 +#: actions/unsubscribe.php:25 lib/deleteaction.php:38 +#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 +#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 +#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 +#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 +#: actions/unsubscribe.php:27 lib/deleteaction.php:66 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Non connecté." -#: ../lib/subs.php:91 -#: lib/subs.php:104 -#: lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Pas abonné !" -#: ../actions/opensearch.php:35 -#: actions/opensearch.php:35 +#: ../actions/opensearch.php:35 actions/opensearch.php:35 #: actions/opensearch.php:67 msgid "Notice Search" msgstr "Recherche de statut" -#: ../actions/showstream.php:82 -#: actions/showstream.php:82 -#: actions/showstream.php:180 -#: actions/showstream.php:187 +#: ../actions/showstream.php:82 actions/showstream.php:82 +#: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 #, php-format msgid "Notice feed for %s" msgstr "Flux des statuts de %s" -#: ../actions/shownotice.php:39 -#: actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: ../actions/shownotice.php:39 actions/shownotice.php:39 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Le statut n'a pas de profil" -#: ../actions/showstream.php:316 -#: actions/showstream.php:331 -#: actions/showstream.php:504 -#: lib/facebookaction.php:477 -#: lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: ../actions/showstream.php:316 actions/showstream.php:331 +#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Statuts" -#: ../actions/tag.php:35 -#: ../actions/tag.php:81 -#: actions/tag.php:35 -#: actions/tag.php:81 -#: actions/tag.php:41 +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Statuts marqués avec %s" -#: ../actions/password.php:39 -#: actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: ../actions/password.php:39 actions/profilesettings.php:178 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Ancien mot de passe" -#: ../lib/settingsaction.php:96 -#: ../lib/util.php:314 -#: lib/settingsaction.php:90 -#: lib/util.php:330 -#: lib/accountsettingsaction.php:116 -#: lib/action.php:341 -#: lib/logingroupnav.php:81 +#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 +#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" -#: ../actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configuration du compte OpenID" -#: ../lib/openid.php:180 -#: lib/openid.php:180 -#: lib/openid.php:266 +#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Soumission automatique OpenID" -#: ../actions/finishaddopenid.php:99 -#: ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 -#: actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 -#: actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 -#: actions/openidlogin.php:80 +#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 +#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 +#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 +#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Connexion OpenID" -#: ../actions/openidlogin.php:65 -#: ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 -#: actions/openidsettings.php:50 -#: actions/openidlogin.php:102 -#: actions/openidsettings.php:101 +#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 +#: actions/openidlogin.php:74 actions/openidsettings.php:50 +#: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL OpenID" -#: ../actions/finishaddopenid.php:42 -#: ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 -#: actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 -#: actions/finishopenidlogin.php:130 +#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 +#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 +#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Authentification OpenID annulée." -#: ../actions/finishaddopenid.php:46 -#: ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 -#: actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 -#: actions/finishopenidlogin.php:134 +#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 +#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 +#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "L'authentification OpenID a échoué : %s'" -#: ../lib/openid.php:133 -#: lib/openid.php:133 -#: lib/openid.php:142 +#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Erreur OpenID : %s" -#: ../actions/openidsettings.php:144 -#: actions/openidsettings.php:153 +#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 #: actions/openidsettings.php:231 msgid "OpenID removed." msgstr "OpenID retiré." -#: ../actions/openidsettings.php:37 -#: actions/openidsettings.php:37 +#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 #: actions/openidsettings.php:59 msgid "OpenID settings" msgstr "Paramètres OpenID" -#: ../actions/invite.php:135 -#: actions/invite.php:143 -#: actions/invite.php:180 +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Ajouter un message personnel à l'invitation (optionnel)." -#: ../actions/avatar.php:84 -#: actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: ../actions/avatar.php:84 actions/profilesettings.php:321 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Transfert partiel." -#: ../actions/finishopenidlogin.php:90 -#: ../actions/login.php:102 -#: ../actions/register.php:153 -#: ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 -#: actions/login.php:102 -#: actions/register.php:167 -#: actions/finishopenidlogin.php:118 -#: actions/login.php:231 -#: actions/register.php:372 -#: lib/accountsettingsaction.php:110 -#: lib/facebookaction.php:311 +#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 +#: ../actions/register.php:153 ../lib/settingsaction.php:93 +#: actions/finishopenidlogin.php:96 actions/login.php:102 +#: actions/register.php:167 actions/finishopenidlogin.php:118 +#: actions/login.php:231 actions/register.php:372 +#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Mot de passe" -#: ../actions/recoverpassword.php:288 -#: actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Le mot de passe et sa confirmation ne correspondent pas." -#: ../actions/recoverpassword.php:284 -#: actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Le mot de passe doit contenir au moins 6 caractères." -#: ../actions/recoverpassword.php:261 -#: ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 -#: actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 -#: actions/recoverpassword.php:301 +#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 +#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Récupération de mot de passe demandée" -#: ../actions/password.php:89 -#: ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 -#: actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 -#: actions/recoverpassword.php:200 +#: ../actions/password.php:89 ../actions/recoverpassword.php:313 +#: actions/profilesettings.php:408 actions/recoverpassword.php:326 +#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Mot de passe enregistré." -#: ../actions/password.php:61 -#: ../actions/register.php:88 -#: actions/profilesettings.php:380 -#: actions/register.php:98 -#: actions/passwordsettings.php:145 -#: actions/register.php:183 +#: ../actions/password.php:61 ../actions/register.php:88 +#: actions/profilesettings.php:380 actions/register.php:98 +#: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Les mots de passe ne correspondent pas." -#: ../lib/searchaction.php:100 -#: lib/searchaction.php:100 +#: ../lib/searchaction.php:100 lib/searchaction.php:100 #: lib/searchgroupnav.php:80 msgid "People" msgstr "Personnes" -#: ../actions/opensearch.php:33 -#: actions/opensearch.php:33 +#: ../actions/opensearch.php:33 actions/opensearch.php:33 #: actions/opensearch.php:64 msgid "People Search" msgstr "Recherche de personnes" -#: ../actions/peoplesearch.php:33 -#: actions/peoplesearch.php:33 +#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" msgstr "Recherche de personnes" -#: ../lib/stream.php:50 -#: lib/personal.php:50 -#: lib/personalgroupnav.php:98 +#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personnel" -#: ../actions/invite.php:133 -#: actions/invite.php:141 -#: actions/invite.php:178 +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Message personnel" -#: ../actions/smssettings.php:69 -#: actions/smssettings.php:69 +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" +msgstr "" +"Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous abonner aux statuts de quelqu'un, cliquez \"Annuler\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " +"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " +"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." -#: ../actions/imsettings.php:73 -#: actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: ../actions/imsettings.php:73 actions/imsettings.php:74 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Publier un statut chaque fois que mon statut est modifié dans Jabber/GTalk" +msgstr "" +"Publier un statut chaque fois que mon statut est modifié dans Jabber/GTalk" -#: ../actions/emailsettings.php:85 -#: ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 -#: actions/emailsettings.php:86 -#: actions/imsettings.php:68 -#: actions/smssettings.php:94 -#: actions/twittersettings.php:70 -#: actions/emailsettings.php:147 -#: actions/imsettings.php:133 -#: actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 +#: ../actions/smssettings.php:94 actions/emailsettings.php:86 +#: actions/imsettings.php:68 actions/smssettings.php:94 +#: actions/twittersettings.php:70 actions/emailsettings.php:147 +#: actions/imsettings.php:133 actions/smssettings.php:157 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Préférences" -#: ../actions/emailsettings.php:162 -#: ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 -#: actions/emailsettings.php:180 -#: actions/imsettings.php:152 -#: actions/smssettings.php:171 -#: actions/emailsettings.php:286 -#: actions/imsettings.php:258 -#: actions/othersettings.php:168 -#: actions/smssettings.php:272 +#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 +#: ../actions/smssettings.php:163 actions/emailsettings.php:180 +#: actions/imsettings.php:152 actions/smssettings.php:171 +#: actions/emailsettings.php:286 actions/imsettings.php:258 +#: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Préférences enregistrées" -#: ../actions/profilesettings.php:57 -#: actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Langue préférée" -#: ../lib/util.php:328 -#: lib/util.php:344 -#: lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Confidentialité" -#: ../classes/Notice.php:95 -#: ../classes/Notice.php:106 -#: classes/Notice.php:109 -#: classes/Notice.php:119 -#: classes/Notice.php:145 -#: classes/Notice.php:155 +#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 +#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problème lors de l'enregistrement du statut." -#: ../lib/settingsaction.php:84 -#: ../lib/stream.php:60 -#: lib/personal.php:60 -#: lib/settingsaction.php:84 -#: lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 +#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" -#: ../actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL du profil" -#: ../actions/profilesettings.php:34 -#: actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Paramètres du profil" -#: ../actions/postnotice.php:51 -#: ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 -#: actions/updateprofile.php:53 -#: actions/postnotice.php:55 -#: actions/updateprofile.php:56 +#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 +#: actions/postnotice.php:52 actions/updateprofile.php:53 +#: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profil inconnu" -#: ../actions/public.php:54 -#: actions/public.php:54 -#: actions/public.php:124 +#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 msgid "Public Stream Feed" msgstr "Fil du flux public" -#: ../actions/public.php:33 -#: actions/public.php:33 -#: actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Flux public" -#: ../actions/imsettings.php:79 -#: actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publier un MicroID pour mon adresse Jabber/GTalk." -#: ../actions/emailsettings.php:94 -#: actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publier un MicroID pour mon adresse courriel." -#: ../actions/tag.php:75 -#: ../actions/tag.php:76 -#: actions/tag.php:75 +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 #: actions/tag.php:76 msgid "Recent Tags" msgstr "Marquages récents" -#: ../actions/recoverpassword.php:166 -#: actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Récupérer" -#: ../actions/recoverpassword.php:156 -#: actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Récupérer le mot de passe" -#: ../actions/recoverpassword.php:67 -#: actions/recoverpassword.php:67 +#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 #: actions/recoverpassword.php:73 msgid "Recovery code for unknown user." msgstr "Code de récupération d'un utilisateur inconnu." -#: ../actions/register.php:142 -#: ../actions/register.php:193 -#: ../lib/util.php:312 -#: actions/register.php:152 -#: actions/register.php:207 -#: lib/util.php:328 -#: actions/register.php:69 -#: actions/register.php:436 -#: lib/action.php:338 -#: lib/facebookaction.php:277 -#: lib/logingroupnav.php:78 +#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 +#: actions/register.php:152 actions/register.php:207 lib/util.php:328 +#: actions/register.php:69 actions/register.php:436 lib/action.php:338 +#: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Créer un compte" -#: ../actions/register.php:28 -#: actions/register.php:28 -#: actions/finishopenidlogin.php:196 -#: actions/register.php:90 +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Création de compte non autorisée." -#: ../actions/register.php:200 -#: actions/register.php:214 -#: actions/register.php:67 +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Compte créé avec succès" -#: ../actions/userauthorization.php:120 -#: actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Refuser" -#: ../actions/login.php:103 -#: ../actions/register.php:176 -#: actions/login.php:103 -#: actions/register.php:190 -#: actions/login.php:234 -#: actions/openidlogin.php:107 -#: actions/register.php:414 +#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 +#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Se souvenir de moi" -#: ../actions/updateprofile.php:70 -#: actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Profil distant sans profil correspondant" -#: ../actions/remotesubscribe.php:65 -#: actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Abonnement à distance " -#: ../actions/emailsettings.php:47 -#: ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 -#: ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 -#: ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 -#: actions/emailsettings.php:76 -#: actions/imsettings.php:49 -#: actions/openidsettings.php:108 -#: actions/smssettings.php:50 -#: actions/smssettings.php:84 -#: actions/twittersettings.php:59 -#: actions/emailsettings.php:101 -#: actions/emailsettings.php:134 -#: actions/imsettings.php:102 -#: actions/openidsettings.php:166 -#: actions/smssettings.php:103 -#: actions/smssettings.php:146 -#: actions/twittersettings.php:115 +#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 +#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 +#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 +#: actions/emailsettings.php:48 actions/emailsettings.php:76 +#: actions/imsettings.php:49 actions/openidsettings.php:108 +#: actions/smssettings.php:50 actions/smssettings.php:84 +#: actions/twittersettings.php:59 actions/emailsettings.php:101 +#: actions/emailsettings.php:134 actions/imsettings.php:102 +#: actions/openidsettings.php:166 actions/smssettings.php:103 +#: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Retirer " -#: ../actions/openidsettings.php:68 -#: actions/openidsettings.php:69 +#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 #: actions/openidsettings.php:123 msgid "Remove OpenID" msgstr "Retirer l'OpenID" -#: ../actions/openidsettings.php:73 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Vous ne pourrez plus ouvrir de session si vous retirez votre seul OpenID ! Si vous avez besoin de le retirer, ajoutez d'abord un autre OpenID." +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Vous ne pourrez plus ouvrir de session si vous retirez votre seul OpenID ! " +"Si vous avez besoin de le retirer, ajoutez d'abord un autre OpenID." -#: ../lib/stream.php:55 -#: lib/personal.php:55 -#: lib/personalgroupnav.php:103 +#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Réponses" -#: ../actions/replies.php:47 -#: ../actions/repliesrss.php:76 -#: ../lib/stream.php:56 -#: actions/replies.php:47 -#: actions/repliesrss.php:62 -#: lib/personal.php:56 -#: actions/replies.php:116 -#: actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 +#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 +#: actions/replies.php:116 actions/repliesrss.php:67 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Réponses à %s" -#: ../actions/recoverpassword.php:183 -#: actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Réinitialiser" -#: ../actions/recoverpassword.php:173 -#: actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Réinitialiser le mot de passe" -#: ../lib/settingsaction.php:99 -#: lib/settingsaction.php:93 -#: actions/subscriptions.php:123 -#: lib/connectsettingsaction.php:107 +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" -#: ../actions/smssettings.php:67 -#: actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Numéro SMS" -#: ../actions/smssettings.php:33 -#: actions/smssettings.php:33 +#: ../actions/smssettings.php:33 actions/smssettings.php:33 #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Paramètres SMS" -#: ../lib/mail.php:219 -#: lib/mail.php:225 -#: lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Confirmation SMS" -#: ../actions/recoverpassword.php:182 -#: actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Identique au mot de passe ci-dessus" -#: ../actions/register.php:156 -#: actions/register.php:170 -#: actions/register.php:377 +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." -msgstr "" -"Identique au mot de passe ci-dessus. Requis." +msgstr "Identique au mot de passe ci-dessus. Requis." -#: ../actions/emailsettings.php:97 -#: ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 -#: ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 -#: actions/imsettings.php:82 -#: actions/profilesettings.php:101 -#: actions/smssettings.php:100 -#: actions/twittersettings.php:83 -#: actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 -#: actions/imsettings.php:157 -#: actions/othersettings.php:117 -#: actions/profilesettings.php:150 -#: actions/smssettings.php:169 -#: actions/subscriptions.php:124 -#: actions/tagother.php:152 -#: actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 +#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 +#: actions/emailsettings.php:104 actions/imsettings.php:82 +#: actions/profilesettings.php:101 actions/smssettings.php:100 +#: actions/twittersettings.php:83 actions/emailsettings.php:182 +#: actions/facebooksettings.php:114 actions/imsettings.php:157 +#: actions/othersettings.php:117 actions/profilesettings.php:150 +#: actions/smssettings.php:169 actions/subscriptions.php:124 +#: actions/tagother.php:152 actions/twittersettings.php:161 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Enregistrer" -#: ../lib/searchaction.php:84 -#: ../lib/util.php:300 -#: lib/searchaction.php:84 -#: lib/util.php:316 -#: lib/action.php:325 +#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Rechercher" -#: ../actions/noticesearch.php:80 -#: actions/noticesearch.php:85 +#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 #: actions/noticesearch.php:127 msgid "Search Stream Feed" msgstr "Rechercher dans le flux de recherche" -#: ../actions/noticesearch.php:30 -#: actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Recherchez les statuts %%site.name%% par leur contenu. Séparez les termes de recherche par des espaces. Ils doivent contenir au moins 3 caractères." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Recherchez les statuts %%site.name%% par leur contenu. Séparez les termes de " +"recherche par des espaces. Ils doivent contenir au moins 3 caractères." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils doivent contenir au moins 3 caractères." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " +"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " +"doivent contenir au moins 3 caractères." -#: ../actions/smssettings.php:296 -#: actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Sélectionnez un fournisseur de téléphone mobile" -#: ../actions/invite.php:137 -#: ../lib/util.php:1172 -#: actions/invite.php:145 -#: lib/util.php:1306 -#: lib/util.php:1731 -#: actions/invite.php:182 -#: lib/messageform.php:167 -#: lib/noticeform.php:177 +#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 +#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Envoyer" -#: ../actions/emailsettings.php:73 -#: ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 -#: actions/smssettings.php:82 -#: actions/emailsettings.php:132 -#: actions/smssettings.php:145 +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Écrivez à cette adresse courriel pour publier de nouveaux statuts. " -#: ../actions/emailsettings.php:88 -#: actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." -msgstr "" -"Avertissez-moi par courriel des nouveaux abonnements." +msgstr "Avertissez-moi par courriel des nouveaux abonnements." -#: ../actions/imsettings.php:70 -#: actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: ../actions/imsettings.php:70 actions/imsettings.php:71 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Envoyez-moi les statuts par Jabber/GTalk." -#: ../actions/smssettings.php:97 -#: actions/smssettings.php:97 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Envoyez-moi les statuts par SMS ; je comprends que cela pourrait affecter ma facture de téléphonie mobile." +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Envoyez-moi les statuts par SMS ; je comprends que cela pourrait affecter ma " +"facture de téléphonie mobile." -#: ../actions/imsettings.php:76 -#: actions/imsettings.php:77 +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -"Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne suis pas abonné." +"Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne " +"suis pas abonné." -#: ../lib/util.php:304 -#: lib/util.php:320 -#: lib/facebookaction.php:215 +#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Préférences" -#: ../actions/profilesettings.php:192 -#: actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Préférences enregistrées." -#: ../actions/tag.php:60 -#: actions/tag.php:60 +#: ../actions/tag.php:60 actions/tag.php:60 msgid "Showing most popular tags from the last week" msgstr "Marquages les plus populaires des 7 derniers jours" -#: ../actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:66 +#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." msgstr "Quelqu'un utilise déjà cet OpenID." -#: ../actions/finishopenidlogin.php:42 -#: ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 -#: actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 -#: actions/openidsettings.php:202 +#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 +#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 +#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 msgid "Something weird happened." msgstr "Quelque chose de bizarre est arrivé." -#: ../scripts/maildaemon.php:58 -#: scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Désolé, la réception de courriels n'est pas permise. " -#: ../scripts/maildaemon.php:54 -#: scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." -msgstr "" -"Désolé, ceci n'est pas votre adresse de courriel entrant." +msgstr "Désolé, ceci n'est pas votre adresse de courriel entrant." -#: ../lib/util.php:330 -#: lib/util.php:346 -#: lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Source" -#: ../actions/showstream.php:296 -#: actions/showstream.php:311 -#: actions/showstream.php:476 +#: ../actions/showstream.php:296 actions/showstream.php:311 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistiques" -#: ../actions/finishopenidlogin.php:182 -#: ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 -#: actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 -#: actions/finishopenidlogin.php:290 +#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 +#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 +#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "OpenID non trouvé." -#: ../actions/remotesubscribe.php:75 -#: ../actions/showstream.php:188 -#: ../actions/showstream.php:197 -#: actions/remotesubscribe.php:84 -#: actions/showstream.php:197 -#: actions/showstream.php:206 -#: actions/remotesubscribe.php:113 -#: actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 +#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 +#: actions/showstream.php:197 actions/showstream.php:206 +#: actions/remotesubscribe.php:113 actions/showstream.php:376 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "S'abonner" -#: ../actions/showstream.php:313 -#: ../actions/subscribers.php:27 -#: actions/showstream.php:328 -#: actions/subscribers.php:27 -#: actions/showstream.php:436 -#: actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: ../actions/showstream.php:313 ../actions/subscribers.php:27 +#: actions/showstream.php:328 actions/subscribers.php:27 +#: actions/showstream.php:436 actions/showstream.php:498 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnés" -#: ../actions/userauthorization.php:310 -#: actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Abonnement autorisé" -#: ../actions/userauthorization.php:320 -#: actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Abonnement refusé" -#: ../actions/showstream.php:230 -#: ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 -#: actions/showstream.php:240 -#: actions/showstream.php:322 -#: actions/subscriptions.php:27 -#: actions/showstream.php:407 -#: actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: ../actions/showstream.php:230 ../actions/showstream.php:307 +#: ../actions/subscriptions.php:27 actions/showstream.php:240 +#: actions/showstream.php:322 actions/subscriptions.php:27 +#: actions/showstream.php:407 actions/showstream.php:489 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnements" -#: ../actions/avatar.php:87 -#: actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: ../actions/avatar.php:87 actions/profilesettings.php:324 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Erreur système lors du transfert du fichier." -#: ../actions/tag.php:41 -#: ../lib/util.php:301 -#: actions/tag.php:41 -#: lib/util.php:317 -#: actions/profilesettings.php:122 -#: actions/showstream.php:297 -#: actions/tagother.php:147 -#: actions/tagother.php:207 -#: lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Marquages" -#: ../lib/searchaction.php:104 -#: lib/searchaction.php:104 +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Texte" -#: ../actions/noticesearch.php:34 -#: actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Recherche de texte" -#: ../actions/openidsettings.php:140 -#: actions/openidsettings.php:149 +#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 #: actions/openidsettings.php:227 msgid "That OpenID does not belong to you." msgstr "Cet OpenID ne vous appartient pas." -#: ../actions/confirmaddress.php:52 -#: actions/confirmaddress.php:52 +#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 #: actions/confirmaddress.php:94 msgid "That address has already been confirmed." msgstr "Cette adresse a déjà été confirmée." -#: ../actions/confirmaddress.php:43 -#: actions/confirmaddress.php:43 +#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 #: actions/confirmaddress.php:85 msgid "That confirmation code is not for you!" msgstr "Ce code de confirmation n'est pas pour vous !" -#: ../actions/emailsettings.php:191 -#: actions/emailsettings.php:209 +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." -msgstr "" -"Cette adresse courriel appartient déjà à un autre utilisateur." +msgstr "Cette adresse courriel appartient déjà à un autre utilisateur." -#: ../actions/avatar.php:80 -#: actions/profilesettings.php:317 +#: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." msgstr "Ce fichier est trop gros." -#: ../actions/imsettings.php:170 -#: actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: ../actions/imsettings.php:170 actions/imsettings.php:178 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Vous utilisez déjà cet idenfiant Jabber." -#: ../actions/emailsettings.php:188 -#: actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." -msgstr "" -"Vous utilisez déjà cette adresse courriel." +msgstr "Vous utilisez déjà cette adresse courriel." -#: ../actions/smssettings.php:188 -#: actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." -msgstr "" -"Vous utilisez déjà ce numéro de téléphone." +msgstr "Vous utilisez déjà ce numéro de téléphone." -#: ../actions/imsettings.php:233 -#: actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: ../actions/imsettings.php:233 actions/imsettings.php:241 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Ceci n'est pas votre identifiant Jabber." -#: ../actions/emailsettings.php:249 -#: actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." -msgstr "" -"Ceci n'est pas votre adresse courriel." +msgstr "Ceci n'est pas votre adresse courriel." -#: ../actions/smssettings.php:257 -#: actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." -msgstr "" -"Ceci n'est pas votre numéro de téléphone." +msgstr "Ceci n'est pas votre numéro de téléphone." -#: ../actions/emailsettings.php:226 -#: ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 -#: actions/imsettings.php:218 -#: actions/emailsettings.php:367 -#: actions/imsettings.php:349 +#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 +#: actions/emailsettings.php:244 actions/imsettings.php:218 +#: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Cette adresse de messagerie instantanée est erronée." -#: ../actions/smssettings.php:233 -#: actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." -msgstr "" -"Ce code de confirmation est incorrect." +msgstr "Ce code de confirmation est incorrect." -#: ../actions/smssettings.php:191 -#: actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." -msgstr "" -"Ce numéro de téléphone est déjà utilisé." +msgstr "Ce numéro de téléphone est déjà utilisé." -#: ../actions/newnotice.php:49 -#: ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 -#: actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 -#: actions/twitapistatuses.php:276 +#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 +#: actions/newnotice.php:49 actions/twitapistatuses.php:330 +#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." -#: ../actions/twitapiaccount.php:74 -#: actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "C'est trop long ! Vous n'avez droit qu'à 255 caractères." -#: ../actions/confirmaddress.php:92 -#: actions/confirmaddress.php:92 +#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'adresse \"%s\" a été validée pour votre compte." -#: ../actions/emailsettings.php:264 -#: ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 -#: actions/emailsettings.php:282 -#: actions/imsettings.php:258 -#: actions/smssettings.php:282 -#: actions/emailsettings.php:416 -#: actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 +#: ../actions/smssettings.php:274 actions/emailsettings.php:282 +#: actions/imsettings.php:258 actions/smssettings.php:282 +#: actions/emailsettings.php:416 actions/imsettings.php:402 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "L'adresse a été supprimée." -#: ../actions/userauthorization.php:312 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment compléter l'autorisation de l'abonnement. Votre jeton d'abonnement est :" +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. " +"Vérifiez les instructions du site pour savoir comment compléter " +"l'autorisation de l'abonnement. Votre jeton d'abonnement est :" -#: ../actions/userauthorization.php:322 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment refuser pleinement l'abonnement. " +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez " +"les instructions du site pour savoir comment refuser pleinement " +"l'abonnement. " -#: ../actions/subscribers.php:35 -#: actions/subscribers.php:35 +#: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Ces personnes suivent les statuts de %s." -#: ../actions/subscribers.php:33 -#: actions/subscribers.php:33 +#: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Ces personnes suivent vos statuts. " -#: ../actions/subscriptions.php:35 -#: actions/subscriptions.php:35 +#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Les statuts de ces personnes sont suivis par %s." -#: ../actions/subscriptions.php:33 -#: actions/subscriptions.php:33 +#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Vous suivez les statuts de ces personnes. " -#: ../actions/invite.php:89 -#: actions/invite.php:96 -#: actions/invite.php:128 -msgid "These people are already users and you were automatically subscribed to them:" +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "Vous avez été automatiquement abonné aux utilisateurs suivants :" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Ce code de validation est périmé. Veuillez recommencer. " -#: ../lib/openid.php:195 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Ce formulaire devrait se transmettre automatiquement. Si ce n'est pas le cas, cliquez sur le bouton de soumission pour accéder à votre fournisseur OpenID." +#: ../lib/openid.php:195 lib/openid.php:206 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Ce formulaire devrait se transmettre automatiquement. Si ce n'est pas le " +"cas, cliquez sur le bouton de soumission pour accéder à votre fournisseur " +"OpenID." -#: ../actions/finishopenidlogin.php:56 -#: actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "C'est votre première ouverture de session dans %s, et nous devons relier votre OpenID à un compte local. Vous pouvez soit créer un nouveau compte, soit relier votre OpenID à un compte existant." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"C'est votre première ouverture de session dans %s, et nous devons relier " +"votre OpenID à un compte local. Vous pouvez soit créer un nouveau compte, " +"soit relier votre OpenID à un compte existant." -#: ../actions/twitapifriendships.php:108 -#: ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 -#: actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 -#: actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 -#: actions/twitapistatuses.php:436 +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Ce processus requiert un POST ou un DELETE." -#: ../actions/twitapiaccount.php:65 -#: ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 -#: actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 -#: actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 -#: actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 -#: actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Ce processus requiert un POST." -#: ../lib/util.php:164 -#: lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" -msgstr "Cette page n'est pas disponible dans un des formats que vous avez autorisés." +msgstr "" +"Cette page n'est pas disponible dans un des formats que vous avez autorisés." -#: ../actions/profilesettings.php:63 -#: actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Fuseau horaire" -#: ../actions/profilesettings.php:107 -#: actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Aucun fuseau horaire n'a été choisi." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Pour vous abonner, vous devez [ouvrir une session](%%action.login%%), ou [créer un nouveau compte](%%action.register%%). Si vous avez déjà un compte sur un [site de micro-blogging compatible](%%doc.openmublog%%), entrez l'URL de votre profil ci-dessous." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Pour vous abonner, vous devez [ouvrir une session](%%action.login%%), ou " +"[créer un nouveau compte](%%action.register%%). Si vous avez déjà un compte " +"sur un [site de micro-blogging compatible](%%doc.openmublog%%), entrez l'URL " +"de votre profil ci-dessous." -#: ../actions/twitapifriendships.php:163 -#: actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Vous devez fournir 2 identifiants ou pseudos." -#: ../actions/profilesettings.php:48 -#: ../actions/register.php:169 -#: actions/profilesettings.php:81 -#: actions/register.php:183 -#: actions/profilesettings.php:109 +#: ../actions/profilesettings.php:48 ../actions/register.php:169 +#: actions/profilesettings.php:81 actions/register.php:183 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Adresse de votre site Web, blogue, ou profil dans un autre site" -#: ../actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL de votre profil sur un autre service de micro-blogging compatible" -#: ../actions/emailsettings.php:130 -#: ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 -#: ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 -#: actions/imsettings.php:118 -#: actions/recoverpassword.php:39 -#: actions/smssettings.php:143 -#: actions/twittersettings.php:108 -#: actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 -#: actions/grouplogo.php:317 -#: actions/imsettings.php:214 -#: actions/recoverpassword.php:44 -#: actions/smssettings.php:236 -#: actions/twittersettings.php:302 +#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 +#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 +#: actions/emailsettings.php:144 actions/imsettings.php:118 +#: actions/recoverpassword.php:39 actions/smssettings.php:143 +#: actions/twittersettings.php:108 actions/avatarsettings.php:258 +#: actions/emailsettings.php:242 actions/grouplogo.php:317 +#: actions/imsettings.php:214 actions/recoverpassword.php:44 +#: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Soumission de formulaire inattendue." -#: ../actions/recoverpassword.php:276 -#: actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Réinitialisation inattendue du mot de passe." -#: ../index.php:57 -#: index.php:57 -#: actions/recoverpassword.php:202 +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Action inconnue" #: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 -#: actions/finishremotesubscribe.php:61 +#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "Version inconnue du protocole OMB" -#: ../lib/util.php:269 -#: lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Sauf précision contraire, les contenus de ce site sont la propriété de leurs auteurs et sont disponibles sous" +#: ../lib/util.php:269 lib/util.php:285 +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Sauf précision contraire, les contenus de ce site sont la propriété de leurs " +"auteurs et sont disponibles sous" -#: ../actions/confirmaddress.php:48 -#: actions/confirmaddress.php:48 +#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 #, php-format msgid "Unrecognized address type %s" msgstr "Type d'adresse non reconnu : %s" -#: ../actions/showstream.php:209 -#: actions/showstream.php:219 +#: ../actions/showstream.php:209 actions/showstream.php:219 #: lib/unsubscribeform.php:137 msgid "Unsubscribe" msgstr "Désabonnement" -#: ../actions/postnotice.php:44 -#: ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 -#: actions/updateprofile.php:46 -#: actions/postnotice.php:48 -#: actions/updateprofile.php:49 +#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 +#: actions/postnotice.php:45 actions/updateprofile.php:46 +#: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Version de OMB non supportée" -#: ../actions/avatar.php:105 -#: actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: ../actions/avatar.php:105 actions/profilesettings.php:342 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Format de fichier d'image non supporté." -#: ../lib/settingsaction.php:100 -#: lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Suivi des statuts par SMS" -#: ../lib/settingsaction.php:103 -#: lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Suivi des statuts par messagerie instantanée" -#: ../actions/twitapistatuses.php:241 -#: actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Statuts de %1$s et ses amis dans %2$s!" -#: ../actions/twitapistatuses.php:341 -#: actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" -#: ../actions/avatar.php:68 -#: actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 -#: actions/grouplogo.php:232 +#: ../actions/avatar.php:68 actions/profilesettings.php:161 +#: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Transfert" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Ajoutez un nouvel « avatar » (votre image d'utilisateur). Vous ne pouvez modifier l'image après l'envoi, alors faites en sorte qu'elle soit plus ou moins carrée. Elle doit aussi être compatible avec la licence d'utilisation du site ; utilisez de préférence une image qui vous appartient et que vous voulez partager." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Ajoutez un nouvel « avatar » (votre image d'utilisateur). Vous ne pouvez " +"modifier l'image après l'envoi, alors faites en sorte qu'elle soit plus ou " +"moins carrée. Elle doit aussi être compatible avec la licence d'utilisation " +"du site ; utilisez de préférence une image qui vous appartient et que vous " +"voulez partager." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" +msgstr "Ajouter une nouvelle image pour le profil" + +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "" -"Ajouter une nouvelle image pour le profil" +"Remplissez ce formulaire pour inviter vos amis et collègues à utiliser ce " +"service." -#: ../actions/invite.php:114 -#: actions/invite.php:121 -#: actions/invite.php:154 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Remplissez ce formulaire pour inviter vos amis et collègues à utiliser ce service." - -#: ../actions/register.php:159 -#: ../actions/register.php:162 -#: actions/register.php:173 -#: actions/register.php:176 +#: ../actions/register.php:159 ../actions/register.php:162 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "Utilisé uniquement pour les mises à jour de statut, les avertissements, et la récupération de mot de passe" +msgstr "" +"Utilisé uniquement pour les mises à jour de statut, les avertissements, et " +"la récupération de mot de passe" #: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 -#: actions/finishremotesubscribe.php:94 +#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 msgid "User being listened to doesn't exist." msgstr "L'utilisateur suivi n'existe pas." -#: ../actions/all.php:41 -#: ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 -#: ../actions/replies.php:41 -#: ../actions/showstream.php:44 -#: ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 -#: ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 -#: actions/all.php:41 -#: actions/avatarbynickname.php:48 -#: actions/foaf.php:47 -#: actions/replies.php:41 -#: actions/showfavorites.php:41 -#: actions/showstream.php:44 -#: actions/twitapiaccount.php:80 -#: actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 -#: actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 -#: lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 -#: actions/foaf.php:48 -#: actions/replies.php:80 -#: actions/showstream.php:107 -#: actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 -#: actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 -#: actions/twitapiusers.php:55 -#: actions/usergroups.php:99 -#: lib/galleryaction.php:67 -#: lib/twitterapi.php:626 +#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 +#: ../actions/foaf.php:47 ../actions/replies.php:41 +#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 +#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 +#: ../actions/twitapiusers.php:82 actions/all.php:41 +#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 +#: actions/showfavorites.php:41 actions/showstream.php:44 +#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 +#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 +#: actions/twitapiusers.php:87 lib/mailbox.php:50 +#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 +#: actions/showstream.php:107 actions/twitapiaccount.php:70 +#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 +#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 +#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Aucun profil ne correspond à cet utilisateur." -#: ../actions/remotesubscribe.php:71 -#: actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Pseudo de l'utilisateur" -#: ../actions/twitapiusers.php:75 -#: actions/twitapiusers.php:80 +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 msgid "User not found." msgstr "Utilisateur non trouvé." -#: ../actions/profilesettings.php:63 -#: actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Quel est votre fuseau horaire habituel ?" -#: ../lib/util.php:1159 -#: lib/util.php:1293 -#: lib/noticeform.php:141 +#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Quoi de neuf, %s ?" -#: ../actions/profilesettings.php:54 -#: ../actions/register.php:175 -#: actions/profilesettings.php:87 -#: actions/register.php:189 -#: actions/profilesettings.php:119 +#: ../actions/profilesettings.php:54 ../actions/register.php:175 +#: actions/profilesettings.php:87 actions/register.php:189 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Indiquez votre emplacement, ex.: \"Ville, État (ou région), Pays\"" -#: ../actions/updateprofile.php:128 -#: actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Format d'image invalide pour '%s'" -#: ../actions/updateprofile.php:123 -#: actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Dimensions d'image invalides pour '%s'" -#: ../actions/deletenotice.php:63 -#: ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 -#: actions/deletenotice.php:79 -#: actions/block.php:148 -#: actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Oui" -#: ../actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:64 +#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "Vous utilisez déjà cet OpenID !" -#: ../actions/deletenotice.php:37 -#: actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Ce message va être définitivement supprimé. Il sera impossible de le récupérer." +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Ce message va être définitivement supprimé. Il sera impossible de le " +"récupérer." -#: ../actions/recoverpassword.php:31 -#: actions/recoverpassword.php:31 +#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "Votre session est déjà ouverte !" -#: ../actions/invite.php:81 -#: actions/invite.php:88 -#: actions/invite.php:120 +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Vous êtes déjà abonné à ces utilisateurs :" -#: ../actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Vous n'êtes pas ami(e) avec l'utilisateur spécifié." @@ -3354,58 +3094,66 @@ msgstr "Vous n'êtes pas ami(e) avec l'utilisateur spécifié." msgid "You can change your password here. Choose a good one!" msgstr "Vous pouvez modifier ici votre mot de passe. Choisissez-en un bon !" -#: ../actions/register.php:135 -#: actions/register.php:145 +#: ../actions/register.php:135 actions/register.php:145 msgid "You can create a new account to start posting notices." msgstr "Créez un nouveau compte pour commencer à envoyer des messages." -#: ../actions/smssettings.php:28 -#: actions/smssettings.php:28 +#: ../actions/smssettings.php:28 actions/smssettings.php:28 #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Vous pouvez recevoir des messages SMS par courriel en provenance de %%site.name%%." +msgstr "" +"Vous pouvez recevoir des messages SMS par courriel en provenance de %%site." +"name%%." -#: ../actions/openidsettings.php:86 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Vous pouvez retirer un OpenID de votre compte en cliquant sur le bouton « Retirer »." +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Vous pouvez retirer un OpenID de votre compte en cliquant sur le bouton « " +"Retirer »." -#: ../actions/imsettings.php:28 -#: actions/imsettings.php:28 +#: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée](%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-dessous." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée]" +"(%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-" +"dessous." -#: ../actions/profilesettings.php:27 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Vous pouvez mettre à jour les informations de votre profil pour qu'on en sache plus à votre sujet." +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Vous pouvez mettre à jour les informations de votre profil pour qu'on en " +"sache plus à votre sujet." -#: ../actions/finishremotesubscribe.php:31 -#: ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 -#: actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 -#: actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 -#: actions/remotesubscribe.php:35 +#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 +#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Vous pouvez utiliser l'abonnement local." -#: ../actions/finishopenidlogin.php:33 -#: ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 -#: actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 +#: actions/finishopenidlogin.php:38 actions/register.php:68 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Vous devez accepter les termes de la licence pour créer un compte." -#: ../actions/updateprofile.php:63 -#: actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Vous n'avez pas envoyé ce profil" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -3417,7 +3165,8 @@ msgid "" "Faithfully yours,\n" "%4$s" msgstr "" -"Une nouvelle adresse vous a été attribuée pour publier vos statuts dans %1$s.\n" +"Une nouvelle adresse vous a été attribuée pour publier vos statuts dans %1" +"$s.\n" "\n" "Écrivez à %2$s pour mettre à jour votre statut.\n" "\n" @@ -3426,223 +3175,217 @@ msgstr "" "Amicalement vôtre,\n" "%4$s" -#: ../actions/twitapistatuses.php:612 -#: actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Vous ne pouvez pas supprimer le statut d'un autre utilisateur." -#: ../actions/invite.php:31 -#: actions/invite.php:31 -#: actions/invite.php:39 +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "Vous devez ouvrir une session pour inviter d'autres utilisateurs dans %s" +msgstr "" +"Vous devez ouvrir une session pour inviter d'autres utilisateurs dans %s" -#: ../actions/invite.php:103 -#: actions/invite.php:110 -#: actions/invite.php:142 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Un avertissement vous sera envoyé quand vos invités auront accepté votre invitation et se seront inscrits sur le site. Merci de faire grandir notre communauté !" +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Un avertissement vous sera envoyé quand vos invités auront accepté votre " +"invitation et se seront inscrits sur le site. Merci de faire grandir notre " +"communauté !" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " -msgstr "Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de passe ci-dessous." +msgstr "" +"Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de " +"passe ci-dessous." -#: ../actions/openidlogin.php:67 -#: actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Votre URL OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "Votre pseudo sur ce serveur, ou l'adresse courriel que vous avez enregistrée." +msgstr "" +"Votre pseudo sur ce serveur, ou l'adresse courriel que vous avez enregistrée." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites " +"avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." -#: ../lib/util.php:943 -#: lib/util.php:992 -#: lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "il y a quelques secondes " -#: ../lib/util.php:955 -#: lib/util.php:1004 -#: lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "il y a %d jours" -#: ../lib/util.php:951 -#: lib/util.php:1000 -#: lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "il y a %d heures" -#: ../lib/util.php:947 -#: lib/util.php:996 -#: lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "il y a %d minutes" -#: ../lib/util.php:959 -#: lib/util.php:1008 -#: lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "il y a %d mois" -#: ../lib/util.php:953 -#: lib/util.php:1002 -#: lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "il y a 1 jour" -#: ../lib/util.php:945 -#: lib/util.php:994 -#: lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "il y a 1 minute" -#: ../lib/util.php:957 -#: lib/util.php:1006 -#: lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "il y a 1 mois" -#: ../lib/util.php:961 -#: lib/util.php:1010 -#: lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "il y a environ 1 an" -#: ../lib/util.php:949 -#: lib/util.php:998 -#: lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "il y a 1 heure" -#: ../actions/showstream.php:423 -#: ../lib/stream.php:132 -#: actions/showstream.php:441 -#: lib/stream.php:99 +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 msgid "delete" msgstr "supprimer" -#: ../actions/noticesearch.php:130 -#: ../actions/showstream.php:408 -#: ../lib/stream.php:117 -#: actions/noticesearch.php:136 -#: actions/showstream.php:426 -#: lib/stream.php:84 -#: actions/noticesearch.php:187 +#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 +#: ../lib/stream.php:117 actions/noticesearch.php:136 +#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 msgid "in reply to..." msgstr "en réponse à..." -#: ../actions/noticesearch.php:137 -#: ../actions/showstream.php:415 -#: ../lib/stream.php:124 -#: actions/noticesearch.php:143 -#: actions/showstream.php:433 -#: lib/stream.php:91 -#: actions/noticesearch.php:194 +#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 +#: ../lib/stream.php:124 actions/noticesearch.php:143 +#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 msgid "reply" msgstr "répondre" -#: ../actions/password.php:44 -#: actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: ../actions/password.php:44 actions/profilesettings.php:183 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "identique au mot de passe ci-dessus" -#: ../actions/twitapistatuses.php:755 -#: actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" -msgstr "" -"type de fichier non supporté" +msgstr "type de fichier non supporté" -#: ../lib/util.php:1309 -#: lib/util.php:1443 +#: ../lib/util.php:1309 lib/util.php:1443 msgid "« After" msgstr "« Après" -#: actions/deletenotice.php:74 -#: actions/disfavor.php:43 -#: actions/emailsettings.php:127 -#: actions/favor.php:45 -#: actions/finishopenidlogin.php:33 -#: actions/imsettings.php:105 -#: actions/invite.php:46 -#: actions/newmessage.php:45 -#: actions/openidlogin.php:36 -#: actions/openidsettings.php:123 -#: actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 -#: actions/register.php:42 -#: actions/remotesubscribe.php:40 -#: actions/smssettings.php:124 -#: actions/subscribe.php:44 -#: actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 -#: actions/userauthorization.php:35 -#: actions/block.php:64 -#: actions/disfavor.php:74 -#: actions/favor.php:77 -#: actions/finishopenidlogin.php:38 -#: actions/invite.php:54 -#: actions/nudge.php:80 -#: actions/openidlogin.php:37 -#: actions/recoverpassword.php:316 -#: actions/subscribe.php:46 -#: actions/unblock.php:65 -#: actions/unsubscribe.php:43 +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "Un problème est survenu avec votre jeton de session. Veuillez essayer à nouveau." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." -#: actions/disfavor.php:55 -#: actions/disfavor.php:81 +#: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Ce statut n'est pas un favori !" -#: actions/disfavor.php:63 -#: actions/disfavor.php:87 +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Impossible de supprimer le favori." -#: actions/disfavor.php:72 -#: lib/favorform.php:140 +#: actions/disfavor.php:72 lib/favorform.php:140 msgid "Favor" msgstr "Ajouter à mes favoris" -#: actions/emailsettings.php:92 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "Envoyez-moi un courriel quand un utilisateur ajoute un de mes statuts à ses favoris." - -#: actions/emailsettings.php:95 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" +"Envoyez-moi un courriel quand un utilisateur ajoute un de mes statuts à ses " +"favoris." + +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Envoyez-moi un courriel quand quelqu'un m'envoie un message personnel." -#: actions/favor.php:53 -#: actions/twitapifavorites.php:142 -#: actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Ce statut a déjà été ajouté à vos favoris !" -#: actions/favor.php:60 -#: actions/twitapifavorites.php:151 -#: classes/Command.php:132 -#: actions/favor.php:86 -#: actions/twitapifavorites.php:125 -#: classes/Command.php:152 +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Impossible de créer le favori." @@ -3650,39 +3393,36 @@ msgstr "Impossible de créer le favori." msgid "Disfavor" msgstr "Retirer des favoris" -#: actions/favoritesrss.php:60 -#: actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 -#: actions/showfavorites.php:77 +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Statuts favoris de %s" -#: actions/favoritesrss.php:64 -#: actions/favoritesrss.php:104 +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Fil des statuts favoris de %s" -#: actions/inbox.php:28 -#: actions/inbox.php:59 +#: actions/inbox.php:28 actions/inbox.php:59 #, php-format msgid "Inbox for %s - page %d" msgstr "Boîte de réception de %s - page %d" -#: actions/inbox.php:30 -#: actions/inbox.php:62 +#: actions/inbox.php:30 actions/inbox.php:62 #, php-format msgid "Inbox for %s" msgstr "Boîte de réception de %s" -#: actions/inbox.php:53 -#: actions/inbox.php:115 +#: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Cette boîte de réception regroupe les messages personnels qui vous sont envoyés." +msgstr "" +"Cette boîte de réception regroupe les messages personnels qui vous sont " +"envoyés." -#: actions/invite.php:178 -#: actions/invite.php:213 +#: actions/invite.php:178 actions/invite.php:213 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -3691,209 +3431,204 @@ msgstr "" "%1$s vous invite à vous inscrire à %2$s (%3$s).\n" "\n" -#: actions/login.php:104 -#: actions/login.php:235 -#: actions/openidlogin.php:108 +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 msgid "Automatically login in the future; " msgstr "Ouvrez automatiquement une session à l'avenir ;" -#: actions/login.php:122 -#: actions/login.php:264 +#: actions/login.php:122 actions/login.php:264 msgid "For security reasons, please re-enter your " msgstr "Pour des raisons de sécurité, veuillez entrer à nouveau votre " -#: actions/login.php:126 -#: actions/login.php:268 +#: actions/login.php:126 actions/login.php:268 msgid "Login with your username and password. " msgstr "Entrez votre identifiant et votre mot de passe." -#: actions/newmessage.php:58 -#: actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." -#: actions/newmessage.php:65 -#: actions/newmessage.php:128 +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Aucun destinataire n'a été spécifié." -#: actions/newmessage.php:68 -#: actions/newmessage.php:113 -#: classes/Command.php:206 -#: actions/newmessage.php:131 -#: actions/newmessage.php:168 -#: classes/Command.php:237 +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." -#: actions/newmessage.php:71 -#: actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 -#: actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "N'envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"N'envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." -#: actions/newmessage.php:108 -#: actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Utilisateur inexistant" -#: actions/newmessage.php:117 -#: actions/newmessage.php:67 +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nouveau message" -#: actions/noticesearch.php:95 -#: actions/noticesearch.php:146 +#: actions/noticesearch.php:95 actions/noticesearch.php:146 msgid "Notice without matching profile" msgstr "Message sans profil correspondant" -#: actions/openidsettings.php:28 -#: actions/openidsettings.php:70 +#: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " msgstr "[OpenID](%%doc.openid%%) permet de vous connecter à de nombreux sites " -#: actions/openidsettings.php:46 -#: actions/openidsettings.php:96 +#: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " -msgstr "Si vous ne souhaitez pas ajouter un identifiant OpenID à votre compte, " +msgstr "" +"Si vous ne souhaitez pas ajouter un identifiant OpenID à votre compte, " #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "C'est votre seul identifiant OpenID ; si vous le supprimez, vous ne pourrez plus vous identifier !" +msgstr "" +"C'est votre seul identifiant OpenID ; si vous le supprimez, vous ne pourrez " +"plus vous identifier !" -#: actions/openidsettings.php:87 -#: actions/openidsettings.php:143 +#: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " msgstr "Vous pouvez retirer un identifiant OpenID de votre compte " -#: actions/outbox.php:28 -#: actions/outbox.php:58 +#: actions/outbox.php:28 actions/outbox.php:58 #, php-format msgid "Outbox for %s - page %d" msgstr "Boîte d'envoi de %s - page %d" -#: actions/outbox.php:30 -#: actions/outbox.php:61 +#: actions/outbox.php:30 actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Boîte d'envoi de %s" -#: actions/outbox.php:53 -#: actions/outbox.php:116 +#: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Cette boîte d'envoi regroupe les messages personnels que vous avez envoyés." +msgstr "" +"Cette boîte d'envoi regroupe les messages personnels que vous avez envoyés." -#: actions/peoplesearch.php:28 -#: actions/peoplesearch.php:52 +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Recherchez des utilisateurs de %%site.name%% par nom, par emplacement, ou par intérêts. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" +"Recherchez des utilisateurs de %%site.name%% par nom, par emplacement, ou " +"par intérêts. " -#: actions/profilesettings.php:27 -#: actions/profilesettings.php:69 +#: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " msgstr "Vous pouvez mettre votre profil à jour ici " -#: actions/profilesettings.php:115 -#: actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 -#: actions/userrss.php:76 -#: actions/avatarsettings.php:104 -#: actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 -#: actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 -#: actions/userrss.php:82 +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Utilisateur sans profil correspondant" -#: actions/recoverpassword.php:91 -#: actions/recoverpassword.php:97 +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 msgid "This confirmation code is too old. " msgstr "Ce code de validation est périmé." -#: actions/recoverpassword.php:141 -#: actions/recoverpassword.php:152 +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 msgid "If you've forgotten or lost your" msgstr "Si vous avez oublié ou perdu votre " # Entrez un : masculin ou féminin ? De quoi s'agit-il ? Contexte ? -#: actions/recoverpassword.php:154 -#: actions/recoverpassword.php:158 +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 msgid "You've been identified. Enter a " msgstr "Vous avez été identifié(e) avec succès. Entrez un " -#: actions/recoverpassword.php:169 -#: actions/recoverpassword.php:188 +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 msgid "Your nickname on this server, " msgstr "Votre pseudo sur ce serveur, " -#: actions/recoverpassword.php:271 -#: actions/recoverpassword.php:304 +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 msgid "Instructions for recovering your password " msgstr "Instructions pour récupérer votre mot de passe" -#: actions/recoverpassword.php:327 -#: actions/recoverpassword.php:361 +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 msgid "New password successfully saved. " msgstr "Votre nouveau mot de passe a été enregistré avec succès." -#: actions/register.php:95 -#: actions/register.php:180 +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Votre mot de passe doit contenir au moins 6 caractères." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. Plusieurs choix s'offrent maintenant à vous :" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. Plusieurs choix " +"s'offrent maintenant à vous :" #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " msgstr "(Vous recevrez sous peu un courriel avec " -#: actions/remotesubscribe.php:51 -#: actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 #, php-format msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Pour vous abonner, vous pouvez [login](%%action.login%%), " -#: actions/showfavorites.php:61 -#: actions/showfavorites.php:145 +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Fil des favoris de %s" -#: actions/showfavorites.php:84 -#: actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 -#: actions/twitapifavorites.php:59 +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Impossible d'afficher les favoris." -#: actions/showmessage.php:33 -#: actions/showmessage.php:81 +#: actions/showmessage.php:33 actions/showmessage.php:81 msgid "No such message." msgstr "Message introuvable." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." -msgstr "Ce message personnel ne peut être lu que par son expéditeur et son destinataire." +msgstr "" +"Ce message personnel ne peut être lu que par son expéditeur et son " +"destinataire." -#: actions/showmessage.php:61 -#: actions/showmessage.php:108 +#: actions/showmessage.php:61 actions/showmessage.php:108 #, php-format msgid "Message to %1$s on %2$s" msgstr "Message adressé à %1$s le %2$s" -#: actions/showmessage.php:66 -#: actions/showmessage.php:113 +#: actions/showmessage.php:66 actions/showmessage.php:113 #, php-format msgid "Message from %1$s on %2$s" msgstr "Message reçu de %1$s le %2$s" @@ -3902,72 +3637,83 @@ msgstr "Message reçu de %1$s le %2$s" msgid "Send a message" msgstr "Envoyer un message" -#: actions/smssettings.php:312 -#: actions/smssettings.php:464 +#: actions/smssettings.php:312 actions/smssettings.php:464 #, php-format msgid "Mobile carrier for your phone. " msgstr "Votre fournisseur de téléphone mobile." -#: actions/twitapidirect_messages.php:76 -#: actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Messages envoyés à %s" -#: actions/twitapidirect_messages.php:77 -#: actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Tous les messages envoyés à %s" -#: actions/twitapidirect_messages.php:81 -#: actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Messages envoyés" -#: actions/twitapidirect_messages.php:82 -#: actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tous les messages envoyés par %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Message sans texte !" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Destinataire non trouvé." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Vous ne pouvez envoyer des messages personnels qu'aux utilisateurs inscrits comme amis." +msgstr "" +"Vous ne pouvez envoyer des messages personnels qu'aux utilisateurs inscrits " +"comme amis." -#: actions/twitapifavorites.php:92 -#: actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoris de %s" -#: actions/twitapifavorites.php:95 -#: actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s statuts ont été ajoutés aux favoris de %s / %s." -#: actions/twitapifavorites.php:187 -#: lib/mail.php:275 -#: actions/twitapifavorites.php:164 -#: lib/mail.php:553 +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s a ajouté un de vos messages à ses favoris" -#: actions/twitapifavorites.php:188 -#: lib/mail.php:276 +#: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format msgid "" @@ -3978,21 +3724,24 @@ msgstr "" "\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Inscrivez votre compte Twitter pour transférer automatiquement vos statuts vers Twitter, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Inscrivez votre compte Twitter pour transférer automatiquement vos statuts " +"vers Twitter, " -#: actions/twittersettings.php:41 -#: actions/twittersettings.php:60 +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Préférences Twitter" -#: actions/twittersettings.php:48 -#: actions/twittersettings.php:105 +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Votre compte Twitter" -#: actions/twittersettings.php:56 -#: actions/twittersettings.php:113 +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Compte Twitter actuellement utilisé." @@ -4000,8 +3749,8 @@ msgstr "Compte Twitter actuellement utilisé." msgid "Twitter Username" msgstr "Identifiant Twitter" -#: actions/twittersettings.php:65 -#: actions/twittersettings.php:123 +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Veuillez éviter les espaces." @@ -4009,244 +3758,244 @@ msgstr "Veuillez éviter les espaces." msgid "Twitter Password" msgstr "Mot de passe Twitter" -#: actions/twittersettings.php:72 -#: actions/twittersettings.php:139 +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Envoyer automatiquement mes statuts dans Twitter." -#: actions/twittersettings.php:75 -#: actions/twittersettings.php:146 +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Envoyer mes réponses locales \"@\" dans Twitter." -#: actions/twittersettings.php:78 -#: actions/twittersettings.php:153 +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." -msgstr "Je veux m'abonner à mes amis de Twitter qui ont enregistré un compte ici." +msgstr "" +"Je veux m'abonner à mes amis de Twitter qui ont enregistré un compte ici." -#: actions/twittersettings.php:122 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "L'identifiant ne doit pas dépasser 15 caractères, et ne peut contenir que des chiffres, des lettres minuscules ou majuscules, et des barres de soulignement (_). " +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"L'identifiant ne doit pas dépasser 15 caractères, et ne peut contenir que " +"des chiffres, des lettres minuscules ou majuscules, et des barres de " +"soulignement (_). " -#: actions/twittersettings.php:128 -#: actions/twittersettings.php:334 +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "La vérification de vos informations de Twitter a échoué !" #: actions/twittersettings.php:137 #, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Impossible de récupérer l'information du compte de \"%s\" dans Twitter." +msgstr "" +"Impossible de récupérer l'information du compte de \"%s\" dans Twitter." -#: actions/twittersettings.php:151 -#: actions/twittersettings.php:170 -#: actions/twittersettings.php:348 -#: actions/twittersettings.php:368 +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "L'enregistrement de votre configuration Twitter a échoué !" -#: actions/twittersettings.php:174 -#: actions/twittersettings.php:376 +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Configuration Twitter enregistrée avec succès." -#: actions/twittersettings.php:192 -#: actions/twittersettings.php:395 +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Ce compte Twitter ne vous appartient pas." -#: actions/twittersettings.php:200 -#: actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Impossible de retirer cet utilisateur de Twitter." -#: actions/twittersettings.php:212 -#: actions/twittersettings.php:407 +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Le compte Twitter a été retiré." -#: actions/twittersettings.php:225 -#: actions/twittersettings.php:239 -#: actions/twittersettings.php:428 -#: actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Impossible d'enregistrer vos préférences Twitter." -#: actions/twittersettings.php:245 -#: actions/twittersettings.php:461 +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Préférences Twitter enregistrées avec succès." -#: actions/userauthorization.php:84 -#: actions/userauthorization.php:86 +#: actions/userauthorization.php:84 actions/userauthorization.php:86 msgid "Please check these details to make sure " msgstr "Veuillez vérifier ces informations pour vous assurer que " # we are missing context here -#: actions/userauthorization.php:324 -#: actions/userauthorization.php:340 +#: actions/userauthorization.php:324 actions/userauthorization.php:340 #, fuzzy msgid "The subscription has been authorized, but no " msgstr "L'abonnement a été autorisé, mais pas " # missing context -#: actions/userauthorization.php:334 -#: actions/userauthorization.php:351 +#: actions/userauthorization.php:334 actions/userauthorization.php:351 #, fuzzy msgid "The subscription has been rejected, but no " msgstr "L'abonnement a été refusé, mais pas " -#: classes/Channel.php:113 -#: classes/Channel.php:132 -#: classes/Channel.php:151 +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Résultats de la commande" -#: classes/Channel.php:148 -#: classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Commande complétée" -#: classes/Channel.php:158 -#: classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Échec de la commande" -#: classes/Command.php:39 -#: classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Désolé, cette commande n'a pas encore été implémantée." -#: classes/Command.php:96 -#: classes/Command.php:113 +#: classes/Command.php:96 classes/Command.php:113 #, php-format msgid "Subscriptions: %1$s\n" msgstr "Abonnements : %1$s\n" -#: classes/Command.php:125 -#: classes/Command.php:242 -#: classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Aucun statut récent pour cet utilisateur" -#: classes/Command.php:146 -#: classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Statut ajouté aux favoris." -#: classes/Command.php:166 -#: classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 -#: classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nom complet : %s" -#: classes/Command.php:172 -#: classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Emplacement : %s" -#: classes/Command.php:175 -#: classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Site Web : %s" -#: classes/Command.php:178 -#: classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "À propos : %s" -#: classes/Command.php:200 -#: classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Message trop long ! La taille maximale est de 140 caractères ; vous en avez entré %d." +msgstr "" +"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " +"entré %d." -#: classes/Command.php:214 -#: classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Votre message a été envoyé à %s" -#: classes/Command.php:216 -#: classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Une erreur est survenue pendant l'envoi de votre message." -#: classes/Command.php:263 -#: classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Indiquez le nom de l'utilisateur auquel vous souhaitez vous abonner " # could it be plural? -#: classes/Command.php:270 -#: classes/Command.php:307 -#, fuzzy +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Abonné à %s" -#: classes/Command.php:288 -#: classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Indiquez le nom de l'utilisateur duquel vous souhaitez vous désabonner" -#: classes/Command.php:295 -#: classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Désabonné de %s" -#: classes/Command.php:310 -#: classes/Command.php:330 -#: classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Cette commande n'a pas encore été implémantée." -#: classes/Command.php:313 -#: classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Avertissements désactivés." -#: classes/Command.php:315 -#: classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Impossible de désactiver les avertissements." -#: classes/Command.php:333 -#: classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Avertissements activés." -#: classes/Command.php:335 -#: classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Impossible d'activer les avertissements." -#: classes/Command.php:344 -#: classes/Command.php:392 +#: classes/Command.php:344 classes/Command.php:392 msgid "Commands:\n" msgstr "Commandes : \n" -#: classes/Message.php:53 -#: classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Impossible d'insérer le message." -#: classes/Message.php:63 -#: classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Impossible de mettre à jour le message avec un nouvel URI." @@ -4254,8 +4003,7 @@ msgstr "Impossible de mettre à jour le message avec un nouvel URI." msgid "User without matching profile in system." msgstr "Utilisateur sans profil correspondant dans le système." -#: lib/mail.php:147 -#: lib/mail.php:289 +#: lib/mail.php:147 lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4264,14 +4012,12 @@ msgstr "" "Vous avez une nouvelle adresse pour publier vos statuts dans %1$s.\n" "\n" -#: lib/mail.php:249 -#: lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Nouveau message personnel de %s" -#: lib/mail.php:253 -#: lib/mail.php:512 +#: lib/mail.php:253 lib/mail.php:512 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4280,75 +4026,73 @@ msgstr "" "%1$s (%2$s) vous a envoyé un message personnel :\n" "\n" -#: lib/mailbox.php:43 -#: lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "L'accès à cette boîte de réception est réservé à son utilisateur." -#: lib/openid.php:195 -#: lib/openid.php:203 +#: lib/openid.php:195 lib/openid.php:203 msgid "This form should automatically submit itself. " msgstr "Ce formulaire devrait être soumis automatiquement." -#: lib/personal.php:65 -#: lib/personalgroupnav.php:113 +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favoris" -#: lib/personal.php:66 -#: lib/personalgroupnav.php:114 +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Statuts favoris de %s" -#: lib/personal.php:66 -#: lib/personalgroupnav.php:114 +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Utilisateur" -#: lib/personal.php:75 -#: lib/personalgroupnav.php:123 +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Boîte de réception" -#: lib/personal.php:76 -#: lib/personalgroupnav.php:124 +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Vos messages reçus" -#: lib/personal.php:80 -#: lib/personalgroupnav.php:128 +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Boîte d'envoi" -#: lib/personal.php:81 -#: lib/personalgroupnav.php:129 +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Vos messages envoyés" -#: lib/settingsaction.php:99 -#: lib/connectsettingsaction.php:110 +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 msgid "Twitter" msgstr "Twitter" -#: lib/settingsaction.php:100 -#: lib/connectsettingsaction.php:111 +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 msgid "Twitter integration options" msgstr "Configuration Twitter" -#: lib/util.php:1718 -#: lib/messageform.php:139 -#: lib/noticelist.php:422 +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "À " -#: scripts/maildaemon.php:45 -#: scripts/maildaemon.php:48 +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Impossible de déchiffrer ce message." -#: actions/all.php:63 -#: actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s et ses amis - page %d" @@ -4357,92 +4101,85 @@ msgstr "%s et ses amis - page %d" msgid "You can upload your personal avatar." msgstr "Vous pouvez associer un « avatar » (image personnelle) à votre profil." -#: actions/avatarsettings.php:117 -#: actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Paramètres de l'avatar" -#: actions/avatarsettings.php:124 -#: actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 -#: actions/grouplogo.php:258 +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Image originale" -#: actions/avatarsettings.php:139 -#: actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 -#: actions/grouplogo.php:270 +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Aperçu" -#: actions/avatarsettings.php:225 -#: actions/grouplogo.php:284 +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Recadrer" -#: actions/avatarsettings.php:248 -#: actions/deletenotice.php:133 -#: actions/emailsettings.php:224 -#: actions/grouplogo.php:307 -#: actions/imsettings.php:200 -#: actions/login.php:102 -#: actions/newmessage.php:100 -#: actions/newnotice.php:96 -#: actions/openidsettings.php:188 -#: actions/othersettings.php:136 -#: actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 -#: actions/register.php:113 -#: actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 -#: actions/subedit.php:38 -#: actions/twittersettings.php:290 +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 #: actions/userauthorization.php:39 msgid "There was a problem with your session token. " msgstr "Un problème est survenu avec vos informations de session. " -#: actions/avatarsettings.php:303 -#: actions/grouplogo.php:360 +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" -#: actions/avatarsettings.php:327 -#: actions/grouplogo.php:384 +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Données perdues." -#: actions/avatarsettings.php:334 -#: actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: actions/avatarsettings.php:334 actions/grouplogo.php:391 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Fichier perdu." -#: actions/avatarsettings.php:349 -#: actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 -#: actions/grouplogo.php:440 -#: classes/User_group.php:129 -#: classes/User_group.php:161 +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" -msgstr "" -"Type de fichier inconnu" +msgstr "Type de fichier inconnu" -#: actions/block.php:69 -#: actions/subedit.php:46 -#: actions/unblock.php:70 +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Aucun profil n'a été spécifié." -#: actions/block.php:74 -#: actions/subedit.php:53 -#: actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Aucun profil ne correspond à cet identifiant." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Bloquer cet utilisateur" @@ -4450,11 +4187,11 @@ msgstr "Bloquer cet utilisateur" msgid "Are you sure you want to block this user? " msgstr "Êtes-vous sûr(e) de bloquer cet utilisateur ?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Vous avez déjà bloqué cet utilisateur." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Impossible d'enregistrer les informations de blocage." @@ -4471,81 +4208,85 @@ msgstr "Ce statut va être définitivement supprimé. " msgid "Add to favorites" msgstr "Ajouter aux favoris" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Modifier le groupe %s" -#: actions/editgroup.php:66 -#: actions/groupbyid.php:72 -#: actions/grouplogo.php:66 -#: actions/joingroup.php:60 -#: actions/newgroup.php:65 -#: actions/showgroup.php:100 +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" -msgstr "Les boîtes de réception doivent être activées pour que les groupes fonctionnent " +msgstr "" +"Les boîtes de réception doivent être activées pour que les groupes " +"fonctionnent " -#: actions/editgroup.php:71 -#: actions/grouplogo.php:71 -#: actions/newgroup.php:70 +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Vous devez ouvrir une session pour créer un groupe." -#: actions/editgroup.php:87 -#: actions/grouplogo.php:87 -#: actions/groupmembers.php:76 -#: actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/editgroup.php:87 actions/grouplogo.php:87 +#: actions/groupmembers.php:76 actions/joingroup.php:81 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Aucun pseudo" -#: actions/editgroup.php:99 -#: actions/groupbyid.php:88 -#: actions/grouplogo.php:100 -#: actions/groupmembers.php:83 -#: actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 +#: actions/groupmembers.php:83 actions/joingroup.php:88 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Aucun groupe trouvé" -#: actions/editgroup.php:106 -#: actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Seuls les administrateurs d'un groupe peuvent le modifier." -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Remplissez ce formulaire pour modifier les options du groupe." -#: actions/editgroup.php:179 -#: actions/newgroup.php:130 -#: actions/register.php:156 +#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 msgid "Nickname must have only lowercase letters " msgstr "Le pseudo ne peut contenir que des caractères minuscules " -#: actions/editgroup.php:198 -#: actions/newgroup.php:149 +#: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "la description est trop longue (140 caractères maximum)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Impossible de mettre à jour le groupe." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Vos options ont été enregistrées." -#: actions/emailsettings.php:107 -#: actions/imsettings.php:108 +#: actions/emailsettings.php:107 actions/imsettings.php:108 #, php-format msgid "Awaiting confirmation on this address. " msgstr "En attente de confirmation de cette adresse." # using the infinitive form here? -#: actions/emailsettings.php:139 -#: actions/smssettings.php:150 +#: actions/emailsettings.php:139 actions/smssettings.php:150 msgid "Make a new email address for posting to; " msgstr "Créer une nouvelle adresse courriel pour publier vos statuts ; " @@ -4553,7 +4294,8 @@ msgstr "Créer une nouvelle adresse courriel pour publier vos statuts ; " msgid "Send me email when someone " msgstr "Envoyez-moi un courriel quand quelqu'un " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Autoriser mes amis à m'envoyer des courriels et des clins d'oeil." @@ -4561,82 +4303,90 @@ msgstr "Autoriser mes amis à m'envoyer des courriels et des clins d'oeil." #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " -msgstr "" -"Cette adresse courriel appartient déjà " +msgstr "Cette adresse courriel appartient déjà " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " msgstr "Un code de confirmation a été envoyé à l'adresse courriel indiquée." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Erreur du serveur - impossible d'accéder à cet utilisateur !" #: actions/facebookhome.php:196 #, php-format msgid "If you would like the %s app to automatically update " -msgstr "Si vous souhaitez que l'application %s soit mise à jour automatiquement " +msgstr "" +"Si vous souhaitez que l'application %s soit mise à jour automatiquement " -#: actions/facebookhome.php:213 -#: actions/facebooksettings.php:137 +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 #, php-format msgid "Allow %s to update my Facebook status" msgstr "Autoriser %s à mettre à jour mon statut dans Facebook" # context??? -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Sauter" # i originally put 'aucun statut!' here, but the original translation seems better -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Statut sans contenu!" -#: actions/facebookhome.php:295 -#: lib/action.php:870 -#: lib/facebookaction.php:399 +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Pagination" -#: actions/facebookhome.php:304 -#: lib/action.php:879 -#: lib/facebookaction.php:408 +#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Après" -#: actions/facebookhome.php:312 -#: lib/action.php:887 -#: lib/facebookaction.php:416 +#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Avant" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Merci d'inviter vos amis à utiliser %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Invitation(s) envoyée(s) aux personnes suivantes :" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Vous avez reçu une invitation à %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Invitez vos amis dans %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Amis déjà inscrits à %s :" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Envoyer des invitations" @@ -4647,7 +4397,9 @@ msgstr "Impossible de retirer l'utilisateur Facebook." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" -msgstr "Un problème est survenu lors de l'enregistrement de vos préférences de synchronisation !" +msgstr "" +"Un problème est survenu lors de l'enregistrement de vos préférences de " +"synchronisation !" #: actions/facebooksettings.php:67 msgid "Sync preferences saved." @@ -4678,14 +4430,14 @@ msgstr "Si vous souhaitez une mise à jour automatique de %s " msgid "Sync preferences" msgstr "Préférences de synchronisation" -#: actions/favor.php:94 -#: lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Retirer ce favori" -#: actions/favorited.php:65 -#: lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: actions/favorited.php:65 lib/popularnoticesection.php:76 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Statuts populaires" @@ -4698,9 +4450,9 @@ msgstr "Statuts populaires - page %d" msgid "The most popular notices on the site right now." msgstr "Statuts les plus populaires sur le site en ce moment." -#: actions/featured.php:69 -#: lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Utilisateurs en vedette" @@ -4714,16 +4466,17 @@ msgstr "Utilisateurs en vedette - page %d" msgid "A selection of some of the great users on %s" msgstr "Les utilisateurs à ne pas manquer dans %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Cet utilisateur vous a empêché de vous inscrire." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Aucun identifiant" -#: actions/grouplogo.php:138 -#: actions/grouplogo.php:191 +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo du groupe" @@ -4731,16 +4484,17 @@ msgstr "Logo du groupe" msgid "You can upload a logo image for your group." msgstr "Choisissez un logo pour votre groupe." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo mis à jour." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "La mise à jour du logo a échoué." -#: actions/groupmembers.php:93 -#: lib/groupnav.php:91 +#: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format msgid "%s group members" msgstr "Membres du groupe %s" @@ -4754,10 +4508,9 @@ msgstr "Membres du groupe %s - page %d" msgid "A list of the users in this group." msgstr "Liste des utilisateurs inscrits à ce groupe." -#: actions/groups.php:62 -#: actions/showstream.php:518 -#: lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Groupes" @@ -4768,23 +4521,25 @@ msgstr "Groupes - page %d" # missing context #: actions/groups.php:90 -#, fuzzy #, php-format msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "Les groupes %%%%site.name%%%% vous permettent d'échanger avec " -#: actions/groups.php:106 -#: actions/usergroups.php:124 -#: lib/groupeditform.php:123 +#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Créer un nouveau groupe" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Recherchez des groupes dans %%site.name%% par nom, par emplacement ou par intérêts. Séparez les termes de recherches par des espaces. Ils doivent contenir au moins 3 caractères." +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Recherchez des groupes dans %%site.name%% par nom, par emplacement ou par " +"intérêts. Séparez les termes de recherches par des espaces. Ils doivent " +"contenir au moins 3 caractères." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Rechercher des groupes" @@ -4796,75 +4551,82 @@ msgstr "Vous pouvez publier et lire les statuts via " # missing context #: actions/imsettings.php:120 -#, fuzzy #, php-format msgid "Jabber or GTalk address, " msgstr "Adresse Jabber ou GTalk, " #: actions/imsettings.php:147 msgid "Send me replies through Jabber/GTalk " -msgstr "" -"Envoyez-moi les réponses par Jabber/GTalk" +msgstr "Envoyez-moi les réponses par Jabber/GTalk" #: actions/imsettings.php:321 #, php-format msgid "A confirmation code was sent " msgstr "Un code de confirmation a été envoyé " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Vous devez ouvrir une session pour rejoindre un groupe." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Vous êtes déjà membre de ce groupe " -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Impossible d'inscrire l'utilisateur %s au groupe %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s a rejoint le groupe %s" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "Les boîtes de réception doivent être activées pour que les groupes fonctionnent." +msgstr "" +"Les boîtes de réception doivent être activées pour que les groupes " +"fonctionnent." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Vous devez ouvrir une session pour quitter un groupe." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Aucun groupe trouvé." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Vous n'êtes pas membre de ce groupe." #: actions/leavegroup.php:100 msgid "You may not leave a group while you are its administrator." -msgstr "Il est recommandé de ne pas quitter un groupe dont vous êtes administrateur." +msgstr "" +"Il est recommandé de ne pas quitter un groupe dont vous êtes administrateur." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Aucun enregistrement à ce groupe n'a été trouvé." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Impossible de retirer l'utilisateur %s du groupe %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s a quitté le groupe %s" -#: actions/login.php:225 -#: lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Ouverture de session" @@ -4876,21 +4638,21 @@ msgstr "Aucun statut " msgid "New group" msgstr "Nouveau groupe" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Remplissez les champs ci-dessous pour créer un nouveau groupe :" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." -msgstr "" -"Impossible de créer le groupe." +msgstr "Impossible de créer le groupe." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Impossible d'établir l'inscription au groupe." -#: actions/newmessage.php:119 -#: actions/newnotice.php:132 +#: actions/newmessage.php:119 actions/newnotice.php:132 msgid "That's too long. " msgstr "C'est trop long." @@ -4898,19 +4660,23 @@ msgstr "C'est trop long." msgid "Don't send a message to yourself; " msgstr "N'envoyez pas de message à vous-même ; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" -msgstr "" -"Statut publié" +msgstr "Statut publié" -#: actions/newnotice.php:200 -#: classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Erreur Ajax" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Cet utilisateur n'accepte pas les clins d'œil ou n'a pas encore validé son adresse courriel." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Cet utilisateur n'accepte pas les clins d'œil ou n'a pas encore validé son " +"adresse courriel." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4920,7 +4686,7 @@ msgstr "Clin d'œil envoyé" msgid "Nudge sent!" msgstr "Clin d'œil envoyé !" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "Connexion OpenID" @@ -4944,31 +4710,32 @@ msgstr "Réduction automatique des adresses Web (URL)" msgid "Service" msgstr "Service" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Sélectionnez un service de réduction d'URL." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." -msgstr "" -"Le service de réduction d'URL est trop long (50 caractères maximum)." +msgstr "Le service de réduction d'URL est trop long (50 caractères maximum)." #: actions/passwordsettings.php:69 msgid "Change your password." msgstr "Modifier votre mot de passe." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Modification du mot de passe" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" -msgstr "" -"Ce marquage est invalide : %s" +msgstr "Ce marquage est invalide : %s" # can it be plural? -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Utilisateurs marqués &s - page %d" @@ -4979,13 +4746,16 @@ msgstr "Utilisateurs marqués &s - page %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Les utilisateurs suivants se sont marqués \"%s\" :" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Information de profil" -#: actions/profilesettings.php:124 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" # missing context #: actions/profilesettings.php:144 @@ -4993,30 +4763,37 @@ msgstr "Marquages (tags) pour votre profil, séparés par des virgules ou des es msgid "Automatically subscribe to whoever " msgstr "M'abonner automatiquement à quiconque " -#: actions/profilesettings.php:229 -#: actions/tagother.php:176 +#: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Marquage invalide : \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Impossible d'enregistrer les marquages. " -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Flux public - page %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." -msgstr "" -"Impossible de récupérer le flux public." +msgstr "Impossible de récupérer le flux public." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) " #: actions/publictagcloud.php:57 #, fuzzy @@ -5028,13 +4805,14 @@ msgstr "Marquages publics" msgid "These are most popular recent tags on %s " msgstr "Derniers marquages les plus populaires dans %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 #, fuzzy msgid "Tag cloud" msgstr "Marquages " -#: actions/register.php:139 -#: actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Désolé ! Seules les personnes invitées peuvent s'inscrire." @@ -5057,8 +4835,7 @@ msgid "1-64 lowercase letters or numbers, " msgstr "1 à 64 lettres minuscules ou chiffres, " # missing context -#: actions/register.php:382 -#: actions/register.php:386 +#: actions/register.php:382 actions/register.php:386 #, fuzzy msgid "Used only for updates, announcements, " msgstr "Utilisé seulement pour les mises à jour, nouvelles du site, " @@ -5098,12 +4875,12 @@ msgstr "Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. " msgid "(You should receive a message by email " msgstr "(Vous recevrez bientôt un courriel " -#: actions/remotesubscribe.php:166 -#: actions/remotesubscribe.php:171 +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." msgstr "Ce profil est local ! Ouvrez une session pour vous abonner." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Réponses à %s - page %d" @@ -5113,68 +4890,82 @@ msgstr "Réponses à %s - page %d" msgid "%s favorite notices, page %d" msgstr "Statuts favoris de %s - page %d" -#: actions/showgroup.php:77 -#: lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Groupe %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Groupe %s - page %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Profil du groupe" -#: actions/showgroup.php:251 -#: actions/showstream.php:278 -#: actions/tagother.php:119 -#: lib/grouplist.php:134 -#: lib/profilelist.php:133 +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" -#: actions/showgroup.php:262 -#: actions/showstream.php:289 -#: actions/tagother.php:129 -#: lib/grouplist.php:145 -#: lib/profilelist.php:144 +#: actions/showgroup.php:262 actions/showstream.php:289 +#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Note" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Actions du groupe" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Fil des statuts du groupe %s" -#: actions/showgroup.php:357 -#: lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Membres" -#: actions/showgroup.php:363 -#: actions/showstream.php:413 -#: actions/showstream.php:442 -#: actions/showstream.php:524 -#: lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(aucun)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Tous les membres" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." +"wikipedia.org/wiki/Microblog) %%%%site.name%%%%" # is there another part to this sentence? #: actions/showmessage.php:98 @@ -5182,7 +4973,7 @@ msgstr "**%s** est un groupe d'utilisateurs du service de [micro-blogging](http: msgid "Only the sender and recipient " msgstr "Expéditeur et destinataire seulement " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s - page %d" @@ -5193,40 +4984,49 @@ msgstr "%s - page %d" msgid "'s profile" msgstr " - Profil" -#: actions/showstream.php:236 -#: actions/tagother.php:77 +#: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Profil de l'utilisateur" -#: actions/showstream.php:240 -#: actions/tagother.php:81 +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Photo" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Actions de l'utilisateur" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Envoyer un message à cet utilisateur" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Message " -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Tous les abonnés" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Tous les groupes" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) %%%%site.name%%%%" # missing context #: actions/smssettings.php:128 @@ -5242,9 +5042,10 @@ msgstr "M'envoyer les statuts par SMS ; " #: actions/smssettings.php:335 msgid "A confirmation code was sent to the phone number you added. " -msgstr "Un code de confirmation vient d'être envoyé au numéro de téléphone indiqué. " +msgstr "" +"Un code de confirmation vient d'être envoyé au numéro de téléphone indiqué. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Fournisseur de téléphonie mobile" @@ -5258,8 +5059,7 @@ msgstr "Impossible d'enregistrer l'abonnement." #: actions/subscribe.php:55 msgid "Not a local user." -msgstr "" -"Ceci n'est pas un utilisateur local." +msgstr "Ceci n'est pas un utilisateur local." # missing context? #: actions/subscribe.php:69 @@ -5285,7 +5085,6 @@ msgstr "Ces personnes suivent " # missing context #: actions/subscribers.php:67 -#, fuzzy #, php-format msgid "These are the people who " msgstr "Ces personnes sont ceux qui " @@ -5308,22 +5107,21 @@ msgstr "Voici les personnes dont les messages " # missing context #: actions/subscriptions.php:69 -#, fuzzy #, php-format msgid "These are the people whose " msgstr "Voici les personnes dont " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" -msgstr "" -"Statuts marqués %s - page %d" +msgstr "Statuts marqués %s - page %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Messages marqués \"%s\", à partir du plus récent" @@ -5345,46 +5143,53 @@ msgstr "Marquage %s" msgid "Tag user" msgstr "Marquer l'utilisateur" -#: actions/tagother.php:149 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "Marquer cet utilisateur (séparer par des espaces ou des virgules)" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." -#: actions/tagother.php:191 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) ou qui sont abonnées à vous." - -#: actions/tagother.php:198 -msgid "Could not save tags." +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -"Impossible d'enregistrer les marquages." +"Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) " +"ou qui sont abonnées à vous." -#: actions/tagother.php:233 +#: actions/tagother.php:198 actions/tagother.php:200 +msgid "Could not save tags." +msgstr "Impossible d'enregistrer les marquages." + +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." +msgstr "" +"Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." #: actions/tagrss.php:35 msgid "No such tag." msgstr "Aucun marquage trouvé." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" -msgstr "" -"Microblog marqué avec %s" +msgstr "Microblog marqué avec %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Le blocage de l'utilisateur a échoué." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Le déblocage de l'utilisateur a échoué." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Non trouvé." @@ -5392,15 +5197,16 @@ msgstr "Non trouvé." msgid "Add your Twitter account to automatically send " msgstr "Ajoutez votre compte Twitter pour envoyer automatiquement " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Nom d'utilisateur Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Mot de passe Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Amis de Twitter" @@ -5413,153 +5219,162 @@ msgstr "L'identifiant doit contenit seulement des chiffres, " msgid "Unable to retrieve account information " msgstr "Impossible de récupérer les informations du compte " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Erreur lors de l'annulation du blocage." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Aucune identité de profil dans la requête." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Aucun profil avec cet identifiant." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Désabonné" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Groupes de %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Groupes de %s - page %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Erreur lors de l'enregistrement du statut. Utilisateur inconnu." -#: classes/Notice.php:109 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans quelques minutes." +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " +"quelques minutes." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Il vous est interdit de publier des statuts dans ce site." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Ajouter un avatar" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Autres " -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Autres options " -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Page sans nom" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Navigation primaire du site" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Profil personnel et flux des amis" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Compte" # missing context -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Modifier votre courriel, avatar, mot de passe, profil " -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Connexion à la messagerie instantanée, SMS ou Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Fermer la session" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Ouvrir une session" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Créer un compte" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Connexion OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "À l'aide !" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Notice du site" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Vues locales" # missing context? -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Notice de la page" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Navigation secondaire du site" -#: lib/action.php:602 -#: lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Licence du logiciel StatusNet" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Tous" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "licence." -#: lib/blockform.php:123 -#: lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Bloquer cet utilisateur " -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquer" -#: lib/disfavorform.php:114 -#: lib/disfavorform.php:140 +#: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" msgstr "Retirer des favoris" @@ -5569,19 +5384,19 @@ msgid "To use the %s Facebook Application you need to login " msgstr "Vous devez ouvrir une session pour utiliser l'application Facebook %s" # missing context? -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr " un nouveau compte." -#: lib/facebookaction.php:557 -#: lib/mailbox.php:214 -#: lib/noticelist.php:354 +#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Publié" -#: lib/favorform.php:114 -#: lib/favorform.php:140 +#: lib/favorform.php:114 lib/favorform.php:140 msgid "Favor this notice" msgstr "Ajouter aux favoris" @@ -5599,53 +5414,58 @@ msgstr "Filtrer les étiquettes" msgid "All" msgstr "Tous" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Marquer" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Choissez un marquage pour réduire la liste" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Aller" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL du site Web ou blogue du groupe ou sujet " -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Description" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Description du groupe ou du sujet (140 caractères maximum)" -#: lib/groupeditform.php:158 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Emplacement du groupe, s'il y a lieu \"Ville, État ou région, Pays\"" -#: lib/groupnav.php:84 -#: lib/searchgroupnav.php:84 +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Groupe" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Administrer" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Modifier les propriétés du groupe %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Ajouter ou modifier le logo de %s" @@ -5677,11 +5497,11 @@ msgstr "Rejoindre" msgid "Leave" msgstr "Quitter" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Ouvrez une session avec un identifiant et un mot de passe" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Créer un nouveau compte" @@ -5694,35 +5514,36 @@ msgstr "Ouvrir une session ou s'enregistrer avec OpenID" msgid "" "Hey, %s.\n" "\n" -msgstr "Bonjour, %s.\n" +msgstr "" +"Bonjour, %s.\n" "\n" # missing context #: lib/mail.php:236 -#, fuzzy #, php-format msgid "%1$s is now listening to " msgstr "%1$s suit actuellement " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Emplacement : %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Site Web : %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" -msgstr "Bio : %s\n" +msgstr "" +"Bio : %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Vous avez reçu un clin d'œil de %s" @@ -5737,8 +5558,8 @@ msgstr "%1$s (%2$s) se demande ce que vous devenez " msgid "%1$s just added your notice from %2$s" msgstr "%1$s a ajouté votre statut depuis %2$s" -#: lib/mailbox.php:229 -#: lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "De" @@ -5746,28 +5567,31 @@ msgstr "De" # Nouveau message\n # #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n # à "Supprimer l'avis" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Envoyer un message direct" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Envoyer un statut" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Caractères restants" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "en réponse à" -#: lib/noticelist.php:447 -#: lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Répondre à ce statut" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Répondre" @@ -5775,8 +5599,9 @@ msgstr "Répondre" # Nouveau message\n # #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n # à "Supprimer l'avis" -#: lib/noticelist.php:471 -#: lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Supprimer ce statut" @@ -5784,7 +5609,8 @@ msgstr "Supprimer ce statut" # Nouveau message\n # #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n # à "Supprimer l'avis" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Supprimer" @@ -5805,31 +5631,31 @@ msgstr "Envoyer un clin d'œil à cet utilisateur" msgid "Tags in %s's notices" msgstr "Marquages des statuts de %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(aucun)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Public" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Groupes d'utilisateurs" -#: lib/publicgroupnav.php:82 -#: lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Marquages récents" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "En vedette" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" -msgstr "" -"Populaires" +msgstr "Populaires" #: lib/searchgroupnav.php:82 msgid "Notice" @@ -5843,32 +5669,33 @@ msgstr "Rechercher des groupes sur ce site" msgid "Untitled section" msgstr "Section sans titre" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Abonnements de %s" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Abonnés de %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Groupes de %s" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter des amis et collègues à vous rejoindre dans %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Cet utilisateur vous a bloqué." -#: lib/subscribeform.php:115 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "S'abonner à cet utilisateur" @@ -5880,24 +5707,2102 @@ msgstr "Aucun" msgid "Top posters" msgstr "Utilisateurs les plus actifs" -#: lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Débloquer cet utilisateur" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Débloquer" -#: lib/unsubscribeform.php:113 -#: lib/unsubscribeform.php:137 +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Ne plus suivre cet utilisateur" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Flux des amis de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Flux des amis de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Flux des amis de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s et ses amis" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Vous pouvez associer un « avatar » (image personnelle) à votre profil." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar mis à jour." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Ce message va être définitivement supprimé. Il sera impossible de le " +"récupérer." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Envoyez-moi un courriel quand quelqu'un m'envoie un message personnel." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Choisissez un logo pour votre groupe." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Micro-blogging par %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " +"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " +"doivent contenir au moins 3 caractères." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Une erreur est survenue pendant l'envoi de votre message." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Flux de recherche pour « %s »" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " +"votre mot de passe afin d'enregistrer vos préférences." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Fil du flux public" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Fil du flux public" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Fil du flux public" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +# à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"à l'exception de ces données personnelles : mot de passe, adresse e-mail, " +"adresse de messagerie instantanée, numéro de téléphone. " + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Créer" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Profil du groupe" + +# missing context +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr " - Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Flux des statuts de %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Flux des statuts de %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Flux des statuts de %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Boîte d'envoi de %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Paramètres du profil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Un code de confirmation a été envoyé au numéro de téléphone indiqué. " +"Vérifiez votre boîte de réception pour récupérer le code et les instructions." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Utilisateur inexistant" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Inscrivez votre compte Twitter pour transférer automatiquement vos statuts " +"vers Twitter, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" +"Impossible de récupérer l'information du compte de \"%s\" dans Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " +"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " +"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Rechercher des personnes ou du texte" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " +"quelques minutes." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Connexion à la messagerie instantanée, SMS ou Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Clin d'œil" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Vous devez ouvrir une session pour utiliser l'application Facebook %s" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s suit maintenant vos statuts dans %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordialement,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Rechercher" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Document non trouvé. " + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Liste des utilisateurs inscrits à ce groupe." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Liste des utilisateurs inscrits à ce groupe." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Profil de l'utilisateur" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s et ses amis - page %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Liste des utilisateurs inscrits à ce groupe." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Le déblocage de l'utilisateur a échoué." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Code de confirmation" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Impossible de supprimer ce statut." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Marquage invalide : \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Pseudo déjà utilisé. Essayez-en un autre." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Impossible de créer le favori." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nouveau statut" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nouveau statut" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Pseudo invalide." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Aucun profil n'a été spécifié." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Cet utilisateur vous a bloqué." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Vous n'êtes pas membre de ce groupe." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquer cet utilisateur" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Vous devez ouvrir une session pour créer un groupe." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Groupes" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Impossible de mettre à jour l'utilisateur." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "L'enregistrement de votre configuration Twitter a échoué !" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Préférences de synchronisation enregistrées." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Seuls les administrateurs d'un groupe peuvent le modifier." + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Administrer" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Aucun résultat " + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Cet utilisateur vous a bloqué." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Message " + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Impossible d'enregistrer le profil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites " +"avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Paramètres du profil" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un " +"nouveau à l'adresse courriel indiquée dans votre compte. " + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "" +"Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de " +"passe ci-dessous." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Récupération de mot de passe demandée" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Erreur dans le code de confirmation." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "S'abonner à cet utilisateur" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Statuts favoris de %s - page %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Fil des statuts du groupe %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Fil des statuts du groupe %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Fil des statuts du groupe %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." +"wikipedia.org/wiki/Microblog) %%%%site.name%%%%" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Administrer" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Ceci n'est pas un utilisateur local." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Statuts marqués avec %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Fil des statuts du groupe %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) %%%%site.name%%%%" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +# missing context +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s suit actuellement " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Flux des statuts de %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Flux des statuts de %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Ce statut a déjà été ajouté à vos favoris !" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Ce statut n'est pas un favori !" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Impossible de récupérer le flux public." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Aucun destinataire n'a été spécifié." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Aucun statut n'a été trouvé." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Réponses à %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "licence." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Abonnements de %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Paramètres du profil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Vous n'êtes pas membre de ce groupe." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problème lors de l'enregistrement du statut." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Message adressé à %1$s le %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Profil de l'utilisateur" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Transfert" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Modifier votre mot de passe" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connecter" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Rechercher" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Ouvrir une session" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquer" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Bloquer cet utilisateur" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Ajouter ou modifier le logo de %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Aucun contenu !" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Utilisateur" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Rechercher" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "L'adresse du site personnel n'est pas un URL valide. " + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Aucun marquage trouvé." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Messages envoyés à %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Impossible de suivre l'utilisateur : Utilisateur non trouvé." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "la description est trop longue (140 caractères maximum)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Vous êtes déjà membre de ce groupe " + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Impossible d'inscrire l'utilisateur %s au groupe %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Vous n'êtes pas membre de ce groupe." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Impossible de retirer l'utilisateur %s du groupe %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Groupes de %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Groupes de %s" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Actions du groupe" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Format de fichier d'image non supporté." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Photo" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "la description est trop longue (140 caractères maximum)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "L'utilisateur suivi n'existe pas." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Non autorisé." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Impossible de convertir les jetons de requête en jetons d'accès" + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Version inconnue du protocole OMB" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Statut non trouvé. " + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Fichier perdu." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" + +# missing context +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Cette page n'est pas disponible dans " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez " +"un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%" +"action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Statuts correspondant au(x) terme(s) \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Décrivez vos intérêts en 140 caractères" + +# missing context +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Décrivez qui vous êtes et vos " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "La bio est trop longue (140 caractères maximum)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "URL de profil invalide (aucun document YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Ce profil est local ! Ouvrez une session pour vous abonner." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Impossible d'obtenir le jeton de requête." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Fil des statuts du groupe %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Message adressé à %1$s le %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Fil des favoris de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Fil des favoris de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Fil des favoris de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Groupe %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Statut publié" + +# missing context +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Cette page n'est pas disponible dans " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Flux des statuts de %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " +"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " +"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. " +"Vérifiez les instructions du site pour savoir comment compléter " +"l'autorisation de l'abonnement. Votre jeton d'abonnement est :" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez " +"les instructions du site pour savoir comment refuser pleinement " +"l'abonnement. " + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Impossible de lire l'URL '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Format d'image invalide pour '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Impossible de rediriger vers le serveur : %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licence du logiciel StatusNet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "" +"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Clin d'œil envoyé" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" +"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " +"entré %d." + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" +"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " +"entré %d." + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Répondre à ce statut" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problème lors de l'enregistrement du statut." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Aucun code de confirmation." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Ouvrir une session" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Sélectionnez un fournisseur de téléphone mobile" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Description du groupe ou du sujet (140 caractères maximum)" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Description du groupe ou du sujet (140 caractères maximum)" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Flux des statuts de %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s a ajouté un de vos messages à ses favoris" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "de" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Impossible de supprimer le favori." + +# De #-#-#-#-# statusnet-no-duplicates.po (0.43) #-#-#-#-#\n +# Nouveau message\n +# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n +# à "Supprimer l'avis" +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Supprimer ce statut" + #~ msgid "" -#~ "It runs the [StatusNet](http://status.net/) microblogging software, version " -#~ "%s, available under the [GNU Affero General Public License] (http://www." -#~ "fsf.org/licensing/licenses/agpl-3.0.html)." +#~ "It runs the [StatusNet](http://status.net/) microblogging software, " +#~ "version %s, available under the [GNU Affero General Public License] " +#~ "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #~ msgstr "" #~ "Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), " #~ "version %s, disponible sous la licence [GNU Affero General Public " diff --git a/locale/ga/LC_MESSAGES/statusnet.mo b/locale/ga/LC_MESSAGES/statusnet.mo index c13acd1a8088805d666adea78ff508fef1f2e56b..bcf01b04df49748b292b9ff0240204a4627b9478 100644 GIT binary patch delta 32965 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 b\n" "Language-Team: Galician \n" @@ -16,53 +16,50 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -#: ../actions/noticesearchrss.php:64 -#: actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:61 +#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Buscar \"%s\" na Liña de tempo" -#: ../actions/finishopenidlogin.php:82 -#: ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 -#: actions/register.php:205 -#: actions/register.php:232 -msgid " except this private data: password, email address, IM address, phone number." -msgstr " agás esta informción privada: contrasinal, dirección de correo electrónico, dirección IM, número de teléfono." +#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 +#: actions/finishopenidlogin.php:88 actions/register.php:205 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +" agás esta informción privada: contrasinal, dirección de correo electrónico, " +"dirección IM, número de teléfono." -#: ../actions/showstream.php:400 -#: ../lib/stream.php:109 -#: actions/showstream.php:418 -#: lib/mailbox.php:164 -#: lib/stream.php:76 -#: lib/facebookaction.php:195 -#: lib/noticelist.php:160 +#: ../actions/showstream.php:400 ../lib/stream.php:109 +#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " msgstr " dende " -#: ../actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:341 +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Chíos que respostan a %2$s" -#: ../actions/invite.php:168 -#: actions/invite.php:176 +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s invitoute a unirse a él en %2$s." -#: ../actions/invite.php:170 -#: actions/invite.php:178 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" "\n" -"You can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" "\n" "%1$s said:\n" "\n" @@ -72,19 +69,24 @@ msgid "" "\n" "%5$s\n" "\n" -"If you'd like to try the service, click on the link below to accept the invitation.\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" "\n" "%6$s\n" "\n" -"If not, you can ignore this message. Thanks for your patience and your time.\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" "\n" "Sincerely, %2$s\n" msgstr "" "%1$s invitoute a unirte a el en %2$s (%3$s).\n" "\n" -"%2$s é un servizo de microbloguexo que che permite manterte actualizado coa xente que coñeces e xente na que tes interese.\n" +"%2$s é un servizo de microbloguexo que che permite manterte actualizado coa " +"xente que coñeces e xente na que tes interese.\n" "\n" -"Tamén podes compartir novas contigo mesmo, ou pensamentos, ou vivir en liña con xente que te coñece. Tamén está moi ben para coñecer xente que comparte os mesmos intereses..\n" +"Tamén podes compartir novas contigo mesmo, ou pensamentos, ou vivir en liña " +"con xente que te coñece. Tamén está moi ben para coñecer xente que comparte " +"os mesmos intereses..\n" "\n" "%1$s dixo:\n" "\n" @@ -102,16 +104,13 @@ msgstr "" "\n" "Saudiños, %2$s\n" -#: ../lib/mail.php:124 -#: lib/mail.php:124 -#: lib/mail.php:126 -#: lib/mail.php:115 +#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s está a escoitar os teus chíos %2$s." #: ../lib/mail.php:126 -#: lib/mail.php:117 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -128,2946 +127,2935 @@ msgstr "" "Atentamente todo seu,\n" "%4$s.\n" -#: ../actions/twitapistatuses.php:482 -#: actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:344 +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "Hai %1$s chíos en resposta a chíos dende %2$s / %3$s." -#: ../actions/shownotice.php:45 -#: actions/shownotice.php:45 -#: actions/shownotice.php:73 +#: ../actions/shownotice.php:45 actions/shownotice.php:45 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Estado de %1$s en %2$s" -#: ../actions/invite.php:84 -#: ../actions/invite.php:92 -#: actions/invite.php:91 -#: actions/invite.php:99 +#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 +#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" -#: ../actions/publicrss.php:62 -#: actions/publicrss.php:48 +#: ../actions/publicrss.php:62 actions/publicrss.php:48 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Fio Público" -#: ../actions/all.php:47 -#: ../actions/allrss.php:60 -#: ../actions/twitapistatuses.php:238 -#: ../lib/stream.php:51 -#: actions/all.php:47 -#: actions/allrss.php:60 -#: actions/twitapistatuses.php:155 -#: lib/personal.php:51 -#: actions/twitapistatuses.php:123 +#: ../actions/all.php:47 ../actions/allrss.php:60 +#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 +#: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 +#: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 +#: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s e amigos" -#: ../actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:31 +#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Liña de tempo pública de %s" -#: ../lib/mail.php:206 -#: lib/mail.php:212 -#: lib/mail.php:207 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Estado de %s" -#: ../actions/twitapistatuses.php:338 -#: actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:195 +#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Liña de tempo de %s" -#: ../actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:34 +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s chíos de calquera!" -#: ../actions/register.php:213 -#: actions/register.php:254 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Deberías recibir unha mensaxe no teu email nun intre, coas instrucións de como confirmar a túa dirección de correo.)" +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Deberías recibir unha mensaxe no teu email nun intre, coas instrucións de " +"como confirmar a túa dirección de correo.)" -#: ../lib/util.php:257 -#: lib/util.php:273 -#: lib/util.php:290 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." +"broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 -#: lib/util.php:275 -#: lib/util.php:292 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é un servizo de microbloguexo." -#: ../lib/util.php:274 -#: lib/util.php:290 -#: lib/util.php:307 +#: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." msgstr ". Os contribuíntes deben atribuiselles polo nome completo ou apodo." -#: ../actions/finishopenidlogin.php:73 -#: ../actions/profilesettings.php:43 -#: actions/finishopenidlogin.php:79 -#: actions/profilesettings.php:76 -#: actions/profilesettings.php:78 +#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 +#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 +#: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" +msgstr "" +"De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" -#: ../actions/register.php:152 -#: actions/register.php:166 -#: actions/register.php:193 +#: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "De 1 a 64 letras minúsculas ou números, nin espazos nin signos de puntuación. Requerido." +msgstr "" +"De 1 a 64 letras minúsculas ou números, nin espazos nin signos de " +"puntuación. Requerido." -#: ../actions/password.php:42 -#: actions/profilesettings.php:181 -#: actions/profilesettings.php:198 +#: ../actions/password.php:42 actions/profilesettings.php:181 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 ou máis caracteres" -#: ../actions/recoverpassword.php:180 -#: actions/recoverpassword.php:186 +#: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 ou máis caracteres, non o esquenzas!" -#: ../actions/register.php:154 -#: actions/register.php:168 -#: actions/register.php:195 +#: ../actions/register.php:154 actions/register.php:168 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 ou máis caracteres. Requerido." -#: ../actions/imsettings.php:197 -#: actions/imsettings.php:205 -#: actions/imsettings.php:210 +#: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "O código de confirmación foi embiado á dirección IM que engadiches. Deberías engadir a %s como contacto para que che poida enviar mensaxes." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"O código de confirmación foi embiado á dirección IM que engadiches. Deberías " +"engadir a %s como contacto para que che poida enviar mensaxes." -#: ../actions/emailsettings.php:213 -#: actions/emailsettings.php:231 -#: actions/emailsettings.php:235 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Enviouseche un código de confirmación á dirección de correo que engadiches. Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que debes seguir." +#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Enviouseche un código de confirmación á dirección de correo que engadiches. " +"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " +"debes seguir." -#: ../actions/smssettings.php:216 -#: actions/smssettings.php:224 -#: actions/smssettings.php:226 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Enviouseche o código de confirmación ó número de teléfono que engadiches. Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que debes seguir." +#: ../actions/smssettings.php:216 actions/smssettings.php:224 +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Enviouseche o código de confirmación ó número de teléfono que engadiches. " +"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " +"debes seguir." -#: ../actions/twitapiaccount.php:49 -#: ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 -#: ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 -#: ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 -#: actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 -#: actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 -#: actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 -#: actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 -#: actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 -#: actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 -#: actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 -#: actions/twitapiaccount.php:35 -#: actions/twitapidirect_messages.php:107 -#: actions/twitapifavorites.php:83 -#: actions/twitapifavorites.php:99 -#: actions/twitapifriendships.php:117 -#: actions/twitapihelp.php:42 -#: actions/twitapistatuses.php:77 -#: actions/twitapistatuses.php:144 -#: actions/twitapistatuses.php:224 -#: actions/twitapistatuses.php:234 -#: actions/twitapistatuses.php:386 -#: actions/twitapistatuses.php:395 -#: actions/twitapistatuses.php:421 -#: actions/twitapiusers.php:30 +#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 +#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 +#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 +#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 +#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 +#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 +#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 +#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 +#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 +#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 +#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 +#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 +#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 +#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 +#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Método da API non atopado" -#: ../actions/twitapiaccount.php:57 -#: ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 -#: ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 -#: ../actions/twitapidirect_messages.php:43 +#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 +#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 +#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 #: ../actions/twitapidirect_messages.php:49 #: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 -#: ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 -#: ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 -#: ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 -#: ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 -#: actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 -#: actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 -#: actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 -#: actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 -#: actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 -#: actions/twitapiaccount.php:42 -#: actions/twitapiaccount.php:92 -#: actions/twitapiaccount.php:97 -#: actions/twitapidirect_messages.php:178 -#: actions/twitapifavorites.php:139 -#: actions/twitapihelp.php:49 -#: actions/twitapistatuses.php:549 +#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 +#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 +#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 +#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 +#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 +#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 +#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 +#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 +#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 +#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 +#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 +#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 +#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Método da API en contrución." -#: ../lib/util.php:324 -#: lib/util.php:340 -#: lib/util.php:369 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Sobre" -#: ../actions/userauthorization.php:119 -#: actions/userauthorization.php:126 +#: ../actions/userauthorization.php:119 actions/userauthorization.php:126 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Aceptar" -#: ../actions/emailsettings.php:62 -#: ../actions/imsettings.php:63 -#: ../actions/openidsettings.php:57 -#: ../actions/smssettings.php:71 -#: actions/emailsettings.php:63 -#: actions/imsettings.php:64 -#: actions/openidsettings.php:58 -#: actions/smssettings.php:71 -#: actions/twittersettings.php:85 -#: actions/smspostsettings.php:50 -#: actions/twittersettings.php:84 -#: actions/smspostsettings.php:51 +#: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 +#: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 +#: actions/emailsettings.php:63 actions/imsettings.php:64 +#: actions/openidsettings.php:58 actions/smssettings.php:71 +#: actions/twittersettings.php:85 actions/emailsettings.php:120 +#: actions/imsettings.php:127 actions/openidsettings.php:111 +#: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Engadir" -#: ../actions/openidsettings.php:43 -#: actions/openidsettings.php:44 +#: ../actions/openidsettings.php:43 actions/openidsettings.php:44 +#: actions/openidsettings.php:93 msgid "Add OpenID" msgstr "Engadir dirección OpenID" -#: ../lib/settingsaction.php:97 -#: lib/settingsaction.php:91 -#: actions/deleteprofile.php:248 +#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 +#: lib/accountsettingsaction.php:117 msgid "Add or remove OpenIDs" msgstr "Engadir ou eliminar OpenID" -#: ../actions/emailsettings.php:38 -#: ../actions/imsettings.php:39 -#: ../actions/smssettings.php:39 -#: actions/emailsettings.php:39 -#: actions/imsettings.php:40 -#: actions/smssettings.php:39 +#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 +#: ../actions/smssettings.php:39 actions/emailsettings.php:39 +#: actions/imsettings.php:40 actions/smssettings.php:39 +#: actions/emailsettings.php:94 actions/imsettings.php:94 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Enderezo" -#: ../actions/invite.php:131 -#: actions/invite.php:139 +#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Direccións dos amigos que queres invitar (unha por liña)" -#: ../actions/showstream.php:273 -#: actions/showstream.php:288 -#: actions/showstream.php:336 +#: ../actions/showstream.php:273 actions/showstream.php:288 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Tódalas subscricións" -#: ../actions/publicrss.php:64 -#: actions/publicrss.php:50 +#: ../actions/publicrss.php:64 actions/publicrss.php:50 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Tódalas actualizacións de %s" -#: ../actions/noticesearchrss.php:66 -#: actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:63 +#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Tódalas actualizacións que coinciden co termo de procura \"%s\"" -#: ../actions/finishopenidlogin.php:29 -#: ../actions/login.php:31 -#: ../actions/openidlogin.php:29 -#: ../actions/register.php:30 -#: actions/finishopenidlogin.php:29 -#: actions/login.php:31 -#: actions/openidlogin.php:29 -#: actions/register.php:30 +#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 +#: ../actions/openidlogin.php:29 ../actions/register.php:30 +#: actions/finishopenidlogin.php:29 actions/login.php:31 +#: actions/openidlogin.php:29 actions/register.php:30 +#: actions/finishopenidlogin.php:34 actions/login.php:77 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Sesión xa iniciada" -#: ../lib/subs.php:42 -#: lib/subs.php:42 -#: lib/subs.php:47 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "¡Xa está subscrito!." -#: ../actions/deletenotice.php:54 -#: actions/deletenotice.php:55 +#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Estas seguro que queres eliminar este chío?" -#: ../actions/userauthorization.php:77 -#: actions/userauthorization.php:83 +#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Subscrición de autorización." -#: ../actions/login.php:104 -#: ../actions/register.php:178 -#: actions/register.php:192 -#: actions/login.php:111 -#: actions/openidlogin.php:86 -#: actions/register.php:219 +#: ../actions/login.php:104 ../actions/register.php:178 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Endiante acceder automáticamente, coidado en equipos compartidos!" -#: ../actions/profilesettings.php:65 -#: actions/profilesettings.php:98 -#: actions/profilesettings.php:112 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Suscribirse automáticamente a calquera que se suscriba a min (o mellor para non humáns)" +#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " +"non humáns)" -#: ../actions/avatar.php:32 -#: ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 +#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 +#: actions/profilesettings.php:34 actions/avatarsettings.php:65 +#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" -#: ../actions/avatar.php:113 -#: actions/profilesettings.php:350 -#: actions/profilesettings.php:396 +#: ../actions/avatar.php:113 actions/profilesettings.php:350 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar actualizado." -#: ../actions/imsettings.php:55 -#: actions/imsettings.php:56 +#: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" -#: ../actions/emailsettings.php:54 -#: actions/emailsettings.php:55 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Agardando confirmación para esta dirección. Comproba a túa conta de Jabber/GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches a %s á túa lista de contactos?)" +#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Agardando confirmación para esta dirección. Comproba a túa conta de Jabber/" +"GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches " +"a %s á túa lista de contactos?)" -#: ../actions/smssettings.php:58 -#: actions/smssettings.php:58 +#: ../actions/smssettings.php:58 actions/smssettings.php:58 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Agardando a confirmación neste número de teléfono." -#: ../lib/util.php:1318 -#: lib/util.php:1452 -#: lib/facebookaction.php:259 -#: lib/util.php:1851 +#: ../lib/util.php:1318 lib/util.php:1452 msgid "Before »" msgstr "Antes »" -#: ../actions/profilesettings.php:49 -#: ../actions/register.php:170 -#: actions/profilesettings.php:82 -#: actions/register.php:184 -#: actions/profilesettings.php:84 -#: actions/register.php:211 +#: ../actions/profilesettings.php:49 ../actions/register.php:170 +#: actions/profilesettings.php:82 actions/register.php:184 +#: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Bio" -#: ../actions/profilesettings.php:101 -#: ../actions/register.php:82 -#: ../actions/updateprofile.php:103 -#: actions/profilesettings.php:216 -#: actions/register.php:89 -#: actions/updateprofile.php:104 -#: actions/profilesettings.php:235 -#: actions/register.php:98 +#: ../actions/profilesettings.php:101 ../actions/register.php:82 +#: ../actions/updateprofile.php:103 actions/profilesettings.php:216 +#: actions/register.php:89 actions/updateprofile.php:104 +#: actions/profilesettings.php:205 actions/register.php:174 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." -#: ../lib/deleteaction.php:41 -#: lib/deleteaction.php:41 +#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Non se pode eliminar este chíos." -#: ../actions/updateprofile.php:119 -#: actions/updateprofile.php:120 +#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Non se pode ler a URL do avatar de '%s'" -#: ../actions/password.php:85 -#: ../actions/recoverpassword.php:300 -#: actions/profilesettings.php:404 -#: actions/recoverpassword.php:313 -#: actions/profilesettings.php:450 +#: ../actions/password.php:85 ../actions/recoverpassword.php:300 +#: actions/profilesettings.php:404 actions/recoverpassword.php:313 +#: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Non se pode gardar a contrasinal." -#: ../actions/emailsettings.php:57 -#: ../actions/imsettings.php:58 -#: ../actions/smssettings.php:62 -#: actions/emailsettings.php:58 -#: actions/imsettings.php:59 -#: actions/smssettings.php:62 +#: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 +#: ../actions/smssettings.php:62 actions/emailsettings.php:58 +#: actions/imsettings.php:59 actions/smssettings.php:62 +#: actions/emailsettings.php:111 actions/imsettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancelar" -#: ../lib/openid.php:121 -#: lib/openid.php:121 +#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Non se pode instanciar o obxecto consumidor de OpenID." -#: ../actions/imsettings.php:163 -#: actions/imsettings.php:171 -#: actions/imsettings.php:176 +#: ../actions/imsettings.php:163 actions/imsettings.php:171 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Non se pode normalizar ese identificador de Jabber" -#: ../actions/emailsettings.php:181 -#: actions/emailsettings.php:199 -#: actions/emailsettings.php:205 +#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Esa dirección de correo non se pode normalizar " -#: ../actions/password.php:45 -#: actions/profilesettings.php:184 -#: actions/profilesettings.php:201 +#: ../actions/password.php:45 actions/profilesettings.php:184 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Modificado" -#: ../lib/settingsaction.php:88 -#: lib/settingsaction.php:88 -#: actions/deleteprofile.php:245 +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Cambiar a xestión de email" -#: ../actions/password.php:32 -#: actions/profilesettings.php:36 +#: ../actions/password.php:32 actions/profilesettings.php:36 +#: actions/passwordsettings.php:58 msgid "Change password" msgstr "Cambiar contrasinal" -#: ../lib/settingsaction.php:94 +#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Cambiar contrasinal" -#: ../lib/settingsaction.php:85 -#: lib/settingsaction.php:85 -#: actions/deleteprofile.php:242 +#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Configuración de perfil" -#: ../actions/password.php:43 -#: ../actions/recoverpassword.php:181 -#: ../actions/register.php:155 -#: ../actions/smssettings.php:65 -#: actions/profilesettings.php:182 -#: actions/recoverpassword.php:187 -#: actions/register.php:169 -#: actions/smssettings.php:65 -#: actions/profilesettings.php:199 -#: actions/register.php:196 +#: ../actions/password.php:43 ../actions/recoverpassword.php:181 +#: ../actions/register.php:155 ../actions/smssettings.php:65 +#: actions/profilesettings.php:182 actions/recoverpassword.php:187 +#: actions/register.php:169 actions/smssettings.php:65 +#: actions/passwordsettings.php:105 actions/recoverpassword.php:221 +#: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmar" -#: ../actions/confirmaddress.php:90 -#: actions/confirmaddress.php:90 +#: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 +#: actions/confirmaddress.php:144 msgid "Confirm Address" msgstr "Confirmar enderezo" -#: ../actions/emailsettings.php:238 -#: ../actions/imsettings.php:222 -#: ../actions/smssettings.php:245 -#: actions/emailsettings.php:256 -#: actions/imsettings.php:230 -#: actions/smssettings.php:253 -#: actions/emailsettings.php:260 -#: actions/imsettings.php:235 -#: actions/smssettings.php:255 +#: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 +#: ../actions/smssettings.php:245 actions/emailsettings.php:256 +#: actions/imsettings.php:230 actions/smssettings.php:253 +#: actions/emailsettings.php:379 actions/imsettings.php:361 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmación cancealada." -#: ../actions/smssettings.php:63 -#: actions/smssettings.php:63 +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Código de confirmación." -#: ../actions/confirmaddress.php:38 -#: actions/confirmaddress.php:38 +#: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 +#: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Confirmation code not found." -#: ../actions/register.php:202 -#: actions/register.php:243 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" "\n" "* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" "Noraboa, %s! e benvido a %%%%site.name%%%%. Dende aquí, podes...\n" "\n" "* Ír ó [teu perfil](%s) e enviar o teu primeiro chío.\n" -"* Engadir unha [conta de Jabber/Gtalk](%%%%action.imsettings%%%%) para enviar os teus chíos a través de mensaxería instantánea.\n" -"* [Buscar xente ](%%%%action.peoplesearch%%%%) que poidas coñecer ou que comparta os teus intereses. \n" -"* Actualizar as túas [preferencias no perfil](%%%%action.profilesettings%%%%) para decirlle a outros máis sobre ti. \n" -"* Ler os [manuais en liña](%%%%doc.help%%%%) para ollar máis cousas que podes facer aquí. \n" +"* Engadir unha [conta de Jabber/Gtalk](%%%%action.imsettings%%%%) para " +"enviar os teus chíos a través de mensaxería instantánea.\n" +"* [Buscar xente ](%%%%action.peoplesearch%%%%) que poidas coñecer ou que " +"comparta os teus intereses. \n" +"* Actualizar as túas [preferencias no perfil](%%%%action.profilesettings%%%" +"%) para decirlle a outros máis sobre ti. \n" +"* Ler os [manuais en liña](%%%%doc.help%%%%) para ollar máis cousas que " +"podes facer aquí. \n" "\n" "Grazas por rexistrarte e esperamos que laretexes moito." -#: ../actions/finishopenidlogin.php:91 -#: actions/finishopenidlogin.php:97 +#: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Conectar" -#: ../actions/finishopenidlogin.php:86 -#: actions/finishopenidlogin.php:92 +#: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Conectar con unha conta existente" -#: ../lib/util.php:332 -#: lib/util.php:348 -#: lib/util.php:377 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contacto" -#: ../lib/openid.php:178 -#: lib/openid.php:178 +#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Non se pode crear o formulario OpenID: %s" -#: ../actions/twitapifriendships.php:60 -#: ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 -#: actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:46 -#: actions/twitapifriendships.php:62 +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Non podes seguir a este usuario: %s xa está na túa lista." -#: ../actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:39 +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: ../lib/openid.php:160 -#: lib/openid.php:160 +#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Non se pode redireccionar ao servidor: %s" -#: ../actions/updateprofile.php:162 -#: actions/updateprofile.php:163 +#: ../actions/updateprofile.php:162 actions/updateprofile.php:163 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Non se pode gardar a información do avatar" -#: ../actions/updateprofile.php:155 -#: actions/updateprofile.php:156 +#: ../actions/updateprofile.php:155 actions/updateprofile.php:156 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Non se pode gardar a nova información do perfil" -#: ../lib/subs.php:54 -#: lib/subs.php:61 -#: lib/subs.php:70 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Outro usuario non se puido suscribir a ti." -#: ../lib/subs.php:46 -#: lib/subs.php:46 -#: lib/subs.php:55 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "No se pode suscribir." -#: ../actions/recoverpassword.php:102 -#: actions/recoverpassword.php:105 +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 +#: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." #: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 -#: actions/finishremotesubscribe.php:112 +#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." msgstr "Non se pode convertir o token da petición a tokens de acceso." -#: ../actions/confirmaddress.php:84 -#: ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 -#: ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 -#: actions/emailsettings.php:252 -#: actions/imsettings.php:226 -#: actions/smssettings.php:249 -#: actions/emailsettings.php:256 -#: actions/imsettings.php:231 -#: actions/smssettings.php:251 +#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 +#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 +#: actions/confirmaddress.php:84 actions/emailsettings.php:252 +#: actions/imsettings.php:226 actions/smssettings.php:249 +#: actions/confirmaddress.php:126 actions/emailsettings.php:375 +#: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Non se pode eliminar a confirmación de email." -#: ../lib/subs.php:103 -#: lib/subs.php:116 -#: lib/subs.php:129 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Non se pode eliminar a subscrición." -#: ../actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:82 +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Non se puido atopar ningún estado" -#: ../actions/remotesubscribe.php:127 -#: actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:148 +#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 +#: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." msgstr "Non se puido recoller o token de petición." -#: ../actions/emailsettings.php:205 -#: ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 -#: actions/emailsettings.php:223 -#: actions/imsettings.php:195 -#: actions/smssettings.php:214 -#: actions/emailsettings.php:229 -#: actions/imsettings.php:200 -#: actions/smssettings.php:216 +#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 +#: ../actions/smssettings.php:206 actions/emailsettings.php:223 +#: actions/imsettings.php:195 actions/smssettings.php:214 +#: actions/emailsettings.php:337 actions/imsettings.php:311 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Non se puido inserir o código de confirmación." #: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 -#: actions/finishremotesubscribe.php:198 -#: actions/finishremotesubscribe.php:216 +#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Non se puido inserir a nova subscrición." -#: ../actions/profilesettings.php:184 -#: ../actions/twitapiaccount.php:96 -#: actions/profilesettings.php:299 -#: actions/twitapiaccount.php:94 -#: actions/profilesettings.php:336 -#: actions/twitapiaccount.php:77 +#: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 +#: actions/profilesettings.php:299 actions/twitapiaccount.php:94 +#: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Non se puido gardar o perfil." -#: ../actions/profilesettings.php:161 -#: actions/profilesettings.php:276 -#: actions/profilesettings.php:313 +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Non se puido actualizar o usuario para autosuscrición." -#: ../actions/emailsettings.php:280 -#: ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 -#: actions/emailsettings.php:312 -#: actions/emailsettings.php:302 -#: actions/emailsettings.php:316 +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Non se puido actualizar o rexistro de usuario." -#: ../actions/confirmaddress.php:72 -#: ../actions/emailsettings.php:156 -#: ../actions/emailsettings.php:259 -#: ../actions/imsettings.php:138 -#: ../actions/imsettings.php:243 -#: ../actions/profilesettings.php:141 -#: ../actions/smssettings.php:157 -#: ../actions/smssettings.php:269 -#: actions/confirmaddress.php:72 -#: actions/emailsettings.php:174 -#: actions/emailsettings.php:277 -#: actions/imsettings.php:146 -#: actions/imsettings.php:251 -#: actions/profilesettings.php:256 -#: actions/smssettings.php:165 -#: actions/smssettings.php:277 -#: actions/emailsettings.php:180 -#: actions/emailsettings.php:281 -#: actions/imsettings.php:151 -#: actions/imsettings.php:256 -#: actions/othersettings.php:173 -#: actions/profilesettings.php:293 -#: actions/smspostsettings.php:96 -#: actions/smspostsettings.php:123 -#: actions/smssettings.php:167 -#: actions/smssettings.php:279 -#: actions/smspostsettings.php:101 -#: actions/smspostsettings.php:128 +#: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 +#: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 +#: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 +#: ../actions/smssettings.php:157 ../actions/smssettings.php:269 +#: actions/confirmaddress.php:72 actions/emailsettings.php:174 +#: actions/emailsettings.php:277 actions/imsettings.php:146 +#: actions/imsettings.php:251 actions/profilesettings.php:256 +#: actions/smssettings.php:165 actions/smssettings.php:277 +#: actions/confirmaddress.php:114 actions/emailsettings.php:280 +#: actions/emailsettings.php:411 actions/imsettings.php:252 +#: actions/imsettings.php:395 actions/othersettings.php:162 +#: actions/profilesettings.php:259 actions/smssettings.php:266 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Non se puido actualizar o usuario." -#: ../actions/finishopenidlogin.php:84 -#: actions/finishopenidlogin.php:90 +#: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Crear" -#: ../actions/finishopenidlogin.php:70 -#: actions/finishopenidlogin.php:76 +#: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Crear un novo usuario con este alcume." -#: ../actions/finishopenidlogin.php:68 -#: actions/finishopenidlogin.php:74 +#: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Crear nova conta" -#: ../actions/finishopenidlogin.php:191 -#: actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:208 +#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Creando nova conta para OpenID que xa ten un usuario." -#: ../actions/imsettings.php:45 -#: actions/imsettings.php:46 +#: ../actions/imsettings.php:45 actions/imsettings.php:46 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Direccións Jabber/GTalk confirmadas." -#: ../actions/smssettings.php:46 -#: actions/smssettings.php:46 +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de teléfono actual confirmado mediante SMS." -#: ../actions/emailsettings.php:44 -#: actions/emailsettings.php:45 +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Direccións de correo confirmadas actualmente." -#: ../actions/showstream.php:356 -#: actions/showstream.php:367 -#: actions/showstream.php:418 +#: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "Actual" -#: ../classes/Notice.php:72 -#: classes/Notice.php:86 -#: classes/Notice.php:87 +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erro ó inserir o hashtag na BD: %s" -#: ../lib/util.php:1061 -#: lib/util.php:1110 -#: lib/util.php:1479 +#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Erro ó inserir a contestación na BD: %s" -#: ../actions/deletenotice.php:41 -#: actions/deletenotice.php:41 +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Eliminar chío" -#: ../actions/profilesettings.php:51 -#: ../actions/register.php:172 -#: actions/profilesettings.php:84 -#: actions/register.php:186 -#: actions/profilesettings.php:86 -#: actions/register.php:213 +#: ../actions/profilesettings.php:51 ../actions/register.php:172 +#: actions/profilesettings.php:84 actions/register.php:186 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." -#: ../actions/register.php:158 -#: ../actions/register.php:161 -#: ../lib/settingsaction.php:87 -#: actions/register.php:172 -#: actions/register.php:175 -#: lib/settingsaction.php:87 -#: actions/deleteprofile.php:244 -#: actions/register.php:199 -#: actions/register.php:202 +#: ../actions/register.php:158 ../actions/register.php:161 +#: ../lib/settingsaction.php:87 actions/register.php:172 +#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 +#: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Correo Electrónico" -#: ../actions/emailsettings.php:59 -#: actions/emailsettings.php:60 +#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Enderezo de correo" -#: ../actions/emailsettings.php:32 -#: actions/emailsettings.php:32 +#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 +#: actions/emailsettings.php:60 msgid "Email Settings" msgstr "Configuración de Correo" -#: ../actions/register.php:73 -#: actions/register.php:80 -#: actions/register.php:89 +#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "O enderezo de correo xa existe." -#: ../lib/mail.php:90 -#: lib/mail.php:90 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmar correo electrónico" -#: ../actions/emailsettings.php:61 -#: actions/emailsettings.php:62 +#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Dirección de correo, coma \"Nomede Usuario@exemplo.org\"" -#: ../actions/invite.php:129 -#: actions/invite.php:137 +#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Enderezos de correo" -#: ../actions/recoverpassword.php:191 -#: actions/recoverpassword.php:197 +#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Insire o teu alcume ou enderezo de correo." -#: ../actions/smssettings.php:64 -#: actions/smssettings.php:64 +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Insire o código que recibiches no teu teléfono." -#: ../actions/userauthorization.php:137 -#: actions/userauthorization.php:144 +#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Erro no token de autorización." -#: ../actions/finishopenidlogin.php:253 -#: actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:274 +#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Acounteceu un erro conectando o usuario ó OpenID." -#: ../actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:78 +#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 +#: actions/finishaddopenid.php:126 msgid "Error connecting user." msgstr "Acounteceu un erro ó conectar co usuario" #: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 -#: actions/finishremotesubscribe.php:164 +#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Acounteceu un erro ó inserir o avatar" #: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 -#: actions/finishremotesubscribe.php:156 +#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Acounteceu un erro ó inserir o novo perfil" #: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 -#: actions/finishremotesubscribe.php:180 +#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Aconteceu un erro ó inserir o perfil remoto" -#: ../actions/recoverpassword.php:240 -#: actions/recoverpassword.php:246 +#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Acounteceu un erro gardando a confirmación de enderezo." -#: ../actions/userauthorization.php:140 -#: actions/userauthorization.php:147 +#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Acounteceu un erro gardando o perfil remoto." -#: ../lib/openid.php:226 -#: lib/openid.php:226 +#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Acounteceu un erro ó gardar o perfil." -#: ../lib/openid.php:237 -#: lib/openid.php:237 +#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Acounteceu un erro gardando o usuario." -#: ../actions/password.php:80 -#: actions/profilesettings.php:399 -#: actions/profilesettings.php:445 +#: ../actions/password.php:80 actions/profilesettings.php:399 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Acounteceu un erro gardando o usuario: é inválido." -#: ../actions/login.php:47 -#: ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 -#: ../actions/register.php:98 -#: actions/login.php:47 -#: actions/login.php:73 -#: actions/recoverpassword.php:320 -#: actions/register.php:108 -#: actions/login.php:54 -#: actions/login.php:80 -#: actions/register.php:117 +#: ../actions/login.php:47 ../actions/login.php:73 +#: ../actions/recoverpassword.php:307 ../actions/register.php:98 +#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 +#: actions/register.php:108 actions/login.php:112 actions/login.php:138 +#: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Acounteceu un erro configurando o usuario." -#: ../actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:83 +#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 +#: actions/finishaddopenid.php:131 msgid "Error updating profile" msgstr "Acounteceu un erro actualizando o usuario" #: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 -#: actions/finishremotesubscribe.php:174 +#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Acounteceu un erro actualizando o perfil remoto" -#: ../actions/recoverpassword.php:80 -#: actions/recoverpassword.php:80 +#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 +#: actions/recoverpassword.php:86 msgid "Error with confirmation code." msgstr "Acounteceu un erro co código de confirmación." -#: ../actions/finishopenidlogin.php:89 -#: actions/finishopenidlogin.php:95 +#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Alcume existente" -#: ../lib/util.php:326 -#: lib/util.php:342 -#: lib/util.php:371 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Preguntas frecuentes" -#: ../actions/avatar.php:115 -#: actions/profilesettings.php:352 -#: actions/profilesettings.php:398 +#: ../actions/avatar.php:115 actions/profilesettings.php:352 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Acounteceu un fallo ó actualizar o avatar." -#: ../actions/all.php:61 -#: ../actions/allrss.php:64 -#: actions/all.php:61 -#: actions/allrss.php:64 +#: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 +#: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Fonte para os amigos de %s" -#: ../actions/replies.php:65 -#: ../actions/repliesrss.php:80 -#: actions/replies.php:65 -#: actions/repliesrss.php:66 +#: ../actions/replies.php:65 ../actions/repliesrss.php:80 +#: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Fonte para as contestacións de %s" -#: ../actions/tag.php:55 -#: actions/tag.php:55 -#: actions/tag.php:61 +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Fonte para a etiqueta %s" -#: ../lib/searchaction.php:105 -#: lib/searchaction.php:105 +#: ../lib/searchaction.php:105 lib/searchaction.php:105 +#: lib/searchgroupnav.php:83 msgid "Find content of notices" msgstr "Atopar no contido dos chíos" -#: ../lib/searchaction.php:101 -#: lib/searchaction.php:101 +#: ../lib/searchaction.php:101 lib/searchaction.php:101 +#: lib/searchgroupnav.php:81 msgid "Find people on this site" msgstr "Atopar xente neste sitio" -#: ../actions/login.php:122 -#: actions/login.php:142 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Por razóns de seguranza, por favor re-insire o teu nome de usuario e contrasinal antes de cambiar as túas preferenzas." +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Por razóns de seguranza, por favor re-insire o teu nome de usuario e " +"contrasinal antes de cambiar as túas preferenzas." -#: ../actions/profilesettings.php:44 -#: ../actions/register.php:164 -#: actions/profilesettings.php:77 -#: actions/register.php:178 -#: actions/profilesettings.php:79 -#: actions/register.php:205 +#: ../actions/profilesettings.php:44 ../actions/register.php:164 +#: actions/profilesettings.php:77 actions/register.php:178 +#: actions/profilesettings.php:103 actions/register.php:391 +#: actions/showgroup.php:235 actions/showstream.php:262 +#: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nome completo" -#: ../actions/profilesettings.php:98 -#: ../actions/register.php:79 -#: ../actions/updateprofile.php:93 -#: actions/profilesettings.php:213 -#: actions/register.php:86 -#: actions/updateprofile.php:94 -#: actions/profilesettings.php:232 -#: actions/register.php:95 +#: ../actions/profilesettings.php:98 ../actions/register.php:79 +#: ../actions/updateprofile.php:93 actions/profilesettings.php:213 +#: actions/register.php:86 actions/updateprofile.php:94 +#: actions/editgroup.php:195 actions/newgroup.php:146 +#: actions/profilesettings.php:202 actions/register.php:171 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "O nome completo é demasiado longo (max 255 car)." -#: ../lib/util.php:322 -#: lib/util.php:338 -#: lib/util.php:359 -#: lib/util.php:367 +#: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Axuda" -#: ../lib/util.php:298 -#: lib/util.php:314 -#: lib/util.php:343 +#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Persoal" -#: ../actions/profilesettings.php:46 -#: ../actions/register.php:167 -#: actions/profilesettings.php:79 -#: actions/register.php:181 -#: actions/profilesettings.php:81 -#: actions/register.php:208 +#: ../actions/profilesettings.php:46 ../actions/register.php:167 +#: actions/profilesettings.php:79 actions/register.php:181 +#: actions/profilesettings.php:107 actions/register.php:396 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Páxina persoal" -#: ../actions/profilesettings.php:95 -#: ../actions/register.php:76 -#: actions/profilesettings.php:210 -#: actions/register.php:83 -#: actions/profilesettings.php:229 -#: actions/register.php:92 +#: ../actions/profilesettings.php:95 ../actions/register.php:76 +#: actions/profilesettings.php:210 actions/register.php:83 +#: actions/editgroup.php:192 actions/newgroup.php:143 +#: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "A páxina persoal semella que non é unha URL válida." -#: ../actions/emailsettings.php:91 -#: actions/emailsettings.php:98 +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Quero enviar chíos dende o mail." -#: ../lib/settingsaction.php:102 -#: lib/settingsaction.php:96 -#: actions/deleteprofile.php:253 -#: lib/settingsaction.php:100 -#: lib/settingsaction.php:102 +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" -#: ../actions/imsettings.php:60 -#: actions/imsettings.php:61 +#: ../actions/imsettings.php:60 actions/imsettings.php:61 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Enderezo de IM" -#: ../actions/imsettings.php:33 -#: actions/imsettings.php:33 +#: ../actions/imsettings.php:33 actions/imsettings.php:33 +#: actions/imsettings.php:59 msgid "IM Settings" msgstr "Configuracións de IM" -#: ../actions/finishopenidlogin.php:88 -#: actions/finishopenidlogin.php:94 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co teu OpenID." +#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co " +"teu OpenID." -#: ../actions/openidsettings.php:45 -#: actions/openidsettings.php:46 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Se queres engadir un enderezo OpenID á tua conta, insirea na caixa de embaixo e fai clic en \"Engadir\"." +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Se queres engadir un enderezo OpenID á tua conta, insirea na caixa de " +"embaixo e fai clic en \"Engadir\"." -#: ../actions/recoverpassword.php:137 -#: actions/recoverpassword.php:141 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no enderezo de correo que configuraches na túa conta." +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no " +"enderezo de correo que configuraches na túa conta." -#: ../actions/emailsettings.php:67 -#: ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 -#: actions/smssettings.php:76 +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Correo Entrante" -#: ../actions/emailsettings.php:283 -#: actions/emailsettings.php:301 -#: actions/emailsettings.php:305 +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Dirección de correo entrante eliminada." -#: ../actions/password.php:69 -#: actions/profilesettings.php:388 -#: actions/profilesettings.php:434 +#: ../actions/password.php:69 actions/profilesettings.php:388 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Contrasinal actual incorrecta" -#: ../actions/login.php:67 -#: actions/login.php:67 -#: actions/login.php:74 +#: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Usuario ou contrasinal incorrectos." -#: ../actions/recoverpassword.php:265 -#: actions/recoverpassword.php:271 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "As instruccións para recuperar a túa contrasinal foron enviadas ó enderezo de correo da túa conta." +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"As instruccións para recuperar a túa contrasinal foron enviadas ó enderezo " +"de correo da túa conta." -#: ../actions/updateprofile.php:114 -#: actions/updateprofile.php:115 +#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "URL do avatar '%s' inválido" -#: ../actions/invite.php:55 -#: actions/invite.php:62 +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Dirección de correo Inválida: %s" -#: ../actions/updateprofile.php:98 -#: actions/updateprofile.php:99 +#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Páxina persoal '%s' inválida" -#: ../actions/updateprofile.php:82 -#: actions/updateprofile.php:83 +#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "URL de licenza '%s' inválida" -#: ../actions/postnotice.php:61 -#: actions/postnotice.php:62 -#: actions/postnotice.php:63 +#: ../actions/postnotice.php:61 actions/postnotice.php:62 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Contido do chío inválido" -#: ../actions/postnotice.php:67 -#: actions/postnotice.php:68 -#: actions/postnotice.php:69 +#: ../actions/postnotice.php:67 actions/postnotice.php:68 +#: actions/postnotice.php:72 msgid "Invalid notice uri" msgstr "Enderezo de chío inválido" -#: ../actions/postnotice.php:72 -#: actions/postnotice.php:73 -#: actions/postnotice.php:74 +#: ../actions/postnotice.php:72 actions/postnotice.php:73 +#: actions/postnotice.php:77 msgid "Invalid notice url" msgstr "Enderezo de chío inválido" -#: ../actions/updateprofile.php:87 -#: actions/updateprofile.php:88 +#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Enderezo de perfil inválido '%s'." -#: ../actions/remotesubscribe.php:96 -#: actions/remotesubscribe.php:105 +#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Enderezo de perfil inválido (formato incorrecto)" #: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 -#: actions/finishremotesubscribe.php:78 +#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 msgid "Invalid profile URL returned by server." msgstr "Enderezo de perfil inválido devolto polo servidor." -#: ../actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:37 +#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 +#: actions/avatarbynickname.php:69 msgid "Invalid size." msgstr "Tamaño inválido." -#: ../actions/finishopenidlogin.php:235 -#: ../actions/register.php:93 -#: ../actions/register.php:111 -#: actions/finishopenidlogin.php:241 -#: actions/register.php:103 -#: actions/register.php:121 -#: actions/finishopenidlogin.php:256 -#: actions/register.php:112 -#: actions/register.php:130 +#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 +#: ../actions/register.php:111 actions/finishopenidlogin.php:241 +#: actions/register.php:103 actions/register.php:121 +#: actions/finishopenidlogin.php:279 actions/register.php:193 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Usuario ou contrasinal inválidos." -#: ../actions/invite.php:79 -#: actions/invite.php:86 +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitación(s) enviada(s)." -#: ../actions/invite.php:97 -#: actions/invite.php:104 +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitación(s) enviada(s) á seguinte xente:" -#: ../lib/util.php:306 -#: lib/util.php:322 -#: lib/util.php:382 +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invitar" -#: ../actions/invite.php:123 -#: actions/invite.php:130 +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invitar a novos usuarios" -#: ../lib/util.php:261 -#: lib/util.php:277 -#: lib/util.php:294 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Correndo o software de microblogaxe [StatusNet](http://status.net/), versión %s, dispoñible baixo licenza [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Correndo o software de microblogaxe [StatusNet](http://status.net/), versión " +"%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html)." -#: ../actions/imsettings.php:173 -#: actions/imsettings.php:181 -#: actions/imsettings.php:186 +#: ../actions/imsettings.php:173 actions/imsettings.php:181 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "O identificador de Jabber xa pertence a outro usuario." -#: ../actions/imsettings.php:62 -#: actions/imsettings.php:63 +#: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Enderezo Jabber ou GTalk, coma \"NomeUsuario@Exemplo.org\". Primeiro, asegurate de engadir %s á tua lista de contactos no teu cliente de IM ou no GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Enderezo Jabber ou GTalk, coma \"NomeUsuario@Exemplo.org\". Primeiro, " +"asegurate de engadir %s á tua lista de contactos no teu cliente de IM ou no " +"GTalk." -#: ../actions/profilesettings.php:57 -#: actions/profilesettings.php:90 -#: actions/profilesettings.php:98 +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Linguaxe" -#: ../actions/profilesettings.php:113 -#: actions/profilesettings.php:228 -#: actions/profilesettings.php:247 +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "A Linguaxe é demasiado longa (max 50 car.)." -#: ../actions/profilesettings.php:52 -#: ../actions/register.php:173 -#: actions/profilesettings.php:85 -#: actions/register.php:187 -#: actions/profilesettings.php:87 -#: actions/register.php:214 +#: ../actions/profilesettings.php:52 ../actions/register.php:173 +#: actions/profilesettings.php:85 actions/register.php:187 +#: actions/profilesettings.php:117 actions/register.php:408 +#: actions/showgroup.php:244 actions/showstream.php:271 +#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Localización" -#: ../actions/profilesettings.php:104 -#: ../actions/register.php:85 -#: ../actions/updateprofile.php:108 -#: actions/profilesettings.php:219 -#: actions/register.php:92 -#: actions/updateprofile.php:109 -#: actions/profilesettings.php:238 -#: actions/register.php:101 +#: ../actions/profilesettings.php:104 ../actions/register.php:85 +#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 +#: actions/register.php:92 actions/updateprofile.php:109 +#: actions/editgroup.php:201 actions/newgroup.php:152 +#: actions/profilesettings.php:208 actions/register.php:177 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "A localización é demasiado longa (max 255 car.)." -#: ../actions/login.php:97 -#: ../actions/login.php:106 -#: ../actions/openidlogin.php:68 -#: ../lib/util.php:310 -#: actions/login.php:97 -#: actions/login.php:106 -#: actions/openidlogin.php:77 -#: lib/util.php:326 -#: actions/login.php:104 -#: actions/login.php:113 -#: actions/login.php:129 -#: actions/openidlogin.php:88 -#: lib/util.php:352 +#: ../actions/login.php:97 ../actions/login.php:106 +#: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 +#: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 +#: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 +#: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 +#, php-format msgid "Login" msgstr "Inicio de sesión" -#: ../actions/openidlogin.php:44 -#: actions/openidlogin.php:52 -#: actions/openidlogin.php:60 +#: ../actions/openidlogin.php:44 actions/openidlogin.php:52 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Acceder con unha conta [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 -#: actions/login.php:146 +#: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra](%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" +"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" +"action.openidlogin%%). " -#: ../lib/util.php:308 -#: lib/util.php:324 -#: lib/util.php:350 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Sair" -#: ../actions/register.php:166 -#: actions/register.php:180 -#: actions/register.php:207 +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nome máis longo, preferiblemente o teu nome \"real\"" -#: ../actions/login.php:110 -#: actions/login.php:110 -#: actions/login.php:118 +#: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "¿Perdeches a contrasinal?" -#: ../actions/emailsettings.php:80 -#: ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 -#: actions/smssettings.php:89 +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Crear unha nova dirección de correo para enviar, elimina a antiga." -#: ../actions/emailsettings.php:27 -#: actions/emailsettings.php:27 +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 #, php-format msgid "Manage how you get email from %%site.name%%." msgstr "Xestina como recibir correo dende %%site.name%%." -#: ../actions/showstream.php:300 -#: actions/showstream.php:315 -#: actions/showstream.php:363 +#: ../actions/showstream.php:300 actions/showstream.php:315 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membro dende" -#: ../actions/userrss.php:70 -#: actions/userrss.php:67 +#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblogue por %s" -#: ../actions/smssettings.php:304 -#: actions/smssettings.php:314 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Operadora móbil do teu teléfono. Se sabes se a operadora acepta SMS sobre email e non está listada aquí, envianos unha mensaxe para incluilo en %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Operadora móbil do teu teléfono. Se sabes se a operadora acepta SMS sobre " +"email e non está listada aquí, envianos unha mensaxe para incluilo en %s." -#: ../actions/finishopenidlogin.php:79 -#: ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 -#: actions/register.php:202 -#: actions/register.php:229 +#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 +#: actions/finishopenidlogin.php:85 actions/register.php:202 +#: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "O meu texto e arquivos están dispoñibles baixo licenza " -#: ../actions/emailsettings.php:82 -#: ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 -#: actions/smssettings.php:91 +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Novo" -#: ../lib/mail.php:144 -#: lib/mail.php:144 -#: lib/mail.php:138 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nova dirección de email para posterar en %s" -#: ../actions/emailsettings.php:297 -#: actions/emailsettings.php:315 -#: actions/emailsettings.php:319 +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Engadida nova dirección de correo entrante." -#: ../actions/finishopenidlogin.php:71 -#: actions/finishopenidlogin.php:77 +#: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Novo alcume" -#: ../actions/newnotice.php:87 -#: actions/newnotice.php:96 -#: actions/newnotice.php:141 +#: ../actions/newnotice.php:87 actions/newnotice.php:96 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Novo chío" -#: ../actions/password.php:41 -#: ../actions/recoverpassword.php:179 -#: actions/profilesettings.php:180 -#: actions/recoverpassword.php:185 -#: actions/profilesettings.php:197 +#: ../actions/password.php:41 ../actions/recoverpassword.php:179 +#: actions/profilesettings.php:180 actions/recoverpassword.php:185 +#: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nova contrasinal" -#: ../actions/recoverpassword.php:314 -#: actions/recoverpassword.php:327 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "A nova contrasinal gardouse correctamente. Xa estas logueado." -#: ../actions/login.php:101 -#: ../actions/profilesettings.php:41 -#: ../actions/register.php:151 -#: actions/login.php:101 -#: actions/profilesettings.php:74 -#: actions/register.php:165 -#: actions/login.php:108 -#: actions/profilesettings.php:76 -#: actions/register.php:192 +#: ../actions/login.php:101 ../actions/profilesettings.php:41 +#: ../actions/register.php:151 actions/login.php:101 +#: actions/profilesettings.php:74 actions/register.php:165 +#: actions/login.php:228 actions/profilesettings.php:98 +#: actions/register.php:367 actions/showgroup.php:224 +#: actions/showstream.php:251 actions/tagother.php:95 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Alcume" -#: ../actions/finishopenidlogin.php:175 -#: ../actions/profilesettings.php:110 -#: ../actions/register.php:69 -#: actions/finishopenidlogin.php:181 -#: actions/profilesettings.php:225 -#: actions/register.php:76 -#: actions/finishopenidlogin.php:192 -#: actions/profilesettings.php:244 -#: actions/register.php:85 +#: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 +#: ../actions/register.php:69 actions/finishopenidlogin.php:181 +#: actions/profilesettings.php:225 actions/register.php:76 +#: actions/editgroup.php:183 actions/finishopenidlogin.php:215 +#: actions/newgroup.php:134 actions/profilesettings.php:214 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." -#: ../actions/finishopenidlogin.php:165 -#: ../actions/profilesettings.php:88 -#: ../actions/register.php:67 -#: ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 -#: actions/profilesettings.php:203 -#: actions/register.php:74 -#: actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:182 -#: actions/profilesettings.php:222 -#: actions/register.php:83 +#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 +#: ../actions/register.php:67 ../actions/updateprofile.php:77 +#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 +#: actions/register.php:74 actions/updateprofile.php:78 +#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos." -#: ../actions/finishopenidlogin.php:170 -#: actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:187 +#: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Alcume non permitido." -#: ../actions/remotesubscribe.php:72 -#: actions/remotesubscribe.php:81 +#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Alcume de usuario que queres" -#: ../actions/recoverpassword.php:162 -#: actions/recoverpassword.php:167 +#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Alcume ou email" -#: ../actions/deletenotice.php:59 -#: actions/deletenotice.php:60 -#: actions/block.php:104 +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "No" -#: ../actions/imsettings.php:156 -#: actions/imsettings.php:164 -#: actions/imsettings.php:169 +#: ../actions/imsettings.php:156 actions/imsettings.php:164 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Sen Identificador de Jabber." -#: ../actions/userauthorization.php:129 -#: actions/userauthorization.php:136 +#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Sen petición de autorización!" -#: ../actions/smssettings.php:181 -#: actions/smssettings.php:189 -#: actions/smssettings.php:191 +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Non se seleccionou unha operadora." -#: ../actions/smssettings.php:316 -#: actions/smssettings.php:324 -#: actions/smssettings.php:326 +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Non se inseriu ningún código" -#: ../actions/confirmaddress.php:33 -#: actions/confirmaddress.php:33 +#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 +#: actions/confirmaddress.php:75 msgid "No confirmation code." msgstr "Sen código de confirmación." -#: ../actions/newnotice.php:44 -#: actions/newmessage.php:53 -#: actions/newnotice.php:44 -#: classes/Command.php:197 -#: actions/newmessage.php:52 -#: actions/newnotice.php:53 +#: ../actions/newnotice.php:44 actions/newmessage.php:53 +#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 +#: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Sen contido!" -#: ../actions/emailsettings.php:174 -#: actions/emailsettings.php:192 -#: actions/emailsettings.php:198 +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Non se inseriu unha dirección de correo" -#: ../actions/userbyid.php:32 -#: actions/userbyid.php:32 +#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "Sen id." -#: ../actions/emailsettings.php:271 -#: actions/emailsettings.php:289 -#: actions/emailsettings.php:293 +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Non hai direccións de correo entrante" #: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 -#: actions/finishremotesubscribe.php:66 +#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." msgstr "O servidor remoto non proporcionou un alcume." -#: ../actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:27 +#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 +#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Sen alcume." -#: ../actions/emailsettings.php:222 -#: ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 -#: actions/emailsettings.php:240 -#: actions/imsettings.php:214 -#: actions/smssettings.php:237 -#: actions/emailsettings.php:244 -#: actions/imsettings.php:219 -#: actions/smssettings.php:239 +#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 +#: ../actions/smssettings.php:229 actions/emailsettings.php:240 +#: actions/imsettings.php:214 actions/smssettings.php:237 +#: actions/emailsettings.php:363 actions/imsettings.php:345 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Non hai ningunha confirmación pendente para cancelar." -#: ../actions/smssettings.php:176 -#: actions/smssettings.php:184 -#: actions/smspostsettings.php:76 -#: actions/smssettings.php:186 -#: actions/smspostsettings.php:81 +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Non hai ningún número de teléfono." #: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 -#: actions/finishremotesubscribe.php:73 +#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." msgstr "O servidor non voltou ningún enderezo de perfil." -#: ../actions/recoverpassword.php:226 -#: actions/recoverpassword.php:232 +#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Non hai un enderezo de correo rexistrado para ese usuario." -#: ../actions/userauthorization.php:49 -#: actions/userauthorization.php:55 +#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 +#: actions/userauthorization.php:57 msgid "No request found!" msgstr "¡Non se atoparon peticións!" -#: ../actions/noticesearch.php:64 -#: ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 -#: actions/peoplesearch.php:69 -#: actions/noticesearch.php:68 -#: actions/peoplesearch.php:59 +#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 +#: actions/noticesearch.php:69 actions/peoplesearch.php:69 +#: actions/groupsearch.php:81 actions/noticesearch.php:104 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Non se atoparon resultados" -#: ../actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:32 +#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 +#: actions/avatarbynickname.php:64 msgid "No size." msgstr "Sen tamaño." -#: ../actions/twitapistatuses.php:595 -#: actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 -#: actions/twitapifavorites.php:109 -#: actions/twitapistatuses.php:438 +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Non se atopou un estado con ese ID." -#: ../actions/twitapistatuses.php:555 -#: actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:411 +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Non existe ningún estado con esa ID atopada." -#: ../actions/openidsettings.php:135 -#: actions/openidsettings.php:144 +#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 +#: actions/openidsettings.php:222 msgid "No such OpenID." msgstr "Ningún OpenID." -#: ../actions/doc.php:29 -#: actions/doc.php:29 +#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Ningún documento." -#: ../actions/shownotice.php:32 -#: ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 -#: actions/shownotice.php:32 -#: actions/shownotice.php:83 -#: lib/deleteaction.php:30 -#: actions/shownotice.php:38 -#: actions/shownotice.php:114 +#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 +#: ../lib/deleteaction.php:30 actions/shownotice.php:32 +#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Ningún chío." -#: ../actions/recoverpassword.php:56 -#: actions/recoverpassword.php:56 +#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 +#: actions/recoverpassword.php:62 msgid "No such recovery code." msgstr "Ningún código de recuperación." -#: ../actions/postnotice.php:56 -#: actions/postnotice.php:57 +#: ../actions/postnotice.php:56 actions/postnotice.php:57 +#: actions/postnotice.php:60 msgid "No such subscription" msgstr "Ningunha subscripción" -#: ../actions/all.php:34 -#: ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 -#: ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 -#: ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 -#: ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 -#: ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 -#: ../actions/xrds.php:35 -#: ../lib/gallery.php:57 -#: ../lib/subs.php:33 -#: ../lib/subs.php:82 -#: actions/all.php:34 -#: actions/allrss.php:35 -#: actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 -#: actions/foaf.php:40 -#: actions/ical.php:31 -#: actions/remotesubscribe.php:93 -#: actions/remotesubscribe.php:100 -#: actions/replies.php:57 -#: actions/repliesrss.php:35 -#: actions/showfavorites.php:34 -#: actions/showstream.php:110 -#: actions/userbyid.php:36 -#: actions/userrss.php:35 -#: actions/xrds.php:35 -#: classes/Command.php:120 -#: classes/Command.php:162 -#: classes/Command.php:203 -#: classes/Command.php:237 -#: lib/gallery.php:62 -#: lib/mailbox.php:36 -#: lib/subs.php:33 -#: lib/subs.php:95 -#: actions/showstream.php:157 -#: classes/Command.php:208 -#: classes/Command.php:242 -#: lib/gallery.php:85 -#: lib/subs.php:105 +#: ../actions/all.php:34 ../actions/allrss.php:35 +#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 +#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 +#: ../actions/replies.php:57 ../actions/repliesrss.php:35 +#: ../actions/showstream.php:110 ../actions/userbyid.php:36 +#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 +#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 +#: actions/allrss.php:35 actions/avatarbynickname.php:43 +#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 +#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 +#: actions/replies.php:57 actions/repliesrss.php:35 +#: actions/showfavorites.php:34 actions/showstream.php:110 +#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 +#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 +#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 +#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 +#: actions/foaf.php:41 actions/remotesubscribe.php:123 +#: actions/remotesubscribe.php:130 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/showstream.php:100 actions/userbyid.php:74 +#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 +#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 +#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Ningún usuario." -#: ../actions/recoverpassword.php:211 -#: actions/recoverpassword.php:217 +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Non hai ningún usuario con isa dirección de correo ou nome de usuario." -#: ../lib/gallery.php:80 -#: lib/gallery.php:85 -#: actions/users.php:59 +#: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "Ninguén para amosar" -#: ../actions/recoverpassword.php:60 -#: actions/recoverpassword.php:60 +#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 +#: actions/recoverpassword.php:66 msgid "Not a recovery code." msgstr "Non é un código de recuperación." -#: ../scripts/maildaemon.php:50 -#: scripts/maildaemon.php:50 +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Non é un usuario rexistrado." -#: ../lib/twitterapi.php:226 -#: ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 -#: lib/twitterapi.php:391 -#: lib/twitterapi.php:418 -#: lib/twitterapi.php:502 -#: lib/twitterapi.php:423 -#: lib/twitterapi.php:450 -#: lib/twitterapi.php:534 +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Non é un formato de datos soportado." -#: ../actions/imsettings.php:167 -#: actions/imsettings.php:175 -#: actions/imsettings.php:180 +#: ../actions/imsettings.php:167 actions/imsettings.php:175 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Non é un Identificador de Jabber válido" -#: ../lib/openid.php:131 -#: lib/openid.php:131 +#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Non é un enderezo OpenID válido." -#: ../actions/emailsettings.php:185 -#: actions/emailsettings.php:203 -#: actions/emailsettings.php:209 +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Non é unha dirección de correo válida" -#: ../actions/register.php:63 -#: actions/register.php:70 -#: actions/register.php:79 +#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Non é un enderezo de correo válido." -#: ../actions/profilesettings.php:91 -#: ../actions/register.php:71 -#: actions/profilesettings.php:206 -#: actions/register.php:78 -#: actions/profilesettings.php:225 -#: actions/register.php:87 +#: ../actions/profilesettings.php:91 ../actions/register.php:71 +#: actions/profilesettings.php:206 actions/register.php:78 +#: actions/editgroup.php:186 actions/newgroup.php:137 +#: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Non é un alcume válido." -#: ../actions/remotesubscribe.php:120 -#: actions/remotesubscribe.php:129 +#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 +#: actions/remotesubscribe.php:159 msgid "Not a valid profile URL (incorrect services)." msgstr "Non é un enderezo de perfil válido (servizos incorrectos)." -#: ../actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:122 +#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 +#: actions/remotesubscribe.php:152 msgid "Not a valid profile URL (no XRDS defined)." msgstr "Non é un enderezo de perfil válido (non está definido ningún XRDS)." -#: ../actions/remotesubscribe.php:104 -#: actions/remotesubscribe.php:113 +#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 +#: actions/remotesubscribe.php:143 msgid "Not a valid profile URL (no YADIS document)." msgstr "Non é un enderezo de perfil válido (non ten documento YADIS)." -#: ../actions/avatar.php:95 -#: actions/profilesettings.php:332 -#: actions/profilesettings.php:378 +#: ../actions/avatar.php:95 actions/profilesettings.php:332 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Non é unha imaxe ou está corrupta." #: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 -#: actions/finishremotesubscribe.php:52 +#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 msgid "Not authorized." msgstr "Non está autorizado." #: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 +#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "¡Non esperaba esa resposta!" -#: ../actions/twitapistatuses.php:422 -#: actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:304 +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Non atopado" -#: ../actions/finishaddopenid.php:29 -#: ../actions/logout.php:33 -#: ../actions/newnotice.php:29 -#: ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 -#: ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 -#: actions/disfavor.php:29 -#: actions/favor.php:30 -#: actions/finishaddopenid.php:29 -#: actions/logout.php:33 -#: actions/newmessage.php:28 -#: actions/newnotice.php:29 -#: actions/subscribe.php:28 -#: actions/unsubscribe.php:25 -#: lib/deleteaction.php:38 -#: lib/settingsaction.php:27 -#: actions/block.php:31 -#: actions/misc.php:27 -#: actions/newnotice.php:30 -#: actions/nudge.php:30 -#: actions/subedit.php:31 -#: actions/unblock.php:31 +#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 +#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 +#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 +#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 +#: actions/finishaddopenid.php:29 actions/logout.php:33 +#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 +#: actions/unsubscribe.php:25 lib/deleteaction.php:38 +#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 +#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 +#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 +#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 +#: actions/unsubscribe.php:27 lib/deleteaction.php:66 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Non está logueado." -#: ../lib/subs.php:91 -#: lib/subs.php:104 -#: lib/subs.php:117 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Non está suscrito!" -#: ../actions/opensearch.php:35 -#: actions/opensearch.php:35 +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 msgid "Notice Search" msgstr "Procura de Chíos" -#: ../actions/showstream.php:82 -#: actions/showstream.php:82 -#: actions/showstream.php:111 -#: actions/showstream.php:118 -#: actions/showstream.php:123 +#: ../actions/showstream.php:82 actions/showstream.php:82 +#: actions/showstream.php:180 actions/showstream.php:187 +#: actions/showstream.php:192 #, php-format msgid "Notice feed for %s" msgstr "Fonte de chíos para %s" -#: ../actions/shownotice.php:39 -#: actions/shownotice.php:39 -#: actions/shownotice.php:45 +#: ../actions/shownotice.php:39 actions/shownotice.php:39 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "O chío non ten perfil" -#: ../actions/showstream.php:316 -#: actions/showstream.php:331 -#: actions/showstream.php:379 +#: ../actions/showstream.php:316 actions/showstream.php:331 +#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Chíos" -#: ../actions/tag.php:35 -#: ../actions/tag.php:81 -#: actions/tag.php:35 -#: actions/tag.php:81 +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Chíos tagueados con %s" -#: ../actions/password.php:39 -#: actions/profilesettings.php:178 -#: actions/profilesettings.php:195 +#: ../actions/password.php:39 actions/profilesettings.php:178 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Contrasinal antiga" -#: ../lib/settingsaction.php:96 -#: ../lib/util.php:314 -#: lib/settingsaction.php:90 -#: lib/util.php:330 -#: actions/deleteprofile.php:247 +#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 +#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" -#: ../actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:66 +#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configuración de conta OpenID" -#: ../lib/openid.php:180 -#: lib/openid.php:180 +#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Auto-Envío de OpenID" -#: ../actions/finishaddopenid.php:99 -#: ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 -#: actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 -#: actions/openidlogin.php:68 -#: actions/finishopenidlogin.php:150 -#: actions/openidlogin.php:76 +#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 +#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 +#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 +#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Acceso OpenID" -#: ../actions/openidlogin.php:65 -#: ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 -#: actions/openidsettings.php:50 -#: actions/login.php:125 -#: actions/openidlogin.php:82 +#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 +#: actions/openidlogin.php:74 actions/openidsettings.php:50 +#: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "Enderezo OpenID" -#: ../actions/finishaddopenid.php:42 -#: ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 -#: actions/finishopenidlogin.php:109 +#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 +#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 +#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Autenticación OpenID cancelada." -#: ../actions/finishaddopenid.php:46 -#: ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 -#: actions/finishopenidlogin.php:113 +#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 +#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 +#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "A autenticación OpenID fallou: %s" -#: ../lib/openid.php:133 -#: lib/openid.php:133 +#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Fallou o OpenID: %s" -#: ../actions/openidsettings.php:144 -#: actions/openidsettings.php:153 +#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 +#: actions/openidsettings.php:231 msgid "OpenID removed." msgstr "OpenID eliminado." -#: ../actions/openidsettings.php:37 -#: actions/openidsettings.php:37 +#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 +#: actions/openidsettings.php:59 msgid "OpenID settings" msgstr "Configuracións de OpenID" -#: ../actions/invite.php:135 -#: actions/invite.php:143 +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Opcionalmente engadir unha mensaxe persoal á invitación." -#: ../actions/avatar.php:84 -#: actions/profilesettings.php:321 -#: actions/profilesettings.php:367 +#: ../actions/avatar.php:84 actions/profilesettings.php:321 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Carga parcial." -#: ../actions/finishopenidlogin.php:90 -#: ../actions/login.php:102 -#: ../actions/register.php:153 -#: ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 -#: actions/login.php:102 -#: actions/register.php:167 -#: actions/login.php:109 -#: actions/register.php:194 +#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 +#: ../actions/register.php:153 ../lib/settingsaction.php:93 +#: actions/finishopenidlogin.php:96 actions/login.php:102 +#: actions/register.php:167 actions/finishopenidlogin.php:118 +#: actions/login.php:231 actions/register.php:372 +#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Contrasinal" -#: ../actions/recoverpassword.php:288 -#: actions/recoverpassword.php:301 +#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "A contrasinal e a súa confirmación non coinciden." -#: ../actions/recoverpassword.php:284 -#: actions/recoverpassword.php:297 +#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "A contrasinal debe ter 6 caracteres ou máis." -#: ../actions/recoverpassword.php:261 -#: ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 -#: actions/recoverpassword.php:269 +#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 +#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Petición de recuperación de contrasinal" -#: ../actions/password.php:89 -#: ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 -#: actions/recoverpassword.php:326 -#: actions/profilesettings.php:454 +#: ../actions/password.php:89 ../actions/recoverpassword.php:313 +#: actions/profilesettings.php:408 actions/recoverpassword.php:326 +#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Contrasinal gardada." -#: ../actions/password.php:61 -#: ../actions/register.php:88 -#: actions/profilesettings.php:380 -#: actions/register.php:98 -#: actions/profilesettings.php:426 -#: actions/register.php:107 +#: ../actions/password.php:61 ../actions/register.php:88 +#: actions/profilesettings.php:380 actions/register.php:98 +#: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "As contrasinais non coinciden" -#: ../lib/searchaction.php:100 -#: lib/searchaction.php:100 +#: ../lib/searchaction.php:100 lib/searchaction.php:100 +#: lib/searchgroupnav.php:80 msgid "People" msgstr "Xente" -#: ../actions/opensearch.php:33 -#: actions/opensearch.php:33 +#: ../actions/opensearch.php:33 actions/opensearch.php:33 +#: actions/opensearch.php:64 msgid "People Search" msgstr "Procurar xente" -#: ../actions/peoplesearch.php:33 -#: actions/peoplesearch.php:33 +#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 +#: actions/peoplesearch.php:58 msgid "People search" msgstr "Procurar xente." -#: ../lib/stream.php:50 -#: lib/personal.php:50 +#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Persoal" -#: ../actions/invite.php:133 -#: actions/invite.php:141 +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Mensaxe persoal" -#: ../actions/smssettings.php:69 -#: actions/smssettings.php:69 -#: actions/smspostsettings.php:49 -#: actions/smspostsettings.php:50 +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de teléfono, sen puntuacións ou espazos, co código de área" #: ../actions/userauthorization.php:78 -#: actions/userauthorization.php:84 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." -#: ../actions/imsettings.php:73 -#: actions/imsettings.php:74 +#: ../actions/imsettings.php:73 actions/imsettings.php:74 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post a notice when my Jabber/GTalk status changes." -#: ../actions/emailsettings.php:85 -#: ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 -#: actions/emailsettings.php:86 -#: actions/imsettings.php:68 -#: actions/smssettings.php:94 -#: actions/twittersettings.php:70 +#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 +#: ../actions/smssettings.php:94 actions/emailsettings.php:86 +#: actions/imsettings.php:68 actions/smssettings.php:94 +#: actions/twittersettings.php:70 actions/emailsettings.php:147 +#: actions/imsettings.php:133 actions/smssettings.php:157 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferencias" -#: ../actions/emailsettings.php:162 -#: ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 -#: actions/emailsettings.php:180 -#: actions/imsettings.php:152 -#: actions/smssettings.php:171 -#: actions/emailsettings.php:186 -#: actions/imsettings.php:157 -#: actions/othersettings.php:179 -#: actions/smssettings.php:173 +#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 +#: ../actions/smssettings.php:163 actions/emailsettings.php:180 +#: actions/imsettings.php:152 actions/smssettings.php:171 +#: actions/emailsettings.php:286 actions/imsettings.php:258 +#: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Preferencias gardadas." -#: ../actions/profilesettings.php:57 -#: actions/profilesettings.php:90 -#: actions/profilesettings.php:98 +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Linguaxe preferida" -#: ../lib/util.php:328 -#: lib/util.php:344 -#: lib/util.php:373 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacidade" -#: ../classes/Notice.php:95 -#: ../classes/Notice.php:106 -#: classes/Notice.php:109 -#: classes/Notice.php:119 -#: classes/Notice.php:139 -#: classes/Notice.php:149 +#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 +#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chío." -#: ../lib/settingsaction.php:84 -#: ../lib/stream.php:60 -#: lib/personal.php:60 -#: lib/settingsaction.php:84 -#: actions/deleteprofile.php:241 +#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 +#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Perfil" -#: ../actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:82 +#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Enderezo de perfil" -#: ../actions/profilesettings.php:34 -#: actions/profilesettings.php:32 +#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Configuración de perfil" -#: ../actions/postnotice.php:51 -#: ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 -#: actions/updateprofile.php:53 +#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 +#: actions/postnotice.php:52 actions/updateprofile.php:53 +#: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Perfil descoñecido" -#: ../actions/public.php:54 -#: actions/public.php:54 -#: actions/public.php:77 +#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 msgid "Public Stream Feed" msgstr "Sindicación do Fio Público" -#: ../actions/public.php:33 -#: actions/public.php:33 -#: lib/stream.php:34 +#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Liña de tempo pública" -#: ../actions/imsettings.php:79 -#: actions/imsettings.php:80 +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar unha MicroID dende a miña dirección de Jabber/GTalk." -#: ../actions/emailsettings.php:94 -#: actions/emailsettings.php:101 +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publicar unha MicroID dende a miña dirección de correo." -#: ../actions/tag.php:75 -#: ../actions/tag.php:76 -#: actions/tag.php:75 +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 #: actions/tag.php:76 msgid "Recent Tags" msgstr "Tags Recentes" -#: ../actions/recoverpassword.php:166 -#: actions/recoverpassword.php:171 +#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recuperar" -#: ../actions/recoverpassword.php:156 -#: actions/recoverpassword.php:161 +#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recuperar contrasinal" -#: ../actions/recoverpassword.php:67 -#: actions/recoverpassword.php:67 +#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 +#: actions/recoverpassword.php:73 msgid "Recovery code for unknown user." msgstr "Código de recuperación para usuario descoñecido." -#: ../actions/register.php:142 -#: ../actions/register.php:193 -#: ../lib/util.php:312 -#: actions/register.php:152 -#: actions/register.php:207 -#: lib/util.php:328 -#: actions/register.php:181 -#: actions/register.php:234 -#: lib/util.php:354 +#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 +#: actions/register.php:152 actions/register.php:207 lib/util.php:328 +#: actions/register.php:69 actions/register.php:436 lib/action.php:338 +#: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Rexistrar" -#: ../actions/register.php:28 -#: actions/register.php:28 -#: actions/finishopenidlogin.php:173 +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Non se permite o rexistro neste intre." -#: ../actions/register.php:200 -#: actions/register.php:214 -#: actions/register.php:241 +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Xa estas rexistrado!!" -#: ../actions/userauthorization.php:120 -#: actions/userauthorization.php:127 +#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Rexeitar" -#: ../actions/login.php:103 -#: ../actions/register.php:176 -#: actions/login.php:103 -#: actions/register.php:190 -#: actions/login.php:110 -#: actions/openidlogin.php:85 -#: actions/register.php:217 +#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 +#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Lembrarme" -#: ../actions/updateprofile.php:70 -#: actions/updateprofile.php:71 +#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Non hai ningún perfil que coincida co perfil remoto" -#: ../actions/remotesubscribe.php:65 -#: actions/remotesubscribe.php:73 +#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Suscrición remota" -#: ../actions/emailsettings.php:47 -#: ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 -#: ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 -#: ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 -#: actions/emailsettings.php:76 -#: actions/imsettings.php:49 -#: actions/openidsettings.php:108 -#: actions/smssettings.php:50 -#: actions/smssettings.php:84 -#: actions/twittersettings.php:59 -#: actions/smspostsettings.php:45 -#: actions/twittersettings.php:61 -#: actions/smspostsettings.php:46 +#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 +#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 +#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 +#: actions/emailsettings.php:48 actions/emailsettings.php:76 +#: actions/imsettings.php:49 actions/openidsettings.php:108 +#: actions/smssettings.php:50 actions/smssettings.php:84 +#: actions/twittersettings.php:59 actions/emailsettings.php:101 +#: actions/emailsettings.php:134 actions/imsettings.php:102 +#: actions/openidsettings.php:166 actions/smssettings.php:103 +#: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Eliminar" -#: ../actions/openidsettings.php:68 -#: actions/openidsettings.php:69 +#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 +#: actions/openidsettings.php:123 msgid "Remove OpenID" msgstr "Eliminar OpenID" -#: ../actions/openidsettings.php:73 -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Eliminando o teu enderezo OpenID vaiche ser imposible acceder! Se queres eliminalo, primeiro engade outro enderezo OpenID." +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Eliminando o teu enderezo OpenID vaiche ser imposible acceder! Se queres " +"eliminalo, primeiro engade outro enderezo OpenID." -#: ../lib/stream.php:55 -#: lib/personal.php:55 +#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Respostas" -#: ../actions/replies.php:47 -#: ../actions/repliesrss.php:76 -#: ../lib/stream.php:56 -#: actions/replies.php:47 -#: actions/repliesrss.php:62 -#: lib/personal.php:56 +#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 +#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 +#: actions/replies.php:116 actions/repliesrss.php:67 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Replies to %s" -#: ../actions/recoverpassword.php:183 -#: actions/recoverpassword.php:189 +#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Restaurar" -#: ../actions/recoverpassword.php:173 -#: actions/recoverpassword.php:178 +#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Restaurar contrasinal" -#: ../lib/settingsaction.php:99 -#: lib/settingsaction.php:93 -#: actions/deleteprofile.php:250 -#: actions/subscriptions.php:73 +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" -#: ../actions/smssettings.php:67 -#: actions/smssettings.php:67 -#: actions/smspostsettings.php:38 -#: actions/smspostsettings.php:39 +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Número de Teléfono do SMS" -#: ../actions/smssettings.php:33 -#: actions/smssettings.php:33 +#: ../actions/smssettings.php:33 actions/smssettings.php:33 +#: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Configuracións de SMS" -#: ../lib/mail.php:219 -#: lib/mail.php:225 -#: lib/mail.php:220 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Confirmación de SMS" -#: ../actions/recoverpassword.php:182 -#: actions/recoverpassword.php:188 +#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Igual que a contrasinal de enriba" -#: ../actions/register.php:156 -#: actions/register.php:170 -#: actions/register.php:197 +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "A mesma contrasinal que arriba. Requerido." -#: ../actions/emailsettings.php:97 -#: ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 -#: ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 -#: actions/imsettings.php:82 -#: actions/profilesettings.php:101 -#: actions/smssettings.php:100 -#: actions/twittersettings.php:83 -#: actions/emailsettings.php:108 -#: actions/imsettings.php:85 -#: actions/othersettings.php:56 -#: actions/profilesettings.php:118 -#: actions/subscriptions.php:74 -#: actions/tagother.php:100 -#: actions/twittersettings.php:82 +#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 +#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 +#: actions/emailsettings.php:104 actions/imsettings.php:82 +#: actions/profilesettings.php:101 actions/smssettings.php:100 +#: actions/twittersettings.php:83 actions/emailsettings.php:182 +#: actions/facebooksettings.php:114 actions/imsettings.php:157 +#: actions/othersettings.php:117 actions/profilesettings.php:150 +#: actions/smssettings.php:169 actions/subscriptions.php:124 +#: actions/tagother.php:152 actions/twittersettings.php:161 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Gardar" -#: ../lib/searchaction.php:84 -#: ../lib/util.php:300 -#: lib/searchaction.php:84 -#: lib/util.php:316 -#: lib/util.php:345 +#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Buscar" -#: ../actions/noticesearch.php:80 -#: actions/noticesearch.php:85 -#: actions/noticesearch.php:84 +#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 +#: actions/noticesearch.php:127 msgid "Search Stream Feed" msgstr "Procura no Fío" -#: ../actions/noticesearch.php:30 -#: actions/noticesearch.php:30 -#: actions/noticesearch.php:29 +#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Procurar chíos en %%site.name%% polos seus contidos. Separa os termos de procura por espazos, deben ter 3 caracteres ou máis." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Procurar chíos en %%site.name%% polos seus contidos. Separa os termos de " +"procura por espazos, deben ter 3 caracteres ou máis." -#: ../actions/peoplesearch.php:28 -#: actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. Separa os termos por espazos; deben ter 3 caracteres ou máis." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " +"Separa os termos por espazos; deben ter 3 caracteres ou máis." -#: ../actions/smssettings.php:296 -#: actions/smssettings.php:304 -#: actions/smssettings.php:306 +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Selecciona unha operadora" -#: ../actions/invite.php:137 -#: ../lib/util.php:1172 -#: actions/invite.php:145 -#: lib/util.php:1306 -#: lib/util.php:1731 -#: lib/util.php:1705 -#: lib/util.php:2217 +#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 +#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Enviar" -#: ../actions/emailsettings.php:73 -#: ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 -#: actions/smssettings.php:82 +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Enviar un correo a esta dirección para enviar novos chíos." -#: ../actions/emailsettings.php:88 -#: actions/emailsettings.php:89 +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Envíame chios de novas suscricións por email." -#: ../actions/imsettings.php:70 -#: actions/imsettings.php:71 +#: ../actions/imsettings.php:70 actions/imsettings.php:71 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Enviarme advertencias a través de Jabber/GTalk." -#: ../actions/smssettings.php:97 -#: actions/smssettings.php:97 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme grandes facturas." +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme " +"grandes facturas." -#: ../actions/imsettings.php:76 -#: actions/imsettings.php:77 +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." +msgstr "" +"Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." -#: ../lib/util.php:304 -#: lib/util.php:320 -#: lib/util.php:348 +#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Configuración" -#: ../actions/profilesettings.php:192 -#: actions/profilesettings.php:307 -#: actions/profilesettings.php:353 +#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Configuracións gardadas." -#: ../actions/tag.php:60 -#: actions/tag.php:60 -#: actions/tag.php:67 +#: ../actions/tag.php:60 actions/tag.php:60 msgid "Showing most popular tags from the last week" msgstr "Amoa os tags máis populares dende a semana pasada" -#: ../actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:66 +#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 +#: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." msgstr "Alguen máis ten ese enderezo OpenID." -#: ../actions/finishopenidlogin.php:42 -#: ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 -#: actions/openidsettings.php:135 +#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 +#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 +#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 msgid "Something weird happened." msgstr "Algo gordo aconteceu." -#: ../scripts/maildaemon.php:58 -#: scripts/maildaemon.php:58 +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Aivá, non se permiten correos entrantes." -#: ../scripts/maildaemon.php:54 -#: scripts/maildaemon.php:54 +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Ise é un enderezo IM incorrecto." -#: ../lib/util.php:330 -#: lib/util.php:346 -#: lib/util.php:375 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Fonte" -#: ../actions/showstream.php:296 -#: actions/showstream.php:311 -#: actions/showstream.php:359 -#: actions/misc.php:87 +#: ../actions/showstream.php:296 actions/showstream.php:311 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Estatísticas" -#: ../actions/finishopenidlogin.php:182 -#: ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 -#: actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:199 -#: actions/finishopenidlogin.php:267 +#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 +#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 +#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "OpenID almacenado non atopado" -#: ../actions/remotesubscribe.php:75 -#: ../actions/showstream.php:188 -#: ../actions/showstream.php:197 -#: actions/remotesubscribe.php:84 -#: actions/showstream.php:197 -#: actions/showstream.php:206 -#: actions/showstream.php:254 -#: lib/util.php:2137 +#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 +#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 +#: actions/showstream.php:197 actions/showstream.php:206 +#: actions/remotesubscribe.php:113 actions/showstream.php:376 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Subscribir" -#: ../actions/showstream.php:313 -#: ../actions/subscribers.php:27 -#: actions/showstream.php:328 -#: actions/subscribers.php:27 -#: actions/showstream.php:376 -#: lib/gallery.php:136 -#: lib/gallery.php:137 +#: ../actions/showstream.php:313 ../actions/subscribers.php:27 +#: actions/showstream.php:328 actions/subscribers.php:27 +#: actions/showstream.php:436 actions/showstream.php:498 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscritores" -#: ../actions/userauthorization.php:310 -#: actions/userauthorization.php:322 +#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Subscrición autorizada" -#: ../actions/userauthorization.php:320 -#: actions/userauthorization.php:332 +#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Subscrición rexeitada" -#: ../actions/showstream.php:230 -#: ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 -#: actions/showstream.php:240 -#: actions/showstream.php:322 -#: actions/subscriptions.php:27 -#: actions/showstream.php:288 -#: actions/showstream.php:370 -#: lib/gallery.php:131 -#: lib/gallery.php:132 +#: ../actions/showstream.php:230 ../actions/showstream.php:307 +#: ../actions/subscriptions.php:27 actions/showstream.php:240 +#: actions/showstream.php:322 actions/subscriptions.php:27 +#: actions/showstream.php:407 actions/showstream.php:489 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscricións" -#: ../actions/avatar.php:87 -#: actions/profilesettings.php:324 -#: actions/profilesettings.php:370 +#: ../actions/avatar.php:87 actions/profilesettings.php:324 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Aconteceu un erro no sistema namentras se estaba cargando o ficheiro." -#: ../actions/tag.php:41 -#: ../lib/util.php:301 -#: actions/tag.php:41 -#: lib/util.php:317 -#: actions/profilesettings.php:90 -#: actions/showstream.php:382 -#: actions/tagother.php:96 -#: actions/tagother.php:162 -#: actions/tag.php:47 -#: lib/profilelist.php:126 -#: lib/profilelist.php:128 +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" -#: ../lib/searchaction.php:104 -#: lib/searchaction.php:104 +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Texto" -#: ../actions/noticesearch.php:34 -#: actions/noticesearch.php:34 -#: actions/noticesearch.php:33 +#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Procura de texto" -#: ../actions/openidsettings.php:140 -#: actions/openidsettings.php:149 +#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 +#: actions/openidsettings.php:227 msgid "That OpenID does not belong to you." msgstr "Ese OpenID non che pertence." -#: ../actions/confirmaddress.php:52 -#: actions/confirmaddress.php:52 +#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 +#: actions/confirmaddress.php:94 msgid "That address has already been confirmed." msgstr "Esa dirección xa foi confirmada." -#: ../actions/confirmaddress.php:43 -#: actions/confirmaddress.php:43 +#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 +#: actions/confirmaddress.php:85 msgid "That confirmation code is not for you!" msgstr "¡Ese código de confirmación non é para ti!" -#: ../actions/emailsettings.php:191 -#: actions/emailsettings.php:209 -#: actions/emailsettings.php:215 +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Este enderezo de correo xa pertence a outro usuario." -#: ../actions/avatar.php:80 -#: actions/profilesettings.php:317 -#: actions/profilesettings.php:363 +#: ../actions/avatar.php:80 actions/profilesettings.php:317 +#: lib/imagefile.php:71 msgid "That file is too big." msgstr "Ese arquivo é demasiado grande." -#: ../actions/imsettings.php:170 -#: actions/imsettings.php:178 -#: actions/imsettings.php:183 +#: ../actions/imsettings.php:170 actions/imsettings.php:178 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Xa é a túa conta de Jabber." -#: ../actions/emailsettings.php:188 -#: actions/emailsettings.php:206 -#: actions/emailsettings.php:212 +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Xa é o teu enderezo de correo." -#: ../actions/smssettings.php:188 -#: actions/smssettings.php:196 -#: actions/smspostsettings.php:83 -#: actions/smssettings.php:198 -#: actions/smspostsettings.php:88 +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Xa é o teu número de teléfono." -#: ../actions/imsettings.php:233 -#: actions/imsettings.php:241 -#: actions/imsettings.php:246 +#: ../actions/imsettings.php:233 actions/imsettings.php:241 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Esa non é a túa conta Jabber." -#: ../actions/emailsettings.php:249 -#: actions/emailsettings.php:267 -#: actions/emailsettings.php:271 +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Esa non é a túa dirección de correo." -#: ../actions/smssettings.php:257 -#: actions/smssettings.php:265 -#: actions/smspostsettings.php:113 -#: actions/smssettings.php:267 -#: actions/smspostsettings.php:118 +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Ese non é o teu número de teléfono." -#: ../actions/emailsettings.php:226 -#: ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 -#: actions/imsettings.php:218 -#: actions/emailsettings.php:248 -#: actions/imsettings.php:223 +#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 +#: actions/emailsettings.php:244 actions/imsettings.php:218 +#: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Esa é unha enderezo IM incorrecto." -#: ../actions/smssettings.php:233 -#: actions/smssettings.php:241 -#: actions/smssettings.php:243 +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Ese é un número de confirmación incorrecto." -#: ../actions/smssettings.php:191 -#: actions/smssettings.php:199 -#: actions/smspostsettings.php:86 -#: actions/smssettings.php:201 -#: actions/smspostsettings.php:91 +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "O número de teléfono xa pertence a outro usuario." -#: ../actions/newnotice.php:49 -#: ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 -#: actions/twitapistatuses.php:330 -#: actions/newnotice.php:61 -#: actions/newsmsnotice.php:73 -#: actions/twitapistatuses.php:271 -#: actions/newsmsnotice.php:79 +#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 +#: actions/newnotice.php:49 actions/twitapistatuses.php:330 +#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." -msgstr "Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." -#: ../actions/twitapiaccount.php:74 -#: actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:58 +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." -msgstr "Iso é demasiado longo. O tamaño máximo para un chío é de 255 caracteres." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para un chío é de 255 caracteres." -#: ../actions/confirmaddress.php:92 -#: actions/confirmaddress.php:92 +#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "A dirección \"%s\" xa foi confirmada para a túa conta." -#: ../actions/emailsettings.php:264 -#: ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 -#: actions/emailsettings.php:282 -#: actions/imsettings.php:258 -#: actions/smssettings.php:282 -#: actions/emailsettings.php:286 -#: actions/imsettings.php:263 -#: actions/smspostsettings.php:128 -#: actions/smssettings.php:284 -#: actions/smspostsettings.php:133 +#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 +#: ../actions/smssettings.php:274 actions/emailsettings.php:282 +#: actions/imsettings.php:258 actions/smssettings.php:282 +#: actions/emailsettings.php:416 actions/imsettings.php:402 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Enderezo eliminado." -#: ../actions/userauthorization.php:312 -#: actions/userauthorization.php:324 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "A subscrición foi autorizada, pero ningunha URL de retorno foi proporcionada. Comproba coas instruccións do sitio para máis detalles en como autorizar subscricións. O teu token de subscrición é:" +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"A subscrición foi autorizada, pero ningunha URL de retorno foi " +"proporcionada. Comproba coas instruccións do sitio para máis detalles en " +"como autorizar subscricións. O teu token de subscrición é:" -#: ../actions/userauthorization.php:322 -#: actions/userauthorization.php:334 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." -#: ../actions/subscribers.php:35 -#: actions/subscribers.php:35 +#: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Esa é a xente que escoita os chíos de %s." -#: ../actions/subscribers.php:33 -#: actions/subscribers.php:33 +#: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Esa é a xente que escoita os teus chíos." -#: ../actions/subscriptions.php:35 -#: actions/subscriptions.php:35 +#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Esta é a xente á que lle estas a escoitar os chíos %s." -#: ../actions/subscriptions.php:33 -#: actions/subscriptions.php:33 +#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Esa é a xente á que lle estas a escoitar os seus chíos" -#: ../actions/invite.php:89 -#: actions/invite.php:96 -msgid "These people are already users and you were automatically subscribed to them:" +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "Esta xente xa é usuario e ti foches suscrito automaticamente a eles:" -#: ../actions/recoverpassword.php:88 -#: actions/recoverpassword.php:91 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Ese código de confirmación é demasiado antigo. Comeza de novo." -#: ../lib/openid.php:195 -#: lib/openid.php:195 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Este formulario debería enviarse automáticamente. Se non é así, fai clic no botón de enviar para ir ó teu proveedro OpenID." +#: ../lib/openid.php:195 lib/openid.php:206 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Este formulario debería enviarse automáticamente. Se non é así, fai clic no " +"botón de enviar para ir ó teu proveedro OpenID." -#: ../actions/finishopenidlogin.php:56 -#: actions/finishopenidlogin.php:61 +#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Esta é a primeria vez que accedes a %s polo que debes conectar o teu enderezo OpenID á conta local. Podes ademáis crear unha nova conta, ou conectarte cunha existente, se xa tes unha." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Esta é a primeria vez que accedes a %s polo que debes conectar o teu " +"enderezo OpenID á conta local. Podes ademáis crear unha nova conta, ou " +"conectarte cunha existente, se xa tes unha." -#: ../actions/twitapifriendships.php:108 -#: ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 -#: actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 -#: actions/twitapifavorites.php:94 -#: actions/twitapifriendships.php:82 -#: actions/twitapistatuses.php:428 +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Este método require un POST ou DELETE." -#: ../actions/twitapiaccount.php:65 -#: ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 -#: actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 -#: actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 -#: actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:117 -#: actions/twitapifriendships.php:30 -#: actions/twitapistatuses.php:239 +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Este método require un POST." -#: ../lib/util.php:164 -#: lib/util.php:246 -#: lib/util.php:263 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" -#: ../actions/profilesettings.php:63 -#: actions/profilesettings.php:96 -#: actions/profilesettings.php:109 +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Fuso Horario" -#: ../actions/profilesettings.php:107 -#: actions/profilesettings.php:222 -#: actions/profilesettings.php:241 +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Fuso Horario non seleccionado" -#: ../actions/remotesubscribe.php:43 -#: actions/remotesubscribe.php:51 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Para subscribirse, podes [acceder](%%action.login%%), ou [rexistrar](%%action.register%%) unha nova conta. Se xa tes unha conta nun [sitio de microblogaxe compatíbel](%%doc.openmublog%%), insire a dirección do perfil abaixo." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Para subscribirse, podes [acceder](%%action.login%%), ou [rexistrar](%%" +"action.register%%) unha nova conta. Se xa tes unha conta nun [sitio de " +"microblogaxe compatíbel](%%doc.openmublog%%), insire a dirección do perfil " +"abaixo." -#: ../actions/twitapifriendships.php:163 -#: actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:128 +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." -msgstr "Dous identificadores de usuario ou nomes_en_pantalla deben ser proporcionados." +msgstr "" +"Dous identificadores de usuario ou nomes_en_pantalla deben ser " +"proporcionados." -#: ../actions/profilesettings.php:48 -#: ../actions/register.php:169 -#: actions/profilesettings.php:81 -#: actions/register.php:183 -#: actions/profilesettings.php:83 -#: actions/register.php:210 +#: ../actions/profilesettings.php:48 ../actions/register.php:169 +#: actions/profilesettings.php:81 actions/register.php:183 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" -#: ../actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:83 +#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Enderezo do teu perfil en outro servizo de microblogaxe compatíbel" -#: ../actions/emailsettings.php:130 -#: ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 -#: ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 -#: actions/imsettings.php:118 -#: actions/recoverpassword.php:39 -#: actions/smssettings.php:143 -#: actions/twittersettings.php:108 -#: actions/emailsettings.php:148 -#: actions/imsettings.php:121 -#: actions/othersettings.php:146 -#: actions/smspostsettings.php:64 -#: actions/smssettings.php:145 -#: actions/twittersettings.php:199 -#: actions/smspostsettings.php:69 +#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 +#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 +#: actions/emailsettings.php:144 actions/imsettings.php:118 +#: actions/recoverpassword.php:39 actions/smssettings.php:143 +#: actions/twittersettings.php:108 actions/avatarsettings.php:258 +#: actions/emailsettings.php:242 actions/grouplogo.php:317 +#: actions/imsettings.php:214 actions/recoverpassword.php:44 +#: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Envio de formulario non esperada." -#: ../actions/recoverpassword.php:276 -#: actions/recoverpassword.php:289 +#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Restauración de contrasinal non esperada." -#: ../index.php:57 -#: index.php:57 +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Acción descoñecida" #: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 -#: actions/finishremotesubscribe.php:59 +#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "Versión de protocolo OMB descoñecida." -#: ../lib/util.php:269 -#: lib/util.php:285 -#: lib/util.php:302 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Aínda que especifiques outro, os contidos de este sitio teñen copyright polos contribuidores e está dispoñible baixo " +#: ../lib/util.php:269 lib/util.php:285 +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Aínda que especifiques outro, os contidos de este sitio teñen copyright " +"polos contribuidores e está dispoñible baixo " -#: ../actions/confirmaddress.php:48 -#: actions/confirmaddress.php:48 +#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 +#: actions/confirmaddress.php:90 #, php-format msgid "Unrecognized address type %s" msgstr "Tipo de enderezo %s non recoñecido" -#: ../actions/showstream.php:209 -#: actions/showstream.php:219 -#: actions/showstream.php:267 -#: lib/util.php:2153 +#: ../actions/showstream.php:209 actions/showstream.php:219 +#: lib/unsubscribeform.php:137 msgid "Unsubscribe" msgstr "Eliminar subscrición" -#: ../actions/postnotice.php:44 -#: ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 -#: actions/updateprofile.php:46 +#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 +#: actions/postnotice.php:45 actions/updateprofile.php:46 +#: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Versión OMB non soportada" -#: ../actions/avatar.php:105 -#: actions/profilesettings.php:342 -#: actions/profilesettings.php:388 +#: ../actions/avatar.php:105 actions/profilesettings.php:342 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Formato de ficheiro de imaxe non soportado." -#: ../lib/settingsaction.php:100 -#: lib/settingsaction.php:94 -#: actions/deleteprofile.php:251 +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Chíos dende SMS" -#: ../lib/settingsaction.php:103 -#: lib/settingsaction.php:97 -#: actions/deleteprofile.php:254 -#: lib/settingsaction.php:101 -#: lib/settingsaction.php:103 +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Chíos dende mensaxería instantánea (IM)" -#: ../actions/twitapistatuses.php:241 -#: actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:126 +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Actualizacións dende %1$s e amigos en %2$s!" -#: ../actions/twitapistatuses.php:341 -#: actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:198 +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" -#: ../actions/avatar.php:68 -#: actions/profilesettings.php:161 -#: actions/profilesettings.php:178 +#: ../actions/avatar.php:68 actions/profilesettings.php:161 +#: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Subir" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Sube un novo \"avatar\" (imaxe de usuario) dende aquí. Non podes editar a imaxe despois de subila, polo que asegurate de que é máis ou menos cadrado. Debe estar baixo a licenza do sistio. Emprega unha imaxe que che pertenza e que queiras compartir." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Sube un novo \"avatar\" (imaxe de usuario) dende aquí. Non podes editar a " +"imaxe despois de subila, polo que asegurate de que é máis ou menos cadrado. " +"Debe estar baixo a licenza do sistio. Emprega unha imaxe que che pertenza e " +"que queiras compartir." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" msgstr "Subir unha nova imaxe de usuario" -#: ../actions/invite.php:114 -#: actions/invite.php:121 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Emprega este formulario para invitar ós teus amigos e colegas a empregar este servizo." +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Emprega este formulario para invitar ós teus amigos e colegas a empregar " +"este servizo." -#: ../actions/register.php:159 -#: ../actions/register.php:162 -#: actions/register.php:173 -#: actions/register.php:176 -#: actions/register.php:200 -#: actions/register.php:203 +#: ../actions/register.php:159 ../actions/register.php:162 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "Empregado só para actualizacións, novidades, e recuperación de contrasinais" +msgstr "" +"Empregado só para actualizacións, novidades, e recuperación de contrasinais" #: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 -#: actions/finishremotesubscribe.php:92 +#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 msgid "User being listened to doesn't exist." msgstr "O usuario que está sendo escoitado non existe." -#: ../actions/all.php:41 -#: ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 -#: ../actions/replies.php:41 -#: ../actions/showstream.php:44 -#: ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 -#: ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 -#: actions/all.php:41 -#: actions/avatarbynickname.php:48 -#: actions/foaf.php:47 -#: actions/replies.php:41 -#: actions/showfavorites.php:41 -#: actions/showstream.php:44 -#: actions/twitapiaccount.php:80 -#: actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 -#: actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 -#: lib/mailbox.php:50 -#: actions/showstream.php:57 -#: actions/twitapiaccount.php:66 -#: actions/twitapifavorites.php:40 -#: actions/twitapistatuses.php:163 -#: actions/twitapistatuses.php:492 -#: actions/twitapiusers.php:53 +#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 +#: ../actions/foaf.php:47 ../actions/replies.php:41 +#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 +#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 +#: ../actions/twitapiusers.php:82 actions/all.php:41 +#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 +#: actions/showfavorites.php:41 actions/showstream.php:44 +#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 +#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 +#: actions/twitapiusers.php:87 lib/mailbox.php:50 +#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 +#: actions/showstream.php:107 actions/twitapiaccount.php:70 +#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 +#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 +#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "O usuario non ten perfil." -#: ../actions/remotesubscribe.php:71 -#: actions/remotesubscribe.php:80 +#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Alcume de usuario" -#: ../actions/twitapiusers.php:75 -#: actions/twitapiusers.php:80 +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 msgid "User not found." msgstr "Usuario non atopado." -#: ../actions/profilesettings.php:63 -#: actions/profilesettings.php:96 -#: actions/profilesettings.php:109 +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "En que fuso horario estas normalmente?" -#: ../lib/util.php:1159 -#: lib/util.php:1293 -#: lib/util.php:1689 +#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "¿Que pasa, %s?" -#: ../actions/profilesettings.php:54 -#: ../actions/register.php:175 -#: actions/profilesettings.php:87 -#: actions/register.php:189 -#: actions/profilesettings.php:89 -#: actions/register.php:216 +#: ../actions/profilesettings.php:54 ../actions/register.php:175 +#: actions/profilesettings.php:87 actions/register.php:189 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" -#: ../actions/updateprofile.php:128 -#: actions/updateprofile.php:129 +#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Tipo de imaxe incorrecto para '%s'" -#: ../actions/updateprofile.php:123 -#: actions/updateprofile.php:124 +#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Tamaño de imaxe incorrecto en '%s'" -#: ../actions/deletenotice.php:63 -#: ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 -#: actions/deletenotice.php:79 -#: actions/block.php:105 +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Si" -#: ../actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:64 +#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 +#: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "¡Xa tes esa OpenID!" -#: ../actions/deletenotice.php:37 -#: actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta atrás... Quedas avisado!" +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " +"atrás... Quedas avisado!" -#: ../actions/recoverpassword.php:31 -#: actions/recoverpassword.php:31 +#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 +#: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "¡Xa estás logueado!" -#: ../actions/invite.php:81 -#: actions/invite.php:88 +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Xa estas suscrito a estes usuarios:" -#: ../actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:102 +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "No tes amigos con un usuario específico." @@ -3075,57 +3063,63 @@ msgstr "No tes amigos con un usuario específico." msgid "You can change your password here. Choose a good one!" msgstr "Podes cambiar a túa contrasinal aquí. ¡Escolle unha boa!" -#: ../actions/register.php:135 -#: actions/register.php:145 +#: ../actions/register.php:135 actions/register.php:145 msgid "You can create a new account to start posting notices." msgstr "Podes crear unha nova conta para comezar a escribir chíos." -#: ../actions/smssettings.php:28 -#: actions/smssettings.php:28 +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Podes recibir mensaxes SMS a través do email dende %%site.name%%." -#: ../actions/openidsettings.php:86 -#: actions/openidsettings.php:87 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Podes eliminar unha OpenID da túa conta facendo clic no botón marcado \"Eliminar\"." +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Podes eliminar unha OpenID da túa conta facendo clic no botón marcado " +"\"Eliminar\"." -#: ../actions/imsettings.php:28 -#: actions/imsettings.php:28 +#: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Podes enviar e recibir chíos a través de Jabber/GTalk [mensaxes instantáneos](%%doc.im%%). Configura a túa conta e configuracións abaixo." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Podes enviar e recibir chíos a través de Jabber/GTalk [mensaxes instantáneos]" +"(%%doc.im%%). Configura a túa conta e configuracións abaixo." -#: ../actions/profilesettings.php:27 -#: actions/profilesettings.php:27 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Podes actualizar a túa información do perfil persoal aquí para que a xente che poida coñecer mellor." +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Podes actualizar a túa información do perfil persoal aquí para que a xente " +"che poida coñecer mellor." -#: ../actions/finishremotesubscribe.php:31 -#: ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 -#: actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:83 -#: actions/finishremotesubscribe.php:99 +#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 +#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "¡Podes empregar a túa subscrición local!" -#: ../actions/finishopenidlogin.php:33 -#: ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 -#: actions/register.php:68 -#: actions/register.php:77 +#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 +#: actions/finishopenidlogin.php:38 actions/register.php:68 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Non podes rexistrarte se non estas de acordo coa licenza." -#: ../actions/updateprofile.php:63 -#: actions/updateprofile.php:64 +#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Non nos enviaches ese perfil" -#: ../lib/mail.php:147 -#: lib/mail.php:141 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -3146,231 +3140,208 @@ msgstr "" "Sempre teu...,\n" "%4$s" -#: ../actions/twitapistatuses.php:612 -#: actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:455 +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Non deberías eliminar o estado de outro usuario" -#: ../actions/invite.php:31 -#: actions/invite.php:31 +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: ../actions/invite.php:103 -#: actions/invite.php:110 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Notificaráseche cando os teus invitados acepten unha invitación e se rexistren neste sitio. Grazas por facer crecer o gremio lareteiro!" +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Notificaráseche cando os teus invitados acepten unha invitación e se " +"rexistren neste sitio. Grazas por facer crecer o gremio lareteiro!" -#: ../actions/recoverpassword.php:149 -#: actions/recoverpassword.php:154 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Foiches identificado. Insire unha nova contrasinal abaixo." -#: ../actions/openidlogin.php:67 -#: actions/openidlogin.php:76 -#: actions/login.php:127 -#: actions/openidlogin.php:84 +#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "O teu enderezo OpenID" -#: ../actions/recoverpassword.php:164 -#: actions/recoverpassword.php:169 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "O teu alcume neste servidor, ou o teu enderezo rexistrado." -#: ../actions/openidsettings.php:28 -#: actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma conta. Xestina os teus OpenIDs asociados dende aquí." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma " +"conta. Xestina os teus OpenIDs asociados dende aquí." -#: ../lib/util.php:943 -#: lib/util.php:992 -#: lib/util.php:1349 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "fai uns segundos" -#: ../lib/util.php:955 -#: lib/util.php:1004 -#: lib/util.php:1361 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "fai %d días" -#: ../lib/util.php:951 -#: lib/util.php:1000 -#: lib/util.php:1357 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "fai %d horas" -#: ../lib/util.php:947 -#: lib/util.php:996 -#: lib/util.php:1353 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "fai %d minutos" -#: ../lib/util.php:959 -#: lib/util.php:1008 -#: lib/util.php:1365 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "fai %d meses" -#: ../lib/util.php:953 -#: lib/util.php:1002 -#: lib/util.php:1359 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "fai un día" -#: ../lib/util.php:945 -#: lib/util.php:994 -#: lib/util.php:1351 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "fai un minuto" -#: ../lib/util.php:957 -#: lib/util.php:1006 -#: lib/util.php:1363 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "fai un mes" -#: ../lib/util.php:961 -#: lib/util.php:1010 -#: lib/util.php:1367 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "fai un ano" -#: ../lib/util.php:949 -#: lib/util.php:998 -#: lib/util.php:1355 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "fai unha hora" -#: ../actions/showstream.php:423 -#: ../lib/stream.php:132 -#: actions/showstream.php:441 -#: lib/stream.php:99 -#: lib/noticelist.php:211 +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 msgid "delete" msgstr "eliminar" -#: ../actions/noticesearch.php:130 -#: ../actions/showstream.php:408 -#: ../lib/stream.php:117 -#: actions/noticesearch.php:136 -#: actions/showstream.php:426 -#: lib/stream.php:84 -#: actions/noticesearch.php:135 -#: lib/facebookaction.php:202 -#: lib/noticelist.php:189 +#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 +#: ../lib/stream.php:117 actions/noticesearch.php:136 +#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 msgid "in reply to..." msgstr "en contestación a..." -#: ../actions/noticesearch.php:137 -#: ../actions/showstream.php:415 -#: ../lib/stream.php:124 -#: actions/noticesearch.php:143 -#: actions/showstream.php:433 -#: lib/stream.php:91 -#: actions/noticesearch.php:142 -#: lib/noticelist.php:199 +#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 +#: ../lib/stream.php:124 actions/noticesearch.php:143 +#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 msgid "reply" msgstr "contestar" -#: ../actions/password.php:44 -#: actions/profilesettings.php:183 -#: actions/profilesettings.php:200 +#: ../actions/password.php:44 actions/profilesettings.php:183 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "igual á contrasinal de enriba" -#: ../actions/twitapistatuses.php:755 -#: actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:543 +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tipo de ficheiro non soportado" -#: ../lib/util.php:1309 -#: lib/util.php:1443 -#: lib/facebookaction.php:251 -#: lib/util.php:1842 +#: ../lib/util.php:1309 lib/util.php:1443 msgid "« After" msgstr "« Despois" -#: actions/deletenotice.php:74 -#: actions/disfavor.php:43 -#: actions/emailsettings.php:127 -#: actions/favor.php:45 -#: actions/finishopenidlogin.php:33 -#: actions/imsettings.php:105 -#: actions/invite.php:46 -#: actions/newmessage.php:45 -#: actions/openidlogin.php:36 -#: actions/openidsettings.php:123 -#: actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 -#: actions/register.php:42 -#: actions/remotesubscribe.php:40 -#: actions/smssettings.php:124 -#: actions/subscribe.php:44 -#: actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 -#: actions/userauthorization.php:35 -#: actions/block.php:38 -#: actions/deleteprofile.php:127 -#: actions/disfavor.php:47 -#: actions/emailsettings.php:131 -#: actions/favor.php:49 -#: actions/imsettings.php:108 -#: actions/login.php:45 -#: actions/newmessage.php:44 -#: actions/newnotice.php:36 -#: actions/nudge.php:47 -#: actions/othersettings.php:139 -#: actions/profilesettings.php:49 -#: actions/smssettings.php:126 -#: actions/subedit.php:38 -#: actions/tagother.php:113 -#: actions/twittersettings.php:188 -#: actions/unblock.php:38 +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." -#: actions/disfavor.php:55 +#: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Este chío non é un favorito!" -#: actions/disfavor.php:63 +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Non se puido eliminar o favorito." -#: actions/disfavor.php:72 +#: actions/disfavor.php:72 lib/favorform.php:140 msgid "Favor" msgstr "Gostame" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito." -#: actions/emailsettings.php:95 +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." -#: actions/favor.php:53 -#: actions/twitapifavorites.php:142 -#: actions/favor.php:54 -#: actions/twitapifavorites.php:115 +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Este chío xa é un favorito!" -#: actions/favor.php:60 -#: actions/twitapifavorites.php:151 -#: classes/Command.php:132 -#: actions/favor.php:61 -#: actions/twitapifavorites.php:122 +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Non se puido crear o favorito." @@ -3378,104 +3349,109 @@ msgstr "Non se puido crear o favorito." msgid "Disfavor" msgstr "Non me gosta" -#: actions/favoritesrss.php:60 -#: actions/showfavorites.php:47 -#: actions/favoritesrss.php:62 +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s chíos favoritos" -#: actions/favoritesrss.php:64 -#: actions/favoritesrss.php:66 +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Fonte para os chíos favoritos de %s" -#: actions/inbox.php:28 +#: actions/inbox.php:28 actions/inbox.php:59 #, php-format msgid "Inbox for %s - page %d" msgstr "Band. Entrada para %s - páxina %d" -#: actions/inbox.php:30 +#: actions/inbox.php:30 actions/inbox.php:62 #, php-format msgid "Inbox for %s" msgstr "Band. Entrada para %s" -#: actions/inbox.php:53 +#: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Esta é a túa bandexa de entrada, aquí móstranse as túas mensaxes privadas." +msgstr "" +"Esta é a túa bandexa de entrada, aquí móstranse as túas mensaxes privadas." -#: actions/invite.php:178 +#: actions/invite.php:178 actions/invite.php:213 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" msgstr "Acabas de invitar a %1$s a unirse a %2$s (%3$s).\n" -#: actions/login.php:104 +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 msgid "Automatically login in the future; " msgstr "Loguearse automáticamente no futuro:" -#: actions/login.php:122 +#: actions/login.php:122 actions/login.php:264 msgid "For security reasons, please re-enter your " msgstr "Por razóns de seguranza, por favor re-insire o teu " -#: actions/login.php:126 +#: actions/login.php:126 actions/login.php:268 msgid "Login with your username and password. " msgstr "Accede co teu nome de usuario e contrasinal." -#: actions/newmessage.php:58 -#: actions/twitapidirect_messages.php:130 -#: actions/newmessage.php:60 -#: actions/twitapidirect_messages.php:136 +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." -msgstr "Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." -#: actions/newmessage.php:65 -#: actions/newmessage.php:68 +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Non se especificou ningún destinatario" -#: actions/newmessage.php:68 -#: actions/newmessage.php:113 -#: classes/Command.php:206 -#: actions/newmessage.php:71 -#: actions/newmessage.php:116 -#: classes/Command.php:211 +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Non podes enviar mensaxes a este usurio." -#: actions/newmessage.php:71 -#: actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 -#: actions/newmessage.php:74 -#: actions/twitapidirect_messages.php:153 -#: classes/Command.php:214 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Non te envies mensaxes a ti mesmo!! só fala contigo mesmo baixiño, senón vante tomar por tolo." +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Non te envies mensaxes a ti mesmo!! só fala contigo mesmo baixiño, senón " +"vante tomar por tolo." -#: actions/newmessage.php:108 -#: actions/microsummary.php:32 -#: actions/newmessage.php:111 +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Non é o usuario" -#: actions/newmessage.php:117 -#: actions/newmessage.php:120 +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nova mensaxe" -#: actions/noticesearch.php:95 -#: actions/noticesearch.php:94 +#: actions/noticesearch.php:95 actions/noticesearch.php:146 msgid "Notice without matching profile" msgstr "Chío sen perfil coincidente" -#: actions/openidsettings.php:28 +#: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " msgstr "[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios" -#: actions/openidsettings.php:46 +#: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " msgstr "Se queres engadir un enderezo OpenID á tua conta, " @@ -3483,185 +3459,208 @@ msgstr "Se queres engadir un enderezo OpenID á tua conta, " msgid "Removing your only OpenID would make it impossible to log in! " msgstr "Eliminando o teu enderezo OpenID serache imposíbel acceder!" -#: actions/openidsettings.php:87 +#: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " msgstr "Podes eliminar un identificador OpenID da túa conta " -#: actions/outbox.php:28 +#: actions/outbox.php:28 actions/outbox.php:58 #, php-format msgid "Outbox for %s - page %d" msgstr "Band. Saída para %s - páxina %d" -#: actions/outbox.php:30 +#: actions/outbox.php:30 actions/outbox.php:61 #, php-format msgid "Outbox for %s" msgstr "Band. Saída para %s" -#: actions/outbox.php:53 +#: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Esta é a túa band. saída, que mostra as mensaxes privadas que enviaches." +msgstr "" +"Esta é a túa band. saída, que mostra as mensaxes privadas que enviaches." -#: actions/peoplesearch.php:28 +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" +"Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " -#: actions/profilesettings.php:27 +#: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " msgstr "Podes actualizar a túa información do perfil persoal aquí" -#: actions/profilesettings.php:115 -#: actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 -#: actions/userrss.php:76 -#: actions/profilesettings.php:132 -#: actions/remotesubscribe.php:333 +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Usuario sen un perfil que coincida." -#: actions/recoverpassword.php:91 +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 msgid "This confirmation code is too old. " msgstr "Ese código de confirmación é demasiado antigo." -#: actions/recoverpassword.php:141 +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 msgid "If you've forgotten or lost your" msgstr "Se esquenciches ou perdeches a túa" -#: actions/recoverpassword.php:154 +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 msgid "You've been identified. Enter a " msgstr "Foches identificado. Insire unha " -#: actions/recoverpassword.php:169 +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 msgid "Your nickname on this server, " msgstr "O teu alcume neste servidor, " -#: actions/recoverpassword.php:271 +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 msgid "Instructions for recovering your password " msgstr "Instruccións para recuperar a túa contrasinal." -#: actions/recoverpassword.php:327 +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 msgid "New password successfully saved. " msgstr "A nova contrasinal foi gardada correctamente." -#: actions/register.php:95 -#: actions/register.php:104 +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "A contrasinal debe ter 6 caracteres ou máis." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " msgstr "(Deberías recibir unha mensaxe no teu email nun intre, con" -#: actions/remotesubscribe.php:51 +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 #, php-format msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Para suscribirse, podes [loguearte](%%action.login%%)," -#: actions/showfavorites.php:61 +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Fonte para os favoritos de %s" -#: actions/showfavorites.php:84 -#: actions/twitapifavorites.php:85 -#: actions/showfavorites.php:88 -#: actions/twitapifavorites.php:57 +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Non se pode " -#: actions/showmessage.php:33 +#: actions/showmessage.php:33 actions/showmessage.php:81 msgid "No such message." msgstr "Non existe a mensaxe." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Só o emisor e destinatario poden ler esta mensaxe." -#: actions/showmessage.php:61 +#: actions/showmessage.php:61 actions/showmessage.php:108 #, php-format msgid "Message to %1$s on %2$s" msgstr "Mensaxe de %1$s en %2$s" -#: actions/showmessage.php:66 +#: actions/showmessage.php:66 actions/showmessage.php:113 #, php-format msgid "Message from %1$s on %2$s" msgstr "Mensaxe dende %1$s en %2$s" #: actions/showstream.php:154 -#: lib/util.php:2164 msgid "Send a message" msgstr "Enviar unha mensaxe" -#: actions/smssettings.php:312 +#: actions/smssettings.php:312 actions/smssettings.php:464 #, php-format msgid "Mobile carrier for your phone. " msgstr "Operadora móbil do teu teléfono." -#: actions/twitapidirect_messages.php:76 -#: actions/twitapidirect_messages.php:64 +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Mensaxes directas para %s" -#: actions/twitapidirect_messages.php:77 -#: actions/twitapidirect_messages.php:65 +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Tódalas mensaxes directas enviadas a %s" -#: actions/twitapidirect_messages.php:81 -#: actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Mensaxes Directas que Enviaches." -#: actions/twitapidirect_messages.php:82 -#: actions/twitapidirect_messages.php:70 +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tódalas mensaxes directas enviadas dende %s" #: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:132 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Non hai mensaxes de texto!" #: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:145 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Usuario destinatario non atopado." #: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:148 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo." +msgstr "" +"Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo." -#: actions/twitapifavorites.php:92 -#: actions/twitapifavorites.php:64 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoritos dende %s" -#: actions/twitapifavorites.php:95 -#: actions/twitapifavorites.php:67 +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s updates favorited by %s / %s." -#: actions/twitapifavorites.php:187 -#: lib/mail.php:275 -#: actions/twitapifavorites.php:158 -#: lib/mail.php:293 +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s gustoulle o teu chío" -#: actions/twitapifavorites.php:188 -#: lib/mail.php:276 +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 #, php-format msgid "" "%1$s just added your notice from %2$s as one of their favorites.\n" @@ -3671,21 +3670,24 @@ msgstr "" "\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Engade a túa conta de Twitter para enviar automáticamente os teus chíos a Twitter." +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " +"Twitter." -#: actions/twittersettings.php:41 -#: actions/twittersettings.php:43 +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Configuracións de Twitter" -#: actions/twittersettings.php:48 -#: actions/twittersettings.php:50 +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Conta de Twitter" -#: actions/twittersettings.php:56 -#: actions/twittersettings.php:58 +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Conta de twitter verificada actualmente." @@ -3693,7 +3695,8 @@ msgstr "Conta de twitter verificada actualmente." msgid "Twitter Username" msgstr "Nome de usuario en Twitter" -#: actions/twittersettings.php:65 +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Sen espazos, anda..." @@ -3701,230 +3704,242 @@ msgstr "Sen espazos, anda..." msgid "Twitter Password" msgstr "Contrasinal de Twitter" -#: actions/twittersettings.php:72 +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Enviar automáticamente os meus chíos a Twitter." -#: actions/twittersettings.php:75 +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Enviar respostas \"@\" locais a Twitter." -#: actions/twittersettings.php:78 +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Suscribirse ós meus amigos de Twitter aquí." -#: actions/twittersettings.php:122 -#: actions/twittersettings.php:216 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "O nome de usuario debe ter só letras, minúsculas e maiúsculas, e números, e sen espazos." +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"O nome de usuario debe ter só letras, minúsculas e maiúsculas, e números, e " +"sen espazos." -#: actions/twittersettings.php:128 -#: actions/twittersettings.php:221 +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Non se puideron verificar as túas credenciais en Twitter!" #: actions/twittersettings.php:137 -#: actions/twittersettings.php:228 #, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." -#: actions/twittersettings.php:151 -#: actions/twittersettings.php:170 -#: actions/twittersettings.php:234 -#: actions/twittersettings.php:253 +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Non se puideron gardar os teus axustes de Twitter!" -#: actions/twittersettings.php:174 -#: actions/twittersettings.php:261 +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Configuracións de Twitter gardadas." -#: actions/twittersettings.php:192 -#: actions/twittersettings.php:272 +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Esa non é a túa conta de Twitter." -#: actions/twittersettings.php:200 -#: actions/twittersettings.php:208 -#: actions/twittersettings.php:280 +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Non se puido eliminar o usuario." -#: actions/twittersettings.php:212 -#: actions/twittersettings.php:284 +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Conta de Twitter " -#: actions/twittersettings.php:225 -#: actions/twittersettings.php:239 -#: actions/twittersettings.php:299 -#: actions/twittersettings.php:310 -#: actions/twittersettings.php:322 +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Non se puideron gardar as preferenzas de Twitter." -#: actions/twittersettings.php:245 -#: actions/twittersettings.php:330 +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Preferencias de Twitter gardadas." -#: actions/userauthorization.php:84 +#: actions/userauthorization.php:84 actions/userauthorization.php:86 msgid "Please check these details to make sure " msgstr "Comproba estes datos para asegurarte" -#: actions/userauthorization.php:324 +#: actions/userauthorization.php:324 actions/userauthorization.php:340 msgid "The subscription has been authorized, but no " msgstr "A suscrición foi autorizada, pero non" -#: actions/userauthorization.php:334 +#: actions/userauthorization.php:334 actions/userauthorization.php:351 msgid "The subscription has been rejected, but no " msgstr "A suscrición foi rexeitada, pero non" -#: classes/Channel.php:113 -#: classes/Channel.php:129 +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Resultados do comando" -#: classes/Channel.php:148 -#: classes/Channel.php:175 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Comando completo" -#: classes/Channel.php:158 -#: classes/Channel.php:185 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Comando fallido" -#: classes/Command.php:39 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Desculpa, este comando todavía non está implementado." -#: classes/Command.php:96 +#: classes/Command.php:96 classes/Command.php:113 #, php-format msgid "Subscriptions: %1$s\n" msgstr "Subscricións: %1$s.\n" -#: classes/Command.php:125 -#: classes/Command.php:242 -#: classes/Command.php:247 +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "O usuario non ten último chio." -#: classes/Command.php:146 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Chío marcado coma favorito." -#: classes/Command.php:166 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" -#: classes/Command.php:172 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Ubicación: %s" -#: classes/Command.php:175 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Páxina persoal: %s" -#: classes/Command.php:178 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Sobre: %s" -#: classes/Command.php:200 -#: classes/Command.php:202 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " -#: classes/Command.php:214 -#: classes/Command.php:219 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Mensaxe directo a %s enviado" -#: classes/Command.php:216 -#: classes/Command.php:221 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Erro ó enviar a mensaxe directa." -#: classes/Command.php:263 -#: classes/Command.php:268 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Especifica o nome do usuario ó que queres suscribirte" -#: classes/Command.php:270 -#: classes/Command.php:275 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Suscrito a %s" -#: classes/Command.php:288 -#: classes/Command.php:293 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Especifica o nome de usuario ó que queres deixar de seguir" -#: classes/Command.php:295 -#: classes/Command.php:300 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Desuscribir de %s" -#: classes/Command.php:310 -#: classes/Command.php:330 -#: classes/Command.php:315 -#: classes/Command.php:335 +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Comando non implementado." -#: classes/Command.php:313 -#: classes/Command.php:318 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notificación desactivada." -#: classes/Command.php:315 -#: classes/Command.php:320 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "No se pode desactivar a notificación." -#: classes/Command.php:333 -#: classes/Command.php:338 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notificación habilitada." -#: classes/Command.php:335 -#: classes/Command.php:340 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Non se pode activar a notificación." -#: classes/Command.php:344 +#: classes/Command.php:344 classes/Command.php:392 msgid "Commands:\n" msgstr "Comandos:\n" -#: classes/Message.php:53 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Non se pode inserir unha mensaxe." -#: classes/Message.php:63 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Non se puido actualizar a mensaxe coa nova URI." #: lib/gallery.php:46 -#: lib/gallery.php:55 msgid "User without matching profile in system." msgstr "Usuario sen perfil coincidente no sistema." -#: lib/mail.php:147 +#: lib/mail.php:147 lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -3933,13 +3948,12 @@ msgstr "" "Tes novas direccións de posteo en %1$s.\n" "\n" -#: lib/mail.php:249 -#: lib/mail.php:265 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "%s enviouche unha nova mensaxe privada" -#: lib/mail.php:253 +#: lib/mail.php:253 lib/mail.php:512 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -3948,382 +3962,2036 @@ msgstr "" "%1$s (%2$s) enviouche unha mensaxe privada:\n" "\n" -#: lib/mailbox.php:43 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Só o usuario pode ler os seus propios buzóns." -#: lib/openid.php:195 +#: lib/openid.php:195 lib/openid.php:203 msgid "This form should automatically submit itself. " msgstr "Este formulario debería enviarse automáticamente él mesmo." -#: lib/personal.php:65 +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favoritos" -#: lib/personal.php:66 +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Chíos favoritos de %s" -#: lib/personal.php:66 +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" -#: lib/personal.php:75 +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Band. Entrada" -#: lib/personal.php:76 +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "As túas mensaxes entrantes" -#: lib/personal.php:80 +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Band. Saída" -#: lib/personal.php:81 +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "As túas mensaxes enviadas" -#: lib/settingsaction.php:99 -#: actions/deleteprofile.php:256 -#: lib/settingsaction.php:103 -#: lib/settingsaction.php:105 +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 msgid "Twitter" msgstr "Twitter" -#: lib/settingsaction.php:100 -#: actions/deleteprofile.php:257 -#: lib/settingsaction.php:104 -#: lib/settingsaction.php:106 +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 msgid "Twitter integration options" msgstr "Opcións de integración de Twitter" -#: lib/util.php:1718 -#: lib/util.php:2204 +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "A" -#: scripts/maildaemon.php:45 +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Non se puido analizaar a mensaxe." -#: actions/block.php:45 -#: actions/subedit.php:45 -#: actions/unblock.php:45 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 +#, fuzzy, php-format +msgid "%s and friends, page %d" +msgstr "%s e amigos" + +#: actions/avatarsettings.php:76 +#, fuzzy +msgid "You can upload your personal avatar." +msgstr "Podes actualizar a túa información do perfil persoal aquí" + +#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 +#, fuzzy +msgid "Avatar settings" +msgstr "Configuracións de Twitter" + +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +#, fuzzy +msgid "There was a problem with your session token. " +msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." + +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + +#: actions/avatarsettings.php:334 actions/grouplogo.php:391 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 +#, fuzzy +msgid "Lost our file." +msgstr "Bloqueo de usuario fallido." + +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +#, fuzzy +msgid "Unknown file type" +msgstr "tipo de ficheiro non soportado" + +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Non se especificou ningún perfil." -#: actions/block.php:52 -#: actions/subedit.php:52 -#: actions/tagother.php:45 -#: actions/unblock.php:52 +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Non se atopou un perfil con ese ID." -#: actions/block.php:78 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Bloquear usuario" -#: actions/block.php:81 -msgid "Are you sure you want to block this user? Afterwards, they will be unsubscribed from you, unable to subscribe to you in the future, and you will not be notified of any @-replies from them." -msgstr "Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a ser notificado de ningunha resposta-@ del." +#: actions/block.php:129 +#, fuzzy +msgid "Are you sure you want to block this user? " +msgstr "Estas seguro que queres eliminar este chío?" -#: actions/block.php:117 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Xa bloqueaches a este usuario." -#: actions/block.php:124 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Erro ao gardar información de bloqueo." -#: actions/deleteprofile.php:25 -msgid "Code not yet ready." -msgstr "Código non implementado." +#: actions/confirmaddress.php:159 +#, fuzzy, php-format +msgid "The address \"%s\" has been " +msgstr "Enderezo eliminado." -#: actions/deleteprofile.php:36 -msgid "Export and delete your user information." -msgstr "Exportar e eliminar a túa información de usuario." +#: actions/deletenotice.php:73 +#, fuzzy +msgid "You are about to permanently delete a notice. " +msgstr "" +"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " +"atrás... Quedas avisado!" -#: actions/deleteprofile.php:88 -#: actions/deleteprofile.php:119 -msgid "Delete my account" -msgstr "Borrar a miña conta" - -#: actions/deleteprofile.php:89 -msgid "Delete my account confirmation" -msgstr "Confirmación de borrado da miña conta" - -#: actions/deleteprofile.php:117 -msgid "Check if you are sure you want to delete your account." -msgstr "Estas seguro que queres eliminar a tua conta?" - -#: actions/deleteprofile.php:259 -#: lib/settingsaction.php:106 -#: lib/util.php:384 -#: lib/settingsaction.php:108 -msgid "Other" -msgstr "Outros" - -#: actions/deleteprofile.php:260 -#: lib/settingsaction.php:107 -#: lib/settingsaction.php:109 -msgid "Other options" -msgstr "Outras opcions" - -#: actions/disfavor.php:72 +#: actions/disfavor.php:94 msgid "Add to favorites" msgstr "Engadir a favoritos" -#: actions/emailsettings.php:98 +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +#, fuzzy +msgid "You must be logged in to create a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/editgroup.php:87 actions/grouplogo.php:87 +#: actions/groupmembers.php:76 actions/joingroup.php:81 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 +#, fuzzy +msgid "No nickname" +msgstr "Sen alcume." + +#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 +#: actions/groupmembers.php:83 actions/joingroup.php:88 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy +msgid "No such group" +msgstr "Non é o usuario" + +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +#, fuzzy +msgid "You must be an admin to edit the group" +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + +#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 +#, fuzzy +msgid "Nickname must have only lowercase letters " +msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos." + +#: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 +#, fuzzy +msgid "description is too long (max 140 chars)." +msgstr "O teu Bio é demasiado longo (max 140 car.)." + +#: actions/editgroup.php:218 actions/editgroup.php:253 +#, fuzzy +msgid "Could not update group." +msgstr "Non se puido actualizar o usuario." + +#: actions/editgroup.php:226 actions/editgroup.php:269 +#, fuzzy +msgid "Options saved." +msgstr "Configuracións gardadas." + +#: actions/emailsettings.php:107 actions/imsettings.php:108 +#, fuzzy, php-format +msgid "Awaiting confirmation on this address. " +msgstr "Agardando a confirmación neste número de teléfono." + +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#, fuzzy +msgid "Make a new email address for posting to; " +msgstr "Nova dirección de email para posterar en %s" + +#: actions/emailsettings.php:157 +#, fuzzy +msgid "Send me email when someone " +msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir aos amigos darme toques e enviarme correos electrónicos." -#: actions/facebookremove.php:54 +#: actions/emailsettings.php:321 +#, fuzzy +msgid "That email address already belongs " +msgstr "Este enderezo de correo xa pertence a outro usuario." + +#: actions/emailsettings.php:343 +#, fuzzy +msgid "A confirmation code was sent to the email address you added. " +msgstr "" +"O código de confirmación foi embiado á dirección IM que engadiches. Deberías " +"engadir a %s como contacto para que che poida enviar mensaxes." + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" + +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 +#, fuzzy +msgid "No notice content!" +msgstr "Sen contido!" + +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + +#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 +#, fuzzy +msgid "After" +msgstr "« Despois" + +#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 +#, fuzzy +msgid "Before" +msgstr "Antes »" + +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +#, fuzzy +msgid "Invitations have been sent to the following users:" +msgstr "Invitación(s) enviada(s) á seguinte xente:" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, fuzzy, php-format +msgid "You have been invited to %s" +msgstr "%s douche un toque" + +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 +#, fuzzy, php-format +msgid "Invite your friends to use %s" +msgstr "Fonte para os amigos de %s" + +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + +#: actions/facebookremove.php:56 msgid "Couldn't remove Facebook user." msgstr "Non se puido eliminar o usuario de Facebook." -#: actions/favorited.php:31 -#: lib/stream.php:48 -msgid "Popular notices" -msgstr "Chíos populares" +#: actions/facebooksettings.php:65 +#, fuzzy +msgid "There was a problem saving your sync preferences!" +msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." -#: actions/favorited.php:54 -msgid "Showing recently popular notices" -msgstr "Amosando chíos populares recentes" +#: actions/facebooksettings.php:67 +#, fuzzy +msgid "Sync preferences saved." +msgstr "Preferencias gardadas." -#: actions/favor.php:71 +#: actions/facebooksettings.php:90 +#, fuzzy +msgid "Automatically update my Facebook status with my notices." +msgstr "Enviar automáticamente os meus chíos a Twitter." + +#: actions/facebooksettings.php:97 +#, fuzzy +msgid "Send \"@\" replies to Facebook." +msgstr "Enviar respostas \"@\" locais a Twitter." + +#: actions/facebooksettings.php:106 +#, fuzzy +msgid "Prefix" +msgstr "Perfil" + +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + +#: actions/facebooksettings.php:147 +#, fuzzy +msgid "Sync preferences" +msgstr "Preferencias" + +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Desactivar favorito" -#: actions/featured.php:32 -#: actions/featured.php:54 -#: lib/stream.php:44 +#: actions/favorited.php:65 lib/popularnoticesection.php:76 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 +msgid "Popular notices" +msgstr "Chíos populares" + +#: actions/favorited.php:67 +#, fuzzy, php-format +msgid "Popular notices, page %d" +msgstr "Chíos populares" + +#: actions/favorited.php:79 +#, fuzzy +msgid "The most popular notices on the site right now." +msgstr "Amoa os tags máis populares dende a semana pasada" + +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Usuarios destacados" -#: actions/finishremotesubscribe.php:186 +#: actions/featured.php:71 +#, fuzzy, php-format +msgid "Featured users, page %d" +msgstr "Usuarios destacados" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Este usuario non che permite suscribirte a el." -#: actions/imsettings.php:83 -msgid "Send me notices from public timeline through Jabber/GTalk." -msgstr "Enviarme os chíos da liña de tempo pública a través de Jabber/GTalk." +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" -#: actions/login.php:120 -msgid "you can also login using OpenID" -msgstr "tamén te podes rexistrar cunha conta OpenID" +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" -#: actions/microsummary.php:39 +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 +#, fuzzy +msgid "Logo updated." +msgstr "Avatar actualizado." + +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 +#, fuzzy +msgid "Failed updating logo." +msgstr "Acounteceu un fallo ó actualizar o avatar." + +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + +#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 +#, fuzzy +msgid "Create a new group" +msgstr "Crear nova conta" + +#: actions/groupsearch.php:57 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " + +#: actions/groupsearch.php:63 actions/groupsearch.php:58 +#, fuzzy +msgid "Group search" +msgstr "Procurar xente." + +#: actions/imsettings.php:70 +#, fuzzy +msgid "You can send and receive notices through " +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + +#: actions/imsettings.php:147 +#, fuzzy +msgid "Send me replies through Jabber/GTalk " +msgstr "Enviarme advertencias a través de Jabber/GTalk." + +#: actions/imsettings.php:321 +#, fuzzy, php-format +msgid "A confirmation code was sent " +msgstr "Sen código de confirmación." + +#: actions/joingroup.php:65 actions/joingroup.php:60 +#, fuzzy +msgid "You must be logged in to join a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +#, fuzzy +msgid "You are already a member of that group" +msgstr "Xa estas suscrito a estes usuarios:" + +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#, fuzzy, php-format +msgid "Could not join user %s to group %s" +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." + +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#, fuzzy, php-format +msgid "%s joined group %s" +msgstr "%s / Favoritos dende %s" + +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +#, fuzzy +msgid "You must be logged in to leave a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" + +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 +#, fuzzy +msgid "No such group." +msgstr "Non existe a etiqueta." + +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#, fuzzy +msgid "You are not a member of that group." +msgstr "Non estás suscrito a ese perfil" + +#: actions/leavegroup.php:100 +#, fuzzy +msgid "You may not leave a group while you are its administrator." +msgstr "Non deberías eliminar o estado de outro usuario" + +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +#, fuzzy +msgid "Could not find membership record." +msgstr "Non se puido actualizar o rexistro de usuario." + +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s" +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." + +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 msgid "No current status" msgstr "Sen estado actual" -#: actions/misc.php:81 -msgid "Embedded" -msgstr "Embebida" +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" -#: actions/misc.php:82 -#, php-format -msgid "Embedded %1s" -msgstr "%1s embebida" +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" -#: actions/misc.php:84 -msgid "WP" -msgstr "WP" +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy +msgid "Could not create group." +msgstr "Non se puido crear o favorito." -#: actions/newnotice.php:93 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy +msgid "Could not set group membership." +msgstr "Non se pode gardar a subscrición." + +#: actions/newmessage.php:119 actions/newnotice.php:132 +#, fuzzy +msgid "That's too long. " +msgstr "Ese arquivo é demasiado grande." + +#: actions/newmessage.php:134 +#, fuzzy +msgid "Don't send a message to yourself; " +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Chío publicado" -#: actions/newnotice.php:116 -#: classes/Channel.php:140 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Erro de Ajax" -#: actions/nudge.php:52 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Este usuario non permite toques, ou non confirmou ainda o seu correo electrónico." +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Este usuario non permite toques, ou non confirmou ainda o seu correo " +"electrónico." -#: actions/nudge.php:61 +#: actions/nudge.php:94 msgid "Nudge sent" msgstr "Toque enviado" -#: actions/othersettings.php:27 -msgid "Manage various other options." -msgstr "Xestionár axustes varios." +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Toque enviado!" -#: actions/othersettings.php:33 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 +#, fuzzy +msgid "OpenID login" +msgstr "Acceso OpenID" + +#: actions/openidsettings.php:128 +#, fuzzy +msgid "Removing your only OpenID " +msgstr "Eliminar OpenID" + +#: actions/othersettings.php:60 msgid "Other Settings" msgstr "Outros axustes" -#: actions/othersettings.php:35 +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Xestionár axustes varios." + +#: actions/othersettings.php:93 msgid "URL Auto-shortening" msgstr "Auto-acortado de URL" -#: actions/othersettings.php:54 +#: actions/othersettings.php:112 msgid "Service" msgstr "Servizo" -#: actions/othersettings.php:54 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Servizo de acortado automático a usar." -#: actions/othersettings.php:155 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Sistema de acortamento de URLs demasiado longo (max 50 car.)." -#: actions/peopletag.php:33 +#: actions/passwordsettings.php:69 +#, fuzzy +msgid "Change your password." +msgstr "Cambiar contrasinal" + +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy +msgid "Password change" +msgstr "Contrasinal gardada." + +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "%s non é unha etiqueta de xente válida" -#: actions/peopletag.php:45 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Usuarios auto-etiquetados como %s - páxina %d" -#: actions/peopletag.php:87 -#, php-format -msgid "These are users who have tagged themselves \"%s\" to show a common interest, characteristic, hobby or job." -msgstr "Estes son usuarios que se etiquetaron a sí mesmos como \"%s\" para mostrar intereses comuns, características, aficións ou traballos." +#: actions/peopletag.php:91 +#, fuzzy, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" +"Estes son usuarios que se etiquetaron a sí mesmos como \"%s\" para mostrar " +"intereses comuns, características, aficións ou traballos." -#: actions/profilesettings.php:92 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Etiquetas para o teu usuario (letras, números, -, ., e _), separados por coma ou espazo" +#: actions/profilesettings.php:91 actions/profilesettings.php:99 +#, fuzzy +msgid "Profile information" +msgstr "Perfil descoñecido" -#: actions/profilesettings.php:116 -msgid "Theme" -msgstr "Tema" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Etiquetas para o teu usuario (letras, números, -, ., e _), separados por " +"coma ou espazo" -#: actions/profilesettings.php:116 -msgid "Preferred theme" -msgstr "Tema preferido" +#: actions/profilesettings.php:144 +#, fuzzy +msgid "Automatically subscribe to whoever " +msgstr "" +"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " +"non humáns)" -#: actions/profilesettings.php:259 -#: actions/tagother.php:131 +#: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Etiqueta inválida: '%s'" -#: actions/profilesettings.php:345 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Non se puideron gardar as etiquetas." -#: actions/public.php:68 -#, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 +#, fuzzy, php-format +msgid "Public timeline, page %d" +msgstr "Liña de tempo pública" -#: actions/public.php:90 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Non se pudo recuperar a liña de tempo publica." -#: actions/register.php:67 -#: actions/register.php:177 +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + +#: actions/publictagcloud.php:57 +#, fuzzy +msgid "Public tag cloud" +msgstr "Sindicación do Fio Público" + +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Desculpa, só se pode rexistrar a xente con invitación." -#: actions/register.php:156 -#, php-format -msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "Neste formulario podes crear unha conta de usuario. Logo poderás publicar chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" +#: actions/register.php:149 +#, fuzzy +msgid "You can't register if you don't " +msgstr "Non podes rexistrarte se non estas de acordo coa licenza." -#: actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:141 +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + +#: actions/register.php:368 +#, fuzzy +msgid "1-64 lowercase letters or numbers, " +msgstr "" +"De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" + +#: actions/register.php:382 actions/register.php:386 +#, fuzzy +msgid "Used only for updates, announcements, " +msgstr "" +"Empregado só para actualizacións, novidades, e recuperación de contrasinais" + +#: actions/register.php:398 +#, fuzzy +msgid "URL of your homepage, blog, " +msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" + +#: actions/register.php:404 +#, fuzzy +msgid "Describe yourself and your " +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: actions/register.php:410 +#, fuzzy +msgid "Where you are, like \"City, " +msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" + +#: actions/register.php:432 +#, fuzzy +msgid " except this private data: password, " +msgstr "" +" agás esta informción privada: contrasinal, dirección de correo electrónico, " +"dirección IM, número de teléfono." + +#: actions/register.php:471 +#, fuzzy, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgstr "" +"Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." + +#: actions/register.php:495 +#, fuzzy +msgid "(You should receive a message by email " +msgstr "(Deberías recibir unha mensaxe no teu email nun intre, con" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." msgstr "Este é un perfil local! Rexístrate para suscribirte." -#: actions/smspostsettings.php:27 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 +#, fuzzy, php-format +msgid "Replies to %s, page %d" +msgstr "Replies to %s" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s favorite notices, page %d" +msgstr "%s chíos favoritos" + +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format -msgid "You can post on %1s sending an sms to %2s in the followin format: '%3s'" -msgstr "Podes publicar chíos en %1s enviando un SMS a %2s co seguinte formato: '%3s'" +msgid "%s group" +msgstr "" -#: actions/smspostsettings.php:32 -#: actions/smspostsettings.php:33 -#: actions/smspostsettings.php:57 -msgid "SMS Post Settings" -msgstr "Configuracións de envio por SMS" +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" -#: actions/smspostsettings.php:101 -#: actions/smspostsettings.php:106 -msgid "The address was added." -msgstr "Enderezo engadido." +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 +#, fuzzy +msgid "Group profile" +msgstr "Non existe o perfil." -#: actions/subedit.php:68 +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + +#: actions/showgroup.php:262 actions/showstream.php:289 +#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 +#, fuzzy +msgid "Note" +msgstr "Chíos" + +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +#, fuzzy +msgid "Group actions" +msgstr "Outras opcions" + +#: actions/showgroup.php:323 actions/showgroup.php:304 +#, fuzzy, php-format +msgid "Notice feed for %s group" +msgstr "Fonte de chíos para %s" + +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 +#, fuzzy +msgid "Members" +msgstr "Membro dende" + +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +#, fuzzy +msgid "(None)" +msgstr "(nada)" + +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/showmessage.php:98 +#, fuzzy +msgid "Only the sender and recipient " +msgstr "Só o emisor e destinatario poden ler esta mensaxe." + +#: actions/showstream.php:73 actions/showstream.php:78 +#, fuzzy, php-format +msgid "%s, page %d" +msgstr "Band. Entrada para %s - páxina %d" + +#: actions/showstream.php:143 +#, fuzzy +msgid "'s profile" +msgstr "Perfil" + +#: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 +#, fuzzy +msgid "User profile" +msgstr "O usuario non ten perfil." + +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 +#, fuzzy +msgid "User actions" +msgstr "Outras opcions" + +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 +#, fuzzy +msgid "Send a direct message to this user" +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 +#, fuzzy +msgid "Message" +msgstr "Nova mensaxe" + +#: actions/showstream.php:451 lib/profileaction.php:157 +#, fuzzy +msgid "All subscribers" +msgstr "Subscritores" + +#: actions/showstream.php:533 lib/profileaction.php:235 +#, fuzzy +msgid "All groups" +msgstr "Tódalas etiquetas" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/smssettings.php:128 +#, fuzzy +msgid "Phone number, no punctuation or spaces, " +msgstr "Número de teléfono, sen puntuacións ou espazos, co código de área" + +#: actions/smssettings.php:162 +#, fuzzy +msgid "Send me notices through SMS; " +msgstr "Enviarme advertencias a través de Jabber/GTalk." + +#: actions/smssettings.php:335 +#, fuzzy +msgid "A confirmation code was sent to the phone number you added. " +msgstr "Agardando a confirmación neste número de teléfono." + +#: actions/smssettings.php:453 actions/smssettings.php:465 +#, fuzzy +msgid "Mobile carrier" +msgstr "Selecciona unha operadora" + +#: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Non estás suscrito a ese perfil" -#: actions/subedit.php:81 +#: actions/subedit.php:83 msgid "Could not save subscription." msgstr "Non se pode gardar a subscrición." -#: actions/subscribe.php:53 +#: actions/subscribe.php:55 msgid "Not a local user." msgstr "Non é usuario local." -#: actions/subscribe.php:67 +#: actions/subscribe.php:69 msgid "Subscribed" msgstr "Suscrito" -#: actions/subscriptions.php:72 +#: actions/subscribers.php:50 +#, fuzzy, php-format +msgid "%s subscribers" +msgstr "Subscritores" + +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + +#: actions/subscribers.php:63 +#, fuzzy +msgid "These are the people who listen to " +msgstr "Esa é a xente que escoita os chíos de %s." + +#: actions/subscribers.php:67 +#, fuzzy, php-format +msgid "These are the people who " +msgstr "Esa é a xente que escoita os chíos de %s." + +#: actions/subscriptions.php:52 +#, fuzzy, php-format +msgid "%s subscriptions" +msgstr "Tódalas subscricións" + +#: actions/subscriptions.php:54 +#, fuzzy, php-format +msgid "%s subscriptions, page %d" +msgstr "Tódalas subscricións" + +#: actions/subscriptions.php:65 +#, fuzzy +msgid "These are the people whose notices " +msgstr "Esta é a xente á que lle estas a escoitar os chíos %s." + +#: actions/subscriptions.php:69 +#, fuzzy, php-format +msgid "These are the people whose " +msgstr "Esa é a xente que escoita os chíos de %s." + +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber." -#: actions/tagother.php:31 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 +#, fuzzy, php-format +msgid "Notices tagged with %s, page %d" +msgstr "Chíos tagueados con %s" + +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + +#: actions/tagother.php:33 msgid "Not logged in" msgstr "Non estás logueado." -#: actions/tagother.php:40 +#: actions/tagother.php:39 msgid "No id argument." msgstr "Non hai argumento id." -#: actions/tagother.php:56 -msgid "Tag a person" -msgstr "Etiquetar a unha persoa" +#: actions/tagother.php:65 +#, fuzzy, php-format +msgid "Tag %s" +msgstr "Tags" -#: actions/tagother.php:98 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Etiquetas para este usuario (letras, numeros, -, ., e _), separados por coma ou espazo" +#: actions/tagother.php:141 +#, fuzzy +msgid "Tag user" +msgstr "Tags" -#: actions/tagother.php:120 -msgid "No such profile." -msgstr "Non existe o perfil." +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Etiquetas para este usuario (letras, numeros, -, ., e _), separados por coma " +"ou espazo" -#: actions/tagother.php:146 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Só podes etiquetar xente á que estás suscrito ou aos que están suscritos a ti." +#: actions/tagother.php:164 +#, fuzzy +msgid "There was a problem with your session token." +msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." -#: actions/tagother.php:153 +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Só podes etiquetar xente á que estás suscrito ou aos que están suscritos a " +"ti." + +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Non se poden gardar as etiquetas." -#: actions/tagother.php:188 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Usa este formulario para engadir etiquetas aos teus seguidores ou aos que sigues." +msgstr "" +"Usa este formulario para engadir etiquetas aos teus seguidores ou aos que " +"sigues." -#: actions/tag.php:66 -msgid "Showing all tags" -msgstr "Amosando tódalas etiquetas" - -#: actions/tagrss.php:33 +#: actions/tagrss.php:35 msgid "No such tag." msgstr "Non existe a etiqueta." -#: actions/tagrss.php:62 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Microblog etiquetado con %s" -#: actions/twitapiblocks.php:45 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Bloqueo de usuario fallido." -#: actions/twitapiblocks.php:66 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Desbloqueo de usuario fallido." -#: actions/twitapifavorites.php:159 -#: lib/mail.php:294 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 +msgid "Not found." +msgstr "Non atopado" + +#: actions/twittersettings.php:71 +#, fuzzy +msgid "Add your Twitter account to automatically send " +msgstr "" +"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " +"Twitter." + +#: actions/twittersettings.php:119 actions/twittersettings.php:122 +msgid "Twitter user name" +msgstr "Nome de usuario en Twitter" + +#: actions/twittersettings.php:126 actions/twittersettings.php:129 +msgid "Twitter password" +msgstr "Contrasinal de Twitter" + +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 +msgid "Twitter Friends" +msgstr "Amigos de Twitter" + +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + +#: actions/twittersettings.php:341 +#, fuzzy, php-format +msgid "Unable to retrieve account information " +msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." + +#: actions/unblock.php:108 actions/groupunblock.php:128 +msgid "Error removing the block." +msgstr "Acounteceu un erro borrando o bloqueo." + +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "Non hai identificador de perfil na peticion." + +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "Non se atopou un perfil con ese ID." + +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "De-suscribido" + +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" +msgstr "" + +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." + +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " +"duns minutos." + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "Tes restrinxido o envio de chíos neste sitio." + +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 +#, fuzzy +msgid "Upload an avatar" +msgstr "Acounteceu un fallo ó actualizar o avatar." + +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "Outros" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "Outras opcions" + +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#, fuzzy, php-format +msgid "%s - %s" +msgstr "%s (%s)" + +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#, fuzzy +msgid "Account" +msgstr "Sobre" + +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#, fuzzy +msgid "Change your email, avatar, password, profile" +msgstr "Cambiar contrasinal" + +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 +#, fuzzy +msgid "Create an account" +msgstr "Crear nova conta" + +#: lib/action.php:341 lib/action.php:418 +#, fuzzy +msgid "Login with OpenID" +msgstr "Ningún OpenID." + +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 +#, fuzzy +msgid "Help me!" +msgstr "Axuda" + +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 +#, fuzzy +msgid "Site notice" +msgstr "Novo chío" + +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 +#, fuzzy +msgid "Page notice" +msgstr "Novo chío" + +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +#, fuzzy +msgid "Secondary site navigation" +msgstr "Navegación de subscricións" + +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +#, fuzzy +msgid "All " +msgstr "Todos" + +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +#, fuzzy +msgid "Block this user" +msgstr "Bloquear usuario" + +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block" +msgstr "Bloquear" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +#, fuzzy +msgid "Disfavor this notice" +msgstr "%s chíos favoritos" + +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 +#, fuzzy +msgid " a new account." +msgstr "Crear nova conta" + +#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 +#, fuzzy +msgid "Published" +msgstr "Público" + +#: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy +msgid "Favor this notice" +msgstr "%s chíos favoritos" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Filtrar etiquetas" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "Todos" + +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Etiqueta" + +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "Elixe unha etiqueta para reducila lista" + +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Ir" + +#: lib/groupeditform.php:148 lib/groupeditform.php:163 +#, fuzzy +msgid "URL of the homepage or blog of the group or topic" +msgstr "Enderezo da túa páxina persoal, blogue, ou perfil noutro sitio" + +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 +#, fuzzy +msgid "Description" +msgstr "Subscricións" + +#: lib/groupeditform.php:153 lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic in 140 chars" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 +#, fuzzy +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" + +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" + +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + +#: lib/groupnav.php:106 lib/groupnav.php:112 +#, fuzzy +msgid "Logo" +msgstr "Sair" + +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + +#: lib/htmloutputter.php:104 +#, fuzzy +msgid "This page is not available in a " +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" + +#: lib/joinform.php:114 +#, fuzzy +msgid "Join" +msgstr "Inicio de sesión" + +#: lib/leaveform.php:114 +#, fuzzy +msgid "Leave" +msgstr "Gardar" + +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#, fuzzy +msgid "Login with a username and password" +msgstr "Accede co teu nome de usuario e contrasinal." + +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#, fuzzy +msgid "Sign up for a new account" +msgstr "Crear nova conta" + +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + +#: lib/mail.php:236 +#, fuzzy, php-format +msgid "%1$s is now listening to " +msgstr "%1$s está a escoitar os teus chíos %2$s." + +#: lib/mail.php:254 lib/mail.php:253 +#, fuzzy, php-format +msgid "Location: %s\n" +msgstr "Ubicación: %s" + +#: lib/mail.php:256 lib/mail.php:255 +#, fuzzy, php-format +msgid "Homepage: %s\n" +msgstr "Páxina persoal: %s" + +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + +#: lib/mail.php:461 lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "%s douche un toque" + +#: lib/mail.php:465 +#, fuzzy, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" +"%1$s (%2$s) enviouche unha mensaxe privada:\n" +"\n" + +#: lib/mail.php:555 +#, fuzzy, php-format +msgid "%1$s just added your notice from %2$s" +msgstr "" +"A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n" +"\n" + +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +#, fuzzy +msgid "From" +msgstr " dende " + +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +#, fuzzy +msgid "Send a direct notice" +msgstr "Eliminar chío" + +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 +#, fuzzy +msgid "Send a notice" +msgstr "Dar un toque" + +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 +#, fuzzy +msgid "Available characters" +msgstr "6 ou máis caracteres" + +#: lib/noticelist.php:426 lib/noticelist.php:429 +#, fuzzy +msgid "in reply to" +msgstr "en contestación a..." + +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 +#, fuzzy +msgid "Reply to this notice" +msgstr "Non se pode eliminar este chíos." + +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 +#, fuzzy +msgid "Reply" +msgstr "contestar" + +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 +#, fuzzy +msgid "Delete this notice" +msgstr "Eliminar chío" + +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 +#, fuzzy +msgid "Delete" +msgstr "eliminar" + +#: lib/nudgeform.php:116 +#, fuzzy +msgid "Nudge this user" +msgstr "Toque enviado" + +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Nudge" +msgstr "Toque enviado" + +#: lib/nudgeform.php:128 +#, fuzzy +msgid "Send a nudge to this user" +msgstr "Non podes enviar mensaxes a este usurio." + +#: lib/personaltagcloudsection.php:56 +#, fuzzy, php-format +msgid "Tags in %s's notices" +msgstr "O usuario non ten último chio." + +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "(nada)" + +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Público" + +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +#, fuzzy +msgid "User groups" +msgstr "Usuarios" + +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "Etiquetas recentes" + +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "Destacado" + +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Popular" + +#: lib/searchgroupnav.php:82 +#, fuzzy +msgid "Notice" +msgstr "Chíos" + +#: lib/searchgroupnav.php:85 +#, fuzzy +msgid "Find groups on this site" +msgstr "Atopar xente neste sitio" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#, fuzzy, php-format +msgid "People %s subscribes to" +msgstr "Suscrición remota" + +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#, fuzzy, php-format +msgid "People subscribed to %s" +msgstr "Suscrito a %s" + +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 +#, fuzzy, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" +"Emprega este formulario para invitar ós teus amigos e colegas a empregar " +"este servizo." + +#: lib/subs.php:53 lib/subs.php:52 +msgid "User has blocked you." +msgstr "O usuario bloqueoute." + +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 +#, fuzzy +msgid "Subscribe to this user" +msgstr "Suscrito a %s" + +#: lib/tagcloudsection.php:56 +#, fuzzy +msgid "None" +msgstr "No" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + +#: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 +#, fuzzy +msgid "Unblock this user" +msgstr "Bloquear usuario" + +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 +msgid "Unblock" +msgstr "Desbloquear" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +#, fuzzy +msgid "Unsubscribe from this user" +msgstr "Desuscribir de %s" + +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Fonte para os amigos de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Fonte para os amigos de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Fonte para os amigos de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s e amigos" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Podes actualizar a túa información do perfil persoal aquí" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualizado." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" +"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " +"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " +"ser notificado de ningunha resposta-@ del." + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " +"atrás... Quedas avisado!" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblogue por %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " +"Separa os termos por espazos; deben ter 3 caracteres ou máis." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Erro ó enviar a mensaxe directa." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Buscar \"%s\" na Liña de tempo" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Por razóns de seguranza, por favor re-insire o teu nome de usuario e " +"contrasinal antes de cambiar as túas preferenzas." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Sindicación do Fio Público" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Sindicación do Fio Público" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Sindicación do Fio Público" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/register.php:286 actions/register.php:329 +#, fuzzy, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" +"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " +"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " +"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" agás esta informción privada: contrasinal, dirección de correo electrónico, " +"dirección IM, número de teléfono." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Crear" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Non existe o perfil." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Non existe o perfil." + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Fonte de chíos para %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Fonte de chíos para %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Fonte de chíos para %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Band. Saída para %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Configuración de perfil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Enviouseche o código de confirmación ó número de teléfono que engadiches. " +"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " +"debes seguir." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 #, php-format msgid "" "%1$s just added your notice from %2$s as one of their favorites.\n" @@ -4352,48 +6020,66 @@ msgstr "" "Fielmente teu,\n" "%5$s\n" -#: actions/twitapiusers.php:46 -msgid "Not found." -msgstr "Non atopado" +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Non é o usuario" -#: actions/twittersettings.php:29 -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Engade a túa conta de Twitter para enviar automáticamente os teus chíos a Twitter, e suscribirte aos usuarios de twiter que teñas como amigos aqui." +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " +"Twitter, e suscribirte aos usuarios de twiter que teñas como amigos aqui." -#: actions/twittersettings.php:63 -msgid "Twitter user name" -msgstr "Nome de usuario en Twitter" +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." -#: actions/twittersettings.php:67 -msgid "Twitter password" -msgstr "Contrasinal de Twitter" +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." -#: actions/twittersettings.php:129 -msgid "Twitter Friends" -msgstr "Amigos de Twitter" +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" -#: actions/unblock.php:73 -msgid "Error removing the block." -msgstr "Acounteceu un erro borrando o bloqueo." +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " +"duns minutos." -#: actions/unsubscribe.php:48 -msgid "No profile id in request." -msgstr "Non hai identificador de perfil na peticion." +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" -#: actions/unsubscribe.php:55 -msgid "No profile with that id." -msgstr "Non se atopou un perfil con ese ID." +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" -#: actions/unsubscribe.php:69 -msgid "Unsubscribed" -msgstr "De-suscribido" - -#: actions/users.php:38 -#: lib/util.php:378 -msgid "Users list" -msgstr "Lista de usuarios" - -#: classes/Command.php:96 +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -4404,7 +6090,7 @@ msgstr "" "Suscriptores: %2$s\n" "Chíos: %3$s" -#: classes/Command.php:349 +#: lib/command.php:392 lib/command.php:385 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -4460,53 +6146,41 @@ msgstr "" "tracks - non implementado por agora.\n" "tracking - non implementado por agora.\n" -#: classes/Notice.php:100 -msgid "Problem saving notice. Unknown user." -msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" -#: classes/Notice.php:105 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro duns minutos." +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co " +"teu OpenID." -#: classes/Notice.php:112 -msgid "You are banned from posting notices on this site." -msgstr "Tes restrinxido o envio de chíos neste sitio." +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" -#: lib/gallery.php:98 -msgid "Filter tags" -msgstr "Filtrar etiquetas" +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" -#: lib/gallery.php:104 -msgid "All" -msgstr "Todos" +#: lib/feed.php:89 +msgid "Atom" +msgstr "" -#: lib/gallery.php:108 -msgid "Tag" -msgstr "Etiqueta" +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" -#: lib/gallery.php:109 -msgid "Choose a tag to narrow list" -msgstr "Elixe unha etiqueta para reducila lista" +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" -#: lib/gallery.php:110 -msgid "Go" -msgstr "Ir" - -#: lib/gallery.php:264 -msgid "Subscriptions navigation" -msgstr "Navegación de subscricións" - -#: lib/gallery.php:270 -#: lib/gallery.php:292 -msgid "List" -msgstr "Lista" - -#: lib/gallery.php:280 -#: lib/gallery.php:294 -msgid "Icons" -msgstr "Iconos" - -#: lib/mail.php:92 +#: lib/mail.php:175 lib/mail.php:174 #, php-format msgid "" "Hey, %s.\n" @@ -4535,15 +6209,32 @@ msgstr "" "Grazas polo teu tempo, \n" "%s\n" -#: lib/mail.php:232 -#, php-format -msgid "You've been nudged by %s" -msgstr "%s douche un toque" +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s está a escoitar os teus chíos en %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentamente todo seu,\n" +"%4$s.\n" -#: lib/mail.php:236 +#: lib/mail.php:466 #, php-format msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you to post some news.\n" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" "\n" "So let's hear from you :)\n" "\n" @@ -4565,7 +6256,7 @@ msgstr "" "With kind regards,\n" "%4$s\n" -#: lib/mail.php:269 +#: lib/mail.php:513 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4598,116 +6289,1738 @@ msgstr "" "With kind regards,\n" "%5$s\n" -#: lib/profilelist.php:146 -msgid "(none)" -msgstr "(nada)" +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" -#: lib/settingsaction.php:97 -#: lib/settingsaction.php:98 -msgid "SMS Post" -msgstr "Envío por SMS" +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" -#: lib/settingsaction.php:98 -#: lib/settingsaction.php:99 -msgid "Posts by SMS" -msgstr "Chíos dende SMS" +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Buscar" -#: lib/stream.php:33 -msgid "Public" -msgstr "Público" +#: lib/section.php:106 +msgid "More..." +msgstr "" -#: lib/stream.php:36 -#: lib/stream.php:37 -msgid "Recent tags" -msgstr "Etiquetas recentes" +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" -#: lib/stream.php:39 -#: lib/stream.php:40 -msgid "All tags" -msgstr "Tódalas etiquetas" +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" -#: lib/stream.php:43 -msgid "Featured" -msgstr "Destacado" +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" -#: lib/stream.php:47 -msgid "Popular" -msgstr "Popular" +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" -#: lib/subs.php:51 -msgid "User has blocked you." +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Ningún documento." + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 +#, php-format +msgid "%s blocked profiles" +msgstr "" + +#: actions/blockedfromgroup.php:93 +#, php-format +msgid "%s blocked profiles, page %d" +msgstr "" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Desbloqueo de usuario fallido." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmación." + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Non se pode eliminar este chíos." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etiqueta inválida: '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Non se puido crear o favorito." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Novo chío" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Novo chío" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Non é un alcume válido." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Non se especificou ningún perfil." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." msgstr "O usuario bloqueoute." -#: lib/util.php:379 -msgid "Users" -msgstr "Usuarios" - -#: lib/util.php:2118 -msgid "Send a nudge" -msgstr "Dar un toque" - -#: lib/util.php:2122 -msgid "Nudge sent!" -msgstr "Toque enviado!" - -#: lib/util.php:2253 -msgid "Block" -msgstr "Bloquear" - -#: lib/util.php:2257 -msgid "Unblock" -msgstr "Desbloquear" - -#: actions/newsmsnotice.php:29 -#: actions/smspostsettings.php:57 -msgid "SMS Post Disabled!" -msgstr "Publicación de chíos por SMS desactivado!" - -#: actions/badgemisc.php:31 -#, php-format -msgid "%1s in your blog" -msgstr "%1s no teu blogue" - -#: actions/misc.php:85 -msgid "WordPress Plugin" -msgstr "Plugin WordPress" - -#: actions/misc.php:88 -#, php-format -msgid "Graphics and statistics about the state of %1s" -msgstr "Gráficos e estatísticas sobre o estado de %1s" - -#: actions/newsmsnotice.php:35 -#, php-format -msgid "%1s is not a reliable source." +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." msgstr "%1s non é unha orixe fiable." -#: actions/newsmsnotice.php:60 -msgid "Unexpected error" -msgstr "Erro inesperado" +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquear usuario" -#: actions/newsmsnotice.php:65 -msgid "No such phone" -msgstr "Non existe o telefono" +#: actions/groupblock.php:155 +#, fuzzy, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" +"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " +"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " +"ser notificado de ningunha resposta-@ del." -#: actions/newsmsnotice.php:75 -msgid "Missing message" -msgstr "Falta a mensaxe" +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" -#: actions/newsmsnotice.php:91 -msgid "Notice published correctly" -msgstr "Chío publicado correctamente" +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: actions/wpmisc.php:27 -msgid "If you want to have your notices on your Wordpress, then follow the instructions" -msgstr "Se queres ter os teus chios no teu Wordpress, sigue as instruccións" +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" -#: actions/wpmisc.php:31 +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Non se puido actualizar o usuario." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Non se puideron gardar os teus axustes de Twitter!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferencias gardadas." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Non se atoparon resultados" + +#: actions/groupsearch.php:82 #, php-format -msgid "%1s on your Wordpress" -msgstr "%1s no teu Wordpress" +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" -#: actions/badgemisc.php:27 -msgid "If you want to have your notices on your blog/website, then follow the instructions" -msgstr "Se queres ter os teus chios no teu blogue/sitio web, sigue as instruccións" +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "O usuario bloqueoute." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Non hai mensaxes de texto!" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Non se puido gardar o perfil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma " +"conta. Xestina os teus OpenIDs asociados dende aquí." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configuración de perfil" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no " +"enderezo de correo que configuraches na túa conta." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Foiches identificado. Insire unha nova contrasinal abaixo." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Petición de recuperación de contrasinal" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Acounteceu un erro co código de confirmación." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Suscrito a %s" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Chíos favoritos de %s" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Fonte de chíos para %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Fonte de chíos para %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Fonte de chíos para %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Non é usuario local." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Chíos tagueados con %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Fonte de chíos para %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s está a escoitar os teus chíos %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Fonte de chíos para %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Fonte de chíos para %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Este chío xa é un favorito!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Este chío non é un favorito!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Non se pudo recuperar a liña de tempo publica." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Non se especificou ningún destinatario" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Non se puido atopar ningún estado" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Chíos que respostan a %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Subscrición de autorización." + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Configuración de perfil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "%1s non é unha orixe fiable." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Aconteceu un erro ó gardar o chío." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Mensaxe de %1$s en %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "O usuario non ten perfil." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Perfil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Subir" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Cambiar contrasinal" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Conectar" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Buscar" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Lista" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquear" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Bloquear usuario" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" +"\n" +"Se o olvidaches, podes velo texto do teu chío aquí:\n" +"\n" +"%3$s\n" +"\n" +"Podes vela lista de cíos favoritos de %1$s aquí:\n" +"\n" +"%4$s\n" +"\n" +"Fielmente teu,\n" +"%5$s\n" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Sen contido!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Usuario" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Buscar" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "%1s non é unha orixe fiable." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Non existe a etiqueta." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Mensaxes directas para %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "A localización é demasiado longa (max 255 car.)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Xa bloqueaches a este usuario." + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Non podes seguir a este usuario: o Usuario non se atopa." + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato de ficheiro de imaxe non soportado." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Chíos dende SMS" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "A localización é demasiado longa (max 255 car.)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "O usuario que está sendo escoitado non existe." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Non está autorizado." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Non se pode convertir o token da petición a tokens de acceso." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versión de protocolo OMB descoñecida." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Non existe o perfil." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Non se puido crear o favorito." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "%1s non é unha orixe fiable." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" +"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" +"action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Tódalas actualizacións que coinciden co termo de procura \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "O teu Bio é demasiado longo (max 140 car.)." + +#: actions/register.php:336 +#, fuzzy +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" +"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " +"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " +"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Non é un enderezo de perfil válido (non ten documento YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Este é un perfil local! Rexístrate para suscribirte." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Non se puido recoller o token de petición." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Fonte de chíos para %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Mensaxe de %1$s en %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Fonte para os favoritos de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Fonte para os favoritos de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Fonte para os favoritos de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Chío publicado" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Publicación de chíos por SMS desactivado!" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Fonte de chíos para %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"A subscrición foi autorizada, pero ningunha URL de retorno foi " +"proporcionada. Comproba coas instruccións do sitio para máis detalles en " +"como autorizar subscricións. O teu token de subscrición é:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Non se pode ler a URL do avatar de '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo de imaxe incorrecto para '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Non se pode redireccionar ao servidor: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Atopar no contido dos chíos" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Toque enviado" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Replies to %s" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Aconteceu un erro ó gardar o chío." + +#: lib/command.php:587 +#, fuzzy +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" +"Comandos:\n" +"on - activar as notificacións\n" +"off - desactivar as notificacións\n" +"help - mostrar esta axuda\n" +"follow - suscribirse ao usuario\n" +"leave - de-suscribirse do usuario\n" +"d - mensaxe directa ao usuario\n" +"get - lelo último chío do usuario\n" +"whois - amosar informacion do usuario\n" +"fav - engadilo último chío do usuario como favorito\n" +"stats - amosalas túas estatísticas\n" +"stop - o mesmo que 'off'\n" +"quit - o mesmo que 'off'\n" +"sub - o mesmo que 'follow'\n" +"unsub - o mesmo que 'leave'\n" +"last - o mesmo que 'get'\n" +"on - non implementado por agora.\n" +"off - non implementado por agora.\n" +"nudge - non implementado por agora.\n" +"invite - non implementado por agora.\n" +"track - non implementado por agora.\n" +"untrack - non implementado por agora.\n" +"track off - non implementado por agora.\n" +"untrack all - non implementado por agora.\n" +"tracks - non implementado por agora.\n" +"tracking - non implementado por agora.\n" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Sen código de confirmación." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecciona unha operadora" + +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "" + +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Fonte de chíos para %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s gustoulle o teu chío" + +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" +"\n" +"Se o olvidaches, podes velo texto do teu chío aquí:\n" +"\n" +"%3$s\n" +"\n" +"Podes vela lista de cíos favoritos de %1$s aquí:\n" +"\n" +"%4$s\n" +"\n" +"Fielmente teu,\n" +"%5$s\n" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " dende " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Non se puido eliminar o favorito." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Eliminar chío" + +#~ msgid "Code not yet ready." +#~ msgstr "Código non implementado." + +#~ msgid "Export and delete your user information." +#~ msgstr "Exportar e eliminar a túa información de usuario." + +#~ msgid "Delete my account" +#~ msgstr "Borrar a miña conta" + +#~ msgid "Delete my account confirmation" +#~ msgstr "Confirmación de borrado da miña conta" + +#~ msgid "Check if you are sure you want to delete your account." +#~ msgstr "Estas seguro que queres eliminar a tua conta?" + +#~ msgid "Showing recently popular notices" +#~ msgstr "Amosando chíos populares recentes" + +#~ msgid "Send me notices from public timeline through Jabber/GTalk." +#~ msgstr "" +#~ "Enviarme os chíos da liña de tempo pública a través de Jabber/GTalk." + +#~ msgid "you can also login using OpenID" +#~ msgstr "tamén te podes rexistrar cunha conta OpenID" + +#~ msgid "Embedded" +#~ msgstr "Embebida" + +#~ msgid "Embedded %1s" +#~ msgstr "%1s embebida" + +#~ msgid "WP" +#~ msgstr "WP" + +#~ msgid "Theme" +#~ msgstr "Tema" + +#~ msgid "Preferred theme" +#~ msgstr "Tema preferido" + +#~ msgid "" +#~ "You can post on %1s sending an sms to %2s in the followin format: '%3s'" +#~ msgstr "" +#~ "Podes publicar chíos en %1s enviando un SMS a %2s co seguinte formato: '%" +#~ "3s'" + +#~ msgid "SMS Post Settings" +#~ msgstr "Configuracións de envio por SMS" + +#~ msgid "The address was added." +#~ msgstr "Enderezo engadido." + +#~ msgid "Tag a person" +#~ msgstr "Etiquetar a unha persoa" + +#~ msgid "Showing all tags" +#~ msgstr "Amosando tódalas etiquetas" + +#~ msgid "Users list" +#~ msgstr "Lista de usuarios" + +#~ msgid "Icons" +#~ msgstr "Iconos" + +#~ msgid "SMS Post" +#~ msgstr "Envío por SMS" + +#~ msgid "%1s in your blog" +#~ msgstr "%1s no teu blogue" + +#~ msgid "WordPress Plugin" +#~ msgstr "Plugin WordPress" + +#~ msgid "Graphics and statistics about the state of %1s" +#~ msgstr "Gráficos e estatísticas sobre o estado de %1s" + +#~ msgid "Unexpected error" +#~ msgstr "Erro inesperado" + +#~ msgid "No such phone" +#~ msgstr "Non existe o telefono" + +#~ msgid "Missing message" +#~ msgstr "Falta a mensaxe" + +#~ msgid "Notice published correctly" +#~ msgstr "Chío publicado correctamente" + +#~ msgid "" +#~ "If you want to have your notices on your Wordpress, then follow the " +#~ "instructions" +#~ msgstr "Se queres ter os teus chios no teu Wordpress, sigue as instruccións" + +#~ msgid "%1s on your Wordpress" +#~ msgstr "%1s no teu Wordpress" + +#~ msgid "" +#~ "If you want to have your notices on your blog/website, then follow the " +#~ "instructions" +#~ msgstr "" +#~ "Se queres ter os teus chios no teu blogue/sitio web, sigue as instruccións" diff --git a/locale/he/LC_MESSAGES/statusnet.mo b/locale/he/LC_MESSAGES/statusnet.mo index 609918d9266dfcdb79fd78e7bb444e62f835b357..c6fd808286eceffb314540a2a7022737a9aa8286 100644 GIT binary patch delta 17040 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 delta 10779 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 LJP~FNU2XV37u_^k diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 97a44a030e..d4902f5f48 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-01-30 12:07+0000\n" "Last-Translator: support team \n" "Language-Team: LANGUAGE \n" @@ -27,14 +27,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "חיפוש ברצף אחרי \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -45,17 +45,19 @@ msgid " from " msgstr "" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -87,6 +89,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" @@ -108,25 +111,28 @@ msgstr "" " %4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "הסטטוס של %1$s ב-%2$s " #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "רצף ציבורי ב-%s" @@ -136,40 +142,55 @@ msgstr "רצף ציבורי ב-%s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s וחברים" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -178,7 +199,8 @@ msgstr "" "**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** הוא שרות ביקרובלוג." @@ -190,30 +212,34 @@ msgstr "תנו קרדיט מלא לכותבים בשמם המלא או בכינ #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים." #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "לפחות 6 אותיות" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "לפחות 6 אותיות, אל תשכח!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr " לפחות 6 אותיות. שדה חובה." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -223,6 +249,7 @@ msgstr "" "מידיים אליך." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -252,7 +279,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -275,16 +329,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "אודות" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "קבל" @@ -295,6 +356,9 @@ msgstr "קבל" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "הוסף" @@ -312,27 +376,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "כתבות" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "כל המנויים" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "כל העדכונים עבור %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\"" @@ -342,30 +408,37 @@ msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "כבר מחובר." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "כבר מנוי!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "אשר מנוי" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "בעתיד התחבר אוטומטית; לא לשימוש במחשבים ציבוריים!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -373,15 +446,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "תמונה" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "התמונה עודכנה." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -391,13 +468,14 @@ msgstr "" "נוספותץ (האם הוספת את %s לרשימת החברים שלך?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -409,6 +487,8 @@ msgstr "לפני >>" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "ביוגרפיה" @@ -416,16 +496,18 @@ msgstr "ביוגרפיה" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" @@ -433,6 +515,8 @@ msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "לא ניתן לשמור את הסיסמה" @@ -440,31 +524,34 @@ msgstr "לא ניתן לשמור את הסיסמה" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "בטל" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "לא ניתן להפעיל את אובייקט הלקוח של OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "לא ניתן לנרמל את זהות ה-Jabber הזה" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "שנה" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -474,11 +561,12 @@ msgid "Change password" msgstr "שנה סיסמה" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -488,6 +576,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "אשר" @@ -500,12 +591,14 @@ msgstr "אשר כתובת" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "האישור בוטל." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -514,7 +607,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "קוד האישור לא נמצא." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -534,20 +628,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "התחבר" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "התחבר לחשבון קיים" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "צור קשר" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "נכשלה יצירת OpenID מתוך: %s" @@ -555,35 +653,39 @@ msgstr "נכשלה יצירת OpenID מתוך: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "נכשלה ההפניה לשרת: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "שמירת מידע התמונה נכשל" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "שמירת מידע הפרופיל החדש נכשלה" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -603,15 +705,17 @@ msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליח #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "מחיקת המנוי לא הצליחה." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -624,29 +728,38 @@ msgstr "אסימון הבקשה לא התקבל." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "הכנסת קוד האישור נכשלה." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "הכנסת מנוי חדש נכשלה." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "שמירת הפרופיל נכשלה." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -662,42 +775,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "עידכון המשתמש נכשל." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "צור" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "צור משתמש חדש עם הכינוי הזה." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "צור חשבון חדש" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "יצירת חשבון חדש עבור OpenID שכבר משוייך למשתמש." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "כתובת מאושרת נוכחית של Jabber/GTalk." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -706,23 +825,27 @@ msgid "Currently" msgstr "כרגע" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" @@ -730,11 +853,13 @@ msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אות #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -744,39 +869,43 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "שגיאה באישור האסימון" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "שגיאה בקישור המשתמש ל-OpenID." @@ -787,39 +916,46 @@ msgstr "שגיאת חיבור משתמש." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "שגיאה בהכנסת התמונה." #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "שגיאה בהכנסת הפרופיל" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "שגיאה בהכנסת פרופיל מרוחק" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "שגיאה בשמירת אישור הכתובת." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "שגיאה בשמירת פרופיל מרוחק" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "שגיאה בשמירת הפרופיל." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "שגיאה בשמירת המשתמש." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "שגיאה בשמירת שם המשתמש, לא עומד בכללים." @@ -828,6 +964,9 @@ msgstr "שגיאה בשמירת שם המשתמש, לא עומד בכללים." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "שגיאה ביצירת שם המשתמש." @@ -838,6 +977,7 @@ msgstr "שגיאה בעידכון הפרופיל" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "שגיאה בעדכון פרופיל מרוחק" @@ -847,33 +987,36 @@ msgid "Error with confirmation code." msgstr "שגיאה באישור הקוד." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "כינוי זה כבר קיים" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "רשימת שאלות נפוצות" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "עדכון התמונה נכשל." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "הזנות החברים של %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "הזנת התגובות ל-%s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -888,7 +1031,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -899,6 +1042,11 @@ msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסי #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "שם מלא" @@ -907,23 +1055,33 @@ msgstr "שם מלא" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "עזרה" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "בית" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "אתר בית" @@ -931,21 +1089,27 @@ msgstr "אתר בית" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "לאתר הבית יש כתובת לא חוקית." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "כתובת מסרים מידיים" @@ -955,21 +1119,21 @@ msgid "IM Settings" msgstr "הגדרות מסרים מידיים" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" "אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" "אם אתה רוצה להוסיף OpenID לחשבון שלך, הכנס אותו לתיבה שלמטה ולחץ \"הוסף\"" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -978,55 +1142,62 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "הסיסמה הישנה לא נכונה" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "שם משתמש או סיסמה לא נכונים." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "כתובת התמונה '%s' אינה חוקית" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "כתובת אתר הבית '%s' אינה חוקית" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "כתובת הרשיון '%s' איה חוקית" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "תוכן ההודעה לא חוקי" @@ -1041,13 +1212,13 @@ msgid "Invalid notice url" msgstr "כתובת לא חוקית" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "כתובת הפרופיל '%s' לא חוקית." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "כתובת פרופיל לא חוקית (פורמט לא תקין)" @@ -1065,28 +1236,35 @@ msgstr "גודל לא חוקי." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "שם המשתמש או הסיסמה לא חוקיים" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1098,11 +1276,12 @@ msgstr "" "licensing/licenses/agpl-3.0.html)" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "זיהוי ה-Jabber כבר שייך למשתמש אחר." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1112,12 +1291,14 @@ msgstr "" "החברים בתוכנת ההמסרים המידיים או GTalk שלך." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "שפה" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1126,7 +1307,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "מיקום" @@ -1135,7 +1324,12 @@ msgstr "מיקום" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." @@ -1144,18 +1338,22 @@ msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "היכנס" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "התחבר לחשבון [OpenID](%%doc.openid%%). " -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1165,22 +1363,26 @@ msgstr "" "היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." "register%%) לחשבון " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "צא" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "שכחת או איבדת את הסיסמה?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1191,16 +1393,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "חבר מאז" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "מיקרובלוג מאת %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1210,42 +1414,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "הטקסטים והקבצים שלי מופצים תחת רשיון" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "חדש" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "כינוי חדש" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "הודעה חדשה" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "סיסמה חדשה" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "הסיסמה החדשה נשמרה בהצלחה. אתה מחובר למערכת." @@ -1255,7 +1467,13 @@ msgstr "הסיסמה החדשה נשמרה בהצלחה. אתה מחובר למ #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "כינוי" @@ -1264,7 +1482,12 @@ msgstr "כינוי" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." @@ -1273,47 +1496,58 @@ msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "כינוי זה אסור." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "כינויו של המשתמש אחריו אתה רוצה לעקוב" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "לא" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "אין זיהוי Jabber כזה." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "לא התבקש אישור!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1325,11 +1559,15 @@ msgstr "אין קוד אישור." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "אין תוכן!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1338,7 +1576,9 @@ msgid "No id." msgstr "אין זיהוי." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1349,6 +1589,7 @@ msgstr "השרת הרחוק לא מספק כינוי" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "אין כינוי" @@ -1356,12 +1597,14 @@ msgstr "אין כינוי" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "אין אישור ממתין שניתן לבטל." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1371,7 +1614,8 @@ msgid "No profile URL returned by server." msgstr "השרת לא החזיר כתובת פרופיל" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "" @@ -1383,7 +1627,7 @@ msgstr "לא נמצאה בקשה!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "אין תוצאות" @@ -1394,12 +1638,16 @@ msgstr "אין גודל." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1409,13 +1657,15 @@ msgid "No such OpenID." msgstr "אין OpenID כזה." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "אין מסמך כזה." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "אין הודעה כזו." @@ -1453,12 +1703,22 @@ msgstr "אין מנוי כזה" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "אין משתמש כזה." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1472,32 +1732,38 @@ msgid "Not a recovery code." msgstr "זהו לא קוד אישור." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "לא עומד בכללים לזיהוי Jabber" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "לא עומד בכללים ל-OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "" @@ -1505,6 +1771,11 @@ msgstr "" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "שם משתמש לא חוקי." @@ -1524,7 +1795,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Not a valid profile URL (no YADIS document)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "זהו לא קובץ תמונה, או שחל בו שיבוש." @@ -1535,11 +1807,13 @@ msgstr "לא מורשה." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "זו תגובה לא צפויה!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "לא נמצא" @@ -1555,11 +1829,15 @@ msgstr "לא נמצא" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "לא מחובר." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "לא מנוי!" @@ -1576,39 +1854,44 @@ msgid "Notice feed for %s" msgstr "הזנת הודעות של %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "להודעה אין פרופיל" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "הודעות" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "סיסמה ישנה" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "הגדרת חשבון OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "הגשה אוטומטית של OpenID" @@ -1616,29 +1899,34 @@ msgstr "הגשה אוטומטית של OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "כניסת OpenId" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "כתובת ה-OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "אישור ה-OpenID בוטל." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "אישור ה-OpenID נכשל: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "כשל OpenID: %s" @@ -1654,11 +1942,12 @@ msgid "OpenID settings" msgstr "הגדרות OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "העלאה חלקית." @@ -1668,34 +1957,46 @@ msgstr "העלאה חלקית." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "סיסמה" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "הסיסמה ואישורה אינן תואמות." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "הסיסמה חייבת להיות בת לפחות 6 אותיות." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "התבקש שיחזור סיסמה" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "הסיסמה נשמרה." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "הסיסמאות לא תואמות." @@ -1715,14 +2016,17 @@ msgid "People search" msgstr "חיפוש סיסמה" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "אישי" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1736,7 +2040,7 @@ msgstr "" "להירשם, לחץ \"בטל\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "פרסם הודעה כששורת הסטטוס שלי ב-Jabber/GTalk מתעדכנת." @@ -1745,7 +2049,9 @@ msgstr "פרסם הודעה כששורת הסטטוס שלי ב-Jabber/GTalk מ #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "העדפות" @@ -1754,42 +2060,52 @@ msgstr "העדפות" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "העדפות נשמרו." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "פרטיות" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "בעיה בשמירת ההודעה." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "פרופיל" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "כתובת הפרופיל" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "הגדרות הפרופיל" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "פרופיל לא מוכר" @@ -1798,17 +2114,19 @@ msgid "Public Stream Feed" msgstr "הזנת זרם הציבורי" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "קו זמן ציבורי" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1818,12 +2136,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "שיחזור" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "סיסמת שיחזור" @@ -1836,37 +2156,45 @@ msgstr "קוד שיחזור למשתמש לא ידוע." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "הירשם" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "דחה" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "זכור אותי" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "אין פרופיל תואם לפרופיל המרוחק " #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "הרשמה מרוחקת" @@ -1880,6 +2208,9 @@ msgstr "הרשמה מרוחקת" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "הסר" @@ -1888,7 +2219,7 @@ msgstr "הסר" msgid "Remove OpenID" msgstr "הסר OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1897,34 +2228,41 @@ msgstr "" "אותו, לפני כן הוסף OpenID אחר." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "תגובות" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "תגובת עבור %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "איפוס" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "איפוס סיסמה" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "סמס" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1933,17 +2271,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "זהה לסיסמה למעלה" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1956,12 +2295,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "שמור" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "חיפוש" @@ -1971,7 +2319,7 @@ msgid "Search Stream Feed" msgstr "הזנת זרם החיפושים" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1980,7 +2328,7 @@ msgstr "" "חפש הודעות ב-%%site.name%% לפי תוכנן. הפרד בעזרת רווחים בין הביטויים; עליהם " "להיות בני לפחות 3 אותיות." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -1990,48 +2338,56 @@ msgstr "" "בין הביטויים; עליהם להיות בני לפחות 3 אותיות." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "שלח" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "שלח לי הודעות דרך Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "הגדרות" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "ההגדרות נשמרו." @@ -2051,27 +2407,32 @@ msgid "Something weird happened." msgstr "קרה משהו מוזר." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "מקור" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "סטטיסטיקה" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "OpenID מאוכסן לא נמצא." @@ -2079,24 +2440,28 @@ msgstr "OpenID מאוכסן לא נמצא." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "הירשם כמנוי" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "מנויים" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "ההרשמה אושרה" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "ההרשמה נדחתה" @@ -2104,28 +2469,35 @@ msgstr "ההרשמה נדחתה" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "הרשמות" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "שגיאת מערכת בהעלאת הקובץ." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "טקסט" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "חיפוש טקסט" @@ -2145,6 +2517,7 @@ msgid "That confirmation code is not for you!" msgstr "קוד האישור הזה אינו מיועד לך!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2154,63 +2527,73 @@ msgid "That file is too big." msgstr "קובץ זה גדול מידי." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "זהו כבר זיהוי ה-Jabber שלך." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "זהו לא זיהוי ה-Jabber שלך." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "זוהי כתובת מסרים מידיים שגויה." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "הכתובת \"%s\" אושרה עבור חשבונך." @@ -2219,11 +2602,14 @@ msgstr "הכתובת \"%s\" אושרה עבור חשבונך." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "הכתובת הוסרה." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2232,7 +2618,8 @@ msgstr "" "המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " "כיצד לאשר מנוי. אסימון המנוי שלך הוא:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2242,40 +2629,45 @@ msgstr "" "דחיית מנוי." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "אלה האנשים במאזינים להודעות של %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "אלה האנשים המאזינים להודעות שלך." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "אלה האנשים ש%s מאזין להודעות שלהם." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "אלה האנשים שלהודעות שלהם אתה מאזין." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "קוד אישור זה ישן מידי. אנא התחל מחדש." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "טופס אמור לשלוח את עצמו אוטומטית. אם לא, " #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2289,6 +2681,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2297,25 +2692,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2327,18 +2734,21 @@ msgstr "" "openmublog%%), הכנס את כתובת הפרופיל שלך למטה. " #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם אחר" @@ -2350,15 +2760,22 @@ msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "הגשת טופס לא צפויה." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "איפוס סיסמה לא צפוי." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2387,38 +2804,47 @@ msgstr "בטל מנוי" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "גירסה לא נתמכת של OMB" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "פורמט התמונה אינו נתמך." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "ההעלה" @@ -2438,12 +2864,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "לשימוש רק במקרים של עידכונים, הודעות מערכת, ושיחזורי סיסמאות" @@ -2467,11 +2896,16 @@ msgstr "המשתמש אליו אתה מאזין אינו קיים." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "למשתמש אין פרופיל." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "כינוי משתמש" @@ -2480,29 +2914,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "מה המצב %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "סוג התמונה של '%s' אינו מתאים" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "גודל התמונה של: '%s' לא מתאים." @@ -2510,7 +2948,9 @@ msgstr "גודל התמונה של: '%s' לא מתאים." #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "כן" @@ -2531,11 +2971,12 @@ msgid "You are already logged in!" msgstr "כבר נכנסת למערכת!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2553,13 +2994,14 @@ msgstr "ניתן ליצור חשבון חדש ולהתחיל לפרסם הודע msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "הסיר OpenID מחשבונך על ידי לחיצה על הכפתור המסומן \"הסר\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2568,7 +3010,8 @@ msgstr "" "אפשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר " "את כתובתך והעדפותיך למטה." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "עדכן את הפרופיל האישי שלך כאן, על מנת שאנשים יוכלו לדעת עליך יותר." @@ -2577,21 +3020,23 @@ msgstr "עדכן את הפרופיל האישי שלך כאן, על מנת שא #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "ניתן להשתמש במנוי המקומי!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "לא ניתן להירשם ללא הסכמה לרשיון" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2605,35 +3050,39 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "זוהית. הכנס סיסמה חדשה למטה." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "כתובת ה-OpenID שלך" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2642,47 +3091,57 @@ msgstr "" "מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID " "מכאן. [OpenID](%%doc.openid%%)" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "לפני מספר שניות" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "לפני כ-%d ימים" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "לפני כ-%d שעות" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "לפני כ-%d דקות" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "לפני כ-%d חודשים" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "לפני כיום" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "לפני כדקה" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "לפני כחודש" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "לפני כשנה" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "לפני כשעה" @@ -2704,12 +3163,14 @@ msgid "reply" msgstr "הגב" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "זהה לסיסמה למעלה" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2731,6 +3192,26 @@ msgstr "<< אחרי" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2739,6 +3220,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2746,22 +3228,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2771,11 +3259,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2815,33 +3305,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "הודעה חדשה" @@ -2895,6 +3396,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2923,6 +3429,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2943,12 +3451,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2956,7 +3467,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2980,51 +3491,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3043,14 +3573,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3059,6 +3592,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3067,24 +3601,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3095,33 +3634,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3138,18 +3687,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3159,89 +3709,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "אודות: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3249,11 +3821,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3268,7 +3840,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3280,7 +3852,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3289,31 +3861,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "מועדפים" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "מתשמש" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3326,14 +3906,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "אל" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s וחברים" @@ -3343,22 +3928,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "הגדרות" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3375,35 +3970,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "אין הודעה כזו." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "אין משתמש כזה." @@ -3412,12 +4016,12 @@ msgstr "אין משתמש כזה." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "כבר נכנסת למערכת!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3435,40 +4039,58 @@ msgstr "" msgid "Add to favorites" msgstr "מועדפים" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "אין כינוי" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "אין הודעה כזו." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3478,16 +4100,17 @@ msgid "Nickname must have only lowercase letters " msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "עידכון המשתמש נכשל." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "ההגדרות נשמרו." @@ -3505,7 +4128,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3521,7 +4145,7 @@ msgstr "" "קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים " "מידיים אליך." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3535,54 +4159,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "אין תוכן!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "<< אחרי" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "לפני >>" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "הזנות החברים של %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3628,12 +4267,14 @@ msgstr "" msgid "Sync preferences" msgstr "העדפות" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "אין הודעה כזו." @@ -3648,7 +4289,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3662,15 +4304,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3678,12 +4322,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "התמונה עודכנה." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "עדכון התמונה נכשל." @@ -3703,7 +4349,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "קבוצות" @@ -3718,6 +4365,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "צור חשבון חדש" @@ -3730,7 +4378,7 @@ msgstr "" "חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " "בין הביטויים; עליהם להיות בני לפחות 3 אותיות." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "חיפוש סיסמה" @@ -3754,21 +4402,21 @@ msgstr "שלח לי הודעות דרך Jabber/GTalk." msgid "A confirmation code was sent " msgstr "אין קוד אישור." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "כבר נכנסת למערכת!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "נכשלה ההפניה לשרת: %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3777,16 +4425,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "אין הודעה כזו." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "לא שלחנו אלינו את הפרופיל הזה" @@ -3795,21 +4446,25 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "נכשלה יצירת OpenID מתוך: %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3821,16 +4476,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "שמירת מידע התמונה נכשל" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "יצירת המנוי נכשלה." @@ -3844,12 +4501,15 @@ msgstr "קובץ זה גדול מידי." msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "הודעות" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3866,7 +4526,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "כניסת OpenId" @@ -3894,11 +4554,13 @@ msgstr "" msgid "Service" msgstr "חיפוש" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." @@ -3908,17 +4570,18 @@ msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." msgid "Change your password." msgstr "שנה סיסמה" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "הסיסמה נשמרה." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "לא עומד בכללים ל-OpenID." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3928,12 +4591,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "פרופיל לא מוכר" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3943,21 +4607,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "כתובת אתר הבית '%s' אינה חוקית" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "שמירת הפרופיל נכשלה." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "קו זמן ציבורי" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3978,11 +4647,13 @@ msgstr "הזנת זרם הציבורי" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4037,7 +4708,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "תגובת עבור %s" @@ -4047,53 +4719,74 @@ msgstr "תגובת עבור %s" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "אין הודעה כזו." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "הודעות" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "חבר מאז" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4108,7 +4801,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4119,33 +4812,40 @@ msgid "'s profile" msgstr "פרופיל" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "למשתמש אין פרופיל." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "הודעה חדשה" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "מנויים" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4171,7 +4871,7 @@ msgstr "שלח לי הודעות דרך Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "קוד האישור הזה אינו מיועד לך!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4235,17 +4935,18 @@ msgstr "אלה האנשים ש%s מאזין להודעות שלהם." msgid "These are the people whose " msgstr "אלה האנשים במאזינים להודעות של %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "אין זיהוי Jabber כזה." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "מיקרובלוג מאת %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4269,7 +4970,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4279,17 +4980,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "שמירת מידע התמונה נכשל" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4298,20 +4999,23 @@ msgstr "" msgid "No such tag." msgstr "אין הודעה כזו." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "מיקרובלוג מאת %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "לא נמצא" @@ -4320,16 +5024,17 @@ msgstr "לא נמצא" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "סיסמה חדשה" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4342,157 +5047,166 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "שגיאה בשמירת המשתמש." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "השרת לא החזיר כתובת פרופיל" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "אין פרופיל תואם לפרופיל המרוחק " -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "בטל מנוי" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "עדכון התמונה נכשל." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "אודות" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "צור חשבון חדש" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "אין OpenID כזה." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "עזרה" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "הודעה חדשה" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "הודעה חדשה" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "הרשמות" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "אין משתמש כזה." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4505,12 +5219,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "צור חשבון חדש" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "ציבורי" @@ -4532,34 +5249,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר " -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "הרשמות" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4569,21 +5291,21 @@ msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "צא" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4616,12 +5338,12 @@ msgstr "היכנס" msgid "Leave" msgstr "שמור" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "שם המשתמש או הסיסמה לא חוקיים" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "צור חשבון חדש" @@ -4642,24 +5364,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mail.php:254 -#, fuzzy, php-format +#: lib/mail.php:254 lib/mail.php:253 +#, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 -#, fuzzy, php-format +#: lib/mail.php:256 lib/mail.php:255 +#, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4674,43 +5396,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "הודעה חדשה" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "לפחות 6 אותיות" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "בתגובה ל..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "הגב" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "מחק" @@ -4732,27 +5462,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "ציבורי" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "אנשים" @@ -4770,32 +5502,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "הרשמה מרוחקת" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "הרשמה מרוחקת" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "למשתמש אין פרופיל." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "ההרשמה אושרה" @@ -4810,11 +5544,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "אין משתמש כזה." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4822,6 +5557,2010 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "הזנות החברים של %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "הזנות החברים של %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "הזנות החברים של %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s וחברים" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "התמונה עודכנה." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "מיקרובלוג מאת %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " +"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "חיפוש ברצף אחרי \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסיסמה לפני שתשנה את ההגדרות." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "הזנת זרם הציבורי" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "הזנת זרם הציבורי" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "הזנת זרם הציבורי" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "צור" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "אין הודעה כזו." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "פרופיל" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "הזנת הודעות של %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "הזנת הודעות של %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "הזנת הודעות של %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "תמונה" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "הגדרות הפרופיל" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "קוד האישור הזה אינו מיועד לך!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "אין משתמש כזה." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " +"להירשם, לחץ \"בטל\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s מאזין כעת להודעות שלך ב %2$s. \n" +"\n" +"\t%3$s\n" +" שלך,\n" +" %4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "חיפוש" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "אין מסמך כזה." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "נכשלה ההפניה לשרת: %s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "אין משתמש כזה." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "למשתמש אין פרופיל." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s וחברים" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "אין משתמש כזה." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "מיקום" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "אין הודעה כזו." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "כתובת אתר הבית '%s' אינה חוקית" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "שמירת מידע התמונה נכשל" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "הודעה חדשה" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "הודעה חדשה" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "שם משתמש לא חוקי." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "למשתמש אין פרופיל." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "אין משתמש כזה." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "קבוצות" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "עידכון המשתמש נכשל." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "העדפות נשמרו." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "אין תוצאות" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "למשתמש אין פרופיל." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "הודעה חדשה" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "שמירת הפרופיל נכשלה." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID " +"מכאן. [OpenID](%%doc.openid%%)" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "הגדרות הפרופיל" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "זוהית. הכנס סיסמה חדשה למטה." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "התבקש שיחזור סיסמה" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "שגיאה באישור הקוד." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "ההרשמה אושרה" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "אין הודעה כזו." + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "הזנת הודעות של %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "הזנת הודעות של %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "הזנת הודעות של %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "אין משתמש כזה." + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "הזנת הודעות של %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "הזנת הודעות של %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "הזנת הודעות של %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "עידכון המשתמש נכשל." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "עידכון המשתמש נכשל." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "הסטטוס של %1$s ב-%2$s " + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "מיקרובלוג מאת %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "כל המנויים" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "הגדרות הפרופיל" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "בעיה בשמירת ההודעה." + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "למשתמש אין פרופיל." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "פרופיל" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "ההעלה" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "שנה סיסמה" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "התחבר" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "חיפוש" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "היכנס" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "אין משתמש כזה." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "אין משתמש כזה." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "אין תוכן!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "מתשמש" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "חיפוש" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "לאתר הבית יש כתובת לא חוקית." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "אין הודעה כזו." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "נכשלה ההפניה לשרת: %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "כבר נכנסת למערכת!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "נכשלה ההפניה לשרת: %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "נכשלה יצירת OpenID מתוך: %s" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "פורמט התמונה אינו נתמך." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "המשתמש אליו אתה מאזין אינו קיים." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "לא מורשה." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליחה." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "גירסה לא מוכרת של פרוטוקול OMB" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "אין הודעה כזו." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "אין הודעה כזו." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." +"register%%) לחשבון " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Not a valid profile URL (no YADIS document)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "אסימון הבקשה לא התקבל." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "הזנת הודעות של %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "תגובת עבור %s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "הזנות החברים של %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "הזנות החברים של %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "הזנות החברים של %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "הזנת הודעות של %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "הודעות" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "הזנת הודעות של %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " +"להירשם, לחץ \"בטל\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " +"כיצד לאשר מנוי. אסימון המנוי שלך הוא:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים " +"דחיית מנוי." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "סוג התמונה של '%s' אינו מתאים" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "נכשלה ההפניה לשרת: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "הודעה חדשה" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "נכשלה ההפניה לשרת: %s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "תגובת עבור %s" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "בעיה בשמירת ההודעה." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "אין קוד אישור." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "הזנת הודעות של %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "הודעה חדשה" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "צור חשבון חדש" diff --git a/locale/it/LC_MESSAGES/statusnet.mo b/locale/it/LC_MESSAGES/statusnet.mo index 00ab59804adeb3d2d0055913d5e59a53692a90f2..6aafacbbc6543d2f9d3c5fa995087a2cad4e2013 100644 GIT binary patch delta 29161 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 diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 1a59adf85b..bc40b8c97b 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: statusnet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-06-04 14:09+0000\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" @@ -18,14 +18,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Ricerca \"%s\" nel flusso" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -39,19 +39,21 @@ msgid " from " msgstr " via " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Aggiornamenti in risposta a %2$s" # %USERNAME has invited you to join THEM on %site. You start with a singular and end with a plural??? #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "Hai ricevuto un invito per seguire %1$s su %2$s" # resa il più 'asessuale' possibile... -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -109,6 +111,7 @@ msgstr "" "Cordiali saluti, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s." @@ -131,26 +134,29 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s aggiornamenti in risposta agli aggiornamenti da %2$s / %3$s" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Stato di %1$s su %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" # Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Attività pubblica di %s" @@ -160,36 +166,50 @@ msgstr "Attività pubblica di %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s e amici" # Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "attività pubblica di %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "stato di %s" # Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Attività di %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Aggiornamenti di %s da tutti!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -197,16 +217,18 @@ msgstr "" "(Dovresti ricevere, entro breve, un messaggio email con istruzioni su come " "confermare il tuo indirizzo email.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** è un servizio di micro-blog offerto da " -"[%%site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** è un servizio di micro-blog offerto da [%%site.broughtby%%]" +"(%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** è un servizio di micro-blog. " @@ -219,34 +241,38 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 lettere minuscole o numeri, niente punteggiatura o spazi. Richiesto." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 o più caratteri" # messa al femminile... dovrebbe essere la password #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 o più caratteri, e non dimenticarla!" # Femminile, è la password #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 o più caratteri. Richiesta." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -256,6 +282,7 @@ msgstr "" "istantanea che hai aggiunto. Devi approvare %s affinché ti invii messaggi." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -291,7 +318,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Metodo delle API non trovato!" @@ -314,16 +368,23 @@ msgstr "Metodo delle API non trovato!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Metodo delle API in lavorazione." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Informazioni" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Accetta" @@ -334,6 +395,9 @@ msgstr "Accetta" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Aggiungi" @@ -352,27 +416,29 @@ msgstr "Aggiungi o rimuovi OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Indirizzo" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Indirizzi email di amici da invitare (uno per riga)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Tutti gli abbonamenti" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Tutti gli aggiornamenti di %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\"" @@ -382,30 +448,37 @@ msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Accesso già effettuato." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Già abbonato!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Sei sicuro di voler eliminare questo messaggio?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizza abbonamento" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Accedi automaticamente in futuro; non per computer condivisi!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -415,15 +488,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Immagine" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Immagine aggiornata." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -434,6 +511,7 @@ msgstr "" "elenco contatti?)." #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -442,7 +520,7 @@ msgstr "" "(e anche la posta indesiderata!) per un messaggio con ulteriori istruzioni." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Attesa la conferma per questo numero di telefono." @@ -453,6 +531,8 @@ msgstr "Precedenti »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografia" @@ -460,16 +540,18 @@ msgstr "Biografia" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "La biografia è troppo lunga (max 140 caratteri)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Impossibile eliminare questo messaggio." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Impossibile leggere l'URL \"%s\" dell'immagine" @@ -477,6 +559,8 @@ msgstr "Impossibile leggere l'URL \"%s\" dell'immagine" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Impossibile salvare la nuova password." @@ -484,31 +568,34 @@ msgstr "Impossibile salvare la nuova password." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Annulla" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Impossibile creare l'oggetto OpenID consumer." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Impossibile normalizzare quell'ID Jabber" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Impossibile normalizzare l'indirizzo email" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Modifica" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Modifica la gestione dell'email" @@ -518,11 +605,12 @@ msgid "Change password" msgstr "Modifica password" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Modifica la tua password" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Modifica le impostazioni del tuo profilo" @@ -532,6 +620,9 @@ msgstr "Modifica le impostazioni del tuo profilo" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Conferma" @@ -544,12 +635,14 @@ msgstr "Conferma indirizzo" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Conferma annullata." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Codice di conferma" @@ -558,7 +651,8 @@ msgstr "Codice di conferma" msgid "Confirmation code not found." msgstr "Codice di conferma non trovato." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -592,20 +686,24 @@ msgstr "" "servizio." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Connetti" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Collega a un account esistente" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contatti" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Impossibile creare il modulo OpenID: %s" @@ -613,35 +711,39 @@ msgstr "Impossibile creare il modulo OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Impossibile seguire l'utente: %s è già nel tuo elenco." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Impossibile seguire l'utente: utente non trovato." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Impossibile redirigere al server: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Impossibile salvare le informazioni dell'immagine" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Impossibile salvare le nuove informazioni del profilo" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Impossibile abbonare altri a te." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Impossibile abbonarsi." @@ -662,15 +764,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Impossibile eliminare l'email di conferma." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Impossibile eliminare l'abbonamento." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Impossibile trovare un qualsiasi stato." @@ -683,29 +787,38 @@ msgstr "Impossibile ottenere un token di richiesta." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Impossibile inserire il codice di conferma." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Impossibile inserire un nuovo abbonamento." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Impossibile salvare il profilo." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Impossibile aggiornare l'utente per auto-abbonarsi." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Impossibile aggiornare il record dell'utente." @@ -721,42 +834,48 @@ msgstr "Impossibile aggiornare il record dell'utente." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Impossibile aggiornare l'utente." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Crea" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Crea un nuovo utente con questo soprannome." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Crea un nuovo account" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Creazione nuovo account per OpenID che ha già un utente." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Indirizzo Jabber/GTalk attualmente confermato." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Numero di telefono attualmente confermato per gli SMS." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Indirizzo email attualmente confermato." @@ -766,24 +885,28 @@ msgid "Currently" msgstr "In questo momento:" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Errore del DB nell'inserire un hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Errore del DB nell'inserire la risposta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Elimina messaggio" # per renderla 'asessuale' il più possibile... #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" @@ -791,11 +914,13 @@ msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Indirizzo email" @@ -805,39 +930,43 @@ msgid "Email Settings" msgstr "Impostazioni email" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Indirizzo email già esistente." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Conferma indirizzo email" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Indirizzo email, del tipo \"NomeUtente@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Indirizzi email" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Inserisci un soprannome o un indirizzo email." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Inserisci il codice che hai ricevuto sul tuo telefono." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Errore nell'autorizzare il token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Errore nel collegare l'utente a OpenID." @@ -848,39 +977,46 @@ msgstr "Errore nel connettere l'utente." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Errore nell'inserire l'immagine" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Errore nell'inserire il nuovo profilo" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Errore nell'inserire un profilo remoto" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Errore nel salvare la conferma dell'indirizzo." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Errore nel salvare il profilo remoto" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Errore nel salvare il profilo." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Errore nel salvare l'utente." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Errore nel salvare l'utente; non valido." @@ -889,6 +1025,9 @@ msgstr "Errore nel salvare l'utente; non valido." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Errore nell'impostare l'utente." @@ -899,6 +1038,7 @@ msgstr "Errore nell'aggiornare il profilo" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Errore nell'aggiornare il profilo remoto" @@ -908,33 +1048,36 @@ msgid "Error with confirmation code." msgstr "Errore con il codice di conferma." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Soprannome esistente" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Errore nell'aggiornare l'immagine." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed per gli amici di %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed per le risposte a %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed per l'etichetta %s" @@ -949,7 +1092,7 @@ msgstr "Ricerca contenuto dei messaggi" msgid "Find people on this site" msgstr "Ricerca persone in questo sito" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -962,6 +1105,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nome" @@ -970,23 +1118,33 @@ msgstr "Nome" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Nome troppo lungo (max 255 caratteri)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Aiuto" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Home" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Pagina web" @@ -994,22 +1152,28 @@ msgstr "Pagina web" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "L'URL della pagina web non è valido." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Voglio inviare i messaggi via email" # Non è il massimo (Messaggistica Istantanea), ma non lo è nemmeno in inglese, questo tipo di abbreviazioni sarebbe da evitare sempre... #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "MI" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Indirizzo di messaggistica istantanea" @@ -1019,7 +1183,7 @@ msgid "IM Settings" msgstr "Impostazioni messaggistica istantanea" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1027,7 +1191,7 @@ msgstr "" "Se hai già un account, esegui l'accesso col tuo nome utente e la tua " "password per connetterlo al tuo OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1035,7 +1199,7 @@ msgstr "" "Se vuoi aggiungere un OpenID al tuo account, inseriscilo nel riquadro " "sottostante e fai clic su \"Aggiungi\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1046,25 +1210,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Email di ricezione" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Indirizzo email di ricezione rimosso." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Vecchia password non corretta" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Nome utente o password non corretto." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1073,30 +1243,31 @@ msgstr "" "all'indirizzo email registrato nel tuo account." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "URL \"%s\" dell'immagine non valido" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Indirizzo email non valido: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Pagina web \"%s\" non valida" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "URL \"%s\" della licenza non valido" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Contenuto del messaggio non valido" @@ -1111,13 +1282,13 @@ msgid "Invalid notice url" msgstr "URL del messaggio non valido" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "URL \"%s\" del profilo non valido" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "URL del profilo non valido (formato errato)" @@ -1135,28 +1306,35 @@ msgstr "Dimensione non valida." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Nome utente o password non valido." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Inviti inviati" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Inviti inviati alle seguenti persone:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invita" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invita nuovi utenti" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1164,15 +1342,16 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" "Gestito dal software di micro-blog [StatusNet](http://status.net/), versione " -"%s, disponibile sotto licenza [GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +"%s, disponibile sotto licenza [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "ID Jabber già assegnato a un altro utente." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1183,12 +1362,14 @@ msgstr "" "di messaggistica o su GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Lingua" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "La lingua è troppo lunga (max 50 caratteri)." @@ -1197,7 +1378,15 @@ msgstr "La lingua è troppo lunga (max 50 caratteri)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Ubicazione" @@ -1206,7 +1395,12 @@ msgstr "Ubicazione" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Ubicazione troppo lunga (max 255 caratteri)." @@ -1215,18 +1409,22 @@ msgstr "Ubicazione troppo lunga (max 255 caratteri)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Accedi" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Accedi con un account [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1237,22 +1435,26 @@ msgstr "" "(%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%" "%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Esci" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nome completo, preferibilmente il tuo \"vero\" nome" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Password persa o dimenticata?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Crea un nuovo indirizzo email a cui inviare i messaggi, rimuove quello " @@ -1265,16 +1467,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Gestisci la ricezione delle email da %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membro dal" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Micro-blog di %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1286,42 +1490,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "I miei testi e file sono disponibili sotto " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nuovo" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nuovo indirizzo email per inviare messaggi a %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nuovo indirizzo email di ricezione aggiunto." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nuovo soprannome" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nuovo messaggio" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nuova password" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nuova password salvata con successo. Hai effettuato l'accesso." @@ -1331,7 +1543,13 @@ msgstr "Nuova password salvata con successo. Hai effettuato l'accesso." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Soprannome" @@ -1340,7 +1558,12 @@ msgstr "Soprannome" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Soprannome già in uso. Prova con un altro." @@ -1349,49 +1572,60 @@ msgstr "Soprannome già in uso. Prova con un altro." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Il soprannome deve essere composto solo da lettere minuscole e numeri, senza " "spazi." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Soprannome non consentito." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Soprannome dell'utente che vuoi seguire" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Soprannome o email" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "No" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Nessun ID di Jabber." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Nessuna richiesta di autorizzazione!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Nessun operatore selezionato." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Nessun codice inserito" @@ -1403,11 +1637,15 @@ msgstr "Nessun codice di conferma." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Nessun contenuto!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Nessun indirizzo email." @@ -1416,7 +1654,9 @@ msgid "No id." msgstr "Nessun ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Nessun indirizzo email di ricezione." @@ -1427,6 +1667,7 @@ msgstr "Nessun soprannome fornito dal server remoto." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Nessun soprannome." @@ -1434,12 +1675,14 @@ msgstr "Nessun soprannome." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Nessuna conferma da annullare." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Nessun numero di telefono." @@ -1449,7 +1692,8 @@ msgid "No profile URL returned by server." msgstr "Nessun URL di profilo restituito dal server." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Nessun indirizzo email registrato per quell'utente." @@ -1461,7 +1705,7 @@ msgstr "Nessuna richiesta trovata!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Nessun risultato" @@ -1472,12 +1716,16 @@ msgstr "Nessuna dimensione." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Nessuno stato trovato con quel ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Nessuno stato con quel ID trovato." @@ -1487,13 +1735,15 @@ msgid "No such OpenID." msgstr "Nessun tale OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Nessun tale documento." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Nessun tale messaggio." @@ -1531,12 +1781,22 @@ msgstr "Nessun tale abbonamento" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Nessun tale utente." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Nessun utente con quell'email o nome utente." @@ -1550,32 +1810,38 @@ msgid "Not a recovery code." msgstr "Non è un codice di ripristino." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Non è un utente registrato." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Non è un formato di dati supportato." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Non è un ID Jabber valido" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Non è un OpenID valido." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Non è un indirizzo email valido" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Non è un indirizzo email valido." @@ -1583,6 +1849,11 @@ msgstr "Non è un indirizzo email valido." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Non è un soprannome valido." @@ -1602,7 +1873,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Non è un URL di profilo valido (nessun documento YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Non è un'immagine o il file è danneggiato." @@ -1613,11 +1885,13 @@ msgstr "Non autorizzato." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Non aspettavo questa risposta!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Non trovato" @@ -1633,11 +1907,15 @@ msgstr "Non trovato" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Non connesso." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Non abbonato!" @@ -1654,39 +1932,44 @@ msgid "Notice feed for %s" msgstr "Feed dei messaggi per %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Il messaggio non ha un profilo" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Messaggi" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Messaggi etichettati con %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Vecchia password" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configurazione account OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Auto-invio OpenID" @@ -1694,29 +1977,34 @@ msgstr "Auto-invio OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Accesso OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Autenticazione OpenID annullata." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Autenticazione OpenID non riuscita: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Errore OpenID: %s" @@ -1732,11 +2020,12 @@ msgid "OpenID settings" msgstr "Impostazioni OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Puoi aggiungere un messaggio personale agli inviti." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Caricamento parziale." @@ -1746,34 +2035,46 @@ msgstr "Caricamento parziale." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Password" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "La password e la conferma non corrispondono." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "La password dev'essere lunga almeno 6 caratteri." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Richiesta password di ripristino" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Password salvata." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Le password non corrispondono." @@ -1793,14 +2094,17 @@ msgid "People search" msgstr "Ricerca persone" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personale" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Messaggio personale" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Numero di telefono, senza punteggiatura o spazi, con il prefisso" @@ -1814,7 +2118,7 @@ msgstr "" "messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Pubblica un messaggio quando il mio stato Jabber/GTalk cambia" @@ -1823,7 +2127,9 @@ msgstr "Pubblica un messaggio quando il mio stato Jabber/GTalk cambia" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferenze" @@ -1832,42 +2138,52 @@ msgstr "Preferenze" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Preferenze salvate." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Lingua preferita" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacy" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profilo" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL del profilo" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Impostazioni del profilo" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profilo sconosciuto" @@ -1877,17 +2193,19 @@ msgstr "Feed del flusso pubblico" # Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Attività pubblica" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Pubblica un MicroID per il mio indirizzo Jabber/GTalk" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Pubblica un MicroID per il mio indirizzo email" @@ -1898,12 +2216,14 @@ msgstr "Etichette recenti" # pulsante, indica un'azione quindi come gli altri: accedi, abbonati... #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recupera" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recupero password" @@ -1916,37 +2236,45 @@ msgstr "Codice di recupero per utente sconosciuto." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registra" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registrazione non consentita." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registrazione riuscita" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Rifiuta" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Ricordami" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Profilo remoto senza profilo corrispondente" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Abbonamento remoto" @@ -1960,6 +2288,9 @@ msgstr "Abbonamento remoto" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Rimuovi" @@ -1968,7 +2299,7 @@ msgstr "Rimuovi" msgid "Remove OpenID" msgstr "Rimuovi OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1977,34 +2308,41 @@ msgstr "" "vuoi rimuoverlo, prima aggiungi un altro OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Risposte" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Risposte a %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Reimposta" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Reimposta password" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Numero di telefono per SMS" @@ -2013,18 +2351,19 @@ msgstr "Numero di telefono per SMS" msgid "SMS Settings" msgstr "Impostazioni SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Conferma SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Stessa password di sopra" # Femminile, è la password #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Stessa password di sopra. Richiesta." @@ -2037,12 +2376,21 @@ msgstr "Stessa password di sopra. Richiesta." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Salva" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Ricerca" @@ -2052,7 +2400,7 @@ msgid "Search Stream Feed" msgstr "Ricerca nel flusso dei feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2061,7 +2409,7 @@ msgstr "" "Ricerca tra i messaggi su %%site.name%% in base al contenuto. Separa i " "termini di ricerca con degli spazi; lunghezza minima 3 caratteri." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2071,33 +2419,38 @@ msgstr "" "i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Seleziona un operatore" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Invia" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Invia le email a questo indirizzo per scrivere nuovi messaggi." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Inviami avvisi di nuovi abbonamenti via email" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Inviami le notifiche via Jabber/GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2106,15 +2459,18 @@ msgstr "" "bollette da parte del mio operatore" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Inviami le risposte delle persone a cui sono abbonato via Jabber/GTalk" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Impostazioni" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Impostazioni salvate." @@ -2134,27 +2490,32 @@ msgid "Something weird happened." msgstr "È successo qualcosa di strano." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Email di ricezione non consentita." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Quella non è la tua email di ricezione." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Sorgenti" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistiche" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "OpenID memorizzato non trovato." @@ -2162,24 +2523,28 @@ msgstr "OpenID memorizzato non trovato." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Abbonati" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abbonati" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Abbonamento autorizzato" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Abbonamento rifiutato" @@ -2187,28 +2552,35 @@ msgstr "Abbonamento rifiutato" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abbonamenti" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Errore di sistema nel caricare il file." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Etichette" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Testo" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Ricerca testo" @@ -2228,6 +2600,7 @@ msgid "That confirmation code is not for you!" msgstr "Quel codice di conferma non è per te!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Quell'indirizzo email appartiene già a un altro utente." @@ -2237,66 +2610,76 @@ msgid "That file is too big." msgstr "Quel file è troppo grande." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Quello è già il tuo ID di Jabber." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Quello è già il tuo indirizzo email." # previous suggestion missed the dot #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Quello è già il tuo numero di telefono." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Quello non è il tuo ID di Jabber." # previous suggestion missed the dot #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Quello non è il tuo indirizzo email." # previous suggestion missed the dot #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Quello non è il tuo numero di telefono." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Quello è l'indirizzo di messaggistica sbagliato." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Quello è il numero di conferma errato." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Quel numero di telefono appartiene già a un altro utente." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Troppo lungo. Lunghezza massima 140 caratteri." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Troppo lungo. Lunghezza massima 255 caratteri." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "L'indirizzo \"%s\" è stato confermato per il tuo account." @@ -2305,11 +2688,14 @@ msgstr "L'indirizzo \"%s\" è stato confermato per il tuo account." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "L'indirizzo è stato rimosso." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2319,7 +2705,8 @@ msgstr "" "richiamo. Controlla le istruzioni del sito per i dettagli su come " "autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2330,34 +2717,39 @@ msgstr "" "rifiutare completamente l'abbonamento." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Queste sono le persone che seguono %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Queste sono le persone che ti seguono." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Queste sono le persone seguite da %s." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Queste sono le persone che stai seguendo." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Queste persone sono già utenti e sei stato automaticamente abbonato a loro:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Questo codice di conferma è scaduto. Ricomincia da capo." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2366,7 +2758,7 @@ msgstr "" "sul pulsante per inviarlo al tuo servizio OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2381,6 +2773,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Questo metodo richiede POST o DELETE." @@ -2389,25 +2784,37 @@ msgstr "Questo metodo richiede POST o DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Questo metodo richiede POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Questa pagina non è disponibile in un tipo di supporto che tu accetti" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Fuso orario" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Fuso orario non selezionato" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2420,18 +2827,21 @@ msgstr "" "tuo profilo qui di seguito." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Devono essere forniti due ID utente o nominativi." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL della tua pagina web, blog o profilo su un altro sito" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL del tuo profilo su un altro servizio di micro-blog compatibile" @@ -2443,15 +2853,22 @@ msgstr "URL del tuo profilo su un altro servizio di micro-blog compatibile" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Invio del modulo inaspettato." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Ripristino della password inaspettato." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Azione sconosciuta" @@ -2483,38 +2900,47 @@ msgstr "Disabbonati" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Versione OMB non supportata" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Formato file immagine non supportato." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Aggiornamenti via SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Aggiornamenti via messaggistica istantanea (MI)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Aggiornamenti da %1$s e amici su %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aggiornamenti da %1$s su %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Carica" @@ -2535,6 +2961,7 @@ msgid "Upload a new profile image" msgstr "Carica una nuova immagine per il profilo" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2543,7 +2970,9 @@ msgstr "" # Femminile, è l'email #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Usata solo per aggiornamenti, annunci e recupero password" @@ -2567,11 +2996,16 @@ msgstr "L'utente che intendi seguire non esiste." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "L'utente non ha un profilo." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Soprannome dell'utente" @@ -2580,29 +3014,33 @@ msgid "User not found." msgstr "Utente non trovato." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "In che fuso orario risiedi solitamente?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Cosa succede %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Dove ti trovi, tipo \"città, regione, stato\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Tipo di immagine errata per \"%s\"" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Dimensione dell'immagine sbagliata a \"%s\"" @@ -2611,7 +3049,9 @@ msgstr "Dimensione dell'immagine sbagliata a \"%s\"" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Sì" @@ -2634,11 +3074,12 @@ msgid "You are already logged in!" msgstr "Hai già effettuato l'accesso!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Sei già abbonato a questi utenti:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Non sei amico dell'utente specificato." @@ -2656,13 +3097,14 @@ msgstr "Puoi creare un nuovo account per iniziare a inviare messaggi." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Puoi ricevere messaggi SMS attraverso l'email da %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "Puoi rimuovere un OpenID dal tuo account facendo clic su \"Rimuovi\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2672,7 +3114,8 @@ msgstr "" "istantanea](%%doc.im%%) Jabber/GTalk. Configura il tuo indirizzo e le " "impostazioni qui di seguito." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2683,21 +3126,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Puoi usare l'abbonamento locale!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Non puoi registrarti se non accetti la licenza." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Non hai inviato quel profilo" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2719,16 +3164,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Non puoi eliminare lo stato di un altro utente." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Devi eseguire l'accesso per invitare altri utenti a usare %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2737,21 +3185,22 @@ msgstr "" "registreranno sul sito. Grazie per l'aiuto ad accrescere la comunità!" # per la par condicio ho sostituito 'sei stato identificato' -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Sei ora identificato/a. Inserisci una nuova password qui di seguito. " #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Il tuo URL OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "Il tuo soprannome su questo server o il tuo indirizzo email registrato." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2760,47 +3209,57 @@ msgstr "" "[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso " "account. Gestisci i tuoi OpenID associati da qui." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "pochi secondi fa" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "circa %d giorni fa" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "circa %d ore fa" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "circa %d minuti fa" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "circa %d mesi fa" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "circa un giorno fa" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "circa un minuto fa" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "circa un mese fa" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "circa un anno fa" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "circa un'ora fa" @@ -2822,13 +3281,15 @@ msgid "reply" msgstr "rispondi" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "stessa password di sopra" # wrong capitalization in previous suggestion #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tipo di file non supportato" @@ -2849,6 +3310,26 @@ msgstr "« Successivi" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "C'è stato un problema con il tuo token di sessione. Prova di nuovo." @@ -2857,6 +3338,7 @@ msgid "This notice is not a favorite!" msgstr "Questo messaggio non è un preferito!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Impossibile eliminare un preferito." @@ -2864,23 +3346,29 @@ msgstr "Impossibile eliminare un preferito." msgid "Favor" msgstr "Preferito" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Inviami un'email quando qualcuno aggiunge un mio messaggio ai preferiti" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Questo messaggio è già un preferito!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Impossibile creare preferito." @@ -2890,11 +3378,13 @@ msgstr "Non preferito" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Messaggi preferiti di %s" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed dei messaggi preferiti di %s" @@ -2938,33 +3428,44 @@ msgid "Login with your username and password. " msgstr "Accedi con il tuo nome utente e password. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Troppo lungo. Il massimo per un messaggio è 140 caratteri." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Nessun destinatario specificato." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Non puoi inviare un messaggio a questo utente." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Nessun tale utente" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nuovo messaggio" @@ -3020,6 +3521,11 @@ msgstr "Qui puoi aggiornare il tuo profilo personale " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Utente senza profilo corrispondente" @@ -3048,6 +3554,8 @@ msgid "New password successfully saved. " msgstr "Nuova password salvata con successo. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "La password deve essere di 6 o più caratteri." @@ -3069,12 +3577,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Per abbonarti, puoi [eseguire l'accesso](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed dei preferiti di %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Impossibile recuperare i messaggi preferiti." @@ -3082,7 +3593,7 @@ msgstr "Impossibile recuperare i messaggi preferiti." msgid "No such message." msgstr "Nessun tale messaggio." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Solo mittente e destinatario possono leggere questo messaggio." @@ -3106,51 +3617,70 @@ msgid "Mobile carrier for your phone. " msgstr "Operatore mobile del tuo telefono. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Messaggi diretti a %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Tutti i messaggi diretti inviati a %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Messaggi diretti inviati" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Tutti i messaggi diretti inviati da %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Nessun testo nel messaggio!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Utente destinatario non trovato." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "Non puoi inviare messaggi diretti a utenti che non sono amici tuoi." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Preferiti da %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s aggiornamenti preferiti da %s / %s" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s ha aggiunto il tuo messaggio tra i suoi preferiti" @@ -3173,14 +3703,17 @@ msgstr "" "su Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Impostazioni Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Account Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Account Twitter attualmente verificato." @@ -3189,6 +3722,7 @@ msgid "Twitter Username" msgstr "Nome utente di Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Niente spazi, grazie." @@ -3197,18 +3731,22 @@ msgid "Twitter Password" msgstr "Password di Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Invia automaticamente i miei messaggi a Twitter" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Invia le risposte \"@\" locali a Twitter" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Abbonami ai miei amici di Twitter" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3217,6 +3755,7 @@ msgstr "" "trattini bassi (_) (max 15 caratteri)." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Impossibile verificare le tue credenziali di Twitter!" @@ -3227,33 +3766,43 @@ msgstr "Impossibile ottenere informazioni sull'account \"%s\" da Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Impossibile salvare le tue impostazioni di Twitter!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Impostazioni di Twitter salvate." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Quello non è il tuo account Twitter." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Impossibile rimuovere l'utente Twitter." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Account Twitter rimosso." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Impossibile salvare le preferenze di Twitter." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Preferenze di Twitter salvate." @@ -3270,18 +3819,19 @@ msgid "The subscription has been rejected, but no " msgstr "L'abbonamento è stato rifiutato, ma non " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Risultati comando" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Comando completato" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Comando non riuscito" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Questo comando non è ancora implementato" @@ -3291,89 +3841,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Abbonamenti: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "L'utente non ha un ultimo messaggio" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Messaggio indicato come preferito." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Ubicazione: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Pagina web: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Informazioni: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Messaggio diretto a %s inviato" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Errore nell'inviare il messaggio diretto." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Specifica il nome dell'utente a cui abbonarti" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Abbonato a %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Abbonamento a %s annullato" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Comando non ancora implementato." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notifiche disattivate." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Impossibile disattivare le notifiche." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notifiche attivate." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Impossibile attivare le notifiche." @@ -3381,11 +3953,11 @@ msgstr "Impossibile attivare le notifiche." msgid "Commands:\n" msgstr "Comandi:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Impossibile inserire messaggio." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Impossibile aggiornare il messaggio con il nuovo URI." @@ -3402,7 +3974,7 @@ msgstr "" "Hai un nuovo indirizzo di ricezione su %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Nuovo messaggio privato da %s" @@ -3416,7 +3988,7 @@ msgstr "" "%1$s (%2$s) ti ha inviato un messaggio privato:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Solo l'utente può leggere la propria casella di posta." @@ -3425,31 +3997,39 @@ msgid "This form should automatically submit itself. " msgstr "Questo modulo dovrebbe inviarsi automaticamente. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Preferiti" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Messaggi preferiti di %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Utente" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "In arrivo" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "I tuoi messaggi in arrivo" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Inviati" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "I tuoi messaggi inviati" @@ -3462,14 +4042,19 @@ msgid "Twitter integration options" msgstr "Opzioni di integrazione Twitter" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "A" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Impossibile analizzare il messaggio." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s e amici, pagina %d" @@ -3479,21 +4064,31 @@ msgid "You can upload your personal avatar." msgstr "Qui puoi caricare la tua immagine personale." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Impostazioni immagine" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Originale" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Anteprima" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Ritaglia" @@ -3510,35 +4105,44 @@ msgid "There was a problem with your session token. " msgstr "C'è stato un problema con il tuo token di sessione. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Scegli un'area quadrata per la tua immagine personale" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Perso il nostro file di dati." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Perso il nostro file." # wrong capitalization in previous suggestion #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Tipo di file sconosciuto" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Nessun profilo specificato." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Nessun profilo con quel ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Blocca utente" @@ -3546,11 +4150,11 @@ msgstr "Blocca utente" msgid "Are you sure you want to block this user? " msgstr "Vuoi veramente bloccare questo utente? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Hai già bloccato questo utente." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Salvataggio delle informazioni per il blocco non riuscito." @@ -3567,38 +4171,56 @@ msgstr "Stai per eliminare definitivamente un messaggio. " msgid "Add to favorites" msgstr "Aggiungi ai preferiti" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Modifica il gruppo %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "La casella della posta in arrivo deve essere abilitata per funzionare" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Devi eseguire l'accesso per creare un gruppo." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Nessun soprannome" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Nessun tale gruppo" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Devi essere amministratore per modificare il gruppo" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Usa questo modulo per modificare il gruppo." @@ -3607,14 +4229,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Il soprannome deve essere composto solo da lettere minuscole " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "La descrizione è troppo lunga (max 140 caratteri)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Impossibile aggiornare il gruppo." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Opzioni salvate." @@ -3632,7 +4255,8 @@ msgid "Send me email when someone " msgstr "Inviami un'email quando qualcuno " # per non usare una traduzione troppo fedele e forse un po' banale (gomitata, spintarella), facciamo come abbiamo fatto con Pidgin in Ubuntu, trasformando 'nudge' in un richiamo, anche perché è quello che realmente fa. -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Consenti ai miei amici di richiamarmi e inviami un'email" @@ -3646,13 +4270,12 @@ msgid "A confirmation code was sent to the email address you added. " msgstr "" "Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Errore del server: impossibile recuperare l'utente." #: actions/facebookhome.php:196 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "If you would like the %s app to automatically update " msgstr "Se vuoi che l'applicazione %s aggiorni automaticamente " @@ -3661,51 +4284,66 @@ msgstr "Se vuoi che l'applicazione %s aggiorni automaticamente " msgid "Allow %s to update my Facebook status" msgstr "Consenti a %s di aggiornare il mio stato su Facebook" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Salta" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Nessun contenuto!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginazione" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Successivi" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Precedenti" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Grazie per aver invitato i tuoi amici a usare %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Gli inviti sono stati inviati ai seguenti utenti:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Hai un invito per %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Invita i tuoi amici a usare %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Amici che già usano %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Invia" @@ -3740,8 +4378,7 @@ msgid "A string to prefix notices with." msgstr "Una stringa con cui iniziare i messaggi." #: actions/facebooksettings.php:124 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "If you would like %s to automatically update " msgstr "Se vuoi che %s aggiorni automaticamente " @@ -3750,13 +4387,15 @@ msgid "Sync preferences" msgstr "Preferenze di sincronizzazione" # da chiarire dove e come appaia -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Rimuovi preferito" # prova per 'famosi', al massimo si cambia #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Messaggi famosi" @@ -3771,7 +4410,8 @@ msgid "The most popular notices on the site right now." msgstr "Ecco i messaggi più famosi all'interno del sito." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Utenti in evidenza" @@ -3785,15 +4425,17 @@ msgstr "Utenti in evidenza, pagina %d" msgid "A selection of some of the great users on %s" msgstr "Una selezione dei migliori utenti su %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Quell'utente ti ha bloccato dall'abbonarti." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Nessun ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo del gruppo" @@ -3801,11 +4443,13 @@ msgstr "Logo del gruppo" msgid "You can upload a logo image for your group." msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo aggiornato." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Errore nell'aggiornare il logo." @@ -3824,7 +4468,8 @@ msgid "A list of the users in this group." msgstr "Un elenco degli utenti in questo gruppo." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppi" @@ -3834,12 +4479,12 @@ msgid "Groups, page %d" msgstr "Gruppi, pagina %d" #: actions/groups.php:90 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "I gruppi di %%%%site.name%%%% ti consentono di cercare e parlare con " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Crea un nuovo gruppo" @@ -3849,7 +4494,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Ricerca gruppi su %%site.name%% per nome, ubicazione o descrizione. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Ricerca gruppi" @@ -3859,8 +4504,7 @@ msgid "You can send and receive notices through " msgstr "Puoi inviare e ricevere messaggi attraverso " #: actions/imsettings.php:120 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "Jabber or GTalk address, " msgstr "Indirizzo Jabber o GTalk, " @@ -3873,20 +4517,20 @@ msgstr "Inviami le risposte via Jabber/GTalk " msgid "A confirmation code was sent " msgstr "Un codice di conferma è stato inviato " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Devi eseguire l'accesso per iscriverti a un gruppo." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Sei già un membro di quel gruppo" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Impossibile iscrivere l'utente %s al gruppo %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s si è iscritto al gruppo %s" @@ -3897,15 +4541,18 @@ msgstr "" "Le caselle di posta in arrivo devono essere abilitate per i gruppi per poter " "funzionare." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Devi eseguire l'accesso per lasciare un gruppo." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Nessuna tale gruppo." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Non sei un membro di quel gruppo." @@ -3913,21 +4560,25 @@ msgstr "Non sei un membro di quel gruppo." msgid "You may not leave a group while you are its administrator." msgstr "Non puoi lasciare un gruppo fintantoché ne sei amministratore." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Impossibile trovare il record della membership." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Impossibile rimuovere l'utente %s dal gruppo %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s ha lasciato il gruppo %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Accedi al sito" @@ -3939,15 +4590,17 @@ msgstr "Nessuno stato corrente" msgid "New group" msgstr "Nuovo gruppo" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Usa questo modulo per creare un nuovo gruppo." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Impossibile creare il gruppo." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Impossibile impostare la membership al gruppo." @@ -3959,11 +4612,14 @@ msgstr "È troppo lungo. " msgid "Don't send a message to yourself; " msgstr "Non inviare un messaggio a te stesso; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Messaggio inviato" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Errore di Ajax" @@ -3982,7 +4638,7 @@ msgstr "Richiamo inviato" msgid "Nudge sent!" msgstr "Richiamo inviato!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "Accesso OpenID" @@ -4009,12 +4665,14 @@ msgid "Service" msgstr "Servizio" # o andare con 'accorciamento'? auto-accorciamento? -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Servizio di autoriduzione da usare." # in caso, accorciamento anche qui. -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Il servizio di riduzione degli URL è troppo lungo (max 50 caratteri)" @@ -4022,16 +4680,17 @@ msgstr "Il servizio di riduzione degli URL è troppo lungo (max 50 caratteri)" msgid "Change your password." msgstr "Modifica la tua password." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Cambio password" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Non è un'etichetta valida di persona: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Utenti auto-etichettati con %s - pagina %d" @@ -4041,11 +4700,12 @@ msgstr "Utenti auto-etichettati con %s - pagina %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Questi sono gli utenti che si sono etichettati con \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Informazioni sul profilo" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4057,21 +4717,26 @@ msgid "Automatically subscribe to whoever " msgstr "Abbonami automaticamente a chi " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Etichetta non valida: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Impossibile salvare le etichette." # Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Attività pubblica, pagina %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Impossibile recuperare l'attività pubblica." @@ -4081,24 +4746,25 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Questo è %%site.name%%, un servizio di [micro-" -"blog](http://it.wikipedia.org/wiki/Microblogging) " +"Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/" +"wiki/Microblogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" msgstr "Insieme delle etichette" #: actions/publictagcloud.php:63 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "These are most popular recent tags on %s " msgstr "Queste sono le etichette più usate e recenti su %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Insieme etichette" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Spiacenti, solo le persone invitate possono registrarsi." @@ -4158,7 +4824,8 @@ msgstr "(Dovresti ricevere un messaggio email " msgid "That's a local profile! Login to subscribe." msgstr "Quello è un profilo locale! Accedi per abbonarti." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Risposte a %s, pagina %d" @@ -4168,51 +4835,72 @@ msgstr "Risposte a %s, pagina %d" msgid "%s favorite notices, page %d" msgstr "Messaggi preferiti di %s, pagina %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Gruppi di %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Gruppi di %s, pagina %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Profilo del gruppo" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Nota" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Azioni dei gruppi" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Feed dei messaggi per il gruppo %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Membri" # femminile, è relativo alle etichette #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(nessuno)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Tutti i membri" @@ -4222,15 +4910,15 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-" -"blog](http://it.wikipedia.org/wiki/Microblogging) " +"**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" +"it.wikipedia.org/wiki/Microblogging) " #: actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient " msgstr "Solo mittente e destinatario " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, pagina %d" @@ -4241,30 +4929,37 @@ msgid "'s profile" msgstr "Profilo" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Profilo utente" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Fotografia" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Azioni utente" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Invia un messaggio diretto a questo utente" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Messaggio" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Tutti gli abbonati" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Tutti i gruppi" @@ -4274,8 +4969,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-" -"blog](http://it.wikipedia.org/wiki/Microblogging) " +"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" +"(http://it.wikipedia.org/wiki/Microblogging) " #: actions/smssettings.php:128 #, fuzzy @@ -4291,7 +4986,7 @@ msgstr "Inviami le notifiche via SMS; " msgid "A confirmation code was sent to the phone number you added. " msgstr "Un codice di conferma è stato inviato al numero di telefono aggiunto. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Operatore telefonico" @@ -4351,16 +5046,17 @@ msgstr "Queste sono le persone i cui messaggi " msgid "These are the people whose " msgstr "Queste sono le persone i cui " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Messaggi etichettati con %s, pagina %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Messaggi etichettati con \"%s\", i più recenti" @@ -4382,7 +5078,7 @@ msgstr "Etichetta %s" msgid "Tag user" msgstr "Etichette utente" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4394,17 +5090,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "C'è stato un problema con il tuo token di sessione." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Puoi etichettare sole le persone a cui sei abbonato o che sono abbonate a te." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Impossibile salvare le etichette." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Usa questo modulo per aggiungere etichette ai tuoi abbonati o ai tuoi " @@ -4414,20 +5110,23 @@ msgstr "" msgid "No such tag." msgstr "Nessuna tale etichetta." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Micro-blog etichettati con %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Blocco dell'utente non riuscito." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Sblocco dell'utente non riuscito." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Non trovato" @@ -4436,16 +5135,17 @@ msgstr "Non trovato" msgid "Add your Twitter account to automatically send " msgstr "Aggiungi il tuo account Twitter per inviare automaticamente " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Nome utente di Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Password di Twitter" # elenca quali sono i propri amici su twitter -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Amici su Twitter" @@ -4459,146 +5159,155 @@ msgstr "Il nome utente deve avere solo numeri, " msgid "Unable to retrieve account information " msgstr "Impossibile recuperare informazioni sull'account " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Errore nel rimuovere il blocco." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Nessun ID di profilo nella richiesta." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Nessun profilo con quel ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Annullato abbonamento" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Gruppi di %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Gruppi di %s, pagina %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Problema nel salvare il messaggio. Utente sconosciuto." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " "qualche minuto." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Ti è proibito inviare messaggi su questo sito." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Carica un'immagine" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Altro" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Altre opzioni" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Pagina senza nome" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Esplorazione sito primaria" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Profilo personale e attività degli amici" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Ricerca persone o per testo" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Account" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Modifica la tua email, immagine, password o il tuo profilo" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Connettiti con MI, SMS e Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Sconnettiti dal sito" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Accedi al sito" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Crea un account" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Accedi con OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Aiutami!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Messaggio del sito" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Viste locali" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Pagina messaggio" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Esplorazione secondaria del sito" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Licenza del software statusnet" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Tutto " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "licenza." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Blocca questo utente" # azione -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Blocca" @@ -4613,12 +5322,15 @@ msgid "To use the %s Facebook Application you need to login " msgstr "" "Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr " un nuovo account." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Pubblicato" @@ -4638,32 +5350,37 @@ msgstr "Filtra etichette" msgid "All" msgstr "Tutto" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Etichetta" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Scegli un'etichetta per ridurre l'elenco" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Vai" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL della pagina web o del blog per il gruppo o l'argomento" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Descrizione" # per renderla 'asessuale' il più possibile... -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Dove è situato il gruppo, tipo \"città, regione, stato\"" @@ -4673,20 +5390,20 @@ msgid "Group" msgstr "Gruppo" # potrebbe essere lunga... -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Amministra" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Modifica le proprietà del gruppo %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Aggiungi o modifica il logo di %s" @@ -4718,11 +5435,11 @@ msgstr "Iscriviti" msgid "Leave" msgstr "Lascia" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Accedi con nome utente e password" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Iscriviti per un nuovo account" @@ -4744,17 +5461,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s sta ora seguendo " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Ubicazione: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Pagina web: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4763,7 +5480,7 @@ msgstr "" "Biografia: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s ti ha richiamato" @@ -4779,39 +5496,47 @@ msgid "%1$s just added your notice from %2$s" msgstr "%1$s ha appena aggiunto il tuo messaggio da %2$s" # è quello che si vede come descrizione da dove si è inviato il messaggio. Mettere 'da' non suona bene ('da web', 'da api'...), 'via' mi pare la soluzione migliore ('via web', 'via api', 'via Twhirl'...). -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Da" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Invia un messaggio diretto" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Invia un messaggio" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Caratteri disponibili" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "in risposta a" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Rispondi a questo messaggio" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Rispondi" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Elimina questo messaggio" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Elimina" @@ -4833,28 +5558,30 @@ msgid "Tags in %s's notices" msgstr "Etichette nei messaggi di %s" # femminile, è relativo alle etichette -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(nessuna)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Pubblico" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Gruppi dell'utente" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Etichette recenti" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "In evidenza" # è una prova, è il nome di una scheda, al massimo si cambia, però popolari mi pare troppo banale. -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Famosi" @@ -4870,31 +5597,33 @@ msgstr "Ricerca gruppi in questo sito" msgid "Untitled section" msgstr "Sezione senza nome" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Persone a cui %s è abbonato" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Persone abbonate a %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Il gruppo %s è membro di" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Invita amici e colleghi a seguirti su %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "L'utente ti ha bloccato." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Abbonati a questo utente" @@ -4907,11 +5636,12 @@ msgid "Top posters" msgstr "Chi scrive più messaggi" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Sblocca questo utente" # azione -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Sblocca" @@ -4919,6 +5649,2074 @@ msgstr "Sblocca" msgid "Unsubscribe from this user" msgstr "Annulla l'abbonamento da questo utente" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed per gli amici di %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed per gli amici di %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed per gli amici di %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s e amici" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Qui puoi caricare la tua immagine personale." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Immagine aggiornata." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà " +"possibile recuperarlo." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "C'è stato un problema con il tuo token di sessione. Prova di nuovo." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Scegli un'area quadrata per la tua immagine personale" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Micro-blog di %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa " +"i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Errore nell'inviare il messaggio diretto." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Ricerca \"%s\" nel flusso" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Per motivi di sicurezza è necessario reinserire il proprio nome utente e la " +"propria password prima di modificare le impostazioni." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed del flusso pubblico" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed del flusso pubblico" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed del flusso pubblico" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" a eccezione di questi dati personali: password, indirizzo email, indirizzo " +"messaggistica istantanea, numero di telefono." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Crea" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Profilo del gruppo" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Profilo" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed dei messaggi per %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed dei messaggi per %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed dei messaggi per %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Casella posta inviata di %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Immagine" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Impostazioni del profilo" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Un codice di conferma è stato inviato al numero di telefono che hai " +"aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) " +"per il codice e le istruzioni su come usarlo." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Nessun tale utente" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi " +"su Twitter, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Impossibile ottenere informazioni sull'account \"%s\" da Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " +"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Ricerca persone o per testo" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " +"qualche minuto." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Connettiti con MI, SMS e Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Richiama" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s sta ora seguendo i tuoi messaggi su %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordiali saluti,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Ricerca" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Nessun tale documento." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Un elenco degli utenti in questo gruppo." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Un elenco degli utenti in questo gruppo." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Profilo utente" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s e amici, pagina %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Un elenco degli utenti in questo gruppo." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Sblocco dell'utente non riuscito." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Codice di conferma" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Impossibile eliminare questo messaggio." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etichetta non valida: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Soprannome già in uso. Prova con un altro." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Impossibile creare preferito." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nuovo messaggio" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nuovo messaggio" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Non è un soprannome valido." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Nessun profilo specificato." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "L'utente ti ha bloccato." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Non sei un membro di quel gruppo." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Blocca utente" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Devi eseguire l'accesso per creare un gruppo." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Gruppi" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Impossibile aggiornare l'utente." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Impossibile salvare le tue impostazioni di Twitter!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Preferenze di sincronizzazione salvate." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Devi essere amministratore per modificare il gruppo" + +# potrebbe essere lunga... +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Amministra" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Nessun risultato" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "L'utente ti ha bloccato." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Messaggio" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Impossibile salvare il profilo." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso " +"account. Gestisci i tuoi OpenID associati da qui." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Impostazioni del profilo" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/" +"wiki/Microblogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova " +"per email all'indirizzo indicato nel tuo profilo." + +# per la par condicio ho sostituito 'sei stato identificato' +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Sei ora identificato/a. Inserisci una nuova password qui di seguito. " + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Richiesta password di ripristino" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Errore con il codice di conferma." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Abbonati a questo utente" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Messaggi preferiti di %s, pagina %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Feed dei messaggi per il gruppo %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Feed dei messaggi per il gruppo %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Feed dei messaggi per il gruppo %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" +"it.wikipedia.org/wiki/Microblogging) " + +# potrebbe essere lunga... +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Amministra" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Non un utente locale." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Messaggi etichettati con %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Feed dei messaggi per il gruppo %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" +"(http://it.wikipedia.org/wiki/Microblogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s sta ora seguendo " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed dei messaggi per %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed dei messaggi per %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Questo messaggio è già un preferito!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Questo messaggio non è un preferito!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Impossibile recuperare l'attività pubblica." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Nessun destinatario specificato." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Impossibile trovare un qualsiasi stato." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Aggiornamenti in risposta a %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Aggiornamenti da %1$s su %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "licenza." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Abbonamenti di %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Impostazioni del profilo" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Non sei un membro di quel gruppo." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problema nel salvare il messaggio." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Messaggio a %1$s su %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Profilo utente" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profilo" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Carica" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Modifica la tua password" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connetti" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Ricerca" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Elenco" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +# azione +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Blocca" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Blocca utente" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Aggiungi o modifica il logo di %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Nessun contenuto!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Utente" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Ricerca" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "L'URL della pagina web non è valido." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Nessuna tale etichetta." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Messaggi diretti a %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Troppo lungo. Il massimo per un messaggio è 140 caratteri." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Impossibile seguire l'utente: utente non trovato." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "La descrizione è troppo lunga (max 140 caratteri)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Sei già un membro di quel gruppo" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Impossibile iscrivere l'utente %s al gruppo %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Non sei un membro di quel gruppo." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Impossibile rimuovere l'utente %s dal gruppo %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Gruppi di %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Il gruppo %s è membro di" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Azioni dei gruppi" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Troppo lungo. Lunghezza massima 140 caratteri." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato file immagine non supportato." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Fotografia" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "La descrizione è troppo lunga (max 140 caratteri)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Aggiornamenti da %1$s su %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "L'utente che intendi seguire non esiste." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Non autorizzato." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "" +"Impossibile convertire le credenziali di richiesta in credenziali di accesso." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versione del protocollo OMB sconosciuta." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Nessun tale messaggio." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Perso il nostro file." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Aggiornamenti da %1$s su %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Questa pagina non è disponibile in un " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Accedi con nome utente e password. Non hai ancora un nome utente? [Registra]" +"(%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%" +"%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +# per renderla 'asessuale' il più possibile... +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" + +# per renderla 'asessuale' il più possibile... +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Descrivi te e i tuoi " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "La biografia è troppo lunga (max 140 caratteri)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Non è un URL di profilo valido (nessun documento YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Quello è un profilo locale! Accedi per abbonarti." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Impossibile ottenere un token di richiesta." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed dei messaggi per il gruppo %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Messaggio a %1$s su %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed dei preferiti di %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed dei preferiti di %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed dei preferiti di %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Gruppi di %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Messaggio inviato" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Questa pagina non è disponibile in un " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed dei messaggi per %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " +"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " +"richiamo. Controlla le istruzioni del sito per i dettagli su come " +"autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " +"richiamo. Controlla con le istruzioni del sito per i dettagli su come " +"rifiutare completamente l'abbonamento." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Impossibile leggere l'URL \"%s\" dell'immagine" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo di immagine errata per \"%s\"" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Impossibile redirigere al server: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licenza del software statusnet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Impossibile aggiornare l'utente con l'indirizzo email confermato." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Richiamo inviato" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Rispondi a questo messaggio" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problema nel salvare il messaggio." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Nessun codice di conferma." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Accedi al sito" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Seleziona un operatore" + +# per renderla 'asessuale' il più possibile... +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" + +# per renderla 'asessuale' il più possibile... +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed dei messaggi per %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s ha aggiunto il tuo messaggio tra i suoi preferiti" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +# è quello che si vede come descrizione da dove si è inviato il messaggio. Mettere 'da' non suona bene ('da web', 'da api'...), 'via' mi pare la soluzione migliore ('via web', 'via api', 'via Twhirl'...). +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " via " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Impossibile eliminare un preferito." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Elimina messaggio" + #~ msgid "Code not yet ready." #~ msgstr "Codice non ancora implementato." @@ -4941,9 +7739,6 @@ msgstr "Annulla l'abbonamento da questo utente" #~ msgid "Tag a person" #~ msgstr "Etichetta una persona" -#~ msgid "List" -#~ msgstr "Elenco" - #~ msgid "Icons" #~ msgstr "Icone" diff --git a/locale/ja/LC_MESSAGES/statusnet.mo b/locale/ja/LC_MESSAGES/statusnet.mo index 7026035cc0cc60133a71c238eb52ba6e6c2226ed..0226253b0086fc8ec5eeb6829b9154ee47b03d28 100644 GIT binary patch delta 18864 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 G_WuB}jL7`} delta 11901 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 Zp2q`I*o6JE!KB|gV;\n" "Language-Team: LANGUAGE \n" @@ -24,14 +24,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "\"%s\" のストリームを検索" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" @@ -42,17 +42,19 @@ msgid " from " msgstr "から" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -84,6 +86,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s は %2$s であなたの通知を聞いています。" @@ -106,25 +109,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$ のステータス %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s パブリックストリーム" @@ -134,40 +140,55 @@ msgstr "%s パブリックストリーム" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s & ともだち" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s パブリックタイムライン" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s ステータス" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s タイムライン" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -176,7 +197,8 @@ msgstr "" "**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ" "イクロブロギングサービスです。 " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** はマイクロブロギングサービスです。" @@ -188,30 +210,35 @@ msgstr "コントリビューターはニックネームかフルネームで記 #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1~64字以内で、小文字アルファベット、数字、スペース。(句読点を除く)" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1~64字以内で、小文字アルファベット、数字、スペース(句読点を除く)が必須です" +msgstr "" +"1~64字以内で、小文字アルファベット、数字、スペース(句読点を除く)が必須です" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6文字以上" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6文字以上。お忘れなく!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6文字以上が必須です。" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -221,6 +248,7 @@ msgstr "" "sを承認して下さい。" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -250,7 +278,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -273,16 +328,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "About" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "承認" @@ -293,6 +355,9 @@ msgstr "承認" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "追加" @@ -310,27 +375,29 @@ msgstr "OpenIDを追加または削除" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "住所" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "全てのサブスクリプション" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%sの全てのサブスクリプション" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "\"%s\" にヒットするすべてのアップデート" @@ -340,30 +407,37 @@ msgstr "\"%s\" にヒットするすべてのアップデート" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "既にログインしています。" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "既に購読しています。" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "購読を許可" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "将来的には非共用PCでの自動ログイン" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -371,15 +445,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "アバター" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "アバターが更新されました。" #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -389,13 +467,14 @@ msgstr "" "を追加していますか?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -407,6 +486,8 @@ msgstr "前 >>" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "バイオグラフィ" @@ -414,16 +495,18 @@ msgstr "バイオグラフィ" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "バイオグラフィが長すぎます。(最長140字)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "この通知を削除できません。" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "アバターURL を読み取れません '%s'" @@ -431,6 +514,8 @@ msgstr "アバターURL を読み取れません '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "新しいパスワードを保存できません。" @@ -438,31 +523,34 @@ msgstr "新しいパスワードを保存できません。" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "キャンセル" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "OpenID consumer object を生成できません。" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "その Jabbar ID を正規化できません" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "そのメールアドレスを正規化できません" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "変更" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "メールの扱いを変更" @@ -472,11 +560,12 @@ msgid "Change password" msgstr "パスワードの変更" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "パスワードの変更" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "プロファイル設定の変更" @@ -486,6 +575,9 @@ msgstr "プロファイル設定の変更" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "確認" @@ -498,12 +590,14 @@ msgstr "アドレスの確認" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "確認作業がキャンセルされました。" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "確認コード" @@ -512,7 +606,8 @@ msgstr "確認コード" msgid "Confirmation code not found." msgstr "確認コードが見つかりません。" -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -532,20 +627,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "接続" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "既存のアカウントと接続" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "コンタクト" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "OpenIDを作成できません : %s" @@ -553,35 +652,39 @@ msgstr "OpenIDを作成できません : %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "サーバへリダイレクトできません : %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "アバターを保存できません" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "新しいプロファイルを保存できません" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -601,15 +704,17 @@ msgstr "リクエストトークンをアクセストークンに変換できま #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "メール承認を削除できません" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "サブスクリプションを削除できません" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -622,29 +727,38 @@ msgstr "リクエストトークンを取得できません" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "確認コードを追加できません" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "サブスクリプションを追加できません" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "プロファイルを保存できません" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -660,42 +774,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "ユーザを更新できません" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "作成" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "このニックネームで新しくユーザを作成" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "アカウントを作成" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "既にユーザの存在するOpenIDでアカウントを作成しています" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "確認された最新の Jabber/GTakk アドレス" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -704,23 +824,27 @@ msgid "Currently" msgstr "最新" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "返信を追加する際にデータベースエラー : %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "140字以内で自己紹介" @@ -728,11 +852,13 @@ msgstr "140字以内で自己紹介" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "メール" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -742,39 +868,43 @@ msgid "Email Settings" msgstr "メール設定" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "メールアドレスが既に存在します。" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "メールアドレス確認" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "メールアドレス" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "ニックネームかメールアドレスを入力してください。" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "認証トークンエラー" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "ユーザとOpenIDとの接続エラー" @@ -785,39 +915,46 @@ msgstr "ユーザ接続エラー" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "アバター追加エラー" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "プロファイル追加エラー" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "リモートプロファイル追加エラー" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "アドレス確認保存エラー" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "リモートプロファイル保存エラー" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "プロファイル保存エラー" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "ユーザ保存エラー" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "ユーザ保存エラー; 不正なユーザ" @@ -826,6 +963,9 @@ msgstr "ユーザ保存エラー; 不正なユーザ" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "ユーザ設定エラー" @@ -836,6 +976,7 @@ msgstr "プロファイル更新エラー" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "リモートプロファイル更新エラー" @@ -845,33 +986,36 @@ msgid "Error with confirmation code." msgstr "確認コードにエラーがあります。" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "既に存在するニックネーム" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "よくある質問" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "アバターの更新に失敗しました。" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "%s のともだちのフィード" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "%s の返信のフィード" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -886,7 +1030,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -899,6 +1043,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "フルネーム" @@ -907,23 +1056,33 @@ msgstr "フルネーム" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "フルネームが長すぎます。(255字まで)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "ヘルプ" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "ホーム" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "ホームページ" @@ -931,21 +1090,27 @@ msgstr "ホームページ" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "ホームページのURLが不適切です。" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IMアドレス" @@ -955,7 +1120,7 @@ msgid "IM Settings" msgstr "IM設定" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -963,13 +1128,13 @@ msgstr "" "既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関" "連付けて下さい。" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "OpenIDを追加する場合、下のボックスにある\"Add\"をつリックして下さい。" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -978,55 +1143,62 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "古いパスワードが間違っています。" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "ユーザ名またはパスワードが間違っています。" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "登録されたメールアドレスにパスワードの回復方法をおおくりしました。" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "不正なアバターURL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "不正なメールアドレス:%s'" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "不正なホームページ '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "不正なライセンスURL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "不正な通知内容" @@ -1041,13 +1213,13 @@ msgid "Invalid notice url" msgstr "不正な通知url" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "不正なプロファイルURL '%s'。" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "不正なプロファイルURL。(形式不備)" @@ -1065,44 +1237,52 @@ msgstr "不正なサイズ。" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "不正なユーザ名またはパスワード。" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"マイクロブロギングソフト [StatusNet](http://status.net/) , バージョン %s で動い" -"ています。 ライセンス [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)。" +"マイクロブロギングソフト [StatusNet](http://status.net/) , バージョン %s で動" +"いています。 ライセンス [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)。" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID jは既に別のユーザが使用しています。" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1112,12 +1292,14 @@ msgstr "" "IMクライアントやGTalkに追加して下さい。" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1126,7 +1308,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "場所" @@ -1135,7 +1325,12 @@ msgstr "場所" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "場所が長すぎます。(255字まで)" @@ -1144,18 +1339,22 @@ msgstr "場所が長すぎます。(255字まで)" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "ログイン" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "[OpenID](%%doc.openid%%) でログイン。" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1163,22 +1362,26 @@ msgid "" "%). " msgstr "" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "ログアウト" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "パスワードを紛失、忘れた?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1189,16 +1392,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "からのメンバー" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "マイクロブログ by %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1208,42 +1413,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "の下でテキスト及びファイルを利用可能" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "新しいニックネーム" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "新しい通知" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "新しいパスワード" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "新しいパスワードの保存に成功しました。ログインしています。" @@ -1253,7 +1466,13 @@ msgstr "新しいパスワードの保存に成功しました。ログインし #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "ニックネーム" @@ -1262,7 +1481,12 @@ msgstr "ニックネーム" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" @@ -1271,49 +1495,60 @@ msgstr "そのニックネームは既に使用されています。他のもの #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用" "できません。" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "そのニックネームは使用できません。" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "フォローしたいユーザのニックネーム" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "ニックネームまたはメールアドレス" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Jabbar ID はありません。" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "認証のリクエストがありません。" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1325,11 +1560,15 @@ msgstr "確認コードがありません。" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "コンテンツがありません!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1338,7 +1577,9 @@ msgid "No id." msgstr "id がありません。" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1349,6 +1590,7 @@ msgstr "リモートユーザのニックネームがありません。" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "ニックネームがありません。" @@ -1356,12 +1598,14 @@ msgstr "ニックネームがありません。" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "認証待ちのものはありません。" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1371,7 +1615,8 @@ msgid "No profile URL returned by server." msgstr "サーバから提供されるプロファイルURLはありません。" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "そのユーザにはメールアドレスの登録がありません。" @@ -1383,7 +1628,7 @@ msgstr "リクエストがありません!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "結果なし" @@ -1394,12 +1639,16 @@ msgstr "サイズがありません。" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1409,13 +1658,15 @@ msgid "No such OpenID." msgstr "そのようなOpenIDはありません。" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "そのようなドキュメントはありません。" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "そのような通知はありません。" @@ -1453,12 +1704,22 @@ msgstr "そのようなサブスクリプションはありません。" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "そのようなユーザはいません。" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1472,32 +1733,38 @@ msgid "Not a recovery code." msgstr "回復コードではありません。" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "有効な Jabber ID ではありません。" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "有効な OpenID ではありません。" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "有効なメールアドレスではありません。" @@ -1505,6 +1772,11 @@ msgstr "有効なメールアドレスではありません。" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "有効なニックネームではありません。" @@ -1524,7 +1796,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "有効なプロファイルURLではありません。(XRDSドキュメントが無い)" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "画像ではないかファイルが破損しています。" @@ -1535,11 +1808,13 @@ msgstr "認証されていません。" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "想定外のレスポンスです!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1555,11 +1830,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "ログインしていません。" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "購読していません!" @@ -1576,39 +1855,44 @@ msgid "Notice feed for %s" msgstr "%sの通知フィード" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "通知にはプロファイルはありません。" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "通知" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "古いパスワード" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID アカウントセットアップ" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID 自動提示" @@ -1616,29 +1900,34 @@ msgstr "OpenID 自動提示" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID ログイン" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID での認証がキャンセルされました。" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID での認証に失敗しました : %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID 障害 : %s" @@ -1654,11 +1943,12 @@ msgid "OpenID settings" msgstr "OpenID 設定" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "不完全なアップロード。" @@ -1668,34 +1958,46 @@ msgstr "不完全なアップロード。" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "パスワード" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "パスワードと確認が一致しません。" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "パスワードは6字以上でなければいけません。" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "パスワード回復のリクエストされました" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "パスワードが保存されました。" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "パスワードが一致しません。" @@ -1715,14 +2017,17 @@ msgid "People search" msgstr "ピープルサーチ" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "パーソナル" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1736,7 +2041,7 @@ msgstr "" "キャンセルをクリックして下さい。" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Jabber/GTalkのステータスが変更された時に通知を送る。" @@ -1745,7 +2050,9 @@ msgstr "Jabber/GTalkのステータスが変更された時に通知を送る。 #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "設定" @@ -1754,42 +2061,52 @@ msgstr "設定" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "設定が保存されました。" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "プライバシー" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "通知を保存する際に問題が発生しました。" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "プロファイル" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "プロファイルURL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "プロファイル設定" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "プロファイルが不明" @@ -1798,17 +2115,19 @@ msgid "Public Stream Feed" msgstr "パブリックフィード" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "パブリックタイムライン" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1818,12 +2137,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "回復" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "パスワードを回復" @@ -1836,37 +2157,45 @@ msgstr "不明なユーザのための回復コード。" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "登録" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "拒否" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "ログイン状態を保持" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "リモートプロファイルと一致するものがありません" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "リモートサブスクライブ" @@ -1880,6 +2209,9 @@ msgstr "リモートサブスクライブ" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "削除" @@ -1888,7 +2220,7 @@ msgstr "削除" msgid "Remove OpenID" msgstr "OpenID を削除" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1897,34 +2229,41 @@ msgstr "" "OpenID を追加して下さい。" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "返信" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "%s への返信" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "リセット" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "パスワードをリセット" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1933,17 +2272,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "上と同じパスワード" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1956,12 +2296,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "保存" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "検索" @@ -1971,14 +2320,14 @@ msgid "Search Stream Feed" msgstr "ストリームフィードを検索" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "%%site.name%% の通知を内容から検索。検索語はスペース区切る。3字以上" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -1987,48 +2336,56 @@ msgstr "" "%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "送る" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk で私に通知を送って下さい。" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "設定" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "設定が保存されました。" @@ -2048,27 +2405,32 @@ msgid "Something weird happened." msgstr "不測の事態が発生しました。" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "ソース" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "統計データ" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "保存された OpenID は見つかりません。" @@ -2076,24 +2438,28 @@ msgstr "保存された OpenID は見つかりません。" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "購読" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "購読者" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "購読が許可" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "購読が拒否" @@ -2101,28 +2467,35 @@ msgstr "購読が拒否" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "サブスクリプション" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "ファイルのアップロードでシステムエラー" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "文字検索" @@ -2142,6 +2515,7 @@ msgid "That confirmation code is not for you!" msgstr "その確認コードはあなたのものではありません!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2151,63 +2525,73 @@ msgid "That file is too big." msgstr "ファイルサイズが大きすぎます。" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "その Jabber ID は既にあなたのものです。" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "その Jabber ID はあなたのものではありません。" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "その IM アドレスは不正です。" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "長すぎます。通知は最大 140 字までです。" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "アドレス \"%s\" はあなたのアカウントとして承認されています。" @@ -2216,18 +2600,22 @@ msgstr "アドレス \"%s\" はあなたのアカウントとして承認され #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "アドレスは削除されました。" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2235,33 +2623,38 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "%s の通知を聞いている人" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "あなたの通知を聞いている人" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "%s が通知を聞いている人" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "あなたが通知を聞いている人" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "確認コードが古すぎます。もう一度やり直してください。" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2270,7 +2663,7 @@ msgstr "" "クリックして下さい。OpenIDプロバイダへ転送されます。" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2284,6 +2677,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2292,25 +2688,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "このページはあなたが承認したメディアタイプでは利用できません。" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2323,18 +2731,21 @@ msgstr "" "下さい." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" @@ -2346,15 +2757,22 @@ msgstr "プロファイルサービスまたはマイクロブロギングサー #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "予期せぬフォーム送信です。" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "予期せぬパスワードのリセットです。" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2385,38 +2803,47 @@ msgstr "サブスクライブ中止" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "サポート外の OMB バージョン" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "サポート外の画像形式です。" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "アップロード" @@ -2437,12 +2864,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "更新、アナウンス、パスワードリカバリーでのみ使用されます。" @@ -2466,11 +2896,16 @@ msgstr "リストされているユーザは存在しません。" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "プロファイルがありません。" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "ユーザのニックネーム" @@ -2479,29 +2914,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "最近どう %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "いる場所, 例えば \"City, State (or Region), Country\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "不正な画像形式。'%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "不正な画像サイズ。'%s'" @@ -2509,7 +2948,9 @@ msgstr "不正な画像サイズ。'%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2530,11 +2971,12 @@ msgid "You are already logged in!" msgstr "既にログイン済みです。" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2552,13 +2994,14 @@ msgstr "アカウントを作成して通知の投稿が可能です。" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "\"削除\"をクリックして OpenID を削除できます。" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2567,7 +3010,8 @@ msgstr "" "Jabber/GTalk [instant messages](%%doc.im%%) 経由で通知の送信、受信が可能で" "す。下のアドレスを設定して下さい。" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2578,21 +3022,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "ローカルサブスクリプションを使用可能です!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "ライセンスに同意頂けない場合は登録できません。" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "そのプロファイルは送信されていません。" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2606,35 +3052,39 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "確認されました。新しいパスワードを入力して下さい。" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "あなたの OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "このサーバでのニックネーム、または登録したメールアドレス。" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2643,47 +3093,57 @@ msgstr "" "[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログイン" "することができます。ここで関連付ける OpenID を管理して下さい。" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "数秒前" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "約 %d 日前" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "約 %d 時間前" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "約 %d 分前" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "約 %d ヵ月前" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "約 1 日前" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "約 1 分前" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "約 1 ヵ月前" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "約 1 年前" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "約 1 時間前" @@ -2705,12 +3165,14 @@ msgid "reply" msgstr "返信" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "上のパスワードと同じ" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2732,6 +3194,26 @@ msgstr "<< 前" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2740,6 +3222,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2747,22 +3230,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2772,11 +3261,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2816,33 +3307,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2896,6 +3398,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2924,6 +3431,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2944,12 +3453,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2957,7 +3469,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2981,51 +3493,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3044,14 +3575,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3060,6 +3594,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3068,24 +3603,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3096,33 +3636,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3139,18 +3689,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3160,89 +3711,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3250,11 +3823,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3269,7 +3842,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3281,7 +3854,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3290,31 +3863,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3327,14 +3908,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s & ともだち" @@ -3344,22 +3930,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "設定" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3376,35 +3972,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "そのような通知はありません。" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "そのようなユーザはいません。" @@ -3413,12 +4018,12 @@ msgstr "そのようなユーザはいません。" msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "既にログイン済みです。" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3435,40 +4040,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "ニックネームがありません。" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "そのような通知はありません。" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3480,16 +4103,17 @@ msgstr "" "できません。" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "バイオグラフィが長すぎます。(最長140字)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "ユーザを更新できません" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "設定が保存されました。" @@ -3507,7 +4131,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3523,7 +4148,7 @@ msgstr "" "確認用コードを入力されたIMアドレスに送信しました。メッセージを確認するには、%" "sを承認して下さい。" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3537,54 +4162,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "コンテンツがありません!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "<< 前" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "前 >>" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "%s のともだちのフィード" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3630,12 +4270,14 @@ msgstr "" msgid "Sync preferences" msgstr "設定" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "そのような通知はありません。" @@ -3650,7 +4292,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3664,15 +4307,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3680,12 +4325,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "アバターが更新されました。" -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "アバターの更新に失敗しました。" @@ -3705,7 +4352,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3720,6 +4368,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "アカウントを作成" @@ -3731,7 +4380,7 @@ msgid "" msgstr "" "%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "ピープルサーチ" @@ -3755,21 +4404,21 @@ msgstr "Jabber/GTalk で私に通知を送って下さい。" msgid "A confirmation code was sent " msgstr "確認コードがありません。" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "既にログイン済みです。" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "サーバへリダイレクトできません : %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3778,16 +4427,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "そのような通知はありません。" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "そのプロファイルは送信されていません。" @@ -3796,21 +4448,25 @@ msgstr "そのプロファイルは送信されていません。" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "OpenIDを作成できません : %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3822,16 +4478,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "アバターを保存できません" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "サブスクリプションを作成できません" @@ -3845,12 +4503,15 @@ msgstr "ファイルサイズが大きすぎます。" msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "通知" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3867,7 +4528,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID ログイン" @@ -3895,11 +4556,13 @@ msgstr "" msgid "Service" msgstr "検索" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "場所が長すぎます。(255字まで)" @@ -3909,17 +4572,18 @@ msgstr "場所が長すぎます。(255字まで)" msgid "Change your password." msgstr "パスワードの変更" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "パスワードが保存されました。" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "有効なメールアドレスではありません。" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3929,12 +4593,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "プロファイルが不明" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3944,21 +4609,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "不正なホームページ '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "プロファイルを保存できません" -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "パブリックタイムライン" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3979,11 +4649,13 @@ msgstr "パブリックフィード" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4039,7 +4711,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "%s への返信" @@ -4049,53 +4722,74 @@ msgstr "%s への返信" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "そのような通知はありません。" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "通知" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "%sの通知フィード" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "からのメンバー" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4110,7 +4804,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4121,32 +4815,39 @@ msgid "'s profile" msgstr "プロファイル" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "プロファイルがありません。" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "購読者" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4172,7 +4873,7 @@ msgstr "Jabber/GTalk で私に通知を送って下さい。" msgid "A confirmation code was sent to the phone number you added. " msgstr "その確認コードはあなたのものではありません!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4236,17 +4937,18 @@ msgstr "%s が通知を聞いている人" msgid "These are the people whose " msgstr "%s の通知を聞いている人" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Jabbar ID はありません。" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "マイクロブログ by %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4270,7 +4972,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4280,17 +4982,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "アバターを保存できません" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4299,20 +5001,23 @@ msgstr "" msgid "No such tag." msgstr "そのような通知はありません。" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "マイクロブログ by %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "ユーザのブロックに失敗しました。" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "ユーザのアンブロックに失敗しました。" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "見つかりません。" @@ -4320,15 +5025,16 @@ msgstr "見つかりません。" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Twitterパスワード" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Twitterフレンド" @@ -4341,147 +5047,156 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "アカウント情報を取得できません" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "ブロックの削除エラー" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "リクエスト内にプロファイルIDがありません。" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "そのIDはプロファイルではありません。" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "サブスクライブ解除済み" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s グループ" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s グループ, %d ページ" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "通知を保存する際に問題が発生しました。" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "アバターのアップロード" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "その他" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "その他のオプション" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "名称未設定ページ" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "人々かテキストを検索" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "アカウント" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "メールアドレス、アバター、パスワード、プロパティの変更" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "IM、SMS、Twitterに接続" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "サイトからログアウト" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "サイトへログイン" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "アカウントを作成" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "OpenIDでログイン" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "助けて!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "新しい通知" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "新しい通知" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "サブスクリプション" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "ライセンス。" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "このユーザをブロックする" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "ブロック" @@ -4494,11 +5209,14 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr "新しいアカウント" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "発行済" @@ -4518,31 +5236,36 @@ msgstr "タグのフィルター" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "タグ" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "移動" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "グループやトピックのホームページやブログの URL" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "概要" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "グループやトピックを140字以内記述" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4552,20 +5275,20 @@ msgstr "いる場所, 例えば \"City, State (or Region), Country\"" msgid "Group" msgstr "グループ" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "管理者" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "%s グループプロパティを編集" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "ロゴ" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "%s ロゴの追加や編集" @@ -4596,11 +5319,11 @@ msgstr "参加" msgid "Leave" msgstr "離れる" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "ユーザ名とパスワードでログイン" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "新しいアカウントでサインアップ" @@ -4620,24 +5343,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s は %2$s であなたの通知を聞いています。" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "場所: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "ホームページ: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "あなたは %s に突かれています" @@ -4652,40 +5375,48 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s は %2$s であなたの通知を聞いています。" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "直接通知を送る" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "通知を送る" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "利用可能な文字" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "...に対しての返信" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "この通知へ返信" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "返信" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "この通知を削除" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "削除" @@ -4706,27 +5437,29 @@ msgstr "このユーザへ突きを送る" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(なし)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "パブリック" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "ユーザグループ" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "最近のタグ" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "人気" @@ -4742,32 +5475,34 @@ msgstr "このサイト上のグループを検索する" msgid "Untitled section" msgstr "名称未設定のセクション" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "リモートサブスクライブ" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "リモートサブスクライブ" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "プロファイルがありません。" #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "購読が許可" @@ -4781,10 +5516,11 @@ msgid "Top posters" msgstr "上位投稿者" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "このユーザをアンブロックする" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "アンブロック" @@ -4792,6 +5528,2014 @@ msgstr "アンブロック" msgid "Unsubscribe from this user" msgstr "このユーザからのサブスクライブを解除する" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s のともだちのフィード" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s のともだちのフィード" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s のともだちのフィード" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s & ともだち" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "アバターが更新されました。" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "マイクロブログ by %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "\"%s\" のストリームを検索" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" +"て下さい。" + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "パブリックフィード" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "パブリックフィード" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "パブリックフィード" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "作成" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "そのような通知はありません。" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "プロファイル" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%sの通知フィード" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%sの通知フィード" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%sの通知フィード" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "アバター" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "プロファイル設定" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "その確認コードはあなたのものではありません!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "そのようなユーザはいません。" + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "アカウント情報を取得できません" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " +"キャンセルをクリックして下さい。" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "人々かテキストを検索" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "IM、SMS、Twitterに接続" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "突く" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関" +"連付けて下さい。" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s は %2$s であなたの通知を聞いています。\n" +"\n" +"\t%3$s\n" +"\n" +"確かにあなたの,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "検索" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "そのようなドキュメントはありません。" + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "サーバへリダイレクトできません : %s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "このユーザをブロックする" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "プロファイルがありません。" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s & ともだち" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "ユーザのアンブロックに失敗しました。" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "確認コード" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "この通知を削除できません。" + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "不正なホームページ '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "アバターを保存できません" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "新しい通知" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "新しい通知" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "有効なニックネームではありません。" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "プロファイルがありません。" + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "そのプロファイルは送信されていません。" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "そのようなユーザはいません。" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "ユーザを更新できません" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "設定が保存されました。" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "管理者" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "結果なし" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "プロファイルがありません。" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "プロファイルを保存できません" + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログイン" +"することができます。ここで関連付ける OpenID を管理して下さい。" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "プロファイル設定" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"パスワードを忘れた場合、登録されたアドレスで新しいものを受け取ることができま" +"す。" + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "確認されました。新しいパスワードを入力して下さい。" + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "パスワード回復のリクエストされました" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "確認コードにエラーがあります。" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "購読が許可" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "そのような通知はありません。" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%sの通知フィード" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%sの通知フィード" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%sの通知フィード" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "管理者" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "そのようなユーザはいません。" + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%sの通知フィード" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s は %2$s であなたの通知を聞いています。" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%sの通知フィード" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%sの通知フィード" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "ユーザを更新できません" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "ユーザを更新できません" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$ のステータス %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "マイクロブログ by %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "ライセンス。" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "全てのサブスクリプション" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "プロファイル設定" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "そのプロファイルは送信されていません。" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "通知を保存する際に問題が発生しました。" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "プロファイルがありません。" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "プロファイル" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "アップロード" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "パスワードの変更" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "接続" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "検索" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "ログイン" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "ブロック" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "そのようなユーザはいません。" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "%s ロゴの追加や編集" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "コンテンツがありません!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "検索" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "ホームページのURLが不適切です。" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "そのような通知はありません。" + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "長すぎます。通知は最大 140 字までです。" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "サーバへリダイレクトできません : %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "バイオグラフィが長すぎます。(最長140字)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "既にログイン済みです。" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "サーバへリダイレクトできません : %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "そのプロファイルは送信されていません。" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "OpenIDを作成できません : %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s グループ" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "メンバー数が多いグループ" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "このサイト上のグループを検索する" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "長すぎます。通知は最大 140 字までです。" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "サポート外の画像形式です。" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "バイオグラフィが長すぎます。(最長140字)" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "リストされているユーザは存在しません。" + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "認証されていません。" + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "リクエストトークンをアクセストークンに変換できません" + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "予期せぬ OMB プロトコルのバージョンです。" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "そのような通知はありません。" + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "そのような通知はありません。" + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "このページはあなたが承認したメディアタイプでは利用できません。" + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\" にヒットするすべてのアップデート" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "140字以内で自己紹介" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "140字以内で自己紹介" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "バイオグラフィが長すぎます。(最長140字)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "有効なプロファイルURLではありません。(XRDSドキュメントが無い)" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "リクエストトークンを取得できません" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%sの通知フィード" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%s への返信" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s のともだちのフィード" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s のともだちのフィード" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s のともだちのフィード" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%sの通知フィード" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "通知" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "このページはあなたが承認したメディアタイプでは利用できません。" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%sの通知フィード" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " +"キャンセルをクリックして下さい。" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "アバターURL を読み取れません '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "不正な画像形式。'%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "サーバへリダイレクトできません : %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "新しい通知" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "サーバへリダイレクトできません : %s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "この通知へ返信" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "通知を保存する際に問題が発生しました。" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "確認コードがありません。" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "サイトへログイン" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "グループやトピックを140字以内記述" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "グループやトピックを140字以内記述" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "%sの通知フィード" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s は %2$s であなたの通知を聞いています。" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "から" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "新しい通知" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "アカウントを作成" @@ -4804,10 +7548,3 @@ msgstr "このユーザからのサブスクライブを解除する" #~ msgid "Error inserting notice" #~ msgstr "通知追加エラー" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "パスワードを忘れた場合、登録されたアドレスで新しいものを受け取ることができ" -#~ "ます。" diff --git a/locale/ko/LC_MESSAGES/statusnet.mo b/locale/ko/LC_MESSAGES/statusnet.mo index 2b177ff86b9e6e8a0a54923d3bf5e77050713af7..a57340724f4f01d18b15f95471e2fd3a63dbc6f7 100644 GIT binary patch delta 29158 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

h@b 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 delta 20888 zcmZYH2Xs}%0`BoWNhqNcAP^vs&_fNO_uhN2O7FcR?T8d2;Wus1%$~B(Nx-}Lo3uZ_pC<5QOwEl?z z^8()AMA}DqUP)Suqr&tyo>vxw$p5^L`9mGXw)MRFSQFJz0CVAPOozvu-(oE3vzQHU zVdROhZ(=o!?cjOCu`R0n zpi6&*n#uAVJ#Rer#tC>5YhjB{^jVn5d?GdQ9c+wOFefH=W?8TiYVAg2JTAeZxE<9{ zTo=!K3A`c z-gwkZOvW5I3)N5%HMQ?xIs5>d;!V{3Rl0j#8LWfqXM}THcjjLWK1YT+n2l_HZyqZD zCDanE#H_dxv*T_of*+$c*ENj6EIsUIO>{Ov4QK?ad<|-5cVbCA8X%&n`2%AyzNc-t zB5G;6p{8^?>KN^F`M+W_(&?Y^ysFq9)$l^p%)O2p@D^tnwP!xT<#-E6V_^2Po>z*< zU#J@sd)Xx@ftryNOu))6zYA&#`=B})gqo>Is3&{@<8TG$#T}Rjk6{h`1@mLU-kz6_ z{=J$+)NxnTl=Q-axBxW++fe0SqSpE(s^e>@nfnLz-}4Iv^c*qfvWf5$ZUu zapiAgR{HloBcdnx9<^D1O)c=e>!@@42({)p``U(!VHMI1up>@Iy}-Uk-CuZsed1E6 z0W?JA_r?SqjGCGGn4A8+jV|K=CXzmlDfj@3Vd;T(N;_a7(j!n)x&#w&D{3NxFiHXO#Gp13}0MxMotxWwhZhB^&RjDp?33O)YN~C+Eh2OBu0<4r=%ikh8v>t2cedB875$08xc+Y=gy0$CwhRI ziCm-X6I4Vs)EZSj#^t|+x_^ty{{S_hv#6!K@5(drwo!gzXFX&F0$wj7nzAvd7tVCl zlFUSnbOUPY_M>Lt8`RXDMlIPD)Rg{-S@03+zKmn+%oRoru%@#EW+goo3+Vh$A)*1i zin?(VYRV5fPhlz2x3D+n8*67|8ftUBf*Qzb)M?p-neaG9;P^rz z2>&Lc1|FbhB5J(n^}}pf7RO^(+<;~95mv&I6Kq4haT@8Fs3(1b>M&}e9e8%s<|~1k z$quNc3QT1F^#Xd?RosqBA4T1833(-W*(TYgnSwe_%P<$djhd+=7>nmH2Jbl2Ot$s& zU;_CmSR6Z`W@74O=07`;`DAE!u0}Pm7d6u3n1c6F?}1X!+0XM7%tpE|>b`M!5SOCr zwV7fcpfkpio{2BuYShvdm}-}!AlL?yQD7zAdmEjzrBwU@ehVL_S81tj~1Y@Icg)jK`cf74^njg86VS z=D?GvwY-8!cpqzFp&9n$xi`j>ehD@3w=f;V5z!QVin;M3R>Oy=5msc0wCj6f z9vqJ9a1Iv4KkCD2FzR?NLcLdBLCx?U%%t=G5fSbFZ&EWjr>Kfo zunK0JX`i?O>bUhnJ?UW7CS8UN@gQnbMzGKtcplUe)WryFk6NlusHN+HarEyEA)+as zg?iGJsD|D|jr0RlL&u!wQT1-3mgouQ#Wb_*rc6NHR~}Pm1U2>jQJZ@V7Q)#W&@SHM zGWMXB;v8xKf1##4<7{gY)DqP~J$Wb8z@A6V;4;(~#k zF=;OIuP1FxhIVsL)C`P9P3Zzu`6id%k7Y=oLd`(bi?-u(s3+}-8o(6Hj|)(nZwqRM zcA*A*0JVva1&HX0zekPuDyGF-sEU81rZS2xuBFJ08c;IoNgAW-J%a^t7^cI8uH1L| z+c0$xq53A~wcSI2AR}EvTv8jvDBPs3kgu zYWEjRz?;sj3v9h)q+Y;lKtvt3b@oPeG#WKUn=n1@MveHO%l{Dd1o9qc-VZ zs0Yft&<-RH)lU&rdlj*`&VMaeFaQ%Nn1IDFh7 zUlY|)N7R%*gGF&9mcZp$S?B*C5k1*mERPReh0-tavjOQ&s5O0vdV+|T?Ouq%6w;+I zBR-2-f}zgosDUm)-5*5F%sQ72V?a-Ih)5AUKt)u;4N)Do zK$Sm>S#cC51A~<50(Z1!`cc0z_hnyn!uoH%>w0+n)ob zAsgBI1oh9O*z35jE5eb>mRf zu73%u;#RDT7qJ4yy<&H9D^!Q$up2IQ`PZ-s>Fh!K#NALcI~BErvoI?z!qPhbuMyFc zeTG`YUr+QZ z(K`PDBI;;9#^MglfFGk~<{Q+&E@E!HiMcTCDm$h5QBz$KRlg3ZUR%^>z+luKnS&bO zeAFpeg6VbsR}s+@Z@||0Cbq(Rm=_zZwjK0F)ti7C&=f3*bFnb)Le0!cEQU{9e$m(L z(ltX3d^+k>`I!3qzYr0v{b|gH4^g`{c8#rA74;d=6}9G*P#vtm6g+@hf?LjfYwd?k z6VwuQL%j#)JNKX-?DAUXzY>v%b#_gvqHbu1WpF0Gk2_Eu41Ar>dR&I(vFsamt$U;D zzl3#gKPKTn7>7mI+Zn2Z+7tbp%hw0&6CZUIenvH%W`nf~>V_exC0T`q@pr6@nKs%d zYkM%3=kd&)bV&5wHJ=M z{GU;4cE_bNZ?n6+0A?q@GHQ*RVkAz&95@vA!zKO##N@N&InH&G`nPQg5^ zg*#El@+NBJIp4M&PViicna$LE=DcM7R-zvqh{&^s-sJoh@%tCq)YRV^~)^HhWhCV|bv)@sBCn99` zKt5DQ1+gsF!p=Ax^?)CSn18L^RWeFqn%#D@B%=n<7fa(@)ZPf8cK12d0J6VlcX?B+ zO?o+&!tby>{)W7tr&}YQA_YOYE#|97%X?d&QN`vPWm~_j`y6=2W`DTJ|a0OD2q9;0jh&8uEHSH zjZ-iiE^_HLn3nVo)Dyjr+KfM;_R2L(j}I{oMt)!i9F4h1Cm`hkuQHKNhS6g_3RWDl z9qq!(q>o@Xe1Ms;!~ghb#XhJG-^FJ50XD((hwbTTixo&uM76UGzvGqpGZrEJ-bXrZ z0lp*>=}$)CqjnR`!;Yjs!5WzVV>_^}n2z*#=QJ!pdNyh)HlPNu4>eN}pV;yo7)Lq< zi(^ZS#_^bq{=FGQ;&CzN#&=wWqb~gw7AOBQ>a!y2r?$fsR71^B=eh&t#ojJ|Dr$gp zP)oWI8{%#(h7T~HjuSq!Bd(2FyEdpBp2cc75*y>2I1z85>J2=`zQ74s8~?yXSnhLs z+zwy^(zTA;2b_t0NUy`uXue?n)zH{4>IrwEj?;HI2k&7^oc<-#jK{Dhj{J)6 z{P-5?LE3+9XKFO+30Gng9>St{1=C{IZ|node#87Lqc|C|tg{kkCS4QrV{_Ez9E56k z7S_XUI1aC)?(hArJ+6Z=n)Dh}J6lk@{yofqpF2+lT!o*Vw=f$O9;1$BmhbEn6~+Y8 zEl`_jIO@sfVpH6S9q<7rVyhF@QK;R&6wBbJsP_NH5*SE#(oTIc_9deiR>UKyC%=bP zG3P0J3|pZ#=@!%z9zr$v8J5Jen1X3eGfP<2c>v3iu6xGL$Y|vLfH#9kCJN@EI$q(@ z$DF58yZTqu8vlzr4e{UGrD%keNe{vM{6eHUmb+*-#Zc79eV0Ch+C0~=2FCqj8}5XqNiW3mxCga_S5e2U;IGz3 zs1AprmS{CwZeZjArU4x}~ezG+wix4QfvoEb0M z0ain8#!)W49+OC)!J-)PJL_MENQvL=CK`(n{9!2z~!Go4eX&a z=9V2uNi0Nu7gYHa)Dtg5Ex}II0M1|zyn&ht^M}pPgB5iC%Mj6xeXt}3Fe`3D4QwB( zf%BLN|8VKYm_R!FZM#G%sB~{s{h7`cSd8>m)BwIl&BSF)q<=5sj@^w#Fqw379D-A^ z3|_(vnBz~o<^`}U>7tkoJ7OdbaOFcVGwIRJ8K`=TTzU;^@4STp9fNm?l)^L4sJnKG zl2Lo1kxRG1ETsFRIvj_Zkx8gcH5=8@0nCnHpiaS0sCIJwWy=dXlmBA=pQoT68QL^Q za1eTb+ixm^u?xv}urj8($4{ZgCzB*hApJZR#y7Aa9(CzUsP{qiL;H2SsIxYzoi3=Ed=9JQCd`Q!Q0@GM zRWa8;_S3a>fJj9$hN0H_b=2B?iF$&Qm>Uxx*&C~2X2UloRK4dP+b4bzOOQT+Ywdb0z+3E40Ooq8AU<=>cqi4i9Cm0KS> zke-H(@N106*hrJQ`zxY4s*f6YGc1T5oa3;q&c9Ej0tLUKo*++@NnN{&7)yE-YHH_V z72JV!@G`35;%Q9kjFm@i%HCKB$DjtZ#pNG$o!hz979cIWG1_|iKq_BIh&&fJODK#OHm!}b)IuRb{6CaX-4X0 z4%mtV$8dt>xY>B#Y1ZwjwL%k7?q1N;!s-Xfo?0rR1PgD)n-T>4R zjdSUjQ3H6*`2jM}fOmn2UXhPbOOQRMNqvV`$F`(jM0IoqRqrR%X1$9#ZkckK)Hhi? zY7>?~4YUi!;8aw-mr(;)hZ^8vETZ%O6%pNV*A?W6wH+2iRV;&QpoX(0>O1=Vq9)C;R0>J&^tJ@I;Mj31$9GGm6O;4o*Wg6p`09lohoHilJVy zEl>?C#ROc58qi+U41I#S{|xH5UP8SeBJ%%%c3@ATP%&wqsrewwf~XxThxqPK(!kY&-vGsN5|XGfC8u| zXpegGUe4L58@8ebx)b$cI*eNDhps%PfbB32b$@Yeg)MOwu0pj_prGxiXn=^GEX8HC zLfzOMHAN~{2lFu!-#`s`6K24D&ZDSv|21mwTt{`3C&5|})lV^OhxPCU4ERJ^5Q$AR zd^Ynt08GFu&J2a@3#JrmK&?@GrYol4EL6kqqo({D)Gq%W^(puWn_)^}yCOLzfn(8uY~P*5~|_-SRFsZh8UG( zJ8p(aq}!r4;}n;_1=a3$)Mv$IjMe#1ThhKr;!#sv3)MjrXD8GX^>gW=&dFGe{JE(2 z$2+Kc=TYtaf?A3js3$h1YXNb%uqVswYbzZ&Fwqjn?KoU`Vq#TyPsi>vd ziWTrA>T^B1jGduIs87fFsHNM1mGLKMY+0M%sx0SUQ#+juRR}q+qNXshoPEL;SeNuz zR7WAyF204?v0k!C{grJ8tVjAy=T+2{mo9JHAAkv@U&D%cuzbK~+#%x&GIFHY!@QKRmpy+C83s}J?gadL%pJB1YCv9 zsL%JWP-~jIvfYfeQByw#Q#U2PM*43Yf_@d_ZNtad1>dY{ygukvv)>c?qL%74)cv2L zj<2b1PhFt2i@b>16c3-B_ibeJ78=)Q?Zpv09Jn;2YGr{S7scH1%yq z38;F_a4k;8LYTXOJw4S?r=}_Dlubk}@p3Gn^S_^nUOZ<}uh7g5?UWTkbyOAAKnGO4 znW)XR8#UG6BL~L&1vS8!#>Pv)@~Gq89&6!F)E>Br9k6&4&cBY`R3dfoT~vd2P;2)H zb$&B9wdq=@&C?on8lFQnxE-~|mr(=$$E9PN*@2csotiezndp-aHRJpz5oyxg4qyzb z<6WpVJc1heHLQS1E$l1x8Pt?7z!=<%8qjgn7Zuaec!RMC>H&75>R&)TXx3Kt{n4gX zz)tBKWM~hZK)qlxw6@2oF}5PT7DwQ9d=|U6vFCm-4kLXZHIx0@+C8uuyOXZo&UmwN z1=h#B?XAzC>c1W!q7RSLsFCOIU|*qqQ3KhGRq!Idi+MYm)W7-o0=0=Ubh6*=%42)d zlTmx*bJYD$uo+hGY(K1Kqw){oP7M4*L~HYQ7yI%1BWiP%>S{M*Thy){gvy_TZE%~* ze~7(E=jmor|Eb1g%t*Rice|HrpuSNxa_RQYo|r-Be;|?cR2bu&;+%zQXc6iKv=X(3 z>rlJ=OP7BG)xlktHa+a_Pmek^NvKWT1vw<%99|kF6iK}}f6XE|+b&s%_&UPd|F?oI zn88i2k@r5~3(9ppB)*w2gz$*ai~OzRZzHbj6zT4SvBa}+|7XPYquaAsoI00rlYhH; zj-=ego?i2a{Or=r^?q|#IpQ7tdL453bsI$mdXsycTKi~6f2pYn`ian6?Gj!fo&#$T zu2EisP@SObU-JHYWg$_3ykGDmoZ-sr&|^LF^j8jP+`YYsa|OK9{JEDXO=ifM# zKAxv7o!F<>KcoZc`J)9nEvb~2O1i4J8&_dZ(vPX5>p8;rgoT6z^1j2Rginbd#yW)F zu8sWUz03V|Nndd7y+iqGg080IeaOrEPV<;$EuvTkFP1yz5_C1iPY9!^^*v!2c@1f) zziWLkdAli3!nY}V4hv$Cyw=385&xLDNBxYXFA>$1nYgY_$a^sLnn679C4am_sLu`h z$bNcdB2U-%RG#QMe@x!*@OtnYZ8bvp@0G{hcoGv_K@#?(UUOGA8h;|qR|f9^;X}%E;du;E z)>E&Vz)Esz((UWyULjtK_$uQ1tQ|n;LRwb`?wE_isiSK@>AJ-A!SRDKNI$)H|0k|I zzGHZ|2t8CgCb;_*en8%xkth8x>bA+M`sbNQY{`AAnsd0DBqmvq#B@|F`% zN4`G8byX+5g!F9U%?as9>pR}lOCQA_>NTTl6ou31v@SR3nnm0vFGO75R(>aboe=5D zPZG~Xepk{(h~Fl3bYNS$O&k(*PHITeY#Gl~nu8l>+3laKpe;?`u42g6^ z_}1ekk*R9{mHASU`k%ahhn)$-T$!!G`-(cb$ZJ5^P%=Mt9h4_;2EF>O zY$s2j*UypH-!|mtUzrrnw3!}XzrB~aAv3mgdHRaP*4RG?<$(*cN+f z$Xid)^&7rVy|OMHpq~Dp5H#~$wEmB&)R@EwLNzK4p|BwF(Wt8w&L(WJNpGaf&rZ4; z_4eUM_>${D)xIKJRm5GTD8EPfFdR?N)tN9>qghQs42i0)V2bOYB&c**Z1c@VryM%vS zg$MW&;dSyV;2u2b%39LdF46waHt01be;8?9?-Ej6erksMqZ@T*k-wE6 zPP}JH=$g(=)m>ca9`42@*O>D3qtIf~RS8ch-$p1&-gXsol_x)~tA7y}x_EXRPnbxZ z9Io9M(w}Po^L5;N3nN@XyZ;P=Z2r27&EoR(_4qC7O(UdNA=i7v@3?!{(biGomGJ4+ zpZFQ_UUPNsQ*erKo3#4(h7w7^6I6^RbR-O-!%-^a8cO;qb)typca6*;K9Bs3ge`<2 z=}s;& zm^!&g=Oz6jbs7;bPe?=le)4J)zm7981L6O@#*#Oly1OVir1j50;^`GfgIB1q0xu8_ z5_H9omj=5MmXY@t;V|J9(!D90N_dxaZqiS$JVbsWU)QUI&4l};2T|`0!kffP>MM!r zRA3O1gq_6Kl2MlU*OcknNqUWqrv7W=S4bD9ycOZ;b(6f?F7b@JPsyCbKc}oa@%e;F z#OJ&6iNpgFNc@k;WD2VgFYup67m&_FI-2r#i0ijfBMG&LPs9D#jWCNahdN*2$2bCi z!(Rz^h!1pa?&h8#LDyEwxKj6D>Tec)Amb9@7`eR&0||||Ig)UQ{6aLcfxKr)ze4Z` zM?hBvrMa48PwKY8Xu=Niwh@*SlDYp!@(i9vT^scNzd@p#O?wBqc?anZRC;7cLDKzgwIsj{)EF>rSds4bv>^@j?dz zt^M>2cV8mMxZ0|vYZBpHYK-}DWj9GLBi@IwiF=-2-w=P1yoRpc%M?5yJ_9FHcEHsw zM|wEn5urZifq&c$q`eKU($7k`>on!{2-#h|CDh66%GwgY=;Fg&`E(wpAo=GBODJoF z#|R%#zJT@u6(@B@|uv& zLdfUR^)Vyu9%T@^vJ&r0{8hqqou{s3{P$`^x&dJT6(+fxI#OXa@kEz?fe!AG_X(a= zKJh8UH{$0{>$rBOllSyGLFBKe390ojO~nj2$=#s*T7*vs^=Yg!4UZWzX$1KuDmbtspQurJ)Anxq+9Rdj|pTn!NL^&_sU4RDH$s% zUrYQ=;tPon`cI`N#K*XFod|z(_oe>)9=ZIjJ+_2K^{gN1x9)w$Z_{UrpRw<9|9;&Pxy2aX>w)~h$P&*X$gW5=kH$G2j()j8o&EP&G2Mq{4n6Nl1YJ8u5gtjH#)KXI~^-)zI1e$9>V`cF0% zOfzWgs0pL}ew!QkiD&cpe{Y`Q&)HJMzqchWbbHJEh|t1q?Tw%L?Q?$3?fw0&+h6v( z?kMRm-BH&6bVov{=FSGjU%9KgpYGj9!c!7W6a5=x$k(&OIBY8rHjs%Q<=xBC- z_=owhmf!nmQ@`=Y;ZW^QdPRn6eV!*GH2I5nOz8GkpGWu)zpdjx`(3%vrtd}?zxc`F z{<)LU{=t(eq5h}hOlbb;8pc0EHhCLqGZV^X!gH{xesK z_=~SB&XQcdOiHDM@|CNnR4kR894dWvukq_#j}G;`p2vh%-H3_uv){SnxA=3n-}df% zp%s61Gof<#UWo8(Kb#t>{!eU_fA8P;6)EOku(2@@f}sf0Bp4NGiUwyznwao{NOLzb zyfvL!XM&xhP50oXXj93ra5p~KDT7H0Z_Qwio8T9jOuF#3Oy-9)nXU(SUR!hU#)_3! z_v{SL$zl2h3*(lMtMn%Nz>+)X+o+r^lKF!OJ;J-taTI&2$rdy_ty$ z2Hr4f!v*6^=Ez{@{N{_`i}7YcII@8G%mhm$FsQK!rck!)vo~JbHpjcRaPRenuU}uY zJJ>GK6biOaG%3NgiKc6CTp<$|>{y8AuNN{U!{rN`hbG*wsOeDK` zxult$^J;j{wGDecOTvv;=3iU9T;zmze9BEs(_o9|69?^u&Lyg$Ws zN)s+#)r^V=_N`(52==ULUJl0BG8=;Y<=dFxqS~fy_4QB6S_Jzmw zH3LjAqQ7Yv9@5`5jR-#(Xa+_EhYex0KUJmC{|zy(1d9&iVFE+Vk0v~AxEU4^ju~av zL>{\n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "스트림에서 \"%s\" 검색" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" @@ -35,17 +35,19 @@ msgid " from " msgstr "다음에서:" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / %2$s에게 답신 업데이트" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s님이 귀하를 %2$s에 초대하였습니다." -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -77,10 +79,11 @@ msgid "" msgstr "" "%1$s님이 귀하를 %2$s(%3$s)에 초대하였습니다.\n" "\n" -"%2$s 서비스는 여러분의 친구 또는 같은 관심사를 가진 사람들의 최신 소식을 읽을 수 있는 마이크로블로깅 서비스 입니다.\n" +"%2$s 서비스는 여러분의 친구 또는 같은 관심사를 가진 사람들의 최신 소식을 읽" +"을 수 있는 마이크로블로깅 서비스 입니다.\n" "\n" -"자기 자신이나, 생각, 생활에 대한 소식도 다른 사람에게 알릴 수 있습니다. 또 같은 관심사를 지닌 새로운 사람들을 만날 수 있는 좋은 " -"장소입니다.\n" +"자기 자신이나, 생각, 생활에 대한 소식도 다른 사람에게 알릴 수 있습니다. 또 같" +"은 관심사를 지닌 새로운 사람들을 만날 수 있는 좋은 장소입니다.\n" "%1$s님이 말하기를:\n" "%4$s\n" "\n" @@ -97,6 +100,7 @@ msgstr "" "%2$s 보냄\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." @@ -117,25 +121,28 @@ msgstr "" "그럼 이만,%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s의 상태 (%2$s에서)" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s 퍼블릭 스트림" @@ -145,40 +152,57 @@ msgstr "%s 퍼블릭 스트림" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s 및 친구들" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 공개 타임라인" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s 상태" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s 타임라인" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "모두로부터의 업데이트 %s개!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" -msgstr "(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습니다.)" +msgstr "" +"(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습" +"니다.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -187,7 +211,8 @@ msgstr "" "**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " "마이크로블로깅서비스입니다." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." @@ -199,47 +224,60 @@ msgstr ". 가입자는 이름이나 별명으로 기재되어야 합니다." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다." #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 입력." +msgstr "" +"1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 " +"입력." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6글자 이상" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6글자 이상, 잊어 버리지 마십시오!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6글자 이상이 필요합니다." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." -msgstr "추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전달할 수 있습니다." +msgstr "" +"추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전" +"달할 수 있습니다." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." -msgstr "추가한 이메일로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드와 사용법을 확인하여 주시기 바랍니다." +msgstr "" +"추가한 이메일로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드" +"와 사용법을 확인하여 주시기 바랍니다." #: ../actions/smssettings.php:216 actions/smssettings.php:224 msgid "" "A confirmation code was sent to the phone number you added. Check your inbox " "(and spam box!) for the code and instructions on how to use it." -msgstr "추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드와 사용법을 확인하여 주시기 바랍니다." +msgstr "" +"추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" +"드와 사용법을 확인하여 주시기 바랍니다." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -259,7 +297,34 @@ msgstr "추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함( #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API 메서드를 찾을 수 없습니다." @@ -282,16 +347,23 @@ msgstr "API 메서드를 찾을 수 없습니다." #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API 메서드를 구성중 입니다." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "정보" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "수락" @@ -302,6 +374,9 @@ msgstr "수락" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "추가" @@ -319,27 +394,29 @@ msgstr "OpenID 추가 또는 삭제" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "주소" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "초청할 친구들의 주소 (한 줄에 한 명씩)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "모든 예약 구독" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%s의 모든 업데이트" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "\"%s\" 에 일치하는 모든 업데이트" @@ -349,30 +426,37 @@ msgstr "\"%s\" 에 일치하는 모든 업데이트" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "이미 로그인 하셨습니다." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "이미 구독하고 있습니다." #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "정말로 통지를 삭제하시겠습니까?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "구독을 허가" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "앞으로는 자동으로 로그인합니다. 공용 컴퓨터에서는 이용하지 마십시오!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "나에게 구독하는 사람에게 자동 구독 신청" @@ -380,29 +464,38 @@ msgstr "나에게 구독하는 사람에게 자동 구독 신청" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "아바타" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "아바타가 업데이트 되었습니다." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" -msgstr "이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항목을 추가하셨습니까?)" +msgstr "" +"이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항" +"목을 추가하셨습니까?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." -msgstr "이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 주시기 바랍니다." +msgstr "" +"이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 " +"주시기 바랍니다." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "이 전화 번호는 인증 대기중입니다." @@ -413,6 +506,8 @@ msgstr "뒤로 >>" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "자기소개" @@ -420,16 +515,18 @@ msgstr "자기소개" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "자기소개가 너무 깁니다. (최대 140글자)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "이 통지를 지울 수 없습니다." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." @@ -437,6 +534,8 @@ msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "새 비밀번호를 저장 할 수 없습니다." @@ -444,31 +543,34 @@ msgstr "새 비밀번호를 저장 할 수 없습니다." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "취소" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "OpenID consumer object를 생성할 수 없습니다." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "그 Jabbar ID를 정규화 할 수 없습니다." #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "그 이메일 주소를 정규화 할 수 없습니다." #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "변환" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "이메일 처리 변경" @@ -478,11 +580,12 @@ msgid "Change password" msgstr "비밀번호 바꾸기" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "비밀번호 바꾸기" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "프로필 세팅 바꾸기" @@ -492,6 +595,9 @@ msgstr "프로필 세팅 바꾸기" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "인증" @@ -504,12 +610,14 @@ msgstr "주소 인증" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "인증 취소" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "인증 코드" @@ -518,7 +626,8 @@ msgstr "인증 코드" msgid "Confirmation code not found." msgstr "인증 코드가 없습니다." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -536,31 +645,40 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"%s님 축하드립니다! %%%%site.name%%%%에 가입하신 것을 환영합니다!. 이제부터 아래의 일을 할 수 있습니다...\n" +"%s님 축하드립니다! %%%%site.name%%%%에 가입하신 것을 환영합니다!. 이제부터 아" +"래의 일을 할 수 있습니다...\n" "\n" "* [나의 프로필](%s) 로 가셔서 첫 메시지를 포스트 해보십시오.\n" -"* [Jabber 또는 GTalk계정](%%%%action.imsettings%%%%)을 추가하셔서 메신저로 통보를 받아 보십시오.\n" -"* [친구 찾기](%%%%action.peoplesearch%%%%) 알거나 같은 관심사를 가지고 있는 분들을 찾아 보십시오. \n" -"* [프로필 셋팅](%%%%action.profilesettings%%%%)을 업데이트 하셔서 다른분들에게 자신을 알려보십시오. \n" -"* [온라인 도움말](%%%%doc.help%%%%)을 읽으면서 더 많은 기능을 확인해 보십시오. \n" +"* [Jabber 또는 GTalk계정](%%%%action.imsettings%%%%)을 추가하셔서 메신저로 통" +"보를 받아 보십시오.\n" +"* [친구 찾기](%%%%action.peoplesearch%%%%) 알거나 같은 관심사를 가지고 있는 " +"분들을 찾아 보십시오. \n" +"* [프로필 셋팅](%%%%action.profilesettings%%%%)을 업데이트 하셔서 다른분들에" +"게 자신을 알려보십시오. \n" +"* [온라인 도움말](%%%%doc.help%%%%)을 읽으면서 더 많은 기능을 확인해 보십시" +"오. \n" "\n" "다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "연결" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "기존의 계정으로 접속" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "연락하기" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "OpenID를 작성 할 수 없습니다 : %s" @@ -568,35 +686,39 @@ msgstr "OpenID를 작성 할 수 없습니다 : %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "따라가실 수 없습니다 : %s 님은 이미 리스트에 있습니다." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "따라가실 수 없습니다 : 사용자가 없습니다." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "서버에 재접속 할 수 없습니다 : %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "아바타(Avatar)를 저장 할 수 없습니다." #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "새 프로필 정보를 저장 할 수 없습니다." -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "다른 사람을 구독 하실 수 없습니다." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "구독 하실 수 없습니다." @@ -616,15 +738,17 @@ msgstr "리퀘스트 토큰을 엑세스 토큰으로 변환 할 수 없습니 #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "이메일 승인을 삭제 할 수 없습니다." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "예약 구독을 삭제 할 수 없습니다." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "어떠한 상태도 찾을 수 없습니다." @@ -637,29 +761,38 @@ msgstr "리퀘스트 토큰을 취득 할 수 없습니다." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "확인 코드를 추가 할 수 없습니다." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "예약 구독을 추가 할 수 없습니다." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "프로필을 저장 할 수 없습니다." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "자동구독에 사용자를 업데이트 할 수 없습니다." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "사용자 기록을 업데이트 할 수 없습니다." @@ -675,42 +808,48 @@ msgstr "사용자 기록을 업데이트 할 수 없습니다." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "사용자를 업데이트 할 수 없습니다." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "생성" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "이 닉네임으로 새 사용자를 생성" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "새 계정을 생성" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "이미 사용자가 있는 OpenID로 새 계정을 생성" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "확인된 최신의 Jabber/GTalk 계정" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "확인된 최신의 SMS가 가능한 휴대폰 번호" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "확인된 최신의 이메일 계정" @@ -719,23 +858,27 @@ msgid "Currently" msgstr "최신" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "통지 삭제" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "140자 이내에서 자기 소개" @@ -743,11 +886,13 @@ msgstr "140자 이내에서 자기 소개" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "이메일" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "이메일 주소" @@ -757,39 +902,43 @@ msgid "Email Settings" msgstr "이메일 세팅" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "이메일 주소가 이미 존재 합니다." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "이메일 주소 확인서" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "\"UserName@example.org\" 와 같은 이메일 계정" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "이메일 주소" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "별명이나 이메일 계정을 입력하십시오." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "휴대폰으로 받으신 인증번호를 입력하십시오." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "인증 토큰 에러" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "OpenID로 접속 오류" @@ -800,39 +949,46 @@ msgstr "사용자의 접속 오류" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "아바타 추가 오류" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "새 프로필 추가 오류" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "리모트 프로필 추가 오류" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "주소 확인 저장 에러" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "리모트 프로필 저장 오류" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "프로필 저장 오류" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "사용자 저장 오류" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "사용자 저장 오류; 무효한 사용자" @@ -841,6 +997,9 @@ msgstr "사용자 저장 오류; 무효한 사용자" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "사용자 세팅 오류" @@ -851,6 +1010,7 @@ msgstr "프로필 업데이트 오류" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "리모트 프로필 업데이트 오류" @@ -860,33 +1020,36 @@ msgid "Error with confirmation code." msgstr "확인 코드 오류" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "존재하는 별명" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "자주 묻는 질문" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "아바타 업데이트 실패" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "%s의 친구들을 위한 피드" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "%s의 답신 피드" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "%s 태그의 피드" @@ -901,17 +1064,23 @@ msgstr "통지들의 내용 찾기" msgid "Find people on this site" msgstr "이 사이트에 있는 사람 찾기" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." -msgstr "보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." +msgstr "" +"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "실명" @@ -920,23 +1089,33 @@ msgstr "실명" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "실명이 너무 깁니다. (최대 255글자)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "도움말" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "홈" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "홈페이지" @@ -944,21 +1123,27 @@ msgstr "홈페이지" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "홈페이지 주소형식이 올바르지 않습니다." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "이메일로 통보를 포스트 하길 원합니다." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "메신저" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "메신저 주소" @@ -968,76 +1153,87 @@ msgid "IM Settings" msgstr "메신저 설정" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." -msgstr "만일 계정을 이미 가지고 계신다면, 계정과 비밀 번호로 OpenID로 접속하기 위하여 입력해 주세요." +msgstr "" +"만일 계정을 이미 가지고 계신다면, 계정과 비밀 번호로 OpenID로 접속하기 위하" +"여 입력해 주세요." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." -msgstr "만일 새 OpenID를 추가하시려면, 밑의 박스에 입력하신 후 \"추가\"를 누르십시오." +msgstr "" +"만일 새 OpenID를 추가하시려면, 밑의 박스에 입력하신 후 \"추가\"를 누르십시오." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." -msgstr "만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." +msgstr "" +"만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "받은 이메일" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "받은 이메일 계정 삭제" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "기존 비밀 번호가 틀렸습니다" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "틀린 계정 또는 비밀 번호" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "가입하신 이메일로 비밀 번호 재발급에 관한 안내를 보냈습니다." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "옳지 않은 아바타 URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "옳지 않은 이메일 주소 : %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "옳지 않은 홈페이지 '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "옳지 않은 라이선스 URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "옳지 않은 통지 내용" @@ -1052,13 +1248,13 @@ msgid "Invalid notice url" msgstr "옳지 않은 통지 url" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "옳지 않은 프로필 URL '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "옳지 않은 프로필 URL (나쁜 포멧)" @@ -1076,60 +1272,69 @@ msgstr "옳지 않은 크기" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "사용자 이름이나 비밀 번호가 틀렸습니다." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "초대권을 보냈습니다" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "다음 사람들에게 초대권을 보냈습니다:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "초대" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "새 사용자를 초대" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"이 사이트는 [StatusNet](http://status.net/) 마이크로블로깅 소프트웨어 %s 버전을 사용합니다. StatusNet는 " -"[GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 " -"있습니다." +"이 사이트는 [StatusNet](http://status.net/) 마이크로블로깅 소프트웨어 %s 버전" +"을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID가 이미 다른 사용자에 의하여 사용되고 있습니다." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " "add %s to your buddy list in your IM client or on GTalk." msgstr "" -"\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 GTalk 친구목록에 반드시 %s " -"주소를 추가하여 주십시오." +"\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 " +"GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "언어" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "언어가 너무 깁니다. (최대 50글자)" @@ -1138,7 +1343,15 @@ msgstr "언어가 너무 깁니다. (최대 50글자)" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "위치" @@ -1147,7 +1360,12 @@ msgstr "위치" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "위치가 너무 깁니다. (최대 255글자)" @@ -1156,43 +1374,52 @@ msgstr "위치가 너무 깁니다. (최대 255글자)" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "로그인" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "[OpenID](%%doc.openid%%)로 로그인하세요." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" "(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" "%). " msgstr "" -"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%action.register%%) 새 계정을 생성 또는 " -"[OpenID](%%action.openidlogin%%)를 사용해 보세요." +"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" +"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" +"용해 보세요." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "로그아웃" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "더욱 긴 이름을 요구합니다." #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "비밀 번호를 잊으셨나요?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "포스팅을 위한 새 이메일 계정의 생성; 전 이메일 계정은 취소." @@ -1203,16 +1430,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "%%site.name%%에서 어떻게 이메일을 받을지 정하십시오." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "가입한 때" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "%s의 마이크로블로그" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1222,44 +1451,53 @@ msgstr "귀하의 휴대폰의 통신회사는 무엇입니까?" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "나의 글과 파일의 라이선스는 다음과 같습니다 " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "새로운" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "%s에 포스팅 할 새로운 이메일 주소" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "새로운 이메일 주소가 추가 되었습니다." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "새로운 별명" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "새로운 통지" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "새로운 비밀 번호" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." +msgstr "" +"새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1267,7 +1505,13 @@ msgstr "새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "별명" @@ -1276,7 +1520,12 @@ msgstr "별명" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." @@ -1285,47 +1534,60 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십 #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니다." +msgstr "" +"별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니" +"다." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "별명 사용이 불가 합니다." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "따라가고 싶은 사용자의 별명" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "별명 또는 이메일" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "아니오" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Jabber ID가 아닙니다." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "허용되지 않는 요청입니다." #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "통신회사가 선택 되지 않았습니다." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "코드가 입력 되지 않았습니다." @@ -1337,11 +1599,15 @@ msgstr "확인 코드가 없습니다." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "내용이 없습니다!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "이메일이 추가 되지 않았습니다." @@ -1350,7 +1616,9 @@ msgid "No id." msgstr "id가 없습니다." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "이메일 주소가 없습니다." @@ -1361,6 +1629,7 @@ msgstr "리모트 사용자의 별명이 없습니다." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "별명이 없습니다." @@ -1368,12 +1637,14 @@ msgstr "별명이 없습니다." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "취소 할 대기중인 인증이 없습니다." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "휴대폰 번호가 없습니다." @@ -1383,7 +1654,8 @@ msgid "No profile URL returned by server." msgstr "서버로부터 제공되는 프로필 URL가 없습니다." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "그 사용자는 등록된 메일주소가 없습니다." @@ -1395,7 +1667,7 @@ msgstr "리퀘스트가 없습니다!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "결과 없음" @@ -1406,12 +1678,16 @@ msgstr "사이즈가 없습니다." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "그 ID로 발견된 상태가 없습니다." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "발견된 ID의 상태가 없습니다." @@ -1421,13 +1697,15 @@ msgid "No such OpenID." msgstr "그러한 OpenID는 없습니다." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "그러한 문서는 없습니다." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "그러한 통지는 없습니다." @@ -1465,12 +1743,22 @@ msgstr "그러한 예약 구독은 없습니다." #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "그러한 사용자는 없습니다." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "그러한 이메일 주소나 계정을 가진 사용자는 없습니다." @@ -1484,32 +1772,38 @@ msgid "Not a recovery code." msgstr "복구 코드가 아닙니다." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "가입된 사용자가 아닙니다." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "지원하는 형식의 데이터가 아닙니다." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "유효한 Jabber ID가 아닙니다." #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "유효한 OpenID가 아닙니다." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "유효한 이메일 주소가 아닙니다." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "유효한 이메일 주소가 아닙니다." @@ -1517,6 +1811,11 @@ msgstr "유효한 이메일 주소가 아닙니다." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "유효한 별명이 아닙니다" @@ -1536,7 +1835,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "유효한 프로필 URL이 아닙니다. (YADIS 문서가 없습니다)" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "그림 파일이 아니거나 손상된 파일 입니다." @@ -1547,11 +1847,13 @@ msgstr "인증이 되지 않았습니다." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "예상치 못한 반응 입니다." #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "찾지 못함" @@ -1567,11 +1869,15 @@ msgstr "찾지 못함" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "로그인하고 있지 않습니다." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "구독하고 있지 않습니다!" @@ -1588,39 +1894,44 @@ msgid "Notice feed for %s" msgstr "%s의 통지 피드" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "통지에 프로필이 없습니다." #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "통지" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "%s 태그된 통지" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "기존 비밀 번호" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID 계정 셋업" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID 자동 로그인" @@ -1628,29 +1939,34 @@ msgstr "OpenID 자동 로그인" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID 로그인" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID 로의 인증이 취소되었습니다." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID 로의 인증에 실패 : %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID 장해 : %s" @@ -1666,11 +1982,12 @@ msgid "OpenID settings" msgstr "OpenID 설정" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "초대장에 메시지 첨부하기." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "불완전한 업로드." @@ -1680,34 +1997,46 @@ msgstr "불완전한 업로드." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "비밀 번호" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "비밀 번호가 일치하지 않습니다." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "비밀 번호는 6자 이상이어야 합니다." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "비밀 번호 복구가 요청되었습니다." #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "비밀 번호 저장" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "비밀 번호가 일치하지 않습니다." @@ -1727,14 +2056,17 @@ msgid "People search" msgstr "사람 찾기" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "개인적인" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "개인적인 메시지" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "지역번호와 함께 띄어쓰기 없이 번호를 적어 주세요." @@ -1743,10 +2075,12 @@ msgid "" "Please check these details to make sure that you want to subscribe to this " "user's notices. If you didn't just ask to subscribe to someone's notices, " "click \"Cancel\"." -msgstr "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소\"를 클릭해 주세요." +msgstr "" +"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" +"\"를 클릭해 주세요." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Jabber/GTalk의 상태가 변경되었을 때 통지를 보냅니다." @@ -1755,7 +2089,9 @@ msgstr "Jabber/GTalk의 상태가 변경되었을 때 통지를 보냅니다." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "설정" @@ -1764,42 +2100,52 @@ msgstr "설정" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "설정이 저장되었습니다." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "언어 설정" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "개인정보 취급방침" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "프로필" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "프로필 URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "프로필 세팅" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "알 수 없는 프로필" @@ -1808,17 +2154,19 @@ msgid "Public Stream Feed" msgstr "퍼블릭 스트림 피드" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "퍼블릭 타임라인" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Jabber/GTalk 계정을 위한 MicroID의 생성" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "이메일 주소를 위한 MicroID의 생성" @@ -1828,12 +2176,14 @@ msgid "Recent Tags" msgstr "최근 태그" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "복구" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "비밀 번호 복구" @@ -1846,37 +2196,45 @@ msgstr "알 수 없는 취소를 위한 리커버리 코드" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "회원가입" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "가입이 허용되지 않습니다." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "회원 가입이 성공적입니다." #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "거부" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "자동 로그인" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "리모트 프로필과 일치하는 것이 없습니다." #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "리모트 구독 예약" @@ -1890,6 +2248,9 @@ msgstr "리모트 구독 예약" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "삭제" @@ -1898,41 +2259,50 @@ msgstr "삭제" msgid "Remove OpenID" msgstr "OpenID 삭제" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." -msgstr "마지막 OpenID를 삭제하면, 로그인 할 수 없게 됩니다! 삭제하기 전에, 다른 OpenID를 추가해 주십시오." +msgstr "" +"마지막 OpenID를 삭제하면, 로그인 할 수 없게 됩니다! 삭제하기 전에, 다른 " +"OpenID를 추가해 주십시오." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "답신" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "%s에 답신" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "초기화" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "비밀 번호 초기화" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS 휴대폰 번호" @@ -1941,17 +2311,18 @@ msgstr "SMS 휴대폰 번호" msgid "SMS Settings" msgstr "SMS 세팅" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS 인증" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "위와 같은 비밀 번호" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "위와 같은 비밀 번호. 필수 사항." @@ -1964,12 +2335,21 @@ msgstr "위와 같은 비밀 번호. 필수 사항." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "저장" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "검색" @@ -1979,63 +2359,78 @@ msgid "Search Stream Feed" msgstr "스트림 피드를 검색" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." -msgstr "%%site.name%% 의 통지를 내용으로부터 검색. 검색어는 스페이스로 구분한다; 적어도 3글자 이상 필요." +msgstr "" +"%%site.name%% 의 통지를 내용으로부터 검색. 검색어는 스페이스로 구분한다; 적어" +"도 3글자 이상 필요." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " "Separate the terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; 적어도 3글자 이상 필요." +msgstr "" +"%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " +"적어도 3글자 이상 필요." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "통신 회사를 선택 하세요." #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "보내기" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "새로운 통지를 올리려면 이 주소로 메일을 보내십시오/" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "새로운 예약 구독의 통지를 이메일로 보내주세요." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk 로 통지를 보내주세요." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." -msgstr "통지를 SMS로 보내주세요; 물론 통신사로부터 바가지 요금을 문다는 것은 알고 있습니다." +msgstr "" +"통지를 SMS로 보내주세요; 물론 통신사로부터 바가지 요금을 문다는 것은 알고 있" +"습니다." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." +msgstr "" +"내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "설정" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "설정 저장" @@ -2055,27 +2450,32 @@ msgid "Something weird happened." msgstr "예측 하지 못한 사태가 발생했습니다." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "죄송합니다. 이메일이 허용되지 않습니다." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "죄송합니다. 귀하의 이메일이 아닙니다." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "소스 코드" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "통계" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "저장된 OpenID를 찾을 수 없습니다." @@ -2083,24 +2483,28 @@ msgstr "저장된 OpenID를 찾을 수 없습니다." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "구독" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "구독자" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "구독 허가" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "구독 거부" @@ -2108,28 +2512,35 @@ msgstr "구독 거부" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "구독" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "파일을 올리는데 시스템 오류 발생" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "태그" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "문자" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "문자 검색" @@ -2149,6 +2560,7 @@ msgid "That confirmation code is not for you!" msgstr "그 인증 코드는 귀하의 것이 아닙니다!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "그 이메일 주소는 이미 다른 사용자의 소유입니다." @@ -2158,63 +2570,73 @@ msgid "That file is too big." msgstr "파일 사이즈가 너무 큽니다." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "그 Jabber ID는 이미 귀하의 것입니다." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "그 이메일 주소는 이미 귀하의 것입니다." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "그 휴대폰 번호는 이미 귀하의 것입니다." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "그 Jabber ID는 귀하의 것이 아닙니다." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "그 이메일 주소는 귀하의 것이 아닙니다." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "그 휴대폰 번호는 귀하의 것이 아닙니다." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "옳지 않은 메신저 계정 입니다." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "옳지 않은 인증 번호 입니다." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "그 휴대폰 번호는 이미 다른 사용자의 것입니다." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "너무 깁니다. 통지의 최대 길이는 255글자 입니다." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" 는 귀하의 계정으로 승인되었습니다." @@ -2223,74 +2645,90 @@ msgstr "\"%s\" 는 귀하의 계정으로 승인되었습니다." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "주소가 삭제되었습니다." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 승인 방법에 대하여 읽어보십시오. " -"귀하의 구독 토큰은 : " +"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " "subscription." msgstr "" -"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 해지 방법에 대하여 읽어보십시오." +"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "%s의 통지를 받고 있는 사람" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "귀하의 통지를 받고 있는 사람" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "%s님이 받고 있는 통지의 사람" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "귀하의 통지를 받고 있는 사람" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "자동 구독 신청이 된 사용자:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "이 인증 코드는 오래됐습니다. 다시 발급 받아 주십시오." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." -msgstr "이 양식은 자동으로 등록됩니다. 자동으로 되지 않는 경우는, 등록을 클릭해 주세요. OpenID 프로바이더에 전송 됩니다." +msgstr "" +"이 양식은 자동으로 등록됩니다. 자동으로 되지 않는 경우는, 등록을 클릭해 주세" +"요. OpenID 프로바이더에 전송 됩니다." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " "to a local account. You can either create a new account, or connect with " "your existing account, if you have one." msgstr "" -"%s 계정으로 최초 로그인입니다. OpenID와의 연결이 필요합니다. 계정을 새로 생성하거나 기존의 계정으로 연결 하실 수 있습니다." +"%s 계정으로 최초 로그인입니다. OpenID와의 연결이 필요합니다. 계정을 새로 생성" +"하거나 기존의 계정으로 연결 하실 수 있습니다." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "이 메서드는 등록 또는 삭제를 요구합니다." @@ -2299,47 +2737,63 @@ msgstr "이 메서드는 등록 또는 삭제를 요구합니다." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "이 메서드는 등록을 요구합니다." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "타임존" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "타임존이 설정 되지 않았습니다." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"구독하려면, [로그인](%%action.login%%)하거나, 새 계정을 [등록](%%action.register%%)하십시오. 이미 " -"계정이 [호환되는 마이크로블로깅 사이트]((%%doc.openmublog%%)에 계정이 있으면, 아래에 프로파일 URL을 입력하십시오." +"구독하려면, [로그인](%%action.login%%)하거나, 새 계정을 [등록](%%action." +"register%%)하십시오. 이미 계정이 [호환되는 마이크로블로깅 사이트]((%%doc." +"openmublog%%)에 계정이 있으면, 아래에 프로파일 URL을 입력하십시오." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "두 개의 사용자 ID나 대화명을 입력해야 합니다." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" @@ -2351,15 +2805,22 @@ msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "잘못된 폼 제출" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "잘못된 비밀 번호 지정" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "알려지지 않은 행동" @@ -2372,7 +2833,9 @@ msgstr "OMB 프로토콜의 알려지지 않은 버전" msgid "" "Unless otherwise specified, contents of this site are copyright by the " "contributors and available under the " -msgstr "따로 지정하지 않는다면, 이 사이트의 내용의 저작권은 작성한 사람에게 있으며 다음 라이선스로 이용할 수 있습니다: " +msgstr "" +"따로 지정하지 않는다면, 이 사이트의 내용의 저작권은 작성한 사람에게 있으며 다" +"음 라이선스로 이용할 수 있습니다: " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2388,38 +2851,47 @@ msgstr "구독 해제" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "지원되지 않는 OMB 버전" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "지원하지 않는 그림 파일 형식입니다." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "SMS에 의한 업데이트" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "인스턴트 메신저에 의한 업데이트" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%1$s 및 %2$s에 있는 친구들의 업데이트!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "올리기" @@ -2430,20 +2902,24 @@ msgid "" "site license, also. Use a picture that belongs to you and that you want to " "share." msgstr "" -"여기에 새 아바타이미지를 올려보세요. 업로드후에는 사진을 편집할 수 없습니다. 사이즈 영역을 늘리거나 줄일 수 있습니다. 그것은 사이트의 " -"라이선스하에 있게됩니다. 당신의 소유이면서 공유하고 싶은 사진을 이용해보세요." +"여기에 새 아바타이미지를 올려보세요. 업로드후에는 사진을 편집할 수 없습니다. " +"사이즈 영역을 늘리거나 줄일 수 있습니다. 그것은 사이트의 라이선스하에 있게됩" +"니다. 당신의 소유이면서 공유하고 싶은 사진을 이용해보세요." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" msgstr "새 프로필 사진 올리기" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "다음 양식을 이용해 친구와 동료를 이 서비스에 초대하십시오." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "업데이트나 공지, 비밀번호 찾기에 사용하세요." @@ -2467,11 +2943,16 @@ msgstr "살펴 보고 있는 사용자가 없습니다." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "이용자가 프로필을 가지고 있지 않습니다." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "이용자 닉네임" @@ -2480,29 +2961,33 @@ msgid "User not found." msgstr "이용자가 없습니다." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "당신이 주로 생활하는 곳이 어떤 타임존입니까?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "뭐하세요? %?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "%S 잘못된 그림 파일 타입입니다. " #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "%S 잘못된 그림 파일 사이즈입니다." @@ -2510,7 +2995,9 @@ msgstr "%S 잘못된 그림 파일 사이즈입니다." #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "네, 맞습니다." @@ -2523,7 +3010,8 @@ msgstr "당신은 이미 오픈ID를 가지고 있습니다." msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." -msgstr "영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." +msgstr "" +"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2531,11 +3019,12 @@ msgid "You are already logged in!" msgstr "당신은 이미 로그인되어 있습니다." #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "당신은 다음 사용자를 이미 구독하고 있습니다." #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "당신은 지정한 회원과 친구가 아닙니다." @@ -2551,46 +3040,56 @@ msgstr "계정을 새로 만들면 새로운 게시글을 작성할 수 있습 #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다." +msgstr "" +"당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." -msgstr "당신은 \"Remove\"로 표기된 버튼클릭을 통해 계정에서 오픈ID를 제거할 수 있습니다." +msgstr "" +"당신은 \"Remove\"로 표기된 버튼클릭을 통해 계정에서 오픈ID를 제거할 수 있습니" +"다." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아래 당신의 주소와 환경설정을 조정하세요." +"당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아" +"래 당신의 주소와 환경설정을 조정하세요." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." -msgstr "사람들이 당신에 대해 좀 더 잘 알 수 있도록 여기 당신의 개인 프로필을 업데이트 할 수 있습니다. " +msgstr "" +"사람들이 당신에 대해 좀 더 잘 알 수 있도록 여기 당신의 개인 프로필을 업데이" +"트 할 수 있습니다. " #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "당신은 로컬 구독을 사용할 수 있습니다." #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "당신은 프로필을 우리에게 전송하지 않았다." -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2602,89 +3101,104 @@ msgid "" "Faithfully yours,\n" "%4$s" msgstr "" -"포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시오.이메일 사용법은 %3$s 페이지를 " -"보십시오.안녕히,%4$s" +"포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시" +"오.이메일 사용법은 %3$s 페이지를 보십시오.안녕히,%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "당신은 다른 사용자의 상태를 삭제하지 않아도 된다." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "로그인을 해야 다른 사용자를 %s에 초대할 수 있습니다." #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -"당신의 초대를 받은 사람들이 수락하고, 사이트에 등록할때 공지를 받을 수 있습니다. 커뮤니티를 키워주셔서 대단히 감사합니다. ^^" +"당신의 초대를 받은 사람들이 수락하고, 사이트에 등록할때 공지를 받을 수 있습니" +"다. 커뮤니티를 키워주셔서 대단히 감사합니다. ^^" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "당신은 인증되었습니다. 아래 새 비밀번호를 입력하세요." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "당신의 오픈ID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "이 서버에서 당신의 닉네임 혹은 당신의 등록된 이메일주소" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 있게 해줍니다. 여기에서 당신의 관련된 " -"오픈ID를 관리하세요." +"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 " +"있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "몇 초 전" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "%d일 전" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "%d시간 전" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "%d분 전" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "%d달 전" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "하루 전" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "1분 전" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "1달 전" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "1년 전" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "1시간 전" @@ -2706,12 +3220,14 @@ msgid "reply" msgstr "답장" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "위 비밀번호와 동일하게" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "지원하지 않는 종류의 파일입니다" @@ -2732,6 +3248,26 @@ msgstr "<< 뒤에" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요." @@ -2740,6 +3276,7 @@ msgid "This notice is not a favorite!" msgstr "이 메시지는 favorite이 아닙니다." #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "favorite을 삭제할 수 없습니다." @@ -2747,22 +3284,28 @@ msgstr "favorite을 삭제할 수 없습니다." msgid "Favor" msgstr "좋아합니다" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "누군가 내 글을 좋아하는 게시글로 추가했을때, 이메일을 보냅니다." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "이 게시글은 이미 좋아하는 게시글입니다." #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "좋아하는 게시글을 생성할 수 없습니다." @@ -2772,11 +3315,13 @@ msgstr "좋아하는 게시글 취소" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s 좋아하는 게시글" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "%s의 좋아하는 게시글의 피드" @@ -2818,33 +3363,45 @@ msgid "Login with your username and password. " msgstr "당신의 계정과 비밀번호로 로그인하세요." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "메시지가 너무 길어요. 최대로 140자까지 입력하실 수 있습니다." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "수신자를 지정하지 않았습니다." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;" +msgstr "" +"자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "그러한 사용자가 없습니다." #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "새로운 메시지입니다." @@ -2855,7 +3412,8 @@ msgstr "프로필매칭 없이 바로 글을 씁니다." #: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[오픈ID](%%doc.openid%%) 는 당신이 많은 사이트에 로그인할 수 있게 합니다." +msgstr "" +"[오픈ID](%%doc.openid%%) 는 당신이 많은 사이트에 로그인할 수 있게 합니다." #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " @@ -2898,6 +3456,11 @@ msgstr "당신은 여기에 당신의 개인적인 프로필을 업데이트 할 #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "프로필 매칭이 없는 사용자" @@ -2926,6 +3489,8 @@ msgid "New password successfully saved. " msgstr "새 비밀번호를 성공적으로 저장했습니다." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "비밀번호는 6자리 이상이어야 합니다." @@ -2934,7 +3499,9 @@ msgstr "비밀번호는 6자리 이상이어야 합니다." msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " "want to..." -msgstr "축하합니다 %s님!! %%%%site.name%%%%에 오신걸 환영합니다. 다음과 같은 일을 하실 수 있습니다..." +msgstr "" +"축하합니다 %s님!! %%%%site.name%%%%에 오신걸 환영합니다. 다음과 같은 일을 하" +"실 수 있습니다..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -2946,12 +3513,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "구독하기 위해 당신은 로그인할 수 있습니다. (%%action,login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "%s의 좋아하는 게시글을 위한 피드" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "좋아하는 게시글을 복구할 수 없습니다." @@ -2959,7 +3529,7 @@ msgstr "좋아하는 게시글을 복구할 수 없습니다." msgid "No such message." msgstr "그러한 메시지가 없습니다." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "오직 발송자가 수신자가 이 메시지를 읽는것이 좋습니다." @@ -2983,51 +3553,70 @@ msgid "Mobile carrier for your phone. " msgstr "당신의 폰을 위한 모바일 전송" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "%s에게 직접 메시지" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "%s에게 모든 직접 메시지" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "당신이 보낸 직접 메시지" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "%s에서 보낸 모든 직접 메시지" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "메시지 내용이 없습니다!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "받는 사용자가 없습니다." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "당신의 친구가 아닌 사용자에게 직접 메시지를 보낼 수 없습니다." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / %s의 좋아하는 글들" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." @@ -3045,17 +3634,22 @@ msgstr "" #: actions/twittersettings.php:27 msgid "" "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니다." +msgstr "" +"당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니" +"다." #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "트위터 환경설정" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "트위터 계정" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "현재 유효한 트위터 계정" @@ -3064,6 +3658,7 @@ msgid "Twitter Username" msgstr "트위터 사용자이름" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "공백을 없애주세요." @@ -3072,24 +3667,31 @@ msgid "Twitter Password" msgstr "트위터 비밀번호" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "자동으로 트위터에 게시글을 보냅니다." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "트위터에 로컬 \"@\"답장으로 보냅니다." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "여기에서 내 트위터 친구들을 구독합니다." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." -msgstr "사용자 이름은 단지 숫자이거나, 대소문자, 그리고 언더바(_)로 구성되어야 하고, 최대 15자 이내이어야 합니다." +msgstr "" +"사용자 이름은 단지 숫자이거나, 대소문자, 그리고 언더바(_)로 구성되어야 하고, " +"최대 15자 이내이어야 합니다." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "트위터 자격을 증명할 수 없습니다." @@ -3100,33 +3702,43 @@ msgstr "트위터로부터 \"%s\"를 위한 계정정보를 불러올 수 없습 #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "트위터 환경설정을 저장할 수 없습니다." #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "트위터 환결설정이 저장되었습니다." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "이것은 당신의 트위터 계정이 아닙니다." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "트위터 사용자를 제거할 수 없습니다." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "트위터 계정이 제거되었습니다." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "트위터 환경설정을 저장할 수 없습니다." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "트위터 환경설정이 저장되었습니다." @@ -3145,18 +3757,19 @@ msgid "The subscription has been rejected, but no " msgstr "이 구독이 거절되었습니다." #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "실행결과" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "실행 완료" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "실행 실패" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "죄송합니다. 이 명령은 아직 실행되지 않았습니다." @@ -3166,89 +3779,111 @@ msgid "Subscriptions: %1$s\n" msgstr "구독: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "이용자의 지속적인 게시글이 없습니다." -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "게시글이 좋아하는 글로 지정되었습니다." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "전체이름: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "위치: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "홈페이지: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "자기소개: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "%s에게 보낸 직접 메시지" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "직접 메시지 보내기 오류." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "구독하려는 사용자의 이름을 지정하십시오." -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "%s에게 구독되었습니다." -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "구독을 해제하려는 사용자의 이름을 지정하십시오." -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "%s에서 구독을 해제했습니다." #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "명령이 아직 실행되지 않았습니다." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "알림끄기." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "알림을 끌 수 없습니다." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "알림이 켜졌습니다." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "알림을 켤 수 없습니다." @@ -3256,11 +3891,11 @@ msgstr "알림을 켤 수 없습니다." msgid "Commands:\n" msgstr "명령: \n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "메시지를 삽입할 수 없습니다." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다." @@ -3277,7 +3912,7 @@ msgstr "" "당신은 %1$s에 새 포스팅 주소를 가진다. \n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "%s로부터 새로운 비밀 메시지가 도착하였습니다." @@ -3291,7 +3926,7 @@ msgstr "" "%1$s(%2$s)님이 당신에게 비밀 메시지를 보냈습니다 : \n" " \n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다." @@ -3300,31 +3935,39 @@ msgid "This form should automatically submit itself. " msgstr "이 양식은 자동적으로 스스로 제출됩니다." #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "좋아하는 글들" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "%s 님의 좋아하는 글들" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "이용자" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "받은 쪽지함" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "당신의 받은 메시지들" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "보낸 쪽지함" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "당신의 보낸 메시지들" @@ -3337,14 +3980,19 @@ msgid "Twitter integration options" msgstr "트위터 통합옵션" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "에게" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "메시지를 분리할 수 없습니다." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s 와 친구들, %d 페이지" @@ -3354,21 +4002,31 @@ msgid "You can upload your personal avatar." msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "아바타 설정" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "원래 설정" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "미리보기" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "자르기" @@ -3385,34 +4043,43 @@ msgid "There was a problem with your session token. " msgstr "당신의 세션토큰에 문제가 있습니다." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "당신의 아바타가 될 이미지영역을 지정하세요." #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "파일 데이터를 잃어버렸습니다." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "파일을 잃어버렸습니다." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "알 수 없는 종류의 파일입니다" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "프로필을 지정하지 않았습니다." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "해당 ID의 프로필이 없습니다." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "사용자를 차단합니다." @@ -3420,11 +4087,11 @@ msgstr "사용자를 차단합니다." msgid "Are you sure you want to block this user? " msgstr "이 사용자를 차단하고 싶은 게 맞습니까?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "당신은 이미 이 사용자를 차단하고 있습니다." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "정보차단을 저장하는데 실패했습니다." @@ -3442,38 +4109,56 @@ msgstr "당신은 영구적으로 이 게시글을 삭제하려고 합니다." msgid "Add to favorites" msgstr "좋아하는 게시글로 추가하기" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "%s 그룹 편집" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "받은쪽지함은 그룹이 일할 수 있도록 활성화되어야 한다." #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "그룹을 만들기 위해서는 로그인해야 합니다." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "닉네임이 없습니다" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "그러한 그룹이 없습니다." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "관리자만 그룹을 편집할 수 있습니다." -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "다음 양식을 이용해 그룹을 편집하십시오." @@ -3482,14 +4167,15 @@ msgid "Nickname must have only lowercase letters " msgstr "닉네임은 오직 영문소문자이어야 합니다." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "설명이 너무 길어요. (최대 140글자)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "그룹을 업데이트 할 수 없습니다." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "옵션들이 저장되었습니다." @@ -3506,7 +4192,8 @@ msgstr "포스팅을 위해 새 이메일 주소를 만드세요." msgid "Send me email when someone " msgstr "내게 이메일을 보내세요." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "친구들이 내게 이메일이나 쪽지를 보낼 수 있도록 허용합니다." @@ -3518,7 +4205,7 @@ msgstr "해당 이메일 주소는 이미 등록되어있습니다." msgid "A confirmation code was sent to the email address you added. " msgstr "인증코드가 당신이 추가한 이메일주소로 발송되었습니다" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "서버에러입니다. - 사용자 정보를 불러올 수 없습니다." @@ -3532,51 +4219,66 @@ msgstr "만약 당신이 자동 업데이트를 위해 %s 애플리케이션을 msgid "Allow %s to update my Facebook status" msgstr "내 페이스북 상태에 업데이트를 위해 %s를 허용합니다." -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "통과! (넘어갑니다)" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "게시글이 없습니다." #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "페이지수" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "뒷 페이지" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "앞 페이지" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "%s 사용을 위해 친구초대를 해주셔서 대단히 감사합니다." -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "초대장이 무사히 발송되었습니다." -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "당신은 %s에 초대되었습니다." -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "%s 이용을 위해 당신이 친구를 초대하세요." -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "친구들은 이미 %s를 사용중입니다." -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "초대장을 발송합니다." @@ -3618,12 +4320,14 @@ msgstr "만약 당신이 자동업데이트를 위해 %s를 좋아한다면" msgid "Sync preferences" msgstr "싱크 설정" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "좋아하는글 취소" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "인기있는 게시글" @@ -3637,7 +4341,8 @@ msgid "The most popular notices on the site right now." msgstr "사이트에서 지금 가장 인기있는 게시글" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "인기있는 회원" @@ -3651,15 +4356,17 @@ msgstr "인기있는 회원, %d페이지" msgid "A selection of some of the great users on %s" msgstr "%s의 훌륭한 회원의 일부 선택" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "이 회원은 구독으로부터 당신을 차단해왔다." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "ID가 없습니다." #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "그룹 로고" @@ -3667,11 +4374,13 @@ msgstr "그룹 로고" msgid "You can upload a logo image for your group." msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "로고를 업데이트했습니다." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "로고 업데이트에 실패했습니다." @@ -3690,7 +4399,8 @@ msgid "A list of the users in this group." msgstr "이 그룹의 회원리스트" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "그룹" @@ -3705,6 +4415,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% 그룹은 당신에게 얘기할 사람을 찾게해줍니다." #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "새 그룹을 만듭니다." @@ -3714,7 +4425,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "이름과 위치, 상세설명으로 %%site.name%% 에서 그룹을 찾습니다." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "그룹 찾기" @@ -3736,20 +4447,20 @@ msgstr "Jabber/GTalk(구글토크)를 통해 내게 답장을 보냅니다." msgid "A confirmation code was sent " msgstr "인증코드가 보내졌습니다." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "그룹가입을 위해서는 로그인이 필요합니다." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "당신은 이미 이 그룹의 멤버입니다." -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "그룹 %s에 %s는 가입할 수 없습니다." -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s 는 그룹 %s에 가입했습니다." @@ -3758,15 +4469,18 @@ msgstr "%s 는 그룹 %s에 가입했습니다." msgid "Inboxes must be enabled for groups to work." msgstr "받은쪽지함은 그룹이 일하기 위해 수신가능해야 합니다." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "그룹을 떠나기 위해서는 로그인해야 합니다." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "그러한 그룹이 없습니다." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." @@ -3774,21 +4488,25 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." msgid "You may not leave a group while you are its administrator." msgstr "당신은 관리자일동안 해당 그룹을 떠나지 않는것이 좋습니다." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "멤버십 기록을 발견할 수 없습니다." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s가 그룹%s를 떠났습니다." -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "사이트에 로그인하세요." @@ -3800,15 +4518,17 @@ msgstr "현재 상태가 없습니다." msgid "New group" msgstr "새로운 그룹" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "새 그룹을 만들 수 없습니다." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "그룹 맴버십을 세팅할 수 없습니다." @@ -3820,18 +4540,22 @@ msgstr "너무 길어요." msgid "Don't send a message to yourself; " msgstr "자신에게 메시지를 전송하지 말아주세요." -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "게시글이 등록되었습니다." -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax 에러입니다." #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "이 사용자는 nudge를 허용하지 않았고, 아직 그의 이메일을 인증하지 않았습니다." +msgstr "" +"이 사용자는 nudge를 허용하지 않았고, 아직 그의 이메일을 인증하지 않았습니다." #: actions/nudge.php:94 msgid "Nudge sent" @@ -3841,7 +4565,7 @@ msgstr "찔러 보기를 보냈습니다." msgid "Nudge sent!" msgstr "찔러 보기를 보냈습니다!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "OpenID 로그인" @@ -3865,11 +4589,13 @@ msgstr "URL 자동 줄이기" msgid "Service" msgstr "서비스" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "사용할 URL 자동 줄이기 서비스" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL 줄이기 서비스 너무 깁니다. (최대 50글자)" @@ -3877,16 +4603,17 @@ msgstr "URL 줄이기 서비스 너무 깁니다. (최대 50글자)" msgid "Change your password." msgstr "비밀번호를 변경하세요." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "비밀번호 변경" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "유효한 태그가 아닙니다: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "이용자 셀프 테크 %s - %d 페이지" @@ -3896,11 +4623,12 @@ msgstr "이용자 셀프 테크 %s - %d 페이지" msgid "These are users who have tagged themselves \"%s\" " msgstr "이 사람들은 그들 스스로가 \"%s\" 태그를 추가했습니다." -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "프로필 정보" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분." @@ -3910,20 +4638,25 @@ msgid "Automatically subscribe to whoever " msgstr "누구에게나 자동구독" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "유효하지 않은태그: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "태그를 저장할 수 없습니다." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "공개 타임라인, %d 페이지" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "공개 stream을 불러올 수 없습니다." @@ -3933,8 +4666,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) 서비스 " -"입니다." +"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " +"서비스 입니다." #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -3945,11 +4678,13 @@ msgstr "공개 태그 클라우드" msgid "These are most popular recent tags on %s " msgstr "다음은 %에서 가장 인기 있는 최근 태그입니다." -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "태그 클라우드" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "죄송합니다. 단지 초대된 사람들만 등록할 수 있습니다." @@ -3998,7 +4733,8 @@ msgstr "(당신은 이메일로 메시지를 받아야 합니다." msgid "That's a local profile! Login to subscribe." msgstr "그것은 로컬프로필입니다. 구독을 위해서는 로그인하십시오." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "%s에 답장, %d 페이지" @@ -4008,50 +4744,71 @@ msgstr "%s에 답장, %d 페이지" msgid "%s favorite notices, page %d" msgstr "%s 좋아하는 게시글, %d 페이지" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s 그룹" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s 그룹, %d 페이지" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "그룹 프로필" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "설명" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "그룹 행동" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "%s 그룹을 위한 공지피드" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "회원" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(없습니다.)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "모든 회원" @@ -4061,14 +4818,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/Micro-" -"blogging)의 사용자 그룹입니다. " +"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" +"Micro-blogging)의 사용자 그룹입니다. " #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "오직 보내는 사람과 받는 사람" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, %d 페이지" @@ -4078,30 +4835,37 @@ msgid "'s profile" msgstr "'의 프로필" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "이용자 프로필" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "사진" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "사용자 동작" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "이 회원에게 직접 메시지를 보냅니다." -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "메시지" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "모든 구독자" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "모든 그룹" @@ -4111,8 +4875,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/Micro-" -"blogging) 서비스에 계정을 갖고 있습니다." +"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" +"Micro-blogging) 서비스에 계정을 갖고 있습니다." #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4126,7 +4890,7 @@ msgstr "SMS를 통해 게시글을 내게 보냅니다." msgid "A confirmation code was sent to the phone number you added. " msgstr "추가한 전화 번호로 인증 코드를 보냈습니다." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "휴대전화 사업자" @@ -4184,16 +4948,17 @@ msgstr "게시글 쓰는 사람들" msgid "These are the people whose " msgstr "하는 사람들" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "%s 으로 태그된 게시글, %d 페이지" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "가장 최근에 \"%s\" 으로 태그된 메시지들" @@ -4215,26 +4980,29 @@ msgstr "태그 %s" msgid "Tag user" msgstr "태그 사용자" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" -msgstr "사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세요." +msgstr "" +"사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세" +"요." #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." +msgstr "" +"당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "태그를 저장할 수 없습니다." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양식을 사용하세요." @@ -4242,20 +5010,23 @@ msgstr "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양 msgid "No such tag." msgstr "그러한 태그가 없습니다." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "마이크로블로그는 %s 으로 태그되었습니다." -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "사용자 차단에 실패했습니다." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "사용자 차단 해제에 실패했습니다." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "찾을 수가 없습니다." @@ -4263,15 +5034,16 @@ msgstr "찾을 수가 없습니다." msgid "Add your Twitter account to automatically send " msgstr "자동으로 보내려면 트위터 계정을 추가하십시오." -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "트위터 사용자 이름" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "트위터 비밀번호" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "트위터 친구들" @@ -4284,143 +5056,154 @@ msgstr "Username은 단지 숫자를 가져야 합니다," msgid "Unable to retrieve account information " msgstr "계정정보를 불러올 수 없습니다." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "차단 제거 에러!" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "요청한 프로필id가 없습니다." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "해당 id의 프로필이 없습니다." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "구독취소 되었습니다." -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s 그룹" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s 그룹, %d 페이지" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "게시글 저장문제. 알려지지않은 회원" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 해보세요." +msgstr "" +"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " +"해보세요." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "아바타를 업로드하세요." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "기타" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "다른 옵션들" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "제목없는 페이지" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "주 사이트 네비게이션" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "개인 프로필과 친구 타임라인" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "프로필이나 텍스트 검색" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "계정" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "당신의 이메일, 아바타, 비밀 번호, 프로필을 변경하세요." -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "IM, SMS, 트위터에 연결하기" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "이 사이트로부터 로그아웃" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "이 사이트 로그인" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "계정 만들기" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "오픈ID로 로그인하기" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "도움이 필요해!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "사이트 공지" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "로컬 뷰" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "페이지 공지" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "보조 사이트 네비게이션" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "모든 것" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "라이선스" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "이 사용자 차단하기" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "차단하기" @@ -4433,11 +5216,14 @@ msgstr "이 게시글 좋아하기 취소" msgid "To use the %s Facebook Application you need to login " msgstr "당신이 필요한 페이스북 어플리케이션 %s의 사용을 위해서 로그인하세요." -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr "새로운 계정" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "발행되었습니다." @@ -4457,31 +5243,36 @@ msgstr "태그 필터링하기" msgid "All" msgstr "모든 것" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "태그" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "좁은 리스트에서 태그 선택하기" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Go " -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "설명" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "140글자로 그룹이나 토픽 설명하기" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "그룹의 위치, \"시/군/구, 도, 나라\"" @@ -4490,20 +5281,20 @@ msgstr "그룹의 위치, \"시/군/구, 도, 나라\"" msgid "Group" msgstr "그룹" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "관리자" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "%s 그룹 속성 편집" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "로고" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "%s logo 추가 혹은 수정" @@ -4534,11 +5325,11 @@ msgstr "가입" msgid "Leave" msgstr "떠나기" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "사용자 이름과 비밀번호로 로그인" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "새 계정을 위한 회원가입" @@ -4560,17 +5351,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s 는 지금 듣고 있습니다." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "위치: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "홈페이지: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4579,7 +5370,7 @@ msgstr "" "소개: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s 사용자가 찔러 봤습니다." @@ -4596,39 +5387,47 @@ msgstr "%1$s (%2$s) 사용자가 요즘에 무엇을 하는지 궁금해 하고, msgid "%1$s just added your notice from %2$s" msgstr "%1$s 사용자가 %2$s의 귀하의 글을 추가했습니다." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "로 부터" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "직접 메시지 보내기" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "게시글 보내기" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "사용 가능한 글자" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "이 게시글에 대한 답장" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "이 게시글에 대해 답장하기" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "답장하기" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "이 게시글 삭제하기" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "삭제" @@ -4649,27 +5448,29 @@ msgstr "이 사용자에게 찔러 보기 메시지 보내기" msgid "Tags in %s's notices" msgstr "%s의 게시글의 태그" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(없습니다)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "공개" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "사용자 그룹" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "최근 태그" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "피쳐링됨" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "인기있는" @@ -4685,31 +5486,33 @@ msgstr "이 사이트에서 그룹 찾기" msgid "Untitled section" msgstr "제목없는 섹션" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "%s 사람들은 구독합니다." -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "%s에 의해 구독되는 사람들" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s 그룹들은 의 멤버입니다." -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "회원이 당신을 차단해왔습니다." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "이 회원을 구독합니다." @@ -4722,10 +5525,11 @@ msgid "Top posters" msgstr "상위 게시글 등록자" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "이 사용자를 차단해제합니다." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "차단해제" @@ -4733,5 +5537,2054 @@ msgstr "차단해제" msgid "Unsubscribe from this user" msgstr "이 사용자로부터 구독취소합니다." +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s의 친구들을 위한 피드" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s의 친구들을 위한 피드" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s의 친구들을 위한 피드" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s 및 친구들" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "아바타가 업데이트 되었습니다." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "당신의 아바타가 될 이미지영역을 지정하세요." + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "%s의 마이크로블로그" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " +"적어도 3글자 이상 필요." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "직접 메시지 보내기 오류." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "스트림에서 \"%s\" 검색" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "퍼블릭 스트림 피드" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "퍼블릭 스트림 피드" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "퍼블릭 스트림 피드" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "생성" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "그룹 프로필" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "'의 프로필" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s의 통지 피드" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s의 통지 피드" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s의 통지 피드" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "%s의 보낸쪽지함" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "아바타" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "프로필 세팅" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" +"드와 사용법을 확인하여 주시기 바랍니다." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "그러한 사용자가 없습니다." + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니" +"다." + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "트위터로부터 \"%s\"를 위한 계정정보를 불러올 수 없습니다." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" +"\"를 클릭해 주세요." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "프로필이나 텍스트 검색" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " +"해보세요." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "IM, SMS, 트위터에 연결하기" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "찔러 보기" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "당신이 필요한 페이스북 어플리케이션 %s의 사용을 위해서 로그인하세요." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n" +"\t%3$s\n" +"\n" +"그럼 이만,%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "검색" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "그러한 문서는 없습니다." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "이 그룹의 회원리스트" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "이 그룹의 회원리스트" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "이용자 프로필" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s 와 친구들, %d 페이지" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "이 그룹의 회원리스트" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "사용자 차단 해제에 실패했습니다." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "인증 코드" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "이 통지를 지울 수 없습니다." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "유효하지 않은태그: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "좋아하는 게시글을 생성할 수 없습니다." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "새로운 통지" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "새로운 통지" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "유효한 별명이 아닙니다" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "프로필을 지정하지 않았습니다." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "회원이 당신을 차단해왔습니다." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "사용자를 차단합니다." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "그룹을 만들기 위해서는 로그인해야 합니다." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "그룹" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "사용자를 업데이트 할 수 없습니다." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "트위터 환경설정을 저장할 수 없습니다." + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "싱크설정이 저장되었습니다." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "관리자만 그룹을 편집할 수 있습니다." + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "관리자" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "결과 없음" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "회원이 당신을 차단해왔습니다." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "메시지" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "프로필을 저장 할 수 없습니다." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 " +"있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "프로필 세팅" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " +"서비스 입니다." + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "당신은 인증되었습니다. 아래 새 비밀번호를 입력하세요." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "비밀 번호 복구가 요청되었습니다." + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "확인 코드 오류" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "이 회원을 구독합니다." + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s 좋아하는 게시글, %d 페이지" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s 그룹을 위한 공지피드" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s 그룹을 위한 공지피드" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s 그룹을 위한 공지피드" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" +"Micro-blogging)의 사용자 그룹입니다. " + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "관리자" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "로컬 사용자 아닙니다." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "%s 태그된 통지" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s 그룹을 위한 공지피드" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" +"Micro-blogging) 서비스에 계정을 갖고 있습니다." + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s 는 지금 듣고 있습니다." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s의 통지 피드" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s의 통지 피드" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "이 게시글은 이미 좋아하는 게시글입니다." + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "이 메시지는 favorite이 아닙니다." + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "공개 stream을 불러올 수 없습니다." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "수신자를 지정하지 않았습니다." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "어떠한 상태도 찾을 수 없습니다." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / %2$s에게 답신 업데이트" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "라이선스" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s 구독" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "프로필 세팅" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "통지를 저장하는데 문제가 발생했습니다." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "%2$s에서 %1$s까지 메시지" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "이용자 프로필" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "프로필" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "올리기" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "비밀번호 바꾸기" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "연결" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "검색" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "로그인" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "차단하기" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "사용자를 차단합니다." + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "%s logo 추가 혹은 수정" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "내용이 없습니다!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "이용자" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "검색" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "홈페이지 주소형식이 올바르지 않습니다." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "그러한 태그가 없습니다." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "%s에게 직접 메시지" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "메시지가 너무 길어요. 최대로 140자까지 입력하실 수 있습니다." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "따라가실 수 없습니다 : 사용자가 없습니다." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "설명이 너무 길어요. (최대 140글자)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "당신은 이미 이 그룹의 멤버입니다." + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "그룹 %s에 %s는 가입할 수 없습니다." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "당신은 해당 그룹의 멤버가 아닙니다." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s 그룹" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s 그룹들은 의 멤버입니다." + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "그룹 행동" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "지원하지 않는 그림 파일 형식입니다." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "사진" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "설명이 너무 길어요. (최대 140글자)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "살펴 보고 있는 사용자가 없습니다." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "인증이 되지 않았습니다." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "리퀘스트 토큰을 엑세스 토큰으로 변환 할 수 없습니다." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "OMB 프로토콜의 알려지지 않은 버전" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "그러한 통지는 없습니다." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "파일을 잃어버렸습니다." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%2$s에 있는 %1$s의 업데이트!" + +# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" +"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" +"용해 보세요." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\" 에 일치하는 모든 업데이트" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "140자 이내에서 자기 소개" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "당신에 대해 소개해주세요." + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "자기소개가 너무 깁니다. (최대 140글자)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "유효한 프로필 URL이 아닙니다. (YADIS 문서가 없습니다)" + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "그것은 로컬프로필입니다. 구독을 위해서는 로그인하십시오." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "리퀘스트 토큰을 취득 할 수 없습니다." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s 그룹을 위한 공지피드" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%2$s에서 %1$s까지 메시지" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s의 좋아하는 게시글을 위한 피드" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s의 좋아하는 게시글을 위한 피드" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s의 좋아하는 게시글을 위한 피드" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s 그룹" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "게시글이 등록되었습니다." + +# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s의 통지 피드" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" +"\"를 클릭해 주세요." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "%S 잘못된 그림 파일 타입입니다. " + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "서버에 재접속 할 수 없습니다 : %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "라코니카 소프트웨어 라이선스" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "찔러 보기를 보냈습니다." + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "이 게시글에 대해 답장하기" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "통지를 저장하는데 문제가 발생했습니다." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "확인 코드가 없습니다." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "이 사이트 로그인" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "통신 회사를 선택 하세요." + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "140글자로 그룹이나 토픽 설명하기" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "140글자로 그룹이나 토픽 설명하기" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "%s의 통지 피드" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "다음에서:" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "favorite을 삭제할 수 없습니다." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "통지 삭제" + #~ msgid "Email address" #~ msgstr "이메일 주소" diff --git a/locale/mk/LC_MESSAGES/statusnet.mo b/locale/mk/LC_MESSAGES/statusnet.mo index 5dec309dd9af9fd57ff98d57e7974d2c3f620ffd..cdc1a395bd49360650c50ed85f8fc959976139a7 100644 GIT binary patch delta 17103 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\n" "Language-Team: LANGUAGE \n" @@ -26,14 +26,14 @@ msgstr "" "#-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Пребарувај го потокот за „%s“" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -46,17 +46,19 @@ msgid " from " msgstr "" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -88,6 +90,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s сега ги следи вашите забелешки за %2$s." @@ -110,25 +113,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s статус на %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Јавниот поток на %s" @@ -138,40 +144,55 @@ msgstr "Јавниот поток на %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s и пријателите" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -180,7 +201,8 @@ msgstr "" "**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е сервис за микроблогирање." @@ -192,30 +214,34 @@ msgstr ". Придонесувачите треба да бидат наведе #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места." #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 или повеќе знаци" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 или повеќе знаци и не ја заборавајте!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -225,6 +251,7 @@ msgstr "" "одобрите %S за да ви испраќа пораки." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -254,7 +281,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -277,16 +331,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "За" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Прифати" @@ -297,6 +358,9 @@ msgstr "Прифати" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Додај" @@ -314,27 +378,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Адреса" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Сите претплати" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Сите новини од %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Сите новини кои се еднакви со бараниот термин „%s“" @@ -344,31 +410,38 @@ msgstr "Сите новини кои се еднакви со бараниот #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Веќе сте најавени." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Веќе сте претплатени!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Одобрете ја претплатата" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Следниот пат најавете се автоматски; не за компјутери кои ги делите со други!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -376,15 +449,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Аватар" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Аватарот е ажуриран." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -395,13 +472,14 @@ msgstr "" "пријатели?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -413,6 +491,8 @@ msgstr "Предходни »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Био" @@ -420,16 +500,18 @@ msgstr "Био" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Не може да се прочита URL-то на аватарот: '%s'" @@ -437,6 +519,8 @@ msgstr "Не може да се прочита URL-то на аватарот: ' #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Новата лозинка не може да се сними" @@ -444,31 +528,34 @@ msgstr "Новата лозинка не може да се сними" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Откажи" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Не е возможно да се инстанцира OpenID објект за потрошувачка." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Ова JabberID не може да се нормализира." #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Промени" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -478,11 +565,12 @@ msgid "Change password" msgstr "Промени ја лозинката" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -492,6 +580,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Потврди" @@ -504,12 +595,14 @@ msgstr "Потврди ја адресата" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Потврдата е откажана" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -518,7 +611,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "Кодот за потврда не е пронајден." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -538,20 +632,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Поврзи се" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Поврзи се со постоечка сметка" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Контакт" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "OpenID формуларот не може да се креира:%s" @@ -559,35 +657,39 @@ msgstr "OpenID формуларот не може да се креира:%s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Не може да се пренасочи кон серверот: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Информациите за аватарот не може да се снимат" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Информациите за новиот профил не може да се снимат" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -607,15 +709,17 @@ msgstr "Белезите за барање не може да се конвер #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Не може да се креира потврда за е-пошта." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Претплата не може да се избрише." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -628,29 +732,38 @@ msgstr "Не може да се земе белег за барање." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Кодот за потврда не може да се внесе." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Не може да се внесе нова претплата." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Профилот не може да се сними." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -666,42 +779,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Корисникот не може да се освежи/" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Креирај" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Креирај нов корисник со овој прекар." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Креирај нова сметка" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Креирање на нова сметка за OpenID што веќе има корисник." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Моментално потврдена Jabber/GTalk адреса." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -710,23 +829,27 @@ msgid "Currently" msgstr "Моментално" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Одговор од внесот во базата: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." @@ -734,11 +857,13 @@ msgstr "Опишете се себе си и сопствените интере #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Е-пошта" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -748,39 +873,43 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Адресата веќе постои." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Потврдување на адресата" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Внесете прекар или е-пошта" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Грешка во проверувањето на белегот" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Грешка во поврзувањето на корисникот со OpenID" @@ -791,39 +920,46 @@ msgstr "Грешка во поврзувањето на корисникот." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Грешка во внесувањето на аватарот" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Грешка во внесувањето на новиот профил" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Грешка во внесувањето на оддалечениот профил" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Грешка во снимањето на потвдата за адресата." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Грешка во снимањето на оддалечениот профил" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Грешка во снимањето на профилот." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Грешка во снимањето на корисникот." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Грешка во снимањето на корисникот; неправилен." @@ -832,6 +968,9 @@ msgstr "Грешка во снимањето на корисникот; непр #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Грешка во поставувањето на корисникот." @@ -842,6 +981,7 @@ msgstr "Грешка во освежувањето на профилот" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Грешка во освежувањето на оддалечениот профил" @@ -851,33 +991,36 @@ msgid "Error with confirmation code." msgstr "Грешка со кодот за потврдување." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Постоечки прекар" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "ЧПП" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Товарањето на аватарот не успеа." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Канал со пријатели на %S" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Канал со одговори на %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -892,7 +1035,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -905,6 +1048,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Цело име" @@ -913,23 +1061,33 @@ msgstr "Цело име" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Целото име е предолго (максимум 255 знаци)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Помош" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Дома" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Домашна страница" @@ -937,21 +1095,27 @@ msgstr "Домашна страница" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Домашната страница не е правилно URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM адреса" @@ -961,7 +1125,7 @@ msgid "IM Settings" msgstr "Поставки за IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -969,7 +1133,7 @@ msgstr "" "Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за " "истата да ја поврзете со Вашиот OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -977,7 +1141,7 @@ msgstr "" "Ако сакате да додадете OpenID на Вашата сметка, внесете го подолу и кликнете " "„Додај“." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -986,25 +1150,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Неточна стара лозинка" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Неточно корисничко име или лозинка" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1013,30 +1183,31 @@ msgstr "" "пошта што е регистрирана со Вашата сметка." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Неправилно URL за аватар: '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Невалидна домашна страница: '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Неправилно URL за лиценца: '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Неправилна содржина за известување" @@ -1051,13 +1222,13 @@ msgid "Invalid notice url" msgstr "Неправилно url на известување" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Неправилно URL на профил: '%s'" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Неправилно URL на профил (лош формат)" @@ -1075,44 +1246,52 @@ msgstr "Погрешна големина." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Погрешно име или лозинка." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Работи на [StatusNet](http://status.net/) софтверот за микроблогирање, верзија " -"%s, достапен пд [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +"Работи на [StatusNet](http://status.net/) софтверот за микроблогирање, " +"верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Ова Jabber ID му припаќа на друг корисник." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1122,12 +1301,14 @@ msgstr "" "Вашата контакт листа во Вашиот IM клиент или GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1136,7 +1317,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Локација" @@ -1145,7 +1334,12 @@ msgstr "Локација" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Локацијата е предолга (максимумот е 255 знаци)." @@ -1154,18 +1348,22 @@ msgstr "Локацијата е предолга (максимумот е 255 з #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Пријави се" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Пријавете се со [OpenID](%%doc.openid%%) сметка." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1175,22 +1373,26 @@ msgstr "" "Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action." "register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Одјави се" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Загубена или заборавена лозинка?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1201,16 +1403,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Член од" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Микроблог на %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1220,42 +1424,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Мојот текст и датотеки се достапни под" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Нов прекар" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Ново известување" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Нова лозинка" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Новата лозинка успешно е снимена. Сега сте пријавени." @@ -1265,7 +1477,13 @@ msgstr "Новата лозинка успешно е снимена. Сега #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Прекар" @@ -1274,7 +1492,12 @@ msgstr "Прекар" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Тој прекар е во употреба. Одберете друг." @@ -1283,47 +1506,58 @@ msgstr "Тој прекар е во употреба. Одберете друг. #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Тој прекар не е дозволен." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Прекар на корисникот што сакате да го следите." #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Прекар или е-пошта" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Нема JabberID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Нема барање за проверка!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1335,11 +1569,15 @@ msgstr "Нема код за потврда." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Нема содржина!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1348,7 +1586,9 @@ msgid "No id." msgstr "Нема id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1359,6 +1599,7 @@ msgstr "Серверот не достави прекар." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Нема прекар." @@ -1366,12 +1607,14 @@ msgstr "Нема прекар." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Нема потврди кои може да се откажат." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1381,7 +1624,8 @@ msgid "No profile URL returned by server." msgstr "Серверот не достави URL за профилот." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Нема регистрирана адреса за е-пошта за тој корисник." @@ -1393,7 +1637,7 @@ msgstr "Не е пронаједено барање." #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Нема резултати" @@ -1404,12 +1648,16 @@ msgstr "Нема големина." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1419,13 +1667,15 @@ msgid "No such OpenID." msgstr "Нема таков OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Нема таков документ." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Нема такво известување." @@ -1463,12 +1713,22 @@ msgstr "Нема таква претплата" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Нема таков корисник." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1482,32 +1742,38 @@ msgid "Not a recovery code." msgstr "Ова не е код за спасување." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Неправилен JabberID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Неправилен OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Неправилна адреса за е-пошта." @@ -1515,6 +1781,11 @@ msgstr "Неправилна адреса за е-пошта." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Неправилен прекар." @@ -1534,7 +1805,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Неправилно URL на профил (нема YADIS документ)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Не е слика или датотеката е корумпирана." @@ -1545,11 +1817,13 @@ msgstr "Не е одобрено." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Овој одговор не беше очекуван!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1565,11 +1839,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Не сте пријавени." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Не сте претплатени!" @@ -1586,39 +1864,44 @@ msgid "Notice feed for %s" msgstr "Канал со известувања на %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Известувањето нема профил" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Известувања" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Стара лозинка" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Поставување на сметка за OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Автоматско испраќање на OpenID" @@ -1626,29 +1909,34 @@ msgstr "Автоматско испраќање на OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Пријавување со OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Проверката на OpenID е откажана." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Проверката на OpenID не успеа: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Неуспех на OpenID: %s" @@ -1664,11 +1952,12 @@ msgid "OpenID settings" msgstr "Поставки за OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Парцијално товарање" @@ -1678,34 +1967,46 @@ msgstr "Парцијално товарање" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Лозинка" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Двете лозинки не се совпаѓаат." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Лозинката мора да биде од најмалку 6 знаци." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Побарано е пронаоѓање на лозинката" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Лозинката е снимена." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Лозинките не се совпаѓаат." @@ -1725,14 +2026,17 @@ msgid "People search" msgstr "Пребарување на луѓе" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Личен" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1746,7 +2050,7 @@ msgstr "" "овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Испрати известување кога мојот статус на Jabber/GTalk ќе се смени." @@ -1755,7 +2059,9 @@ msgstr "Испрати известување кога мојот статус #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Преференции" @@ -1764,42 +2070,52 @@ msgstr "Преференции" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Преференциите се снимени." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Приватност" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Проблем во снимањето на известувањето." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Профил" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL на профилот" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Поставки на профилот" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Непознат профил" @@ -1808,17 +2124,19 @@ msgid "Public Stream Feed" msgstr "Јавен канал" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Јавна историја" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1828,12 +2146,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Пронајди" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Пронаоѓање на лозинка" @@ -1846,37 +2166,45 @@ msgstr "Код за пронаоѓање за непознат корисник. #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрирај се" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Одбиј" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Запамети ме" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Оддалечениот профил нема одговарачки профил" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Оддалечена претплата" @@ -1890,6 +2218,9 @@ msgstr "Оддалечена претплата" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Отстрани" @@ -1898,7 +2229,7 @@ msgstr "Отстрани" msgid "Remove OpenID" msgstr "Отстрани го OpenID-то" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1907,34 +2238,41 @@ msgstr "" "пријавите. Ако треба да го отстраните, прво додајте друг OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Одговори" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Одговори испратени до %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Ресетирај" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Рестетирај ја лозинката" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1943,17 +2281,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Исто како лозинката погоре" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1966,12 +2305,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Сними" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Барај" @@ -1981,7 +2329,7 @@ msgid "Search Stream Feed" msgstr "Барај во каналот" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1990,7 +2338,7 @@ msgstr "" "Барајте известувања на %%site.name%% според нивната содржина. Термините " "одделете ги со празни места. Најмала должина е 3 знаци." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2000,48 +2348,56 @@ msgstr "" "Термините одделете ги со празни места. Најмала должина е 3 знаци." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Испрати" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Испраќај ми известувања преку Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Поставки" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Поставките се снимени." @@ -2061,27 +2417,32 @@ msgid "Something weird happened." msgstr "Нешто чудно се случи." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Изворен код" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Статистика" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Зачуваниот OpenID не е пронајден." @@ -2089,24 +2450,28 @@ msgstr "Зачуваниот OpenID не е пронајден." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Претплати се" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Претплатници" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Претплатата е одобрена" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Претплатата е одбиена" @@ -2114,28 +2479,35 @@ msgstr "Претплатата е одбиена" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Претплати" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Системска грешка при товарањето на датотеката." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Текстуално пребарување" @@ -2155,6 +2527,7 @@ msgid "That confirmation code is not for you!" msgstr "Овој код за потврда не е за Вас!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2164,63 +2537,73 @@ msgid "That file is too big." msgstr "Датотеката е преголема." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Ова веќе е Вашиот Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Ова не е Вашиот Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Ова е погрешната IM адреса." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Ова е предолго. Максималната должина е 140 знаци." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресата \"%s\" е потврдена за Вашата сметка." @@ -2229,11 +2612,14 @@ msgstr "Адресата \"%s\" е потврдена за Вашата сме #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Адресата е отстранета." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2243,7 +2629,8 @@ msgstr "" "местото за да видите како да ја одобрите претплатата. Вашиот белег за " "претплата е:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2253,33 +2640,38 @@ msgstr "" "местото за да видите како целосно да ја одбиете претплатата." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Ова се луѓето што ги следат известувањата на %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Ова се луѓето што ги следат Вашите известувања." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Ова се луѓето чии известувања ги следи %s." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Ова се луѓето чии известувања ги следите." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Овој код за потврда е премногу стар. Почнете од почеток." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2288,7 +2680,7 @@ msgstr "" "на копчето „Испрати“ за да одите до Вашиот OpenID снабдувач." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2303,6 +2695,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2311,25 +2706,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2342,18 +2749,21 @@ msgstr "" "подолу." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL на Вашата домашна страница, блог или профил на друго место." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL на Вашиот профил на друго компатибилно место за микроблогирање." @@ -2365,15 +2775,22 @@ msgstr "URL на Вашиот профил на друго компатибил #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Неочекувано испраќање на формулар." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Неочекувано ресетирање на лозинка." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2404,38 +2821,47 @@ msgstr "Откажи ја претплатата" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Неподдржнана верзија на ОМВ" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Неподдржан фомрат на слики." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Товари" @@ -2456,12 +2882,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Се користи само за надградби, објави и пронаоѓање на лозинка." @@ -2485,11 +2914,16 @@ msgstr "Корисникот кој го следите не постои." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Корисникот нема профил." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Прекар на корисникот" @@ -2498,29 +2932,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Што има %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Каде се наоѓате, на пр. „Град, Држава“." #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Погрешен тип на слика за '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Погрешна големина на слика на '%s'" @@ -2528,7 +2966,9 @@ msgstr "Погрешна големина на слика на '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2549,11 +2989,12 @@ msgid "You are already logged in!" msgstr "Веќе сте пријавени!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2571,7 +3012,7 @@ msgstr "Можете да креирате нова сметка за да ис msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2579,6 +3020,7 @@ msgstr "" "Можте да отстраните OpenID од Вашата сметка со кликање на копчето „Отстрани“." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2587,7 +3029,8 @@ msgstr "" "Можете да примате и праќате известувања преку Jabber/GTalk [брзи пораки](%%" "doc.im%%). Подолу " -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2598,21 +3041,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Може да ја користите локалната претплата." #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Не ни го испративте тој профил." -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2626,37 +3071,41 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Идентификувани сте. Подолу можете да внесете нова лозинка." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Вашето URL за OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "Вашиот прекар на овој сервер или адресата за е-пошта со која се " "регистриравте." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2666,47 +3115,57 @@ msgstr "" "истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-" "ја." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "пред неколку секунди" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "пред %d денови" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "пред %d часа" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "пред %d минути" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "пред %d месеци" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "пред еден ден" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "пред една минута" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "пред еден месец" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "пред една година" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "пред еден час" @@ -2728,12 +3187,14 @@ msgid "reply" msgstr "одговор" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "исто како лозинката погоре" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2755,6 +3216,26 @@ msgstr "« Следни" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2763,6 +3244,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2770,22 +3252,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2795,11 +3283,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2839,33 +3329,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2919,6 +3420,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2947,6 +3453,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2967,12 +3475,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2980,7 +3491,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -3004,51 +3515,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3067,14 +3597,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3083,6 +3616,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3091,24 +3625,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3119,33 +3658,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3162,18 +3711,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3183,89 +3733,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3273,11 +3845,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3292,7 +3864,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3304,7 +3876,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3313,31 +3885,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3350,14 +3930,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s и пријателите" @@ -3367,22 +3952,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Поставки" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3399,35 +3994,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Нема такво известување." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Нема таков корисник." @@ -3436,12 +4040,12 @@ msgstr "Нема таков корисник." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Веќе сте пријавени!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3458,40 +4062,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Нема прекар." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Нема такво известување." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3501,16 +4123,17 @@ msgid "Nickname must have only lowercase letters " msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Корисникот не може да се освежи/" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Поставките се снимени." @@ -3528,7 +4151,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3544,7 +4168,7 @@ msgstr "" "Испративме код за потврда на IM адресата што ја додадовте. Мора да го " "одобрите %S за да ви испраќа пораки." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3558,54 +4182,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Нема содржина!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Следни" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Предходни »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Канал со пријатели на %S" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3651,12 +4290,14 @@ msgstr "" msgid "Sync preferences" msgstr "Преференции" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Нема такво известување." @@ -3671,7 +4312,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3685,15 +4327,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3701,12 +4345,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Аватарот е ажуриран." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Товарањето на аватарот не успеа." @@ -3726,7 +4372,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3741,6 +4388,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Креирај нова сметка" @@ -3753,7 +4401,7 @@ msgstr "" "Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " "Термините одделете ги со празни места. Најмала должина е 3 знаци." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Пребарување на луѓе" @@ -3777,21 +4425,21 @@ msgstr "Испраќај ми известувања преку Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Нема код за потврда." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Веќе сте пријавени!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Не може да се пренасочи кон серверот: %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3800,16 +4448,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Нема такво известување." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Не ни го испративте тој профил." @@ -3818,21 +4469,25 @@ msgstr "Не ни го испративте тој профил." msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "OpenID формуларот не може да се креира:%s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3844,16 +4499,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Информациите за аватарот не може да се снимат" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Не може да се креира претплатата" @@ -3867,12 +4524,15 @@ msgstr "Датотеката е преголема." msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Известувања" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3889,7 +4549,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Пријавување со OpenID" @@ -3917,11 +4577,13 @@ msgstr "" msgid "Service" msgstr "Барај" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Локацијата е предолга (максимумот е 255 знаци)." @@ -3931,17 +4593,18 @@ msgstr "Локацијата е предолга (максимумот е 255 з msgid "Change your password." msgstr "Промени ја лозинката" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Лозинката е снимена." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Неправилна адреса за е-пошта." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3951,12 +4614,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Непознат профил" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3966,21 +4630,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Невалидна домашна страница: '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Профилот не може да се сними." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Јавна историја" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -4001,11 +4670,13 @@ msgstr "Јавен канал" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4063,7 +4734,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Одговори испратени до %s" @@ -4073,53 +4745,74 @@ msgstr "Одговори испратени до %s" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Нема такво известување." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Известувања" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Канал со известувања на %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Член од" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4134,7 +4827,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4145,32 +4838,39 @@ msgid "'s profile" msgstr "Профил" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Корисникот нема профил." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Претплатници" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4196,7 +4896,7 @@ msgstr "Испраќај ми известувања преку Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Овој код за потврда не е за Вас!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4260,17 +4960,18 @@ msgstr "Ова се луѓето чии известувања ги следи % msgid "These are the people whose " msgstr "Ова се луѓето што ги следат известувањата на %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Нема JabberID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Микроблог на %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4294,7 +4995,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4304,17 +5005,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Информациите за аватарот не може да се снимат" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4323,20 +5024,23 @@ msgstr "" msgid "No such tag." msgstr "Нема такво известување." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Микроблог на %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Не е пронаједено барање." @@ -4345,16 +5049,17 @@ msgstr "Не е пронаједено барање." msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Нова лозинка" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4367,157 +5072,166 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Не може да се креира потврда за е-пошта." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Грешка во снимањето на корисникот." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Серверот не достави URL за профилот." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Оддалечениот профил нема одговарачки профил" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Откажи ја претплатата" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Проблем во снимањето на известувањето." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Товарањето на аватарот не успеа." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "За" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Креирај нова сметка" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Нема таков OpenID." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Помош" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Ново известување" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Ново известување" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Претплати" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Нема таков корисник." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4530,12 +5244,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Креирај нова сметка" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Јавен" @@ -4557,34 +5274,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL на Вашата домашна страница, блог или профил на друго место." -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Претплати" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4594,21 +5316,21 @@ msgstr "Каде се наоѓате, на пр. „Град, Држава“." msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Одјави се" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4641,12 +5363,12 @@ msgstr "Пријави се" msgid "Leave" msgstr "Сними" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Погрешно име или лозинка." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Креирај нова сметка" @@ -4667,24 +5389,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s сега ги следи вашите забелешки за %2$s." -#: lib/mail.php:254 -#, fuzzy, php-format +#: lib/mail.php:254 lib/mail.php:253 +#, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 -#, fuzzy, php-format +#: lib/mail.php:256 lib/mail.php:255 +#, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4699,43 +5421,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s сега ги следи вашите забелешки за %2$s." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Ново известување" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 или повеќе знаци" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "во одговор на..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "одговор" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4756,27 +5486,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Јавен" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Пребарување на луѓе" @@ -4794,32 +5526,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Оддалечена претплата" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Оддалечена претплата" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "Корисникот нема профил." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Претплатата е одобрена" @@ -4833,11 +5567,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Нема таков корисник." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4845,6 +5580,2019 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Канал со пријатели на %S" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Канал со пријатели на %S" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Канал со пријатели на %S" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s и пријателите" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватарот е ажуриран." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Микроблог на %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " +"Термините одделете ги со празни места. Најмала должина е 3 знаци." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Пребарувај го потокот за „%s“" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Поради безбедносни причини треба повторно да го внесете Вашето корисничко " +"име и лозинка пред да ги смените Вашите поставки." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Јавен канал" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Јавен канал" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Јавен канал" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " +"телефонски број." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Креирај" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Нема такво известување." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Профил" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Аватар" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Поставки на профилот" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "Овој код за потврда не е за Вас!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Нема таков корисник." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Не може да се креира потврда за е-пошта." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Проверете ги овие детали ако сакате да се претплатите на известувањата на " +"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за " +"истата да ја поврзете со Вашиот OpenID." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s сега ги следи вашите забелешки на %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Искрено ваш,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Барај" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Нема таков документ." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Не може да се пренасочи кон серверот: %s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Нема таков корисник." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Корисникот нема профил." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s и пријателите" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Нема таков корисник." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Локација" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Нема такво известување." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Невалидна домашна страница: '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Тој прекар е во употреба. Одберете друг." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Информациите за аватарот не може да се снимат" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Ново известување" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Ново известување" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Неправилен прекар." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Корисникот нема профил." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Не ни го испративте тој профил." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Нема таков корисник." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Корисникот не може да се освежи/" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Преференциите се снимени." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Нема резултати" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Корисникот нема профил." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Профилот не може да се сними." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) Ви овозможува да се пријавувате на многу места со " +"истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-" +"ја." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Поставки на профилот" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Ако сте ја заборавиле или загубиле лозинката, можете да добиете нова на " +"адресата што ја внесовте во Вашата сметка." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Идентификувани сте. Подолу можете да внесете нова лозинка." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Побарано е пронаоѓање на лозинката" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Грешка со кодот за потврдување." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Претплатата е одобрена" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Нема такво известување." + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Канал со известувања на %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Канал со известувања на %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Нема таков корисник." + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s сега ги следи вашите забелешки за %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Канал со известувања на %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Корисникот не може да се освежи/" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Корисникот не може да се освежи/" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s статус на %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Микроблог на %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Сите претплати" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Поставки на профилот" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Не ни го испративте тој профил." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Проблем во снимањето на известувањето." + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Корисникот нема профил." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Профил" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Товари" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Промени ја лозинката" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Поврзи се" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Барај" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Пријави се" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Нема таков корисник." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Нема таков корисник." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Нема содржина!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Барај" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Домашната страница не е правилно URL." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Нема такво известување." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Ова е предолго. Максималната должина е 140 знаци." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Не може да се пренасочи кон серверот: %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Биографијата е предолга (максимумот е 140 знаци)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Веќе сте пријавени!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Не може да се пренасочи кон серверот: %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Не ни го испративте тој профил." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "OpenID формуларот не може да се креира:%s" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Ова е предолго. Максималната должина е 140 знаци." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Неподдржан фомрат на слики." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Биографијата е предолга (максимумот е 140 знаци)." + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Корисникот кој го следите не постои." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Не е одобрено." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Белезите за барање не може да се конвертираат во белези за пристап." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Непозната верзија на протоколот OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Нема такво известување." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Нема такво известување." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action." +"register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Сите новини кои се еднакви со бараниот термин „%s“" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Биографијата е предолга (максимумот е 140 знаци)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Неправилно URL на профил (нема YADIS документ)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не може да се земе белег за барање." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Канал со известувања на %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Одговори испратени до %s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Канал со пријатели на %S" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Канал со пријатели на %S" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Канал со пријатели на %S" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Канал со известувања на %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Известувања" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Канал со известувања на %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Проверете ги овие детали ако сакате да се претплатите на известувањата на " +"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за " +"местото за да видите како да ја одобрите претплатата. Вашиот белег за " +"претплата е:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за " +"местото за да видите како целосно да ја одбиете претплатата." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Не може да се прочита URL-то на аватарот: '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Погрешен тип на слика за '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Не може да се пренасочи кон серверот: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Ново известување" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Не може да се пренасочи кон серверот: %s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Одговори испратени до %s" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Проблем во снимањето на известувањето." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Нема код за потврда." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опишете се себе си и сопствените интереси во 140 знаци." + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Канал со известувања на %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s сега ги следи вашите забелешки за %2$s." + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Ново известување" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Креирај нова сметка" @@ -4857,10 +7605,3 @@ msgstr "" #~ msgid "Error inserting notice" #~ msgstr "Грешка во внесувањето на известувањето" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Ако сте ја заборавиле или загубиле лозинката, можете да добиете нова на " -#~ "адресата што ја внесовте во Вашата сметка." diff --git a/locale/nb/LC_MESSAGES/statusnet.mo b/locale/nb/LC_MESSAGES/statusnet.mo index ee3bad415f60009189cdddf3a4157d5eb3a351a7..e41d29064a77c20a5c3ed6e5d186249c12339c52 100644 GIT binary patch delta 10421 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 delta 6404 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 diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 5e2d6613ca..3242960116 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-09-26 22:45+0000\n" "Last-Translator: Eivind Uggedal \n" "Language-Team: LANGUAGE \n" @@ -20,14 +20,14 @@ msgstr "" "X-Poedit-Country: NORWAY\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Søkestrøm for «%s»" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -40,17 +40,19 @@ msgid " from " msgstr "fra" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Oppdateringer som svarer til %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s har invitert deg til %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -103,6 +105,7 @@ msgstr "" "Vennlig hilsen, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s lytter nå til dine notiser på %2$s." @@ -125,25 +128,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s oppdateringer som svarer på oppdateringer fra %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s offentlig strøm" @@ -153,34 +159,48 @@ msgstr "%s offentlig strøm" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s og venner" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentlig tidslinje" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tidslinje" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s oppdateringer fra alle sammen!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -188,16 +208,18 @@ msgstr "" "(Du vil straks motta en epost med instruksjoner om hvordan du kan bekrefte " "din epostadresse)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** er en mikrobloggingtjeneste av " -"[%%site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site." +"broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er en mikrobloggingtjeneste. " @@ -209,31 +231,35 @@ msgstr ". Bidragsytere burde være etterfulgt av fullt navn eller kallenavn." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 små bokstaver eller nummer, ingen punktum eller mellomrom" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 små bokstaver eller nummer, ingen punktum eller mellomrom. Påkrevd." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 eller flere tegn" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 eller flere tegn. Og ikke glem det!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 eller flere tegn. Påkrevd." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -243,6 +269,7 @@ msgstr "" "godkjenne %s for å sende meldinger til deg." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -276,7 +303,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API-metode ikke funnet!" @@ -299,16 +353,23 @@ msgstr "API-metode ikke funnet!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API-metode under utvikling." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Om" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Godta" @@ -319,6 +380,9 @@ msgstr "Godta" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Legg til" @@ -336,27 +400,29 @@ msgstr "Legg til eller fjern OpenID-er" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adresse" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Adresser til venner som skal inviteres (én per linje)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Alle abonnementer" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Alle oppdateringer for %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Alle oppdateringer for søket: «%s»" @@ -366,47 +432,59 @@ msgstr "Alle oppdateringer for søket: «%s»" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Allerede innlogget." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Allerede abonnert!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Er du sikker på at du vil slette denne notisen?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser abonnementet" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Logg inn automatisk i framtiden. Ikke for datamaskiner du deler med andre!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" +msgstr "" +"Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Brukerbilde" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Brukerbildet har blitt oppdatert." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -416,6 +494,7 @@ msgstr "" "instruksjoner (la du %s til vennelisten din?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -424,7 +503,7 @@ msgstr "" "melding med videre veiledning." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Venter på bekreftelse for dette telefonnummeret." @@ -436,6 +515,8 @@ msgstr "Tidligere »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Om meg" @@ -443,16 +524,18 @@ msgstr "Om meg" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "«Om meg» er for lang (maks 140 tegn)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Kan ikke slette notisen." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Kan ikke lese brukerbilde-URL «%s»" @@ -460,6 +543,8 @@ msgstr "Kan ikke lese brukerbilde-URL «%s»" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Klarer ikke å lagre nytt passord." @@ -467,31 +552,34 @@ msgstr "Klarer ikke å lagre nytt passord." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Avbryt" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Klarer ikke instansiere OpenID-objekt." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Klarer ikke normalisere Jabber-IDen" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Klarer ikke normalisere epostadressen" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Endre" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Endre eposthåndtering" @@ -501,11 +589,12 @@ msgid "Change password" msgstr "Endre passord" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Endre passordet ditt" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Endre profilinnstillingene dine" @@ -515,6 +604,9 @@ msgstr "Endre profilinnstillingene dine" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Bekreft" @@ -527,12 +619,14 @@ msgstr "Bekreft adresse" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Bekreftelse avbrutt." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Bekreftelseskode" @@ -541,7 +635,8 @@ msgstr "Bekreftelseskode" msgid "Confirmation code not found." msgstr "Fant ikke bekreftelseskode." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -559,7 +654,8 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Gratulerer, %s! Og velkommen til %%%%site.name%%%%. Herfra vil du kanskje...\n" +"Gratulerer, %s! Og velkommen til %%%%site.name%%%%. Herfra vil du " +"kanskje...\n" "\n" "* Gå til [din profil](%s) og sende din første notis.\n" "* Legge til en [Jabber/GTalk addresse](%%%%action.imsettings%%%%) så du kan " @@ -574,20 +670,24 @@ msgstr "" "Thanks for signing up and we hope you enjoy using this service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Koble til" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Koble til eksisterende konto" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakt" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "" @@ -595,35 +695,39 @@ msgstr "" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Klarte ikke å lagre brukerbilde-informasjonen" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Klarte ikke å lagre den nye profil-informasjonen" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -643,15 +747,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -664,29 +770,38 @@ msgstr "" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Klarte ikke å lagre profil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -702,42 +817,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Klarte ikke å oppdatere bruker." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Opprett" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Lag en ny bruker med dette nicket." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Opprett en ny konto" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Nåværende bekreftede Jabber/GTak-adresse." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Nåværende bekreftede telefonnummer med mulighet for å motta SMS." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Nåværende bekreftede e-postadresse" @@ -746,23 +867,27 @@ msgid "Currently" msgstr "" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Beskriv degselv og dine interesser med 140 tegn" @@ -770,11 +895,13 @@ msgstr "Beskriv degselv og dine interesser med 140 tegn" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-post" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "E-postadresse" @@ -784,39 +911,43 @@ msgid "Email Settings" msgstr "Innstillinger for e-post" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "" @@ -827,39 +958,46 @@ msgstr "" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "" @@ -868,6 +1006,9 @@ msgstr "" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "" @@ -878,6 +1019,7 @@ msgstr "" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "" @@ -887,33 +1029,36 @@ msgid "Error with confirmation code." msgstr "" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Eksisterende nick" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "OSS/FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed for %s sine venner" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed for svar til %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed for taggen %s" @@ -928,7 +1073,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -939,6 +1084,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Fullt navn" @@ -947,23 +1097,33 @@ msgstr "Fullt navn" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Beklager, navnet er for langt (max 250 tegn)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Hjelp" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Hjem" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Hjemmesiden" @@ -971,21 +1131,27 @@ msgstr "Hjemmesiden" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM-adresse" @@ -995,19 +1161,19 @@ msgid "IM Settings" msgstr "Innstillinger for IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1016,25 +1182,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "innkommende e-post" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Feil gammelt passord" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Feil brukernavn eller passord" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1043,30 +1215,31 @@ msgstr "" "til din registrerte e-postadresse." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Ugyldig avatar-URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ugyldig hjemmeside '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "" @@ -1081,13 +1254,13 @@ msgid "Invalid notice url" msgstr "" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ugyldig profil-URL '%s'" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "" @@ -1105,28 +1278,35 @@ msgstr "Ugyldig størrelse" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Ugyldig brukernavn eller passord" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1135,11 +1315,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1147,12 +1328,14 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Språk" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1161,7 +1344,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "" @@ -1170,7 +1361,12 @@ msgstr "" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "" @@ -1179,18 +1375,22 @@ msgstr "" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Logg inn" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Logg inn med en [OpenID](%%doc.openid%%)-konto." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1198,22 +1398,26 @@ msgid "" "%). " msgstr "" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Logg ut" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Lengre navn, helst ditt \"ekte\" navn" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Mistet eller glemt passordet?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1224,16 +1428,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Medlem siden" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Mikroblogg av %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1243,42 +1449,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Ny" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nytt nick" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nytt passord" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "" @@ -1288,7 +1502,13 @@ msgstr "" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Nick" @@ -1297,7 +1517,12 @@ msgstr "Nick" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Det nicket er allerede i bruk. Prøv et annet." @@ -1306,47 +1531,58 @@ msgstr "Det nicket er allerede i bruk. Prøv et annet." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Dette nicket er ikke tillatt" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Nick eller e-postadresse" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Ingen Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1358,11 +1594,15 @@ msgstr "" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Ingen e-postadresse." @@ -1371,7 +1611,9 @@ msgid "No id." msgstr "Ingen id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1382,6 +1624,7 @@ msgstr "" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "" @@ -1389,12 +1632,14 @@ msgstr "" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1404,7 +1649,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "" @@ -1416,7 +1662,7 @@ msgstr "" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "" @@ -1427,12 +1673,16 @@ msgstr "" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1442,13 +1692,15 @@ msgid "No such OpenID." msgstr "" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "" @@ -1486,12 +1738,22 @@ msgstr "" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1505,32 +1767,38 @@ msgid "Not a recovery code." msgstr "" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Ugyldig Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Ugyldig OpenID" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Ugyldig e-postadresse" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Ugyldig e-postadresse." @@ -1538,6 +1806,11 @@ msgstr "Ugyldig e-postadresse." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Ugyldig nick." @@ -1557,7 +1830,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "" @@ -1568,11 +1842,13 @@ msgstr "Ikke autorisert." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1588,11 +1864,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Ikke logget inn." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "" @@ -1609,39 +1889,44 @@ msgid "Notice feed for %s" msgstr "" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Gammelt passord" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1649,18 +1934,21 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID-URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 #, fuzzy msgid "OpenID authentication cancelled." msgstr "OpenID-autentifisering avbrutt." @@ -1668,11 +1956,13 @@ msgstr "OpenID-autentifisering avbrutt." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "" @@ -1688,11 +1978,12 @@ msgid "OpenID settings" msgstr "Innstillinger for OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "" @@ -1702,34 +1993,46 @@ msgstr "" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Passord" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Passordet må bestå av 6 eller flere tegn." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Passordet ble lagret" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "" @@ -1749,14 +2052,17 @@ msgid "People search" msgstr "" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personlig" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1768,7 +2074,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1777,7 +2083,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "" @@ -1786,42 +2094,52 @@ msgstr "" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "" @@ -1830,17 +2148,19 @@ msgid "Public Stream Feed" msgstr "" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publiser en MicroID for min Jabber/Gtalk-adresse." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publiser en MicroID for min e-postadresse." @@ -1850,12 +2170,14 @@ msgid "Recent Tags" msgstr "Nyeste Tagger" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Gjenopprett" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1868,37 +2190,45 @@ msgstr "" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Husk meg" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -1912,6 +2242,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Fjern" @@ -1920,41 +2253,48 @@ msgstr "Fjern" msgid "Remove OpenID" msgstr "Fjern OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Svar" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Svar til %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Nullstill" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Telefonnummer for SMS" @@ -1963,17 +2303,18 @@ msgstr "Telefonnummer for SMS" msgid "SMS Settings" msgstr "Innstillinger for SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1986,12 +2327,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Lagre" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Søk" @@ -2001,14 +2351,14 @@ msgid "Search Stream Feed" msgstr "" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2016,48 +2366,56 @@ msgid "" msgstr "" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Send" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "" @@ -2077,27 +2435,32 @@ msgid "Something weird happened." msgstr "" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Kilde" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistikk" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "" @@ -2105,24 +2468,28 @@ msgstr "" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "" @@ -2130,28 +2497,35 @@ msgstr "" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tagger" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Tekst" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Tekst-søk" @@ -2171,6 +2545,7 @@ msgid "That confirmation code is not for you!" msgstr "" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2180,63 +2555,73 @@ msgid "That file is too big." msgstr "Den filen er for stor." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Det er allerede din Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Det er allerede din e-postadresse." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Det er allerede din ditt telefonnummer." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Det er ikke din Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Det er ikke din e-postadresse." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Det er ikke ditt telefonnummer." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Det er feil IM-adresse." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -2245,18 +2630,22 @@ msgstr "" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2264,40 +2653,45 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2309,6 +2703,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2317,25 +2714,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Tidssone" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2344,18 +2753,21 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2367,15 +2779,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2404,38 +2823,47 @@ msgstr "" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Last opp" @@ -2452,12 +2880,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" @@ -2481,11 +2912,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "" @@ -2494,29 +2930,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "" @@ -2524,7 +2964,9 @@ msgstr "" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Ja" @@ -2545,11 +2987,12 @@ msgid "You are already logged in!" msgstr "Du er allerede logget inn!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2567,20 +3010,22 @@ msgstr "" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2589,21 +3034,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2617,82 +3064,96 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "noen få sekunder siden" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "omtrent %d dager siden" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "omtrent %d timer siden" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "omtrent %d minutter siden" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "omtrent %d måneder siden" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "omtrent én dag siden" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "omtrent ett minutt siden" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "omtrent én måned siden" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "omtrent ett år siden" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "omtrent én time siden" @@ -2714,12 +3175,14 @@ msgid "reply" msgstr "svar" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2740,6 +3203,26 @@ msgstr "" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2748,6 +3231,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2755,22 +3239,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2780,11 +3270,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2824,33 +3316,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2904,6 +3407,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2932,6 +3440,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2952,12 +3462,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2965,7 +3478,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2989,51 +3502,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3052,14 +3584,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3068,6 +3603,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3076,24 +3612,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3104,33 +3645,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3147,18 +3698,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3168,89 +3720,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3258,11 +3832,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3277,7 +3851,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3289,7 +3863,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3298,31 +3872,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3335,14 +3917,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s og venner" @@ -3352,22 +3939,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Innstillinger for IM" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3384,35 +3981,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Klarte ikke å lagre profil." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "" @@ -3420,12 +4026,12 @@ msgstr "" msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Du er allerede logget inn!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3442,40 +4048,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Nytt nick" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Klarte ikke å lagre profil." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3484,16 +4108,17 @@ msgid "Nickname must have only lowercase letters " msgstr "" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Bioen er for lang (max 140 tegn)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Klarte ikke å oppdatere bruker." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "" @@ -3510,7 +4135,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3522,7 +4148,7 @@ msgstr "" msgid "A confirmation code was sent to the email address you added. " msgstr "" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3536,52 +4162,67 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Tidligere »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Feed for %s sine venner" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3625,12 +4266,14 @@ msgstr "" msgid "Sync preferences" msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "" @@ -3644,7 +4287,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3658,15 +4302,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3674,12 +4320,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Avataren har blitt oppdatert." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "" @@ -3698,7 +4346,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3713,6 +4362,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Opprett en ny konto" @@ -3723,7 +4373,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Tekst-søk" @@ -3746,21 +4396,21 @@ msgstr "" msgid "A confirmation code was sent " msgstr "Bekreftelseskode" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Du er allerede logget inn!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3769,16 +4419,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Klarte ikke å lagre profil." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -3786,21 +4439,25 @@ msgstr "" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Klarte ikke å oppdatere bruker." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3812,16 +4469,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Klarte ikke å lagre avatar-informasjonen" @@ -3835,11 +4494,14 @@ msgstr "Den filen er for stor." msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3856,7 +4518,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID" @@ -3884,11 +4546,13 @@ msgstr "" msgid "Service" msgstr "Søk" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Bioen er for lang (max 140 tegn)" @@ -3898,17 +4562,18 @@ msgstr "Bioen er for lang (max 140 tegn)" msgid "Change your password." msgstr "Endre passord" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Passordet ble lagret" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Ugyldig e-postadresse" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3918,11 +4583,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3933,21 +4599,26 @@ msgid "Automatically subscribe to whoever " msgstr "Abonner " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Ugyldig hjemmeside '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Klarte ikke å lagre profil." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3967,11 +4638,13 @@ msgstr "" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4022,7 +4695,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Svar til %s" @@ -4032,52 +4706,73 @@ msgstr "Svar til %s" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Klarte ikke å lagre profil." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Medlem siden" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4092,7 +4787,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4103,32 +4798,39 @@ msgid "'s profile" msgstr "Profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Klarte ikke å lagre profil." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Alle abonnementer" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4152,7 +4854,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "Venter på bekreftelse på dette telefonnummeret" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4212,17 +4914,18 @@ msgstr "" msgid "These are the people whose " msgstr "" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Ingen Jabber ID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Mikroblogg av %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4246,7 +4949,7 @@ msgstr "Tagger" msgid "Tag user" msgstr "Tagger" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4256,17 +4959,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4274,20 +4977,23 @@ msgstr "" msgid "No such tag." msgstr "" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Mikroblogg av %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Ingen id." @@ -4296,16 +5002,17 @@ msgstr "Ingen id." msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Nytt passord" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4318,146 +5025,155 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Om" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Opprett en ny konto" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Hjelp" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4470,12 +5186,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Opprett en ny konto" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Offentlig" @@ -4497,35 +5216,40 @@ msgstr "Feed for taggen %s" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "Tagger" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Alle abonnementer" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Beskriv degselv og dine interesser med 140 tegn" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" @@ -4534,21 +5258,21 @@ msgstr "" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logg ut" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4580,12 +5304,12 @@ msgstr "Logg inn" msgid "Leave" msgstr "Lagre" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Ugyldig brukernavn eller passord" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Opprett en ny konto" @@ -4606,24 +5330,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Hjemmesiden: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4638,42 +5362,50 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 eller flere tegn" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "svar" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "svar" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "slett" @@ -4695,29 +5427,31 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 #, fuzzy msgid "Public" msgstr "Offentlig" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy msgid "Recent tags" msgstr "Nyeste Tagger" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "" @@ -4733,31 +5467,33 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Svar til %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "" #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "" @@ -4770,10 +5506,11 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4781,6 +5518,1968 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed for %s sine venner" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed for %s sine venner" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed for %s sine venner" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s og venner" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Brukerbildet har blitt oppdatert." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Mikroblogg av %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Søkestrøm for «%s»" + +#: actions/openidlogin.php:66 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "%s offentlig strøm" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"utenom disse private dataene: passord, epost, adresse, lynmeldingsadresse og " +"telefonnummer." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Opprett" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Klarte ikke å lagre profil." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Feed for taggen %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Brukerbilde" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Endre profilinnstillingene dine" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"En bekreftelseskode ble sendt til telefonnummeret du la til. Sjekk innboksen " +"din for koden, og hvordan du skal bruke den." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Klarte ikke å lagre profil." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s lytter nå til dine notiser på %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Vennlig hilsen,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Søk" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "" + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Klarte ikke å lagre profil." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s og venner" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" +msgstr "" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Bekreftelseskode" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan ikke slette notisen." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ugyldig hjemmeside '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Det nicket er allerede i bruk. Prøv et annet." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Klarte ikke å lagre avatar-informasjonen" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nytt nick" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nytt nick" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Ugyldig nick." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Du er allerede logget inn!" + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +msgid "Design preferences saved." +msgstr "" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Klarte ikke å lagre profil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Instruksjoner om hvordan du kan gjenopprette ditt passord har blitt sendt " +"til din registrerte e-postadresse." + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Passordet ble lagret" + +#: actions/register.php:86 +msgid "Sorry, invalid invitation code." +msgstr "" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s og venner" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Ugyldig OpenID" + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Tagger" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s lytter nå til dine notiser på %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed for taggen %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Det er allerede din e-postadresse." + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Oppdateringer som svarer til %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Mikroblogg av %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Alle abonnementer" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du er allerede logget inn!" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Klarte ikke å lagre profil." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Last opp" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Endre passordet ditt" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Koble til" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Søk" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Logg inn" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "" + +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" +msgstr "" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +msgid "in context" +msgstr "" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Søk" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, php-format +msgid "%s is not a valid color!" +msgstr "" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Klarte ikke å lagre profil." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Bioen er for lang (max 140 tegn)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du er allerede logget inn!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du er allerede logget inn!" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Klarte ikke å oppdatere bruker." + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Bioen er for lang (max 140 tegn)" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Ikke autorisert." + +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Klarte ikke å lagre profil." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Klarte ikke å lagre profil." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "" + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alle oppdateringer for søket: «%s»" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "«Om meg» er for lang (maks 140 tegn)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Svar til %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Svar til %s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed for %s sine venner" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed for %s sine venner" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed for %s sine venner" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Klarte ikke å lagre profil." + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" + +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "" + +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan ikke lese brukerbilde-URL «%s»" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: lib/action.php:435 +msgid "Connect to services" +msgstr "" + +#: lib/action.php:785 +msgid "Site content license" +msgstr "" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Svar til %s" + +#: lib/command.php:441 +msgid "Error saving notice." +msgstr "" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Fant ikke bekreftelseskode." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Beskriv degselv og dine interesser med 140 tegn" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "" + +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "fra" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +msgid "Duplicate notice" +msgstr "" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Opprett en ny konto" diff --git a/locale/nl/LC_MESSAGES/statusnet.mo b/locale/nl/LC_MESSAGES/statusnet.mo index 122a49285d7d3157cba17feccfb48c4a1630075f..c3d6958535dc36ad94bb9bf82fff875255b4e96e 100644 GIT binary patch delta 23460 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 diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 6cc0a52c49..74711cde63 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-07-11 00:23+0000\n" "Last-Translator: Ben van Es van Conkelenberghe \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Doorzoek de stroom naar \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,17 +37,19 @@ msgid " from " msgstr " van " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Updates antwoordend op %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s heeft je uitgenodigd voor %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -105,6 +107,7 @@ msgstr "" "Met vriendelijke groet, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s volgt nu je berichten %2$s." @@ -127,25 +130,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s updates die een reactie zijn op updates van %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s's status op %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s rss" @@ -155,34 +161,48 @@ msgstr "%s rss" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s en vrienden" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s updates van iedereen" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -190,7 +210,8 @@ msgstr "" "(U ontvangt een bericht per e-mail met instructies over: hoe te bevestigen " "dat uw e-mailadres.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -199,7 +220,8 @@ msgstr "" "**%%site.name%%** is een microbloggingdienst van [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is een microbloggingdienst. " @@ -213,30 +235,34 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties. Verplicht." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 of meer tekens" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 of meer tekens, en vergeet het niet!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 of meer tekens. Verplicht" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -246,6 +272,7 @@ msgstr "" "akkoord gaan dat %s boodschappen aan jou stuurt." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -281,7 +308,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API functie niet gevonden" @@ -304,17 +358,24 @@ msgstr "API functie niet gevonden" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API functie in bewerking" # This would be appropriate for the footer menu link (actual context isn't clear!) -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Over" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Accepteer" @@ -325,6 +386,9 @@ msgstr "Accepteer" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Voeg toe" @@ -342,27 +406,29 @@ msgstr "Toevoegen en verwijderen van je OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adres" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Adressen van je vrienden om uit te nodigen (1 per regel)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Alle abonnementen" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Alle updates voor %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Alle updates die overeenkomen met de zoekterm \"%s\"" @@ -372,30 +438,37 @@ msgstr "Alle updates die overeenkomen met de zoekterm \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Al ingelogd." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Al geabonneerd!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Sta abonnement toe" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Voortaan automatisch inloggen; niet voor gemeenschappelijke computers!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -404,15 +477,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar geactualiseerd." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -423,6 +500,7 @@ msgstr "" "toegevoegd?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -431,7 +509,7 @@ msgstr "" "voor een bericht met verdere instructies. " #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Afwachtend op bevestiging van dit telefoonnummer" @@ -442,6 +520,8 @@ msgstr "Eerder »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografie" @@ -449,16 +529,18 @@ msgstr "Biografie" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Biografie is te lang (maximaal 140 tekens)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Kan dit bericht niet verwijderen." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Kan avatar-URL '%s' niet lezen" @@ -466,6 +548,8 @@ msgstr "Kan avatar-URL '%s' niet lezen" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Kan nieuw wachtwoord niet opslaan." @@ -473,31 +557,34 @@ msgstr "Kan nieuw wachtwoord niet opslaan." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Annuleer" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Kan OpenID-consumerobject niet instantiëren." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Kan die Jabber-ID niet normaliseren" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Kan het emailadres niet normaliseren" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Wijzig" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Wijzigen e-mail afhandeling" @@ -507,11 +594,12 @@ msgid "Change password" msgstr "Wijzig wachtwoord" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Wijzig jouw wachtwoord" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Wijzig jouw profiel gegevens" @@ -521,6 +609,9 @@ msgstr "Wijzig jouw profiel gegevens" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Bevestig" @@ -533,12 +624,14 @@ msgstr "Bevestig adres" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Bevestiging geannuleerd." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Bevestigingscode" @@ -547,7 +640,8 @@ msgstr "Bevestigingscode" msgid "Confirmation code not found." msgstr "Bevestigingscode niet gevonden." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -582,20 +676,24 @@ msgstr "" "leuke tijd hebt met deze service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Koppel" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Koppel bestaand account" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contact" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Kan geen OpenID aanmaken van: %s" @@ -603,35 +701,40 @@ msgstr "Kan geen OpenID aanmaken van: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "je kan deze persoon %s niet volgen omdat deze al je vriend is" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." -msgstr "Je kan de gebruiker niet volgen, we hebben deze gebruiker niet gevonden" +msgstr "" +"Je kan de gebruiker niet volgen, we hebben deze gebruiker niet gevonden" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Kon niet omleiden naar service: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Kon avatar informatie niet opslaan" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Kon de nieuwe profiel informatie niet opslaan" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Kan geen abonnee toewijzen aan je" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Kan niet abonneren " @@ -655,15 +758,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Kon e-mailbevestiging niet verwijderen." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Kon abonnement niet verwijderen." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Kan geen ene status vinden" @@ -678,29 +783,38 @@ msgstr "Kan geen verzoek om token krijgen" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Kon bevestigingscode niet toevoegen" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Kon nieuw abonnement niet toevoegen." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Kon profiel niet opslaan." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "kan de automatische inschrijving niet verwerken" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Kan de gebruikersgegevens niet vernieuwen" @@ -716,44 +830,50 @@ msgstr "Kan de gebruikersgegevens niet vernieuwen" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Kon gebruiker niet actualiseren." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Aanmaken" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Maak een nieuwe gebruiker aan met deze gebruikersnaam." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Maak een nieuw account aan" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "" "Bezig nieuw account aan te maken voor OpenID waarvoor al een " "gebruikersaccount bestaat." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Huidig bevestigd Jabber/GTalk adres." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Huidig bevestigd SMS-ingevoerd telefoonnummer." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Huidig bevestigd emailadres" @@ -762,23 +882,27 @@ msgid "Currently" msgstr "Op dit moment" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Database fout van de invoer hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Database-fout bij toevoegen antwoord: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Verwijderd bericht" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Beschrijf jezelf en je interesses in 140 tekens" @@ -786,11 +910,13 @@ msgstr "Beschrijf jezelf en je interesses in 140 tekens" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Email adres" @@ -800,39 +926,43 @@ msgid "Email Settings" msgstr "Email instellingen" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "E-mailadres bestaat al." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Bevestiging e-mailadres" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Email adres, zoals \"gebruikersnaam@voorbeeld.net\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Email adressen" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Voer een gebruikersnaam of e-mailadres in" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Voer de code in die je kreeg via je telefoon" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Fout bij autoriseren token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Fout bij koppelen gebruiker aan OpenID." @@ -843,39 +973,46 @@ msgstr "Fout bij koppelen gebruiker." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Fout bij toevoegen avatar" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Fout bij toevoegen nieuw profiel" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Fout bij toevoegen profiel op afstand" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Fout bij opslaan adresbevestiging." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Fout bij opslaan profiel op afstand" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Fout bij opslaan van het profiel." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Fout bij opslaan van de gebruiker." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Fout bij opslaan gebruiker; ongeldig." @@ -884,6 +1021,9 @@ msgstr "Fout bij opslaan gebruiker; ongeldig." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Fout bij instellingen gebruiker." @@ -894,6 +1034,7 @@ msgstr "Fout bij actualiseren profiel" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Fout bij actualiseren profiel op afstand" @@ -903,33 +1044,36 @@ msgid "Error with confirmation code." msgstr "Fout bij bevestigingscode." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Gebruikersnaam bestaat al" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Veelgestelde vragen" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Actualiseren avatar niet gelukt." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed voor vrienden van %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed voor antwoorden aan %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed voor tag %s" @@ -944,7 +1088,7 @@ msgstr "Vind de inhoud van een bericht" msgid "Find people on this site" msgstr "Vind mensen op deze site" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -957,6 +1101,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Volledige naam" @@ -965,23 +1114,33 @@ msgstr "Volledige naam" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Volledige naam is te lang (maximaal 255 tekens)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Help" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Home" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Homepage" @@ -989,21 +1148,27 @@ msgstr "Homepage" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Homepage is geen geldige URL" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Ik wil een bericht posten per email" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM-adres" @@ -1013,7 +1178,7 @@ msgid "IM Settings" msgstr "IM-instellingen" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1021,7 +1186,7 @@ msgstr "" "Als je al een account hebt, log dan in met je gebruikersnaam en wachtwoord " "om het aan je OpenID te koppelen." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1029,7 +1194,7 @@ msgstr "" "Als je een OpenID aan je account wilt toevoegen, vul het dan in het veld " "hieronder in en klik op \"Voeg toe\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1040,25 +1205,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Binnenkomende mail" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Binnenkomende mailadres is verwijderd" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Incorrect oud wachtwoord" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Incorrecte gebruikersnaam of wachtwoord." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1067,30 +1238,31 @@ msgstr "" "mailadres dat voor je account is geregistreerd." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Ongeldige avatar-URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Ongeldig Email adres: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ongeldige homepage '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Ongeldige licentie-URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Ongeldige berichtinhoud" @@ -1105,13 +1277,13 @@ msgid "Invalid notice url" msgstr "Ongeldige bericht-URL" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ongeldige profiel-URL '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Ongeldige profiel-URL (foutieve syntax)" @@ -1129,44 +1301,52 @@ msgstr "Ongeldige afmeting." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Uitnodiging(en) verzonden" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Uitnodiging(en) verzonden an de volgende mensen:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Uitnodigen" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Nodig nieuwe gebruikers uit" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Het draait op de [StatusNet](http://status.net/) microbloggingsoftware versie " -"%s, beschikbaar onder de [GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +"Het draait op de [StatusNet](http://status.net/) microbloggingsoftware " +"versie %s, beschikbaar onder de [GNU Affero General Public License](http://" +"www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber-ID al in gebruik bij een andere gebruiker" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1176,12 +1356,14 @@ msgstr "" "eerst % aan je contactenlijst in je IM-programma of in GTalk toevoegt." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Taal" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Taal is te lang (max 50 karaketers)" @@ -1190,7 +1372,15 @@ msgstr "Taal is te lang (max 50 karaketers)" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Locatie" @@ -1199,7 +1389,12 @@ msgstr "Locatie" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Locatie is te lang (maximaal 255 tekens)." @@ -1208,18 +1403,22 @@ msgstr "Locatie is te lang (maximaal 255 tekens)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Inloggen" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Log in met een [OpenID](%%doc.openid%%) account." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1230,22 +1429,26 @@ msgstr "" "[Registreer](%%action.register%%) dan een nieuw account, of probeer [OpenID]" "(%%action.openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Uitloggen" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Langere naam, mogelijk je \"eigen\" naam" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Wachtwoord kwijt of vergeten?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Maak een nieuw emailadres aan voor te posten naar; verwijder de oude." @@ -1257,16 +1460,18 @@ msgstr "Geef hier aan hoe je de notificaties wilt van %%site.name%%." # String should contain a variable token for since 'when' #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Lid sinds" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog van %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1279,42 +1484,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Mijn tekst en bestanden zijn beschikbaar onder_" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nieuw" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nieuw email adres om te posten aan %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nieuw binnenkomende emailadres is toegevoegd" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nieuwe gebruikersnaam" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nieuw bericht" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nieuw wachtwoord" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nieuw wachtwoord is opgeslagen. Je bent nu ingelogd." @@ -1324,7 +1537,13 @@ msgstr "Nieuw wachtwoord is opgeslagen. Je bent nu ingelogd." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Gebruikersnaam" @@ -1333,7 +1552,12 @@ msgstr "Gebruikersnaam" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Gebruikersnaam al in gebruik. Probeer een andere." @@ -1342,49 +1566,60 @@ msgstr "Gebruikersnaam al in gebruik. Probeer een andere." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Gebruikersnaam moet bestaan uit alleen kleine letters en cijfers en geen " "spaties." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Gebruikersnaam niet toegestaan." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Gebruikersnaam van de gebruiker die je wilt volgen" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Gebruikersnaam of e-mail" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Nee" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Geen Jabber-ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Geen autorisatie verzoek!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Geen provider geselecteerd" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Geen code ingevuld" @@ -1396,11 +1631,15 @@ msgstr "Geen bevestigingscode." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Geen inhoud!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Geen emailadres" @@ -1409,7 +1648,9 @@ msgid "No id." msgstr "Geen ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Geen binnenkomende emailadres" @@ -1420,6 +1661,7 @@ msgstr "Geen gebruikersnaam verschaft door de server op afstand." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Geen gebruikersnaam." @@ -1427,12 +1669,14 @@ msgstr "Geen gebruikersnaam." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Geen bevestiging in behandeling om te annuleren." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Geen telefoonnummer" @@ -1442,7 +1686,8 @@ msgid "No profile URL returned by server." msgstr "Geen profiel-URL teruggestuurd door de server." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Geen geregistreerd e-mailadres voor die gebruiker." @@ -1454,7 +1699,7 @@ msgstr "Geen verzoek gevonden!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Geen resultaten" @@ -1465,12 +1710,16 @@ msgstr "Geen afmeting." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Geen status gevonden met dit ID" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Geen status gevonden met dat ID" @@ -1480,13 +1729,15 @@ msgid "No such OpenID." msgstr "Die OpenID is niet bekend." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Onbekend document." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Onbekend bericht." @@ -1524,12 +1775,22 @@ msgstr "Onbekend abonnement" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Onbekende gebruiker." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Geen gebruiker met dit emailadres of gebruikersnaam" @@ -1543,32 +1804,38 @@ msgid "Not a recovery code." msgstr "Geen geldige herstelcode." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Geen geregistreerde gebruiker" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Geen juiste ingevulde gegevens" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Geen geldige Jabber-ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Geen geldige OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Geen geldig e-mailadres." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Geen geldig e-mailadres." @@ -1576,6 +1843,11 @@ msgstr "Geen geldig e-mailadres." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Geen geldige gebruikersnaam." @@ -1595,7 +1867,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Geen geldige profiel-URL (geen YADIS document)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Geen afbeelding of beschadigd bestand." @@ -1606,11 +1879,13 @@ msgstr "Niet geautoriseerd." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Onverwacht antwoord!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Niet gevonden" @@ -1626,11 +1901,15 @@ msgstr "Niet gevonden" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Niet ingelogd." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Niet geabonneerd!" @@ -1647,39 +1926,44 @@ msgid "Notice feed for %s" msgstr "Berichten-feed voor %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Bericht heeft geen profiel" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Berichten" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Berichten tagged met %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Oud wachtwoord" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID-account instellen" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID automatisch verzenden" @@ -1687,29 +1971,34 @@ msgstr "OpenID automatisch verzenden" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Log in met OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID-URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID-authenticatie geannuleerd." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID-authenticatie niet gelukt: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID-fout: %s" @@ -1725,11 +2014,12 @@ msgid "OpenID settings" msgstr "OpenID-instellingen." #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Eventueel een persoonlijke boodschap aan de uitnodiging" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Gedeeltelijke uploaden." @@ -1739,34 +2029,46 @@ msgstr "Gedeeltelijke uploaden." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Wachtwoord" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Wachtwoord en bevestiging komen niet overeen." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Wachtwoord moet uit 6 of meer tekens bestaan." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Wachtwoordherstel aangevraagd" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Wachtwoord opgeslagen." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Wachtwoorden komen niet overeen." @@ -1786,14 +2088,17 @@ msgid "People search" msgstr "Mensen zoeken" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Persoonlijk" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Persoonlijk bericht" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefoonnummer, geen spaties of leestekens, met netnummer" @@ -1809,7 +2114,7 @@ msgstr "" "\"Annuleer\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Plaats een bericht als mijn Jabber/GTalk-status verandert." @@ -1818,7 +2123,9 @@ msgstr "Plaats een bericht als mijn Jabber/GTalk-status verandert." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Voorkeuren" @@ -1827,42 +2134,52 @@ msgstr "Voorkeuren" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Voorkeuren opgeslagen." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Taal voorkeur" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacy" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Probleem bij opslaan bericht." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profiel" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profiel-URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profielinstellingen" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profiel onbekend" @@ -1871,17 +2188,19 @@ msgid "Public Stream Feed" msgstr "Openbare feed" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Openbare tijdlijn" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publiceer een MicroID voor mijn Jabber / GTalk adres" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publiceer een MicroID voor mijn email adres" @@ -1891,12 +2210,14 @@ msgid "Recent Tags" msgstr "Recent Tags" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Herstellen" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Wachtwoord herstellen" @@ -1909,37 +2230,45 @@ msgstr "Herstelcode voor onbekende gebruiker." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registreer" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registratie niet toegestaan" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registratie gelukt" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Afwijzen" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Onthoud mij" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Profiel op afstand zonder overeenkomend profiel" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Abonneren op afstand" @@ -1953,6 +2282,9 @@ msgstr "Abonneren op afstand" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Verwijderen" @@ -1961,7 +2293,7 @@ msgstr "Verwijderen" msgid "Remove OpenID" msgstr "Verwijder OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1970,34 +2302,41 @@ msgstr "" "je het moet verwijderen, voeg dan eerst een ander OpenID toe." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Antwoorden" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Antwoorden aan %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Herstellen" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Wachtwoord herstellen" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS telefoonnummer" @@ -2006,17 +2345,18 @@ msgstr "SMS telefoonnummer" msgid "SMS Settings" msgstr "SMS instellingen" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS bevestiging" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Gelijk aan wachtwoord hierboven" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Gelijk aan wachtwoord hierboven. verplicht" @@ -2029,12 +2369,21 @@ msgstr "Gelijk aan wachtwoord hierboven. verplicht" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Opslaan" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Zoeken" @@ -2044,7 +2393,7 @@ msgid "Search Stream Feed" msgstr "Doorzoek feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2053,7 +2402,7 @@ msgstr "" "Zoek naar berichten op %%site.name%% op basis van hun inhoud. Scheid " "zoektermen met spaties; ze moeten uit 3 of meer tekens bestaan." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2064,33 +2413,38 @@ msgstr "" "bestaan." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Selecteer een provider" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Verstuur" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Stuur een email naar dit adres om een nieuw bericht te posten" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Stuur mij een bericht van nieuwe abonnees via een email" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Stuur mij berichten via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2099,17 +2453,20 @@ msgstr "" "provider kan hebben." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Stuur me antwoorden via Jabber / GTalk van mensen op wie ik niet geabonneerd " "ben." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Instellingen" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Instellingen opgeslagen." @@ -2129,27 +2486,32 @@ msgid "Something weird happened." msgstr "Er is iets eigenaardigs gebeurd." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Sorry, inkomende mail is niet toegestaan" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Sorry, dit adres is niet een juist mailadres van je." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Bron" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistieken" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Opgeslagen OpenID niet gevonden." @@ -2157,24 +2519,28 @@ msgstr "Opgeslagen OpenID niet gevonden." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Abonneren" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnees" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Abonnement geautoriseerd" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Abonnement afgewezen" @@ -2182,28 +2548,35 @@ msgstr "Abonnement afgewezen" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnementen" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Systeemfout bij uploaden bestand." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Tekst" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Tekst doorzoeken" @@ -2223,6 +2596,7 @@ msgid "That confirmation code is not for you!" msgstr "Die bevestigingscode is niet voor jou!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Dit Emailadres is al geregistreerd door iemand anders" @@ -2232,63 +2606,73 @@ msgid "That file is too big." msgstr "Dat bestand is te groot." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Dat is al je Jabber-ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Dit is al je mailadres." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Dit is al je telefoonnummer" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Dat is niet je Jabber-ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Dit is niet je emailadres" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Dit is niet je telefoonnummer" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Dat is het verkeerde IM-adres." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Dit is het verkeerde bevestigings code/nummer" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Dit telefoonnummer is al in gebruik door iemand" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Dat is te lang. Maximale bericht lengte is 140 tekens." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Dat is te lang. Maximale bericht lengte is 255 tekens." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Het adres \"%s\" is voor je account bevestigd." @@ -2297,11 +2681,14 @@ msgstr "Het adres \"%s\" is voor je account bevestigd." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Het adres was verwijderd." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2311,7 +2698,8 @@ msgstr "" "Loop de instructies van de site na voor details over hoe het abonnement te " "autoriseren. Je abonnement-token is:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2322,35 +2710,40 @@ msgstr "" "af te wijzen." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Dit zijn de mensen die %s's berichten volgen." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Dit zijn de mensen die jouw berichten volgen." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Dit zijn de mensen van wie %s de berichten volgt." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Dit zijn de mensen van wie jij de berichten volgt." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Deze mensen zijn al geregistreerd en jij kan je automatisch bij hun " "abonneren: " -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Deze bevestigingscode is te oud. Begin alsjeblieft opnieuw." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2359,7 +2752,7 @@ msgstr "" "de verstuurknop om naar je OpenID-provider te gaan." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2374,6 +2767,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Dit vraagt om te posten of te verwijderen" @@ -2382,25 +2778,37 @@ msgstr "Dit vraagt om te posten of te verwijderen" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Je moet hier dus posten" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Deze pagina is niet beschikbaar in een mediatype dat jij accepteert" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Tijdzone" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Tijdzone niet geselecteerd" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2413,18 +2821,21 @@ msgstr "" "hieronder je profiel-URL in." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Twee gebruikers ID of namen moeten worden gegeven" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL van je homepage, blog, of profiel op een andere site" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL van je profiel op een andere, compatibele microbloggingdienst" @@ -2436,15 +2847,22 @@ msgstr "URL van je profiel op een andere, compatibele microbloggingdienst" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Formulier onverwacht ingezonden." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Wachtwoord onverwacht teruggesteld." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Onbekende aktie" @@ -2475,38 +2893,47 @@ msgstr "Abonnement opheffen" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Niet ondersteunde OMB-versie" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Niet ondersteund beeldbestandsformaat." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Bijwerkingen door SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Bijwerkingen door de messenger (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Bijwerkingen van %1$s en vrienden op %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Bijwerkingen van %1$s op %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Uploaden" @@ -2527,14 +2954,16 @@ msgid "Upload a new profile image" msgstr "Upload een nieuwe profielfoto" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" -"Gebruik deze pagina om je vrienden en collega´s uit te nodigen voor deze " -"site" +"Gebruik deze pagina om je vrienden en collega´s uit te nodigen voor deze site" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel" @@ -2558,11 +2987,16 @@ msgstr "Gebruiker waarnaar geluisterd wordt bestaat niet." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Gebruiker heeft geen profiel." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Gebruikersnaam" @@ -2571,29 +3005,33 @@ msgid "User not found." msgstr "Gebruiker niet gevonden" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Welke tijdzone heb je normaal?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Hoe staat het ermee, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Waar je bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Foutief beeldbestandstype voor '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Verkeerde afmeting van afbeelding bij '%s'" @@ -2601,7 +3039,9 @@ msgstr "Verkeerde afmeting van afbeelding bij '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Ja" @@ -2624,11 +3064,12 @@ msgid "You are already logged in!" msgstr "Je bent al aangemeld!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Je bent bij deze abonnees al aangemeld:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Je bent niet verbonden met deze gebruiker" @@ -2646,7 +3087,7 @@ msgstr "Je kunt een nieuw account aanmaken om berichten te gaan plaatsen." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Je kunt een SMS ontvangen via mail van %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2655,6 +3096,7 @@ msgstr "" "te klikken." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, fuzzy, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2663,7 +3105,8 @@ msgstr "" "Je kunt berichten verzenden en ontvangen via Jabber/GTalk [instant messages]" "(%%doc.im%%). Configureer je adres en instellingen hieronder." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2674,21 +3117,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Je kunt het lokale abonnement gebruiken!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Je kunt niet registreren als je niet met de licentie akkoord gaat." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Je hebt dat profiel niet ingezonden" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2710,17 +3155,20 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Je mag geen status van een ander wissen" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" "Je moet ingelogd zijn om andere te uit te nodigen om gebruik te maken van %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2729,20 +3177,21 @@ msgstr "" "registreren op de site. Bedankt voor de verspreiding en groei van de " "gemeenschap!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Je bent geïdentificeerd. Vul hieronder een nieuw wachtwoord in." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Je OpenID-URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Je gebruikersnaam op deze server, of je geregistreerde e-mailadres." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2751,47 +3200,57 @@ msgstr "" "Met [OpenID](%%doc.openid%%) kun je op vele sites inloggen met hetzelfde " "gebruikersaccount. Hier kun je de aan je account gekoppelde OpenID's beheren." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "een paar seconden geleden" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "ongeveer %d dagen geleden" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "ongeveer %d uur geleden" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "ongeveer %d minuten geleden" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "ongeveer %d maanden geleden" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "ongeveer een dag geleden" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "ongeveer een maand geleden" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "ongeveer een jaar geleden" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "ongeveer een uur geleden" @@ -2813,12 +3272,14 @@ msgid "reply" msgstr "antwoord" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "gelijk aan wachtwoord hierboven" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "Dit filetype is niet toegestaan" @@ -2839,6 +3300,26 @@ msgstr "« Later" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Er is een problem ontstaan met je sessie, Porbeer nog eens aub." @@ -2847,6 +3328,7 @@ msgid "This notice is not a favorite!" msgstr "Dit bericht is geen favoriet" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Kan deze favoriet niet verwijderen" @@ -2854,22 +3336,28 @@ msgstr "Kan deze favoriet niet verwijderen" msgid "Favor" msgstr "Favoriet" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Stuur mij een Email als iemand mij als favoriet aanduid" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Stuur mij een Email als iemand mij een privebericht toezend" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Dit bericht is al een favoriet" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Kan geen favoriet aanmaken" @@ -2879,11 +3367,13 @@ msgstr "Niet favoriet" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s favorite berichten" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed voor favorieten berichten van %s" @@ -2925,33 +3415,44 @@ msgid "Login with your username and password. " msgstr "Log in met je gebruikersnaam en paswoord._" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Dit is te lang. max. 140 karakters invoeren." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Geen begunstigde aangeduid" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Je kunt geen bericht naar deze gebruiker zenden" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Stuur geen berichten naar jezelf, spreek gewoon zachtjes tegen jezelf." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Geen gebruiker gevonden zoals je zoekt" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nieuw bericht" @@ -2962,7 +3463,8 @@ msgstr "Bericht zonder bekend profiel" #: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%) laat je toe om in meerdere sites in te loggen_" +msgstr "" +"[OpenID](%%doc.openid%%) laat je toe om in meerdere sites in te loggen_" #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " @@ -3005,6 +3507,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -3033,6 +3540,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -3053,12 +3562,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -3066,7 +3578,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -3090,51 +3602,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3153,14 +3684,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3169,6 +3703,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3177,24 +3712,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3205,33 +3745,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3248,18 +3798,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3269,89 +3820,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3359,11 +3932,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3378,7 +3951,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3390,7 +3963,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3399,31 +3972,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3436,14 +4017,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s en vrienden" @@ -3453,22 +4039,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Instellingen" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3485,35 +4081,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Onbekend bericht." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Onbekende gebruiker." @@ -3522,12 +4127,12 @@ msgstr "Onbekende gebruiker." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Je bent al aangemeld!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3544,40 +4149,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Geen gebruikersnaam." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Onbekend bericht." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3589,16 +4212,17 @@ msgstr "" "spaties." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Biografie is te lang (maximaal 140 tekens)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Kon gebruiker niet actualiseren." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Instellingen opgeslagen." @@ -3616,7 +4240,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3632,7 +4257,7 @@ msgstr "" "Een bevestigingscode is verstuurd naar het opgegeven IM-adres. Je moet ermee " "accoord gaan dat %s boodschappen aan jou stuurt." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3646,54 +4271,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Geen inhoud!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Later" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Eerder »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Feed voor vrienden van %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3739,12 +4379,14 @@ msgstr "" msgid "Sync preferences" msgstr "Voorkeuren" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Populaire berichten" @@ -3759,7 +4401,8 @@ msgid "The most popular notices on the site right now." msgstr "De meest populaire berichten op de site op dit moment." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Nieuwe gebruikers" @@ -3773,15 +4416,17 @@ msgstr "Nieuwe gebruikers, pagina %d" msgid "A selection of some of the great users on %s" msgstr "Een selectie van de actieve gebruikers op %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Die gebruiker is geblokkeerd voor inschrijving" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Geen ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Groeps logo" @@ -3789,11 +4434,13 @@ msgstr "Groeps logo" msgid "You can upload a logo image for your group." msgstr "Je kan hier een logo voor je groep uploaden" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo geactualiseerd." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Actualiseren van je logo is niet gelukt." @@ -3812,7 +4459,8 @@ msgid "A list of the users in this group." msgstr "Lijst van de leden in deze groep" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Groepen" @@ -3827,6 +4475,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Maak een nieuw groep aan" @@ -3839,7 +4488,7 @@ msgstr "" "interesses. Scheid de zoektermen met spaties; ze moeten uit 3 of meer tekens " "bestaan." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Groep zoeken" @@ -3861,20 +4510,20 @@ msgstr "Stuur mij reacties via Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Een bevestigingscode is gezonden naar_" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Je moet ingelogd zijn om deze groep bij te wonen" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Je bent al aangemeld bij deze groep!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Kan de gebruiker %s niet aan de %s groep toevoegen " -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "% is bij de groep gekomen %s" @@ -3883,15 +4532,18 @@ msgstr "% is bij de groep gekomen %s" msgid "Inboxes must be enabled for groups to work." msgstr "De inbox moet aan staan voor groepen om te kunnen functioneren" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Je moet ingelogd zijn om uit te schrijven uit de groep" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Groep onbekend" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Je bent geen lid van deze groep" @@ -3900,21 +4552,25 @@ msgid "You may not leave a group while you are its administrator." msgstr "" "Als administrator/eigenaar van de groep kan je niet je lidmaatschap opgeven" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Kon geen member vinden" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Kan de gebruiker %s niet verwijderen uit de groep %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s heeft de groep verlaten %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Login op de website" @@ -3926,15 +4582,17 @@ msgstr "Geen huidige status" msgid "New group" msgstr "Nieuwe groep" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Gebruik dit formulier voor de nieuwe groep te maken" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Kan de groep niet maken" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Kan de groeps-lidmaatschap niet aanmaken" @@ -3946,11 +4604,14 @@ msgstr "Dit is te lang._" msgid "Don't send a message to yourself; " msgstr "Geen berichten naar jezelf zenden; _" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Berichten gepubliceerd " -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax fout" @@ -3969,7 +4630,7 @@ msgstr "Nudge verzonden" msgid "Nudge sent!" msgstr "Nudge verzonden!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "Log in met OpenID" @@ -3994,11 +4655,13 @@ msgstr "URL auto-sorteren" msgid "Service" msgstr "Service" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Automatische verkorting dienst te gebruiken" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "URL verkorting dienst is te lang (max. 50tekens)." @@ -4006,16 +4669,17 @@ msgstr "URL verkorting dienst is te lang (max. 50tekens)." msgid "Change your password." msgstr "Verander je wachtwoord" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Wachtwoord veranderd" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Geen geldige personen-tag: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Gebruikers eigen-tagged met %s - page %d" @@ -4025,11 +4689,12 @@ msgstr "Gebruikers eigen-tagged met %s - page %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Er zijn gebruikers die hebben hunzelf getagged \"%s\"" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Profiel informatie" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4039,20 +4704,25 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Ongeldige tag: '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Kon de tags niet opslaan." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Openbare tijdlijn, pagina %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -4072,11 +4742,13 @@ msgstr "Publieke tag-wolk" msgid "These are most popular recent tags on %s " msgstr "De meest recente en populairste tags %s_" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Tag-wolk" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Sorry, maar alleen uitgenodigde mensen kunnen registeren" @@ -4127,7 +4799,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Antwoorden aan %s, pagina %d" @@ -4137,51 +4810,72 @@ msgstr "Antwoorden aan %s, pagina %d" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s groep" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s groep, pagina %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Groeps profiel" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Bericht" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Groeps aktie" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Berichten-feed voor groep %s" # String should contain a variable token for since 'when' -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Lid" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(geen)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Alle leden" @@ -4191,14 +4885,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service_" +"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service_" #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "Alleen de zender en ontvanger_" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, pagina %d" @@ -4208,30 +4902,37 @@ msgid "'s profile" msgstr "'s profiel" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Gebruikersprofiel" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Foto" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Gebruikers akties" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Stuur de gebruiker een direct bericht" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Bericht" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Alle abonnees" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Alle groepen" @@ -4241,8 +4942,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** heeft een account op %%%%site.name%%%%, een [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service_" +"**%s** heeft een account op %%%%site.name%%%%, een [micro-blogging](http://" +"en.wikipedia.org/wiki/Micro-blogging) service_" #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4258,7 +4959,7 @@ msgstr "Stuur mij berichten via Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Die bevestigingscode is niet voor jou!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4322,17 +5023,18 @@ msgstr "Dit zijn de mensen van wie %s de berichten volgt." msgid "These are the people whose " msgstr "Dit zijn de mensen die %s's berichten volgen." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Geen Jabber-ID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Microblog van %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4356,7 +5058,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4366,17 +5068,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Kon avatarinformatie niet opslaan" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4385,20 +5087,23 @@ msgstr "" msgid "No such tag." msgstr "Onbekend bericht." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Microblog van %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Geen verzoek gevonden!" @@ -4407,16 +5112,17 @@ msgstr "Geen verzoek gevonden!" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Nieuw wachtwoord" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4429,158 +5135,167 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Kon e-mailbevestiging niet verwijderen." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Fout bij opslaan van de gebruiker." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Geen profiel-URL teruggestuurd door de server." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Profiel op afstand zonder overeenkomend profiel" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Abonnement opheffen" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Probleem bij opslaan bericht." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Actualiseren avatar niet gelukt." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" # This would be appropriate for the footer menu link (actual context isn't clear!) -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Over ons" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Maak een nieuw account aan" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Die OpenID is niet bekend." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Help" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Nieuw bericht" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Nieuw bericht" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Abonnementen" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Onbekende gebruiker." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4593,12 +5308,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Maak een nieuw account aan" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Openbaar" @@ -4620,34 +5338,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL van je homepage, blog, of profiel op een andere site" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Abonnementen" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Beschrijf jezelf en je interesses in 140 tekens" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4657,21 +5380,21 @@ msgstr "Waar je bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Uitloggen" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4704,12 +5427,12 @@ msgstr "Inloggen" msgid "Leave" msgstr "Opslaan" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Ongeldige gebruikersnaam of wachtwoord." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Maak een nieuw account aan" @@ -4730,24 +5453,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s volgt nu je berichten op %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Locatie: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Homepage: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4762,44 +5485,52 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s volgt nu je berichten op %2$s." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr " van " -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Nieuw bericht" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 of meer tekens" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "in antwoord op" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "antwoord" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4820,27 +5551,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Openbaar" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Personen zoeken" @@ -4858,32 +5591,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Abonneren op afstand" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Abonneren op afstand" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "De gebruiker heeft je geblokkeerd." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Abonnement geautoriseerd" @@ -4896,10 +5631,11 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Deblokkeer deze gebruiker." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Deblokkeer" @@ -4907,6 +5643,2056 @@ msgstr "Deblokkeer" msgid "Unsubscribe from this user" msgstr "Uitschrijven van deze gebruiker" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed voor vrienden van %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed voor vrienden van %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed voor vrienden van %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s en vrienden" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar geactualiseerd." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Je staat op het punt een bericht definitief te verwijderen._ _ Als dit " +"gebeurd kan het nooit meer teruggevonden worden." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Er is een problem ontstaan met je sessie, Porbeer nog eens aub." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Stuur mij een Email als iemand mij een privebericht toezend" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Je kan hier een logo voor je groep uploaden" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog van %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Zoek naar mensen op %%site.name%% op basis van hun naam, locatie of " +"interesses. Scheid de zoektermen met spaties; ze moeten uit 3 of meer tekens " +"bestaan." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Doorzoek de stroom naar \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Om veiligheidsredenen vragen we je je gebruikersnaam en wachtwoord nogmaals " +"in te voeren alvorens je instellingen te veranderen." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Openbare feed" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Openbare feed" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Openbare feed" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " +"telefoonnummer." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Aanmaken" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Groeps profiel" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "'s profiel" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Berichten-feed voor %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Berichten-feed voor %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Berichten-feed voor %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Feed voor tag %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profielinstellingen" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Een bevestigingscode is verzonden naar het telefoonnummer dat u hebt " +"toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies " +"hoe het te gebruiken." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Geen gebruiker gevonden zoals je zoekt" + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Kon e-mailbevestiging niet verwijderen." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Ga alsjeblieft deze details na om er zeker van te zijn dat je je wilt " +"abonneren op de berichten van deze gebruiker. Als je niet zojuist hebt " +"aangegeven je op iemand's berichten te willen abonneren, klik dan op " +"\"Annuleer\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Als je al een account hebt, log dan in met je gebruikersnaam en wachtwoord " +"om het aan je OpenID te koppelen." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s volgt nu je berichten op %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Met vriendelijke groet,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Zoeken" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Onbekend document." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Lijst van de leden in deze groep" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Lijst van de leden in deze groep" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Gebruikersprofiel" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s en vrienden" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Lijst van de leden in deze groep" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Deblokkeer deze gebruiker." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Bevestigingscode" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan dit bericht niet verwijderen." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ongeldige tag: '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Gebruikersnaam al in gebruik. Probeer een andere." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Kan geen favoriet aanmaken" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nieuw bericht" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nieuw bericht" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Geen geldige gebruikersnaam." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Geen begunstigde aangeduid" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "De gebruiker heeft je geblokkeerd." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Je bent geen lid van deze groep" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Onbekende gebruiker." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Je moet ingelogd zijn om deze groep bij te wonen" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Groepen" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kon gebruiker niet actualiseren." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Voorkeuren opgeslagen." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Geen resultaten" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "De gebruiker heeft je geblokkeerd." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Bericht" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Kon profiel niet opslaan." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"Met [OpenID](%%doc.openid%%) kun je op vele sites inloggen met hetzelfde " +"gebruikersaccount. Hier kun je de aan je account gekoppelde OpenID's beheren." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profielinstellingen" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service_" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Als je je paswoord vergeten of verloren bent, kan je hier een nieuwe " +"aanvragen naar het mailadres dat bij ons _ _ opgeslagen is in je account." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Je bent geïdentificeerd. Vul hieronder een nieuw wachtwoord in." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Wachtwoordherstel aangevraagd" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Fout bij bevestigingscode." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Abonnement geautoriseerd" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s favorite berichten" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Berichten-feed voor groep %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Berichten-feed voor groep %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Berichten-feed voor groep %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) service_" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Onbekende gebruiker." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Berichten tagged met %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Berichten-feed voor groep %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** heeft een account op %%%%site.name%%%%, een [micro-blogging](http://" +"en.wikipedia.org/wiki/Micro-blogging) service_" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s volgt nu je berichten op %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Berichten-feed voor %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Berichten-feed voor %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Dit bericht is al een favoriet" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Dit bericht is geen favoriet" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kan deze favoriet niet verwijderen" + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Geen begunstigde aangeduid" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Kan geen ene status vinden" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Updates antwoordend op %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Bijwerkingen van %1$s op %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Alle abonnementen" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profielinstellingen" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Je bent geen lid van deze groep" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Probleem bij opslaan bericht." + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Gebruikersprofiel" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profiel" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Uploaden" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Wijzig jouw wachtwoord" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Koppel" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Zoeken" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Inloggen" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Onbekende gebruiker." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Onbekende gebruiker." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Geen inhoud!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Zoeken" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Homepage is geen geldige URL" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Onbekend bericht." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Dit is te lang. max. 140 karakters invoeren." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "" +"Je kan de gebruiker niet volgen, we hebben deze gebruiker niet gevonden" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Biografie is te lang (maximaal 140 tekens)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Je bent al aangemeld bij deze groep!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Kan de gebruiker %s niet aan de %s groep toevoegen " + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Je bent geen lid van deze groep" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Kan de gebruiker %s niet verwijderen uit de groep %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s groep" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Groeps aktie" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Dat is te lang. Maximale bericht lengte is 140 tekens." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Niet ondersteund beeldbestandsformaat." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Foto" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Biografie is te lang (maximaal 140 tekens)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Bijwerkingen van %1$s op %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Gebruiker waarnaar geluisterd wordt bestaat niet." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Niet geautoriseerd." + +# tokens zou vervangen moeten worden dus +# tokens need to be replaced +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "" +"Kan niet converteren verzoek om tokens om toegang te krijgen tot de tokens" + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Onbekende versie van het OMB-protocol." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Onbekend bericht." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Onbekend bericht." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Bijwerkingen van %1$s op %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Deze pagina is niet beschikbaar in een mediatype dat jij accepteert" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Log in met je gebruikersnaam en wachtwoord. Heb je nog geen gebruikersnaam? " +"[Registreer](%%action.register%%) dan een nieuw account, of probeer [OpenID]" +"(%%action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alle updates die overeenkomen met de zoekterm \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Beschrijf jezelf en je interesses in 140 tekens" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Beschrijf jezelf en je_" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Biografie is te lang (maximaal 140 tekens)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Geen geldige profiel-URL (geen YADIS document)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +# Token need to be replaced +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Kan geen verzoek om token krijgen" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Berichten-feed voor groep %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Bijwerkingen van %1$s op %2$s!" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed voor vrienden van %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed voor vrienden van %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed voor vrienden van %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s groep" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Berichten gepubliceerd " + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Deze pagina is niet beschikbaar in een mediatype dat jij accepteert" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Berichten-feed voor %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Ga alsjeblieft deze details na om er zeker van te zijn dat je je wilt " +"abonneren op de berichten van deze gebruiker. Als je niet zojuist hebt " +"aangegeven je op iemand's berichten te willen abonneren, klik dan op " +"\"Annuleer\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Het abonnement is geautoriseerd maar er is geen callback-URL doorgegeven. " +"Loop de instructies van de site na voor details over hoe het abonnement te " +"autoriseren. Je abonnement-token is:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Het abonnement is afgewezen maar er is geen callback-URL doorgegeven. Loop " +"de instructies van de site na voor details over hoe het abonnement volledig " +"af te wijzen." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan avatar-URL '%s' niet lezen" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Foutief beeldbestandstype voor '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Kon niet omleiden naar service: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Vind de inhoud van een bericht" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Kan de gebruiker niet aan het bevestigde mailadres bijwerken" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Nudge verzonden" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Antwoorden aan %s" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Probleem bij opslaan bericht." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Geen bevestigingscode." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecteer een provider" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Beschrijf jezelf en je interesses in 140 tekens" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Beschrijf jezelf en je interesses in 140 tekens" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Berichten-feed voor %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s volgt nu je berichten op %2$s." + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " van " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Kan deze favoriet niet verwijderen" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Verwijderd bericht" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Maak een nieuw account aan" diff --git a/locale/nn/LC_MESSAGES/statusnet.mo b/locale/nn/LC_MESSAGES/statusnet.mo index 7dbde4019428998e20d4ff8b9b0b1eb5be0e661b..1dda46a4b0d8649b40aa9c66a24163eedc466581 100644 GIT binary patch delta 29135 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 delta 20808 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 z\n" "Language-Team: Norwegian/Nynorsk \n" @@ -15,14 +15,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Søkestraum for «%s»" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -35,17 +35,19 @@ msgid " from " msgstr " frå " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Oppdateringar som svarar til %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s har invitert deg til %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -98,6 +100,7 @@ msgstr "" "Beste helsing, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s høyrer no på notisane dine på %2$s." @@ -120,25 +123,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s oppdateringar som svarar på oppdateringar frå %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s sin status på %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s offentlege straum" @@ -148,34 +154,48 @@ msgstr "%s offentlege straum" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s med vener" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentleg tidsline" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tidsline" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s oppdateringar frå alle saman!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -183,7 +203,8 @@ msgstr "" "(Du mottek ein epost med instruksjonar på korleis du stadfester epostadressa " "di)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -192,7 +213,8 @@ msgstr "" "**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er ei mikrobloggingteneste. " @@ -204,33 +226,37 @@ msgstr ". Bidrag skal verta fylgd av fullt namn eller kallenamn." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom. " "Kravd." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 eller fleire teikn" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 eller fleire teikn, og ikkje gløym dei." #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 eller fleire teikn. Kravd." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -240,6 +266,7 @@ msgstr "" "for å senda meldinger til deg." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -273,7 +300,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Fann ikkje API-metode." @@ -296,16 +350,23 @@ msgstr "Fann ikkje API-metode." #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API-metoden er ikkje ferdig enno." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Om" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Godta" @@ -316,6 +377,9 @@ msgstr "Godta" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Legg til" @@ -333,27 +397,29 @@ msgstr "Legg/fjern OpenID-er" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adresse" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Venene sine adresser for invitasjon (ei per line)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Alle tingingar" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Alle oppdateringar for %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Alle oppdateringer frå søket «%s»" @@ -363,30 +429,37 @@ msgstr "Alle oppdateringer frå søket «%s»" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Allereie logga inn." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Allereie tinga!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Sikker på at du vil sletta notisen?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser tinging" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Logg inn automatisk i framtidi (ikkje for delte maskiner)." #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -395,15 +468,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Brukarbilete" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Lasta opp brukarbilete." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -413,6 +490,7 @@ msgstr "" "instruksjonar (la du %s til venelista di?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -421,7 +499,7 @@ msgstr "" "med instruksjonar." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Ventar på godkjenning for dette telefonnummeret." @@ -432,6 +510,8 @@ msgstr "Før »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Om meg" @@ -439,16 +519,18 @@ msgstr "Om meg" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "«Om meg» er for lang (maks 140 " #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Kan ikkje sletta notisen." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Kan ikkje lesa brukarbilete-URL «%s»" @@ -456,6 +538,8 @@ msgstr "Kan ikkje lesa brukarbilete-URL «%s»" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Klarar ikkje lagra nytt passord." @@ -463,31 +547,34 @@ msgstr "Klarar ikkje lagra nytt passord." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Avbryt" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Klarte ikkje laga OpenID-objekt." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Klarar ikkje normalisera Jabber-IDen" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Klarar ikkje normalisera epostadressa" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Endra" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Endra eposthandtering" @@ -497,11 +584,12 @@ msgid "Change password" msgstr "Endra passord" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Endra passordet ditt" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Endra profilinnstillingane dine" @@ -511,6 +599,9 @@ msgstr "Endra profilinnstillingane dine" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Godta" @@ -523,12 +614,14 @@ msgstr "Stadfest adresse" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Stadfesting avbrutt." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Stadfestingskode" @@ -537,7 +630,8 @@ msgstr "Stadfestingskode" msgid "Confirmation code not found." msgstr "Fann ikkje stadfestingskode." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -570,20 +664,24 @@ msgstr "" "Takk for at du blei med, og vi håpar du vil lika tenesta!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Kopla til" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Kopla til eksisterande konto" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakt" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Kunne ikkje laga OpenID-form: %s" @@ -591,35 +689,39 @@ msgstr "Kunne ikkje laga OpenID-form: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Kan ikkje fylgja brukar: %s er allereie på lista di." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Fann ikkje brukaren, so han kan ikkje fylgjast" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Klarte ikkje å omdirigera til tenaren: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Kan ikkje lagra brukarbilete-informasjon" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Kan ikkje lagra ny profilinfo" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Kan ikkje tinga andre til deg." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Kan ikkje tinga." @@ -639,15 +741,17 @@ msgstr "Kan ikkje konvertera spyrjebillett til tilgongsbillett." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Kan ikkje sletta e-postgodkjenning." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Kan ikkje sletta tinging." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Kan ikkje finna einkvan status." @@ -660,29 +764,38 @@ msgstr "Fekk ikkje spørjingsbillett (request token)." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Kan ikkje leggja til godkjenningskode." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Kan ikkje leggja til ny tinging." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Kan ikkje lagra profil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Kan ikkje oppdatera brukar for automatisk tinging." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Kan ikkje oppdatera brukarinformajon." @@ -698,42 +811,48 @@ msgstr "Kan ikkje oppdatera brukarinformajon." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Kan ikkje oppdatera brukar." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Lag" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Lag ei ny brukar med dette kallenamnet." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Opprett ny konto" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Oppretter ny konto for OpenID som allereie har ein brukar." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Stadfesta Jabber/Gtalk-adresse." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Godkjent mobiltelefonnummer." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Godkjent epostadresse." @@ -742,23 +861,27 @@ msgid "Currently" msgstr "Noverande" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Databasefeil, kan ikkje lagra svar: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Slett notis" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Skriv om deg og interessene dine med 140 teikn" @@ -766,11 +889,13 @@ msgstr "Skriv om deg og interessene dine med 140 teikn" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Epost" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Epostadresse" @@ -780,39 +905,43 @@ msgid "Email Settings" msgstr "Epostinnstillingar" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Epostadressa finst allereie." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Stadfesting av epostadresse" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Epostadresse («brukarnamn@example.org»)" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Epostadresser" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Skriv inn kallenamn eller epostadresse." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Skriv inn koden du fekk på telefonen." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Feil ved godkjenning av billett." #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Feil ved kopling av brukar til OpenID." @@ -823,39 +952,46 @@ msgstr "Feil ved å kopla til brukar." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Feil med innhenting av brukarbilete." #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Feil med å henta inn ny profil" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Feil med å henta inn ekstern profil" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Feil med lagring av adressestadfesting." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Feil med lagring av ekstern profil" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Feil ved lagring av profil" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Feil ved lagring av brukar" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Feil ved lagring av brukar; fungerer ikkje." @@ -864,6 +1000,9 @@ msgstr "Feil ved lagring av brukar; fungerer ikkje." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Feil ved å setja brukar." @@ -874,6 +1013,7 @@ msgstr "Feil ved oppdatering av profil" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Feil ved oppdatering av ekstern profil" @@ -883,33 +1023,36 @@ msgid "Error with confirmation code." msgstr "Feil med stadfestingskode." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Kallenamnet eksisterer" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "OSS" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Feil ved oppdatering av brukarbilete." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Straum for vener av %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Straum for svar til %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Straum for merkelapp %s" @@ -924,7 +1067,7 @@ msgstr "Søk i innhaldet av notisar" msgid "Find people on this site" msgstr "Finn folk på denne sida" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -937,6 +1080,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Fullt namn" @@ -945,23 +1093,33 @@ msgstr "Fullt namn" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Hjelp" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Heim" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Heimeside" @@ -969,21 +1127,27 @@ msgstr "Heimeside" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Heimesida er ikkje ei gyldig internettadresse." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Eg vil senda notisar med epost." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "Ljonmelding" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Ljonmeldingadresse" @@ -993,7 +1157,7 @@ msgid "IM Settings" msgstr "Ljonmeldinginnstillingar" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1001,7 +1165,7 @@ msgstr "" "Logg inn med brukarnanm/passord for å kopla brukaren til OpenID-en, viss du " "allereie har ein brukar" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1009,7 +1173,7 @@ msgstr "" "Skriv OpenID-en din i boksen nedanfor og trykk «Legg til» om du ynskjer å " "leggja han til." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1020,25 +1184,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Innkomande epost" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Fjerna innkomande epostadresse." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Det gamle passordet stemmer ikkje" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Feil brukarnamn eller passord" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1047,30 +1217,31 @@ msgstr "" "lagra i kontoen din." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Ugyldig brukarbilete-nettadresse «%s»" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Ugyldig epostadresse: «%s»" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ugyldig heimeside «%s»" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Ugyldig lisens-netadresse «%s»" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Ugyldig notisinnhald" @@ -1085,13 +1256,13 @@ msgid "Invalid notice url" msgstr "Ugyldig notis-adresse" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ugyldig profil-nettadresse «%s»" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Ugyldig profil-nettadresse (feil format)" @@ -1109,44 +1280,52 @@ msgstr "Ugyldig storleik." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Ugyldig brukarnamn eller passord." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Invitasjon(er) sendt" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Invitasjon(er) sendt til fylgjande folk:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Invitér" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Invitér nye brukarar" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Den køyrer [StatusNet](http://status.net) mikroblogging-programvare, versjon %" -"s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +"Den køyrer [StatusNet](http://status.net) mikroblogging-programvare, versjon " +"%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber-ID tilhøyrer allereie ein annan brukar." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1156,12 +1335,14 @@ msgstr "" "leggja %s til venelista di i ljonmeldingsklienten din." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Språk" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Språk er for langt (maksimalt 50 teikn)." @@ -1170,7 +1351,15 @@ msgstr "Språk er for langt (maksimalt 50 teikn)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Plassering" @@ -1179,7 +1368,12 @@ msgstr "Plassering" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Plassering er for lang (maksimalt 255 teikn)." @@ -1188,18 +1382,22 @@ msgstr "Plassering er for lang (maksimalt 255 teikn)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Logg inn" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Logg inn med ein [OpenID](%%doc.openid%%)-konto." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1210,22 +1408,26 @@ msgstr "" "%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" "%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Logg ut" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Lengre namn, fortrinnsvis ditt «ekte» namn" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Mista eller gløymd passord?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Vel ny epostadresse til å oppdatera med; fjerner den gamle." @@ -1236,16 +1438,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Styr korleis du får epost frå %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Medlem sidan" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Mikroblogg av %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1257,42 +1461,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Teksten og filene mine er tilgjengeleg under " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Ny" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Ny epostadresse for å oppdatera %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "La til ny innkomande epostadresse." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nytt kallenamn" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Ny notis" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nytt passord" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Lagra det nye passordet. Du er logga inn." @@ -1302,7 +1514,13 @@ msgstr "Lagra det nye passordet. Du er logga inn." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Kallenamn" @@ -1311,7 +1529,12 @@ msgstr "Kallenamn" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." @@ -1320,47 +1543,58 @@ msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Kallenamn må berre ha små bokstavar og nummer, ingen mellomrom." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Kallenamnet er ikkje gyldig." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Kallenamnet til brukaren du vil fylgja" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Kallenamn eller epostadresse" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Nei" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Nei Jabber-ID" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Ingen autoriserings-spørjing!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Ingen mobiloperatør vald." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Ingen innskriven kode" @@ -1372,11 +1606,15 @@ msgstr "Ingen stadfestingskode." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Ingen innhald." #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Ingen epostadresse." @@ -1385,7 +1623,9 @@ msgid "No id." msgstr "Ingen ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Ingen innkomande epostadresse." @@ -1396,6 +1636,7 @@ msgstr "Ingen kallenamn gjeve av den eksterne tenaren." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Ingen kallenamn." @@ -1403,12 +1644,14 @@ msgstr "Ingen kallenamn." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Ingen ventande stadfesting å avbryta." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Ingen telefonnummer." @@ -1418,7 +1661,8 @@ msgid "No profile URL returned by server." msgstr "Ingen profil-nettadresse returnert av tenar." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Ingen registrert epostadresse for den brukaren." @@ -1430,7 +1674,7 @@ msgstr "Fann inga spørjing." #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Ingen resultat" @@ -1441,12 +1685,16 @@ msgstr "Ingen storleik." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Fann ingen status med den ID-en." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Fann ingen status med den ID-en." @@ -1456,13 +1704,15 @@ msgid "No such OpenID." msgstr "Fann ingen slik OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Slikt dokument finst ikkje." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Denne notisen finst ikkje." @@ -1500,12 +1750,22 @@ msgstr "Tinginga finst ikkje." #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Brukaren finst ikkje." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Ingen brukar med den epostadressa eller det brukarnamnet." @@ -1519,32 +1779,38 @@ msgid "Not a recovery code." msgstr "Ikkje ei gjenopprettingskode." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Ikkje ein registrert brukar." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Ikkje eit støtta dataformat." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Ikkje ein gyldig Jabber-ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Ikkje ein gyldig OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Ikkje ei gyldig epostadresse" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Ikkje ei gyldig epostadresse." @@ -1552,6 +1818,11 @@ msgstr "Ikkje ei gyldig epostadresse." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Ikkje eit gyldig brukarnamn." @@ -1571,7 +1842,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Ikkje ein brukande profil-netadresse (ingen YADIS-dokument)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Korrupt bilete." @@ -1582,11 +1854,13 @@ msgstr "Ikkje autorisert." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Venta ikkje dette svaret!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Fann ikkje" @@ -1602,11 +1876,15 @@ msgstr "Fann ikkje" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Ikkje logga inn" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Ikkje tinga." @@ -1623,39 +1901,44 @@ msgid "Notice feed for %s" msgstr "Notisstraum for %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Notisen har ingen profil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Notisar" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Notisar merka med %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Gamalt passord" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID kontooppsett" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID auto-innsending" @@ -1663,29 +1946,34 @@ msgstr "OpenID auto-innsending" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID-adresse" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID-adresse" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID-påkopling avbrutt." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID-innlogging gjekk dunken: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID-feil: %s" @@ -1701,11 +1989,12 @@ msgid "OpenID settings" msgstr "OpenID-innstillingar" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Eventuelt legg til ei personleg melding til invitasjonen." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Hallvegs opplasta." @@ -1715,34 +2004,46 @@ msgstr "Hallvegs opplasta." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Passord" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Passord og stadfesting stemmer ikkje." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Passord må vera 6 tekn eller meir." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Passord opphenting etterspurt" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Lagra passord." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Passorda var ikkje like." @@ -1762,14 +2063,17 @@ msgid "People search" msgstr "Søk etter folk" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personleg" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Personleg melding" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, kun tall, med landskode" @@ -1783,7 +2087,7 @@ msgstr "" "brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Legg til ein notis når min Jabber/GTalk status forandrar seg." @@ -1792,7 +2096,9 @@ msgstr "Legg til ein notis når min Jabber/GTalk status forandrar seg." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Brukarval" @@ -1801,42 +2107,52 @@ msgstr "Brukarval" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Lagra brukarval." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Foretrukke språk" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Personvern" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profil-adresse" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profilinnstillingar" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Ukjend profil" @@ -1845,17 +2161,19 @@ msgid "Public Stream Feed" msgstr "Offentleg straum" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Offentleg tidsline" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publiser ein MicroID for Jabber/GTalk addressene mine" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publiser ein MicroID for epost addressa mi." @@ -1865,12 +2183,14 @@ msgid "Recent Tags" msgstr "Nylege merkelappar" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Gjenopprett" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Hent fram passord" @@ -1883,37 +2203,45 @@ msgstr "Hent fram passord for ukjend brukar." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrér" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registrering ikkje tillatt." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registreringa gikk bra" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Avslå" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Hugs meg" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Ekstern profil med ingen passande profil" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Eksternt abbonement" @@ -1927,6 +2255,9 @@ msgstr "Eksternt abbonement" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Fjern" @@ -1935,7 +2266,7 @@ msgstr "Fjern" msgid "Remove OpenID" msgstr "Fjern OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1944,34 +2275,41 @@ msgstr "" "du treng å fjerne den, legg til ein annan OpenID først." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Svar" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Svar til %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Avbryt" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Tilbakestill passord" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS telefon nummer" @@ -1980,17 +2318,18 @@ msgstr "SMS telefon nummer" msgid "SMS Settings" msgstr "SMS innstillingar" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS bekreftelse" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Samme passord som over" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Samme som passord over. Påkrevd." @@ -2003,12 +2342,21 @@ msgstr "Samme som passord over. Påkrevd." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Lagra" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Søk" @@ -2018,7 +2366,7 @@ msgid "Search Stream Feed" msgstr "Søk i straum" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2027,7 +2375,7 @@ msgstr "" "Søk i notisar på %%site.name%% i innhald. Separer nøkkelord med mellomrom; " "dei må være minimum 3 bokstavar eller meir." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2037,33 +2385,38 @@ msgstr "" "nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Velg ein tilbydar" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Send" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Send epost til denne addressa for å legge til nye notisar." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Send meg ein notis ved nye tingingar på epost." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Send meg ein notis via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2072,15 +2425,18 @@ msgstr "" "min tilbydar." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "Send meg svar via Jabber/GTalk fra folk eg ikkje abbonnerar på." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Innstillingar" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Lagra innstillingar." @@ -2100,27 +2456,32 @@ msgid "Something weird happened." msgstr "Noko rart skjedde." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Beklager, inngåande epost er ikkje tillatt." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Beklager, det er ikkje di inngåande epost addresse." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Kjeldekode" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistikk" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Fann ikkje lagra OpenID" @@ -2128,24 +2489,28 @@ msgstr "Fann ikkje lagra OpenID" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Ting" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Tingarar" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Tinging autorisert" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Tinging avvist" @@ -2153,28 +2518,35 @@ msgstr "Tinging avvist" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tingingar" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Systemfeil ved opplasting av fil." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Merkelappar" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Tekst" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Tekstsøk" @@ -2194,6 +2566,7 @@ msgid "That confirmation code is not for you!" msgstr "Den godkjenningskoden er ikkje for deg!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Den epost addressa er alt registrert hos ein annan brukar." @@ -2203,63 +2576,73 @@ msgid "That file is too big." msgstr "Fila er for stor." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Det er alt din Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Det er alt din epost addresse" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Det er alt ditt telefonnummer" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Det er ikkje din Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Det er ikkje din epost addresse." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Det er ikkje ditt telefonnummer" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Det er feil lynmeldings addresse." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Det er feil godkjennings nummer." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Det telefonnummeret er alt registrert hos ein annan brukar." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Det er for langt! Ein notis kan berre innehalde 255 teikn." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Addressa \"%s\" har blitt bekrefta for din konto." @@ -2268,11 +2651,14 @@ msgstr "Addressa \"%s\" har blitt bekrefta for din konto." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Addressa blei fjerna." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2282,7 +2668,8 @@ msgstr "" "Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " "gjennomførast. Ditt tingings teikn er: " -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2292,34 +2679,39 @@ msgstr "" "med sida sine instruksjonar for korleis ein skal avvise tinginga." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Dette er folk som lyttar til %s's notisar" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Dette er folk som lyttar til dine notisar." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Dette er folka som %s tingar oppdateringar frå." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Dette er dei du lyttar til." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Desse er alt brukarar og du var automatisk satt opp med tinging på dei:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Denne godkjenningskoden er for gammal. Vennligst start på nytt." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2328,7 +2720,7 @@ msgstr "" "kann du klikka på knappen for å gå til OpenID-tilbydaren din." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2343,6 +2735,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Dette krev anten ein POST eller DELETE." @@ -2351,49 +2746,64 @@ msgstr "Dette krev anten ein POST eller DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Dette krev ein POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Denne sida er ikkje tilgjengeleg i nokon mediatype du aksepterer." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Tidssone" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Tidssone er ikkje valt." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"For å tinga kann du [logga inn](%%action.login%%), eller " -"[registrera](%%action.register%%) ein ny konto. Um du allereie hev ein " -"konto på ei [kompatibel mikrobloggingside](%%doc.openmublog%%), kann du " -"oppgje URLen til profilen under." +"For å tinga kann du [logga inn](%%action.login%%), eller [registrera](%%" +"action.register%%) ein ny konto. Um du allereie hev ein konto på ei " +"[kompatibel mikrobloggingside](%%doc.openmublog%%), kann du oppgje URLen til " +"profilen under." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "To brukar IDer eller kallenamn er naudsynte." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste." @@ -2405,15 +2815,22 @@ msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste." #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Uventa skjemasending." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Uventa passordnullstilling." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Uventa handling." @@ -2444,38 +2861,47 @@ msgstr "Fjern tinging" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Støttar ikkje OMB-versjonen" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Støttar ikkje bileteformatet." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Oppdateringar over SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Oppdateringar over direktemeldingar (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Oppdateringar frå %1$s og vener på %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Last opp" @@ -2496,6 +2922,7 @@ msgid "Upload a new profile image" msgstr "Last opp eit nytt profilbilete" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2503,7 +2930,9 @@ msgstr "" "tenesta." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Blir berre brukt for uppdateringar, viktige meldingar og for gløymde passord" @@ -2528,11 +2957,16 @@ msgstr "Brukaren du lyttar til eksisterer ikkje." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Brukaren har inga profil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Brukaren sitt kallenamn" @@ -2541,29 +2975,33 @@ msgid "User not found." msgstr "Fant ikkje brukaren." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Kva tidssone er du vanlegvis i?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Kva skjer, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Kvar er du, t.d. «By, Fylke (eller Region), Land»" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Feil biletetype for '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Feil storleik på biletet, på '%s'" @@ -2571,7 +3009,9 @@ msgstr "Feil storleik på biletet, på '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Jau" @@ -2594,11 +3034,12 @@ msgid "You are already logged in!" msgstr "Du er allereie logga inn!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Du tingar allereie oppdatering frå desse brukarane:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Du er ikkje ven med brukaren." @@ -2616,7 +3057,7 @@ msgstr "Du kan laga ein ny konto og byrja skriva meldingar." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan motta SMS-meldingar gjennom e-post frå %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2625,15 +3066,17 @@ msgstr "" "«Fjern»." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"Du kan sende og motta meldingar gjennom Jabber/GTalk " -"[direktemeldingar](%%doc.im%%). Set opp adressa og innstillingar under." +"Du kan sende og motta meldingar gjennom Jabber/GTalk [direktemeldingar](%%" +"doc.im%%). Set opp adressa og innstillingar under." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2644,21 +3087,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Du kan nytta det lokale abonnementet!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Du sende oss ikkje den profilen" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2679,16 +3124,19 @@ msgstr "" "Helsing frå %4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Du kan ikkje sletta statusen til ein annan brukar." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Du må verta logga inn for å invitera andre brukarar til %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2696,20 +3144,21 @@ msgstr "" "Du vil få ein notis når dei du har invitert har akseptert invitasjonen og " "har registrert seg på sida. Takk for å bidra til fellesskapet her!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Du har blitt identifisert. Skriv inn eit nytt passord under her." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Din OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Ditt kallenamn på denne servere, eller din registrerte epost addresse." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2718,47 +3167,57 @@ msgstr "" "[OpenID](%%doc.openid%%) lar deg logge inn på mangen sider med den samme " "brukar kontoen. Velikehold dine OpenID herfra." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "eit par sekund sidan" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "~%d dagar sidan" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "~%d timar sidan" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "~%d minutt sidan" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "~%d månadar sidan" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "omtrent ein dag sidan" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "omtrent ein månad sidan" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "omtrent eitt år sidan" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "omtrent ein time sidan" @@ -2780,12 +3239,14 @@ msgid "reply" msgstr "svar" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "same passord som ovanfor" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "ikkje støtta fil type" @@ -2806,6 +3267,26 @@ msgstr "« Etter" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Der var eit problem med sesjonen din. Vennlegst prøv på nytt." @@ -2814,6 +3295,7 @@ msgid "This notice is not a favorite!" msgstr "Denne notisen er ikkje ein favoritt!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Kunne ikkje slette favoritt." @@ -2821,22 +3303,29 @@ msgstr "Kunne ikkje slette favoritt." msgid "Favor" msgstr "Tjeneste" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "Send meg ein epost når nokon legg til ein av mine notisar som favoritt." +msgstr "" +"Send meg ein epost når nokon legg til ein av mine notisar som favoritt." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Send meg ein epost når nokon sender meg ei privat melding." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Denne notisen er alt ein favoritt!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Kunne ikkje lagre favoritt." @@ -2846,11 +3335,13 @@ msgstr "Fjern favoritt" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s sine favorittar" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Favoritt straum for %s" @@ -2892,23 +3383,32 @@ msgid "Login with your username and password. " msgstr "Logg inn med ditt brukarnamn og passord." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Det er for langt. Ein notis kan berre være 140 teikn." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Ingen mottakar spesifisert." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Du kan ikkje sende melding til denne brukaren." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2916,11 +3416,13 @@ msgstr "" "fredleg." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Ingen slik brukar" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Ny melding" @@ -2975,6 +3477,11 @@ msgstr "Du kan oppdatere din personlege profil her" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Kan ikkje finne brukar" @@ -3003,6 +3510,8 @@ msgid "New password successfully saved. " msgstr "Nytt passord lagra." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Passord må være minst 6 teikn." @@ -3025,12 +3534,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "For å tinga må du [logga inn](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Straum for %s sine favorittar" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Kunne ikkje hente fram favorittane." @@ -3038,7 +3550,7 @@ msgstr "Kunne ikkje hente fram favorittane." msgid "No such message." msgstr "Kan ikkje finne den meldinga." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Kun sendaren og mottakaren kan lese denne meldinga." @@ -3062,51 +3574,70 @@ msgid "Mobile carrier for your phone. " msgstr "Tenestetilbydar for telefonen din." #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Direkte meldingar til %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Alle direkte meldingar sendt til %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Alle direkte meldingar du har sendt" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alle direkte meldingar sendt fra %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Inga meldingstekst!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Kunne ikkje finne mottakar." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "Kan ikkje senda direktemeldingar til brukarar som du ikkje er ven med." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favorittar frå %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s oppdateringar favorisert av %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s la til di melding som ein favoritt" @@ -3129,14 +3660,17 @@ msgstr "" "Twitter," #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter-innstillingar" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitterkonto" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Noverande verifisert Twitterkonto" @@ -3145,6 +3679,7 @@ msgid "Twitter Username" msgstr "Brukarnamn på twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Inga mellomrom." @@ -3153,18 +3688,22 @@ msgid "Twitter Password" msgstr "Passord på Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Send mine notisar til Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Send lokale «@»-svar til Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Ting mine twitter-vener her." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3173,6 +3712,7 @@ msgstr "" "Maksimalt 15 teikn." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Twitter-informasjonen fungerer ikkje mot Twitter." @@ -3183,33 +3723,43 @@ msgstr "Klarte ikkje å hente informasjon fra kontoen din, «%s», frå Twitter. #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Lagra Twitter-innstillingar." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Det er ikkje Twitter-kontoen din." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Kunne ikkje fjerna Twitter-brukar." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Fjerna Twitter-brukar." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Klarte ikkje å lagra Twitter-innstillingar." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Twitter-innstillingar lagra." @@ -3226,18 +3776,19 @@ msgid "The subscription has been rejected, but no " msgstr "Abonnementet blei avslådd, men ingen" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Resultat frå kommandoen" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Kommandoen utførd" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Kommandoen feila" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Orsak, men kommandoen er ikkje laga enno." @@ -3247,89 +3798,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Tingingar: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Brukaren har ikkje siste notis" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Notis markert som favoritt." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Fullt namn: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Stad: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Heimeside: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Om: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Direkte melding til %s sendt" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Ein feil oppstod ved sending av direkte melding." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Spesifer namnet til brukaren du vil tinge" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Tingar %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Spesifer namnet til brukar du vil fjerne tinging på" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Tingar ikkje %s lengre" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Kommando ikkje implementert." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notifikasjon av." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Kan ikkje skru av notifikasjon." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notifikasjon på." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Kan ikkje slå på notifikasjon." @@ -3337,11 +3910,11 @@ msgstr "Kan ikkje slå på notifikasjon." msgid "Commands:\n" msgstr "Komandoar:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Kunne ikkje lagre melding." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Kunne ikkje oppdatere melding med ny URI." @@ -3358,7 +3931,7 @@ msgstr "" "Du har ei ny addresse å sende til på %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Ny privat melding fra %s" @@ -3372,7 +3945,7 @@ msgstr "" "%1$s (%2$s) sendte deg ei privat melding: \n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Kun brukaren kan lese sine eigne meldingar." @@ -3381,31 +3954,39 @@ msgid "This form should automatically submit itself. " msgstr "Dette skjemaet vil automatisk bli sendt." #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favorittar" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "%s's favoritt meldingar" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Brukar" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Innboks" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Dine innkomande meldinger" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Utboks" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Dine sende meldingar" @@ -3418,14 +3999,19 @@ msgid "Twitter integration options" msgstr "Twitter integrerings-innstillingar" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Til" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Kunne ikkje prosessera melding." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s med vener, side %d" @@ -3435,21 +4021,31 @@ msgid "You can upload your personal avatar." msgstr "Du kan laste opp ein personleg avatar." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Avatar-innstillingar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Forhandsvis" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Skaler" @@ -3466,34 +4062,43 @@ msgid "There was a problem with your session token. " msgstr "Der var eit problem med sesjonen." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Velg eit utvalg av bildet som vil blir din avatar." #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Fant ikkje igjen fil data." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Mista fila vår." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Ukjend fil type" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Ingen vald profil." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Fann ingen profil med den IDen." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Blokker brukaren" @@ -3501,11 +4106,11 @@ msgstr "Blokker brukaren" msgid "Are you sure you want to block this user? " msgstr "Er du sikker på at du vil blokkera denne brukaren?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Du har allereie blokkert denne brukaren." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Lagring av informasjon feila." @@ -3522,38 +4127,56 @@ msgstr "Du er i ferd med å fjerne ein oppdatering for godt." msgid "Add to favorites" msgstr "Legg til i favorittar" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Rediger %s gruppa" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "Innboks må være slått på for at grupper skal virke" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Du må være logga inn for å lage ei gruppe." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Ingen kallenamn" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Fann ikkje gruppa" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Du må være administrator for å redigere gruppa" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Bruk dette skjemaet for å redigere gruppa" @@ -3562,14 +4185,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Kallenamn kann berre ha små bokstavar" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "skildringa er for lang (maks 140 teikn)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Kann ikkje oppdatera gruppa." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Lagra innstillingar." @@ -3586,7 +4210,8 @@ msgstr "Lag ei ny e-postadresse for å posta til;" msgid "Send me email when someone " msgstr "Send meg ein epost når nokon " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Tillat vennar å sende meg ein epost." @@ -3598,7 +4223,7 @@ msgstr "Den e-postadressa er alt registrert hjå" msgid "A confirmation code was sent to the email address you added. " msgstr "Sendte konfirmasjonskode til e-postadresse du la til." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Server feil - kunne ikkje hente brukar!" @@ -3612,51 +4237,66 @@ msgstr "Vist du ønskjer at %s applikasjon skal automatisk oppgradere" msgid "Allow %s to update my Facebook status" msgstr "Tillat %s å oppdatere min Facebook status" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Hopp over" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Ingen innhald." #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginering" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "« Etter" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Før »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Takk for at du inviterar vennane dine til å bruke %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Invitasjon(er) sendt til fylgjande folk:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Du har blitt invitert til %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Inviter venane dine til å nytta %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Vennar som alt brukar %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Send invitasjonar" @@ -3698,12 +4338,14 @@ msgstr "Vist du ønskjer at %s skal atuomatisk oppdatere" msgid "Sync preferences" msgstr "Synkronisering" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Fjern favoritt" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Populære notisar" @@ -3717,7 +4359,8 @@ msgid "The most popular notices on the site right now." msgstr "Viser dei mest populære notisane på sida akkurat no." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Profilerte folk" @@ -3731,15 +4374,17 @@ msgstr "Profilerte folk, side %d" msgid "A selection of some of the great users on %s" msgstr "Eit utval av nokre av dei flotte folka på %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Brukaren tillet deg ikkje å tinga meldingane sine." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Ingen ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo åt gruppa" @@ -3747,11 +4392,13 @@ msgstr "Logo åt gruppa" msgid "You can upload a logo image for your group." msgstr "Du kan lasta opp ein logo for gruppa." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Logo oppdatert." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Feil ved oppdatering av logo." @@ -3770,7 +4417,8 @@ msgid "A list of the users in this group." msgstr "Ei liste over brukarane i denne gruppa." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupper" @@ -3785,6 +4433,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% grupper lar deg finne og snakke med" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Opprett ei ny gruppe" @@ -3794,7 +4443,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Søk etter grupper på %%site.name%% etter namn, stad eller skildring." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Gruppesøk" @@ -3816,20 +4465,20 @@ msgstr "Send meg svar på Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Ein stadfestingskode vart sendt" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Du må være logga inn for å bli med i ei gruppe." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Du er allereie medlem av den gruppa" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s blei medlem av gruppe %s" @@ -3838,15 +4487,18 @@ msgstr "%s blei medlem av gruppe %s" msgid "Inboxes must be enabled for groups to work." msgstr "Innboks må være slått på for at grupper skal kunne fungere." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Du må være innlogga for å melde deg ut av ei gruppe." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Denne gruppa finst ikkje." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Du er ikkje medlem av den gruppa." @@ -3854,21 +4506,25 @@ msgstr "Du er ikkje medlem av den gruppa." msgid "You may not leave a group while you are its administrator." msgstr "Du kan ikkje melde deg ut av ei gruppe når du er administrator i den." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Kan ikkje finne brukar." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Kunne ikkje fjerne %s fra %s gruppa " -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s forlot %s gruppa" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Logg inn " @@ -3880,15 +4536,17 @@ msgstr "Ingen status" msgid "New group" msgstr "Ny gruppe" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Bruk dette skjemaet for å lage ein ny gruppe." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Kunne ikkje laga gruppa." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Kunne ikkje bli med i gruppa." @@ -3900,11 +4558,14 @@ msgstr "Det er for langt." msgid "Don't send a message to yourself; " msgstr "Ikkje send melding til deg sjølv;" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Melding lagra" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax feil" @@ -3923,7 +4584,7 @@ msgstr "Dytta!" msgid "Nudge sent!" msgstr "Dytta!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "OpenID-innlogging" @@ -3947,11 +4608,13 @@ msgstr "URL forkorting" msgid "Service" msgstr "Teneste" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Den automatisk forkortingstenesta du vil bruke" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Adressa til forkortingstenesta er for lang (maksimalt 50 teikn)." @@ -3959,16 +4622,17 @@ msgstr "Adressa til forkortingstenesta er for lang (maksimalt 50 teikn)." msgid "Change your password." msgstr "Endra passordet ditt" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Endra passord" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Ikkje gyldig merkelapp: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Brukarar sjølv-merka med %s, side %d" @@ -3978,11 +4642,12 @@ msgstr "Brukarar sjølv-merka med %s, side %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Desse brukarane har merka seg sjølve med «%s»" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Profil informasjon" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3994,20 +4659,25 @@ msgid "Automatically subscribe to whoever " msgstr "Automatisk tinging av alle som" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Ugyldig merkelapp: %s" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Kan ikkje lagra merkelapp." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Offentleg tidsline, side %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Kan ikkje hente offentleg straum." @@ -4017,8 +4687,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki" -"/Micro-blogging)-teneste" +"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/" +"Micro-blogging)-teneste" #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4029,11 +4699,13 @@ msgstr "Offentleg emne sky" msgid "These are most popular recent tags on %s " msgstr "Dei mest populære emna på %s" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Emne sky" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Beklage, men kun inviterte kan registrere seg." @@ -4082,7 +4754,8 @@ msgstr "(Du skal få ein beskjed via epost )" msgid "That's a local profile! Login to subscribe." msgstr "Det er ikkje ein lokal profil! Log inn for å tinge." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Svar til %s, side %d" @@ -4092,50 +4765,71 @@ msgstr "Svar til %s, side %d" msgid "%s favorite notices, page %d" msgstr "%s favoritt meldingar, side %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s gruppe" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s gruppe, side %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Gruppe profil" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Merknad" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Gruppe handlingar" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Notisstraum for %s gruppa" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Medlemmar" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Alle medlemmar" @@ -4145,14 +4839,14 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** er ei brukargruppe på %%%%site.name%%%%, ei " -"[mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" +"**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "Berre sendaren og mottakaren" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, side %d" @@ -4162,30 +4856,37 @@ msgid "'s profile" msgstr " sin profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Brukarprofil" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Bilete" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Brukarverkty" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Send ei direktemelding til denne brukaren" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Melding" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Tingarar" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Alle gruppar" @@ -4195,8 +4896,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** har ein konto på %%%%site.name%%%%, ei " -"[mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" +"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4210,7 +4911,7 @@ msgstr "Send meg notisar på SMS;" msgid "A confirmation code was sent to the phone number you added. " msgstr "Ei stadfestingskode vart sendt til telefonnummeret du la til." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Telefontilbydar" @@ -4268,16 +4969,17 @@ msgstr "Dette er dei du lyttar til." msgid "These are the people whose " msgstr "Dette er folk som" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Notisar merka med %s, side %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Meldingar merka med «%s», dei siste fyrst" @@ -4299,7 +5001,7 @@ msgstr "Merkelapp %s" msgid "Tag user" msgstr "Merk brukar" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4311,18 +5013,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Du kan berre leggje til emneord på folk som du tingar notisar frå, eller som " "tingar notisar frå deg." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Kunne ikkje lagra emneord." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Bruk dette skjemaet for å leggje til emneord til dei som tingar notisar frå " @@ -4332,20 +5034,23 @@ msgstr "" msgid "No such tag." msgstr "Dette emneord finst ikkje." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Mikroblogg merka med emneordet %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Blokkering av brukar feila." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "De-blokkering av brukar feila." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Finst ikkje." @@ -4353,15 +5058,16 @@ msgstr "Finst ikkje." msgid "Add your Twitter account to automatically send " msgstr "Legg til Twitter-kontoen din for å automatisk sende" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Brukarnamn hjå Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Passord hjå Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Vener på Twitter" @@ -4374,144 +5080,153 @@ msgstr "Brukarnamn kan berre innehalde tal," msgid "Unable to retrieve account information " msgstr "Klarte ikkje å hente informasjon om kontoen." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Feil ved fjerning av blokka." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Ingen profil-ID i førespurnaden." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Fann ingen profil med den IDen." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Fjerna tinging" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s grupper" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s grupper, side %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Feil ved lagring av notis. Ukjend brukar." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Du kan ikkje lengre legge inn notisar på denne sida." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Last opp ein avatar" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Anna" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Andre val" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Ingen tittel" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Personleg profil og oversyn over vener" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Søk etter folk eller innhald" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Konto" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Endra e-posten, avataren, passordet eller profilen" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Kopla til IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Logg ut or sida" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Logg inn or sida" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Opprett ny konto" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Logg inn med OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Hjelp meg!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Statusmelding" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Lokale syningar" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Sidenotis" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Andrenivås side navigasjon" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "StatusNets programvarelisens" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Alle" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "lisens." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Blokkér denne brukaren" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Blokkér" @@ -4524,11 +5239,14 @@ msgstr "Fjern favoriseringsmerket" msgid "To use the %s Facebook Application you need to login " msgstr "For å nytta %s Facebook-programmet må du logga inn" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr "ein ny konto." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Publisert" @@ -4548,31 +5266,36 @@ msgstr "Filtrer emneord" msgid "All" msgstr "Alle" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Merkelapp" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Velg ein merkelapp for å begrense lista" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Gå" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL til heimesida eller bloggen for gruppa eller emnet" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Beskriving" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Beskriv gruppa eller emnet med 140 teikn" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Kvar er du, t.d. «Stavanger, Rogaland, Noreg»" @@ -4581,20 +5304,20 @@ msgstr "Kvar er du, t.d. «Stavanger, Rogaland, Noreg»" msgid "Group" msgstr "Gruppe" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Administrator" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Rediger %s gruppa sine eigenskapar" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Legg til eller rediger logoen til %s" @@ -4624,11 +5347,11 @@ msgstr "Bli med" msgid "Leave" msgstr "Forlat" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Log inn med brukarnamn og passord." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Opprett ny konto" @@ -4650,17 +5373,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s høyrer no på" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Stad: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Heimeside: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4669,7 +5392,7 @@ msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Du har blitt dulta av %s" @@ -4684,39 +5407,47 @@ msgstr "%1$s (%2$s) lurer på kva du gjer på" msgid "%1$s just added your notice from %2$s" msgstr "%1$s lyttar no til notisane dine på %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Frå" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Send ei direkte melding" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Send ei melding" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Tilgjenglege teikn" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "som svar på" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Svar på denne notisen" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Svar" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Slett denne notisen" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Slett" @@ -4737,27 +5468,29 @@ msgstr "Send eit dult til denne brukaren" msgid "Tags in %s's notices" msgstr "Merkelappar i %s sine notisar" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(ingen)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Offentleg" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Brukar grupper" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Nylege emneord" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Framheva" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Populære" @@ -4773,31 +5506,33 @@ msgstr "Finn grupper på denne sida" msgid "Untitled section" msgstr "Seksjon utan tittel" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Mennesker %s tingar" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Mennesker som tingar %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Grupper %s er medlem av" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter vennar og kollega til å bli med deg på %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Brukar har blokkert deg." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Lagre tinging for brukar: %s" @@ -4810,10 +5545,11 @@ msgid "Top posters" msgstr "Med flest meldingar" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Lås opp brukaren" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Lås opp" @@ -4821,6 +5557,2060 @@ msgstr "Lås opp" msgid "Unsubscribe from this user" msgstr "Fjern tinging fra denne brukaren" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Straum for vener av %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Straum for vener av %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Straum for vener av %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s med vener" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Du kan laste opp ein personleg avatar." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Lasta opp brukarbilete." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du " +"ikkje finne ho att." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Der var eit problem med sesjonen din. Vennlegst prøv på nytt." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Send meg ein epost når nokon sender meg ei privat melding." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Du kan lasta opp ein logo for gruppa." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Velg eit utvalg av bildet som vil blir din avatar." + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Mikroblogg av %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer " +"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Ein feil oppstod ved sending av direkte melding." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Søkestraum for «%s»" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Skriv inn brukarnam og passord før du endrar innstillingar (av " +"tryggleiksomsyn)." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Offentleg straum" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Offentleg straum" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Offentleg straum" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " +"telefonnummer." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Lag" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Gruppe profil" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr " sin profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Notisstraum for %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Notisstraum for %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Notisstraum for %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Utboks for %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Brukarbilete" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profilinnstillingar" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for " +"koden og veiledning på korleis du nyttar han." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Ingen slik brukar" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Legg til Twitter-kontoen din for å automatisk senda dine uppdateringar til " +"Twitter," + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Klarte ikkje å hente informasjon fra kontoen din, «%s», frå Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " +"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Søk etter folk eller innhald" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Kopla til IM, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Dult" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "For å nytta %s Facebook-programmet må du logga inn" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s fylgjer no oppdateringane dine på %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Beste helsing,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Søk" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Slikt dokument finst ikkje." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Ei liste over brukarane i denne gruppa." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Ei liste over brukarane i denne gruppa." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Brukarprofil" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s med vener, side %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Ei liste over brukarane i denne gruppa." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "De-blokkering av brukar feila." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Stadfestingskode" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan ikkje sletta notisen." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ugyldig merkelapp: %s" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Kunne ikkje lagre favoritt." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Ny notis" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Ny notis" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Ikkje eit gyldig brukarnamn." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Ingen vald profil." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Brukar har blokkert deg." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Du er ikkje medlem av den gruppa." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Blokker brukaren" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Du må være logga inn for å lage ei gruppe." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Grupper" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kan ikkje oppdatera brukar." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Synkroniserings innstillingar blei lagra." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Du må være administrator for å redigere gruppa" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Administrator" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Ingen resultat" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Brukar har blokkert deg." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Melding" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Kan ikkje lagra profil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) lar deg logge inn på mangen sider med den samme " +"brukar kontoen. Velikehold dine OpenID herfra." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profilinnstillingar" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/" +"Micro-blogging)-teneste" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Me sender deg eit nytt passord til epostadressa i kontoen din viss du har " +"mista det gamle." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Du har blitt identifisert. Skriv inn eit nytt passord under her." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Passord opphenting etterspurt" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Feil med stadfestingskode." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Lagre tinging for brukar: %s" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s favoritt meldingar, side %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Notisstraum for %s gruppa" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Notisstraum for %s gruppa" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Notisstraum for %s gruppa" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Administrator" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Ikkje ein lokal brukar." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Notisar merka med %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Notisstraum for %s gruppa" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s høyrer no på" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Notisstraum for %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Notisstraum for %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Denne notisen er alt ein favoritt!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Denne notisen er ikkje ein favoritt!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kan ikkje hente offentleg straum." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Ingen mottakar spesifisert." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Kan ikkje finna einkvan status." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Oppdateringar som svarar til %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "lisens." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s tingarar" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profilinnstillingar" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du er ikkje medlem av den gruppa." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Eit problem oppstod ved lagring av notis." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Melding til %1$s på %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Brukarprofil" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Last opp" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Endra passordet ditt" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Kopla til" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Søk" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Logg inn" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Blokkér" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Blokker brukaren" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Legg til eller rediger logoen til %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Ingen innhald." + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Brukar" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Søk" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Heimesida er ikkje ei gyldig internettadresse." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Dette emneord finst ikkje." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direkte meldingar til %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Det er for langt. Ein notis kan berre være 140 teikn." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Fann ikkje brukaren, so han kan ikkje fylgjast" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "skildringa er for lang (maks 140 teikn)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du er allereie medlem av den gruppa" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du er ikkje medlem av den gruppa." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Kunne ikkje fjerne %s fra %s gruppa " + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s grupper" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Grupper %s er medlem av" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Gruppe handlingar" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Støttar ikkje bileteformatet." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Bilete" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "skildringa er for lang (maks 140 teikn)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Brukaren du lyttar til eksisterer ikkje." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Ikkje autorisert." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Kan ikkje konvertera spyrjebillett til tilgongsbillett." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Ukjend versjon av OMB-protokollen." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Denne notisen finst ikkje." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Mista fila vår." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Oppdateringar frå %1$s på %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Denne sida er ikkje tilgjengleg i eit" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%" +"%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" +"%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alle oppdateringer frå søket «%s»" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Skriv om deg og interessene dine med 140 teikn" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Skildra deg sjølv og din" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "«Om meg» er for lang (maks 140 " + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Ikkje ein brukande profil-netadresse (ingen YADIS-dokument)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Det er ikkje ein lokal profil! Log inn for å tinge." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Fekk ikkje spørjingsbillett (request token)." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Notisstraum for %s gruppa" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Melding til %1$s på %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Straum for %s sine favorittar" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Straum for %s sine favorittar" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Straum for %s sine favorittar" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s gruppe" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Melding lagra" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Denne sida er ikkje tilgjengleg i eit" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Notisstraum for %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " +"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. " +"Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " +"gjennomførast. Ditt tingings teikn er: " + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk " +"med sida sine instruksjonar for korleis ein skal avvise tinginga." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan ikkje lesa brukarbilete-URL «%s»" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Feil biletetype for '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Klarte ikkje å omdirigera til tenaren: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNets programvarelisens" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Dytta!" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Svar på denne notisen" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Eit problem oppstod ved lagring av notis." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Ingen stadfestingskode." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Logg inn or sida" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Velg ein tilbydar" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Beskriv gruppa eller emnet med 140 teikn" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Beskriv gruppa eller emnet med 140 teikn" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Notisstraum for %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s la til di melding som ein favoritt" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " frå " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Kunne ikkje slette favoritt." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Slett notis" + #, fuzzy #~ msgid "Code not yet ready." #~ msgstr "Kunne ikkje prosessera melding." diff --git a/locale/pl/LC_MESSAGES/statusnet.mo b/locale/pl/LC_MESSAGES/statusnet.mo index dba116252e26622d7e0f2d9979f9348de20f0385..902669dee93187ece27416e351a135132fd88b72 100644 GIT binary patch delta 28820 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 IZMWV30%TBLJpcdz delta 25465 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 CZ`QH^ diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 54c52e9496..fd36729c45 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: pl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-14 10:32-0700\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-09-09 15:47+0200\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" @@ -50,12 +50,13 @@ msgid "%1$s / Updates replying to %2$s" msgstr "%1$s/aktualizacje odpowiadające na %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s zapraszają Cię, abyś dołączył do nich w %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -137,20 +138,21 @@ msgstr "" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s aktualizuje tę odpowiedź na aktualizacje od %2$s/%3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Status użytkownika %1$s na %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" @@ -170,14 +172,16 @@ msgstr "Publiczny strumień użytkownika %s" #: actions/facebookhome.php:163 actions/twitapistatuses.php:130 #: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 #: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "Użytkownik %s i przyjaciele" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 #: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Publiczna oś czasu użytkownika %s" @@ -190,19 +194,22 @@ msgstr "Status użytkownika %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 #: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 #: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Oś czasu użytkownika %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 #: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Użytkownik %s aktualizuje od każdego!" #: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -211,7 +218,7 @@ msgstr "" "potwierdzenia adresu e-mail)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -221,7 +228,7 @@ msgstr "" "broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** jest usługą mikroblogowania. " @@ -235,33 +242,34 @@ msgstr "" #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych" #: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 małe litery lub liczby, bez spacji i znaków przestankowych. Wymagane." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 lub więcej znaków" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 #: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 lub więcej znaków, i nie zapomnij go!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 lub więcej znaków. Wymagane." #: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -271,7 +279,7 @@ msgstr "" "zaakceptować otrzymywanie wiadomości od %s." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -320,7 +328,21 @@ msgstr "" #: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 #: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 #: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Nie znaleziono metody API!" @@ -353,12 +375,13 @@ msgid "API method under construction." msgstr "Metoda API jest w trakcie tworzenia." #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "O usłudze" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 #: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Zaakceptuj" @@ -370,6 +393,8 @@ msgstr "Zaakceptuj" #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 #: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Dodaj" @@ -387,12 +412,13 @@ msgstr "Dodaj lub usuń konta OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adres" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Adresy przyjaciół, których zapraszasz (jeden na wiersz)" @@ -419,6 +445,7 @@ msgstr "Wszystkie aktualizacje pasujące do wyszukiwanego terminu \"%s\"" #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 #: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Jesteś już zalogowany." @@ -428,23 +455,27 @@ msgstr "Już subskrybowane!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 #: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Jesteś pewien, że chcesz usunąć ten wpis?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Upoważnij subskrypcję" #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Automatyczne logowanie. Nie użyj na komputerach używanych przez wiele osób!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -455,7 +486,8 @@ msgstr "" #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 #: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Awatar" @@ -465,7 +497,7 @@ msgid "Avatar updated." msgstr "Zaktualizowano awatar." #: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -476,7 +508,7 @@ msgstr "" "znajomych?)." #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -486,7 +518,7 @@ msgstr "" "instrukcjami." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Oczekiwanie na potwierdzenie tego numeru telefonu." @@ -497,7 +529,8 @@ msgstr "Wcześniej »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "O mnie" @@ -511,6 +544,7 @@ msgid "Bio is too long (max 140 chars)." msgstr "Wpis \"O mnie\" jest za długi (maksymalnie 140 znaków)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Nie można usunąć tego wpisu." @@ -524,6 +558,7 @@ msgstr "Nie można odczytać adresu URL awatara \"%s\"" #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 #: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Nie można zapisać nowego hasła." @@ -531,7 +566,8 @@ msgstr "Nie można zapisać nowego hasła." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Anuluj" @@ -541,22 +577,23 @@ msgid "Cannot instantiate OpenID consumer object." msgstr "Nie można utworzyć instancji obiektu klienta OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Nie można znormalizować tego identyfikatora Jabbera" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 #: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Nie można znormalizować tego adresu e-mail" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Zmień" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Zmień obsługę adresu e-mail" @@ -566,11 +603,12 @@ msgid "Change password" msgstr "Zmień hasło" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Zmień hasło" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Zmień ustawienia profilu" @@ -581,6 +619,8 @@ msgstr "Zmień ustawienia profilu" #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 #: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Potwierdź" @@ -594,11 +634,13 @@ msgstr "Potwierdź adres" #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 #: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Anulowano potwierdzenie." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Kod potwierdzający" @@ -608,7 +650,7 @@ msgid "Confirmation code not found." msgstr "Nie znaleziono kodu potwierdzającego." #: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -644,7 +686,7 @@ msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Połącz" @@ -654,7 +696,7 @@ msgid "Connect existing account" msgstr "Połącz z istniejącym kontem" #: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakt" @@ -668,12 +710,14 @@ msgstr "Nie można utworzyć formularza OpenID: %s" #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 #: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Nie można obserwować użytkownika: %s jest już na Twojej liście." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Nie można obserwować użytkownika: nie znaleziono użytkownika." @@ -717,7 +761,8 @@ msgstr "Nie można przekonwertować tokenów żądań na tokeny dostępu." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Nie można usunąć potwierdzenia adresu e-mail." @@ -740,23 +785,26 @@ msgstr "Nie można uzyskać tokenu żądana." #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 #: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Nie można wprowadzić kodu potwierdzającego." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Nie można wprowadzić nowej subskrypcji." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Nie można zapisać profilu." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." @@ -766,6 +814,8 @@ msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." #: actions/emailsettings.php:447 actions/emailsettings.php:469 #: actions/smssettings.php:515 actions/smssettings.php:539 #: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Nie można zaktualizować wpisu użytkownika." @@ -783,7 +833,11 @@ msgstr "Nie można zaktualizować wpisu użytkownika." #: actions/profilesettings.php:259 actions/smssettings.php:266 #: actions/smssettings.php:408 actions/emailsettings.php:287 #: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Nie można zaktualizować użytkownika." @@ -810,17 +864,17 @@ msgstr "" "użytkownika." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Obecnie potwierdzone adresy Jabbera/GTalk." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Obecnie potwierdzone numery telefonów z włączoną usługą SMS." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Obecnie potwierdzone adresy e-mail." @@ -829,19 +883,20 @@ msgid "Currently" msgstr "Obecnie" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Błąd bazy danych podczas wprowadzania znacznika hasha: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 #: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Usuń wpis" @@ -856,12 +911,13 @@ msgstr "Opisz się i swoje zainteresowania w 140 znakach" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Adres e-mail" @@ -871,7 +927,7 @@ msgid "Email Settings" msgstr "Ustawienia adresu e-mail" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Adres e-mail już istnieje." @@ -880,22 +936,23 @@ msgid "Email address confirmation" msgstr "Potwierdzenie adresu e-mail" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Adres e-mail, taki jak \"NazwaUżytkownika@przykład.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Adresy e-mail" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Podaj pseudonim lub adres e-mail." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Podaj kod, który otrzymałeś na telefonie." @@ -917,21 +974,25 @@ msgstr "Błąd podczas łączenia użytkownika." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Błąd podczas wprowadzania awatara" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Błąd podczas wprowadzania nowego profilu" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Błąd podczas wprowadzania zdalnego profilu" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 #: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Błąd podczas zapisywania potwierdzenia adresu." @@ -952,6 +1013,7 @@ msgstr "Błąd podczas zapisywanie użytkownika." #: ../actions/password.php:80 actions/profilesettings.php:399 #: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Błąd podczas zapisywania użytkownika; nieprawidłowy." @@ -961,7 +1023,8 @@ msgstr "Błąd podczas zapisywania użytkownika; nieprawidłowy." #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 #: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Błąd podczas ustawiania użytkownika." @@ -972,6 +1035,7 @@ msgstr "Błąd podczas aktualizowania profilu" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Błąd podczas aktualizowania zdalnego profilu" @@ -986,7 +1050,7 @@ msgid "Existing nickname" msgstr "Istniejący pseudonim" #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" @@ -1025,7 +1089,7 @@ msgstr "Przeszukaj zawartość wpisów" msgid "Find people on this site" msgstr "Znajdź osoby na tej stronie" -#: ../actions/login.php:122 actions/login.php:247 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -1041,6 +1105,8 @@ msgstr "" #: actions/showgroup.php:237 actions/showstream.php:255 #: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 #: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Imię i nazwisko" @@ -1052,17 +1118,21 @@ msgstr "Imię i nazwisko" #: actions/updateprofile.php:97 actions/updateprofile.php:99 #: actions/editgroup.php:197 actions/newgroup.php:147 #: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 #: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Pomoc" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 #: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Strona główna" @@ -1070,7 +1140,8 @@ msgstr "Strona główna" #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 #: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Strona domowa" @@ -1080,21 +1151,25 @@ msgstr "Strona domowa" #: actions/profilesettings.php:199 actions/register.php:168 #: actions/editgroup.php:194 actions/newgroup.php:144 #: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Strona domowa nie jest prawidłowym adresem URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 #: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Chcę wysyłać wpisy przez e-mail." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "Komunikator" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Adres komunikatora" @@ -1131,28 +1206,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Wiadomości przychodzące" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 #: actions/emailsettings.php:443 actions/emailsettings.php:450 #: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Usunięto przychodzący adres e-mail." #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Niepoprawne stare hasło" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 #: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Niepoprawna nazwa użytkownika lub hasło." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1185,7 +1263,7 @@ msgid "Invalid license URL '%s'" msgstr "Nieprawidłowy adres URL licencji \"%s\"" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Nieprawidłowa zawartość wpisu" @@ -1206,7 +1284,7 @@ msgid "Invalid profile URL '%s'." msgstr "Nieprawidłowy adres URL profilu \"%s\"." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Nieprawidłowy adres URL profilu (błędny format)" @@ -1226,33 +1304,33 @@ msgstr "Nieprawidłowy rozmiar." #: actions/finishopenidlogin.php:279 actions/register.php:193 #: actions/register.php:211 actions/finishopenidlogin.php:284 #: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Nieprawidłowa nazwa użytkownika lub hasło." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Wysłano zaproszenia" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Wysłano zaproszenia do następujących osób:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 #: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Zaproś" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Zaproś nowych użytkowników" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1264,12 +1342,12 @@ msgstr "" "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Identyfikator Jabbera należy już do innego użytkownika." #: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1281,11 +1359,13 @@ msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Język" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 #: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Język jest za długi (maksymalnie 50 znaków)." @@ -1299,6 +1379,10 @@ msgstr "Język jest za długi (maksymalnie 50 znaków)." #: actions/register.php:454 actions/showgroup.php:251 #: actions/showstream.php:229 actions/userauthorization.php:128 #: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Położenie" @@ -1310,6 +1394,9 @@ msgstr "Położenie" #: actions/updateprofile.php:112 actions/updateprofile.php:114 #: actions/editgroup.php:203 actions/newgroup.php:153 #: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Położenie jest za długie (maksymalnie 255 znaków)." @@ -1321,7 +1408,8 @@ msgstr "Położenie jest za długie (maksymalnie 255 znaków)." #: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 #: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 #: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Zaloguj się" @@ -1344,24 +1432,25 @@ msgstr "" "openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Wyloguj się" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" nazwisko" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Zgubione lub zapomniane hasło?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 #: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Używaj nowego adresu e-mail do wysyłania; anuluj stary." @@ -1383,6 +1472,7 @@ msgid "Microblog by %s" msgstr "Mikroblog użytkownika %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1396,13 +1486,14 @@ msgstr "" #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 #: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Moje teksty i pliki są dostępne na " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nowe" @@ -1414,6 +1505,7 @@ msgstr "Nowy adres e-mail do wysyłania do %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 #: actions/emailsettings.php:465 actions/emailsettings.php:472 #: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Dodano nowy przychodzący adres e-mail." @@ -1423,19 +1515,20 @@ msgid "New nickname" msgstr "Nowy pseudonim" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nowy wpis" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nowe hasło" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Pomyślnie zapisano nowe hasło. Jesteś teraz zalogowany." @@ -1449,7 +1542,9 @@ msgstr "Pomyślnie zapisano nowe hasło. Jesteś teraz zalogowany." #: actions/showgroup.php:226 actions/showstream.php:244 #: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 #: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Pseudonim" @@ -1461,6 +1556,9 @@ msgstr "Pseudonim" #: actions/register.php:159 actions/editgroup.php:185 #: actions/finishopenidlogin.php:231 actions/newgroup.php:135 #: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Pseudonim jest już używany. Spróbuj innego." @@ -1474,6 +1572,9 @@ msgstr "Pseudonim jest już używany. Spróbuj innego." #: actions/updateprofile.php:83 actions/editgroup.php:181 #: actions/finishopenidlogin.php:221 actions/newgroup.php:131 #: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Pseudonim może zawierać tylko małe litery i cyfry, bez spacji." @@ -1483,7 +1584,7 @@ msgid "Nickname not allowed." msgstr "Niedozwolony pseudonim." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Pseudonim użytkownika którego chcesz obserwować" @@ -1496,26 +1597,28 @@ msgstr "Pseudonim lub adres e-mail" #: actions/block.php:147 actions/deletenotice.php:118 #: actions/deletenotice.php:116 actions/block.php:149 #: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Nie" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Brak identyfikatora Jabbera." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 #: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Brak żądania upoważnienia!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Nie wybrano operatora." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Nie podano kodu" @@ -1528,12 +1631,14 @@ msgstr "Brak kodu potwierdzającego." #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 #: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Brak zawartości!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 #: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Brak adresu e-mail." @@ -1544,6 +1649,7 @@ msgstr "Brak identyfikatora." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 #: actions/emailsettings.php:430 actions/emailsettings.php:437 #: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Brak przychodzącego adresu e-mail." @@ -1554,6 +1660,7 @@ msgstr "Zdalny serwer nie dostarczył pseudonimu." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Brak pseudonimu." @@ -1562,11 +1669,13 @@ msgstr "Brak pseudonimu." #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 #: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Brak oczekujących potwierdzeń do anulowania." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Brak numeru telefonu." @@ -1577,6 +1686,7 @@ msgstr "Serwer nie zwrócił adresu URL profilu." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Brak zarejestrowanych adresów e-mail dla tego użytkownika." @@ -1601,13 +1711,14 @@ msgstr "Brak rozmiaru." #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 #: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 #: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Nie znaleziono statusów z tym identyfikatorem." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 #: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Nie znaleziono statusów z tym identyfikatorem." @@ -1617,13 +1728,15 @@ msgid "No such OpenID." msgstr "Nie ma takiego identyfikatora OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Nie ma takiego dokumentu." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Nie ma takiego wpisu." @@ -1668,11 +1781,15 @@ msgstr "Nie ma takiej subskrypcji" #: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 #: lib/command.php:178 lib/command.php:227 lib/command.php:264 #: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Brak takiego użytkownika." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Brak użytkownika z tym adresem e-mail lub nazwą użytkownika." @@ -1695,12 +1812,13 @@ msgstr "To nie jest zarejestrowany użytkownik." #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 #: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 #: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "To nie jest obsługiwany format danych." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "To nie jest prawidłowy identyfikator Jabbera" @@ -1711,11 +1829,12 @@ msgstr "To nie jest prawidłowy identyfikator OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 #: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "To nie jest prawidłowy adres e-mail" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "To nie jest prawidłowy adres e-mail." @@ -1725,6 +1844,9 @@ msgstr "To nie jest prawidłowy adres e-mail." #: actions/profilesettings.php:195 actions/register.php:161 #: actions/editgroup.php:188 actions/newgroup.php:138 #: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "To nie jest prawidłowy pseudonim." @@ -1745,6 +1867,7 @@ msgstr "To nie jest prawidłowy adres URL profilu (brak dokumentu YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 #: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "To nie jest obraz lub lub plik jest uszkodzony." @@ -1755,12 +1878,13 @@ msgstr "Brak upoważnienia." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Nieoczekiwana odpowiedź!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 #: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Nie znaleziono" @@ -1779,6 +1903,8 @@ msgstr "Nie znaleziono" #: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 #: actions/groupblock.php:61 actions/groupunblock.php:61 #: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Niezalogowany." @@ -1799,7 +1925,7 @@ msgid "Notice feed for %s" msgstr "Kanał wpisów dla %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Wpis nie posiada profilu" @@ -1807,19 +1933,20 @@ msgstr "Wpis nie posiada profilu" #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 #: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 #: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Wpisy" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 #: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Wpisy ze znacznikiem %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Stare hasło" @@ -1886,7 +2013,7 @@ msgid "OpenID settings" msgstr "Ustawienia OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Opcjonalnie dodaj osobistą wiadomość do zaproszenia." @@ -1903,17 +2030,20 @@ msgstr "Częściowo wysłano." #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 #: actions/login.php:214 lib/facebookaction.php:315 #: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Hasło" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 #: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Hasło i potwierdzenie nie pasują do siebie." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 #: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Hasło musi mieć sześć lub więcej znaków." @@ -1921,6 +2051,7 @@ msgstr "Hasło musi mieć sześć lub więcej znaków." #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 #: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Zażądano przywracania hasła" @@ -1928,6 +2059,7 @@ msgstr "Zażądano przywracania hasła" #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 #: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Zapisano hasło." @@ -1935,6 +2067,7 @@ msgstr "Zapisano hasło." #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 #: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Hasła nie pasują do siebie." @@ -1959,12 +2092,12 @@ msgid "Personal" msgstr "Osobiste" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Osobista wiadomość" #: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa" @@ -1978,7 +2111,7 @@ msgstr "" "użytkownika. Jeśli nie chcesz, po prostu naciśnij \"Anuluj\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Wyślij wpis, kiedy zmieni się mój status na Jabberze/GTalk." @@ -1988,6 +2121,8 @@ msgstr "Wyślij wpis, kiedy zmieni się mój status na Jabberze/GTalk." #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 #: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferencje" @@ -1997,39 +2132,44 @@ msgstr "Preferencje" #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 #: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Zapisano preferencje." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Preferowany język" #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Prywatność" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 #: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 #: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Adres URL profilu" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Ustawienia profilu" @@ -2046,17 +2186,18 @@ msgstr "Kanał publicznego strumienia" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 #: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Publiczna oś czasu" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Opublikuj MicroID adresu Jabbera/GTalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 #: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Opublikuj MicroID adresu e-mail." @@ -2067,11 +2208,13 @@ msgstr "Ostatnie znaczniki" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Przywróć" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 #: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Przywróć hasło" @@ -2086,7 +2229,8 @@ msgstr "Kod przywracania dla nieznanego użytkownika." #: lib/facebookaction.php:277 lib/logingroupnav.php:78 #: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 #: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Zarejestruj się" @@ -2104,13 +2248,14 @@ msgstr "Rejestracja powiodła się" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Odrzuć" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 #: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Zapamiętaj mnie" @@ -2120,7 +2265,7 @@ msgid "Remote profile with no matching profile" msgstr "Zdalny profil bez odpowiadającego profilu" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Zasubskrybuj zdalnie" @@ -2134,7 +2279,9 @@ msgstr "Zasubskrybuj zdalnie" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Usuń" @@ -2161,28 +2308,32 @@ msgstr "Odpowiedzi" #: actions/replies.php:116 actions/repliesrss.php:67 #: lib/personalgroupnav.php:104 actions/replies.php:118 #: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Odpowiedzi na %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 #: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Przywróć" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 #: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Przywróć hasło" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 #: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Numer telefonu SMS" @@ -2197,11 +2348,12 @@ msgstr "Potwierdzenie SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Takie samo jak powyższe hasło" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Takie samo jak powyższe hasło. Wymagane." @@ -2219,12 +2371,16 @@ msgstr "Takie samo jak powyższe hasło. Wymagane." #: actions/twittersettings.php:164 actions/othersettings.php:119 #: actions/profilesettings.php:152 actions/subscriptions.php:185 #: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Zapisz" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 #: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Znajdź" @@ -2254,7 +2410,7 @@ msgstr "" "znaki lub więcej." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Wybierz operatora" @@ -2262,28 +2418,30 @@ msgstr "Wybierz operatora" #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 #: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 #: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Wyślij" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Wyślij wiadomość e-mail na ten adres, aby wysyłać nowe wpisy." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Wyślij mi wpisy nowych subskrypcji przez e-mail." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Wyślij mi wpisy przez Jabbera/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2292,7 +2450,7 @@ msgstr "" "swojego operatora." #: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Wyślij mi odpowiedzi przez Jabbera/GTalk od osób, których nie subskrybuję." @@ -2304,6 +2462,7 @@ msgstr "Ustawienia" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 #: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Zapisano ustawienia." @@ -2333,13 +2492,14 @@ msgid "Sorry, that is not your incoming email address." msgstr "Przepraszamy, to nie jest twój przychodzący adres e-mail." #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Kod źródłowy" #: ../actions/showstream.php:296 actions/showstream.php:311 #: actions/showstream.php:476 actions/showgroup.php:375 #: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statystyki" @@ -2356,6 +2516,7 @@ msgstr "Nie znaleziono przechowywanego identyfikatora OpenID." #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 #: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Zasubskrybuj" @@ -2369,13 +2530,13 @@ msgstr "Subskrybenci" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 #: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Upoważniono subskrypcję" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 #: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Odrzucono subskrypcję" @@ -2390,6 +2551,7 @@ msgstr "Subskrypcje" #: ../actions/avatar.php:87 actions/profilesettings.php:324 #: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Błąd systemu podczas wysyłania pliku." @@ -2400,6 +2562,7 @@ msgstr "Błąd systemu podczas wysyłania pliku." #: actions/tagother.php:209 lib/profilelist.php:160 #: actions/profilesettings.php:123 actions/showstream.php:255 #: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Znaczniki" @@ -2429,7 +2592,7 @@ msgid "That confirmation code is not for you!" msgstr "Ten kod potwierdzający nie jest przeznaczony dla Ciebie!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Ten adres e-mail należy już do innego użytkownika." @@ -2439,49 +2602,52 @@ msgid "That file is too big." msgstr "Ten plik jest za duży." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Ten identyfikator Jabbera jest już Twój." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 #: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Ten adres e-mail jest już Twój." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Ten numer telefonu jest już Twój." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "To nie jest Twój identyfikator Jabbera." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 #: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "To nie jest Twój adres e-mail." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "To nie jest Twój numer telefonu." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "To jest błędny adres komunikatora." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "To jest błędny numer potwierdzenia." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Ten numer telefonu należy już do innego użytkownika." @@ -2512,6 +2678,8 @@ msgstr "Adres \"%s\" został potwierdzony dla Twojego konta." #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 #: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Adres został usunięty." @@ -2558,7 +2726,7 @@ msgid "These are the people whose notices you listen to." msgstr "Osoby, których wpisy obserwujesz." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" @@ -2595,7 +2763,7 @@ msgstr "" #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 #: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 #: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Ta metoda wymaga POST lub DELETE." @@ -2608,6 +2776,12 @@ msgstr "Ta metoda wymaga POST lub DELETE." #: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 #: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 #: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Ta metoda wymaga POST." @@ -2617,15 +2791,18 @@ msgstr "Ta strona jest niedostępna dla akceptowanego typu medium" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Strefa czasowa" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 #: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Nie wybrano strefy czasowej." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2639,18 +2816,20 @@ msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Należy dostarczyć dwa identyfikatory lub nazwy użytkowników." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 #: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Adres URL strony domowej, bloga lub profilu na innej stronie" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" @@ -2665,16 +2844,19 @@ msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" #: actions/avatarsettings.php:263 actions/emailsettings.php:247 #: actions/grouplogo.php:324 actions/twittersettings.php:306 #: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Nieoczekiwane wysłanie formularza." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 #: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Nieoczekiwane przywrócenie hasła." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Nieznane działanie" @@ -2711,22 +2893,24 @@ msgstr "Nieobsługiwana wersja OMB" #: ../actions/avatar.php:105 actions/profilesettings.php:342 #: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Nieobsługiwany format pliku obrazu." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Aktualizacje przez wiadomości SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Aktualizacje przez komunikator" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 #: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Aktualizacje od %1$s i przyjaciół na %2$s!" @@ -2734,6 +2918,8 @@ msgstr "Aktualizacje od %1$s i przyjaciół na %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 #: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 #: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Aktualizacje od %1$s na %2$s!" @@ -2741,6 +2927,7 @@ msgstr "Aktualizacje od %1$s na %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Wyślij" @@ -2761,7 +2948,7 @@ msgid "Upload a new profile image" msgstr "Wyślij nowy obraz profilu" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2771,6 +2958,7 @@ msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Używane tylko do aktualizacji, ogłoszeń i przywracania hasła" @@ -2798,11 +2986,12 @@ msgstr "Obserwowany użytkownik nie istnieje." #: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 #: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 #: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Użytkownik nie posiada profilu." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Pseudonim użytkownika" @@ -2812,10 +3001,12 @@ msgstr "Nie znaleziono użytkownika." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "W jakiej strefie czasowej zwykle się znajdujesz?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Co słychać, %s?" @@ -2823,7 +3014,8 @@ msgstr "Co słychać, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 #: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" @@ -2844,7 +3036,7 @@ msgstr "Błędny rozmiar obrazu \"%s\"" #: actions/block.php:148 actions/deletenotice.php:122 #: actions/deletenotice.php:141 actions/deletenotice.php:115 #: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Tak" @@ -2867,7 +3059,7 @@ msgid "You are already logged in!" msgstr "Jesteś już zalogowany!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Jesteś już zasubskrybowany do tych użytkowników:" @@ -2909,6 +3101,7 @@ msgstr "" "Skonfiguruj adres i ustawienia poniżej." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2919,13 +3112,14 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Można używać lokalnej subskrypcji!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 #: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" "Nie możesz się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." @@ -2958,7 +3152,7 @@ msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Nie można usuwać statusów innych użytkowników." @@ -2970,7 +3164,7 @@ msgstr "" "Należy być zalogowanym, aby zapraszać innych użytkowników do używania %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -3003,56 +3197,56 @@ msgstr "" "identyfikatorami OpenID." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "kilka sekund temu" #: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "około %d dni temu" #: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "około %d godzin temu" #: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "około %d minut temu" #: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "około %d miesięcy temu" #: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "blisko dzień temu" #: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "około minutę temu" #: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "około miesiąc temu" #: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "około rok temu" #: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "około godzinę temu" @@ -3074,7 +3268,7 @@ msgid "reply" msgstr "odpowiedz" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "takie samo jak hasło powyżej" @@ -3114,7 +3308,14 @@ msgstr "« Następne" #: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 #: actions/othersettings.php:138 actions/recoverpassword.php:334 #: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." @@ -3123,7 +3324,7 @@ msgid "This notice is not a favorite!" msgstr "Ten wpis nie jest ulubiony!" #: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Nie można usunąć ulubionego wpisu." @@ -3132,10 +3333,12 @@ msgid "Favor" msgstr "Dodaj do ulubionych" #: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś doda mój wpis jako ulubiony." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś wyśle mi prywatną wiadomość." @@ -3150,6 +3353,7 @@ msgstr "Ten wpis jest już ulubiony!" #: actions/twitapifavorites.php:125 classes/Command.php:152 #: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 #: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Nie można utworzyć ulubionego wpisu." @@ -3215,7 +3419,7 @@ msgid "That's too long. Max message size is 140 chars." msgstr "Wiadomość jest za długa. Maksymalna długość to 140 znaków." #: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Nie podano odbiorcy." @@ -3223,7 +3427,8 @@ msgstr "Nie podano odbiorcy." #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 #: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Nie można wysłać wiadomości do tego użytkownika." @@ -3232,17 +3437,19 @@ msgstr "Nie można wysłać wiadomości do tego użytkownika." #: classes/Command.php:240 actions/newmessage.php:161 #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Nie wysyłaj wiadomości do siebie, po prostu powiedz to sobie po cichu." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Nie ma takiego użytkownika" #: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nowa wiadomość" @@ -3301,7 +3508,8 @@ msgstr "Można tutaj zaktualizować osobiste informacje profilu " #: actions/avatarsettings.php:106 actions/avatarsettings.php:182 #: actions/grouplogo.php:183 actions/remotesubscribe.php:366 #: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Użytkownik bez odpowiadającego profilu" @@ -3331,6 +3539,7 @@ msgstr "Pomyślnie zapisano nowe hasło. " #: actions/register.php:95 actions/register.php:180 #: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Hasło musi mieć sześć lub więcej znaków." @@ -3359,6 +3568,7 @@ msgstr "Kanał ulubionych wpisów użytkownika %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 #: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Nie można odebrać ulubionych wpisów." @@ -3391,12 +3601,14 @@ msgstr "Operator komórkowy Twojego telefonu. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 #: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Bezpośrednia wiadomość do użytkownika %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 #: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Wszystkie bezpośrednie wiadomości wysłane do użytkownika %s" @@ -3408,6 +3620,7 @@ msgstr "Wysłane bezpośrednie wiadomości" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 #: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Wszystkie bezpośrednie wiadomości wysłane od użytkownika %s" @@ -3415,21 +3628,21 @@ msgstr "Wszystkie bezpośrednie wiadomości wysłane od użytkownika %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 #: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Brak tekstu wiadomości!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Nie znaleziono odbiorcy." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 #: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są " @@ -3437,12 +3650,14 @@ msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s/ulubione wpisy od %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 #: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "Użytkownik %s aktualizuje ulubione według %s/%s." @@ -3612,41 +3827,42 @@ msgstr "Subskrypcje: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 #: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Użytkownik nie posiada ostatniego wpisu" #: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Zaznaczono wpis jako ulubiony." #: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" #: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Imię i nazwisko: %s" #: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Położenie: %s" #: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Strona domowa: %s" #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "O mnie: %s" @@ -3658,61 +3874,63 @@ msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Wysłano bezpośrednią wiadomość do użytkownika %s" #: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Błąd podczas wysyłania bezpośredniej wiadomości." #: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Podaj nazwę użytkownika do zasubskrybowania" #: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Zasubskrybowano użytkownika %s" #: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Podaj nazwę użytkownika do usunięcia subskrypcji" #: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Usunięto subskrypcję użytkownika %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 #: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Nie zaimplementowano polecenia." #: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Wyłączono powiadomienia." #: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Nie można wyłączyć powiadomień." #: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Włączono powiadomienia." #: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Nie można włączyć powiadomień." @@ -3720,11 +3938,11 @@ msgstr "Nie można włączyć powiadomień." msgid "Commands:\n" msgstr "Polecenia:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Nie można wprowadzić wiadomości." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." @@ -3770,7 +3988,7 @@ msgstr "Ulubione" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Ulubione wpisy użytkownika %s" @@ -3810,7 +4028,7 @@ msgstr "Opcje integracji z Twitterem" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 #: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Do" @@ -3821,7 +4039,7 @@ msgstr "Nie można przeanalizować wiadomości." #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "Użytkownik %s i przyjaciele, strona %d" @@ -3833,6 +4051,7 @@ msgstr "Można wysłać osobisty awatar." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Ustawienia awatara" @@ -3840,6 +4059,7 @@ msgstr "Ustawienia awatara" #: actions/grouplogo.php:198 actions/grouplogo.php:258 #: actions/avatarsettings.php:126 actions/avatarsettings.php:202 #: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Oryginał" @@ -3847,11 +4067,13 @@ msgstr "Oryginał" #: actions/grouplogo.php:209 actions/grouplogo.php:270 #: actions/avatarsettings.php:141 actions/avatarsettings.php:214 #: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Podgląd" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 #: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Przytnij" @@ -3874,11 +4096,13 @@ msgstr "Wybierz kwadratowy obszar obrazu do awatara" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Utracono dane pliku." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Utracono plik." @@ -3886,6 +4110,7 @@ msgstr "Utracono plik." #: actions/grouplogo.php:406 actions/grouplogo.php:440 #: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 #: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Nieznany typ pliku" @@ -3943,7 +4168,8 @@ msgid "Inboxes must be enabled for groups to work" msgstr "Skrzynki odbiorcze grup muszą być włączone, aby działały" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Musisz być zalogowany, aby utworzyć grupę." @@ -3952,6 +4178,8 @@ msgstr "Musisz być zalogowany, aby utworzyć grupę." #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 #: actions/blockedfromgroup.php:73 actions/editgroup.php:89 #: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Brak pseudonimu" @@ -3960,18 +4188,23 @@ msgstr "Brak pseudonimu" #: actions/showgroup.php:128 actions/grouplogo.php:104 #: actions/grouprss.php:103 actions/blockedfromgroup.php:80 #: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Nie ma takiej grupy" #: actions/editgroup.php:106 actions/editgroup.php:165 #: actions/grouplogo.php:107 actions/grouplogo.php:111 #: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Musisz być administratorem, aby zmodyfikować grupę" #: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Użyj tego formularza, aby zmodyfikować grupę." @@ -4006,6 +4239,7 @@ msgid "Send me email when someone " msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś " #: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Pozwól przyjaciołom na szturchanie mnie i wyślij mi wiadomość e-mail." @@ -4044,18 +4278,21 @@ msgstr "Brak zawartości wpisu!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 #: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 #: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginacja" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Następne" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Wcześniej" @@ -4136,6 +4373,7 @@ msgstr "Usuń wpis z ulubionych" #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Popularne wpisy" @@ -4164,16 +4402,17 @@ msgstr "Znani użytkownicy, strona %d" msgid "A selection of some of the great users on %s" msgstr "Wybór znanych użytkowników na %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Ten użytkownik zablokował Cię z subskrypcji." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Brak identyfikatora" #: actions/grouplogo.php:138 actions/grouplogo.php:191 #: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Logo grupy" @@ -4182,10 +4421,12 @@ msgid "You can upload a logo image for your group." msgstr "Można wysłać obraz logo dla grupy." #: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Zaktualizowano logo." #: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Zaktualizowanie logo nie powiodło się." @@ -4252,20 +4493,20 @@ msgstr "Wyślij mi odpowiedzi przez Jabbera/GTalk " msgid "A confirmation code was sent " msgstr "Kod potwierdzający został wysłany " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Musisz być zalogowany, aby dołączyć do grupy." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Jesteś już członkiem tej grupy" -#: actions/joingroup.php:128 actions/joingroup.php:133 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Nie można dołączyć użytkownika %s do grupy %s" -#: actions/joingroup.php:135 actions/joingroup.php:140 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "Użytkownik %s dołączył do grupy %s" @@ -4274,16 +4515,18 @@ msgstr "Użytkownik %s dołączył do grupy %s" msgid "Inboxes must be enabled for groups to work." msgstr "Skrzynki odbiorcze dla grup muszą być włączone, aby działały." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Musisz być zalogowany, aby opuścić grupę." #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Nie ma takiej grupy." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Nie jesteś członkiem tej grupy." @@ -4292,20 +4535,24 @@ msgid "You may not leave a group while you are its administrator." msgstr "Nie możesz opuścić grupy, kiedy jesteś jej administratorem." #: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Nie można znaleźć wpisu członkostwa." #: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Nie można usunąć użytkownika %s z grupy %s" #: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "Użytkownik %s opuścił grupę %s" #: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Zaloguj się na stronie" @@ -4317,15 +4564,17 @@ msgstr "Brak obecnego statusu" msgid "New group" msgstr "Nowa grupa" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Użyj tego formularza, aby utworzyć nową grupę." #: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Nie można utworzyć grupy." #: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Nie można ustawić członkostwa w grupie." @@ -4338,12 +4587,13 @@ msgid "Don't send a message to yourself; " msgstr "Nie wysyłaj wiadomości do siebie; " #: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Wysłano wpis" #: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 #: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Błąd AJAX" @@ -4387,10 +4637,12 @@ msgid "Service" msgstr "Usługa" #: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Używana automatyczna usługa skracania." #: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Adres URL usługi skracania jest za długi (maksymalnie 50 znaków)." @@ -4399,6 +4651,7 @@ msgid "Change your password." msgstr "Zmień hasło." #: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Zmiana hasła" @@ -4417,11 +4670,12 @@ msgstr "Użytkownicy używający znacznika %s - strona %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "To są użytkownicy którzy nadali sobie znacznik \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Informacje o profilu" #: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4434,20 +4688,24 @@ msgstr "Automatycznie zasubskrybuj do każdego " #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Nieprawidłowy znacznik: \"%s\"" #: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Nie można zapisać znaczników." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Publiczna oś czasu, strona %d" #: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Nie można pobrać publicznego strumienia." @@ -4474,7 +4732,8 @@ msgid "Tag cloud" msgstr "Chmura znaczników" #: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Przepraszamy, tylko zaproszone osoby mogą się rejestrować." @@ -4524,6 +4783,7 @@ msgid "That's a local profile! Login to subscribe." msgstr "To jest profil lokalny! Zaloguj się, aby zasubskrybować." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Odpowiedzi na %s, strona %d" @@ -4544,7 +4804,7 @@ msgid "%s group, page %d" msgstr "Grupa %s, strona %d" #: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Profil grupy" @@ -4553,7 +4813,9 @@ msgstr "Profil grupy" #: actions/showgroup.php:253 actions/showstream.php:271 #: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 #: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "Adres URL" @@ -4562,12 +4824,14 @@ msgstr "Adres URL" #: actions/showgroup.php:264 actions/showstream.php:282 #: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 #: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Wpis" #: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Działania grupy" @@ -4578,7 +4842,8 @@ msgstr "Kanał wpisów dla grupy %s" #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Członkowie" @@ -4587,11 +4852,12 @@ msgstr "Członkowie" #: lib/tagcloudsection.php:71 actions/showgroup.php:344 #: actions/showgroup.php:378 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Brak)" #: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Wszyscy członkowie" @@ -4619,24 +4885,28 @@ msgstr " - profil" #: actions/showstream.php:236 actions/tagother.php:77 #: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Profil użytkownika" #: actions/showstream.php:240 actions/tagother.php:81 #: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Zdjęcie" #: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Działania użytkownika" #: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika" #: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Wiadomość" @@ -4669,7 +4939,7 @@ msgstr "Wyślij mi wpisy przez SMS; " msgid "A confirmation code was sent to the phone number you added. " msgstr "Kod potwierdzający został wysłany na dodany numer telefonu. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Operator komórkowy" @@ -4728,11 +4998,11 @@ msgid "These are the people whose " msgstr "Osoby, których " #: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Wpisy ze znacznikiem %s, strona %d" @@ -4797,15 +5067,17 @@ msgid "Microblog tagged with %s" msgstr "Mikroblogi ze znacznikiem %s" #: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Zablokowanie użytkownika nie powiodło się." #: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Odblokowanie użytkownika nie powiodło się." #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Nie znaleziono." @@ -4839,19 +5111,20 @@ msgstr "Nie można pobrać informacji o koncie " msgid "Error removing the block." msgstr "Błąd podczas usuwania blokady." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Brak identyfikatora profilu w żądaniu." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Brak profilu z tym identyfikatorem." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Zrezygnowano z subskrypcji" #: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Grupy %s" @@ -4862,10 +5135,12 @@ msgid "%s groups, page %d" msgstr "Grupy %s, strona %d" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" @@ -4873,47 +5148,50 @@ msgstr "" "kilka minut." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Zabroniono Ci wysyłania wpisów na tej stronie." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Wyślij awatar" #: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Inne" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Inne opcje" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Strona bez nazwy" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Główna nawigacja strony" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Profil osobisty i oś czasu przyjaciół" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Znajdź osoby lub tekst" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Konto" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Zmień adres e-mail, awatar, hasło, profil" @@ -4921,15 +5199,15 @@ msgstr "Zmień adres e-mail, awatar, hasło, profil" msgid "Connect to IM, SMS, Twitter" msgstr "Połącz z komunikatorem, SMS, Twitterem" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Wyloguj się ze strony" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Zaloguj się na stronę" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Utwórz konto" @@ -4937,44 +5215,46 @@ msgstr "Utwórz konto" msgid "Login with OpenID" msgstr "Zaloguj się za pomocą OpenID" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Pomóż mi!" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Wpis strony" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Lokalne widoki" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Wpis strony" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Druga nawigacja strony" #: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Licencja oprogramowania StatusNet" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Wszystko " -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "licencja." #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Zablokuj tego użytkownika" #: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Zablokuj" @@ -5015,14 +5295,17 @@ msgid "All" msgstr "Wszystko" #: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Znacznik" #: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Wybierz znacznik do ograniczonej listy" #: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Przejdź" @@ -5031,6 +5314,7 @@ msgid "URL of the homepage or blog of the group or topic" msgstr "Adres URL strony domowej lub bloga grupy, albo temat" #: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Opis" @@ -5039,6 +5323,7 @@ msgid "Describe the group or topic in 140 chars" msgstr "Opisz grupę lub temat w 140 znakach" #: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" @@ -5092,11 +5377,11 @@ msgstr "Dołącz" msgid "Leave" msgstr "Opuść" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Zaloguj się za pomocą nazwy użytkownika i hasła" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Załóż nowe konto" @@ -5157,15 +5442,16 @@ msgstr "%1$s właśnie dodał Twój wpis z %2$s" msgid "From" msgstr "Od" -#: lib/messageform.php:110 lib/messageform.php:109 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Wyślij bezpośredni wpis" -#: lib/noticeform.php:125 lib/noticeform.php:128 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Wyślij wpis" -#: lib/noticeform.php:152 lib/noticeform.php:149 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Dostępne znaki" @@ -5175,21 +5461,23 @@ msgstr "w odpowiedzi na" #: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 #: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Odpowiedz na ten wpis" #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Odpowiedz" #: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 #: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Usuń ten wpis" #: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Usuń" @@ -5264,6 +5552,7 @@ msgid "Groups %s is a member of" msgstr "Grupy %s są członkiem" #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Zaproś przyjaciół i kolegów do dołączenia do Ciebie na %s" @@ -5273,7 +5562,7 @@ msgid "User has blocked you." msgstr "Użytkownik zablokował Cię." #: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Zasubskrybuj tego użytkownika" @@ -5298,22 +5587,22 @@ msgstr "Odblokuj" msgid "Unsubscribe from this user" msgstr "Zrezygnuj z subskrypcji tego użytkownika" -#: actions/all.php:77 actions/all.php:59 +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" -#: actions/all.php:82 actions/all.php:64 +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" -#: actions/all.php:87 actions/all.php:69 +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "Kanał dla znajomych użytkownika %s (Atom)" -#: actions/all.php:112 actions/all.php:125 +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 msgid "You and friends" msgstr "Ty i przyjaciele" @@ -5336,7 +5625,7 @@ msgstr "" "do Ciebie zostanie usunięta, nie będzie mógł Cię zasubskrybować w " "przyszłości i nie będziesz powiadamiany o żadnych odpowiedziach @ od niego." -#: actions/deletenotice.php:73 +#: actions/deletenotice.php:73 actions/deletenotice.php:103 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." @@ -5344,11 +5633,11 @@ msgstr "" "Za chwilę wpis zostanie trwale usunięty. Kiedy to się stanie, to już się nie " "odstanie." -#: actions/deletenotice.php:127 +#: actions/deletenotice.php:127 actions/deletenotice.php:157 msgid "There was a problem with your session token. Try again, please." msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:174 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś wyśle mi odpowiedź \"@\"." @@ -5375,13 +5664,13 @@ msgstr "" "Jeśli chcesz, aby %s automatycznie aktualizowało status na Facebook " "najnowszym wpisem, musisz dać mu pozwolenie." -#: actions/grouplogo.php:155 +#: actions/grouplogo.php:155 actions/grouplogo.php:150 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "Można wysłać obraz logo grupy. Maksymalny rozmiar pliku to %s." -#: actions/grouplogo.php:367 +#: actions/grouplogo.php:367 actions/grouplogo.php:362 msgid "Pick a square area of the image to be the logo." msgstr "Wybierz kwadratowy obszar obrazu, który będzie logo." @@ -5432,19 +5721,19 @@ msgstr "" "Z powodów bezpieczeństwa przed zmienianiem ustawień zaloguj się ponownie za " "pomocą identyfikatora [OpenID](%%doc.openid%%)." -#: actions/public.php:125 actions/public.php:133 +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 msgid "Public Stream Feed (RSS 1.0)" msgstr "Kanał publicznego strumienia (RSS 1.0)" -#: actions/public.php:130 actions/public.php:138 +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 msgid "Public Stream Feed (RSS 2.0)" msgstr "Kanał publicznego strumienia (RSS 2.0)" -#: actions/public.php:135 actions/public.php:143 +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 msgid "Public Stream Feed (Atom)" msgstr "Kanał publicznego strumienia (Atom)" -#: actions/public.php:210 actions/public.php:241 +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -5469,11 +5758,11 @@ msgstr "" "[OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action." "openidlogin%%)!)" -#: actions/register.php:432 actions/register.php:479 +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 msgid "Creative Commons Attribution 3.0" msgstr "Creative Commons Uznanie Autorstwa 3.0" -#: actions/register.php:433 actions/register.php:480 +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 msgid "" " except this private data: password, email address, IM address, and phone " "number." @@ -5482,10 +5771,12 @@ msgstr "" "numer telefonu." #: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 msgid "Created" msgstr "Utworzono" #: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5531,18 +5822,22 @@ msgid "FOAF for %s" msgstr "FOAF dla %s" #: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 msgid "Edit Avatar" msgstr "Edytuj awatar" #: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 msgid "Edit profile settings" msgstr "Edytuj ustawienia profilu" #: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 msgid "Edit" msgstr "Edytuj" #: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5556,7 +5851,7 @@ msgstr "" "obserwować wpisy użytkownika **%s** i wiele więcej! ([Przeczytaj więcej](%%%%" "doc.help%%%%))" -#: actions/smssettings.php:335 +#: actions/smssettings.php:335 actions/smssettings.php:347 msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." @@ -5595,7 +5890,14 @@ msgstr "" "%5$s\n" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 msgid "No such user!" msgstr "Nie ma takiego użytkownika!" @@ -5626,7 +5928,7 @@ msgstr "" msgid "Search for more groups" msgstr "Znajdź więcej grup" -#: classes/Notice.php:138 classes/Notice.php:154 +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -5638,11 +5940,11 @@ msgstr "" msgid "Connect to SMS, Twitter" msgstr "Połącz z SMS, Twitterem" -#: lib/action.php:671 lib/action.php:721 +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 msgid "Badge" msgstr "Odznaka" -#: lib/command.php:113 lib/command.php:106 +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5921,7 +6223,7 @@ msgstr "Znajdź stronę" msgid "More..." msgstr "Więcej..." -#: actions/all.php:80 +#: actions/all.php:80 actions/all.php:127 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." @@ -5929,7 +6231,7 @@ msgstr "" "To jest oś czasu użytkownika %s i przyjaciół, ale nikt jeszcze nic nie " "wysłał." -#: actions/all.php:85 +#: actions/all.php:85 actions/all.php:132 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " @@ -5938,7 +6240,7 @@ msgstr "" "Spróbuj zasubskrybować więcej osób, [dołączyć do grupy](%%action.groups%%) " "lub wysłać coś samemu." -#: actions/all.php:87 +#: actions/all.php:87 actions/all.php:134 #, php-format msgid "" "You can try to [nudge %s](../%s) from his profile or [post something to his " @@ -5949,6 +6251,7 @@ msgstr "" "status_textarea=%s)." #: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -5991,30 +6294,39 @@ msgstr "Odblokuj użytkownika w tej grupie" msgid "Conversation" msgstr "Rozmowa" -#: actions/deletenotice.php:115 +#: actions/deletenotice.php:115 actions/deletenotice.php:145 msgid "Do not delete this notice" msgstr "Nie usuwaj tego wpisu" #: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "Za dużo aliasów! Maksymalnie %d." #: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "Nieprawidłowy alias: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alias \"%s\" jest już używany. Spróbuj innego." #: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "Alias nie może być taki sam jak pseudonim." #: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 msgid "Could not create aliases." msgstr "Nie można utworzyć aliasów." @@ -6079,6 +6391,7 @@ msgid "User is not a member of group." msgstr "Użytkownik nie jest członkiem grupy." #: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 msgid "Block user from group" msgstr "Zablokuj użytkownika w grupie" @@ -6097,15 +6410,15 @@ msgstr "" msgid "Database error blocking user from group." msgstr "Błąd bazy danych podczas blokowania użytkownika w grupie." -#: actions/groupdesignsettings.php:73 +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." msgstr "Musisz być zalogowany, aby zmodyfikować grupę." -#: actions/groupdesignsettings.php:146 +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 msgid "Group design" msgstr "Wygląd grupy" -#: actions/groupdesignsettings.php:157 +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -6113,28 +6426,32 @@ msgstr "Dostosuj wygląd grupy za pomocą wybranego obrazu tła i palety koloró #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 msgid "Couldn't update your design." msgstr "Nie można zaktualizować wyglądu." #: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 msgid "Unable to save your design settings!" msgstr "Nie można zapisać ustawień wyglądu!" #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 msgid "Design preferences saved." msgstr "Zapisano preferencje wyglądu." -#: actions/groupmembers.php:438 +#: actions/groupmembers.php:438 actions/groupmembers.php:441 msgid "Make user an admin of the group" msgstr "Uczyń użytkownika administratorem grupy" -#: actions/groupmembers.php:470 +#: actions/groupmembers.php:470 actions/groupmembers.php:473 msgid "Make Admin" msgstr "Uczyń administratorem" -#: actions/groupmembers.php:470 +#: actions/groupmembers.php:470 actions/groupmembers.php:473 msgid "Make this user an admin" msgstr "Uczyń tego użytkownika administratorem" @@ -6173,7 +6490,8 @@ msgstr "Użytkownik nie został zablokowany w grupie." msgid "Invites have been disabled." msgstr "Zaproszenia zostały wyłączone." -#: actions/joingroup.php:100 +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "Zostałeś zablokowany w tej grupie przez administratora." @@ -6196,11 +6514,12 @@ msgstr "Nie można uzyskać wpisu członkostwa użytkownika %s w grupie %s" msgid "Can't make %s an admin for group %s" msgstr "Nie można uczynić %s administratorem grupy %s" -#: actions/newmessage.php:178 +#: actions/newmessage.php:178 actions/newmessage.php:181 msgid "Message sent" msgstr "Wysłano wiadomość" #: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -6209,40 +6528,40 @@ msgstr "" "Serwer nie może obsłużyć aż tyle danych POST (%s bajty) z powodu bieżącej " "konfiguracji." -#: actions/newnotice.php:128 scripts/maildaemon.php:185 +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 #, php-format msgid " Try using another %s format." msgstr " Spróbuj innego formatu %s." -#: actions/newnotice.php:133 scripts/maildaemon.php:190 +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 #, php-format msgid "%s is not a supported filetype on this server." msgstr "%s nie jest obsługiwanym typem pliku na tym serwerze." -#: actions/newnotice.php:205 +#: actions/newnotice.php:205 lib/mediafile.php:142 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Wysłany plik przekracza dyrektywę upload_max_filesize w php.ini." -#: actions/newnotice.php:208 +#: actions/newnotice.php:208 lib/mediafile.php:147 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Wysłany plik przekracza dyrektywę MAX_FILE_SIZE podaną w formularzu HTML." -#: actions/newnotice.php:211 +#: actions/newnotice.php:211 lib/mediafile.php:152 msgid "The uploaded file was only partially uploaded." msgstr "Plik został tylko częściowo wysłany." -#: actions/newnotice.php:214 +#: actions/newnotice.php:214 lib/mediafile.php:159 msgid "Missing a temporary folder." msgstr "Brak folderu tymczasowego." -#: actions/newnotice.php:217 +#: actions/newnotice.php:217 lib/mediafile.php:162 msgid "Failed to write file to disk." msgstr "Zapisanie pliku na dysku nie powiodło się." -#: actions/newnotice.php:220 +#: actions/newnotice.php:220 lib/mediafile.php:165 msgid "File upload stopped by extension." msgstr "Wysłanie pliku zostało zatrzymane przez rozszerzenie." @@ -6258,12 +6577,14 @@ msgstr "Maksymalny rozmiar wpisu to 140 znaków, w tym adres URL załącznika." msgid "Somehow lost the login in saveFile" msgstr "W jakiś sposób zgubiono login w saveFile" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 msgid "File could not be moved to destination directory." msgstr "Nie można przenieść pliku do katalogu docelowego." #: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." msgstr "Wystąpił błąd bazy danych podczas zapisywania pliku. Spróbuj ponownie." @@ -6296,19 +6617,19 @@ msgstr "" "tego samego konta użytkownika. Tu można zarządzać powiązanymi " "identyfikatorami OpenID." -#: actions/othersettings.php:110 +#: actions/othersettings.php:110 actions/othersettings.php:117 msgid "Shorten URLs with" msgstr "Skracaj adresy URL za pomocą" -#: actions/othersettings.php:115 +#: actions/othersettings.php:115 actions/othersettings.php:122 msgid "View profile designs" msgstr "Wyświetl ustawienia wyglądu profilu" -#: actions/othersettings.php:116 +#: actions/othersettings.php:116 actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "Wyświetl lub ukryj ustawienia wyglądu profilu." -#: actions/public.php:82 +#: actions/public.php:82 actions/public.php:83 #, php-format msgid "Beyond the page limit (%s)" msgstr "Poza ograniczeniem strony (%s)" @@ -6334,7 +6655,7 @@ msgstr "" "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " "pierwszym, który coś wyśle!" -#: actions/public.php:245 +#: actions/public.php:245 actions/public.php:238 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -6383,11 +6704,11 @@ msgstr "Przywrócenie hasła" msgid "Sorry, invalid invitation code." msgstr "Przepraszamy, nieprawidłowy kod zaproszenia." -#: actions/remotesubscribe.php:100 +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 msgid "Subscribe to a remote user" msgstr "Zasubskrybuj zdalnego użytkownika" -#: actions/replies.php:179 +#: actions/replies.php:179 actions/replies.php:198 #, php-format msgid "" "This is the timeline showing replies to %s but %s hasn't received a notice " @@ -6396,7 +6717,7 @@ msgstr "" "To jest oś czasu wyświetlająca odpowiedzi na wpisy użytkownika %s, ale %s " "nie otrzymał jeszcze wpisów wymagających jego uwagi." -#: actions/replies.php:184 +#: actions/replies.php:184 actions/replies.php:203 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " @@ -6405,7 +6726,7 @@ msgstr "" "Możesz nawiązać rozmowę z innymi użytkownikami, zasubskrybować więcej osób " "lub [dołączyć do grup](%%action.groups%%)." -#: actions/replies.php:186 +#: actions/replies.php:186 actions/replies.php:205 #, php-format msgid "" "You can try to [nudge %s](../%s) or [post something to his or her attention]" @@ -6419,7 +6740,7 @@ msgstr "" msgid "%s's favorite notices, page %d" msgstr "Ulubione wpisy użytkownika %s, strona %d" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:170 actions/showfavorites.php:205 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." @@ -6428,7 +6749,7 @@ msgstr "" "na wpisach, które chciałbyś dodać do zakładek na później lub rzucić na nie " "trochę światła." -#: actions/showfavorites.php:172 +#: actions/showfavorites.php:172 actions/showfavorites.php:207 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -6448,30 +6769,31 @@ msgstr "" "[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " "interesującego, aby chcieli dodać to do swoich ulubionych. :)" -#: actions/showfavorites.php:226 +#: actions/showfavorites.php:226 actions/showfavorites.php:242 msgid "This is a way to share what you like." msgstr "To jest sposób na współdzielenie tego, co chcesz." #: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 msgid "Aliases" msgstr "Aliasy" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:328 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Kanał wpisów dla grupy %s (RSS 1.0)" -#: actions/showgroup.php:330 actions/tag.php:84 +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Kanał wpisów dla grupy %s (RSS 2.0)" -#: actions/showgroup.php:337 +#: actions/showgroup.php:337 actions/showgroup.php:340 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Kanał wpisów dla grupy %s (Atom)" -#: actions/showgroup.php:446 +#: actions/showgroup.php:446 actions/showgroup.php:454 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -6484,7 +6806,7 @@ msgstr "" "narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " "krótkimi wiadomościami o swoim życiu i zainteresowaniach. " -#: actions/showgroup.php:474 +#: actions/showgroup.php:474 actions/showgroup.php:482 msgid "Admins" msgstr "Administratorzy" @@ -6502,13 +6824,13 @@ msgstr " ze znacznikiem %s" msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Kanał wpisów dla %s ze znacznikiem %s (RSS 1.0)" -#: actions/showstream.php:350 +#: actions/showstream.php:350 actions/showstream.php:444 #, php-format msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" "To jest oś czasu dla użytkownika %s, ale %s nie nic jeszcze nie wysłał." -#: actions/showstream.php:355 +#: actions/showstream.php:355 actions/showstream.php:449 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" @@ -6516,7 +6838,7 @@ msgstr "" "Widziałeś ostatnio coś interesującego? Nie wysłałeś jeszcze żadnych wpisów, " "teraz jest dobry czas, aby zacząć. :)" -#: actions/showstream.php:357 +#: actions/showstream.php:357 actions/showstream.php:451 #, php-format msgid "" "You can try to nudge %s or [post something to his or her attention](%%%%" @@ -6525,7 +6847,7 @@ msgstr "" "Możesz spróbować szturchnąć użytkownika %s lub [wysłać coś, co wymaga jego " "uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." -#: actions/showstream.php:393 +#: actions/showstream.php:393 actions/showstream.php:492 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -6558,7 +6880,7 @@ msgstr "" "Użytkownik %s nie posiada subskrybentów. Dlaczego nie [zarejestrujesz konta]" "(%%%%action.register%%%%) i zostaniesz pierwszym?" -#: actions/subscriptions.php:115 +#: actions/subscriptions.php:115 actions/subscriptions.php:121 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -6575,29 +6897,31 @@ msgstr "" "obserwujesz." #: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, php-format msgid "%s is not listening to anyone." msgstr "Użytkownik %s nie obserwuje nikogo." -#: actions/tag.php:77 +#: actions/tag.php:77 actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" -#: actions/tag.php:91 +#: actions/tag.php:91 actions/tag.php:98 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Kanał wpisów dla znacznika %s (Atom)" -#: actions/twitapifavorites.php:125 +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 msgid "This status is already a favorite!" msgstr "Ten status jest już ulubiony!" -#: actions/twitapifavorites.php:179 +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 msgid "That status is not a favorite!" msgstr "Ten status nie jest ulubiony!" #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 msgid "Could not determine source user." msgstr "Nie można określić użytkownika źródłowego." @@ -6605,16 +6929,17 @@ msgstr "Nie można określić użytkownika źródłowego." msgid "Target user not specified." msgstr "Nie podano użytkownika docelowego." -#: actions/twitapifriendships.php:221 +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 msgid "Could not find target user." msgstr "Nie można znaleźć użytkownika docelowego." -#: actions/twitapistatuses.php:322 +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s/aktualizacje wspominające %2$s" -#: actions/twitapitags.php:74 +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" @@ -6623,11 +6948,11 @@ msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" msgid "Import my Friends Timeline." msgstr "Zaimportuj oś czasu przyjaciół." -#: actions/userauthorization.php:158 +#: actions/userauthorization.php:158 actions/userauthorization.php:188 msgid "License" msgstr "Licencja" -#: actions/userauthorization.php:179 +#: actions/userauthorization.php:179 actions/userauthorization.php:212 msgid "Reject this subscription" msgstr "Odrzuć tę subskrypcję" @@ -6656,7 +6981,7 @@ msgstr "Użytkownik %s nie jest członkiem żadnej grupy." msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i dołączyć do nich." -#: classes/File.php:127 +#: classes/File.php:127 classes/File.php:137 #, php-format msgid "" "No file may be larger than %d bytes and the file you sent was %d bytes. Try " @@ -6665,37 +6990,38 @@ msgstr "" "Żaden plik nie może być większy niż %d bajty, a wysłany plik miał %d bajty. " "Spróbuj wysłać mniejszą wersję." -#: classes/File.php:137 +#: classes/File.php:137 classes/File.php:147 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" "Plik tej wielkości przekroczyłby przydział użytkownika wynoszący %d bajty." -#: classes/File.php:145 +#: classes/File.php:145 classes/File.php:154 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" "Plik tej wielkości przekroczyłby miesięczny przydział użytkownika wynoszący %" "d bajty." -#: classes/Notice.php:139 +#: classes/Notice.php:139 classes/Notice.php:179 msgid "Problem saving notice. Too long." msgstr "Problem podczas zapisywania wpisu. Za długi." -#: classes/User.php:319 +#: classes/User.php:319 classes/User.php:327 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj w %1$s, @%2$s!" #: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 msgid "Design" msgstr "Wygląd" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 msgid "Design your profile" msgstr "Wygląd profilu" -#: lib/action.php:712 +#: lib/action.php:712 lib/action.php:727 msgid "TOS" msgstr "TOS" @@ -6784,15 +7110,15 @@ msgstr "Przywróć domyślne ustawienia" msgid "Save design" msgstr "Zapisz wygląd" -#: lib/designsettings.php:378 +#: lib/designsettings.php:378 lib/designsettings.php:369 msgid "Bad default color settings: " msgstr "Błędne domyślne ustawienia koloru: " -#: lib/designsettings.php:474 +#: lib/designsettings.php:474 lib/designsettings.php:465 msgid "Design defaults restored." msgstr "Przywrócono domyślny wygląd." -#: lib/groupeditform.php:181 +#: lib/groupeditform.php:181 lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" @@ -6923,15 +7249,15 @@ msgstr "" "rozmowę z innymi użytkownikami. Inni mogą wysyłać Ci wiadomości tylko dla " "Twoich oczu." -#: lib/noticeform.php:154 +#: lib/noticeform.php:154 lib/noticeform.php:180 msgid "Attach" msgstr "Załącz" -#: lib/noticeform.php:158 +#: lib/noticeform.php:158 lib/noticeform.php:184 msgid "Attach a file" msgstr "Załącz plik" -#: lib/noticelist.php:436 +#: lib/noticelist.php:436 lib/noticelist.php:478 msgid "in context" msgstr "w rozmowie" @@ -6939,7 +7265,7 @@ msgstr "w rozmowie" msgid "User ID" msgstr "Identyfikator użytkownika" -#: lib/searchaction.php:156 +#: lib/searchaction.php:156 lib/searchaction.php:162 msgid "Search help" msgstr "Znajdź w pomocy" @@ -6964,3 +7290,590 @@ msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" "%s nie jest prawidłowym kolorem! Użyj trzech lub sześciu znaków " "szesnastkowych." + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Nie ma takiego znacznika." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Bezpośrednia wiadomość do użytkownika %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Wiadomość jest za długa. Maksymalna długość to 140 znaków." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Nie można obserwować użytkownika: nie znaleziono użytkownika." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "opis jest za długi (maksymalnie 140 znaków)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Jesteś już członkiem tej grupy" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Nie można dołączyć użytkownika %s do grupy %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Nie jesteś członkiem tej grupy." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Nie można usunąć użytkownika %s z grupy %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Grupy %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Grupy %s są członkiem" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Działania grupy" + +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Usunięto awatar." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Wpis jest za długi. Maksymalna długość to 140 znaków." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, fuzzy, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "Maksymalny rozmiar wpisu to 140 znaków, w tym adres URL załącznika." + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Nieobsługiwany format pliku obrazu." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Zdjęcie" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "opis jest za długi (maksymalnie 140 znaków)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Aktualizacje od %1$s na %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Obserwowany użytkownik nie istnieje." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Brak upoważnienia." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Nie można przekonwertować tokenów żądań na tokeny dostępu." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Nieznana wersja protokołu OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Nie ma takiego wpisu." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Utracono plik." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Aktualizacje od %1$s na %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Ta strona nie jest dostępna w " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? " +"[Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action." +"openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Wszystkie aktualizacje pasujące do wyszukiwanego terminu \"%s\"" + +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Zawartość" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Opisz się i swoje zainteresowania w 140 znakach" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Opisz się i swoje " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Wpis \"O mnie\" jest za długi (maksymalnie 140 znaków)." + +#: actions/register.php:336 +#, fuzzy +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" +"Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " +"wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator " +"[OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action." +"openidlogin%%)!)" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "To nie jest prawidłowy adres URL profilu (brak dokumentu YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "To jest profil lokalny! Zaloguj się, aby zasubskrybować." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Nie można uzyskać tokenu żądana." + +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Kanał wpisów dla %s (RSS 1.0)" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Kanał wpisów dla %s (RSS 2.0)" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Kanał wpisów dla %s (Atom)" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Wiadomość do użytkownika %1$s na %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Kanał dla znajomych użytkownika %s (Atom)" + +#: actions/showfavorites.php:211 +#, fuzzy, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" +"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie " +"[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " +"interesującego, aby chcieli dodać to do swoich ulubionych. :)" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "FOAF dla %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Wysłano wpis" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Ta strona nie jest dostępna w " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować " +"wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " +"naciśnij \"Odrzuć\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " +"Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " +"Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Nie można odczytać adresu URL awatara \"%s\"" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Błędny typ obrazu dla \"%s\"" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Nie można przekierować do serwera: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Licencja oprogramowania StatusNet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Nie można zaktualizować użytkownika z potwierdzonym adresem e-mail." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Wysłano szturchnięcie" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Odpowiedz na ten wpis" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problem podczas zapisywania wpisu." + +#: lib/command.php:587 +#, fuzzy +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" +"Polecenia:\n" +"on - włącza powiadomienia\n" +"off - wyłącza powiadomienia\n" +"help - wyświetla tę pomoc\n" +"follow - subskrybuje użytkownika\n" +"leave - rezygnuje z subskrypcji użytkownika\n" +"d - bezpośrednia wiadomość do użytkownika\n" +"get - uzyskuje ostatni wpis użytkownika\n" +"whois - uzyskuje informacje o profilu użytkownika\n" +"fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" +"stats - uzyskuje Twoje statystyki\n" +"stop - to samo co \"off\"\n" +"quit - to samo co \"off\"\n" +"sub - to samo co \"follow\"\n" +"unsub - to samo co \"leave\"\n" +"last - to samo co \"get\"\n" +"on - jeszcze nie zaimplementowano.\n" +"off - jeszcze nie zaimplementowano.\n" +"nudge - jeszcze nie zaimplementowano.\n" +"invite - jeszcze nie zaimplementowano.\n" +"track - jeszcze nie zaimplementowano.\n" +"untrack - jeszcze nie zaimplementowano.\n" +"track off - jeszcze nie zaimplementowano.\n" +"untrack all - jeszcze nie zaimplementowano.\n" +"tracks - jeszcze nie zaimplementowano.\n" +"tracking - jeszcze nie zaimplementowano.\n" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Brak kodu potwierdzającego." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Zaloguj się na stronę" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Wybierz operatora" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Opisz grupę lub temat w 140 znakach" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Opisz grupę lub temat w 140 znakach" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Brak identyfikatora wpisu" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "Użytkownik %s dodał Twój wpis jako ulubiony" + +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" +"\n" +"Adres URL Twojego wpisu:\n" +"\n" +"%3$s\n" +"\n" +"Tekst Twojego wpisu:\n" +"\n" +"%4$s\n" +"\n" +"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" +"\n" +"%5$s\n" +"\n" +"Z poważaniem,\n" +"%6$s\n" + +#: lib/mail.php:611 +#, fuzzy, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "Użytkownik %s wysłał wpis wymagający Twojej uwagi" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " z " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Nie można określić użytkownika źródłowego." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Usuń wpis" diff --git a/locale/pt/LC_MESSAGES/statusnet.mo b/locale/pt/LC_MESSAGES/statusnet.mo index e6168a340f270aebd89f73d0e1aaefc3904df0fa..6169cb2ccf5d172e36aef47cf11ce0d33bd66c5c 100644 GIT binary patch delta 9605 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

&wv)Ux{kYvX0q7#I23Owy{T{NC6eV^OQ+MO1?` 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 delta 20752 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\n" "Language-Team: LANGUAGE \n" @@ -20,14 +20,14 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -38,17 +38,19 @@ msgid " from " msgstr "" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -80,6 +82,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" @@ -96,25 +99,28 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Публичная Лента" @@ -124,34 +130,48 @@ msgstr "%s Публичная Лента" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s и друзья" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s общая лента" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s статус" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s хронология" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s обновлен для всех!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -159,16 +179,18 @@ msgstr "" "(Вам сразу же послано сообщение по электронной почте, с инструкциями по " "тому, как подтвердить свой электронный адрес.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** это сервис микроблогинга созданный для Вас при помощи " -"[%%site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** это сервис микроблогинга созданный для Вас при помощи [%%" +"site.broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** - сервис микроблогинга. " @@ -180,31 +202,35 @@ msgstr ". Создатель определяется по полному име #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 латинских строчных букв или цифр, без пробелов" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 латинских строчных букв или цифр, без пробелов. Обязательное поле." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 или больше знаков" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 или более символов, и не забывайте его!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 или более символов. Обязательное поле." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -214,6 +240,7 @@ msgstr "" "подтвердить %s для рассылки сообщений Вам." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -249,7 +276,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Метод API не найден!" @@ -272,16 +326,23 @@ msgstr "Метод API не найден!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Метод API реконструируется." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "О проекте" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Принять" @@ -292,6 +353,9 @@ msgstr "Принять" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Добавить" @@ -309,27 +373,29 @@ msgstr "Добавить или удалить OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Адрес" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Адреса друзей, которых ты хочешь пригласить (по одному на строчку)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Все подписки." #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Все обновления для %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Все обновления соответствующие поисковому термину \"%s\"" @@ -339,30 +405,37 @@ msgstr "Все обновления соответствующие поиско #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Уже авторизован." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Уже подписан!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Вы уверены, что хотите удалить эту запись?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Авторизованная подписка" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Автоматический повторный вход. Не для публичных компьютеров!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Автоматически подписываться на всех, кто подписался на меня" @@ -370,15 +443,19 @@ msgstr "Автоматически подписываться на всех, к #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Аватар" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Аватар обновлён." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -389,6 +466,7 @@ msgstr "" "контактный список?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -397,7 +475,7 @@ msgstr "" "спама!), там будут дальнейшие инструкции." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "В ожидании подтверждения данного номера телефона." @@ -408,6 +486,8 @@ msgstr "Ранее »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Био" @@ -415,16 +495,18 @@ msgstr "Био" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Слишком длинное био (максимум 140 символов)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Не удаётся удалить эту запись." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Не удается прочитать URL аватары из '%s'" @@ -432,6 +514,8 @@ msgstr "Не удается прочитать URL аватары из '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Не удаётся сохранить новый пароль." @@ -439,31 +523,34 @@ msgstr "Не удаётся сохранить новый пароль." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Отменить" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Не удаётся подтвердить OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Не удаётся стандартизировать этот Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Не удаётся стандартизировать этот электронный адрес" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Изменить" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Изменить электронный адрес" @@ -473,11 +560,12 @@ msgid "Change password" msgstr "Изменить пароль" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Изменить Ваш пароль" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Настройки Ваших установок профиля" @@ -487,6 +575,9 @@ msgstr "Настройки Ваших установок профиля" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Подтвердить" @@ -499,12 +590,14 @@ msgstr "Подтвердить адрес" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Подтверждение отменено." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Код подтверждения" @@ -513,7 +606,8 @@ msgstr "Код подтверждения" msgid "Confirmation code not found." msgstr "Код подтверждения не найден." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -539,8 +633,8 @@ msgstr "" "вы сможете после этого отправлять записи через мессенджеры.\n" "* [Искать людей](%%%%action.peoplesearch%%%%), которых вы возможно знаете " "или с которыми разделяете одни и те же интересы.\n" -"* Не нашли друзей или знакомых? [Пригласите их](%%%%action.invite%%%%) на " -"%%%%site.name%%%%, подпишитесь на них и будьте всегда в курсе.\n" +"* Не нашли друзей или знакомых? [Пригласите их](%%%%action.invite%%%%) на %%%" +"%site.name%%%%, подпишитесь на них и будьте всегда в курсе.\n" "* Обновить ваши [профильные настройки](%%%%action.profilesettings%%%%) чтобы " "больше рассказать другим о себе.\n" "* Прочитать [документацию](%%%%doc.help%%%%) чтобы поподробнее узнать об " @@ -550,20 +644,24 @@ msgstr "" "удовольствие от использования данного сервиса!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Соединить" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Соединить с существующей записью" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Контакты" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Не удаётся создать OpenID-форму: %s " @@ -571,36 +669,40 @@ msgstr "Не удаётся создать OpenID-форму: %s " #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Не удается включить %s в список поддержки, он уже в Вашем списке." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" "Не удаётся следовать пользователю, т.к. такого пользователя не существует." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Не удаётся перенаправить на сервер: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Не удаётся сохранить информацию об аватаре" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Не удаётся сохранить новую информацию профиля" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Не удаётся подписать других на Вашу ленту." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Подписка неудачна." @@ -620,15 +722,17 @@ msgstr "Не удаётся преобразовать запросы в дос #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Не удаётся удалить подверждение по электронному адресу." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Не удаётся удалить подписку." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Нет статусов." @@ -641,29 +745,38 @@ msgstr "Не удаётся получить запрос." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Не удаётся вставить код подтверждения." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Не удаётся вставить новую подписку." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Не удаётся сохранить профиль." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Не удаётся обновить пользователя для автоподписки." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Не удаётся обновить пользовательскую запись." @@ -679,44 +792,50 @@ msgstr "Не удаётся обновить пользовательскую з #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Не удаётся обновить пользователя." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Создать" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Создать нового пользователя с таким именем." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Создать новую учетную запись" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "" "Создать новую учетную запись для OpenID, у которого уже есть пользователь." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Подтверждённый в настоящее время Jabber/Gtalk - адрес." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" "Подтверждённый в настоящее время SMS-доступный номер мобильного телефона." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Подтверждённый в настоящее время электронный адрес." @@ -725,23 +844,27 @@ msgid "Currently" msgstr "Сейчас" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Ошибка баз данных при вставке хеш-тегов для %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Ошибка баз данных при вставке ответа для %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Удалить запись" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Опиши себя и свои увлечения при помощи 140 символов" @@ -749,11 +872,13 @@ msgstr "Опиши себя и свои увлечения при помощи 1 #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Электронный адрес" @@ -763,39 +888,43 @@ msgid "Email Settings" msgstr "Настройка почты" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Такой электронный адрес уже задействован." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Подтверждение электронного адреса" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Электронный адрес вида \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Почтовый адрес" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Введите имя или электронный адрес." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Введите код, который вы получили по телефону." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Ошибка авторизации входа" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Ошибка при соединении пользователя с OpenID." @@ -806,39 +935,46 @@ msgstr "Ошибка при соединении пользователя." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Ошибка при вставке аватара" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Ошибка при вставке нового профиля" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Ошибка вставки удалённого профиля" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Ошибка сохранения подтверждённого адреса." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Ошибка сохранения удалённого профиля" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Ошибка сохранения текущего профиля." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Ошибка сохранения текущего пользователя." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Ошибка сохранения пользователя; неверное имя." @@ -847,6 +983,9 @@ msgstr "Ошибка сохранения пользователя; неверн #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Ошибка в установках пользователя." @@ -857,6 +996,7 @@ msgstr "Ошибка обновления профиля" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Ошибка обновления удалённого профиля" @@ -866,33 +1006,36 @@ msgid "Error with confirmation code." msgstr "Ошибка, связанная с кодом подтверждения." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Существующее имя" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "ЧаВо" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Неудача при обновлении аватара." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Лента друзей %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Лента ответов %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Лента тегов %s" @@ -907,7 +1050,7 @@ msgstr "Найти запись по содержимому" msgid "Find people on this site" msgstr "Найти человека на этом сайте" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -920,6 +1063,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Полное имя" @@ -928,23 +1076,33 @@ msgstr "Полное имя" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Полное имя слишком длинное (не больше 255 знаков)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Помощь" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Моё" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Главная" @@ -952,21 +1110,27 @@ msgstr "Главная" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "URL Главной страницы неверен." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Я хочу отправлять записи по электронной почте." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM-адрес" @@ -976,7 +1140,7 @@ msgid "IM Settings" msgstr "IM-установки" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -984,7 +1148,7 @@ msgstr "" "Если у вас уже есть аккаунт, то авторизуйтесь с вашим ником и паролем, чтобы " "соединить их с вашим OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -992,7 +1156,7 @@ msgstr "" "Если вы хотите добавить OpenID к вашему аккаунту, то введите его в поле ниже " "и нажмите на кнопку \"Добавить\"" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1003,25 +1167,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Входящий электронный адрес" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Входящий электронный адрес удалён." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Некорректный старый пароль" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Некорректное имя или пароль." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1030,30 +1200,31 @@ msgstr "" "указали при регистрации вашего аккаунта." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Неверный URL-адрес аватара '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Неверный электронный адрес: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Неверная домашняя страничка для '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Неверный URL лицензии для '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Неверный контент записи" @@ -1068,13 +1239,13 @@ msgid "Invalid notice url" msgstr "Неверный URL записи" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Неверный URL профиля для '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Неверный URL профиля (плохой формат)" @@ -1092,45 +1263,53 @@ msgstr "Неверный размер." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Неверное имя или пароль." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Приглашение(я) отослано(ы)" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Приглашение(я) отослано(ы) следующим адресатам:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Пригласить" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Пригласить новых пользователей" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Этот сервис работает при помощи [StatusNet](http://status.net/) - программного " -"обеспечения для микроблогинга, версии %s, доступного под лицензией [GNU " -"Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-" -"3.0.html)." +"Этот сервис работает при помощи [StatusNet](http://status.net/) - " +"программного обеспечения для микроблогинга, версии %s, доступного под " +"лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" +"licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Этот Jabber ID уже используется другим пользователем." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1141,12 +1320,14 @@ msgstr "" "мессенджере или в GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Язык" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Слишком длинный язык (более 50 символов). " @@ -1155,7 +1336,15 @@ msgstr "Слишком длинный язык (более 50 символов). #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Месторасположение" @@ -1164,7 +1353,12 @@ msgstr "Месторасположение" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Слишком длинное месторасположение (максимум 255 знаков)." @@ -1173,44 +1367,52 @@ msgstr "Слишком длинное месторасположение (мак #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Вход" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Вход при помощи [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" "(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" "%). " msgstr "" -"Вход с вашим ником и паролем. Нет аккаунта? " -"[Зарегистрируйте](%%action.register%%) новый аккаунт, или попробуйте " -"авторизоваться при помощи [OpenID](%%action.openidlogin%%). " +"Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action." +"register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID]" +"(%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Выход" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Полное имя, предпочтительно Ваше настоящее имя" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Потеряли или забыли пароль?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Создать новый электронный адрес для постинга здесь; отменить один из старых." @@ -1222,16 +1424,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Управление процессом получения электронного адреса с %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Регистрация" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Микроблог от %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1244,42 +1448,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Мои тексты и файлы находятся под лицензией" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Новое" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Новый электронный адрес для постинга %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Новый входящий электронный адрес добавлен." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Новое имя" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Новая запись" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Новый пароль" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Новый пароль успешно сохранён. Вы авторизовались." @@ -1289,7 +1501,13 @@ msgstr "Новый пароль успешно сохранён. Вы автор #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Имя" @@ -1298,7 +1516,12 @@ msgstr "Имя" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." @@ -1307,48 +1530,59 @@ msgstr "Такое имя уже используется. Попробуйте #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Имя должно состоять только из прописных букв и цифр и не иметь пробелов." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Такое имя недопустимо." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Имя пользователя, которому Вы хотите следовать" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Имя или электронный адрес" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Нет" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Не Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Не авторизованный запрос!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Провайдер не выбран." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Код не введён" @@ -1360,11 +1594,15 @@ msgstr "Нет кода подтверждения." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Нет контента!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Нет электронного адреса." @@ -1373,7 +1611,9 @@ msgid "No id." msgstr "Нет идентификатора." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Нет входящего электронного адреса." @@ -1384,6 +1624,7 @@ msgstr "Нет имени представленного удалённым се #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Нет имени." @@ -1391,12 +1632,14 @@ msgstr "Нет имени." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Нет подтверждения отказа." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Нет номера телефона." @@ -1406,7 +1649,8 @@ msgid "No profile URL returned by server." msgstr "Нет URL профиля, который вернул сервер." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Нет зарегистрированных электронных адресов для этого пользователя." @@ -1418,7 +1662,7 @@ msgstr "Запросы не найдены!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Нет результатов." @@ -1429,12 +1673,16 @@ msgstr "Нет размера." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Нет статуса с таким ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Не найдено статуса с таким ID." @@ -1444,13 +1692,15 @@ msgid "No such OpenID." msgstr "Нет такого OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Нет такого документа." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Нет такой записи." @@ -1488,12 +1738,22 @@ msgstr "Нет такой подписки" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Нет такого пользователя." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Нет пользователя с таким электронным адресом или именем." @@ -1507,32 +1767,38 @@ msgid "Not a recovery code." msgstr "Нет кода восстановления." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Незарегистрированный пользователь." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Неподдерживаемый формат данных." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Неверный код Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Неверный код OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Неверный электронный адрес" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Неверный электронный адрес." @@ -1540,6 +1806,11 @@ msgstr "Неверный электронный адрес." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Неверное имя." @@ -1559,7 +1830,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Неверный URL профиля (не YADIS-документ)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Не является изображением или разрушенный файл." @@ -1570,11 +1842,13 @@ msgstr "Не авторизовано." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Неожиданный ответ!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Не найдено" @@ -1590,11 +1864,15 @@ msgstr "Не найдено" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Не авторизован." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Не подписан!" @@ -1611,39 +1889,44 @@ msgid "Notice feed for %s" msgstr "Лента записей для %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Запись без профиля" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Записи" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Записи, помеченные %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Старый пароль" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Установки OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Автоподдержка OpenID" @@ -1651,29 +1934,34 @@ msgstr "Автоподдержка OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID вход" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL для OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Вход при помощи OpenID отменён." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Вход при помощи OpenID неудачен: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Неверный OpenID: %s" @@ -1689,11 +1977,12 @@ msgid "OpenID settings" msgstr "Установки OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Можно добавить к приглашению личное сообщение." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Частичная загрузка." @@ -1703,34 +1992,46 @@ msgstr "Частичная загрузка." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Пароль" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Пароль и его подтверждение не совпадают." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Пароль должен быть длиной не менее 6 символов." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Запрошено восстановление пароля" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Пароль сохранён." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Пароли не совпадают." @@ -1750,14 +2051,17 @@ msgid "People search" msgstr "Поиск людей" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Личное" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Личное сообщение" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Номер телефона, без пробелов, с кодом зоны" @@ -1768,11 +2072,11 @@ msgid "" "click \"Cancel\"." msgstr "" "Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " -"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите " -"\"Отказ\"." +"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" +"\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Публиковать запись, когда мой Jabber/GTalk - статус изменяется." @@ -1781,7 +2085,9 @@ msgstr "Публиковать запись, когда мой Jabber/GTalk - с #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Предпочтения" @@ -1790,42 +2096,52 @@ msgstr "Предпочтения" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Предпочтения сохранены." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Любимый язык" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Пользовательское соглашение" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Проблемы с сохранением записи." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Профиль" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL профиля" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Настройки профиля" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Неизвестный профиль" @@ -1834,17 +2150,19 @@ msgid "Public Stream Feed" msgstr "Лента публичного потока" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Общая лента" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Опубликовать MicroID для моего Jabber/GTalk - адреса." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Опубликовать MicroID для моего электронного адреса." @@ -1854,12 +2172,14 @@ msgid "Recent Tags" msgstr "Свежие теги" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Восстановление" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Восстановление пароля" @@ -1872,37 +2192,45 @@ msgstr "Код восстановления неизвестного польз #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрация" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Регистрация недопустима." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Регистрация успешна!" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Отбросить" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Запомнить меня" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Удаление профиля как несоответствующего" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Подписаться на пользователя" @@ -1916,6 +2244,9 @@ msgstr "Подписаться на пользователя" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Убрать" @@ -1924,7 +2255,7 @@ msgstr "Убрать" msgid "Remove OpenID" msgstr "Убрать OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1933,34 +2264,41 @@ msgstr "" "хотите удалить этот OpenID, то сначала добавьте ещё один." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Ответы" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Ответы для %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Переустановить" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Переустановить пароль" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "СМС" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Номер телефона для СМС" @@ -1969,17 +2307,18 @@ msgstr "Номер телефона для СМС" msgid "SMS Settings" msgstr "Установки СМС" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Подтверждение СМС" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Тот же пароль, что и выше" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Тот же пароль что и сверху. Обязательно." @@ -1992,12 +2331,21 @@ msgstr "Тот же пароль что и сверху. Обязательно. #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Сохранить" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Поиск" @@ -2007,7 +2355,7 @@ msgid "Search Stream Feed" msgstr "Лента поискового потока" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2016,7 +2364,7 @@ msgstr "" "Поиск по содержанию записей на %%site.name%%. Между ключевыми словами " "ставьте пробелы. Минимальная длина слова — 3 буквы." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2026,33 +2374,38 @@ msgstr "" "Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Выбор провайдера" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "ОК" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Посылать электронные письма на этот адрес для постинга новых записей." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Уведомлять меня о новых подписчиках по почте." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Посылать мне записи через Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2061,16 +2414,19 @@ msgstr "" "по пересылке." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Посылать мне реплики через Jabber/GTalk от людей, на которых я не подписан." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Настройки" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Настройки сохранены." @@ -2090,27 +2446,32 @@ msgid "Something weird happened." msgstr "Случилось что-то странное." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Простите, входящих писем нет." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Простите, это не Ваш входящий электронный адрес." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Исходник" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Статистика" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Записанный OpenID не найден." @@ -2118,24 +2479,28 @@ msgstr "Записанный OpenID не найден." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Подписаться" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Подписчики" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Подписка авторизована" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Подписка отменена" @@ -2143,28 +2508,35 @@ msgstr "Подписка отменена" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Подписки" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Системная ошибка при загрузке файла." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Теги" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Текст" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Поиск текста" @@ -2184,6 +2556,7 @@ msgid "That confirmation code is not for you!" msgstr "Это не Ваш код подтверждения!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Этот электронный адрес уже задействован другим пользователем." @@ -2193,63 +2566,73 @@ msgid "That file is too big." msgstr "Это слишком большой файл." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Это уже Ваш Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Это уже Ваш электронный адрес." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Это уже ваш номер телефона." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Это не Ваш Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Это не Ваш электронный адрес." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Это не Ваш номер телефона." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Это неверный IM-адрес." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Это неверный номер подтверждения." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Этот телефонный номер уже задействован другим пользователем." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Слишком длинная запись. Максимальная длина - 140 знаков." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Слишком длинная запись. Максимальная длина - 255 знаков." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адрес \"%s\" подтвержден для вашего аккаунта." @@ -2258,11 +2641,14 @@ msgstr "Адрес \"%s\" подтвержден для вашего аккау #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Адрес удалён." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2271,7 +2657,8 @@ msgstr "" "Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " "о том, как авторизовать подписку. Ваш подписочный купон: " -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2281,35 +2668,40 @@ msgstr "" "чтобы полностью отказаться от подписки." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Это пользователи, которые читают записи %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Это пользователи, которые читают ваши записи." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Это пользователи, записи которых читает %s." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Это пользователи, записи которых вы читаете." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Это люди, которые уже являются пользователями, и на которых Вы подписались " "автоматически:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Код подтверждения слишком старый. Попробуйте ещё раз." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2318,7 +2710,7 @@ msgstr "" "подтверждения для перехода на сайт Вашего OpenID-провайдера. " #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2333,6 +2725,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Этот метод требует POST или DELETE." @@ -2341,25 +2736,37 @@ msgstr "Этот метод требует POST или DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Этот метод требует POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Страница недоступна для того типа, который Вы задействовали." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Часовой пояс" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Часовой пояс не выбран." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2370,18 +2777,21 @@ msgstr "" "[зарегистрировать](%%action.register%%) новый аккаунт." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Надо представить два имени пользователя или кода." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "Адрес твоей страницы, дневника или профиля на другом портале" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Адрес URL твоего профиля на другом подходящем сервисе микроблогинга" @@ -2393,15 +2803,22 @@ msgstr "Адрес URL твоего профиля на другом подхо #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Нетиповое подтверждение формы." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Нетиповая переустановка пароля." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Неизвестное действие" @@ -2432,38 +2849,47 @@ msgstr "Отписаться" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Неподдерживаемая версия OMB" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Неподдерживаемый формат файла изображения." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Обновления по СМС" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Обновлено по IM" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Обновлено от %1$s и его друзей на %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Загрузить" @@ -2484,12 +2910,15 @@ msgid "Upload a new profile image" msgstr "Загрузить новое профильное изображение" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "В этой форме ты можешь пригласить друзей и коллег на этот сервис." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Нужна только для обновлений, осведомлений и восстановления пароля." @@ -2513,11 +2942,16 @@ msgstr "Пользователь отслеживает несуществующ #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "У пользователя нет профиля." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Имя пользователя." @@ -2526,29 +2960,33 @@ msgid "User not found." msgstr "Пользователь не найден." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "В каком часовом поясе Вы обычно находитесь?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Что нового, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Где вы находитесь, например «Город, область, страна»" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Неверный тип изображения для '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Неверный размер изображения для '%s'" @@ -2556,7 +2994,9 @@ msgstr "Неверный размер изображения для '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Да" @@ -2579,11 +3019,12 @@ msgid "You are already logged in!" msgstr "Вы уже авторизованы!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Вы уже подписаны на пользователя:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Вы не являетесь другом для этого пользователя." @@ -2604,22 +3045,25 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" "Вы можете отправлять СМС-сообщения по электронному адресу от %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." -msgstr "Вы можете удалить OpenID из своего аккаунта, нажав на кнопку \"Убрать\". " +msgstr "" +"Вы можете удалить OpenID из своего аккаунта, нажав на кнопку \"Убрать\". " #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"Вы можете отправлять и получать записи через Jabber/GTalk " -"[онлайн-мессенджер](%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." +"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" +"(%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2630,23 +3074,25 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Вы можете использовать локальную подписку!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" "Вы не можете зарегистрироваться, если Вы не подтверждаете лицензионного " "соглашения." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Вы не посылали нам этот профиль." -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2668,11 +3114,13 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Вы не можете удалять статус других пользователей." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" @@ -2680,6 +3128,7 @@ msgstr "" "%s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2687,20 +3136,21 @@ msgstr "" "Мы сообщим Вам, если приглашения будут приняты и вновь приглашенные " "зарегистрируются на сайте. Спасибо за помощь в росте нашего сообщества!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Вы идентифицированны. Введите новый пароль ниже." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Адрес (URL) Вашего OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Ваше имя на этом сервере или электронный адрес регистрации." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2710,47 +3160,57 @@ msgstr "" "помощи только лишь одного аккаунта. Управляйте вашим ассоциированным " "аккаунтом OpenIDs отсюда." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "пару секунд назад" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "около %d дня(ей) назад" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "около %d часа(ов) назад" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "около %d минут(ы) назад" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "около %d месяца(ев) назад" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "около дня назад" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "около минуты назад" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "около месяца назад" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "около года назад" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "около часа назад" @@ -2772,12 +3232,14 @@ msgid "reply" msgstr "ответить" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "повторить пароль сверху" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "неподдерживаемый тип файла" @@ -2798,6 +3260,26 @@ msgstr "Сюда" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." @@ -2806,6 +3288,7 @@ msgid "This notice is not a favorite!" msgstr "Эта запись не входит в число ваших любимых записей!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Не удаётся удалить любимую запись." @@ -2813,26 +3296,32 @@ msgstr "Не удаётся удалить любимую запись." msgid "Favor" msgstr "Пометить" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " "запись в число любимых." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " "приватное сообщение." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Эта запись уже входит в число любимых!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Не удаётся создать любимую запись." @@ -2842,11 +3331,13 @@ msgstr "Нелюбимое" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Любимые записи %s" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Лента любимых записей %s" @@ -2889,33 +3380,44 @@ msgid "Login with your username and password. " msgstr "Вход с вашим ником и паролем." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Слишком длинно. Максимальная длина сообщения - 140 знаков." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Нет адресата." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Вы не можете послать сообщение этому пользователю." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Не посылайте сообщения сами себе; просто потихоньку скажите это себе." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Нет такого пользователя" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Новое сообщение" @@ -2973,6 +3475,11 @@ msgstr "Вы можете обновить здесь Вашу личную пр #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Пользователь без соответствующего профиля" @@ -3001,6 +3508,8 @@ msgid "New password successfully saved. " msgstr "Новый пароль успешно сохранён." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Пароль должен быть длиной не менее 6 символов." @@ -3022,12 +3531,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Чтобы подписаться, вы должны [авторизоваться](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Лента любимых записей от %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Не удаётся восстановить любимые записи." @@ -3035,7 +3547,7 @@ msgstr "Не удаётся восстановить любимые записи msgid "No such message." msgstr "Нет такого сообщения." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Только отправитель и получатель могут читать это сообщение." @@ -3059,53 +3571,72 @@ msgid "Mobile carrier for your phone. " msgstr "Ваш мобильный оператор." #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Прямые сообщения для %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Все прямые сообщения посланные для %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Прямые сообщения посланные Вами" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Все прямые сообщения от %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Отсутствует текст сообщения!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Получатель не найден." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Не удаётся посылать прямые сообщения пользователям, которые не являются " "Вашими друзьями." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Любимое от %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s обновлённые любимые записи от %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s добавил вашу запись в состав своих любимых" @@ -3128,14 +3659,17 @@ msgstr "" "на Твиттер," #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Установки Твиттера" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Твиттер аккаунт" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Текущий проверенный аккаунт на Твиттере." @@ -3144,6 +3678,7 @@ msgid "Twitter Username" msgstr "Имя на Твиттере" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Без пробелов, пожалуйста." @@ -3152,18 +3687,22 @@ msgid "Twitter Password" msgstr "Пароль на Твиттере" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Автоматически отправлять мои записи на Твиттер." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Отправлять локальные \"@\"-реплики на Твиттер." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Подписаться на моих Твиттер-друзей здесь." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3172,6 +3711,7 @@ msgstr "" "и символа подчеркивания (_). Всего не более 15 символов." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Не удаётся подтвердить Ваши данные по Твиттеру!" @@ -3182,33 +3722,43 @@ msgstr "Не удаётся подтвердить данные по аккау #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Не удаётся сохранить Ваши установки по Твиттеру!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Установки Твиттера сохранены." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Это не ваш аккаунт на Твиттере." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Не удаётся удалить Твиттер-пользователя." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Твиттер аккаунт удалён." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Не удаётся сохранить предпочтения Твиттера." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Предпочтения Твиттера сохранены." @@ -3225,18 +3775,19 @@ msgid "The subscription has been rejected, but no " msgstr "Эта подписка удалена, но не" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Команда исполнена" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Команда завершена" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Команда неудачна" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Простите, эта команда ещё не выполнена." @@ -3246,89 +3797,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Подписки: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "У пользователя нет записей" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Запись помечена как любимая." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Полное имя: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Месторасположение: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Домашняя страница: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "О пользователе: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Прямое сообщение для %s послано" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Ошибка при отправке прямого сообщения." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Определите имя пользователя при подписке на" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Подписано на %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Определите имя пользователя для отписки от" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Отписано от %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Команда ещё не выполнена." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Оповещение отсутствует." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Нет оповещения." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Есть оповещение." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Есть оповещение." @@ -3336,11 +3909,11 @@ msgstr "Есть оповещение." msgid "Commands:\n" msgstr "Команды:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Не удаётся вставить сообщение." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Не удаётся обновить сообщение с новым URI." @@ -3357,7 +3930,7 @@ msgstr "" "У Вас новый адрес постинга на %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Новое приватное сообщение от %s" @@ -3371,7 +3944,7 @@ msgstr "" "%1$s (%2$s) послал Вам приватное сообщение:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Только сам пользователь может читать собственный почтовый ящик." @@ -3380,31 +3953,39 @@ msgid "This form should automatically submit itself. " msgstr "Это форма для автоматического подтверждения." #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Любимое" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Любимые записи %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Пользователь" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Входящие" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Ваши входящие сообщения" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Исходящее" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Ваши исходящие сообщения" @@ -3417,14 +3998,19 @@ msgid "Twitter integration options" msgstr "Опции интеграции с Твиттером" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Для" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Сообщение не удаётся разобрать." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s и друзья, страница %d" @@ -3434,21 +4020,31 @@ msgid "You can upload your personal avatar." msgstr "Тут вы можете загрузить свой аватар." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Настройки аватара" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Оригинал" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Просмотр" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Обрезать" @@ -3465,34 +4061,43 @@ msgid "There was a problem with your session token. " msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Подберите нужный квадратный ракурс дла вашего аватара" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Потеряна информация о файле." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Потерян файл." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Неподдерживаемый тип файла" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Профиль не определен." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Нет профиля с таким ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Заблокировать пользователя." @@ -3500,11 +4105,11 @@ msgstr "Заблокировать пользователя." msgid "Are you sure you want to block this user? " msgstr "Вы уверены, что хотите заблокировать этого пользователя?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Вы уже заблокировали этого пользователя." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Не удаётся сохранить информацию о блокировании." @@ -3523,38 +4128,56 @@ msgstr "" msgid "Add to favorites" msgstr "Добавить в любимые" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Изменить информацию о группе %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "Входящие должны быть включены для работы групп" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Вы должны авторизоваться, чтобы создать новую группу." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Нет названия группы" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Нет такой группы" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Вы должны быть администратором, чтобы изменять информацию о группе" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Заполните информацию о группе в следующие поля" @@ -3565,14 +4188,15 @@ msgstr "" "пробелов" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "Слишком длинное описание (максимум 140 символов)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Не удаётся обновить информацию о группе" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Настройки сохранены" @@ -3591,7 +4215,8 @@ msgstr "" "Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " "запись в число любимых." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" "Разрешить друзьям \"подталкивать\" меня и посылать мне электронные сообщения." @@ -3606,7 +4231,7 @@ msgstr "" "Код подтверждения выслан на ваш электронный адрес, который Вы добавили. " "Проверьте входящие (а так же папку для спама)." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Ошибка сервера - невозможно достать пользователя!" @@ -3622,51 +4247,66 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "Разрешить %s обновлять мой Facebook статус" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Пропустить" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Нет записей!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Пагинация" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Сюда" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Туда" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Спасибо за приглашения друзьям использовать %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Приглашения отосланы следующим адресатам:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Вас пригласили на %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Пригласите ваших друзей использовать %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Друзья уже использующие %s" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Отправить приглашения" @@ -3711,12 +4351,14 @@ msgstr "" msgid "Sync preferences" msgstr "Настройки синхронизации" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Разлюбить" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Популярные записи" @@ -3730,7 +4372,8 @@ msgid "The most popular notices on the site right now." msgstr "Самые популярные записи на %%site.name%% на текущий момент." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Особые пользователи" @@ -3743,18 +4386,20 @@ msgstr "Особые пользователи, страница %d" #, php-format msgid "A selection of some of the great users on %s" msgstr "" -"Список наиболее активных, знаменитых и уважаемых пользователей на " -"%%%%site.name%%%%" +"Список наиболее активных, знаменитых и уважаемых пользователей на %%%%site." +"name%%%%" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Этот пользователь заблокировал вас на его подписку." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Нет ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Логотип группы" @@ -3762,11 +4407,13 @@ msgstr "Логотип группы" msgid "You can upload a logo image for your group." msgstr "Тут вы можете загрузить логотип для группы." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Логотип обновлён." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Неудача при обновлении логотипа." @@ -3785,7 +4432,8 @@ msgid "A list of the users in this group." msgstr "Список пользователей, являющихся членами этой группы." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Группы" @@ -3800,10 +4448,11 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" "%%%%site.name%%%% группы помогут вам найти и общаться с людьми по интересам. " "Подробнее о группах [читайте тут](%%doc.groups%%). Попробуйте [поискать " -"существующие группы](%%%%action.groupsearch%%%%) или [создайте новую " -"группу](%%%%action.newgroup%%%%)." +"существующие группы](%%%%action.groupsearch%%%%) или [создайте новую группу]" +"(%%%%action.newgroup%%%%)." #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Создать новую группу" @@ -3814,24 +4463,23 @@ msgid "" msgstr "" "Поиск группы на %%site.name%% по названию, месторасположению или описанию." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Поиск группы" #: actions/imsettings.php:70 msgid "You can send and receive notices through " msgstr "" -"Вы можете отправлять и получать записи через Jabber/GTalk " -"[онлайн-мессенджер](%%doc.im%%). Настройте ваш IM аккаунт и предпочтения " -"ниже." +"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" +"(%%doc.im%%). Настройте ваш IM аккаунт и предпочтения ниже." #: actions/imsettings.php:120 #, php-format msgid "Jabber or GTalk address, " msgstr "" "Jabber или GTalk - адрес, типа \\\"UserName@example.org\\\". Первым делом " -"убедитесь, что добавили %s в список Ваших корреспондентов на Вашем " -"IM-мессенджере или в GTalk." +"убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-" +"мессенджере или в GTalk." #: actions/imsettings.php:147 msgid "Send me replies through Jabber/GTalk " @@ -3844,20 +4492,20 @@ msgstr "" "Код подтверждения выслан на ваш IM-адрес, который вы добавили. Вы должны " "подтвердить %s для рассылки сообщений вам." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Вы должны авторизоваться для вступления в группу." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Вы уже являетесь членом этой группы" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Не удаётся присоеденить пользователя %s к группе %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s вступил в группу %s" @@ -3866,15 +4514,18 @@ msgstr "%s вступил в группу %s" msgid "Inboxes must be enabled for groups to work." msgstr "Входящие должны быть включены для работы групп." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Вы должны авторизоваться, чтобы покинуть группу." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Нет такой группы." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Вы не являетесь членом этой группы." @@ -3882,21 +4533,25 @@ msgstr "Вы не являетесь членом этой группы." msgid "You may not leave a group while you are its administrator." msgstr "Вы не можете покинуть группу, пока являетесь её администратором." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Не удаётся найти учетную запись." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Не удаётся удалить пользователя %s из группы %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s покинул группу %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Авторизоваться" @@ -3908,15 +4563,17 @@ msgstr "Нет текущего статуса" msgid "New group" msgstr "Новая группа" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Используйте эту форму для создания новой группы." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Не удаётся создать группу." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Не удаётся назначить членство в группе." @@ -3928,11 +4585,14 @@ msgstr "Это слишком длинно." msgid "Don't send a message to yourself; " msgstr "Вы не можете послать сообщение самому себе." -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Запись опубликована" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ошибка AJAX" @@ -3951,7 +4611,7 @@ msgstr "\"Подталкивание\" послано" msgid "Nudge sent!" msgstr "\"Подталкивание\" отправлено!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "OpenID вход" @@ -3975,11 +4635,13 @@ msgstr "Автоматическое укорочение длинных URL" msgid "Service" msgstr "Сервис" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Автоматически использовать выбранный сервис" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Сервис сокращения URL слишком длинный (максимум 50 символов)." @@ -3987,16 +4649,17 @@ msgstr "Сервис сокращения URL слишком длинный (м msgid "Change your password." msgstr "Изменить ваш пароль" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Пароль сохранён." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Неверный тег человека: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Пользовательские авто-теги от %s - страница %d" @@ -4006,11 +4669,12 @@ msgstr "Пользовательские авто-теги от %s - стран msgid "These are users who have tagged themselves \"%s\" " msgstr "Есть пользователи, которые пометили себя как \"%s\"" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Информация профиля" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4022,20 +4686,25 @@ msgid "Automatically subscribe to whoever " msgstr "Автоматически подписываться на всех, кто подписался на меня" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Неверный тег: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Не удаётся сохранить теги." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Общая лента, страница %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Не удаётся вернуть публичный поток." @@ -4057,11 +4726,13 @@ msgstr "Общее облако тэгов" msgid "These are most popular recent tags on %s " msgstr "Самые популярные тэги на %s на текущий момент" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Облако тэгов" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Простите, регистрация только по приглашению." @@ -4075,8 +4746,8 @@ msgstr "" msgid "With this form you can create " msgstr "" "При помощи этой формы вы можете создать новый %%site.name%% аккаунт. (Есть " -"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID " -"регистрацию](%%action.openidlogin%%)!)" +"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" +"action.openidlogin%%)!)" #: actions/register.php:368 msgid "1-64 lowercase letters or numbers, " @@ -4136,7 +4807,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "Это локальный профиль! Авторизуйтесь для подписки." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Ответы для %s, страница %d" @@ -4146,50 +4818,71 @@ msgstr "Ответы для %s, страница %d" msgid "%s favorite notices, page %d" msgstr "Любимые записи %s, страница %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Группа %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Группа %s, страница %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Профиль группы" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Запись" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Действия группы" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Лента записей от группы %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Участники" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(пока ничего нет)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Все участники" @@ -4206,7 +4899,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Только отправитель и получатель могут читать это сообщение." -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "Входящие для %s - страница %d" @@ -4216,30 +4909,37 @@ msgid "'s profile" msgstr "Профиль" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Профиль пользователя" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Фото" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Действия пользователя" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Послать приватное сообщение этому пользователю." -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Сообщение" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Все подписчики" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Все группы" @@ -4249,11 +4949,10 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** имеет аккаунт на %%%%site.name%%%%, сервисе для " -"[микроблогинга](http://en.wikipedia.org/wiki/Micro-blogging). " -"[Присоеденяйся](%%%%action.register%%%%) и получи возможность быть всегда в " -"курсе всего самого интересного в жизни **%s**. ([Читать " -"больше](%%%%doc.help%%%%))" +"**%s** имеет аккаунт на %%%%site.name%%%%, сервисе для [микроблогинга]" +"(http://en.wikipedia.org/wiki/Micro-blogging). [Присоеденяйся](%%%%action." +"register%%%%) и получи возможность быть всегда в курсе всего самого " +"интересного в жизни **%s**. ([Читать больше](%%%%doc.help%%%%))" #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4269,7 +4968,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "В ожидании подтверждения данного номера телефона." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Выбор провайдера" @@ -4327,16 +5026,17 @@ msgstr "Это пользователи, записи которых читае msgid "These are the people whose " msgstr "Это пользователи, которые читают записи %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Записи, помеченные %s, страница %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Записи, помеченные \"%s\", в хронологическом порядке" @@ -4358,7 +5058,7 @@ msgstr "Тэги %s" msgid "Tag user" msgstr "Тэги для пользователя" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4370,18 +5070,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Вы можете помечать тегами только пользователей, на которых подписаны или " "которые подписаны на Вас." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Не удаётся сохранить теги." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Используйте эту форму для добавления тегов Вашим подписчикам или подписантам." @@ -4390,20 +5090,23 @@ msgstr "" msgid "No such tag." msgstr "Нет такого тега." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Микроблог помеченный для %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Неудача при блокировке пользователя." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Неудача при разблокировке пользователя." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Не найдено." @@ -4413,15 +5116,16 @@ msgstr "" "Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " "на Твиттер, и подпишитесь на друзей с Твиттера, которые уже здесь." -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Имя Твиттер-пользователя" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Твиттер-пароль" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Твиттер-друзья" @@ -4436,145 +5140,154 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Не удаётся подтвердить данные по аккаунту от \"%s\" из Твитера." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Ошибка при удалении данного блока." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Нет ID профиля в запросе." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Нет профиля с таким ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Отписано" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Группы %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Группы %s, страница %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Проблема при сохранении записи. Неизвестный пользователь." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Слишком много записей за столь короткий срок; передохните немного и " "попробуйте вновь через пару минут." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Вам запрещено поститься на этом сайте (бан)" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Загрузить аватар" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Другое" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Другие опции" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Страница без названия" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Главная навигация" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Личный профиль и лента друзей" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Искать людей или текст" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Настройки" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Изменить ваш email, аватар, пароль, профиль и др." -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Соединиться с IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Выйти" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Войти" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Создать новый аккаунт" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Войти с OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Помощь" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Новая запись" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Локальные виды" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Новая запись" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Навигация по подпискам" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "StatusNet лицензия" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Все" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "лицензия." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Заблокировать пользователя." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Блокировать" @@ -4587,11 +5300,14 @@ msgstr "Мне не нравиться эта запись" msgid "To use the %s Facebook Application you need to login " msgstr "Вы должны авторизоваться чтобы использовать %s приложение" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr "Создать новую учетную запись" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Общее" @@ -4611,31 +5327,36 @@ msgstr "Фильтровать тэги" msgid "All" msgstr "Все" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Тэги" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Выберите тэг из выпадающего списка" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Перейти" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Адрес страницы, дневника или профиля группы на другом портале" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Описание" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Опиши группу при помощи 140 символов" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Где находится группа, например «Город, область, страна»" @@ -4644,20 +5365,20 @@ msgstr "Где находится группа, например «Город, msgid "Group" msgstr "Группа" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Настройки" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Редактировать информацию о группе %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Логотип" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Добавить или изменить логотип группы %s" @@ -4687,11 +5408,11 @@ msgstr "Авторизация" msgid "Leave" msgstr "Выйти" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Войти с вашим ником и паролем." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Создать новый аккаунт" @@ -4713,17 +5434,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s теперь просматривает твои записи на %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Месторасположение: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Домашняя страница: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4732,7 +5453,7 @@ msgstr "" "Био: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Вас \"подтолкнул\" пользователь %s" @@ -4749,39 +5470,47 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s добавил вашу запись от %2$s в состав своих любимых." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr " из" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Послать прямую запись" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Послать запись" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "6 или больше знаков" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "в ответ на" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Ответить на эту запись" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Ответить" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Удалить эту запись" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Удалить" @@ -4802,27 +5531,29 @@ msgstr "\"Подтолкнуть\" этого пользователя" msgid "Tags in %s's notices" msgstr "Тэги записей пользователя %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(пока ничего нет)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Общее" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Группы" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Облаго тэгов" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Особые" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Популярное" @@ -4838,31 +5569,33 @@ msgstr "Найти группы на этом сайте" msgid "Untitled section" msgstr "Секция без названия" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Люди на которых подписан %s" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Люди подписанные на %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Группы, в которых состоит %s" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "В этой форме ты можешь пригласить друзей и коллег на этот сервис." -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Пользователь заблокировал Вас." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Подписаться на %s" @@ -4875,10 +5608,11 @@ msgid "Top posters" msgstr "Самые активные" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Разблокировать пользователя." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Разблокировать" @@ -4886,6 +5620,2063 @@ msgstr "Разблокировать" msgid "Unsubscribe from this user" msgstr "Отписаться от этого пользователя" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Лента друзей %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Лента друзей %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Лента друзей %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s и друзья" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Тут вы можете загрузить свой аватар." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватар обновлён." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Вы окончательно удаляете запись. После того, как это будет сделано, " +"восстановление будет невозможно." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" +"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " +"приватное сообщение." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Тут вы можете загрузить логотип для группы." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Подберите нужный квадратный ракурс дла вашего аватара" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Микроблог от %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Поиск людей на %%site.name%% по имени, месторасположению или интересам. " +"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Ошибка при отправке прямого сообщения." + +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%s\" on %s" +msgstr "" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем " +"изменять Ваши установки." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Лента публичного потока" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Лента публичного потока" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Лента публичного потока" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +", за исключением моей приватной информации: пароля, почты, мессенджера, " +"телефона." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Создать" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Профиль группы" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Профиль" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Лента записей для %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Лента записей для %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Лента записей для %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Исходящие для %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Аватар" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Настройки профиля" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Код подтверждения выслан на мобильный номер, который вы добавили. " +"Посмотрите Ваши входящие сообщения (и папку для спама тоже!) для нахождения " +"этого кода и инструкций по его использованию." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Нет такого пользователя" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " +"на Твиттер," + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Не удаётся подтвердить данные по аккаунту \"%s\" из Твитера." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " +"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" +"\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Искать людей или текст" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Слишком много записей за столь короткий срок; передохните немного и " +"попробуйте вновь через пару минут." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Соединиться с IM, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "\"Подтолкнуть\"" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Вы должны авторизоваться чтобы использовать %s приложение" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Поиск" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Нет такого документа." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Список пользователей, являющихся членами этой группы." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Список пользователей, являющихся членами этой группы." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Профиль пользователя" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s и друзья, страница %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Список пользователей, являющихся членами этой группы." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Неудача при разблокировке пользователя." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Код подтверждения" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Не удаётся удалить эту запись." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Неверный тег: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Не удаётся создать любимую запись." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Новая запись" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Новая запись" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Неверное имя." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Профиль не определен." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Пользователь заблокировал Вас." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Вы не являетесь членом этой группы." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Заблокировать пользователя." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Вы должны авторизоваться, чтобы создать новую группу." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Группы" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Не удаётся обновить пользователя." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Не удаётся сохранить Ваши установки по Твиттеру!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Настройки синхронизации сохранены." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Вы должны быть администратором, чтобы изменять информацию о группе" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Настройки" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Нет результатов." + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Пользователь заблокировал Вас." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Сообщение" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Не удаётся сохранить профиль." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) позволяет вам авторизоваться на многих сайтах при " +"помощи только лишь одного аккаунта. Управляйте вашим ассоциированным " +"аккаунтом OpenIDs отсюда." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Настройки профиля" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" +"Micro-blogging)" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Если вы забыли или потеряли пароль, то вы можете получить новый, послав " +"запрос на тот электронный адрес, который вы указали в вашем аккаунте." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Вы идентифицированны. Введите новый пароль ниже." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Запрошено восстановление пароля" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Ошибка, связанная с кодом подтверждения." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Подписаться на %s" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Любимые записи %s, страница %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Лента записей от группы %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Лента записей от группы %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Лента записей от группы %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" +"Micro-blogging)" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Настройки" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Не локальный пользователь." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Записи, помеченные %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Лента записей от группы %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** имеет аккаунт на %%%%site.name%%%%, сервисе для [микроблогинга]" +"(http://en.wikipedia.org/wiki/Micro-blogging). [Присоеденяйся](%%%%action." +"register%%%%) и получи возможность быть всегда в курсе всего самого " +"интересного в жизни **%s**. ([Читать больше](%%%%doc.help%%%%))" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s теперь просматривает твои записи на %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Лента записей для %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Лента записей для %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Эта запись уже входит в число любимых!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Эта запись не входит в число ваших любимых записей!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Не удаётся вернуть публичный поток." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Нет адресата." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Нет статусов." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "лицензия." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Подписки %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Настройки профиля" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Вы не являетесь членом этой группы." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Проблемы с сохранением записи." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Сообщение для %1$s на %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Профиль пользователя" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Профиль" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Загрузить" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Изменить Ваш пароль" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Соединить" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Поиск" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Список" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Блокировать" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Заблокировать пользователя." + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Добавить или изменить логотип группы %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Нет контента!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Пользователь" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Поиск" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "URL Главной страницы неверен." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Нет такого тега." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Прямые сообщения для %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Слишком длинно. Максимальная длина сообщения - 140 знаков." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "" +"Не удаётся следовать пользователю, т.к. такого пользователя не существует." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Слишком длинное описание (максимум 140 символов)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Вы уже являетесь членом этой группы" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Не удаётся присоеденить пользователя %s к группе %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Вы не являетесь членом этой группы." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Не удаётся удалить пользователя %s из группы %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Группы %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Группы, в которых состоит %s" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Действия группы" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Слишком длинная запись. Максимальная длина - 140 знаков." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Неподдерживаемый формат файла изображения." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Фото" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Слишком длинное описание (максимум 140 символов)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Пользователь отслеживает несуществующее." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Не авторизовано." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Не удаётся преобразовать запросы в доступы." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Неизвестная версия OMB-протокола." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Нет такой записи." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Потерян файл." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Страница недоступна для того типа, который Вы задействовали." + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action." +"register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID]" +"(%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Все обновления соответствующие поисковому термину \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опиши себя и свои увлечения при помощи 140 символов" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опиши себя и свои интересы при помощи 140 символов." + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Слишком длинное био (максимум 140 символов)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Неверный URL профиля (не YADIS-документ)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Это локальный профиль! Авторизуйтесь для подписки." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не удаётся получить запрос." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Лента записей от группы %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Сообщение для %1$s на %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Лента любимых записей от %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Лента любимых записей от %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Лента любимых записей от %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Группа %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Запись опубликована" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Страница недоступна для того типа, который Вы задействовали." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Лента записей для %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " +"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" +"\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " +"о том, как авторизовать подписку. Ваш подписочный купон: " + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, " +"чтобы полностью отказаться от подписки." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Не удается прочитать URL аватары из '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Неверный тип изображения для '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Не удаётся перенаправить на сервер: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet лицензия" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Не удаётся одновить пользователя с подтверждённым электронным адресом." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "\"Подталкивание\" послано" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Ответить на эту запись" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Проблемы с сохранением записи." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Нет кода подтверждения." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Войти" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Выбор провайдера" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Опиши группу при помощи 140 символов" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опиши группу при помощи 140 символов" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Лента записей для %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s добавил вашу запись в состав своих любимых" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " из" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Не удаётся удалить любимую запись." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Удалить запись" + #~ msgid "Code not yet ready." #~ msgstr "Код ещё не готов." @@ -4907,9 +7698,6 @@ msgstr "Отписаться от этого пользователя" #~ msgid "Tag a person" #~ msgstr "Тег пользователя" -#~ msgid "List" -#~ msgstr "Список" - #~ msgid "Icons" #~ msgstr "Иконки" diff --git a/locale/statusnet.po b/locale/statusnet.po index c7ac6ac9b1..9b5a64eb4d 100644 --- a/locale/statusnet.po +++ b/locale/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-14 10:32-0700\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,12 +41,13 @@ msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -96,20 +97,21 @@ msgstr "" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" @@ -129,14 +131,16 @@ msgstr "" #: actions/facebookhome.php:163 actions/twitapistatuses.php:130 #: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 #: actions/facebookhome.php:158 actions/twitapistatuses.php:89 -#: lib/personalgroupnav.php:100 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 #: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" @@ -149,26 +153,29 @@ msgstr "" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 #: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 #: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 #: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" #: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 -#: lib/action.php:752 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -176,7 +183,7 @@ msgid "" msgstr "" #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 -#: lib/action.php:754 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" @@ -189,32 +196,33 @@ msgstr "" #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 -#: lib/groupeditform.php:154 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" #: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 #: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -222,7 +230,7 @@ msgid "" msgstr "" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -265,7 +273,21 @@ msgstr "" #: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 #: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 #: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -298,12 +320,13 @@ msgid "API method under construction." msgstr "" #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 -#: lib/action.php:706 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 #: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "" @@ -315,6 +338,8 @@ msgstr "" #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 #: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "" @@ -332,12 +357,13 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" @@ -364,6 +390,7 @@ msgstr "" #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 #: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "" @@ -373,22 +400,26 @@ msgstr "" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 #: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 -#: actions/register.php:416 actions/register.php:463 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -397,7 +428,8 @@ msgstr "" #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 #: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "" @@ -407,7 +439,7 @@ msgid "Avatar updated." msgstr "" #: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -415,14 +447,14 @@ msgid "" msgstr "" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -433,7 +465,8 @@ msgstr "" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 -#: actions/register.php:448 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "" @@ -447,6 +480,7 @@ msgid "Bio is too long (max 140 chars)." msgstr "" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" @@ -460,6 +494,7 @@ msgstr "" #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 #: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "" @@ -467,7 +502,8 @@ msgstr "" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "" @@ -477,22 +513,23 @@ msgid "Cannot instantiate OpenID consumer object." msgstr "" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 #: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -502,11 +539,12 @@ msgid "Change password" msgstr "" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -517,6 +555,8 @@ msgstr "" #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 #: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "" @@ -530,11 +570,13 @@ msgstr "" #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 #: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -544,7 +586,7 @@ msgid "Confirmation code not found." msgstr "" #: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -566,7 +608,7 @@ msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 -#: lib/action.php:425 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "" @@ -576,7 +618,7 @@ msgid "Connect existing account" msgstr "" #: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 -#: lib/action.php:719 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "" @@ -590,12 +632,14 @@ msgstr "" #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 #: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" @@ -639,7 +683,8 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "" @@ -662,23 +707,26 @@ msgstr "" #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 #: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 -#: actions/twitapiaccount.php:82 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" @@ -688,6 +736,8 @@ msgstr "" #: actions/emailsettings.php:447 actions/emailsettings.php:469 #: actions/smssettings.php:515 actions/smssettings.php:539 #: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -705,7 +755,11 @@ msgstr "" #: actions/profilesettings.php:259 actions/smssettings.php:266 #: actions/smssettings.php:408 actions/emailsettings.php:287 #: actions/emailsettings.php:418 actions/othersettings.php:167 -#: actions/profilesettings.php:260 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "" @@ -730,17 +784,17 @@ msgid "Creating new account for OpenID that already has a user." msgstr "" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -749,19 +803,20 @@ msgid "Currently" msgstr "" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 #: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" @@ -776,12 +831,13 @@ msgstr "" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -791,7 +847,7 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "" @@ -800,22 +856,23 @@ msgid "Email address confirmation" msgstr "" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" @@ -837,21 +894,25 @@ msgstr "" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 #: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "" @@ -872,6 +933,7 @@ msgstr "" #: ../actions/password.php:80 actions/profilesettings.php:399 #: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "" @@ -881,7 +943,8 @@ msgstr "" #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 #: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "" @@ -892,6 +955,7 @@ msgstr "" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "" @@ -906,7 +970,7 @@ msgid "Existing nickname" msgstr "" #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 -#: lib/action.php:708 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "" @@ -945,7 +1009,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 actions/login.php:247 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -959,6 +1023,8 @@ msgstr "" #: actions/showgroup.php:237 actions/showstream.php:255 #: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 #: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "" @@ -970,17 +1036,21 @@ msgstr "" #: actions/updateprofile.php:97 actions/updateprofile.php:99 #: actions/editgroup.php:197 actions/newgroup.php:147 #: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 #: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 #: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "" @@ -988,7 +1058,8 @@ msgstr "" #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 #: lib/groupeditform.php:146 actions/register.php:442 -#: lib/groupeditform.php:161 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "" @@ -998,21 +1069,25 @@ msgstr "" #: actions/profilesettings.php:199 actions/register.php:168 #: actions/editgroup.php:194 actions/newgroup.php:144 #: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 #: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "" @@ -1043,28 +1118,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 #: actions/emailsettings.php:443 actions/emailsettings.php:450 #: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 #: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 -#: actions/facebookhome.php:129 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1095,7 +1173,7 @@ msgid "Invalid license URL '%s'" msgstr "" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "" @@ -1116,7 +1194,7 @@ msgid "Invalid profile URL '%s'." msgstr "" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "" @@ -1136,33 +1214,33 @@ msgstr "" #: actions/finishopenidlogin.php:279 actions/register.php:193 #: actions/register.php:211 actions/finishopenidlogin.php:284 #: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 #: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1171,12 +1249,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "" #: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1185,11 +1263,13 @@ msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 #: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1203,6 +1283,10 @@ msgstr "" #: actions/register.php:454 actions/showgroup.php:251 #: actions/showstream.php:229 actions/userauthorization.php:128 #: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "" @@ -1214,6 +1298,9 @@ msgstr "" #: actions/updateprofile.php:112 actions/updateprofile.php:114 #: actions/editgroup.php:203 actions/newgroup.php:153 #: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "" @@ -1225,7 +1312,8 @@ msgstr "" #: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 #: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 #: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 -#: lib/facebookaction.php:295 lib/facebookaction.php:321 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "" @@ -1245,24 +1333,25 @@ msgid "" msgstr "" #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 -#: lib/action.php:435 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 -#: lib/facebookaction.php:327 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 #: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1284,6 +1373,7 @@ msgid "Microblog by %s" msgstr "" #: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1294,13 +1384,14 @@ msgstr "" #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 #: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" @@ -1312,6 +1403,7 @@ msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 #: actions/emailsettings.php:465 actions/emailsettings.php:472 #: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" @@ -1321,19 +1413,20 @@ msgid "New nickname" msgstr "" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 -#: actions/recoverpassword.php:232 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "" @@ -1347,7 +1440,9 @@ msgstr "" #: actions/showgroup.php:226 actions/showstream.php:244 #: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 #: actions/showgroup.php:231 actions/showstream.php:209 -#: lib/facebookaction.php:314 lib/groupeditform.php:152 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "" @@ -1359,6 +1454,9 @@ msgstr "" #: actions/register.php:159 actions/editgroup.php:185 #: actions/finishopenidlogin.php:231 actions/newgroup.php:135 #: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "" @@ -1372,6 +1470,9 @@ msgstr "" #: actions/updateprofile.php:83 actions/editgroup.php:181 #: actions/finishopenidlogin.php:221 actions/newgroup.php:131 #: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" @@ -1381,7 +1482,7 @@ msgid "Nickname not allowed." msgstr "" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "" @@ -1394,26 +1495,28 @@ msgstr "" #: actions/block.php:147 actions/deletenotice.php:118 #: actions/deletenotice.php:116 actions/block.php:149 #: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 #: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1426,12 +1529,14 @@ msgstr "" #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 #: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 #: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1442,6 +1547,7 @@ msgstr "" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 #: actions/emailsettings.php:430 actions/emailsettings.php:437 #: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1452,6 +1558,7 @@ msgstr "" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "" @@ -1460,11 +1567,13 @@ msgstr "" #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 #: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1475,6 +1584,7 @@ msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "" @@ -1499,13 +1609,14 @@ msgstr "" #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 #: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 #: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 #: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1515,13 +1626,15 @@ msgid "No such OpenID." msgstr "" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "" @@ -1566,11 +1679,15 @@ msgstr "" #: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 #: lib/command.php:178 lib/command.php:227 lib/command.php:264 #: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1593,12 +1710,13 @@ msgstr "" #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 #: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 #: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "" @@ -1609,11 +1727,12 @@ msgstr "" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 #: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "" @@ -1623,6 +1742,9 @@ msgstr "" #: actions/profilesettings.php:195 actions/register.php:161 #: actions/editgroup.php:188 actions/newgroup.php:138 #: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "" @@ -1643,6 +1765,7 @@ msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 #: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "" @@ -1653,12 +1776,13 @@ msgstr "" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 #: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1677,6 +1801,8 @@ msgstr "" #: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 #: actions/groupblock.php:61 actions/groupunblock.php:61 #: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "" @@ -1697,7 +1823,7 @@ msgid "Notice feed for %s" msgstr "" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" @@ -1705,19 +1831,20 @@ msgstr "" #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 #: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 #: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 #: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "" @@ -1784,7 +1911,7 @@ msgid "OpenID settings" msgstr "" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" @@ -1801,17 +1928,20 @@ msgstr "" #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 #: actions/login.php:214 lib/facebookaction.php:315 #: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 #: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 #: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "" @@ -1819,6 +1949,7 @@ msgstr "" #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 #: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" @@ -1826,6 +1957,7 @@ msgstr "" #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 #: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "" @@ -1833,6 +1965,7 @@ msgstr "" #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 #: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "" @@ -1857,12 +1990,12 @@ msgid "Personal" msgstr "" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1874,7 +2007,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1884,6 +2017,8 @@ msgstr "" #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 #: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "" @@ -1893,39 +2028,44 @@ msgstr "" #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 #: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 #: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 #: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "" @@ -1942,17 +2082,18 @@ msgstr "" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 #: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 #: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1963,11 +2104,13 @@ msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 #: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1982,7 +2125,8 @@ msgstr "" #: lib/facebookaction.php:277 lib/logingroupnav.php:78 #: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 #: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -2000,13 +2144,14 @@ msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 #: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "" @@ -2016,7 +2161,7 @@ msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -2030,7 +2175,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "" @@ -2055,28 +2202,32 @@ msgstr "" #: actions/replies.php:116 actions/repliesrss.php:67 #: lib/personalgroupnav.php:104 actions/replies.php:118 #: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 #: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 #: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 #: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -2091,11 +2242,12 @@ msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -2113,12 +2265,16 @@ msgstr "" #: actions/twittersettings.php:164 actions/othersettings.php:119 #: actions/profilesettings.php:152 actions/subscriptions.php:185 #: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 #: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "" @@ -2143,7 +2299,7 @@ msgid "" msgstr "" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" @@ -2151,35 +2307,37 @@ msgstr "" #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 #: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 #: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" @@ -2190,6 +2348,7 @@ msgstr "" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 #: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "" @@ -2219,13 +2378,14 @@ msgid "Sorry, that is not your incoming email address." msgstr "" #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "" #: ../actions/showstream.php:296 actions/showstream.php:311 #: actions/showstream.php:476 actions/showgroup.php:375 #: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "" @@ -2242,6 +2402,7 @@ msgstr "" #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 #: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" @@ -2255,13 +2416,13 @@ msgstr "" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 #: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 #: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "" @@ -2276,6 +2437,7 @@ msgstr "" #: ../actions/avatar.php:87 actions/profilesettings.php:324 #: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" @@ -2286,6 +2448,7 @@ msgstr "" #: actions/tagother.php:209 lib/profilelist.php:160 #: actions/profilesettings.php:123 actions/showstream.php:255 #: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" @@ -2315,7 +2478,7 @@ msgid "That confirmation code is not for you!" msgstr "" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2325,49 +2488,52 @@ msgid "That file is too big." msgstr "" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 #: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 #: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" @@ -2398,6 +2564,8 @@ msgstr "" #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 #: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "" @@ -2440,7 +2608,7 @@ msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" @@ -2470,7 +2638,7 @@ msgstr "" #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 #: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 #: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2483,6 +2651,12 @@ msgstr "" #: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 #: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 #: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" @@ -2492,15 +2666,18 @@ msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 #: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2510,18 +2687,20 @@ msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 #: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2536,16 +2715,19 @@ msgstr "" #: actions/avatarsettings.php:263 actions/emailsettings.php:247 #: actions/grouplogo.php:324 actions/twittersettings.php:306 #: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 #: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2580,22 +2762,24 @@ msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 #: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 #: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" @@ -2603,6 +2787,8 @@ msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 #: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 #: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" @@ -2610,6 +2796,7 @@ msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "" @@ -2626,7 +2813,7 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2634,6 +2821,7 @@ msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" @@ -2661,11 +2849,12 @@ msgstr "" #: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 #: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 #: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "" @@ -2675,10 +2864,12 @@ msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "" @@ -2686,7 +2877,8 @@ msgstr "" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 #: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" @@ -2707,7 +2899,7 @@ msgstr "" #: actions/block.php:148 actions/deletenotice.php:122 #: actions/deletenotice.php:141 actions/deletenotice.php:115 #: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2728,7 +2920,7 @@ msgid "You are already logged in!" msgstr "" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" @@ -2766,6 +2958,7 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2774,13 +2967,14 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 #: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" @@ -2804,7 +2998,7 @@ msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" @@ -2815,7 +3009,7 @@ msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2843,56 +3037,56 @@ msgid "" msgstr "" #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "" #: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "" #: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "" #: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "" #: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "" #: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "" #: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "" #: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "" #: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "" #: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "" @@ -2914,7 +3108,7 @@ msgid "reply" msgstr "" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "" @@ -2954,7 +3148,14 @@ msgstr "" #: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 #: actions/othersettings.php:138 actions/recoverpassword.php:334 #: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2963,7 +3164,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2972,10 +3173,12 @@ msgid "Favor" msgstr "" #: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" @@ -2990,6 +3193,7 @@ msgstr "" #: actions/twitapifavorites.php:125 classes/Command.php:152 #: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 #: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -3052,7 +3256,7 @@ msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" @@ -3060,7 +3264,8 @@ msgstr "" #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 #: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" @@ -3069,17 +3274,19 @@ msgstr "" #: classes/Command.php:240 actions/newmessage.php:161 #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -3136,7 +3343,8 @@ msgstr "" #: actions/avatarsettings.php:106 actions/avatarsettings.php:182 #: actions/grouplogo.php:183 actions/remotesubscribe.php:366 #: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -3166,6 +3374,7 @@ msgstr "" #: actions/register.php:95 actions/register.php:180 #: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -3194,6 +3403,7 @@ msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 #: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -3226,12 +3436,14 @@ msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 #: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 #: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" @@ -3243,6 +3455,7 @@ msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 #: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" @@ -3250,32 +3463,34 @@ msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 #: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 #: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 #: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" @@ -3439,41 +3654,42 @@ msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 #: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" #: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" #: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" #: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" #: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" #: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" @@ -3485,61 +3701,63 @@ msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" #: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" #: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" #: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" #: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" #: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 #: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" #: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" #: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" #: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" #: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3547,11 +3765,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3593,7 +3811,7 @@ msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" @@ -3633,7 +3851,7 @@ msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 #: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" @@ -3644,7 +3862,7 @@ msgstr "" #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 -#: actions/facebookhome.php:156 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "" @@ -3656,6 +3874,7 @@ msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "" @@ -3663,6 +3882,7 @@ msgstr "" #: actions/grouplogo.php:198 actions/grouplogo.php:258 #: actions/avatarsettings.php:126 actions/avatarsettings.php:202 #: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" @@ -3670,11 +3890,13 @@ msgstr "" #: actions/grouplogo.php:209 actions/grouplogo.php:270 #: actions/avatarsettings.php:141 actions/avatarsettings.php:214 #: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 #: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3697,11 +3919,13 @@ msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "" @@ -3709,6 +3933,7 @@ msgstr "" #: actions/grouplogo.php:406 actions/grouplogo.php:440 #: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 #: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" @@ -3766,7 +3991,8 @@ msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" @@ -3775,6 +4001,8 @@ msgstr "" #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 #: actions/blockedfromgroup.php:73 actions/editgroup.php:89 #: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "" @@ -3783,18 +4011,23 @@ msgstr "" #: actions/showgroup.php:128 actions/grouplogo.php:104 #: actions/grouprss.php:103 actions/blockedfromgroup.php:80 #: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "" #: actions/editgroup.php:106 actions/editgroup.php:165 #: actions/grouplogo.php:107 actions/grouplogo.php:111 #: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" #: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3829,6 +4062,7 @@ msgid "Send me email when someone " msgstr "" #: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3867,18 +4101,21 @@ msgstr "" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 #: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 #: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "" @@ -3959,6 +4196,7 @@ msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "" @@ -3987,16 +4225,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 #: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -4005,10 +4244,12 @@ msgid "You can upload a logo image for your group." msgstr "" #: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "" #: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "" @@ -4075,20 +4316,20 @@ msgstr "" msgid "A confirmation code was sent " msgstr "" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "" -#: actions/joingroup.php:128 actions/joingroup.php:133 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "" -#: actions/joingroup.php:135 actions/joingroup.php:140 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -4097,16 +4338,18 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -4115,20 +4358,24 @@ msgid "You may not leave a group while you are its administrator." msgstr "" #: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" #: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "" #: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" #: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -4140,15 +4387,17 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" #: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "" #: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "" @@ -4161,12 +4410,13 @@ msgid "Don't send a message to yourself; " msgstr "" #: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "" #: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 #: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -4208,10 +4458,12 @@ msgid "Service" msgstr "" #: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" #: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "" @@ -4220,6 +4472,7 @@ msgid "Change your password." msgstr "" #: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "" @@ -4238,11 +4491,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "" #: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4253,20 +4507,24 @@ msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "" #: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "" #: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "" #: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -4291,7 +4549,8 @@ msgid "Tag cloud" msgstr "" #: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4341,6 +4600,7 @@ msgid "That's a local profile! Login to subscribe." msgstr "" #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "" @@ -4361,7 +4621,7 @@ msgid "%s group, page %d" msgstr "" #: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "" @@ -4370,7 +4630,9 @@ msgstr "" #: actions/showgroup.php:253 actions/showstream.php:271 #: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 #: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" @@ -4379,12 +4641,14 @@ msgstr "" #: actions/showgroup.php:264 actions/showstream.php:282 #: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 #: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "" #: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" @@ -4395,7 +4659,8 @@ msgstr "" #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "" @@ -4404,11 +4669,12 @@ msgstr "" #: lib/tagcloudsection.php:71 actions/showgroup.php:344 #: actions/showgroup.php:378 lib/profileaction.php:117 #: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" #: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4434,24 +4700,28 @@ msgstr "" #: actions/showstream.php:236 actions/tagother.php:77 #: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "" #: actions/showstream.php:240 actions/tagother.php:81 #: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" #: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" #: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" #: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" @@ -4482,7 +4752,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4541,11 +4811,11 @@ msgid "These are the people whose " msgstr "" #: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "" -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "" @@ -4605,15 +4875,17 @@ msgid "Microblog tagged with %s" msgstr "" #: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" #: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "" @@ -4647,19 +4919,20 @@ msgstr "" msgid "Error removing the block." msgstr "" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "" #: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" @@ -4670,56 +4943,61 @@ msgid "%s groups, page %d" msgstr "" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "" #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "" #: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" @@ -4727,15 +5005,15 @@ msgstr "" msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 lib/action.php:415 lib/action.php:440 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "" @@ -4743,44 +5021,46 @@ msgstr "" msgid "Login with OpenID" msgstr "" -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "" -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "" #: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "" #: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4821,14 +5101,17 @@ msgid "All" msgstr "" #: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" #: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" #: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" @@ -4837,6 +5120,7 @@ msgid "URL of the homepage or blog of the group or topic" msgstr "" #: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "" @@ -4845,6 +5129,7 @@ msgid "Describe the group or topic in 140 chars" msgstr "" #: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" @@ -4896,11 +5181,11 @@ msgstr "" msgid "Leave" msgstr "" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "" @@ -4957,15 +5242,16 @@ msgstr "" msgid "From" msgstr "" -#: lib/messageform.php:110 lib/messageform.php:109 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 lib/noticeform.php:128 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "" -#: lib/noticeform.php:152 lib/noticeform.php:149 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "" @@ -4975,21 +5261,23 @@ msgstr "" #: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 #: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "" #: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 #: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" #: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -5064,6 +5352,7 @@ msgid "Groups %s is a member of" msgstr "" #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" @@ -5073,7 +5362,7 @@ msgid "User has blocked you." msgstr "" #: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "" @@ -5098,22 +5387,22 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" -#: actions/all.php:77 actions/all.php:59 +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 #, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "" -#: actions/all.php:82 actions/all.php:64 +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 #, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "" -#: actions/all.php:87 actions/all.php:69 +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 #, php-format msgid "Feed for friends of %s (Atom)" msgstr "" -#: actions/all.php:112 actions/all.php:125 +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 msgid "You and friends" msgstr "" @@ -5133,17 +5422,17 @@ msgid "" "will not be notified of any @-replies from them." msgstr "" -#: actions/deletenotice.php:73 +#: actions/deletenotice.php:73 actions/deletenotice.php:103 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -#: actions/deletenotice.php:127 +#: actions/deletenotice.php:127 actions/deletenotice.php:157 msgid "There was a problem with your session token. Try again, please." msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:174 msgid "Send me email when someone sends me an \"@-reply\"." msgstr "" @@ -5166,13 +5455,13 @@ msgid "" "latest notice, you need to give it permission." msgstr "" -#: actions/grouplogo.php:155 +#: actions/grouplogo.php:155 actions/grouplogo.php:150 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." msgstr "" -#: actions/grouplogo.php:367 +#: actions/grouplogo.php:367 actions/grouplogo.php:362 msgid "Pick a square area of the image to be the logo." msgstr "" @@ -5214,19 +5503,19 @@ msgid "" "before changing your settings." msgstr "" -#: actions/public.php:125 actions/public.php:133 +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 msgid "Public Stream Feed (RSS 1.0)" msgstr "" -#: actions/public.php:130 actions/public.php:138 +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 msgid "Public Stream Feed (RSS 2.0)" msgstr "" -#: actions/public.php:135 actions/public.php:143 +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 msgid "Public Stream Feed (Atom)" msgstr "" -#: actions/public.php:210 actions/public.php:241 +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -5243,21 +5532,23 @@ msgid "" "Try our [OpenID registration](%%action.openidlogin%%)!)" msgstr "" -#: actions/register.php:432 actions/register.php:479 +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 msgid "Creative Commons Attribution 3.0" msgstr "" -#: actions/register.php:433 actions/register.php:480 +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 msgid "" " except this private data: password, email address, IM address, and phone " "number." msgstr "" #: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 msgid "Created" msgstr "" #: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5297,18 +5588,22 @@ msgid "FOAF for %s" msgstr "" #: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 msgid "Edit Avatar" msgstr "" #: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 msgid "Edit profile settings" msgstr "" #: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 msgid "Edit" msgstr "" #: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -5317,7 +5612,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/smssettings.php:335 +#: actions/smssettings.php:335 actions/smssettings.php:347 msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." @@ -5342,7 +5637,14 @@ msgid "" msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 msgid "No such user!" msgstr "" @@ -5368,7 +5670,7 @@ msgstr "" msgid "Search for more groups" msgstr "" -#: classes/Notice.php:138 classes/Notice.php:154 +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -5378,11 +5680,11 @@ msgstr "" msgid "Connect to SMS, Twitter" msgstr "" -#: lib/action.php:671 lib/action.php:721 +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 msgid "Badge" msgstr "" -#: lib/command.php:113 lib/command.php:106 +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format msgid "" "Subscriptions: %1$s\n" @@ -5559,20 +5861,20 @@ msgstr "" msgid "More..." msgstr "" -#: actions/all.php:80 +#: actions/all.php:80 actions/all.php:127 #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." msgstr "" -#: actions/all.php:85 +#: actions/all.php:85 actions/all.php:132 #, php-format msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -#: actions/all.php:87 +#: actions/all.php:87 actions/all.php:134 #, php-format msgid "" "You can try to [nudge %s](../%s) from his profile or [post something to his " @@ -5580,6 +5882,7 @@ msgid "" msgstr "" #: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 #, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " @@ -5620,30 +5923,39 @@ msgstr "" msgid "Conversation" msgstr "" -#: actions/deletenotice.php:115 +#: actions/deletenotice.php:115 actions/deletenotice.php:145 msgid "Do not delete this notice" msgstr "" #: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 #, php-format msgid "Too many aliases! Maximum %d." msgstr "" #: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 #, php-format msgid "Invalid alias: \"%s\"" msgstr "" #: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 #, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "" #: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 msgid "Alias can't be the same as nickname." msgstr "" #: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 msgid "Could not create aliases." msgstr "" @@ -5702,6 +6014,7 @@ msgid "User is not a member of group." msgstr "" #: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 msgid "Block user from group" msgstr "" @@ -5717,15 +6030,15 @@ msgstr "" msgid "Database error blocking user from group." msgstr "" -#: actions/groupdesignsettings.php:73 +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." msgstr "" -#: actions/groupdesignsettings.php:146 +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 msgid "Group design" msgstr "" -#: actions/groupdesignsettings.php:157 +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 msgid "" "Customize the way your group looks with a background image and a colour " "palette of your choice." @@ -5733,28 +6046,32 @@ msgstr "" #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 msgid "Couldn't update your design." msgstr "" #: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 msgid "Unable to save your design settings!" msgstr "" #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 msgid "Design preferences saved." msgstr "" -#: actions/groupmembers.php:438 +#: actions/groupmembers.php:438 actions/groupmembers.php:441 msgid "Make user an admin of the group" msgstr "" -#: actions/groupmembers.php:470 +#: actions/groupmembers.php:470 actions/groupmembers.php:473 msgid "Make Admin" msgstr "" -#: actions/groupmembers.php:470 +#: actions/groupmembers.php:470 actions/groupmembers.php:473 msgid "Make this user an admin" msgstr "" @@ -5789,7 +6106,8 @@ msgstr "" msgid "Invites have been disabled." msgstr "" -#: actions/joingroup.php:100 +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 msgid "You have been blocked from that group by the admin." msgstr "" @@ -5812,50 +6130,51 @@ msgstr "" msgid "Can't make %s an admin for group %s" msgstr "" -#: actions/newmessage.php:178 +#: actions/newmessage.php:178 actions/newmessage.php:181 msgid "Message sent" msgstr "" #: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " "current configuration." msgstr "" -#: actions/newnotice.php:128 scripts/maildaemon.php:185 +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 #, php-format msgid " Try using another %s format." msgstr "" -#: actions/newnotice.php:133 scripts/maildaemon.php:190 +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 #, php-format msgid "%s is not a supported filetype on this server." msgstr "" -#: actions/newnotice.php:205 +#: actions/newnotice.php:205 lib/mediafile.php:142 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: actions/newnotice.php:208 +#: actions/newnotice.php:208 lib/mediafile.php:147 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: actions/newnotice.php:211 +#: actions/newnotice.php:211 lib/mediafile.php:152 msgid "The uploaded file was only partially uploaded." msgstr "" -#: actions/newnotice.php:214 +#: actions/newnotice.php:214 lib/mediafile.php:159 msgid "Missing a temporary folder." msgstr "" -#: actions/newnotice.php:217 +#: actions/newnotice.php:217 lib/mediafile.php:162 msgid "Failed to write file to disk." msgstr "" -#: actions/newnotice.php:220 +#: actions/newnotice.php:220 lib/mediafile.php:165 msgid "File upload stopped by extension." msgstr "" @@ -5871,12 +6190,14 @@ msgstr "" msgid "Somehow lost the login in saveFile" msgstr "" -#: actions/newnotice.php:309 scripts/maildaemon.php:127 +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 msgid "File could not be moved to destination directory." msgstr "" #: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 msgid "There was a database error while saving your file. Please try again." msgstr "" @@ -5901,19 +6222,19 @@ msgid "" "account. Manage your associated OpenIDs from here." msgstr "" -#: actions/othersettings.php:110 +#: actions/othersettings.php:110 actions/othersettings.php:117 msgid "Shorten URLs with" msgstr "" -#: actions/othersettings.php:115 +#: actions/othersettings.php:115 actions/othersettings.php:122 msgid "View profile designs" msgstr "" -#: actions/othersettings.php:116 +#: actions/othersettings.php:116 actions/othersettings.php:123 msgid "Show or hide profile designs." msgstr "" -#: actions/public.php:82 +#: actions/public.php:82 actions/public.php:83 #, php-format msgid "Beyond the page limit (%s)" msgstr "" @@ -5935,7 +6256,7 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -#: actions/public.php:245 +#: actions/public.php:245 actions/public.php:238 #, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -5977,25 +6298,25 @@ msgstr "" msgid "Sorry, invalid invitation code." msgstr "" -#: actions/remotesubscribe.php:100 +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 msgid "Subscribe to a remote user" msgstr "" -#: actions/replies.php:179 +#: actions/replies.php:179 actions/replies.php:198 #, php-format msgid "" "This is the timeline showing replies to %s but %s hasn't received a notice " "to his attention yet." msgstr "" -#: actions/replies.php:184 +#: actions/replies.php:184 actions/replies.php:203 #, php-format msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -#: actions/replies.php:186 +#: actions/replies.php:186 actions/replies.php:205 #, php-format msgid "" "You can try to [nudge %s](../%s) or [post something to his or her attention]" @@ -6007,13 +6328,13 @@ msgstr "" msgid "%s's favorite notices, page %d" msgstr "" -#: actions/showfavorites.php:170 +#: actions/showfavorites.php:170 actions/showfavorites.php:205 msgid "" "You haven't chosen any favorite notices yet. Click the fave button on " "notices you like to bookmark them for later or shed a spotlight on them." msgstr "" -#: actions/showfavorites.php:172 +#: actions/showfavorites.php:172 actions/showfavorites.php:207 #, php-format msgid "" "%s hasn't added any notices to his favorites yet. Post something interesting " @@ -6028,30 +6349,31 @@ msgid "" "would add to thier favorites :)" msgstr "" -#: actions/showfavorites.php:226 +#: actions/showfavorites.php:226 actions/showfavorites.php:242 msgid "This is a way to share what you like." msgstr "" #: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 msgid "Aliases" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:328 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:330 actions/tag.php:84 +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:337 +#: actions/showgroup.php:337 actions/showgroup.php:340 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:446 +#: actions/showgroup.php:446 actions/showgroup.php:454 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -6060,7 +6382,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:474 +#: actions/showgroup.php:474 actions/showgroup.php:482 msgid "Admins" msgstr "" @@ -6078,25 +6400,25 @@ msgstr "" msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "" -#: actions/showstream.php:350 +#: actions/showstream.php:350 actions/showstream.php:444 #, php-format msgid "This is the timeline for %s but %s hasn't posted anything yet." msgstr "" -#: actions/showstream.php:355 +#: actions/showstream.php:355 actions/showstream.php:449 msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -#: actions/showstream.php:357 +#: actions/showstream.php:357 actions/showstream.php:451 #, php-format msgid "" "You can try to nudge %s or [post something to his or her attention](%%%%" "action.newnotice%%%%?status_textarea=%s)." msgstr "" -#: actions/showstream.php:393 +#: actions/showstream.php:393 actions/showstream.php:492 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -6122,7 +6444,7 @@ msgid "" "%) and be the first?" msgstr "" -#: actions/subscriptions.php:115 +#: actions/subscriptions.php:115 actions/subscriptions.php:121 #, php-format msgid "" "You're not listening to anyone's notices right now, try subscribing to " @@ -6133,29 +6455,31 @@ msgid "" msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 #, php-format msgid "%s is not listening to anyone." msgstr "" -#: actions/tag.php:77 +#: actions/tag.php:77 actions/tag.php:86 #, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "" -#: actions/tag.php:91 +#: actions/tag.php:91 actions/tag.php:98 #, php-format msgid "Notice feed for tag %s (Atom)" msgstr "" -#: actions/twitapifavorites.php:125 +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 msgid "This status is already a favorite!" msgstr "" -#: actions/twitapifavorites.php:179 +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 msgid "That status is not a favorite!" msgstr "" #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 msgid "Could not determine source user." msgstr "" @@ -6163,16 +6487,17 @@ msgstr "" msgid "Target user not specified." msgstr "" -#: actions/twitapifriendships.php:221 +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 msgid "Could not find target user." msgstr "" -#: actions/twitapistatuses.php:322 +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 #, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "" -#: actions/twitapitags.php:74 +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 #, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "" @@ -6181,11 +6506,11 @@ msgstr "" msgid "Import my Friends Timeline." msgstr "" -#: actions/userauthorization.php:158 +#: actions/userauthorization.php:158 actions/userauthorization.php:188 msgid "License" msgstr "" -#: actions/userauthorization.php:179 +#: actions/userauthorization.php:179 actions/userauthorization.php:212 msgid "Reject this subscription" msgstr "" @@ -6213,41 +6538,42 @@ msgstr "" msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" -#: classes/File.php:127 +#: classes/File.php:127 classes/File.php:137 #, php-format msgid "" "No file may be larger than %d bytes and the file you sent was %d bytes. Try " "to upload a smaller version." msgstr "" -#: classes/File.php:137 +#: classes/File.php:137 classes/File.php:147 #, php-format msgid "A file this large would exceed your user quota of %d bytes." msgstr "" -#: classes/File.php:145 +#: classes/File.php:145 classes/File.php:154 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Notice.php:139 +#: classes/Notice.php:139 classes/Notice.php:179 msgid "Problem saving notice. Too long." msgstr "" -#: classes/User.php:319 +#: classes/User.php:319 classes/User.php:327 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" #: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 msgid "Design" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 msgid "Design your profile" msgstr "" -#: lib/action.php:712 +#: lib/action.php:712 lib/action.php:727 msgid "TOS" msgstr "" @@ -6336,15 +6662,15 @@ msgstr "" msgid "Save design" msgstr "" -#: lib/designsettings.php:378 +#: lib/designsettings.php:378 lib/designsettings.php:369 msgid "Bad default color settings: " msgstr "" -#: lib/designsettings.php:474 +#: lib/designsettings.php:474 lib/designsettings.php:465 msgid "Design defaults restored." msgstr "" -#: lib/groupeditform.php:181 +#: lib/groupeditform.php:181 lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" @@ -6432,15 +6758,15 @@ msgid "" "users in conversation. People can send you messages for your eyes only." msgstr "" -#: lib/noticeform.php:154 +#: lib/noticeform.php:154 lib/noticeform.php:180 msgid "Attach" msgstr "" -#: lib/noticeform.php:158 +#: lib/noticeform.php:158 lib/noticeform.php:184 msgid "Attach a file" msgstr "" -#: lib/noticelist.php:436 +#: lib/noticelist.php:436 lib/noticelist.php:478 msgid "in context" msgstr "" @@ -6448,7 +6774,7 @@ msgstr "" msgid "User ID" msgstr "" -#: lib/searchaction.php:156 +#: lib/searchaction.php:156 lib/searchaction.php:162 msgid "Search help" msgstr "" @@ -6471,3 +6797,495 @@ msgstr "" #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +msgid "No such page" +msgstr "" + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + +#: actions/apifriendshipsdestroy.php:109 +msgid "Could not unfollow user: User not found." +msgstr "" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "" + +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + +#: actions/apigroupjoin.php:138 +#, php-format +msgid "Could not join user %s to group %s." +msgstr "" + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "" + +#: actions/apigroupleave.php:124 +#, php-format +msgid "Could not remove user %s to group %s." +msgstr "" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, php-format +msgid "description is too long (max %d chars)." +msgstr "" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +msgid "No such file." +msgstr "" + +#: actions/getfile.php:79 +msgid "Cannot read file." +msgstr "" + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "" + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "" + +#: actions/profilesettings.php:125 actions/register.php:457 +msgid "Describe yourself and your interests" +msgstr "" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, php-format +msgid "Bio is too long (max %d chars)." +msgstr "" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/showfavorites.php:170 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "" + +#: actions/showfavorites.php:177 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "" + +#: actions/showfavorites.php:184 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" + +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "" + +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: lib/action.php:435 +msgid "Connect to services" +msgstr "" + +#: lib/action.php:785 +msgid "Site content license" +msgstr "" + +#: lib/command.php:88 +#, php-format +msgid "Could not find a user with nickname %s" +msgstr "" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" +msgstr "" + +#: lib/command.php:441 +msgid "Error saving notice." +msgstr "" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +msgid "No configuration file found. " +msgstr "" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "" + +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "" + +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +msgid "Duplicate notice" +msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.mo b/locale/sv/LC_MESSAGES/statusnet.mo index 2cb0397ec4fb500a7004c055fab6679afac051e8..544bd1e8e6b2c61fe4202fdcab90e2588210ac0a 100644 GIT binary patch delta 24172 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 delta 17262 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 JlU8>1{|5(CzUTk| diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index d0a5001da5..bb667acd64 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-03-17 10:54+0000\n" "Last-Translator: Per-Olov Jernberg \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Sök i strömmen efter \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,17 +37,19 @@ msgid " from " msgstr "från" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Uppdateringar med svar till %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s har bjudit in dig till %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -102,6 +104,7 @@ msgstr "" "Om inte, då kan du ignorera detta meddelande. Tack för att du tog dig\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." @@ -122,25 +125,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s uppdateringar med svar till uppdatering från %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s's status den %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s(%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Publik Ström" @@ -150,34 +156,48 @@ msgstr "%s Publik Ström" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s med vänner" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s publika tidslinje" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s status" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tidslinje" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s uppdateringar ifrån allihop!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -185,7 +205,8 @@ msgstr "" "(Du kommer få ett meddelande med email inom kort med instruktioner hur du " "bekräftar din emailadress)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -194,7 +215,8 @@ msgstr "" "**%%site.name%%** är en mikroblogg service för dig ifrån [%%site.broughtby%%]" "(%%site.broughtbyurl%%)" -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** är en mikroblogg service." @@ -206,32 +228,36 @@ msgstr ". Användarna är tydligt markerade med sitt fulla namn eller smeknamn." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 små bokstäver eller nummer, inga punkter eller mellanslag. Måste fyllas " "i." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "Minst 6 tecken" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "Minst 6 tecken och glöm inte bort det!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 eller fler tecken. Måste fyllas i." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -241,6 +267,7 @@ msgstr "" "godkänna att %s får skicka meddelanden till dig." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -276,7 +303,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API-metoden hittades inte!" @@ -299,16 +353,23 @@ msgstr "API-metoden hittades inte!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API-metoden är under uppbyggnad." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Om" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Acceptera" @@ -319,6 +380,9 @@ msgstr "Acceptera" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Lägg till" @@ -336,27 +400,29 @@ msgstr "Lägg till eller ta bort OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adress" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Adresser till vänner att bjuda in (en rad per adress)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Alla prenumerationer" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%s alla uppdateringar" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Alla uppdateringar som matchar söksträngen \"%s\"" @@ -366,30 +432,37 @@ msgstr "Alla uppdateringar som matchar söksträngen \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Redan inloggad." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Det finns redan en prenumeration!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Är du säker på att du vill tabort detta inlägg?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Tillåt prenumeration." #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Logga in automatiskt i framtiden; Ej för publika datorer!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -399,15 +472,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Användarbild" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Användarbilden uppdaterad." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -417,6 +494,7 @@ msgstr "" "vidare instruktioner. (La du till %s i din vännerlista?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -425,7 +503,7 @@ msgstr "" "efter meddelande om vidare instruktioner." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Väntar bekräftelse på detta telefonnummer. " @@ -437,6 +515,8 @@ msgstr "Tidigare »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Biografi" @@ -444,16 +524,18 @@ msgstr "Biografi" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Biografin är för lång (max 140 tecken)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Kan inte ta bort detta inlägg." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Kan inte läsa användarbild URL '%s'" @@ -461,6 +543,8 @@ msgstr "Kan inte läsa användarbild URL '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Kan inte spara det nya lösenordet." @@ -468,31 +552,34 @@ msgstr "Kan inte spara det nya lösenordet." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Avbryt" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Kan inte initiera OpenID objekt." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Kan inte normalisera det Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Kan inte normalisera den emailadressen" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Ändra" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Ändra email hantering" @@ -502,11 +589,12 @@ msgid "Change password" msgstr "Byt lösenord" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Ändra ditt lösenord" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Ändra dina profilinställningar" @@ -516,6 +604,9 @@ msgstr "Ändra dina profilinställningar" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Bekräfta" @@ -528,12 +619,14 @@ msgstr "Bekräfta adress" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Verifikation avbruten" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Bekräftelsekod" @@ -542,7 +635,8 @@ msgstr "Bekräftelsekod" msgid "Confirmation code not found." msgstr "Bekräftelsekoden kunde inte hittas." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -576,20 +670,24 @@ msgstr "" "service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Anslut" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Anslut till existerande konto" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Kontakta" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Kan inte skapa OpenID formulär: %s" @@ -597,35 +695,39 @@ msgstr "Kan inte skapa OpenID formulär: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Kunde inte följa användaren: %s finns redan i din lista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Kunde inte skicka vidare till servern: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Kunde inte spara informationen om användarbild" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Kunde inte spara informationen om den nya profilen" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Kunde inte prenumerera på annat åt dig." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Kunde inte prenumerera." @@ -645,15 +747,17 @@ msgstr "Kunde inte konvertera förfrågan tokens till Access tokens." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Kunde inte radera epost bekräftelsen." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Kunde inte radera prenumerationen. " #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Kunde inte få fram status." @@ -666,29 +770,38 @@ msgstr "Kunde inte få en förfrågan token." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Kunde inte lägga till bekräftelsekoden." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Kunde inte lägga till ny prenumeration." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Kunde inte spara profil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Kunde inte uppdatera användaren för automatisk prenumeration." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Kunde inte uppdatera användarens inställningar." @@ -704,42 +817,48 @@ msgstr "Kunde inte uppdatera användarens inställningar." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Kunde inte uppdatera användare." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Skapa" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Skapa en ny användare med det här smeknamnet" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Skapa ett nytt konto" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Skapar ett nytt konto för OpenID som redan har en användare" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Aktuell bekräftad Jabber/Gtalk-adress." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Nuvarande bekäftat SMS telefonnummer" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Nuvarande bekräftade emailadress." @@ -748,23 +867,27 @@ msgid "Currently" msgstr "Just nu" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "DB error vid infog av hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Databasfel för svar: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Tabort inlägg" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" @@ -772,11 +895,13 @@ msgstr "Berätta om dig själv och dina intressen inom 140 tecken" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Epost" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Emailadress" @@ -786,39 +911,43 @@ msgid "Email Settings" msgstr "Email inställningar" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Epostadressen finns redan." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Bekräfta epostadress" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Emailadress såsom \"användare@exempel.se\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Emailadresser" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Skriv in ett smeknamn eller en epostadress." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Fyll i koden du mottog i din telefon." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Felaktig bekräftelse av token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Lyckades inte ansluta användaren till OpenID." @@ -829,39 +958,46 @@ msgstr "Lyckades inte ansluta användaren." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Fel uppstog när användarbild skulle läggas till" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Fel uppstog när nya profilen skulle läggas till" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Fel uppstog när fjärrprofilen skulle läggas till" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Fel uppstog när adressen skulle bekräftas." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Fel uppstog när fjärrprofil skulle sparas" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Fel uppstog när profilen skulle sparas." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Fel uppstog när användaren skulle sparas." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Fel uppstog när användare skulle sparas." @@ -870,6 +1006,9 @@ msgstr "Fel uppstog när användare skulle sparas." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Fel uppstog i användarens inställning" @@ -880,6 +1019,7 @@ msgstr "Fel uppstog vid uppdatering av profilen" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Fel uppstog under uppdatering av fjärranvändare" @@ -889,33 +1029,36 @@ msgid "Error with confirmation code." msgstr "Fel uppstog med bekräftelsekoden." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Nuvarande smeknamn" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Frågor & svar" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Uppdatering av profilbild misslyckades." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Flöden för $s vänner" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Flöde för svar till %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed för taggar %s" @@ -930,7 +1073,7 @@ msgstr "Sök innehåll i inlägg" msgid "Find people on this site" msgstr "Sök personer på denna sida" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -943,6 +1086,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Ditt fulla namn." @@ -951,23 +1099,33 @@ msgstr "Ditt fulla namn." #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Ditt namn är för långt (max 255 tecken)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Hjälp" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Hem" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Hemsida" @@ -975,21 +1133,27 @@ msgstr "Hemsida" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Hemsidan har ingen giltig URL" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Jag vill posta inlägg via min email." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM adress" @@ -999,7 +1163,7 @@ msgid "IM Settings" msgstr "IM inställningar" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1007,7 +1171,7 @@ msgstr "" "Om du redan har ett konto, logga in med ditt användarnamn och lösenord för " "att koppla det till ditt OpenID" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1015,7 +1179,7 @@ msgstr "" "Om du vill lägga till OpenID till ditt konto, fyll i fältet nedan och tryck " "på \"Add\"" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1026,25 +1190,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Inkommande email" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Inkommande emailadress borttagen." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Felaktigt, gammalt lösenord" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Felaktigt användarnamn eller lösenord." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1053,30 +1223,31 @@ msgstr "" "postadress " #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Ogiltig användarbild URL '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Ogiltig emailadress: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ogiltig hemsideadress '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Ogiltig licens URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Ogiltig innehåll i inlägget " @@ -1091,13 +1262,13 @@ msgid "Invalid notice url" msgstr "Ogiltig inlägg url" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ogiltig profil URL '%s' " #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Nåt är fel med profil URL (Format fel)" @@ -1115,44 +1286,52 @@ msgstr "Felaktig storlek" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Felaktigt användarnamn eller lösenord." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Inbjudan(ar) skickad" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Inbjudan(ar) är skickade till följande personer:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Bjud in" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Bjud in nya användare" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Det drivs med [StatusNet](http://status.net/) mikroblogging software, version %" -"s, tillgängligt under [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +"Det drivs med [StatusNet](http://status.net/) mikroblogging software, " +"version %s, tillgängligt under [GNU Affero General Public License](http://" +"www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID används redan utav en annan användare." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1162,12 +1341,14 @@ msgstr "" "att lägga till %s i din vännerlista i IM klienten eller GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Språk" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Språket är för långt(max 50 tecken)." @@ -1176,7 +1357,15 @@ msgstr "Språket är för långt(max 50 tecken)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Plats" @@ -1185,7 +1374,12 @@ msgstr "Plats" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Platse är för lång (max 255 tecken)." @@ -1194,18 +1388,22 @@ msgstr "Platse är för lång (max 255 tecken)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Logga in" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Logga in med ett [OpenID](%%doc.openid%%) konto." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1216,22 +1414,26 @@ msgstr "" "[Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%" "action.openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Logga ut" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Långt namn, förslagsvis ditt \"riktiga\" namn" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Glömt bort lösenord?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Skapa en ny emailadress för att posta till, avaktiverar den gamla" @@ -1242,16 +1444,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Ställ in hur du tar emot email ifrån %%site.name%%" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Medlem sedan" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Mikroblogg av %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1264,42 +1468,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Min text och filer finns tillgängliga under" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Ny" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Ny emailadress för att skicka till %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Ny inkommande emailadress inlagd." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nytt användarnamn" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nytt inlägg" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nytt lösenord" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nya lösenordet har blivit sparat. Du är nu även inloggad." @@ -1309,7 +1521,13 @@ msgstr "Nya lösenordet har blivit sparat. Du är nu även inloggad." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Smeknamn" @@ -1318,7 +1536,12 @@ msgstr "Smeknamn" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Användarnamnet används redan, försök med ett annat." @@ -1327,48 +1550,59 @@ msgstr "Användarnamnet används redan, försök med ett annat." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Inget giltigt smeknamn." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Smeknamnet på användaren du vill följa" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Smeknamn eller epost" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Nej" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Inget Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Ingen rättighet förfrågan!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Ingen operatör vald." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Ingen kod är ifylld" @@ -1380,11 +1614,15 @@ msgstr "Ingen bekräftelsekod." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Inget innehåll!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Ingen emailadress." @@ -1393,7 +1631,9 @@ msgid "No id." msgstr "Inget id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Ingen inkommande emailadress." @@ -1404,6 +1644,7 @@ msgstr "Inget smeknamn lämnades ut av fjärrservern." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Inget användarnamn" @@ -1411,12 +1652,14 @@ msgstr "Inget användarnamn" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Ingen väntande bekräftelse att avbryta." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Inget telefonnummer." @@ -1426,7 +1669,8 @@ msgid "No profile URL returned by server." msgstr "Ingen profil URL lämnades ut av servern." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Ingen registrerad epost adress för den användaren." @@ -1438,7 +1682,7 @@ msgstr "Ingen begäran funnen!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Inget resultat" @@ -1449,12 +1693,16 @@ msgstr "Ingen storlek" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Ingen status hittad med det ID" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Ingen status med det ID hittades." @@ -1464,13 +1712,15 @@ msgid "No such OpenID." msgstr "Det existerar inget sådant OpenID" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Inget sådant dokument." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Inget sådant inlägg." @@ -1508,12 +1758,22 @@ msgstr "Ingen sådan prenumeration" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Ingen sådan användare" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Ingen användare med den emailadressen eller användarnamn." @@ -1527,32 +1787,38 @@ msgid "Not a recovery code." msgstr "Det är ingen kod för återställning." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Inte registrerad användare." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Ingen support för det formatet." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Det är inget giltigt Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Det är inget giltigt OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Ingen giltig emailadress" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Det är ingen giltig epost adress." @@ -1560,6 +1826,11 @@ msgstr "Det är ingen giltig epost adress." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Det är inget giltigt användarnamn." @@ -1579,7 +1850,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Det är ingen giltig profil URL (ingen YADIS angiven)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Det verkar inte vara en bildfil, annars korrupt." @@ -1590,11 +1862,13 @@ msgstr "Inte tillstånd ännu." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Väntade mig inte detta svar!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Hittades inte" @@ -1610,11 +1884,15 @@ msgstr "Hittades inte" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Inte inloggad." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Ingen prenumerant!" @@ -1631,39 +1909,44 @@ msgid "Notice feed for %s" msgstr "Inlägg flöde för %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Inlägget har ingen profil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Inlägg" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Inlägg taggade med %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Gammalt lösenord" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID konto setup" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID skicka automatiskt" @@ -1671,29 +1954,34 @@ msgstr "OpenID skicka automatiskt" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID inloggning" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID bekäftelse ångrad." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID bekräftelse misslyckad: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID misslyckades: %s" @@ -1709,11 +1997,12 @@ msgid "OpenID settings" msgstr "OpenID inställningar" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Om du vill, skriv ett personligt meddelande med inbjudan." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Bitvis uppladdad." @@ -1723,34 +2012,46 @@ msgstr "Bitvis uppladdad." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Lösenord" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Lösenord och bekräftelse matchar inte." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Lösenordet måste vara 6 tecken eller fler." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Förfrågan om återställning av lösenord" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Lösenord är sparat." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Lösenorden matchar inte." @@ -1770,14 +2071,17 @@ msgid "People search" msgstr "Sökning personer" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personlig" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Personligt meddelande" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, inga punkter eller mellanslag, med landskod" @@ -1792,7 +2096,7 @@ msgstr "" "prenumerera på någons inlägg, klicka på \"Cancel\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Posta ett inlägg när min Jabber/GTalk status ändras." @@ -1801,7 +2105,9 @@ msgstr "Posta ett inlägg när min Jabber/GTalk status ändras." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Inställningar" @@ -1810,42 +2116,52 @@ msgstr "Inställningar" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Inställningar sparade." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Språkval" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Sekretesspolicy" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Det var ett problem när inlägget sparades." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profil URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profil inställningar" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Okänd profil" @@ -1854,17 +2170,19 @@ msgid "Public Stream Feed" msgstr "Publik ström" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Publik tidslinje" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicera ett MicroID för min Jabber/GTalk adress." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publicera ett MicroID för min emailadress." @@ -1874,12 +2192,14 @@ msgid "Recent Tags" msgstr "Tidigare taggar" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Återställ" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Återställ lösenord" @@ -1892,37 +2212,45 @@ msgstr "Kod för återställning av okänd användare." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrera" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Registrering är inte möjlig." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registreringen är genomförd" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Avvisa" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Kom ihåg mig" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Fjärrprofil utan motsvarande profil" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Fjärrprenumerera" @@ -1936,6 +2264,9 @@ msgstr "Fjärrprenumerera" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Ta bort" @@ -1944,7 +2275,7 @@ msgstr "Ta bort" msgid "Remove OpenID" msgstr "Ta bort OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1953,34 +2284,41 @@ msgstr "" "bort den, lägg till en annan OpenID först." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Svar" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Svarat på %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Återställ" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Återställ lösenord" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS Telefonnummer" @@ -1989,17 +2327,18 @@ msgstr "SMS Telefonnummer" msgid "SMS Settings" msgstr "SMS Inställningar" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS Bekräftelse" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Samma som lösenordet ovan" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Samma som lösenordet ovan. Måste fyllas i." @@ -2012,12 +2351,21 @@ msgstr "Samma som lösenordet ovan. Måste fyllas i." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Spara" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Sök" @@ -2027,7 +2375,7 @@ msgid "Search Stream Feed" msgstr "Sök strömflöde" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2036,7 +2384,7 @@ msgstr "" "Sök efter innehåll i inlägg på %%site.name%%. Skilj söktermerna åt med " "mellanslag; dom måste vara minst tre tecken långa." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2046,33 +2394,38 @@ msgstr "" "Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Välj en operatör" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Skicka" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Skicka email till denna adress för att posta ett nya inlägg." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Skicka meddelande till mig via email vid nya prenumerationer." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Skicka inlägg till mig via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2081,17 +2434,20 @@ msgstr "" "debitera mig." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Skicka svar till mig via Jabber/GTalk från personer som inte jag " "prenumererar på." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Inställningar" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Inställningar sparade." @@ -2111,27 +2467,32 @@ msgid "Something weird happened." msgstr "Någonting konstigt inträffade." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Ledsen, men inga inkommande email är tillåtna." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Ledsen, men det är inte din inkommande emailadress." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Källa" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Statistik" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Sparade OpenID kunde inte hittas." @@ -2139,24 +2500,28 @@ msgstr "Sparade OpenID kunde inte hittas." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Prenumerera" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Prenumerant" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Prenumeration accepterad" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Prenumeration avvisad" @@ -2164,28 +2529,35 @@ msgstr "Prenumeration avvisad" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Prenumerationer" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Systemfel när filen laddades upp." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Taggar" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Text" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Text sökning" @@ -2205,6 +2577,7 @@ msgid "That confirmation code is not for you!" msgstr "Den bekräftelsekoden är inte för dig!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Den emailadressen tillhör redan en annan användare." @@ -2214,63 +2587,73 @@ msgid "That file is too big." msgstr "Filen är för stor." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Det är redan din Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Det är redan din emailadress." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Det är redan ditt telefonnummer." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Det är inte ditt Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Det är inte din emailadress." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Det är inte ditt telefonnummer." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Det är fel IM adress." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Det är fel nummer i bekräftelsen" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Det numret tillhör en annan användare." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "För långt. Maximalt 140 tecken" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Det är för långt. Max antal tecken är 255." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Adressen \"%s\" har blivit bekräftad för ditt konto." @@ -2279,11 +2662,14 @@ msgstr "Adressen \"%s\" har blivit bekräftad för ditt konto." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Adressen är borttagen." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2293,7 +2679,8 @@ msgstr "" "med sidans instruktioner hur du bekräftar en prenumeration. Din " "prenumerering token är:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2303,35 +2690,40 @@ msgstr "" "sidans instruktioner hur du avvisar en prenumeration." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Dessa personer är dom som lyssnar på %s inlägg." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Dessa personer är dom som lyssnar på dina inlägg." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Detta är personer och inlägg som %s lyssnar på." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Detta är personer och inlägg som du lyssnar på." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Dom personerna är redan registrerade användare och du blev nu automatiskt " "prenumerant till dom:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Denna bekräftelsekod är för gammal. Du får starta om på nytt igen." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2340,7 +2732,7 @@ msgstr "" "på skicka för att gå dit där du skapade ditt OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2355,6 +2747,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Denna metod kräver antingen skicka eller tabort." @@ -2363,25 +2758,37 @@ msgstr "Denna metod kräver antingen skicka eller tabort." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Denna metod kräver skicka." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Tidszon" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Du har inte valt tidszon" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2394,18 +2801,21 @@ msgstr "" "nedan." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Två användarid eller namn måste läggas till." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL till din hemsida, blog eller profil på en annan sida." #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL till din profil på en annan kompatibel mikroblogg" @@ -2417,15 +2827,22 @@ msgstr "URL till din profil på en annan kompatibel mikroblogg" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Oväntat utskick av formuläret." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Oväntad rensning av lösenord." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Okänd funktion" @@ -2456,38 +2873,47 @@ msgstr "Lämnar pren." #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "OMB versionen stöds inte" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Bildfilens format stödjs inte." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Uppdateringar via SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Uppdateringar via instant messenger (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Uppdateringar från %1$s och vänner på %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Ladda upp" @@ -2508,6 +2934,7 @@ msgid "Upload a new profile image" msgstr "Ladda upp en ny profilbild" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2515,7 +2942,9 @@ msgstr "" "sida." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Används endast för uppdateringar, annonsering och återställning av lösenord" @@ -2540,11 +2969,16 @@ msgstr "Användaren som avlyssnas existerar inte." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Användaren har ingen profil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Användarens smeknamn" @@ -2553,29 +2987,33 @@ msgid "User not found." msgstr "Användare hittades inte." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Vilken tidszon befinner du dig normalt?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Vad är på gång, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Var du håller till, såsom \"Stad, Län, Land\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Fel filtyp för bild '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Fel bildstorlek för '%s'" @@ -2583,7 +3021,9 @@ msgstr "Fel bildstorlek för '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Ja" @@ -2606,11 +3046,12 @@ msgid "You are already logged in!" msgstr "Du är redan inloggad!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Du prenumererar redan på dessa användare:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Du är inte vän med den användaren." @@ -2628,7 +3069,7 @@ msgstr "Du kan skapa ett nytt konto och börja skriva inlägg." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan ta emot SMS meddelande via email från %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2637,6 +3078,7 @@ msgstr "" "\"Remove\"" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2645,7 +3087,8 @@ msgstr "" "Du kan skicka och ta emot inlägg genom Jabber/GTalk [instant messages](%%doc." "im%%). Konfigurera din adress och inställningar nedan. " -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2655,21 +3098,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Du kan använda lokala prenumerationer!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Du kan inte registrera dig om du inte godkänner licensvillkor." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Du skickade inte oss den profilen" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2691,16 +3136,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Du kan inte tabort nån annan användares status." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2708,20 +3156,21 @@ msgstr "" "du kommer bli meddelad när någon du bjudit in accepterar inbjudan och " "registrerar sig. Tack för att du hjälper oss växa!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Du är identifierad. Skriv ett nytt lösenord nedan." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Din OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Ditt användarnamn på denna server eller registrerad epost adress." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2730,47 +3179,57 @@ msgstr "" "[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. " "Ställ in ditt OpenID konto härifrån." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "ett par sekunder sedan" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "för %d dagar sedan" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "för %d timmar sedan" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "för %d minuter sedan" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "för %d månader sedan" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "för en dag sedan" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "för nån minut sedan" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "för en månad sedan" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "för ett år sedan" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "för en timma sedan" @@ -2792,12 +3251,14 @@ msgid "reply" msgstr "svar" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "samma som lösenordet ovan" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "okänd fil typ" @@ -2819,6 +3280,26 @@ msgstr "« Nyare" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Det var något problem med din session. Försök igen, tack." @@ -2827,6 +3308,7 @@ msgid "This notice is not a favorite!" msgstr "Det inlägget är ingen favorit!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Kunde inte tabort favoriten." @@ -2834,22 +3316,28 @@ msgstr "Kunde inte tabort favoriten." msgid "Favor" msgstr "Favorisera" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Skicka mig ett email när någon lägger till mitt inlägg som favorit." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Skicka mig ett email när någon sänder ett privat meddelande." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Detta inlägg är redan en favorit!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Kunde inte skapa favorit." @@ -2859,11 +3347,13 @@ msgstr "Avfavorisera" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s favoriter" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed över %s favoriter" @@ -2905,33 +3395,44 @@ msgid "Login with your username and password. " msgstr "Logga in med ditt användarnamn och lösenord." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Det är för långt. Max är 140 tecken. " #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Ingen mottagare tillagd." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Du kan inte skicka meddelande till den användaren." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Skicka inte meddelande till dig själv, viska lite tyst istället." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Ingen sådan användare" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nytt meddelande" @@ -2986,6 +3487,11 @@ msgstr "Du kan uppdatera din personliga profil här" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Användare utan matchande profil" @@ -3014,6 +3520,8 @@ msgid "New password successfully saved. " msgstr "Nya lösenordet är sparat." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Lösenordet måste vara minst 6 tecken." @@ -3035,12 +3543,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "För att prenumerera så kan du [login](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed för %s favoriter" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Kunde inte ta emot favoritinläggen." @@ -3048,7 +3559,7 @@ msgstr "Kunde inte ta emot favoritinläggen." msgid "No such message." msgstr "Inget sådant meddelande." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Endast den som skickat och mottagaren kan läsa detta meddelande." @@ -3072,52 +3583,71 @@ msgid "Mobile carrier for your phone. " msgstr "Mobiloperatören för din telefon." #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Direktmeddelande till %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Alla direktmeddelanden skickade till %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Direktmeddelanden du skickat" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Alla direktmeddelanden skickade ifrån %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Ingen meddelande text!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Mottagaren kunde inte hittas." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Kan inte skicka direktmeddelanden till användare som inte är dina vänner." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoriter från %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s uppdaterade favoriter av %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s la till ditt inlägg som favorit" @@ -3140,14 +3670,17 @@ msgstr "" "Twitter," #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter inställningar" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitter konto" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Verifierat Twitter konto." @@ -3156,6 +3689,7 @@ msgid "Twitter Username" msgstr "Twitter användarnamn" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Inga mellanslag tack." @@ -3164,18 +3698,22 @@ msgid "Twitter Password" msgstr "Twitter lösenord" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Skicka automatiskt mina inlägg till Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Skicka lokala \"@\" svar till Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Prenumerera på mina Twitter vänner här." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3184,6 +3722,7 @@ msgstr "" "underscore(_). 15 tecken max." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Kunde inte verifiera din Twitter!" @@ -3194,33 +3733,43 @@ msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Kunde inte spara dina Twitter inställningar!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Twitter inställningar sparade." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Det är inte ditt Twitter konto." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Kunde inte tabort Twitter användaren." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Twitterkontot borttaget." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Kunde inte spara Twitter inställningar." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3237,18 +3786,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3258,89 +3808,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Fullt namn: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Plats: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Hemsida: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Om: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3348,11 +3920,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3367,7 +3939,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3379,7 +3951,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3388,31 +3960,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3425,14 +4005,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s med vänner" @@ -3443,22 +4028,32 @@ msgid "You can upload your personal avatar." msgstr "Du kan uppdatera din personliga profil här" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Twitter inställningar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3476,38 +4071,47 @@ msgid "There was a problem with your session token. " msgstr "Det var något problem med din session. Försök igen, tack." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Inget sådant inlägg." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 #, fuzzy msgid "Unknown file type" msgstr "okänd fil typ" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 #, fuzzy msgid "No profile specified." msgstr "Ingen mottagare tillagd." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 #, fuzzy msgid "No profile with that ID." msgstr "Ingen status hittad med det ID" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Ingen sådan användare" @@ -3517,12 +4121,12 @@ msgstr "Ingen sådan användare" msgid "Are you sure you want to block this user? " msgstr "Är du säker på att du vill tabort detta inlägg?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Du prenumererar redan på dessa användare:" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3543,42 +4147,60 @@ msgstr "" msgid "Add to favorites" msgstr "Feed för %s favoriter" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 #, fuzzy msgid "You must be logged in to create a group." msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Inget användarnamn" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Ingen sådan användare" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 #, fuzzy msgid "You must be an admin to edit the group" msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3589,16 +4211,17 @@ msgstr "" "Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Biografin är för lång (max 140 tecken)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Kunde inte uppdatera användare." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Inställningar sparade." @@ -3618,7 +4241,8 @@ msgstr "Ny emailadress för att skicka till %s" msgid "Send me email when someone " msgstr "Skicka mig ett email när någon sänder ett privat meddelande." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3634,7 +4258,7 @@ msgstr "" "En bekräftelsekod har skickats till den IM-adress som du angav. Du måste " "godkänna att %s får skicka meddelanden till dig." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3648,55 +4272,70 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Inget innehåll!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Nyare" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Tidigare »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" msgstr "Inbjudan(ar) är skickade till följande personer:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, fuzzy, php-format msgid "You have been invited to %s" msgstr "Du är identifierad. Skriv in" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Flöden för $s vänner" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3745,13 +4384,15 @@ msgstr "" msgid "Sync preferences" msgstr "Inställningar" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 #, fuzzy msgid "Disfavor favorite" msgstr "Avfavorisera" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Inget sådant inlägg." @@ -3767,7 +4408,8 @@ msgid "The most popular notices on the site right now." msgstr "Visar dom populäraste taggarna ifrån den senaste veckan." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3781,15 +4423,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3797,12 +4441,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Användarbilden uppdaterad." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Uppdatering av profilbild misslyckades." @@ -3822,7 +4468,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3837,6 +4484,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Skapa ett nytt konto" @@ -3848,7 +4496,7 @@ msgid "" msgstr "" "Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Sökning personer" @@ -3873,22 +4521,22 @@ msgstr "Skicka inlägg till mig via Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Ingen bekräftelsekod." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Du prenumererar redan på dessa användare:" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, fuzzy, php-format msgid "%s joined group %s" msgstr "%s / Favoriter från %s" @@ -3897,17 +4545,20 @@ msgstr "%s / Favoriter från %s" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Inget sådant meddelande." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Du skickade inte oss den profilen" @@ -3917,22 +4568,26 @@ msgstr "Du skickade inte oss den profilen" msgid "You may not leave a group while you are its administrator." msgstr "Du kan inte tabort nån annan användares status." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "Kunde inte uppdatera användarens inställningar." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3944,16 +4599,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Kunde inte skapa favorit." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Kunde inte skapa prenumeration." @@ -3968,12 +4625,15 @@ msgstr "Filen är för stor." msgid "Don't send a message to yourself; " msgstr "Du kan inte skicka meddelande till den användaren." -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Inlägg" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3990,7 +4650,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID inloggning" @@ -4018,11 +4678,13 @@ msgstr "" msgid "Service" msgstr "Sök" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Språket är för långt(max 50 tecken)." @@ -4032,17 +4694,18 @@ msgstr "Språket är för långt(max 50 tecken)." msgid "Change your password." msgstr "Ändra ditt lösenord" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Lösenord är sparat." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Ingen giltig emailadress" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -4052,12 +4715,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Okänd profil" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4070,21 +4734,26 @@ msgstr "" "mänsklig användare) " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Ogiltig hemsideadress '%s'" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Kunde inte spara profil." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Publik tidslinje" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 #, fuzzy msgid "Could not retrieve public stream." msgstr "Kunde inte ta emot favoritinläggen." @@ -4106,11 +4775,13 @@ msgstr "Publik ström" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4171,7 +4842,8 @@ msgstr "(Du kommer inom kort få ett email med" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Svarat på %s" @@ -4181,53 +4853,74 @@ msgstr "Svarat på %s" msgid "%s favorite notices, page %d" msgstr "%s favoriter" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Inget sådant inlägg." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Inlägg" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Inlägg flöde för %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Medlem sedan" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4243,7 +4936,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Endast den som skickat och mottagaren kan läsa detta meddelande." -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, fuzzy, php-format msgid "%s, page %d" msgstr "Inbox för %s - sida %d" @@ -4254,35 +4947,42 @@ msgid "'s profile" msgstr "Profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Användaren har ingen profil." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "Okänd funktion" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 #, fuzzy msgid "Send a direct message to this user" msgstr "Du kan inte skicka meddelande till den användaren." -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "Nytt meddelande" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Prenumerant" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4308,7 +5008,7 @@ msgstr "Skicka inlägg till mig via Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Väntar bekräftelse på detta telefonnummer. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Välj en operatör" @@ -4373,17 +5073,18 @@ msgstr "Detta är personer och inlägg som %s lyssnar på." msgid "These are the people whose " msgstr "Dessa personer är dom som lyssnar på %s inlägg." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Inget Jabber ID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Inlägg taggade med %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4408,7 +5109,7 @@ msgstr "Taggar" msgid "Tag user" msgstr "Taggar" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4419,17 +5120,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Det var något problem med din session. Försök igen, tack." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Kunde inte spara informationen om användarbild" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4438,20 +5139,23 @@ msgstr "" msgid "No such tag." msgstr "Inget sådant meddelande." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Inlägg taggade med %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Hittades inte" @@ -4463,17 +5167,18 @@ msgstr "" "Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " "Twitter," -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy msgid "Twitter user name" msgstr "Twitter användarnamn" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Twitter lösenord" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 #, fuzzy msgid "Twitter Friends" msgstr "Twitter inställningar" @@ -4487,158 +5192,167 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Fel uppstog när användaren skulle sparas." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Ingen profil URL lämnades ut av servern." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Ingen status hittad med det ID" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Lämnar pren." -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Det var ett problem när inlägget sparades." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Uppdatering av profilbild misslyckades." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s(%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Om" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Ändra ditt lösenord" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Skapa ett nytt konto" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Det existerar inget sådant OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Hjälp" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Nytt inlägg" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Nytt inlägg" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Prenumerationer" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Ingen sådan användare" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4652,12 +5366,15 @@ msgstr "%s favoriter" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Skapa ett nytt konto" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Publik" @@ -4680,35 +5397,40 @@ msgstr "Feed för taggar %s" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "Taggar" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL till din hemsida, blog eller profil på en annan sida." -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Prenumerationer" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4718,21 +5440,21 @@ msgstr "Var du håller till, såsom \"Stad, Län, Land\"" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logga ut" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4765,12 +5487,12 @@ msgstr "Logga in" msgid "Leave" msgstr "Spara" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Logga in med ditt användarnamn och lösenord." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Skapa ett nytt konto" @@ -4791,24 +5513,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Plats: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Hemsida: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, fuzzy, php-format msgid "You've been nudged by %s" msgstr "Du är identifierad. Skriv in" @@ -4823,47 +5545,55 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s la just in ditt inlägg ifrån %2$s som en av deras favorit." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr "från" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 #, fuzzy msgid "Send a direct notice" msgstr "Tabort inlägg" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Skicka ett meddelande" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "Minst 6 tecken" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "svar till..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 #, fuzzy msgid "Reply to this notice" msgstr "Svara på detta inlägg" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "svar" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 #, fuzzy msgid "Delete this notice" msgstr "Ta bort inlägg" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "Ta bort" @@ -4886,28 +5616,30 @@ msgstr "Du kan inte skicka meddelande till den användaren." msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Publik" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy msgid "Recent tags" msgstr "Tidigare taggar" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Personer" @@ -4926,34 +5658,36 @@ msgstr "Sök personer på denna sida" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Fjärrprenumerera" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Fjärrprenumerera" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" "Använd detta formulär för att bjuda in dina vänner och kollegor till denna " "sida." -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "Användaren har ingen profil." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Prenumerera på mina Twitter vänner här." @@ -4968,11 +5702,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Ingen sådan användare" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4980,6 +5715,2041 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Flöden för $s vänner" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Flöden för $s vänner" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Flöden för $s vänner" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s med vänner" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Du kan uppdatera din personliga profil här" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Användarbilden uppdaterad." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " +"ångra dig." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Det var något problem med din session. Försök igen, tack." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Skicka mig ett email när någon sänder ett privat meddelande." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Mikroblogg av %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. " +"Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Sök i strömmen efter \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan " +"du ändrar dina inställningar." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Publik ström" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Publik ström" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Publik ström" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"förutom det här, som är privat: lösenord, epostadress, IM-adress, " +"telefonnummer." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Skapa" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Inget sådant inlägg." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Inlägg flöde för %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Inlägg flöde för %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Inlägg flöde för %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Outbox för %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Användarbild" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profil inställningar" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"En bekräftelsekod har skickats ut till telefonnumret du fyllde i. " +"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " +"använder den." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Ingen sådan användare" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " +"Twitter," + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Kontrollera dessa detajer noga så att du verkligen vet att du vill " +"prenumerera på denna användares inlägg. Om du inte frågade efter att " +"prenumerera på någons inlägg, klicka på \"Cancel\"" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Om du redan har ett konto, logga in med ditt användarnamn och lösenord för " +"att koppla det till ditt OpenID" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s lyssnar nu på dina meddelanden i %1$s.\n" +"\n" +"\tHälsningar,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Sök" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Inget sådant dokument." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Ingen sådan användare" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Användaren har ingen profil." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s med vänner" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Ingen sådan användare" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Bekräftelsekod" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Kan inte ta bort detta inlägg." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Ogiltig hemsideadress '%s'" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Användarnamnet används redan, försök med ett annat." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Kunde inte skapa favorit." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nytt inlägg" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nytt inlägg" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Det är inget giltigt användarnamn." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Ingen mottagare tillagd." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Användaren har ingen profil." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Du skickade inte oss den profilen" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Ingen sådan användare" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kunde inte uppdatera användare." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Kunde inte spara dina Twitter inställningar!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Inställningar sparade." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Inget resultat" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Användaren har ingen profil." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Nytt meddelande" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Kunde inte spara profil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. " +"Ställ in ditt OpenID konto härifrån." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profil inställningar" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat " +"till den emailadress du sparat till ditt konto." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Du är identifierad. Skriv ett nytt lösenord nedan." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Förfrågan om återställning av lösenord" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Fel uppstog med bekräftelsekoden." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Prenumerera på mina Twitter vänner här." + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s favoriter" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Inlägg flöde för %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Inlägg flöde för %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Inlägg flöde för %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Ingen sådan användare" + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Inlägg taggade med %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Inlägg flöde för %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Inlägg flöde för %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Inlägg flöde för %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Detta inlägg är redan en favorit!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Det inlägget är ingen favorit!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kunde inte ta emot favoritinläggen." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Ingen mottagare tillagd." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Kunde inte få fram status." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Uppdateringar med svar till %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Uppdateringar från %1$s på %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Alla prenumerationer" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profil inställningar" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Du skickade inte oss den profilen" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Det var ett problem när inlägget sparades." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Meddelande till %1$s på %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Användaren har ingen profil." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Ladda upp" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Ändra ditt lösenord" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Anslut" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Sök" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Logga in" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Ingen sådan användare" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Ingen sådan användare" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Inget innehåll!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Sök" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Hemsidan har ingen giltig URL" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Inget sådant meddelande." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Direktmeddelande till %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Det är för långt. Max är 140 tecken. " + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Biografin är för lång (max 140 tecken)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Du prenumererar redan på dessa användare:" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Du skickade inte oss den profilen" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s / Favoriter från %s" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Sök personer på denna sida" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "För långt. Maximalt 140 tecken" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Bildfilens format stödjs inte." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Biografin är för lång (max 140 tecken)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Uppdateringar från %1$s på %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Användaren som avlyssnas existerar inte." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Inte tillstånd ännu." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Kunde inte konvertera förfrågan tokens till Access tokens." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Okänd version av OMB protokollet." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Inget sådant inlägg." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Inget sådant inlägg." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Uppdateringar från %1$s på %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? " +"[Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%" +"action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Alla uppdateringar som matchar söksträngen \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Biografin är för lång (max 140 tecken)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Det är ingen giltig profil URL (ingen YADIS angiven)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Kunde inte få en förfrågan token." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Inlägg flöde för %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Meddelande till %1$s på %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed för %s favoriter" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed för %s favoriter" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed för %s favoriter" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Inlägg flöde för %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Inlägg" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Inlägg flöde för %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Kontrollera dessa detajer noga så att du verkligen vet att du vill " +"prenumerera på denna användares inlägg. Om du inte frågade efter att " +"prenumerera på någons inlägg, klicka på \"Cancel\"" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla " +"med sidans instruktioner hur du bekräftar en prenumeration. Din " +"prenumerering token är:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med " +"sidans instruktioner hur du avvisar en prenumeration." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Kan inte läsa användarbild URL '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Fel filtyp för bild '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Kunde inte skicka vidare till servern: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Sök innehåll i inlägg" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Kunde inte uppdatera användaren med bekräftad emailadress." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Svara på detta inlägg" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Det var ett problem när inlägget sparades." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Ingen bekräftelsekod." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Välj en operatör" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Berätta om dig själv och dina intressen inom 140 tecken" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Inlägg flöde för %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s la till ditt inlägg som favorit" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "från" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Kunde inte tabort favoriten." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Tabort inlägg" + #, fuzzy #~ msgid "Code not yet ready." #~ msgstr "Kunde inte tabort favoriten." diff --git a/locale/te/LC_MESSAGES/statusnet.mo b/locale/te/LC_MESSAGES/statusnet.mo index 5cfa0c3fb5deb5672a1d9547ed7610a58f4515f3..69f2d9a4ac13cb7227f757cab22b5f3c640d546e 100644 GIT binary patch delta 14731 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 delta 9002 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\n" "Language-Team: LANGUAGE \n" @@ -24,14 +24,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "\"%s\"కై అన్వేషణ వాహిని" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." @@ -42,17 +42,19 @@ msgid " from " msgstr " నుండి " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -84,6 +86,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" @@ -100,25 +103,28 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s ప్రజా వాహిని" @@ -128,40 +134,55 @@ msgstr "%s ప్రజా వాహిని" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s మరియు మిత్రులు" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s స్థితి" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s కాలరేఖ" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -170,7 +191,8 @@ msgstr "" "[%%site.broughtby%%](%%site.broughtbyurl%%) వారు అందిస్తున్న ఈ **%%site.name%%** " "అనేది మైక్రో బ్లాగింగు సదుపాయం." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." @@ -182,30 +204,34 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు, మర్చిపోకండి!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -213,6 +239,7 @@ msgid "" msgstr "" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -242,7 +269,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -265,16 +319,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "గురించి" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "అంగీకరించు" @@ -285,6 +346,9 @@ msgstr "అంగీకరించు" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "చేర్చు" @@ -302,27 +366,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "చిరునామా" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "అన్ని చందాలు" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%s కోసం అన్ని తాజాకరణలూ" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణలు" @@ -332,30 +398,37 @@ msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణ #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "ఇప్పటికే లోనికి ప్రవేశించారు." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "ఇప్పటికే చేరారు!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "భవిష్యత్తులో ఆటోమెటిగ్గా లోనికి ప్రవేశించు; బయటి కంప్యూర్ల కొరకు కాదు!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -363,15 +436,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "అవతారం" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "అవతారాన్ని తాజాకరించాం." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -379,13 +456,14 @@ msgid "" msgstr "" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -397,6 +475,8 @@ msgstr "ఇంతక్రితం »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "స్వపరిచయం" @@ -404,16 +484,18 @@ msgstr "స్వపరిచయం" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "ఈ నోటీసుని తొలగించలేము." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "" @@ -421,6 +503,8 @@ msgstr "" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "కొత్త సంకేతపదాన్ని భద్రపరచలేము." @@ -428,31 +512,34 @@ msgstr "కొత్త సంకేతపదాన్ని భద్రపర #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "రద్దుచేయి" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "మార్చు" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -462,11 +549,12 @@ msgid "Change password" msgstr "సంకేతపదం మార్చుకోండి" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -476,6 +564,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "నిర్థారించు" @@ -488,12 +579,14 @@ msgstr "చిరునామాని నిర్ధారించు" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "నిర్ధారణ రద్దయింది." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -502,7 +595,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -522,20 +616,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "అనుసంధానించు" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "ఇప్పటికే ఉన్న ఖాతాతో అనుసంధానించండి" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "సంప్రదించు" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" @@ -543,35 +641,39 @@ msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించ #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "కొత్త ప్రొఫైలు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -591,15 +693,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "చందాని తొలగించలేకపోయాం." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -612,29 +716,38 @@ msgstr "" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "నిర్ధారణ సంకేతాన్ని చేర్చలేకపోయాం." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -650,42 +763,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "సృష్టించు" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "ఈ పేరుతో కొత్త వాడుకరిని సృష్టించు" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -694,23 +813,27 @@ msgid "Currently" msgstr "ప్రస్తుతం" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" @@ -718,11 +841,13 @@ msgstr "మీ గురించి మరియు మీ ఆసక్తు #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "ఈమెయిల్" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "ఈమెయిల్ చిరునామా" @@ -732,39 +857,43 @@ msgid "Email Settings" msgstr "ఈమెయిల్ అమరికలు" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "ఈమెయిల్ చిరునామా ఇప్పటికే ఉంది." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "ఈమెయిల్ చిరునామా నిర్ధారణ" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "ఈమెయిల్ చిరునామా, \"username@example.org\" వలె" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "పేరు లేదా ఈమెయిల్ చిరునామా ఇవ్వండి." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "వాడుకరిని ఓపెన్ఐడీకి అనుసంధానించటంలో పొరపాటు." @@ -775,40 +904,47 @@ msgstr "వాడుకరిని అనుసంధానించడంల #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 #, fuzzy msgid "Error inserting avatar" msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "కొత్త ప్రొపైలుని చేర్చటంలో పొరపాటు" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "దూరపు ప్రొపైలుని చేర్చటంలో పొరపాటు" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "చిరునామా నిర్ధారణని భద్రపరచడంలో పొరపాటు." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "దూరపు ప్రొఫైలుని భద్రపరచడంలో పొరపాటు" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "ప్రొఫైలుని భద్రపరచడంలో పొరపాటు." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." @@ -817,6 +953,9 @@ msgstr "వాడుకరిని భద్రపరచడంలో పొర #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "" @@ -827,6 +966,7 @@ msgstr "ప్రొపైలుని తాజాకరించటంలో #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు" @@ -836,34 +976,37 @@ msgid "Error with confirmation code." msgstr "నిర్ధారణ సంకేతంలో పొరపాటు." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "ప్రస్తుత పేరు" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 #, fuzzy msgid "FAQ" msgstr "తవసం" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "అవతారపు తాజాకరణ విఫలమైంది." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "%s యొక్క మిత్రుల ఫీడు" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "%sకి వచ్చిన స్పందనల ఫీడు" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -878,7 +1021,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -890,6 +1033,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "పూర్తి పేరు" @@ -898,16 +1046,24 @@ msgstr "పూర్తి పేరు" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "సహాయం" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 #, fuzzy msgid "Home" msgstr "వాకిలి" @@ -915,7 +1071,9 @@ msgstr "వాకిలి" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 #, fuzzy msgid "Homepage" msgstr "హోమ్ పేజీ" @@ -924,21 +1082,27 @@ msgstr "హోమ్ పేజీ" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "హోమ్ పేజీ URL సరైనది కాదు." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM చిరునామా" @@ -948,7 +1112,7 @@ msgid "IM Settings" msgstr "IM అమరికలు" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -956,13 +1120,13 @@ msgstr "" "మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి " "జతచేసుకోండి." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -971,55 +1135,62 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "పాత సంకేతపదం తప్పు" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "మీ సంకేతపదాన్ని తిరిగి పొందడానికై అవసరమైన సూచనలని మీ ఖాతాతో నమోదైన ఈమెయిల్ చిరునామాకి పంపించాం." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "'%s' అనే అవతారపు URL తప్పు" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "తప్పుడు లైసెన్సు URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "సందేశపు విషయం సరైనది కాదు" @@ -1034,13 +1205,13 @@ msgid "Invalid notice url" msgstr "సందేశపు URL తప్పు" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "ప్రొపైల్ URL '%s' తప్పు." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "ప్రొపైల్ URL తప్పు (చెడు ఫార్మాట్)" @@ -1058,28 +1229,35 @@ msgstr "తప్పుడు పరిమాణం." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "ఆహ్వానించు" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1088,11 +1266,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID ఇప్పటికే వేరొకరికి ఉంది." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1100,12 +1279,14 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "భాష" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1114,7 +1295,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "ప్రాంతం" @@ -1123,7 +1312,12 @@ msgstr "ప్రాంతం" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." @@ -1132,18 +1326,22 @@ msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉ #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "ప్రవేశించండి" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "[ఓపెన్ఐడీ](%%doc.openid%%) ఖాతాతో ప్రవేశించండి." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1151,22 +1349,26 @@ msgid "" "%). " msgstr "" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "నిష్క్రమించు" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "మీ సంకేతపదం మర్చిపోయారా?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1177,16 +1379,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "సభ్యులైన తేదీ" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, fuzzy, php-format msgid "Microblog by %s" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1196,42 +1400,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "కొత్త పేరు" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "కొత్త సందేశం" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "కొత్త సంకేతపదం" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "మీ కొత్త సంకేతపదం భద్రమైంది. మీరు ఇప్పుడు లోనికి ప్రవేశించారు." @@ -1241,7 +1453,13 @@ msgstr "మీ కొత్త సంకేతపదం భద్రమైంద #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "పేరు" @@ -1250,7 +1468,12 @@ msgstr "పేరు" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." @@ -1259,47 +1482,58 @@ msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్ #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "ఆ పేరుని అనుమతించము." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "పేరు లేదా ఈమెయిల్" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Jabber ID లేదు." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1311,11 +1545,15 @@ msgstr "నిర్ధారణ సంకేతం లేదు." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "విషయం లేదు!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1324,7 +1562,9 @@ msgid "No id." msgstr "ఐడీ లేదు." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1335,6 +1575,7 @@ msgstr "దూరపు సర్వర్ పేరుని ఇవ్వలే #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 #, fuzzy msgid "No nickname." msgstr "పేరు లేదు." @@ -1343,12 +1584,14 @@ msgstr "పేరు లేదు." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "రద్దుచేయడానికి వేచివున్న నిర్ధారణలేమీ లేవు." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1358,7 +1601,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "ఈ వాడుకరికై నమోదైన ఈమెయిల్ చిరునామాలు ఏమీ లేవు." @@ -1370,7 +1614,7 @@ msgstr "అభ్యర్థనలేమీ కనబడలేదు!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "ఫలితాలేమీ లేవు" @@ -1381,12 +1625,16 @@ msgstr "పరిమాణం లేదు." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1396,13 +1644,15 @@ msgid "No such OpenID." msgstr "అటువంటి ఓపెన్ఐడీ లేదు." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "అటువంటి పత్రమేమీ లేదు." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "అటువంటి సందేశమేమీ లేదు." @@ -1440,12 +1690,22 @@ msgstr "" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1459,32 +1719,38 @@ msgid "Not a recovery code." msgstr "" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "సరైన Jabber ఐడీ కాదు" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "సరైన ఓపెన్ఐడీ కాదు." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" @@ -1492,6 +1758,11 @@ msgstr "సరైన ఈమెయిల్ చిరునామా కాదు #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "సరైన పేరు కాదు." @@ -1511,7 +1782,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "బొమ్మ కాదు లేదా పాడైపోయిన ఫైలు." @@ -1522,11 +1794,13 @@ msgstr "" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1542,11 +1816,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "లోనికి ప్రవేశించలేదు." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "" @@ -1563,40 +1841,45 @@ msgid "Notice feed for %s" msgstr "%s యొక్క సందేశముల ఫీడు" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "సందేశాలు" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "పాత సంకేతపదం" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "ఓపెన్ఐడీ" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 #, fuzzy msgid "OpenID Account Setup" msgstr "ఓపెన్ఐడీ ఖాతా అమర్పు" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1604,29 +1887,34 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "ఓపెన్ఐడీ ప్రవేశం" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "ఓపెన్ఐడీ URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "ఓపెన్ఐడీ అధీకరణ రద్దు చేయబడింది." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "ఓపెన్ఐడీ అధీకరణ విఫలమైంది: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "ఓపెన్ఐడీ వైఫల్యం: %s" @@ -1642,11 +1930,12 @@ msgid "OpenID settings" msgstr "ఓపెన్ఐడీ అమరికలు" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "పాక్షిక ఎగుమతి." @@ -1656,34 +1945,46 @@ msgstr "పాక్షిక ఎగుమతి." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "సంకేతపదం" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "సంకేతపదం మరియు నిర్ధారణ సరిపోలేదు." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "సంకేతపదం 6 లేదా అంతకంటే ఎక్కవ అక్షరాలుండాలి." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "సంకేతపదం భద్రమయ్యింది." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "సంకేతపదాలు సరిపోలలేదు." @@ -1703,14 +2004,17 @@ msgid "People search" msgstr "వ్యక్తుల అన్వేషణ" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "వ్యక్తిగత" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1722,7 +2026,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1731,7 +2035,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "అభిరుచులు" @@ -1740,42 +2046,52 @@ msgstr "అభిరుచులు" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "అభిరుచులు భద్రమయ్యాయి." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "అంతరంగికత" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "ప్రొఫైలు" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "ప్రొఫైలు URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "ఫ్రొఫైలు అమరికలు" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "అజ్ఞాత ప్రొఫైలు" @@ -1784,17 +2100,19 @@ msgid "Public Stream Feed" msgstr "ప్రజా వాహిని ఫీడు" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "ప్రజా కాలరేఖ" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1804,12 +2122,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1822,37 +2142,45 @@ msgstr "" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "నమోదు" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "తిరస్కరించు" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "నన్ను గుర్తుంచుకో" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -1866,6 +2194,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "తొలగించు" @@ -1874,7 +2205,7 @@ msgstr "తొలగించు" msgid "Remove OpenID" msgstr "ఓపెన్ఐడీని తొలగించండి" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1883,34 +2214,41 @@ msgstr "" "ముందు వేరే ఓపెన్ఐడీని చేర్చండి." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "స్పందనలు" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "%sకి స్పందనలు" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1919,17 +2257,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "పై సంకేతపదం వలెనే" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1942,12 +2281,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "భద్రపరచు" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "వెతుకు" @@ -1957,7 +2305,7 @@ msgid "Search Stream Feed" msgstr "అన్వేషణ వాహిని ఫీడు" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1966,7 +2314,7 @@ msgstr "" "%%site.name%%లోని సందేశాలను వెతకండి. అన్వేషణ పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా " "అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -1976,48 +2324,56 @@ msgstr "" "ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "పంపించు" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "అమరికలు" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "అమరికలు భద్రమయ్యాయి." @@ -2037,27 +2393,32 @@ msgid "Something weird happened." msgstr "జరగకూడనిదేదో జరిగింది." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "మూలము" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "గణాంకాలు" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "" @@ -2065,24 +2426,28 @@ msgstr "" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "చందాదార్లు" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "చందాని తిరస్కరించారు." @@ -2090,28 +2455,35 @@ msgstr "చందాని తిరస్కరించారు." #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "చందాలు" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "పాఠ్యం" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "పాఠ్య అన్వేషణ" @@ -2131,6 +2503,7 @@ msgid "That confirmation code is not for you!" msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేకే ఇతర వాడుకరికి సంబంధించినది." @@ -2140,63 +2513,73 @@ msgid "That file is too big." msgstr "ఆ ఫైలు చాలా పెద్దగా ఉంది." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "ఈ Jabber ID మీకు ఇప్పటికే ఉంది" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "ఇది మీ Jabber ID కాదు" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "ఆ IM చిరునామా సరైనది కాదు." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" అనే చిరునామా మీ ఖాతాకి నిర్ధారితమైంది." @@ -2205,18 +2588,22 @@ msgstr "\"%s\" అనే చిరునామా మీ ఖాతాకి న #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "ఆ చిరునామాని తొలగించాం." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2224,40 +2611,45 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "ఈ నిర్ధారణ సంకేతం చాలా పాతది. మళ్ళీ మొదలుపెట్టండి." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2269,6 +2661,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2277,25 +2672,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2304,18 +2711,21 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2327,15 +2737,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2364,38 +2781,47 @@ msgstr "" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "ఎగుమతించు" @@ -2412,12 +2838,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం." @@ -2441,11 +2870,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "వాడుకరికి ప్రొఫైలు లేదు." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "వాడుకరి పేరు" @@ -2454,29 +2888,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "%s, సంగతులేమిటి?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "" @@ -2484,7 +2922,9 @@ msgstr "" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "అవును" @@ -2505,11 +2945,12 @@ msgid "You are already logged in!" msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2527,20 +2968,22 @@ msgstr "సందేశాలు పంపించడానికి మీర msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "\"తొలగించు\" అనే బొత్తంపై నొక్కడం ద్వారా ఒక ఓపెన్ఐడీని మీ ఖాతా నుండి తొలగించుకోవచ్చు." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2549,21 +2992,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2577,35 +3022,39 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "మిమ్మల్ని గుర్తించాం. కొత్త సంకేతపదాన్ని క్రింద ఇవ్వండి." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "మీ ఓపెన్ఐడీ URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "ఈ సర్వరులో మీ పేరు, లేదా నమౌదైన మీ ఈమెయిల్ చిరునామా." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2614,47 +3063,57 @@ msgstr "" "ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ " "ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "కొన్ని క్షణాల క్రితం" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "%d రోజుల క్రితం" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "%d గంటల క్రితం" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "%d నిమిషాల క్రితం" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "%d నెలల క్రితం" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "ఓ రోజు క్రితం" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "ఓ నిమిషం క్రితం" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "ఓ నెల క్రితం" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "ఒక సంవత్సరం క్రితం" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "ఒక గంట క్రితం" @@ -2676,12 +3135,14 @@ msgid "reply" msgstr "స్పందించు" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "పై సంకేతపదం వలెనే" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2703,6 +3164,26 @@ msgstr "« తర్వాత" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2711,6 +3192,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2718,22 +3200,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2743,11 +3231,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2787,33 +3277,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2867,6 +3368,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2895,6 +3401,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2915,12 +3423,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2928,7 +3439,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2952,51 +3463,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3015,14 +3545,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "ట్విట్టర్ అమరికలు" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "ట్విట్టర్ ఖాతా" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3031,6 +3564,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3039,24 +3573,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3067,33 +3606,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3110,18 +3659,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3131,89 +3681,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "పూర్తిపేరు: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "ప్రాంతం: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "గురించి: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3221,11 +3793,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3240,7 +3812,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3252,7 +3824,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3261,31 +3833,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "వాడుకరి" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "మీకు వచ్చిన సందేశాలు" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "మీరు పంపిన సందేశాలు" @@ -3298,14 +3878,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s మరియు మిత్రులు" @@ -3315,22 +3900,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "ట్విట్టర్ అమరికలు" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3347,35 +3942,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "అటువంటి వాడుకరి లేరు." @@ -3384,12 +3988,12 @@ msgstr "అటువంటి వాడుకరి లేరు." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3406,40 +4010,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "పేరు లేదు." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3448,16 +4070,17 @@ msgid "Nickname must have only lowercase letters " msgstr "" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "అమరికలు భద్రమయ్యాయి." @@ -3475,7 +4098,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3489,7 +4113,7 @@ msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేక msgid "A confirmation code was sent to the email address you added. " msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3503,54 +4127,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "విషయం లేదు!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« తర్వాత" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "ఇంతక్రితం »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "%s యొక్క మిత్రుల ఫీడు" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3596,12 +4235,14 @@ msgstr "" msgid "Sync preferences" msgstr "అభిరుచులు" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "అటువంటి సందేశమేమీ లేదు." @@ -3616,7 +4257,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3630,15 +4272,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3646,12 +4290,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "అవతారాన్ని తాజాకరించాం." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "అవతారపు తాజాకరణ విఫలమైంది." @@ -3671,7 +4317,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3686,6 +4333,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "కొత్త ఖాతా సృష్టించుకోండి" @@ -3698,7 +4346,7 @@ msgstr "" "%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " "ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "వ్యక్తుల అన్వేషణ" @@ -3721,21 +4369,21 @@ msgstr "" msgid "A confirmation code was sent " msgstr "నిర్ధారణ సంకేతం లేదు." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3744,16 +4392,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -3761,21 +4412,25 @@ msgstr "" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3787,16 +4442,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "చందాని సృష్టించలేకపోయాం." @@ -3810,12 +4467,15 @@ msgstr "ఆ ఫైలు చాలా పెద్దగా ఉంది." msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "సందేశాలు" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3832,7 +4492,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "ఓపెన్ఐడీ ప్రవేశం" @@ -3860,11 +4520,13 @@ msgstr "" msgid "Service" msgstr "వెతుకు" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)." @@ -3874,17 +4536,18 @@ msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉ msgid "Change your password." msgstr "సంకేతపదం మార్చుకోండి" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "సంకేతపదం భద్రమయ్యింది." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3894,12 +4557,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "అజ్ఞాత ప్రొఫైలు" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3909,21 +4573,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "ప్రజా కాలరేఖ" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3944,11 +4613,13 @@ msgstr "ప్రజా వాహిని ఫీడు" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4003,7 +4674,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "%sకి స్పందనలు" @@ -4013,53 +4685,74 @@ msgstr "%sకి స్పందనలు" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "సందేశాలు" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "సభ్యులైన తేదీ" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4074,7 +4767,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4085,32 +4778,39 @@ msgid "'s profile" msgstr "ప్రొఫైలు" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "వాడుకరికి ప్రొఫైలు లేదు." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "చందాదార్లు" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4135,7 +4835,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4196,17 +4896,18 @@ msgstr "" msgid "These are the people whose " msgstr "" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Jabber ID లేదు." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4230,7 +4931,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4240,17 +4941,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4259,20 +4960,23 @@ msgstr "" msgid "No such tag." msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "అభ్యర్థనలేమీ కనబడలేదు!" @@ -4281,17 +4985,18 @@ msgstr "అభ్యర్థనలేమీ కనబడలేదు!" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy msgid "Twitter user name" msgstr "ట్విట్టర్ అమరికలు" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "కొత్త సంకేతపదం" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 #, fuzzy msgid "Twitter Friends" msgstr "ట్విట్టర్ అమరికలు" @@ -4305,155 +5010,164 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "చందాదార్లు" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "అవతారపు తాజాకరణ విఫలమైంది." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "గురించి" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "అటువంటి ఓపెన్ఐడీ లేదు." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "సహాయం" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "కొత్త సందేశం" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "కొత్త సందేశం" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "చందాలు" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "అటువంటి వాడుకరి లేరు." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4466,12 +5180,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "కొత్త ఖాతా సృష్టించుకోండి" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "ప్రజా" @@ -4493,34 +5210,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "చందాలు" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4530,21 +5252,21 @@ msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "నిష్క్రమించు" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4577,12 +5299,12 @@ msgstr "ప్రవేశించండి" msgid "Leave" msgstr "భద్రపరచు" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" @@ -4603,24 +5325,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "ప్రాంతం: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "హోమ్ పేజీ\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4635,43 +5357,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "కొత్త సందేశం" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "దీనికి స్పందనగా..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "స్పందించు" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4692,27 +5422,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "ప్రజా" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "వ్యక్తుల అన్వేషణ" @@ -4730,32 +5462,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "%sకి స్పందనలు" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "వాడుకరికి ప్రొఫైలు లేదు." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "చందాదార్లు" @@ -4769,11 +5503,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "అటువంటి వాడుకరి లేరు." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4781,6 +5516,1985 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s మరియు మిత్రులు" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "అవతారాన్ని తాజాకరించాం." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "%s యొక్క మైక్రోబ్లాగు" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " +"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "\"%s\"కై అన్వేషణ వాహిని" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "ప్రజా వాహిని ఫీడు" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "ప్రజా వాహిని ఫీడు" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "ప్రజా వాహిని ఫీడు" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "సృష్టించు" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "ప్రొఫైలు" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "అవతారం" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "ఫ్రొఫైలు అమరికలు" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి " +"జతచేసుకోండి." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "వెతుకు" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "అటువంటి పత్రమేమీ లేదు." + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s మరియు మిత్రులు" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "ప్రాంతం" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "ఈ నోటీసుని తొలగించలేము." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "కొత్త సందేశం" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "కొత్త సందేశం" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "సరైన పేరు కాదు." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "అభిరుచులు భద్రమయ్యాయి." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "ఫలితాలేమీ లేవు" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ " +"ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "ఫ్రొఫైలు అమరికలు" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "మీరు మీ సంకేతపదాన్ని మర్చిపోతే, మీ ఖాతాలో భద్రపరచిన ఈమెయిలుకి కొత్తదాన్ని పంపించుకోవచ్చు." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "మిమ్మల్ని గుర్తించాం. కొత్త సంకేతపదాన్ని క్రింద ఇవ్వండి." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "సంకేతపదం భద్రమయ్యింది." + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "నిర్ధారణ సంకేతంలో పొరపాటు." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "చందాదార్లు" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "అటువంటి వాడుకరి లేరు." + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%s యొక్క మైక్రోబ్లాగు" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "అన్ని చందాలు" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "ఫ్రొఫైలు అమరికలు" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "ప్రొఫైలు" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "ఎగుమతించు" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "సంకేతపదం మార్చుకోండి" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "అనుసంధానించు" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "వెతుకు" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "ప్రవేశించండి" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "అటువంటి వాడుకరి లేరు." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "అటువంటి వాడుకరి లేరు." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "విషయం లేదు!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "వాడుకరి" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "వెతుకు" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "హోమ్ పేజీ URL సరైనది కాదు." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "అటువంటి సందేశమేమీ లేదు." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణలు" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%sకి స్పందనలు" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s యొక్క మిత్రుల ఫీడు" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "సందేశాలు" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "హోమ్ పేజీ URL సరైనది కాదు." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "'%s' అనే అవతారపు URL తప్పు" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" + +#: lib/action.php:435 +msgid "Connect to services" +msgstr "" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "కొత్త సందేశం" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "ఈ పేరుతో కొత్త వాడుకరిని సృష్టించు" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "%sకి స్పందనలు" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "నిర్ధారణ సంకేతం లేదు." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " నుండి " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "కొత్త సందేశం" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "కొత్త ఖాతా సృష్టించుకోండి" @@ -4793,8 +7507,3 @@ msgstr "" #~ msgid "Error inserting notice" #~ msgstr "సందేశాన్ని చేర్చటంలో పొరపాటు" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "మీరు మీ సంకేతపదాన్ని మర్చిపోతే, మీ ఖాతాలో భద్రపరచిన ఈమెయిలుకి కొత్తదాన్ని పంపించుకోవచ్చు." diff --git a/locale/tr/LC_MESSAGES/statusnet.mo b/locale/tr/LC_MESSAGES/statusnet.mo index d49c7093d3e3454108e4f41254d7c740e2df5b87..46795b44017c4a2b721d4d36645da399e4733df7 100644 GIT binary patch delta 16483 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 delta 10237 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\n" "Language-Team: LANGUAGE \n" @@ -20,14 +20,14 @@ msgstr "" "X-Poedit-Country: TURKEY\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " \"%s\" için arama sonuçları" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -40,17 +40,19 @@ msgid " from " msgstr "" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -82,6 +84,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s %2$s'da durumunuzu takip ediyor" @@ -104,25 +107,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Genel Durum Mesajları" @@ -132,40 +138,55 @@ msgstr "%s Genel Durum Mesajları" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s ve arkadaşları" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s durum" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -174,7 +195,8 @@ msgstr "" "**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " "hazırlanan anında mesajlaşma ağıdır. " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." @@ -186,32 +208,36 @@ msgstr "Katkı sunanlar tam ad veya takma ad ile atfedilmelidir." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "" "1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " "verilmez" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 veya daha fazla karakter" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "Unutmayın, 6 veya daha fazla karakter" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -221,6 +247,7 @@ msgstr "" "mesaj yollanabilmesi için onaylamanız gerekmektedir." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -250,7 +277,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -273,16 +327,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Hakkında" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Kabul et" @@ -293,6 +354,9 @@ msgstr "Kabul et" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Ekle" @@ -310,27 +374,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Adres" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Bütün abonelikler" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%s için bütün güncellemeler" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" @@ -340,31 +406,38 @@ msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Zaten giriş yapılmış." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Zaten abone olunmuş!." #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Takip isteğini onayla" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Gelecekte kendiliğinden giriş yap, paylaşılan bilgisayarlar için değildir!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -372,15 +445,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar güncellendi." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -390,13 +467,14 @@ msgstr "" "içeren mesajı almak için kontrol edin. (%s'u arkadaş listenize eklediniz mi?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -408,6 +486,8 @@ msgstr "Önce »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Hakkında" @@ -415,16 +495,18 @@ msgstr "Hakkında" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Avatar URLi '%s' okunamıyor" @@ -432,6 +514,8 @@ msgstr "Avatar URLi '%s' okunamıyor" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Yeni parola kaydedilemedi." @@ -439,31 +523,34 @@ msgstr "Yeni parola kaydedilemedi." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "İptal et" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "OpenID işlemlerinde hata oluştu." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Jabber işlemlerinde bir hata oluştu." #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Değiştir" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -473,11 +560,12 @@ msgid "Change password" msgstr "Parolayı değiştir" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -487,6 +575,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Onayla" @@ -499,12 +590,14 @@ msgstr "Adresi Onayla" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Onaylama iptal edildi." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -513,7 +606,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "Onay kodu bulunamadı." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -533,20 +627,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Bağlan" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Varolan hesaba bağlan" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "İletişim" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "OpenID formu yaratılamadı: %s" @@ -554,35 +652,39 @@ msgstr "OpenID formu yaratılamadı: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Sunucuya yönlendirme yapılamadı: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Avatar bilgisi kaydedilemedi" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Yeni profil bilgisi kaydedilemedi" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -602,15 +704,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Eposta onayı silinemedi." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Abonelik silinemedi." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -624,29 +728,38 @@ msgstr "" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Onay kodu eklenemedi." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Yeni abonelik eklenemedi." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Profil kaydedilemedi." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -662,42 +775,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Kullanıcı güncellenemedi." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Yarat" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Bu takma ad ile yeni bir kullanıcı oluştur." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Yeni hesap oluştur" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "OpenID kullanıcısı için hesap oluşturuluyor" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Onaylanmış Jabber/Gtalk adresi." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -706,23 +825,27 @@ msgid "Currently" msgstr "Şu anda" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Cevap eklenirken veritabanı hatası: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" @@ -730,11 +853,13 @@ msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Eposta" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -744,39 +869,43 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Eposta adresi zaten var." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Eposta adresi onayı" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Bir takma ad veya eposta adresi girin." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Kullanıcıyı OpenID'ye bağlarken hata oluştu." @@ -787,39 +916,46 @@ msgstr "Kullanıcı bağlamada hata oluştu." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Avatar eklemede hata oluştu" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Yeni profil eklemede hata oluştu" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Uzak profil eklemede hata oluştu" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Adres onayını kaydetmede hata." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Uzaktaki profili kaydetmede hata oluştu" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Profili kaydetmede hata oluştu." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Kullanıcıyı kaydetmede hata oluştu." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." @@ -828,6 +964,9 @@ msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Kullanıcı ayarlamada hata oluştu." @@ -838,6 +977,7 @@ msgstr "Profil güncellemede hata oluştu" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Uzaktaki profili güncellemede hata oluştu" @@ -847,33 +987,36 @@ msgid "Error with confirmation code." msgstr "Onay kodu hatası." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Varolan takma ad" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "SSS" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Avatar güncellemede hata." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Cevaplar için RSS Beslemesi: %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -888,7 +1031,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -901,6 +1044,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Tam İsim" @@ -909,16 +1057,24 @@ msgstr "Tam İsim" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Tam isim çok uzun (azm: 255 karakter)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Yardım" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Başlangıç" @@ -926,7 +1082,9 @@ msgstr "Başlangıç" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Başlangıç Sayfası" @@ -934,21 +1092,27 @@ msgstr "Başlangıç Sayfası" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Başlangıç sayfası adresi geçerli bir URL değil." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM adresi" @@ -958,7 +1122,7 @@ msgid "IM Settings" msgstr "IM Ayarları" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -966,7 +1130,7 @@ msgstr "" "Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş " "yapıp hesabınızı OpenID'nize bağlayabilirsiniz." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -974,7 +1138,7 @@ msgstr "" "Eğer hesabınıza bir OpenID eklemek istiyorsanız, aşağıdaki kutuya girin ve " "\"Add\" düğmesine tıklayın." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -983,25 +1147,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Eski parola yanlış" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Yanlış kullanıcı adı veya parola." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1010,30 +1180,31 @@ msgstr "" "gerekli olan talimatlar yollanmıştır." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Geçersiz avatar URLi '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "%s Geçersiz başlangıç sayfası" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Geçersiz lisans URLi '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Geçersiz durum mesajı" @@ -1048,13 +1219,13 @@ msgid "Invalid notice url" msgstr "Geçersiz durum adresi" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "'%s' geçersiz profil adresi." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "" @@ -1072,28 +1243,35 @@ msgstr "Geçersiz büyüklük." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Geçersiz kullanıcı adı veya parola." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1105,11 +1283,12 @@ msgstr "" "microbloglama yazılımının %s. versiyonunu kullanmaktadır." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID başka bir kullanıcıya ait." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1119,12 +1298,14 @@ msgstr "" "istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1133,7 +1314,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Yer" @@ -1142,7 +1331,12 @@ msgstr "Yer" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." @@ -1151,18 +1345,22 @@ msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Giriş" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Bir [OpenID](%%doc.openid%%) hesabı ile giriş yapın." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1173,22 +1371,26 @@ msgstr "" "duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " "[OpenID](%%action.openidlogin%%) ile giriş yapın." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Çıkış" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Parolamı unuttum veya kaybettim" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1199,16 +1401,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Üyelik başlangıcı" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "%s adli kullanicinin durum mesajlari" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1218,42 +1422,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Durum mesajlarim ve dosyalarim şu lisans ile korunmaktadır: " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Yeni takma ad" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Yeni durum mesajı" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Yeni parola" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Yeni parola başarıyla kaydedildi. Şimdi giriş yaptınız." @@ -1263,7 +1475,13 @@ msgstr "Yeni parola başarıyla kaydedildi. Şimdi giriş yaptınız." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Takma ad" @@ -1272,7 +1490,12 @@ msgstr "Takma ad" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Takma ad kullanımda. Başka bir tane deneyin." @@ -1281,49 +1504,60 @@ msgstr "Takma ad kullanımda. Başka bir tane deneyin." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk " "kullanılamaz. " #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Takma ada izin verilmiyor." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Takip etmek istediğiniz kullanıcının takma adı" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Takma ad veya eposta" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "JabberID yok." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Yetkilendirme isteği yok!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1335,11 +1569,15 @@ msgstr "Onay kodu yok." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "İçerik yok!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1348,7 +1586,9 @@ msgid "No id." msgstr "Kullanıcı numarası yok" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1359,6 +1599,7 @@ msgstr "Uzaktaki sunucu tarafından bir takma ad sağlanmadı." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Takma ad yok" @@ -1366,12 +1607,14 @@ msgstr "Takma ad yok" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "İptal etmek için beklenen onay yok." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1381,7 +1624,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." @@ -1393,7 +1637,7 @@ msgstr "İstek bulunamadı!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Sonuç yok" @@ -1404,12 +1648,16 @@ msgstr "" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1419,13 +1667,15 @@ msgid "No such OpenID." msgstr "Böyle bir OpenID yok." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Böyle bir belge yok." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Böyle bir durum mesajı yok." @@ -1463,12 +1713,22 @@ msgstr "Böyle bir abonelik yok" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Böyle bir kullanıcı yok." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1482,32 +1742,38 @@ msgid "Not a recovery code." msgstr "Bir geri alma kodu değil." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Geçersiz bir Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Geçersiz bir OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Geçersiz bir eposta adresi." @@ -1515,6 +1781,11 @@ msgstr "Geçersiz bir eposta adresi." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Geçersiz bir takma ad." @@ -1534,7 +1805,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Geçersiz profil adresi (YADIS belgesi yok)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Bu bir resim dosyası değil ya da dosyada hata var" @@ -1545,11 +1817,13 @@ msgstr "Yetkilendirilmemiş." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1565,11 +1839,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Giriş yapılmadı." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" @@ -1586,39 +1864,44 @@ msgid "Notice feed for %s" msgstr "%s için durum RSS beslemesi" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Durum mesajları" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Eski parola" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID Hesabı Kurulumu" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1626,29 +1909,34 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID Girişi" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URLi" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID yetkilendirilmesi iptal edildi." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID yetkilendirmesi başarız oldu: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID hatası: %s" @@ -1664,11 +1952,12 @@ msgid "OpenID settings" msgstr "OpenID ayarları" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Kısmi yükleme." @@ -1678,34 +1967,46 @@ msgstr "Kısmi yükleme." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Parola" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Parola ve onaylaması birbirini tutmuyor." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Parola 6 veya daha fazla karakterden oluşmalıdır." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Parola geri alma isteği" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Parola kaydedildi." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Parolalar birbirini tutmuyor." @@ -1725,14 +2026,17 @@ msgid "People search" msgstr "Kişi Arama" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Kişisel" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1747,7 +2051,7 @@ msgstr "" "bulunmadıysanız \"İptal\" tuşuna basın. " #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" "Jabber/GTalk durum mesajim değiştiğinde nedurum.com'da durumumu güncelle" @@ -1757,7 +2061,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Tercihler" @@ -1766,42 +2072,52 @@ msgstr "Tercihler" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Tercihler kaydedildi." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Gizlilik" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluştu." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Profil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Profil Adresi" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Profil ayarları" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Profil bilinmiyor" @@ -1810,17 +2126,19 @@ msgid "Public Stream Feed" msgstr "Genel Durum Akış RSS Beslemesi" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Genel zaman çizgisi" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1830,12 +2148,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Geri al" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Parolanı geri al" @@ -1848,37 +2168,45 @@ msgstr "Bilinmeye kullanıcı için geri alma kodu" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Kayıt" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Reddet" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Beni hatırla" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Uzaktan abonelik" @@ -1892,6 +2220,9 @@ msgstr "Uzaktan abonelik" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Kaldır" @@ -1900,7 +2231,7 @@ msgstr "Kaldır" msgid "Remove OpenID" msgstr "OpenID'yi kaldır" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1909,34 +2240,41 @@ msgstr "" "istiyorsanuz, önce yeni bir OpenID ekleyin" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Cevaplar" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "%s için cevaplar" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Sıfırla" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Parolayı sıfırla" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1945,17 +2283,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "yukarıdaki parolanın aynısı" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1968,12 +2307,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Kaydet" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Ara" @@ -1983,7 +2331,7 @@ msgid "Search Stream Feed" msgstr "" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1992,7 +2340,7 @@ msgstr "" "%%site.name%%'da durum mesajlarının içeriğinde arama yap. Anahtar kelimeleri " "boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2003,48 +2351,56 @@ msgstr "" "karakterden oluşmalı. " #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Gönder" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Ayarlar" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Ayarlar kaydedildi." @@ -2064,27 +2420,32 @@ msgid "Something weird happened." msgstr "Garip bir şey oldu." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Kaynak" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "İstatistikler" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Kaydedilmiş OpenID bulunamadı." @@ -2092,24 +2453,28 @@ msgstr "Kaydedilmiş OpenID bulunamadı." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Abone ol" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abone olanlar" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Takip talebine izin verildi" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Abonelik reddedildi." @@ -2117,28 +2482,35 @@ msgstr "Abonelik reddedildi." #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonelikler" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Dosya yüklemede sistem hatası." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Metin arama" @@ -2158,6 +2530,7 @@ msgid "That confirmation code is not for you!" msgstr "O onay kodu sizin için değil!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2167,64 +2540,74 @@ msgid "That file is too big." msgstr "Dosya çok büyük." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Bu zaten sizin Jabber ID'niz." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Bu sizin Jabber ID'niz değil." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Yanlış IM adresi." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" adresi hesabınız için onaylandı." @@ -2233,18 +2616,22 @@ msgstr "\"%s\" adresi hesabınız için onaylandı." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Bu adres kaldırılmıştı." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2252,33 +2639,38 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "%s adlı kullanıcının durumunu takip edenler" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Sizin durumunuzu takip edenler" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Sizin durumlarını takip ettiğiniz kullanıcılar" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Onay kodu çok eski. Lütfen tekrar başlayınız." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2287,7 +2679,7 @@ msgstr "" "servis sağlayıcınıza yönlenmek için düğmeye basın." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2302,6 +2694,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2310,25 +2705,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2337,19 +2744,22 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2361,15 +2771,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Beklenmeğen form girdisi." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Beklemeğen parola sıfırlaması." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2400,38 +2817,47 @@ msgstr "Aboneliği sonlandır" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Desteklenmeyen OMB sürümü" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Desteklenmeyen görüntü dosyası biçemi." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Yükle" @@ -2452,12 +2878,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" "Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." @@ -2482,11 +2911,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Kullanıcının profili yok." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Kullanıcı takma adı" @@ -2495,29 +2929,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "N'aber %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "%s için yanlış resim türü" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "%s'de yanlış resim boyutu" @@ -2525,7 +2963,9 @@ msgstr "%s'de yanlış resim boyutu" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2546,11 +2986,12 @@ msgid "You are already logged in!" msgstr "Zaten giriş yapmış durumdasıznız!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2569,7 +3010,7 @@ msgstr "" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2577,6 +3018,7 @@ msgstr "" "\"Sil\" düğmesine basarak hesabınızdan eklediğiniz OpenID'yi silebilirsiniz." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2585,7 +3027,8 @@ msgstr "" "Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres " "ayarlarinizi aşağıda yapın." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2596,21 +3039,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Yerel aboneliği kullanabilirsiniz!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Bize o profili yollamadınız" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2624,35 +3069,39 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Harika, sizi tanıdık. Simdi yeni parolanızı girin." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "OpenID URLniz" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Bu sunucudaki takma adınız veya kaydedilmiş eposta adresiniz." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2661,47 +3110,57 @@ msgstr "" "[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı " "sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "birkaç saniye önce" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "yaklaşık %d gün önce" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "yaklaşık %d saat önce" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "yaklaşık %d dakika önce" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "yaklaşık %d ay önce" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "yaklaşık bir gün önce" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "yaklaşık bir ay önce" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "yaklaşık bir yıl önce" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" @@ -2723,12 +3182,14 @@ msgid "reply" msgstr "cevapla" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "yukaridaki parola ile aynı" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2750,6 +3211,26 @@ msgstr "« Sonra" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2758,6 +3239,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2765,22 +3247,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2790,11 +3278,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2834,33 +3324,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2914,6 +3415,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2942,6 +3448,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2962,12 +3470,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2975,7 +3486,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2999,51 +3510,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3062,14 +3592,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3078,6 +3611,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3086,24 +3620,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3114,33 +3653,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3157,18 +3706,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3178,89 +3728,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3268,11 +3840,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3287,7 +3859,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3299,7 +3871,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3308,31 +3880,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3345,14 +3925,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s ve arkadaşları" @@ -3362,22 +3947,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "Ayarlar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3394,35 +3989,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Böyle bir durum mesajı yok." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Böyle bir kullanıcı yok." @@ -3431,12 +4035,12 @@ msgstr "Böyle bir kullanıcı yok." msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3453,40 +4057,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Takma ad yok" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Böyle bir durum mesajı yok." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3498,16 +4120,17 @@ msgstr "" "kullanılamaz. " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Kullanıcı güncellenemedi." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Ayarlar kaydedildi." @@ -3525,7 +4148,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3541,7 +4165,7 @@ msgstr "" "Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " "mesaj yollanabilmesi için onaylamanız gerekmektedir." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3555,54 +4179,69 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "İçerik yok!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« Sonra" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Önce »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3648,12 +4287,14 @@ msgstr "" msgid "Sync preferences" msgstr "Tercihler" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Böyle bir durum mesajı yok." @@ -3668,7 +4309,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3682,15 +4324,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3698,12 +4342,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Avatar güncellendi." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Avatar güncellemede hata." @@ -3723,7 +4369,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3738,6 +4385,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Yeni hesap oluştur" @@ -3751,7 +4399,7 @@ msgstr "" "yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " "karakterden oluşmalı. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Kişi Arama" @@ -3775,21 +4423,21 @@ msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." msgid "A confirmation code was sent " msgstr "Onay kodu yok." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3798,16 +4446,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Böyle bir durum mesajı yok." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Bize o profili yollamadınız" @@ -3816,21 +4467,25 @@ msgstr "Bize o profili yollamadınız" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "OpenID formu yaratılamadı: %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3842,17 +4497,19 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Avatar bilgisi kaydedilemedi" # Note: Bu federation ozelligi nasilsa simdi kullanilmayacak -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Abonelik oluşturulamadı." @@ -3866,12 +4523,15 @@ msgstr "Dosya çok büyük." msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Durum mesajları" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3888,7 +4548,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID Girişi" @@ -3916,11 +4576,13 @@ msgstr "" msgid "Service" msgstr "Ara" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." @@ -3930,17 +4592,18 @@ msgstr "Yer bilgisi çok uzun (azm: 255 karakter)." msgid "Change your password." msgstr "Parolayı değiştir" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Parola kaydedildi." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Geçersiz bir eposta adresi." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3950,12 +4613,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Profil bilinmiyor" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3965,21 +4629,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "%s Geçersiz başlangıç sayfası" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Profil kaydedilemedi." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Genel zaman çizgisi" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -4000,11 +4669,13 @@ msgstr "Genel Durum Akış RSS Beslemesi" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4066,7 +4737,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "%s için cevaplar" @@ -4076,53 +4748,74 @@ msgstr "%s için cevaplar" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Böyle bir durum mesajı yok." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Durum mesajları" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Üyelik başlangıcı" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4137,7 +4830,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4148,32 +4841,39 @@ msgid "'s profile" msgstr "Profil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Kullanıcının profili yok." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Abone olanlar" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4201,7 +4901,7 @@ msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." msgid "A confirmation code was sent to the phone number you added. " msgstr "O onay kodu sizin için değil!" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4266,17 +4966,18 @@ msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" msgid "These are the people whose " msgstr "%s adlı kullanıcının durumunu takip edenler" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "JabberID yok." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4300,7 +5001,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4310,17 +5011,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Avatar bilgisi kaydedilemedi" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4329,20 +5030,23 @@ msgstr "" msgid "No such tag." msgstr "Böyle bir durum mesajı yok." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "İstek bulunamadı!" @@ -4351,16 +5055,17 @@ msgstr "İstek bulunamadı!" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Yeni parola" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4373,156 +5078,165 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Eposta onayı silinemedi." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Kullanıcıyı kaydetmede hata oluştu." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Yetkilendirme isteği yok!" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Aboneliği sonlandır" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Avatar güncellemede hata." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Hakkında" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Yeni hesap oluştur" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Böyle bir OpenID yok." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Yardım" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Yeni durum mesajı" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Yeni durum mesajı" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Abonelikler" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Böyle bir kullanıcı yok." -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4535,12 +5249,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Yeni hesap oluştur" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Genel" @@ -4562,35 +5279,40 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "" "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Abonelikler" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4600,21 +5322,21 @@ msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Çıkış" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4647,12 +5369,12 @@ msgstr "Giriş" msgid "Leave" msgstr "Kaydet" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Geçersiz kullanıcı adı veya parola." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Yeni hesap oluştur" @@ -4673,25 +5395,25 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mail.php:254 -#, fuzzy, php-format +#: lib/mail.php:254 lib/mail.php:253 +#, php-format msgid "Location: %s\n" msgstr "" # Belki Durum Merkezi falan denebilir mi ki? -#: lib/mail.php:256 -#, fuzzy, php-format +#: lib/mail.php:256 lib/mail.php:255 +#, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4706,43 +5428,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Yeni durum mesajı" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 veya daha fazla karakter" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "...cevap olarak" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "cevapla" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4763,27 +5493,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Genel" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Kişi Arama" @@ -4801,32 +5533,34 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Uzaktan abonelik" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Uzaktan abonelik" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "Kullanıcının profili yok." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Takip talebine izin verildi" @@ -4840,11 +5574,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Böyle bir kullanıcı yok." -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4852,6 +5587,2014 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s ve arkadaşları" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar güncellendi." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "%s adli kullanicinin durum mesajlari" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " +"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " +"karakterden oluşmalı. " + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " \"%s\" için arama sonuçları" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı " +"ve parolanızı tekrar giriniz." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Genel Durum Akış RSS Beslemesi" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Genel Durum Akış RSS Beslemesi" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Genel Durum Akış RSS Beslemesi" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " +"numarası." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Yarat" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Böyle bir durum mesajı yok." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Profil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Profil ayarları" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "O onay kodu sizin için değil!" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Böyle bir kullanıcı yok." + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Eposta onayı silinemedi." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " +"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " +"bulunmadıysanız \"İptal\" tuşuna basın. " + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş " +"yapıp hesabınızı OpenID'nize bağlayabilirsiniz." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n" +"\n" +"\t%3$s\n" +"\n" +"Kendisini durumsuz bırakmayın!,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Ara" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Böyle bir belge yok." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Sunucuya yönlendirme yapılamadı: %s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Böyle bir kullanıcı yok." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Kullanıcının profili yok." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s ve arkadaşları" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Böyle bir kullanıcı yok." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Yer" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Böyle bir durum mesajı yok." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "%s Geçersiz başlangıç sayfası" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Takma ad kullanımda. Başka bir tane deneyin." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Avatar bilgisi kaydedilemedi" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Yeni durum mesajı" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Yeni durum mesajı" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Geçersiz bir takma ad." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Kullanıcının profili yok." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Bize o profili yollamadınız" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Böyle bir kullanıcı yok." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Kullanıcı güncellenemedi." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Tercihler kaydedildi." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Sonuç yok" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Kullanıcının profili yok." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Profil kaydedilemedi." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı " +"sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Profil ayarları" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Eğer parolanızı unuttuysanız veya kaybettiyseniz, hesabınıza eklemiş " +"olduğunuz eposta adresine yeni bir tane gönderilmesini sağlayabilirsiniz." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Harika, sizi tanıdık. Simdi yeni parolanızı girin." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Parola geri alma isteği" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Onay kodu hatası." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Takip talebine izin verildi" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Böyle bir durum mesajı yok." + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Böyle bir kullanıcı yok." + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s için durum RSS beslemesi" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Kullanıcı güncellenemedi." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Kullanıcı güncellenemedi." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s'in %2$s'deki durum mesajları " + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%s adli kullanicinin durum mesajlari" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Bütün abonelikler" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Profil ayarları" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Bize o profili yollamadınız" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Durum mesajını kaydederken hata oluştu." + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Kullanıcının profili yok." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Profil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Yükle" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Parolayı değiştir" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Bağlan" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Ara" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Giriş" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Böyle bir kullanıcı yok." + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Böyle bir kullanıcı yok." + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "İçerik yok!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Ara" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Başlangıç sayfası adresi geçerli bir URL değil." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Böyle bir durum mesajı yok." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Sunucuya yönlendirme yapılamadı: %s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Zaten giriş yapmış durumdasıznız!" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Sunucuya yönlendirme yapılamadı: %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Bize o profili yollamadınız" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "OpenID formu yaratılamadı: %s" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Desteklenmeyen görüntü dosyası biçemi." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Yetkilendirilmemiş." + +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "OMB protokolünün bilinmeğen sürümü." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Böyle bir durum mesajı yok." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Böyle bir durum mesajı yok." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne " +"duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " +"[OpenID](%%action.openidlogin%%) ile giriş yapın." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Geçersiz profil adresi (YADIS belgesi yok)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s için durum RSS beslemesi" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "%s için cevaplar" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s için arkadaş güncellemeleri RSS beslemesi" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s için durum RSS beslemesi" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Durum mesajları" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " +"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " +"bulunmadıysanız \"İptal\" tuşuna basın. " + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Avatar URLi '%s' okunamıyor" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "%s için yanlış resim türü" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Sunucuya yönlendirme yapılamadı: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Yeni durum mesajı" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Sunucuya yönlendirme yapılamadı: %s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "%s için cevaplar" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Durum mesajını kaydederken hata oluştu." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Onay kodu yok." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "%s için durum RSS beslemesi" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Yeni durum mesajı" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Yeni hesap oluştur" @@ -4864,10 +7607,3 @@ msgstr "" #~ msgid "Error inserting notice" #~ msgstr "Durum gönderilirken hata oluştu" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Eğer parolanızı unuttuysanız veya kaybettiyseniz, hesabınıza eklemiş " -#~ "olduğunuz eposta adresine yeni bir tane gönderilmesini sağlayabilirsiniz." diff --git a/locale/uk/LC_MESSAGES/statusnet.mo b/locale/uk/LC_MESSAGES/statusnet.mo index e08dc4e9c490b7eabb4bbd436a2a91827e526a75..f14bcc7763fa5cbe952ca05e13a7e31328ea8398 100644 GIT binary patch delta 29294 zcma*v37k&l@q4}R>*C|{`F=m&|NlI`*F3N7oO7LPJ7*@}&)zecR=tqL_f6gm%RL-T zGk843F-K{SXH!Ox=Uyx2dORDS^mq#48<-mpVH6(6?)VpW#`aHnJekms+3;nojc;If z{06Jw6|9Jb26#LrJszK@1(8x@3`P}9!&>+z_6XxdEJC`*Ade>+JK`#wgk7=FVAG)C z*pl=@)Q!`z0A`Hwcrs%#tbk=~x)T=U{+?b$@=!1ed3eth%!O-EPre27;Sns3=TP3surH}0ayin3G~00 z$XjHnYd%GF%|*8v!Hq+FKRLs!ElVkY#4<)zdCBJw6*CcQA0BttKoDUkK3>v zR`eyA3#MRIGA5yJyb*Q7EjGOqb)!948IPbE@H=L}TekczY6vqWo8_7pHTgs1#7d-Vp}OvAEQrscF8m5=C_h9E!7o@5D~vJu zJ+M9LaabP@B17!++##YT&6Q$WT)-M-t%I6;ZEzVTBG>kWrJ9~dMfKPk)OB9NtoRnH zhu%TWo!#igbGH00X4Lx6m}YLA9aXUys;e7eUTljR+y1DrPev`X@mLg>qL%Mls7ZVn zwNE%q`C?cS)v$)B9&CZSPXd}_J<$!-fOsr~voRm8M%CM9-8G5+&q2l^GOFWe=*0)9F7{3~UEC0Lq24x~ zh?=x>(TiKK9Da`K!CP1i3s3QQYGQ3v`Eb;A7ok?c#wql_X6-RDG=|sFi&>sAv$`Vc zMqO+=4RwPTu_*3AjpZpUj<--ll5eWXuYjuG4wXL=E1(bcKpPcN%MM~Kyo8!0#b{U! zY-<}h0ZWixg?h5xHhl{9B!8f8RA`#nz#5?H_d}JBLk+=;SP(bcwC@8V<;ggMdIHaM zGnq=D(zUP@c0*0d(Wq519@R7RF*JE?{(Gn~K8afAU!yjtf-}s0ilH{JR_N9GPbLyc z#uC)J-Hs)3FRB4wp>BK|bK(P319HwZJ>f-dNR3fl8*lTUM{P`7P;=`9sz)=-GCO2l zEU)$7l87e7NK_ZiLUr*9o4*4!R-d7k*-w}S@1dSN<7_jwg-}CT1$DiiSQ-== z$FEQiauo}6f6w1Uv}fm=V{T9iGm@@@s@Mp%e%oVcOi`0>9BQsCMJ?OCs2hG_^RJ^C zUi4WrscWLfzNd90`t+pJiKxq0qguWfb)i$JS$hXnFV|dCUI}%f)~NiaPz@W8>cQo< z{0*Cb(E1Ik$L^sXIM+P-Kb%O>c_yPIszN2yoM?=Cf~QekKMvJ13sCi*$E>&>v)~p~ zPX$ru9YHPYZ%~u?FVuq-ns014pZ?dA3?xHOkcM7--Wouae~IeiUr;@D7xe^1pEEZq zhq_TyYhSEPdNdBkRX7~~LG^Il0<$W7J|bDkn1$tV5$3?17>4hmhTt&j$t>cVf^{M|PH0BTtt zMK$0@%!$9F7d?wi!y{4Wm&NQ@4fP<6a42@eXs!PpMEa3&5vyY3#msyhiC$cbQ}7T@ z#->Y5PwYlD;2`QrKE+D-16Ib|OU+zpgnIH0sCpx9dOB9p`d>#Ro`O$Mv$yW^W=uPv z#%c&^@=ZZ?<@2ZuZNj|xp7kWE{?F*eFxTvOWl%lT5hJiaYOamKyxiY2kBC~l3Txs~ z)Y#p{Y8bZ6Y#cRFC$_?U7=x-;YPosxa;OG$#~C;ZHKf;2LwXa-;yu({ihP0o&rGB| z5oJ_Eja41g2`%sm?0`}DJgUpzMLp4B)OjaR4LfV||3W=!M!&HTYS~ppJy0hsk5l~g z|4Jh3$rz2zR+tuVMcrU0>IvV+{P;0ez;96-PnH+Wkd?(;r0b(5-4j?5dteisf|>)n zu?n6;H8}H1`d?2JMJv=3HLVS?2Ipa4^mbIe16U8g$6{Dy zwHd-XsGewwS{);>HM&>;eP@X139g~Wtl-OL{Z>GYZDrI@)Ijw}Gt^M@M?G;8mcXf~ z3$8*ncsuHP`>pAikMsr9dAE?E^?5R_F>kY+n1_N2s0%bebx|AClP92hW+LXrnKu6g z)Z}^8P=Uu%Y>lC>2U()u4jL|v1HYVjIW7jHu~WG`wp97WyuIO>Ui zu!gNOPvk{CVRh7XTBCZdk2MxG7gA6SosPM=zvp=(dcs$*Aij<2;v+WyE9=jw3;t;h zf5pt^2vnCgMXmQPsD}1LHDnm-dJ|CBUx>wVJ^Iu&hlr@f5*yLexvD`o~W^X64fKgsPku_ZnPM^xYD`@Rqs5ip6@yl-T0n0 z#~bEG#Zg1j9kbwI)Dy(p{A5&*OvOyNz@}Z)PPq>CV7pKaIgGkbI_i4gVR^0p%eElm zO|z3lVmT_bLUr9p)Q&b8bpb!Bt2dx-ydQPL!>9&*ZT-dO-$C6lVw1UEQH&y887pZ0 zcPCPpj7g{`+=kUKh&AvMR=^@}F&x;^dI`6XUa;BBfkq_Mz*eZq*Ar`E0;&OPFgtEU z4Z#k{{XHKN(UY9R%=kU(i7wl;^R{{7tmq}*i)FC|s{Sz4g_AHBPC_l`d8i&-jk$3P zsv-MP_xliiYRP9rw2Zz-t<$^K!duM+>R@j2+oGPV4@P4$GKQX)F)JQHH6-179(CQH zQ4I~-X0DeFwR(zeqyN>SMr5dBYt)lJjcVaI)D53OUHApm4PQa6hL151K0wvav)#;r zLa2=@3Y%hc9D_boLvGmeJKO1h-5`I!oLCh#xf-G7LJ!mp`k|Ityv?7A>grh-jxMU6 zAGNGD+VoD;K5_(g-SZfUH!%Yi@a-@yFN%4|h{R4<8yDbo)QP!vGOief9dIqq$6ruA zH|`zNLrYK_+A5pgjVeEaYT$R6A8()<;L8*=CuB!$krh!DI-#C02DPk4qb@WRtKkaN z1&^Z6JBwPT_pm+|e%Gw3?pTBLT&#t=QOoZd(oml#|1P#gGHRj<7T^=O9o1ETqsFZG zZZmt!q9$Witb$EYYc$-TK~Tj(T(!%G3&fG>Iny8 zWn74wT)R*=Jc!ltSImYb_nOI85et)Ujam%@ZT@i7jb~s%+=x2w0Ory9|Coqc`V|(! zOIQFOpt`=mKJ!FnP+eXhRj)l3#~9QkoQi7b3{(T=p;niR>VZ|*1=nF`{0)6Yi8S4B zZqOf`p@&3xxlYDhJrGmoBd!pb|ifrH3=J~ zn|1yK<|f_MItcTSPPR@%4dGH$&%J5$kDw;^X`B8XL*M`5$Iav^hU%)S7>)xl9}dPE zn13@x7F(Ns! zA?Cq$s2ldjNF0G)oR8&j6Y2(Epq}hktb+MYnflE!6X_xN6UL+JcROvaKMK{*DW@5K zb>Unx%HmP<;;*PllEWmg9!1^YD(Z&L zS7ucdLG@^3EQTGiE)Mq*Q3GDaBDfDL;%O|54r@e{u_&qmB~cA)jGC;Sun$hg-uMNo zCn|hxCSzADN_sq2!soFD?n5=$cil$vePdc&4>guuu{=(}I=CLy;&a#$Bfd4CRs*pz z=~dVRkD?x+*moY!G;D*_@CbIsTd4Z2zYh(u&oi2c#(o#Jz;943^IkA>p*5-jai}MI z$>zU@y3s{^4s%{K=e>xiDI-wV8QVmC~+bO6UF0tinQRf9v%lEKNpTbO}e?~pfb*zAeE}K=<9DQn88zR}T z2WH2CsM#8iS#SbsRZPc>xES@M%dr5yg{t=+E_C>>X;_wY|6j~dOvUD;SK>1K$~yWg z>t82k{MF3LTsVhxbIgt(VpBYUeK7AeQ!n2755gCtZQM z!5J)t;djlA%An>-CoGBsuo{j>%_ZLkB5KhdEQCLxZg3Cv1U2rNmrFlXmyJa=IDoqF zA=G)tZTd25PTj%onCTyu8umjv%d;O<{?2{2bMEhXpGadeT0Y>-g+6OJkK+lF{?t0# zarECNJx#)#(7*FJfYV5ag*%?*I1|-lMKYN3##oQE&!&TTj`ZI+3r}WrJW-C1Kb>SU z7n+vY@$i2hCyOy_RwvXG5!sAwu^T5&#%A~lMq!TZPUshwnwW|7BvjW<$Nab)bK#q) zC*Nhuk6=UY?>VOk7Rcd*es$`GUefb$48Dna!s0oN+ff&4m&*zLj@TQud@opkMU~%1 zEz^v-ozT`?9M!;N%#7pEr;TGO5sl#zEQT9x`U8A|^m%N9W%D?pt$8GBk}kpy_#P%; z&Il(o`6gi*(kpQ|?#BUGF0T_>9WzlqxH&KV--5`mWGuyM`5ez+JcPP&>HLmo9gf5_ z%u&Dzy#=SEx^xYCaSN8m&u#iI)cJ)AI-bf7uV`c%c@`9MLjQ1KVPPkU)g$pXy#rPMThtT(j2h|+ z#T@f5seD8hkg*!;Vx{6{4#c4L{*|bPY{oix7c~?$N;u}dj=JFUs2=$gwF=Iomg@u5 zkTxmlc%H`osPcEQIQqUKq8r~vU8q_qGlnBkd-!}*%il(g>2=ggCZE?#uCl27Mi`BQ zFcKGGecXzAfXg@q>qT%ziM$`Wk9({EXAMzo&XdC-jfbwxP!IHl||LN{(k3u0!=q z7G}~@*vh&FwQ=1=HMD*eC-e^zr&vEhy*r9mH8&iFT}f}jC-FYk<^G=j(WdK`pl);k zo8#Z;#YWXkLk6I__10N!%NmN_D4;=WvIFG1!^u`L|r#a zU9(zx)MfowBI6k{RBKo8#jz`Tb_i=WAlRxGw4fqp%%r!e#geR>XNt&4~eQK>8GFRpe=AcD_=m z9(w|{I(lFkOhXOL3T%oeup{PeZtD4-CeoaYX{aYYgf%gH3$rYnqMmp$>UH|1P3LIo zg#MV+9cz%k7S;7%U|THL%AB8wYQTPMiFdFMHf|jnLZ8Paq8t2(xvtO# z#4A_?owjBuieX{WWiclDn!Z&C!m!9f_& z(edoSG1hXO%sT!G_5RM=*}NNypq5`1R1c+~o@^c##TQU>VjGsiy*7Ow)svUd7wXb3 z=8L5m>V#^jCunFLiJFuvQA2eRb-@Z<%`$6;dOP+dIvnx?Aqw}bj z&+V?Pe?38gZcga;`lnDIm4i_gN240D0Jq^@?1D+%9nU7*hutu~hZFiI9J^7gqij!l z#NodqSjYA8Te{L%y}Q&++()d`-p-9NWjV_%>?t<>_m7s`jY$oQ9gkYw;vr zMD@h3e&*$K7PaN(?r&aVZLt#RG*tc?n|}(mDl+(qG ze~?*bCs8f^2DPOY8Ekg4N~p=!7&T|wqc)^on21ABbLKeeL#AkqnPXK^=e0oIo<2_( zBD&#os9F1pP47c(v0tKgz`{dJLs}xA@SbO^GlrUmJ{#+VdTa@XW<6?u*oz(TB&sL8 zab~COiAA;kT_QSR3--rdI3Dv2b3D)Ba~OwNhnu%rGU|yoqk7~Z>PE*g8n4)Nkr8H+ z)x@#n53-&_Jy^$hRsr|-ELH^HLVZ?$gxb6R!8#Z@l3C3Y_eFK-(oyD#&!HN25%XdD z1hX0jVkGG;s0OCn^!KRc7@p{a{+d<{eVQzNiRepaJC?-j*aLGVnJ=Lje1-H$tb`Mi z&1dwhSe^83%zza~o2@t+wI4J_eLwWTD0~(*#G6se`sirZzaqEEP#0DhV=mYNm7ju| z#jl{A=qzfI-9@eQY$;|{v_{=91+_oSMa`+xsPnF&#y(G~Nw-3+p14%jzit#HV<=ui zb$Q1$bK~h)pY*$^^?w7^QzgclF?|x%1L>$6Ipd6FP*2(hwQL8Y?z0HB;q6E58yS4# z&4tTayP@7*Q_zcBP#6B(=HIZEnPBpJqZ&9K%i&g=e;PFz?^r8LG!5vB!^wZvrhV6m zX!e(yWGYm$K8a<7Dy~Hlrw8M~UE)_&Iw3;2_ z?x>!fZViNF{rzY&3QaRl+TJ?H`o7gO-IO;$U1*Z^E$cU^<(p@Q`P6ES8uOVr76Yj7 zfQmCs1IJ(ut^fH%^yGU{W9XUXg#IK`9`z*Mup!1<*P}k$zeU}k*lg1S9WgYkQL841 z)A1TUi=*e5z5g~=ApHP++FC0-YhJrOP#eS$)EG`et>3MvF8&d7;{#N~a?dq$paM=N z-3~Q$AD}j#iYH)`)p#8Ar`y{p&)t$SS`wc#8=y)c&G+Pw*`2#1*Lb z{(CqWGcGh;I}CNfpD_(@Scfe#L-7@|5Ij{E8{b%BjC$U@L)Q6R(}g=wUHv6a!mP{8 zg=e8={X*23tw-%-pQ3g`&vMhy+^8Y*q8IyMTO4oQkIAGnzF^K9i`syEvxw+}Vm<1~ zKe6fGFp_j(zd4~HYM*G2YCtdRv)0|#Ur`P9t}sK{9#uaXHFU3_Ch1jV=zX51FPaaE zzSeluRy!H<;s#VpccV@`hg$blR+_D~1*+l6sGf3BlkH8^7Q7$(;8|1;Re#CUABK7K z{+~}ov;HO2M_~ZR<9B!m`>iq!>9N|Z|2R~=S5Pm1JwJcPqB@QNuf_Npnbw4U{^3-uwQy*>t&o`dypDXKvqS%1OIq;tMz_WAvi)NkA^sg{Q0Q4cF*RQ-N5?SPL{U83H`I!t*B3~1{;k*>_WQE8|H?y zusP{{_!-{EZuse&j%Nv$++@Cn-$v~hIo~oHRZ-NC)xr@t81+-0k|ZV*GO%|}FI z{2OZamf2=LG8IPA}%yoyL*8Kt0Q2dE~almeUb^G{zpNJ;eajSQaSuV-e)7EBt&50XO>-d397u#nV zoQhA9{}MLGTR4E_SZ}{^*#WakZXDz{F7hiJLgt^R<9p`6NF=>)egV0Ox=`m2oX~&S z+-R+R*o@&p)JJ88Bj(rYnyAT@hNJLnRC)Uk&7Wk(qxOemsPY;|jjPc&g^a8pnJ%4! zlSm)ISZwhzT}K07N9CVCX6*Y37bgD;TtI%g&z#V|f(c+R(p^6{b7Vc%BYhS%1QF?G zV|xO%TE?fd{#D@`8DC(z<7V>Q!Ad&e3-gObW9&h?1wP4*m*Ei7*H0LGeCc?$lHO?@ zcG7$w6gp*=VI9;4*BZSTkEL<`Df(X@5}V1;r_?c2OYhnWHBOsZ+Y7ZSmY^o%ZtHFA zN4oAA#}kf=u_3ysW%e1i!1`y+Z&H(RFzIWUfL(p(%%8{iqE5*6l`#!9X5Uy_pEo<% zo2VPSkDc(owd2>OVJlD%a0;~yb9`e~M_E*UAAAQFptfpXt8dN5lZ;wcb5I-25iE{p zu{z$umRSBf<4DvHZN_qV1|#tSYMDiTZ+dJlYTa+Q>1)=)7eZglK2J*`>e_Lr9dIp< z4CCt+JCZK_qgh@_sPY$ZDsILYtn!ojtJxx4M*13Reb2mP>V1XUDWCk=n2dVzSvXzm ze`_eh26Wl%$vaRR${Ey_neB?{fi9?gA8H5OX45~RzIqG)VwPP!RFA}=&R>9iFde&N z`KylS7EZ)&+}|_$SM!92P&?jb)DBkgnt9@$s8uo&hvF;P8#7%u8_fXgYSa*ZgPE}8 zZ{`y$3e^K0Q4Jc5+i*Sl6zOxrOpYwS8=In@C=FYqi|W!ds3)&}(-?=Uw-Pl}yHE|! z_=ouq5iM~7>CLzk%l&EoM0+0FlkRwn^*@Km@>`B)8W#V{{HNE|sIh(Rwi(mRcgzJ> zSu_7_mR*YV7^;C~@0yp+6jaZCfLc|p@0r!H1xJ&Zzx~!$Q|vV!eV|hOIM% zg*K!~J|fX%tic-i87@Fi#<0+@TnkZMz5zA%=kW$M&t$BbIV|)a7RqJ`3w==3#VE?3 zM7>3)p;p&MjKD9j5dMG#(07lBey7Wu)nt@LeL&PljeUFTBGmW52`q)@u`u4lqF5kX zSZF7$j=E77)B_DhO}^)`CT_6#=aBpI|Nosm%tMcPCbQ;s)XTt|Eu6n-+H_%TrV93m zBfXt+9eO7$v~f+aS;Sw!kSc zlPRx7Xlu{^4s+Ub7EsqmTyM*}#CH+ukiJa%CF;FSJWjiWmd9IU{6dA&T=emy0(plB zpHX=W1yhMvCDf#TZR&=jj@;zwXiB;xbr+eWXFGmM=uY`u@@G>13PDR=$FFMP1bec6 z+0>g!$2=;HB0N0S6M2I4A)Ap(`~_S7fb-uZ-h#3X#0S}YRUJvX1?e#RU}cGqx8;0; zczoqZT(lWEsjM~ra8lN_`MS_cRMs(zI^kR_H|gA%6 z4!yQtxAl4v-xC%Z9X>Y5%*e&6azd(Va?ByVm2i}x*Qd7QQPkT<`VZof?$UOJd_R+F z%;nR`(XpDej>Xg*LcBfkO7_`1l75{~)HWehksm3X?~=ESkZ3c%v~`Y9cKEUS9}}-j zUJ~_ogfV>*$@qjsZ$hHI`8?wJh}WU)dBUHh^+7&^u#1zwrEESvJkHw42RPea<5w(g z>%?*m9W}@+Ltah$K<{Y!>Zn9PTl^GHU?(bt5$cmZz{yLA7b3nHD-k9W){;I-*?sE2 zNcsWcbApb(l>1qjWZ*37)jVc$i=y#=l_k0e!_Gzb=0Hc zYOKVGPhmmatpbjr1ih}75Sl!8^YN;~c~9VTxRr7p2Z-y~i^U1u2%mGG_f2+P&nZq= zOyVap&lB%T{J4TW@dxrB9t~_>UibS(`FxunW@G-xn$nu9Eaj}vQAcIU`jPHy(_8RE zuCx%Rk-v;O8Eo0h#A_1G*=M)5b#?{OCaa_Xul=_uxkT?D-2we?{Hl zsN-Gz(A2rA2**h(9-_kgoYcj(Q2ASl&$j8}IEcJ;DtPP|L%bPf>737Rd!CnxXQl@S zlm9Gvk00G_T7RGH|204UCRCuZj=$`UdfQ4@@EYNUeTwYVnMa@XlB!U;+nqmCNnm*LJ;)l~Av*sH3nHDREw*WRl9Nz|!KIB4_q z-S|1-B;jfDhI0M&1P)*5KZP_j3C}O&{6YL@D%~L7fS`}Z9=1G{{86NJtmFpqXy~|0{B6qfDT8=7!Y0yVQAZoXH(cwZha00Z%Tss(JJ?DEsPGN(Oyrg1LZwOT zI8RA@t`ODWp47@ti$xIG(X}+fmN1f}Uu?Qt~cQZw{e8!8eCY z{W+|JtxVL@hm%W^uOpMXkfXk}n!P~{>c2pkLAoDiqkeblT_^oq=nST{^*ZH$5On0B zUKOsDPWnx~7zdjC(9ca|7Nf#(F4Bz9l-#c5Jw@1N8+4U;OTwR&>xd`*3L&>mdx^Iq z|98}1yL4=$Y^yzA>E|dbf?4>z(sPHxWD*tdI|^P`4UW;A(2#U}Y++BXNO}|XbR?2j zoVa7l3h-1F&6VbZzQBntvI|yvoH&gic{>u`hX_kT=bq z_!1|4Ou7bT`g7by@}uxmU5KL^AqVBV2y;U@=0{ezKwd0i2j`r`bbN;Md_9R2Bz*kX z3CD<^rLYVkGx6+{mq9O2_$+xdZQYK<^%u@RDPKXTPP_woI;wD!1oCtg=Dh1zlCl_^ zmz_M0x}l$4sa%7Mzd|YVgTE0xI-Vk~|KZ64)cb(2GW25n&X%_)=PosNkbaS{+~!Zj zEtEYxN)s7Cc!s)b3EvQM(WKXGg;=a*>wiF*jtIhd!agN9HX8I#Q+=WTh;o;VO@tye z?<-p<_Hp4gT&x_16HbxWhl_qdTt^dogHsP1X!C!jtO$9<9_EK?n;)6TJ3@FhR97!1 zj$$NklUa~3iTKm_pT|)0_Y+Fmvi;nAKk@6Bm;6`l2~DsQ`QJ2Qq>#TGA0C~FU!wda zn=zDlGUpZJrmM(%(O%Lgq!CQop zTx16IniEcOPDNYplCR?h@^qBq`hMaQDUYV^Sn?W@_W<91xOKE6(Vj|^>_td=P7`{P z9>hsHMo|70@$YdS!6hsue_^PUp2KGdL3@o`HlM%aJvwr5{wz|j**Zhi|6h|ROFk{&iZj1NGtBxZ{pTvx$n-ec;uW_FA&%|5W^eW1- z5Nc7k5M@`%FJa5}>Q53)DA2Ll`XTXXTJ8`Y9?Ll4K4A$L;?J9&^@N&)!-QJ4UKJ|$ zCA>+eclTnTNUXSTfoW4q0+TfXO%d{hRrd-E|n4K`j)_o5DBz=*xD1ExzAi~4 z>CXsj2$x9rqD;q5%tszso+-Ejzb8Zy58~rT5$d)ee?H;iannY8(}--R!Z2Nl;~tg1 zwDD!QigW|QX+lTJOA?L}ZcsLW^STj#cnqP=i}u{|#B~IyqvNtQ+LkXO{k-|ZG2=mn zakfGi;wLzHGG?T5dGdd^Cw*t@G@?vLDe~(+Hcx&aZzXwNTTgY~=2~x(o=NzU^g$d# zQ2XA}_&4B$FUdGf7)Z!NK^S@Wi1#F(0k7au+=U-f_VB1q{C)BVVg<}e!8+p0xw@A2 zIl}X{@@?|!5r3C@kuD58rp`3N4MHix1oGxmmS*evx{#<%VmO5lk8eqrC$We!9r;N2uqRA1 zS)reE9y=!wjbBdvgM=@rn-hPce1yG55`IE{D&ZgU9l|vhhG)FJ@Gp*=)NyGM8vQ_2C)@npd((t%Y zi8n4WCO*L%6C0ZnmzwHLPVpusr^OG89~z@Oc#}tqRBue0H>$onv1uC zSfP1TYDG6g_pP{Zg5^`qwbVA^wxxm3d*lprhxbY>G9)II2jH30M#OpB zro_d0dnOM{8y}P6zBI9P#vAagyA+!^#ITjQG>Zpl)?9$Ipw>jgrc9?&#Q< zG`nAzsbyQCj(4lY7j{!d#)mOLCr1u)+`4$TWM;v}4P$yH(Xrmtm~l)vk1f#-_i#PC zFC{#YIW)8Ag5wG8Ylb$J(3&xG?SGqkp4Q2sYGx+8*%K${X+3syf;K_+VfMqJaqjHI zilt)X)4VN06U@^_al40jQ{&Ro*o*_45>GgpO#MJ|az3Yc*A{KP!`M@!Qax?|6}Jm@ z+UO%s#f(c%iBIE+*zKZHy%k!dB_~$&w2fmY(s{%Fv%E*op57YK)&IY$)TD~rXiQ|E zhYS3_T;48!Tl&9T{C`%^r2{?2RCe6o#+1sPkUTs-$s3w`8U=Uql%npylxg{rwFtD4 zvWuj}BqZoX_Ek!;ha1!NlrC=B)QHU5ZlhQebyCmg>-=bgAIBRhW(Z3=kUQ-+$DJ{D zWZ+l+4QV#5poXE%CopmRx8XS$mZa1;Pp9~#QK^AGlXHc+wbDwvzf9@C{2u(w>WnS4 ziMf$eD-l|h7-iNEyDV=z3e@Flq1k)}O?@syD(l+)eri3<(PBQY>-ffIA2Lzn5~>pz z&8VUWfq#YTJG4Kq6A4ps7|j*c73`!g=qy*gu&J9=iJtY$)Z<6{Fe zXO?iXu)B{Sl`H`4d`X{HbU`(ZkeWHn zu89AvN2SM>)PF1euPu3ax+;Vowc6ZPZkVs2nH)vjQFB*k(j;e_`DbpmiYx>^(5f=6 zLSHoAp-eO8Q>-^OK1HvXhj0DpK)HDv!vg!B8|q}$?Bl%T=)j!?VUAmMVR`qNg=txO z#Es;P($Q|^g%!ytUz|-g^lhZ~P_(!GFnzdj-Pq9XyLVw}-gN(}P{lixjcXKntIUNi zOk3^VUN}5+a%$*B=MG%7Bx^6b*Yb6_sE~VgQRRmVGuPsJnNyO-#mB~_xUCkK?$k4l z7j2?9v?1A1?KXA@H}L*j$)jHUZ-t>l-vTf)Q$L>rm^?!}B?4E2RdE&i7IwE6Cn%?2wm-&`oQ#jzP@j32G zYx240*Hj5t!Iia9f#|j2j=OwqFPm{cpSM@aL~qRSnD`{V=@a7ku8DRBt*aWiv~Dn8 ztn2&!-`~gPTRPD6wa7=!`{eZ!fk7KKJMO8CwcNUCrP#zvRPbn)ChB*9*heqphs%g= zPWFx&%S2C@=$3h-P9Vn{$HJVp?wL(qclV|Nh4uQ-Q0PO!{GMY!iL<`dxPbW@_}7O( zX!rvy-x}j&=B1k$lNRm1zIkFHy?c2N>kaU4bF9FYHc|Q>N;O}w=GPVT27kPsr?*?~ zsgjXonK`5R>FFK%l49bT-{h9cEskr*x6Kbs4e^Nbc{-G5;A`7(sdAv@v0{$@n%}AK z|31RW?+-*cmEE_GM!8Ln77slA$tuTfajb%S^H`|@?{Za-H~qlzY3ciq&pQ4>`kvzp zJnoHSg#&p%YZD&Wn%>t5bUi*hv)l1>Iro<@y>8w!e+9lgbHNErJ~!V9B!AV&ao3!$ z=I>s`=^6O!e6vh$or{tFv(25tfvAgrhlQ6;U+cfo#3|sG{Ar@w{wII-b?FDv-#tD( zeSi9H|M5IdKKJ)CYVtTWJM+@?Jt}Z>-7Fm#cPTl{pFPSc=8pX%kNf(i$~pb%duiZ4 zPM?wfuDj_)%5L*_O9STuhT3%_;+ciN?6t<3}$E!_@_oW#r@5r zoOk_0UUjAhZ%5Hx{=$u%BL4IzoDBXl<(;|C8vpl>Q_|n7ymKrVR>5hV*R{! zudD4;@wcqwRQ4aK?QHO`tnK9RpRME6@XxK|yb!!z$EoQkGiUIAUFWb9Tv*?kEf3)y_kc079(TE%U|BID)>;eZHIS2h+$~y!7 z-s(=NApg4`%N_rBO`N&@R#}{a{^+buWB;0_PMzTDrq1Y$!9%T_Y~jH^ZJkzO!4gk6 zQyl#q6qb2CTfvO<{r;uQ#vngp96$f-5bOM-J2K*(Iyy=8>{}h3PX5Ckom!zEL1O#E zA{eh7c6skk*UsXf*2PKl|1ig?8~me-^T2uZ>@EF~<>`f+-Iyj_x;vkQCWyat52r@3 zV-F|H@$YNxWDRcZrCzVq$nge;^mN9CWnDwd<}xpLyPq5=mo5EK(tonIGa#6|kMl{m zKlLeQ#&7+2{uTY5)8YR*$DcURsproYsN%&`;moMHM=GL&?G{knE26{IjM z+}~|J^EuZdr%`akLT6rBXs_~LU+ioR#e&tBI1NJ^SWW+Rzf(tK+t)sU_)yTa+6$-m-7nq1{&XIpUA%TA6=!HVmhEaAb^uRE)p z!fPIX<9O2pcE5QyIA)`>z~Kd3Bv|$hW~RUNCZ|mnZ)h{v;ni~$^5@RuWG}Ru-C}S0 n*5k{(=|OD@$EP2kaeQW^fBGf{j2|^0O}3(8%*1V*oag=@^J}`d delta 21047 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 diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 55cea21c31..12187f589c 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-03-12 16:19+0000\n" "Last-Translator: Evan Prodromou \n" "Language-Team: LANGUAGE \n" @@ -20,14 +20,14 @@ msgstr "" "X-Poedit-Country: UKRAINE\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Потік пошуку для \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -40,17 +40,19 @@ msgid " from " msgstr " від " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Оновленні відповіді %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -109,6 +111,7 @@ msgstr "" "Щиро ваші, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s тепер слідкує за вашими повідомленями на %2$s." @@ -131,25 +134,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s оновив(ла) цю відповідь на оновлення від %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s має статус на %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Загальний потік" @@ -159,34 +165,48 @@ msgstr "%s Загальний потік" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s з друзями" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s загальна хронологія" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s статус" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s хронологія" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s оновлення від всіх!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -194,16 +214,18 @@ msgstr "" "(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться " "інструкції щодо підтвердження вашої електронної адреси.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** це сервіс мікроблогів наданий вам " -"[%%site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** це сервіс мікроблогів наданий вам [%%site.broughtby%%](%%" +"site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** це сервіс мікроблогів. " @@ -216,32 +238,37 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів" +msgstr "" +"1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів. " "Неодмінно." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 або більше знаків" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 або більше знаків, і не забудьте їх!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 або більше знаків. Неодмінно." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -251,6 +278,7 @@ msgstr "" "затведити %s для відправлення вам повідомлень." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -285,7 +313,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API метод не знайдено!" @@ -308,16 +363,23 @@ msgstr "API метод не знайдено!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API метод наразі знаходиться у розробці." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Про" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Погодитись" @@ -328,6 +390,9 @@ msgstr "Погодитись" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Додати" @@ -345,28 +410,30 @@ msgstr "Додати або вилучити адреси OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Адреса" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" "Адреси друзів куди надсилатимуться запрошення (кожна адреса окремим рядком)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Всі підписки" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Всі оновлення для %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Всі оновлення за збігом з \"%s\"" @@ -376,32 +443,39 @@ msgstr "Всі оновлення за збігом з \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Тепер ви увійшли." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Тепер ви підписані!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Ви впевненні, що бажаєте видалити це повідомлення?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Авторизувати підписку" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Автоматично входити у майбутньому; не для комп'ютерів загального " "користування!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -411,15 +485,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Аватара" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Аватару оновлено." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -430,6 +508,7 @@ msgstr "" "списку контактів?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -438,7 +517,7 @@ msgstr "" "спамом також!), там має бути повідомлення з подальшими інструкціями." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Очікування підтвердження телефонного номера." @@ -449,6 +528,8 @@ msgstr "Назад »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Про себе" @@ -456,16 +537,18 @@ msgstr "Про себе" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Ви перевищили ліміт (140 знаків це максимум)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Не можна видалити це повідомлення." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Не можна прочитати URL аватари '%s'" @@ -473,6 +556,8 @@ msgstr "Не можна прочитати URL аватари '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Не можна зберегти новий пароль." @@ -480,31 +565,34 @@ msgstr "Не можна зберегти новий пароль." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Скасувати" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Не можна підтвердити споживчий об'єкт OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Не можна полагодити цей Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Не можна полагодити цю поштову адресу" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Змінити" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Змінити електронну адресу вручну" @@ -514,11 +602,12 @@ msgid "Change password" msgstr "Змінити пароль" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Змінити ваш пароль" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Змінити налаштування профілю" @@ -528,6 +617,9 @@ msgstr "Змінити налаштування профілю" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Підтвердити" @@ -540,12 +632,14 @@ msgstr "Підтвердити адресу" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Підтвердження скасовано." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Код підтвердження" @@ -554,7 +648,8 @@ msgstr "Код підтвердження" msgid "Confirmation code not found." msgstr "Код підтвердження не знайдено." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -589,20 +684,24 @@ msgstr "" "сервіс." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "З'єднання" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "З'єднатись використовуючи існуючий рахунок" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Контакт" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Не вдалося створити форму OpenID: %s" @@ -610,35 +709,39 @@ msgstr "Не вдалося створити форму OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Не вдалося додати користувача: %s вже присутній у вашому списку." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Не вдалося додати користувача: користувача не знайдено." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Невдале перенаправлення на сервер: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Не вдалося зберегти інформацію про аватару" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Не вдалося зберегти інформацію про новий профіль" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Не вдалося підписати іншого до вас." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Невдала підписка." @@ -658,15 +761,17 @@ msgstr "Не вдалося перетворити токени запиту н #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Не вдалося видалити підтвердження поштової адреси." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Не вдалося видалити підписку." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Жодних статусів не виявлено." @@ -679,29 +784,38 @@ msgstr "Не вдалося отримати токен запиту." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Не вдалося додати код підтвердження." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Не вдалося додати нову підписку." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Не вдалося зберегти профіль." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Не вдалося оновити користувача для автопідписки." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Не вдалося оновити запис користувача." @@ -717,42 +831,48 @@ msgstr "Не вдалося оновити запис користувача." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Не вдалося оновити користувача." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Створити" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Створити нового користувача з цим ім'ям." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Створити новий рахунок" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Створення нового рахунку для OpenID, яким ви вже користуєтесь." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Поточна підтверджена адреса Jabber/GTalk." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Поточний підтверджений телефонний номер." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Поточна підтверджена поштова адреса." @@ -761,23 +881,27 @@ msgid "Currently" msgstr "Поточне" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Помилка бази даних при додаванні тегу: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Помилка бази даних при додаванні відповіді: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Видалити повідомлення" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Опишіть себе та свої інтереси (140 знаків)" @@ -785,11 +909,13 @@ msgstr "Опишіть себе та свої інтереси (140 знаків #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Пошта" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Електронна адреса" @@ -799,39 +925,43 @@ msgid "Email Settings" msgstr "Налаштування пошти" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Ця адреса вже використовується." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Підтвердження електронної адреси" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Електронна адреса, на зразок \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Електронні адреси" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Введіть ім'я або електронну адресу." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Введіть код, який ви отримали телефоном." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Помилка токена авторизації" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Помилка при підключенні користувача до OpenID." @@ -842,39 +972,46 @@ msgstr "Помилка при підключенні користувача." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Помилка при додаванні аватари" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Помилка при додаванні нового профілю" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Помилка при додаванні віддаленого профілю" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Помилка при збереженні підтвердження адреси." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Помилка при збереженні віддаленого профілю" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Помилка при збереженні профілю." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Помилка при збереженні користувача." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Помилка при збереженні користувача; недійсний." @@ -883,6 +1020,9 @@ msgstr "Помилка при збереженні користувача; не #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Помилка в налаштуваннях користувача." @@ -893,6 +1033,7 @@ msgstr "Помилка при оновленні профілю" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Помилка при оновленні віддаленого профілю" @@ -902,33 +1043,36 @@ msgid "Error with confirmation code." msgstr "Помилка з кодом підтвердження." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Існуюче ім'я" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "ЧаПи" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Оновлення аватари невдале." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Живлення для друзів %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Живлення для відповідей %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Живлення для тегів %s" @@ -943,7 +1087,7 @@ msgstr "Знайти за змістом повідомлень" msgid "Find people on this site" msgstr "Знайти людей на цьому сайті" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -956,6 +1100,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Повне ім'я" @@ -964,23 +1113,33 @@ msgstr "Повне ім'я" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Повне ім'я задовге (255 знаків максимум)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Допомога" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Дім" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Веб-сторінка" @@ -988,21 +1147,27 @@ msgstr "Веб-сторінка" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Веб-сторінка має недійсну URL-адресу." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Я хочу надсилати повідомлення поштою." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "ІМ" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Адреса IM" @@ -1012,7 +1177,7 @@ msgid "IM Settings" msgstr "Налаштування IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1020,7 +1185,7 @@ msgstr "" "Якщо ви вже маєте рахунок, увійдіть використовуючи ім'я та пароль, щоб " "приєднати їх до вашого OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1028,7 +1193,7 @@ msgstr "" "Якщо ви бажаєте додати OpenID до вашого рахунку, введіть адресу в поле нижче " "і натисніть \"Додати\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1040,25 +1205,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Вхідна пошта" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Адресу вхідної пошти видалено." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Старий пароль неточний" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Неточне ім'я або пароль." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1067,30 +1238,31 @@ msgstr "" "вказали у налаштуваннях вашого профілю." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Недійсна URL-адреса аватари '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Недійсна електронна адреса: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Недійсна веб-сторінка '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Недійсна ліцензія URL '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Недійсний зміст повідомлення" @@ -1105,13 +1277,13 @@ msgid "Invalid notice url" msgstr "Недійсна URL-адреса повідомлення" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Недійсна URL-адреса профілю '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Недійсна URL-адреса профілю (неправильний формат)" @@ -1129,28 +1301,35 @@ msgstr "Недійсний розмір." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Недійсне ім'я або пароль." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Запрошення відіслано" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Запрошення були надіслани наступним особам:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Запросити" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Запросити нових користувачів" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1162,11 +1341,12 @@ msgstr "" "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID вже належить іншому користувачу." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1177,12 +1357,14 @@ msgstr "" "GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Мова" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Мова задовга (50 знаків максимум)" @@ -1192,7 +1374,15 @@ msgstr "Мова задовга (50 знаків максимум)" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Локація" @@ -1201,7 +1391,12 @@ msgstr "Локація" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Локація надто довга (255 знаків максимум)" @@ -1210,18 +1405,22 @@ msgstr "Локація надто довга (255 знаків максимум) #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Увійти" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Увійти з [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1229,25 +1428,29 @@ msgid "" "%). " msgstr "" "Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? " -"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати " -"[OpenID](%%action.openidlogin%%). " +"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%" +"action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Вийти" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Довше ім'я, переважно ваше \"справжнє\" ім'я" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Загубили або забули пароль?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Створити нову адресу для надсилання повідомлень; видалити стару." @@ -1258,16 +1461,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Зазначте, як само ви бажаєте отримувати листи з %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "З нами від" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Мікроблог від %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1280,42 +1485,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Мої повідомлення та файли доступні під " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Нове" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Нова електронна адреса для надсилання повідомлень на %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Нову адресу для вхідних повідомлень додано." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Нове ім'я" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Нове повідомлення" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Новий пароль" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Новий пароль успішно збережено. Тепер ви увійшли." @@ -1325,7 +1538,13 @@ msgstr "Новий пароль успішно збережено. Тепер в #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Ім'я користувача" @@ -1334,7 +1553,12 @@ msgstr "Ім'я користувача" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Це ім'я вже використовується. Спробуйте інше." @@ -1343,49 +1567,60 @@ msgstr "Це ім'я вже використовується. Спробуйте #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "Ім'я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " "інтервалів." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Таке ім'я неприпустиме." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Ім'я користувача, за яким ви бажаєте слідувати" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Ім'я або електронна адреса" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Ні" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Немає Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Немає запиту на авторизацію!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Оператора не обрано." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Код не введено" @@ -1397,11 +1632,15 @@ msgstr "Немає коду підтвердження." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Немає змісту!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Немає електронної адреси." @@ -1410,7 +1649,9 @@ msgid "No id." msgstr "Немає ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Немає адреси для вхідної пошти." @@ -1421,6 +1662,7 @@ msgstr "На віддаленому сервері такого імені не #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Немає імені." @@ -1428,12 +1670,14 @@ msgstr "Немає імені." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Не очікується підтвердження для скасування." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Немає телефонного номера." @@ -1443,7 +1687,8 @@ msgid "No profile URL returned by server." msgstr "Немає URL-адреси профілю, яку б було повернуто сервером." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Для цього користувача немає зареєстрованої електронної адреси." @@ -1455,7 +1700,7 @@ msgstr "Відповідей на запит немає!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Немає результатів" @@ -1466,12 +1711,16 @@ msgstr "Немає розміру." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Жодних статусів з таким ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Не знайдено жодних статусів з таким ID." @@ -1481,13 +1730,15 @@ msgid "No such OpenID." msgstr "Такого OpenID немає." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Такого документа немає." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Такого повідомлення немає." @@ -1525,12 +1776,22 @@ msgstr "Немає такої підписки" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Такого користувача немає." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Користувача з такою електронною адресою або ім'ям немає." @@ -1544,33 +1805,39 @@ msgid "Not a recovery code." msgstr "Це не код оновлення." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Це не зареєстрований користувач." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Такий формат даних не підтримується." # "Invalid" та "Not a valid" я умовно поставив знак рівняння між ними, тому перекладаю як "недійсний", замість "не дійсний". Це не помилка. #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Це недійсний Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Це недійсний OpenID." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Це недійсна електронна адреса" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Це недійсна електронна адреса." @@ -1578,6 +1845,11 @@ msgstr "Це недійсна електронна адреса." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Це недійсне ім'я користувача." @@ -1597,7 +1869,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Це недійсна URL-адреса профілю (немає документа YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Це не зображення, або файл зіпсовано." @@ -1608,11 +1881,13 @@ msgstr "Не авторизовано." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Ця відповідь не очікується!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Не знайдено" @@ -1628,11 +1903,15 @@ msgstr "Не знайдено" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Не увійшли." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Не підписано!." @@ -1649,39 +1928,44 @@ msgid "Notice feed for %s" msgstr "Живлення повідомлень для %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Повідомлення не має профілю" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Повідомлення" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Повідомлення позначені з %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Старий пароль" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Установки рахунку OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Автопідтвердження OpenID" @@ -1689,29 +1973,34 @@ msgstr "Автопідтвердження OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Вхід OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL-адреса OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Ідентифікацію OpenID скасовано." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Ідентифікація OpenID невдала: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Невдача OpenID: %s" @@ -1727,11 +2016,12 @@ msgid "OpenID settings" msgstr "Налаштування OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Можна додати персональне повідомлення до запрошення (опціонально)." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Часткове завантаження." @@ -1741,34 +2031,46 @@ msgstr "Часткове завантаження." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Пароль" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Пароль та підтвердження не співпадають." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Пароль має складатись з 6-ти або більше знаків." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Запит на відновлення паролю відправлено." #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Пароль збережено." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Паролі не співпадають." @@ -1788,14 +2090,17 @@ msgid "People search" msgstr "Пошук людей" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Особисте" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Особисті повідомлення" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Телефонний номер та регіональний код, ніякої пунктуації чи інтервалів" @@ -1810,7 +2115,7 @@ msgstr "" "підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" "Надсилати повідомлення на сайт, коли мій статус Jabber/GTalk змінюється." @@ -1820,7 +2125,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Преференції" @@ -1829,42 +2136,52 @@ msgstr "Преференції" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Преференції збережно." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Мова, якій надаєте перевагу" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Конфіденційність" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Проблема при збереженні повідомлення." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Профіль" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL-адреса профілю" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Налаштування профілю" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Невідомий профіль" @@ -1873,17 +2190,19 @@ msgid "Public Stream Feed" msgstr "Живлення загального потоку" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Загальна хронологія" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Позначати міткою MicroID мою адресу Jabber/GTalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Позначати міткою MicroID мою електронну адресу." @@ -1893,12 +2212,14 @@ msgid "Recent Tags" msgstr "Нові теги" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Відновити" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Відновити пароль" @@ -1911,37 +2232,45 @@ msgstr "Код відновлення для невідомого користу #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Реєстрація" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Реєстрацію не дозволено." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Реєстрація успішна" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Забраковано" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Пам'ятати мене" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Віддалений профіль не співпадає з цим профілем" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Віддалена підписка" @@ -1955,6 +2284,9 @@ msgstr "Віддалена підписка" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Видалити" @@ -1963,7 +2295,7 @@ msgstr "Видалити" msgid "Remove OpenID" msgstr "Видалити OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1972,34 +2304,41 @@ msgstr "" "увійти знову! Перед тим як видалити його, з початку додайте інший." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Відповіді" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Відповіді до %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Скинути" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Скинути пароль" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "СМС" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Телефонний номер" @@ -2008,17 +2347,18 @@ msgstr "Телефонний номер" msgid "SMS Settings" msgstr "Налаштування СМС" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Підтвердження СМС" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Такий само, як і пароль вище" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Такий само, як і пароль вище. Неодмінно." @@ -2031,12 +2371,21 @@ msgstr "Такий само, як і пароль вище. Неодмінно." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Зберегти" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Пошук" @@ -2046,7 +2395,7 @@ msgid "Search Stream Feed" msgstr "Живлення потоку пошуку" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2055,7 +2404,7 @@ msgstr "" "Пошук повідомлень на %%site.name%% за їх змістом. Відокремлюйте пошукові " "умови інтервалами; вони повинні складатись з 3 знаків або більше." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2066,34 +2415,39 @@ msgstr "" "або більше." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Оберіть оператора" # Слово "Надіслати" у вузьку рамку веб-форми відправлення повідомлень на сайті не втискається. Гадаю "Так!" цілком прийнятний замінник. #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Так!" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Надсилайте листи на цю адресу і їх буде опубліковано на сайті." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Поівдомляти мене поштою про нові підписки." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Повідомляти мене через Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2102,17 +2456,20 @@ msgstr "" "витрати від мого мобільного оператора." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Надсилати також мені відповіді через Jabber/GTalk від людей, до яких я не " "підписаний." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Налаштування" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Налаштування збережено." @@ -2132,28 +2489,33 @@ msgid "Something weird happened." msgstr "Сталося щось дивне." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" "Вибачте, але не затверджено жодної електронної адреси для вхідної пошти." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Вибачте, але це не є вашою електронною адресою для входної пошти." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Джерело" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Статистика" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Збережений OpenID не знайдено." @@ -2161,24 +2523,28 @@ msgstr "Збережений OpenID не знайдено." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Підписатись" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Підписчики" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Підписку авторизовано" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Підписку скинуто" @@ -2186,28 +2552,35 @@ msgstr "Підписку скинуто" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Підписки" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Система відповіла помилкою при завантаженні цього файла." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Теги" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Текст" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Пошук тексту" @@ -2227,6 +2600,7 @@ msgid "That confirmation code is not for you!" msgstr "Цей код підтвердження не для вас!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Ця електронна адреса належить іншому користувачу." @@ -2236,63 +2610,73 @@ msgid "That file is too big." msgstr "Цей файл надто великий." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Це і так вже ваш Jabber ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Це і так вже ваша адреса." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Це і так вже ваш телефонний номер." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Це не ваш Jabber ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Це не ваша адреса." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Це не ваш телефонний номер." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Це помилкова адреса IM." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Це помилковий код підтвердження." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Цей телефонний номер належить іншому користувачу." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Надто довго. Максимальний розмір повідомлення 140 знаків." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Надто довго. Максимальний розмір повідомлення 255 знаків." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресу \"%s\" було підтверджено для вашого рахунку." @@ -2301,11 +2685,14 @@ msgstr "Адресу \"%s\" було підтверджено для вашог #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Адресу було видалено." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2315,7 +2702,8 @@ msgstr "" "Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " "авторизувати підписку. Ваш підписний токен:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2326,33 +2714,38 @@ msgstr "" "підписку." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Тут представлені ті, хто слідкує за повідомленнями від %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Тут представлені ті, хто слідкує за вашими повідомленнями." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Тут представлені ті, за чиїми повідомленнями слідкує %s." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Тут представлені ті, за чиїми повідомленнями ви слідкуєте." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "Ці люди вже є користувачами і вас було автоматично підписано до них:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Цей код підтвердження застарілий. Будь ласка, розпочніть спочатку." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2362,7 +2755,7 @@ msgstr "" "вашого OpenID провайдера." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2377,6 +2770,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Цей метод потребує або НАПИСАТИ, або ВИДАЛИТИ." @@ -2385,49 +2781,63 @@ msgstr "Цей метод потребує або НАПИСАТИ, або ВИ #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Цей метод потребує НАПИСАТИ." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Ця сторінка не доступна для того типу медіа, з яким ви погодились" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Часовий пояс" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Часовий пояс не обрано." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"Щоб підписатись, ви можете [увійти](%%action.login%%), або " -"[зареєструвати](%%action.register%%) новий рахунок. Якщо ви вже маєте " -"рахунок на [сумісному сайті](%%doc.openmublog%%), введіть URL-адресу " -"вашого профілю нижче." +"Щоб підписатись, ви можете [увійти](%%action.login%%), або [зареєструвати](%%" +"action.register%%) новий рахунок. Якщо ви вже маєте рахунок на [сумісному " +"сайті](%%doc.openmublog%%), введіть URL-адресу вашого профілю нижче." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Два ID або імені_у_мережі повинні підтримуватись." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL-адреса вашої веб-сторінки, блогу, або профілю на іншому сайті" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL-адреса вашого профілю на іншому сумісному сервісі" @@ -2439,15 +2849,22 @@ msgstr "URL-адреса вашого профілю на іншому сумі #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Несподіване представлення форми." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Несподіване скидання паролю." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Дія невідома" @@ -2478,38 +2895,47 @@ msgstr "Відписатись" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Версія OMB не підтримується" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Формат зображення не підтримується." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Оновлення через SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Оновлення за допомогою служби миттєвих повідомлень (ІМ)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Оновлення від %1$s та друзів на %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Завантажити" @@ -2520,8 +2946,8 @@ msgid "" "site license, also. Use a picture that belongs to you and that you want to " "share." msgstr "" -"Завантажити нову \"аватару\" (зображення користувача) можна тут. Ви не зможете " -"відредагувати свою аватару після завантаження, так що спочатку " +"Завантажити нову \"аватару\" (зображення користувача) можна тут. Ви не " +"зможете відредагувати свою аватару після завантаження, так що спочатку " "переконайтесь, що вона має більш-менш квадратну форму. Ваше зображення " "зберігатиметься під ліцензією сайту, також. Використовуйте зображення, які " "належать вам, і які ви можете вільно демонструвати." @@ -2531,6 +2957,7 @@ msgid "Upload a new profile image" msgstr "Завантажити нове зображення користувача" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2538,7 +2965,9 @@ msgstr "" "сервісу." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Використовується лише для оновлень, оголошень та відновлення паролю" @@ -2562,11 +2991,16 @@ msgstr "Користувача, який слідкував за вашими п #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Користувач не має профілю." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Ім'я користувача" @@ -2575,29 +3009,33 @@ msgid "User not found." msgstr "Користувача не знайдено." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "За яким часовим поясом ви живете?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Що нового, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Де ви живете, на зразок \"Місто, область (регіон), країна\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Неправильний тип зображення для '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Неправильний розмір зображення '%s'" @@ -2605,7 +3043,9 @@ msgstr "Неправильний розмір зображення '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Так" @@ -2628,11 +3068,12 @@ msgid "You are already logged in!" msgstr "Ви вже в системі!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Ви вже підписані до цих користувачів:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Ви не є друзями із вказаним користувачем." @@ -2650,15 +3091,16 @@ msgstr "Ви можете створити новий рахунок, щоб п msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Ви можете отримувати СМС через електронну пошту від %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" -"Ви можете видалити OpenID із свого рахунку, якщо натиснете кнопку " -"\"Видалити\"." +"Ви можете видалити OpenID із свого рахунку, якщо натиснете кнопку \"Видалити" +"\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2668,7 +3110,8 @@ msgstr "" "миттєвих повідомлень](%%doc.im%%). Вкажить свою адресу і налаштуйте опції " "нижче." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2679,21 +3122,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Ви можете користуватись локальними підписками!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Ви не надсилали нам цього профілю" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2715,16 +3160,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Ви не можете видалити статус іншого користувача." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Ви маєте спочатку увійти, аби мати змогу запросити когось до %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2732,70 +3180,81 @@ msgstr "" "Вас буде поінформовано, коли запрошені вами особи погодяться з запрошеннями " "і зареєструються на сайті. Дякуємо, що сприяєте формуванню спільноти!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Вас ідентифіковано. Введіть новий пароль нижче. " #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "URL-адреса вашого OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" "Ваше ім'я користувача на цьому сервері, або зареєстрована електронна адреса." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -"[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох сайтах " -" користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." +"[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох " +"сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "мить тому" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "близько %d днів тому" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "близько %d годин тому" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "близько %d хвилин тому" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "близько %d місяців тому" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "день тому" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "хвилину тому" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "місяць тому" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "рік тому" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "годину тому" @@ -2817,12 +3276,14 @@ msgid "reply" msgstr "відповісти" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "такий само, як і пароль вище" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "тип файлу не підтримується" @@ -2843,6 +3304,26 @@ msgstr "« Вперед" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." @@ -2852,6 +3333,7 @@ msgid "This notice is not a favorite!" msgstr "Це повідомлення не є обраним!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Не можна видалити зі списку обраних." @@ -2859,23 +3341,29 @@ msgstr "Не можна видалити зі списку обраних." msgid "Favor" msgstr "Обрати" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Надсилати мені листа, коли хтось додає моє повідомлення до списку обраних." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Надсилати мені листа, коли хтось шле приватне повідомлення для мене." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Це повідомлення вже є обраним!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Не можна позначити як обране." @@ -2885,11 +3373,13 @@ msgstr "Не обране" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Обрані повідомлення %s" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Живлення для обраних повідомлень від %s" @@ -2932,23 +3422,32 @@ msgid "Login with your username and password. " msgstr "Увійти з вашим ім'ям та паролем. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Надто довго. Максимальний розмір 140 знаків." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Жодного отримувача не визначено." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Ви не можете надіслати повідомлення цьому користувачеві." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2956,11 +3455,13 @@ msgstr "" "вголос." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Немає такого користувача" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Нове повідомлення" @@ -3016,6 +3517,11 @@ msgstr "Ви можете оновити власну персональну і #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Користувач з невідповідним профілем" @@ -3044,6 +3550,8 @@ msgid "New password successfully saved. " msgstr "Новий пароль успішно збережено. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Пароль має складатись з 6-ти або більше знаків." @@ -3066,12 +3574,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Аби підписатись, ви можете [увійти](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Живлення для обраних повідомлень від %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Не можна відновити обрані повідомлення." @@ -3079,7 +3590,7 @@ msgstr "Не можна відновити обрані повідомлення msgid "No such message." msgstr "Немає такого повідомлення." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Лише відправник та отримувач мають можливість читати це повідомлення." @@ -3103,52 +3614,71 @@ msgid "Mobile carrier for your phone. " msgstr "Оператор мобільного зв'язку. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Пряме повідомлення до %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Всі прямі повідомлення надіслані до %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Прямі повідомлення надіслані вами" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Всі прямі повідомлення надіслані від %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Повідомлення без тексту!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Отримувача не знайдено." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Обрані від %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s оновлення обраних від %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s додав(ла) ваше повідомлення до обраних" @@ -3160,8 +3690,8 @@ msgid "" "%1$s just added your notice from %2$s as one of their favorites.\n" "\n" msgstr "" -"%1$s щойно позначив(ла) ваше повідомлення від %2$s як одне з обраних " -"ним(нею)\n" +"%1$s щойно позначив(ла) ваше повідомлення від %2$s як одне з обраних ним" +"(нею)\n" "\n" #: actions/twittersettings.php:27 @@ -3172,14 +3702,17 @@ msgstr "" "туди, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Налаштування Твіттера" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Рахунок на Твіттері" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Поточний підтверджений рахунок на Твіттері." @@ -3188,6 +3721,7 @@ msgid "Twitter Username" msgstr "Ім'я на Твіттері" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Без пробілів, будь ласка." @@ -3196,18 +3730,22 @@ msgid "Twitter Password" msgstr "Пароль на Твіттері" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Автоматично пересилати мої повідомлення на Твіттер." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Надсилати локальні \"@\" відповіді на Твіттер." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Підписатись до моїх друзів на Твіттері тут." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3216,6 +3754,7 @@ msgstr "" "регістрів та символів підкреслювання (_). 15 знаків це максимум." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Не можна підтвердити ваші реквізити на Твіттері!" @@ -3226,33 +3765,43 @@ msgstr "Не маю можливості відновити інформацію #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Не маю можливості зберегти ваші налаштування Твіттера!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Налаштування Твіттера збережено." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Це не є вашим рахунком на Твіттері." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Не можна видалити користувача Твіттер." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Твіттер рахунок видалено." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Не можна зберегти преференції Твіттера." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Преференції Твіттера збережено." @@ -3269,18 +3818,19 @@ msgid "The subscription has been rejected, but no " msgstr "Підписку було скинуто, але не " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Результати команди" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Команду виконано" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Команду не виконано" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Даруйте, але виконання команди ще не завершено." @@ -3290,89 +3840,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Підписки: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Користувач має останнє повідомлення" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Повідомлення позначено як обране." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Повне ім'я: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Локація: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Веб-сторінка: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Про мене: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Пряме повідомлення до %s надіслано" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Помилка при відправці прямого повідомлення." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Зазначте ім'я користувача, до якого бажаєте підписатись" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Підписано до %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Зазначте ім'я користувача, від якого бажаєте відписатись" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Відписано від %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Виконання команди ще не завершено." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Сповіщення вимкнуто." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Не можна вимкнути сповіщення." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Сповіщення увімкнуто." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Не можна увімкнути сповіщення." @@ -3380,11 +3952,11 @@ msgstr "Не можна увімкнути сповіщення." msgid "Commands:\n" msgstr "Команди:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Не можна долучити повідомлення." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Не можна оновити повідомлення з новим URI." @@ -3401,7 +3973,7 @@ msgstr "" "Тепер ви маєте нову адресу для надсилання повідомлень на %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Нове приватне повідомлення від %s" @@ -3415,7 +3987,7 @@ msgstr "" "%1$s (%2$s) надіслав(ла) вам приватне повідомлення:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" "Лише користувач має можливість переглядати свою власну поштову скриньку." @@ -3425,31 +3997,39 @@ msgid "This form should automatically submit itself. " msgstr "Ця форма має автоматично репрезентувати себе системі. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Обрані" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Обрані дописи %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Користувач" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Вхідні" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Ваші вхідні повідомлення" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Вихідні" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Надіслані вами повідомлення" @@ -3462,14 +4042,19 @@ msgid "Twitter integration options" msgstr "Опції інтеграції з Твіттером" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "До" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Не можна розібрати повідомлення." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s з друзями, сторінка %d" @@ -3479,21 +4064,31 @@ msgid "You can upload your personal avatar." msgstr "Ви можете завантажити вашу персональну аватару." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Налаштування аватари" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Оригінал" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Перегляд" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Втяти" @@ -3510,34 +4105,43 @@ msgid "There was a problem with your session token. " msgstr "Виникли певні проблеми з токеном поточної сесії. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Дані вашого файлу десь загубились." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Файл втрачено." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Тип файлу не підтримується" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Не визначено жодного профілю." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Не визначено профілю з таким ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Блокувати користувача." @@ -3545,11 +4149,11 @@ msgstr "Блокувати користувача." msgid "Are you sure you want to block this user? " msgstr "Ви впевненні, що бажаєте заблокувати цього користувача? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Цього користувача вже заблоковано." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Збереження інформації про блокування завершилось невдачею." @@ -3566,40 +4170,58 @@ msgstr "Ви видаляєте повідомлення назавжди. " msgid "Add to favorites" msgstr "Додати до обраних" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Редагувати групу %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" "Поштові скриньки для вхідних повідомлень мають бути дозволені для роботи у " "групах" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Ви маєте спочатку увійти, аби мати змогу створити групу." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Немає імені" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Такої групи немає" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Ви маєте бути наділені правами адмінистратора, аби редагувати групу" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Скористайтесь цією формою, щоб відредагувати групу." @@ -3608,14 +4230,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Ім'я користувача повинно складатись з літер нижнього регістру " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "опис надто довгий (140 знаків максимум)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Не вдалося оновити групу." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Опції збережено." @@ -3632,7 +4255,8 @@ msgstr "Створити нову електронну адресу для на msgid "Send me email when someone " msgstr "Надсилати мені листа коли хтось " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Дозволити друзям \"розштовхати\" мене, надіславши мені листа." @@ -3645,7 +4269,7 @@ msgid "A confirmation code was sent to the email address you added. " msgstr "" "Код підтвердження був відправлений на електронну адресу, яку ви додали. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Помилка сервера - неможливо дістатись користувача!" @@ -3659,51 +4283,66 @@ msgstr "Якщо ви бажаєте додаток до %s для автома msgid "Allow %s to update my Facebook status" msgstr "Дозволити %s оновлювати мій статус у Facebook" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Пропустити" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Повідомлення не має змісту!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Нумерація сторінок" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Вперед" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Назад" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Дякуємо, що запросили своїх друзів до %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Запрошення були надіслані наступним користувачам:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Вас запрошують до %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Запросіть своїх друзів до %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Друзі, які вже користуються %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Надіслати запрошення" @@ -3745,12 +4384,14 @@ msgstr "Якщо бажаєте %s для автоматичного оновл msgid "Sync preferences" msgstr "Преференції синхронізації" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Видалити з обраних" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Популярні дописи" @@ -3764,7 +4405,8 @@ msgid "The most popular notices on the site right now." msgstr "Представлено найбільш популярні дописи на сайті." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Користувачі варті уваги" @@ -3778,15 +4420,17 @@ msgstr "Користувачі варті уваги, сторінка %d" msgid "A selection of some of the great users on %s" msgstr "Вибірка з деяких видатних користувачів на %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Цей користувач заблокував вашу можливість підписатись." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Немає ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Логотип групи" @@ -3794,11 +4438,13 @@ msgstr "Логотип групи" msgid "You can upload a logo image for your group." msgstr "Ви маєте можливість завантажити логотип для вашої группи." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Логотип оновлено." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Оновлення логотипу завершилось невдачею." @@ -3817,7 +4463,8 @@ msgid "A list of the users in this group." msgstr "Список учасників цієї групи." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Групи" @@ -3834,6 +4481,7 @@ msgstr "" "спілкуватись з " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Створити нову групу" @@ -3843,7 +4491,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Пошук груп на %%site.name%% за їх назвою, локацією або описом. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Пошук груп" @@ -3865,20 +4513,20 @@ msgstr "Надсилати мені відповіді за допомою Jabbe msgid "A confirmation code was sent " msgstr "Код підтвердження було відправлено " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Ви повинні спочатку увійти на сайт, аби приєднатися до групи." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Ви вже є учасником цієї групи" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Користувачеві %s не вдалось приєднатись до групи %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s приєднався до групи %s" @@ -3887,15 +4535,18 @@ msgstr "%s приєднався до групи %s" msgid "Inboxes must be enabled for groups to work." msgstr "Скриньки вхідних повідомлень мають бути дозволені для роботи у групах." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Ви повинні спочатку увійти на сайт, аби залишити групу." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Такої групи немає." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Ви не є учасником цієї групи." @@ -3903,21 +4554,25 @@ msgstr "Ви не є учасником цієї групи." msgid "You may not leave a group while you are its administrator." msgstr "Ви не можете залишити групу допоки ви є її адміністратором." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Не вдалося знайти запис щодо членства." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Не вдалося видалити користувача %s з групи %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s залишив групу %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Вхід на сайт" @@ -3929,15 +4584,17 @@ msgstr "Ніякого поточного статусу" msgid "New group" msgstr "Нова група" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Скористайтесь цією формою для створення нової групи." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Не вдалося створити нову групу" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Не вдалося встановити членство." @@ -3949,11 +4606,14 @@ msgstr "Це надто довго. " msgid "Don't send a message to yourself; " msgstr "Не надсилайте повідомлень самому собі; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Повідомлення відправлено" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Помилка в Ajax" @@ -3972,7 +4632,7 @@ msgstr "Спробу \"розштовхати\" зараховано" msgid "Nudge sent!" msgstr "Спробу \"розштовхати\" зараховано!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "Вхід OpenID" @@ -3996,11 +4656,13 @@ msgstr "Автоматичне скорочення URL-адрес" msgid "Service" msgstr "Сервіс" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Сервіси доступні для використання" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "Сервіс скорочення URL-адрес надто довгий (50 знаків максимум)." @@ -4008,16 +4670,17 @@ msgstr "Сервіс скорочення URL-адрес надто довгий msgid "Change your password." msgstr "Змінити пароль." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Пароль замінено" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Це недійсний особистий тег: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Користувачі з особистим тегом %s - сторінка %d" @@ -4027,11 +4690,12 @@ msgstr "Користувачі з особистим тегом %s - сторі msgid "These are users who have tagged themselves \"%s\" " msgstr "Тут представлені користувачі, які позначили себе тегом \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Інформація профілю" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4043,20 +4707,25 @@ msgid "Automatically subscribe to whoever " msgstr "Автоматична підписка до будь кого, хто " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Недійсний тег: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Не вдалося зберегти теги." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Загальний потік, сторінка %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Не вдається відновити загальний потік." @@ -4066,8 +4735,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Цей сайт %%site.name%%, є сервісом [мікроблогів] " -"(http://en.wikipedia.org/wiki/Micro-blogging) " +"Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/" +"wiki/Micro-blogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4078,11 +4747,13 @@ msgstr "Загальна хмарка тегів" msgid "These are most popular recent tags on %s " msgstr "Це найбільш популярні нові теги на %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Хмарка тегів" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" "Пробачте, але лише ті, кого було запрошено, мають змогу зареєструватись тут." @@ -4132,7 +4803,8 @@ msgstr "(Ви маєте отримати листа електронною по msgid "That's a local profile! Login to subscribe." msgstr "Це локальний профіль! Увійдіть аби підписатись." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Відповіді %s, сторінка %d" @@ -4142,50 +4814,71 @@ msgstr "Відповіді %s, сторінка %d" msgid "%s favorite notices, page %d" msgstr "Обрані повідомлення %s, сторінка %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "Група %s" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "Група %s, сторінка %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Профіль групи" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Зауваження" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Діяльність групи" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Живлення повідомлень для групи %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Учасники" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Пусто)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Всі учасники" @@ -4202,7 +4895,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Лише відправник та отримувач " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, сторінка %d" @@ -4212,30 +4905,37 @@ msgid "'s profile" msgstr " профіль" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Профіль користувача." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Фото" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Діяльність користувача" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Надіслати пряме повідомлення цьому користувачеві" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Повідомлення" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Всі підписчики" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Всі групи" @@ -4260,7 +4960,7 @@ msgstr "Повідомляти мене за допомогою СМС; " msgid "A confirmation code was sent to the phone number you added. " msgstr "Код підтвердження було надіслано на телефонний номер, який ви додали. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Мобільний оператор" @@ -4318,16 +5018,17 @@ msgstr "Тут представлені ті, за чиїми повідомле msgid "These are the people whose " msgstr "Тут представлені ті, чиї " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Повідомлення позначені %s, сторінка %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Найновіші повідомлення позначені \"%s\"" @@ -4349,7 +5050,7 @@ msgstr "Позначити %s" msgid "Tag user" msgstr "Позначити користувача" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4361,18 +5062,18 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" "Ви маєте можливість позначати тегами тих, до кого ви підписані, а також тих, " "хто є підписаним до вас." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Не вдалося зберегти теги." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "Скористайтесь цією формою, щоб додати теги підпискам та підписчикам." @@ -4380,20 +5081,23 @@ msgstr "Скористайтесь цією формою, щоб додати т msgid "No such tag." msgstr "Такого тегу немає." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Мікроблог позначено тегом %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Спроба заблокувати користувача невдала." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Спроба розблокувати користувача невдала." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Не знайдено." @@ -4401,15 +5105,16 @@ msgstr "Не знайдено." msgid "Add your Twitter account to automatically send " msgstr "Додайте свій рахунок на Твіттері, аби автоматично пересилати " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Ваше ім'я користувача на Твіттері" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Пароль на Твіттері" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Друзі на Твіттері" @@ -4422,145 +5127,154 @@ msgstr "Ім'я користувача має складатись лише з msgid "Unable to retrieve account information " msgstr "Не вдається відновити інформацію рахунку " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Помилка при розблокуванні." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "У запиті відсутній ID профілю." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Немає профілю з таким ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Відписано" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Групи %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Групи %s, сторінка %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Проблема при збереженні повідомлення. Невідомий користувач." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Дуже багато повідомлень за короткий термін; відпочиньте трошки і " "повертайтесь за кілька хвилин." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Вам заборонено надсилати дописи до цього сайту." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Завантаження аватари" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Інше" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Інші опції" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Сторінка без заголовку" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Відправна навігація по сайту" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Персональний профіль і потік друзів" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Пошук людей або текстів" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Рахунок" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Змінити електронну адресу, аватару, пароль, профіль" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Зв'язок з ІМ, СМС, Твіттер" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Вийти з сайту" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Увійти на сайт" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Створити новий рахунок" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Увійти з OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Допоможіть!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Зауваження сайту" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Огляд" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Зауваження сторінки" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Другорядна навігація по сайту" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Ліцензія StatusNet software" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Всі " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "ліцензія." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Блокувати користувача" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Блок" @@ -4573,11 +5287,14 @@ msgstr "Видалити з обраних" msgid "To use the %s Facebook Application you need to login " msgstr "Аби скористатись %s додатком для Facebook, ви маєте увійти " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr " новий рахунок." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Опубліковано" @@ -4597,31 +5314,36 @@ msgstr "Фільтр для тегів" msgid "All" msgstr "Всі" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Тег" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Оберіть тег до звуженого списку" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Вперед" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL-адреса веб-сторінки, блогу групи, або тематичного блогу" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Опис" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Локація групи, на зразок \"Місто, область (або регіон), країна\"" @@ -4630,20 +5352,20 @@ msgstr "Локація групи, на зразок \"Місто, област msgid "Group" msgstr "Група" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Адмін" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Редагувати властивості групи %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Лого" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Додати або редагувати логотип %s" @@ -4673,11 +5395,11 @@ msgstr "Приєднатись" msgid "Leave" msgstr "Залишити" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Увійти використовуючи ім'я та пароль" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Зареєструвати новий рахунок" @@ -4699,17 +5421,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s тепер слідкує за повідомленями " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Локація: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Веб-сторінка: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4718,7 +5440,7 @@ msgstr "" "Про себе: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Вас спробував \"розштовхати\" %s" @@ -4733,39 +5455,47 @@ msgstr "%1$s (%2$s) цікавиться, що у вас нового " msgid "%1$s just added your notice from %2$s" msgstr "%1$s додав ваше повідомлення від %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Від" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Надіслати пряме повідомлення" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Надіслати повідомлення" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Лишилось знаків" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "у відповідь на" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Відповісти на це повідомлення" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Відповісти" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Видалити повідомлення" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Видалити" @@ -4786,29 +5516,31 @@ msgstr "Спробувати \"розштовхати\" цього корист msgid "Tags in %s's notices" msgstr "Теги у повідомленнях %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(пусто)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Загал" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Групи користувачів" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Нові теги" # ПОСТАТЬ - Видатна особа, визначний представник кого-, чого-небудь. # "Featured" перекласти одним словом, так щоб втислося в таб на головній сторінці, важко. На мою думку "Постаті", тобто користувачі, які варті уваги - цілком прийнятний замінник. -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Постаті" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Популярне" @@ -4824,31 +5556,33 @@ msgstr "Знайти групи на цьому сайті" msgid "Untitled section" msgstr "Розділ без заголовку" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "%s підписався до наступних людей" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Люди підписані до %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s бере участь в цих групах" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Запросіть друзів та колег приєднатись до вас на %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Користувач заблокував вас." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Підписатись до цього користувача" @@ -4861,10 +5595,11 @@ msgid "Top posters" msgstr "Топ дописувачів" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Розблокувати цього користувача" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Розблокувати" @@ -4872,6 +5607,2067 @@ msgstr "Розблокувати" msgid "Unsubscribe from this user" msgstr "Відписатись від цього користувача" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Живлення для друзів %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Живлення для друзів %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Живлення для друзів %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s з друзями" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Ви можете завантажити вашу персональну аватару." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Аватару оновлено." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що " +"зворотня дія неможлива." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Надсилати мені листа, коли хтось шле приватне повідомлення для мене." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "Ви маєте можливість завантажити логотип для вашої группи." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Мікроблог від %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. " +"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " +"або більше." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Помилка при відправці прямого повідомлення." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Потік пошуку для \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як " +"змінювати налаштування." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Живлення загального потоку" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Живлення загального потоку" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Живлення загального потоку" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний " +"номер." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Створити" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Профіль групи" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr " профіль" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Живлення повідомлень для %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Живлення повідомлень для %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Живлення повідомлень для %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Вихідні для %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Аватара" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Налаштування профілю" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Код підтвердження був відправлений на телефонний номер, який ви додали. " +"Перевірте вхідні повідомлення, там має бути код та подальші інструкції." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Немає такого користувача" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень " +"туди, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Не маю можливості відновити інформацію для \"%s\" з Твіттера." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " +"підписатись на повідомлення даного користувача. Якщо ви не збирались " +"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Пошук людей або текстів" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Дуже багато повідомлень за короткий термін; відпочиньте трошки і " +"повертайтесь за кілька хвилин." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Зв'язок з ІМ, СМС, Твіттер" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "\"Розштовхати\"" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Аби скористатись %s додатком для Facebook, ви маєте увійти " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s тепер слідкує за вашими повідомленями на %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Щиро ваші,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Пошук" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Такого документа немає." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Список учасників цієї групи." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Список учасників цієї групи." + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Профіль користувача." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s з друзями, сторінка %d" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "Список учасників цієї групи." + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Спроба розблокувати користувача невдала." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Код підтвердження" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Не можна видалити це повідомлення." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Недійсний тег: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Це ім'я вже використовується. Спробуйте інше." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Не можна позначити як обране." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Нове повідомлення" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Нове повідомлення" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Це недійсне ім'я користувача." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Не визначено жодного профілю." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Користувач заблокував вас." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Ви не є учасником цієї групи." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Блокувати користувача." + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Ви маєте спочатку увійти, аби мати змогу створити групу." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Групи" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Не вдалося оновити користувача." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Не маю можливості зберегти ваші налаштування Твіттера!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Преференції синхронізації збережно." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Ви маєте бути наділені правами адмінистратора, аби редагувати групу" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Адмін" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Немає результатів" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Користувач заблокував вас." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Повідомлення" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Не вдалося зберегти профіль." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох " +"сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Налаштування профілю" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/" +"wiki/Micro-blogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"У разі, якщо ви забули або загубили свій пароль, ви маєте можливість " +"отримати новий на ту електронну адресу, яку було збережено у профілі вашого " +"рахунку." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Вас ідентифіковано. Введіть новий пароль нижче. " + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Запит на відновлення паролю відправлено." + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Помилка з кодом підтвердження." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Підписатись до цього користувача" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Обрані повідомлення %s, сторінка %d" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Живлення повідомлень для групи %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Живлення повідомлень для групи %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Живлення повідомлень для групи %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом " +"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Адмін" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Такого користувача немає." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Повідомлення позначені з %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Живлення повідомлень для групи %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі " +"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s тепер слідкує за повідомленями " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Живлення повідомлень для %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Живлення повідомлень для %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Це повідомлення вже є обраним!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Це повідомлення не є обраним!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Не вдається відновити загальний потік." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Жодного отримувача не визначено." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Жодних статусів не виявлено." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Оновленні відповіді %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Оновлення від %1$s на %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "ліцензія." + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Підписки %s" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Налаштування профілю" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Ви не є учасником цієї групи." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Проблема при збереженні повідомлення." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Повідомлення до %1$s на %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Профіль користувача." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Профіль" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Завантажити" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Змінити ваш пароль" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "З'єднання" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Пошук" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Увійти" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Блок" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Блокувати користувача." + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Додати або редагувати логотип %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Немає змісту!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Користувач" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Пошук" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Веб-сторінка має недійсну URL-адресу." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Такого тегу немає." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Пряме повідомлення до %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Надто довго. Максимальний розмір 140 знаків." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Не вдалося додати користувача: користувача не знайдено." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "опис надто довгий (140 знаків максимум)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Ви вже є учасником цієї групи" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Користувачеві %s не вдалось приєднатись до групи %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Ви не є учасником цієї групи." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Не вдалося видалити користувача %s з групи %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Групи %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s бере участь в цих групах" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Діяльність групи" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Надто довго. Максимальний розмір повідомлення 140 знаків." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Формат зображення не підтримується." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Фото" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "опис надто довгий (140 знаків максимум)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Оновлення від %1$s на %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Користувача, який слідкував за вашими повідомленнями, більше не існує." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Не авторизовано." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Не вдалося перетворити токени запиту на токени звернення." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Невідома версія протоколу OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Такого повідомлення немає." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Файл втрачено." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Оновлення від %1$s на %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Ця сторінка не доступна в " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? " +"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%" +"action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Всі оновлення за збігом з \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Опишіть себе та свої інтереси (140 знаків)" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Опишіть себе та свої " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Ви перевищили ліміт (140 знаків це максимум)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Це недійсна URL-адреса профілю (немає документа YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Це локальний профіль! Увійдіть аби підписатись." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Не вдалося отримати токен запиту." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Живлення повідомлень для групи %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Повідомлення до %1$s на %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Живлення для обраних повідомлень від %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Живлення для обраних повідомлень від %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Живлення для обраних повідомлень від %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Група %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Повідомлення відправлено" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Ця сторінка не доступна в " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Живлення повідомлень для %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " +"підписатись на повідомлення даного користувача. Якщо ви не збирались " +"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Підписку було авторизовано, але URL-адреса у відповідь не передавалася. " +"Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " +"авторизувати підписку. Ваш підписний токен:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь " +"з інструкціями на сайті для більш конкретної інформації про те, як скинути " +"підписку." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Не можна прочитати URL аватари '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Неправильний тип зображення для '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Невдале перенаправлення на сервер: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Ліцензія StatusNet software" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Не вдалося оновити користувача з підтвердженною електронною адресою." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Спробу \"розштовхати\" зараховано" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Відповісти на це повідомлення" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Проблема при збереженні повідомлення." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Немає коду підтвердження." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Увійти на сайт" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Оберіть оператора" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Живлення повідомлень для %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s додав(ла) ваше повідомлення до обраних" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " від " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Не можна видалити зі списку обраних." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Видалити повідомлення" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "Створити новий рахунок" diff --git a/locale/vi/LC_MESSAGES/statusnet.mo b/locale/vi/LC_MESSAGES/statusnet.mo index b2f4dd370a9d389e9949cf80a1ec2465069de9f1..853a4887aea5a1ee3605146908e46d68f5645956 100644 GIT binary patch delta 27841 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\n" "Language-Team: \n" @@ -15,14 +15,14 @@ msgstr "" "X-Poedit-Country: NEW ZEALAND\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Tìm dòng thông tin cho \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" @@ -33,17 +33,19 @@ msgid " from " msgstr " từ " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Các cập nhật đang trả lời tới %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s moi ban tham gia vao %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -101,6 +103,7 @@ msgstr "" "Thân, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s đang theo dõi lưu ý của bạn trên %2$s." @@ -123,25 +126,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Trạng thái của %1$s vào %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Dòng tin công cộng" @@ -151,34 +157,48 @@ msgstr "%s Dòng tin công cộng" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s và bạn bè" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, fuzzy, php-format msgid "%s public timeline" msgstr "Dòng tin công cộng" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, fuzzy, php-format msgid "%s status" msgstr "Trạng thái của %1$s vào %2$s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, fuzzy, php-format msgid "%s timeline" msgstr "Dòng tin nhắn của %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s cập nhật từ tất cả mọi người!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -186,7 +206,8 @@ msgstr "" "(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email " "của bạn.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -195,7 +216,8 @@ msgstr "" "**%%site.name%%** là dịch vụ gửi tin nhắn được cung cấp từ [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn. " @@ -207,32 +229,36 @@ msgstr "Người đăng ký nên được phân theo tên hoặc nickname" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 chữ cái thường hoặc là chữ số, không có dấu chấm hay " #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 chữ cái thường hoặc là chữ số, không có dấu chấm hay khoảng trắng. Bắt " "buộc." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "Nhiều hơn 6 ký tự" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "Nhiều hơn 6 ký tự, đừng quên nó!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "Nhiều hơn 6 ký tự. Bắt buộc" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -242,6 +268,7 @@ msgstr "" "tin nhắn đến bạn." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -276,7 +303,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Phương thức API không tìm thấy!" @@ -299,16 +353,23 @@ msgstr "Phương thức API không tìm thấy!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Phương thức API dưới cấu trúc có sẵn." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Giới thiệu" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Chấp nhận" @@ -319,6 +380,9 @@ msgstr "Chấp nhận" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Thêm" @@ -336,28 +400,30 @@ msgstr "Thêm mới hoặc xóa OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Địa chỉ" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" "Các địa chỉ email của những người bạn muốn mời (mỗi địa chỉ nằm trên 1 dòng)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Tất cả đăng nhận" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Tất cả các cập nhật của %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Các thay đổi phù hợp với từ \"%s\"" @@ -367,30 +433,37 @@ msgstr "Các thay đổi phù hợp với từ \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Đã đăng nhập." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Đã đăng nhận rồi!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Đăng nhận cho phép" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "Sẽ tự động đăng nhập, không dành cho các máy sử dụng chung!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Tự động theo những người nào đăng ký theo tôi" @@ -398,15 +471,19 @@ msgstr "Tự động theo những người nào đăng ký theo tôi" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Hình đại diện" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Hình đại diện đã được cập nhật." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -416,6 +493,7 @@ msgstr "" "nhận tin nhắn và lời hướng dẫn. (Bạn đã thêm %s vào danh sách bạn thân chưa?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -424,7 +502,7 @@ msgstr "" "để nhận tin nhắn và lời hướng dẫn." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 #, fuzzy msgid "Awaiting confirmation on this phone number." msgstr "Đó không phải là số điện thoại của bạn." @@ -437,6 +515,8 @@ msgstr "Trước" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Lý lịch" @@ -444,16 +524,18 @@ msgstr "Lý lịch" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Không thể xóa tin nhắn này." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Không thể đọc URL cho hình đại diện '%s'" @@ -461,6 +543,8 @@ msgstr "Không thể đọc URL cho hình đại diện '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Không thể lưu mật khẩu mới" @@ -468,32 +552,35 @@ msgstr "Không thể lưu mật khẩu mới" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Hủy" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Không thể thiết lập đối tượng OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Không thể bình thường hóa Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 #, fuzzy msgid "Cannot normalize that email address" msgstr "Không thể bình thường hóa địa chỉ GTalk này" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Thay đổi" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Đang thực hiện việc thay đổi email" @@ -503,11 +590,12 @@ msgid "Change password" msgstr "Đổi mật khẩu" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Thay đổi mật khẩu của bạn" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Thay đổi các thiết lập trong hồ sơ cá nhân của bạn" @@ -517,6 +605,9 @@ msgstr "Thay đổi các thiết lập trong hồ sơ cá nhân của bạn" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Xác nhận" @@ -529,12 +620,14 @@ msgstr "Xác nhận địa chỉ" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Sự xác nhận đã bị hủy bỏ." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 #, fuzzy msgid "Confirmation code" msgstr "Không có mã số xác nhận." @@ -544,7 +637,8 @@ msgstr "Không có mã số xác nhận." msgid "Confirmation code not found." msgstr "Không tìm thấy mã xác nhận." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -576,20 +670,24 @@ msgstr "" "Cảm ơn bạn đã đăng ký để là thành viên và rất mong bạn sẽ thích dịch vụ này." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Kết nối" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Kết nối đến tài khoản hiện hữu" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Liên hệ" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Không thể tạo OpenID mẫu: %s" @@ -597,37 +695,41 @@ msgstr "Không thể tạo OpenID mẫu: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 #, fuzzy msgid "Could not follow user: User not found." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Không thể chuyển đến máy chủ: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Không thể lưu hình đại diện" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Không thể lưu thông tin về hồ sơ cá nhân" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 #, fuzzy msgid "Could not subscribe other to you." msgstr "Không thể tạo favorite." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 #, fuzzy msgid "Could not subscribe." msgstr "Chưa đăng nhận!" @@ -648,15 +750,17 @@ msgstr "Không thể chuyển các token yêu cầu đến token truy cập." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Không thể xóa email xác nhận." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Không thể xóa đăng nhận." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Không tìm thấy bất kỳ trạng thái nào." @@ -669,23 +773,27 @@ msgstr "Không thể lấy token yêu cầu." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Không thể chèn mã xác nhận." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Không thể chèn thêm vào đăng nhận." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Không thể lưu hồ sơ cá nhân." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 #, fuzzy msgid "Couldn't update user for autosubscribe." msgstr "Không thể cập nhật thành viên." @@ -693,6 +801,11 @@ msgstr "Không thể cập nhật thành viên." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 #, fuzzy msgid "Couldn't update user record." msgstr "Không thể cập nhật thành viên." @@ -709,42 +822,48 @@ msgstr "Không thể cập nhật thành viên." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Không thể cập nhật thành viên." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Tạo" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Tạo người dùng mới với tên đăng nhập này." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Tạo tài khoản mới" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Tạo tài khoản mới hoặc dùng OpenID" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Địa chỉ Jabber/GTalk vừa được xác nhận." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "SMS xác nhận ngay - đã cho phép gửi qua điện thoại. " #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Đã xác nhận địa chỉ này." @@ -753,23 +872,27 @@ msgid "Currently" msgstr "Hiện tại" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, fuzzy, php-format msgid "DB error inserting hashtag: %s" msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Xóa tin nhắn" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" @@ -777,11 +900,13 @@ msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký t #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 #, fuzzy msgid "Email Address" msgstr "Địa chỉ email" @@ -792,40 +917,44 @@ msgid "Email Settings" msgstr "Thiết lập địa chỉ email" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Địa chỉ email đã tồn tại." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Xac nhan dia chi email" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 #, fuzzy msgid "Email address, like \"UserName@example.org\"" msgstr "Địa chỉ email GTalk, Ví dụ: \"UserName@gmail.com\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Địa chỉ email" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Nhập biệt hiệu hoặc email." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Nhập mã mà bạn nhận được trên điện thoại của bạn." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Lỗi cho phép token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Lỗi xảy ra khi kết nối với OpenId" @@ -836,39 +965,46 @@ msgstr "Lỗi khi kết nối người dùng." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Lỗi xảy ra khi thêm mới hình đại diện" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Lỗi xảy ra khi lưu địa chỉ đã được xác nhận." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Lỗi xảy ra khi lưu hồ sơ cá nhân" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Lỗi xảy ra khi lưu hồ sơ cá nhân." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Lỗi xảy ra khi lưu thành viên." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Lỗi xảy ra khi lưu thành viên; không hợp lệ." @@ -877,6 +1013,9 @@ msgstr "Lỗi xảy ra khi lưu thành viên; không hợp lệ." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Lỗi xảy ra khi tạo thành viên." @@ -887,6 +1026,7 @@ msgstr "Lỗi xảy ra khi cập nhật hồ sơ cá nhân" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Lỗi xảy ra khi cập nhật hồ sơ cá nhân" @@ -896,33 +1036,36 @@ msgid "Error with confirmation code." msgstr "Lỗi xảy ra với mã xác nhận." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Biệt hiệu này đã tồn tại" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Cập nhật hình đại diện không thành công." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Chọn những người bạn của %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Chọn các phản hồi đến %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, fuzzy, php-format msgid "Feed for tag %s" msgstr "Chọn các phản hồi đến %s" @@ -937,7 +1080,7 @@ msgstr "Tìm theo nội dung của tin nhắn" msgid "Find people on this site" msgstr "Tìm kiếm mọi người trên trang web này" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -950,6 +1093,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Tên đầy đủ" @@ -958,23 +1106,33 @@ msgstr "Tên đầy đủ" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Tên đầy đủ quá dài (tối đa là 255 ký tự)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Hướng dẫn" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Trang chủ" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Trang chủ hoặc Blog" @@ -982,21 +1140,27 @@ msgstr "Trang chủ hoặc Blog" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Trang chủ không phải là URL" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Tôi muốn đưa tin nhắn lên bằng email." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM" @@ -1006,7 +1170,7 @@ msgid "IM Settings" msgstr "Cấu hình IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1014,7 +1178,7 @@ msgstr "" "Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết " "nối với OpenId của bạn." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1022,7 +1186,7 @@ msgstr "" "Bạn muốn thêm một OpenId vào tài khoản của bạn, đánh nó vào hộp dưới đây và " "nhấn\" Thêm\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1033,26 +1197,32 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 #, fuzzy msgid "Incoming email address removed." msgstr "Địa chỉ email hoặc mật khẩu không đúng." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Mật khẩu cũ sai" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Sai tên đăng nhập hoặc mật khẩu." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1061,30 +1231,31 @@ msgstr "" "trong tài khoản của bạn." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "URL cho hình đại diện '%s' không hợp lệ " #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Địa chỉ email không đúng:%s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Trang chủ '%s' không hợp lệ" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "URL cấp phép '%s' không hợp lệ" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Nội dung tin nhắn không hợp lệ" @@ -1099,13 +1270,13 @@ msgid "Invalid notice url" msgstr "URL tin nhắn không hợp lệ" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "URL hồ sơ cá nhân của '%s' không hợp lệ" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "URL hồ sơ cá nhân không đúng định dạng." @@ -1123,28 +1294,35 @@ msgstr "Kích thước không hợp lệ." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Tên đăng nhập hoặc mật khẩu không hợp lệ." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Thư mời đã gửi" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Thư mời đã gửi đến:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Thư mời" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Gửi thư mời đến những người chưa có tài khoản" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, fuzzy, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1152,15 +1330,16 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" "Đang dùng [StatusNet](http://status.net/), phiên bản %s phát hành theo bản " -"quyền [GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +"quyền [GNU Affero General Public License](http://www.fsf.org/licensing/" +"licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID này đã thuộc về người khác rồi." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1170,12 +1349,14 @@ msgstr "" "tạo thêm %s vào danh sách buddy trên IM client hoặc GTalk của bạn." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Ngôn ngữ" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 #, fuzzy msgid "Language is too long (max 50 chars)." msgstr "Ngôn ngữ quá dài (tối đa là 50 ký tự)." @@ -1185,7 +1366,15 @@ msgstr "Ngôn ngữ quá dài (tối đa là 50 ký tự)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Thành phố" @@ -1194,7 +1383,12 @@ msgstr "Thành phố" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Tên khu vực quá dài (không quá 255 ký tự)." @@ -1203,18 +1397,22 @@ msgstr "Tên khu vực quá dài (không quá 255 ký tự)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Đăng nhập" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Đăng nhập bằng tài khoản [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1225,22 +1423,26 @@ msgstr "" "khoản, [hãy đăng ký](%%action.register%%) tài khoản mới, hoặc thử đăng nhập " "bằng [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Thoát" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Họ tên đầy đủ của bạn, tốt nhất là tên thật của bạn." #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Mất hoặc quên mật khẩu?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Tạo một địa chỉ email mới để đưa tin nhắn lên; và xóa " @@ -1251,16 +1453,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Bạn nhận email từ %%site.name%% như thế nào." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Gia nhập từ" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog bởi %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1273,43 +1477,51 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Ghi chú và các file của tôi đã có ở phía dưới" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Mới" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Dia chi email moi de gui tin nhan den %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 #, fuzzy msgid "New incoming email address added." msgstr "Đã xác nhận địa chỉ này." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Biệt hiệu mới" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Thông báo mới" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Mật khẩu mới" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Mật khẩu mới đã được lưu. Bạn có thể đăng nhập ngay bây giờ." @@ -1319,7 +1531,13 @@ msgstr "Mật khẩu mới đã được lưu. Bạn có thể đăng nhập nga #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Biệt danh" @@ -1328,7 +1546,12 @@ msgstr "Biệt danh" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." @@ -1337,48 +1560,59 @@ msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Biệt hiệu phải là chữ viết thường hoặc số và không có khoảng trắng." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Biệt hiệu không được cho phép." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Biệt hiệu của thành viên mà bạn muốn theo" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Biệt hiệu hoặc email" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Không" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Không có Jabber ID." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Không có yêu cầu!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 #, fuzzy msgid "No carrier selected." msgstr "Bạn chưa chọn hình để đưa lên." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Không có mã nào được nhập" @@ -1390,11 +1624,15 @@ msgstr "Không có mã số xác nhận." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Không có nội dung!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Không có địa chỉ email." @@ -1403,7 +1641,9 @@ msgid "No id." msgstr "Không có id." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 #, fuzzy msgid "No incoming email address." msgstr "Địa chỉ email không hợp lệ." @@ -1415,6 +1655,7 @@ msgstr "Không có biệt hiệu được cung cấp." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Không có biệt hiệu." @@ -1422,12 +1663,14 @@ msgstr "Không có biệt hiệu." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Sự xác nhận chưa được hủy bỏ." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Không có số điện thoại." @@ -1437,7 +1680,8 @@ msgid "No profile URL returned by server." msgstr "Không có URL cho hồ sơ để quay về." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Thành viên này đã không đăng ký địa chỉ email." @@ -1449,7 +1693,7 @@ msgstr "Không tìm thấy yêu cầu nào!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Không có kết quả nào" @@ -1460,12 +1704,16 @@ msgstr "Không có kích thước." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." @@ -1475,13 +1723,15 @@ msgid "No such OpenID." msgstr "Không có OpenID nào." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Không có tài liệu nào." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Không có tin nhắn nào." @@ -1519,12 +1769,22 @@ msgstr "Không có đăng ký nào." #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Không có user nào." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" "Không tìm thấy người dùng nào tương ứng với địa chỉ email hoặc username đó." @@ -1539,33 +1799,39 @@ msgid "Not a recovery code." msgstr "Mã khôi phục không đúng." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Không có người dùng nào đăng ký" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Không hỗ trợ định dạng dữ liệu này." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Jabber ID không hợp lệ" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "OpenID không hợp lệ." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 #, fuzzy msgid "Not a valid email address" msgstr "Địa chỉ email không hợp lệ." #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Địa chỉ email không hợp lệ." @@ -1573,6 +1839,11 @@ msgstr "Địa chỉ email không hợp lệ." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Biệt hiệu không hợp lệ." @@ -1592,7 +1863,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Không phải là URL về hồ sơ cá nhân hợp lệ (không phải là " #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "File hỏng hoặc không phải là file ảnh." @@ -1603,11 +1875,13 @@ msgstr "Chưa được phép." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Không mong đợi trả lời lại!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Không tìm thấy" @@ -1623,11 +1897,15 @@ msgstr "Không tìm thấy" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Chưa đăng nhập." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Chưa đăng nhận!" @@ -1644,39 +1922,44 @@ msgid "Notice feed for %s" msgstr "Dòng tin nhắn cho %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Tin nhắn không có hồ sơ cá nhân" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Tin nhắn" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Thông báo được gắn thẻ %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Mật khẩu cũ" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Tạo tài khoản OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Tự động nhập OpenID" @@ -1684,29 +1967,34 @@ msgstr "Tự động nhập OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Đăng nhập OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "Xác thực OpenID bị hủy." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Xác thực OpendID bị lỗi: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID lỗi: %s" @@ -1722,11 +2010,12 @@ msgid "OpenID settings" msgstr "Cấu hình OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Không bắt buộc phải thêm thông điệp vào thư mời." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Upload từng phần." @@ -1736,34 +2025,46 @@ msgstr "Upload từng phần." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Mật khẩu" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Mật khẩu và mật khẩu xác nhận không khớp nhau." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Mật khẩu phải nhiều hơn 6 ký tự." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Yêu cầu khôi phục lại mật khẩu đã được gửi" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Đã lưu mật khẩu." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Mật khẩu không khớp." @@ -1784,14 +2085,17 @@ msgid "People search" msgstr "Tìm kiếm nhiều người" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Cá nhân" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Tin nhắn cá nhân" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Số điện thoại, không cho phép nhập dấu chấm và ký tự " @@ -1806,7 +2110,7 @@ msgstr "" "của họ, hãy nhấn \"Hủy bỏ\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Gửi một tin nhắn khi trạng thái của tôi trên Jabber hay GTalk " @@ -1815,7 +2119,9 @@ msgstr "Gửi một tin nhắn khi trạng thái của tôi trên Jabber hay GTa #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Tính năng" @@ -1824,42 +2130,52 @@ msgstr "Tính năng" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Các tính năng đã được lưu." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Ngôn ngữ bạn thích" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Riêng tư" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Hồ sơ " #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL của Hồ sơ cá nhân" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Các thiết lập cho Hồ sơ cá nhân" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Hồ sơ này không biết" @@ -1868,17 +2184,19 @@ msgid "Public Stream Feed" msgstr "Dòng tin công cộng" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Dòng tin công cộng" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Gửi MicroID đến địa chỉ Jabber/GTalk của tôi. " #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Xuất bản một MicroID đến địa chỉ email của tôi." @@ -1888,12 +2206,14 @@ msgid "Recent Tags" msgstr "Các từ khóa hiện tại" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Khôi phục" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Khôi phục mật khẩu" @@ -1906,38 +2226,46 @@ msgstr "Khôi phục lại code cho user không đăng ký." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Đăng ký" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 #, fuzzy msgid "Registration not allowed." msgstr "Biệt hiệu không được cho phép." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Đăng ký thành công" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Từ chối" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Nhớ tôi" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Đăng nhận từ xa" @@ -1951,6 +2279,9 @@ msgstr "Đăng nhận từ xa" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Xóa" @@ -1959,7 +2290,7 @@ msgstr "Xóa" msgid "Remove OpenID" msgstr "Xóa OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1968,34 +2299,41 @@ msgstr "" "hãy tạo một OpenID khác trước đã." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Trả lời" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Trả lời cho %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Khởi tạo" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Khởi tạo lại mật khẩu" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Số điện thoại để nhắn SMS " @@ -2004,17 +2342,18 @@ msgstr "Số điện thoại để nhắn SMS " msgid "SMS Settings" msgstr "Thiết lập SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Xác nhận SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Cùng mật khẩu ở trên" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Cùng mật khẩu ở trên. Bắt buộc." @@ -2027,12 +2366,21 @@ msgstr "Cùng mật khẩu ở trên. Bắt buộc." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Lưu" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Tìm kiếm" @@ -2042,7 +2390,7 @@ msgid "Search Stream Feed" msgstr "Tìm kiếm dòng thông tin" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2051,7 +2399,7 @@ msgstr "" "Tìm kiếm những tin nhắn trên %%site.name%% bằng nội dung. Chia các cụm từ " "cần tìm bởi khoảng trắng; và phải là 3 ký tự trở lên." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2061,33 +2409,38 @@ msgstr "" "họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Chọn nhà cung cấp Mobile" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Gửi" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Gửi email đến địa chỉ này để đưa tin nhắn mới lên." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Hãy gửi email cho tôi thông báo về các đăng nhận mới." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Hãy gửi tin nhắn đến tôi qua Jabber hay GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2096,17 +2449,20 @@ msgstr "" "cho dịch vụ của chúng tôi. " #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Gửi những tin nhắn trả lời của tôi từ những người mà tôi không theo qua " "Jabber/GTalk." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Điều chỉnh" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Đã lưu các điều chỉnh." @@ -2126,27 +2482,32 @@ msgid "Something weird happened." msgstr "Vài điều bất thường xảy ra." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Xin lỗi, không có địa chỉ email cho phép." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Xin lỗi, đó không phải là địa chỉ email mà bạn nhập vào." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Nguồn" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Số liệu thống kê" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Không tìm thấy OpenID." @@ -2154,24 +2515,28 @@ msgstr "Không tìm thấy OpenID." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Theo bạn này" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Bạn này theo tôi" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Đăng nhận được phép" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Đăng nhận từ chối" @@ -2179,28 +2544,35 @@ msgstr "Đăng nhận từ chối" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tôi theo bạn này" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Hệ thống xảy ra lỗi trong khi tải file." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Từ khóa" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Chuỗi bất kỳ" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Chuỗi cần tìm" @@ -2220,6 +2592,7 @@ msgid "That confirmation code is not for you!" msgstr "Mã xác nhận này không phải của bạn!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 #, fuzzy msgid "That email address already belongs to another user." msgstr "Địa chỉ email GTalk này đã có người khác sử dụng rồi." @@ -2230,52 +2603,56 @@ msgid "That file is too big." msgstr "File quá lớn." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Tài khoản đó đã là tên tài khoản Jabber của bạn rồi." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 #, fuzzy msgid "That is already your email address." msgstr "Bạn đã dùng địa chỉ email này rồi" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 #, fuzzy msgid "That is already your phone number." msgstr "Đó không phải là số điện thoại của bạn." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Đây không phải Jabber ID của bạn." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 #, fuzzy msgid "That is not your email address." msgstr "Xin lỗi, đó không phải là địa chỉ email mà bạn nhập vào." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Đó không phải là số điện thoại của bạn." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Sai IM." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 #, fuzzy msgid "That is the wrong confirmation number." msgstr "Đó không phải là số điện thoại của bạn." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 #, fuzzy msgid "That phone number already belongs to another user." msgstr "Địa chỉ email Yahoo này đã có người khác sử dụng rồi." @@ -2283,15 +2660,21 @@ msgstr "Địa chỉ email Yahoo này đã có người khác sử dụng rồi. #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Quá dài. Tối đa là 140 ký tự." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Tin nhắn quá dài. Chỉ được phép tối đa 255 ký tự." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Địa chỉ \"%s\" đã được xác nhận từ tài khoản của bạn." @@ -2300,11 +2683,14 @@ msgstr "Địa chỉ \"%s\" đã được xác nhận từ tài khoản của b #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Đã xóa địa chỉ." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2314,7 +2700,8 @@ msgstr "" "hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token " "của bạn là:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2324,35 +2711,40 @@ msgstr "" "các hướng dẫn chi tiết trên site để " #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Có nhiều người nghe theo lời nhắn của %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Có nhiều người nghe theo lời nhắn của bạn." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Có nhiều người gửi lời nhắn để %s nghe theo." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Có nhiều người gửi lời nhắn để bạn nghe theo." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" "Những người này đã là thành viên rồi và bạn chỉ cần nhấn nút \"Tôi theo " "người này\" để theo họ:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Mã xác nhận quá cũ. Hãy thử lại cái khác." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2361,7 +2753,7 @@ msgstr "" "cung cấp OpenID của bạn." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2376,6 +2768,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Phương thức này yêu cầu là POST hoặc DELETE" @@ -2384,25 +2779,37 @@ msgstr "Phương thức này yêu cầu là POST hoặc DELETE" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Phương thức này yêu cầu là POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Khu vực" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2415,18 +2822,21 @@ msgstr "" "của bạn dưới đây." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL trong hồ sơ cá nhân của bạn ở trên các trang microblogging khác" @@ -2438,15 +2848,22 @@ msgstr "URL trong hồ sơ cá nhân của bạn ở trên các trang microblogg #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Bất ngờ gửi mẫu thông tin. " #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Bất ngờ reset mật khẩu." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Không tìm thấy action" @@ -2477,38 +2894,47 @@ msgstr "Hết theo" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Không hỗ trợ cho version OMB" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Không hỗ trợ kiểu file ảnh này." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Thay đổi bởi SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Thay đổi bởi tin nhắn nhanh (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Tải file" @@ -2528,6 +2954,7 @@ msgid "Upload a new profile image" msgstr "Tải lên một file ảnh mới cho hồ sơ cá nhân" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2535,7 +2962,9 @@ msgstr "" "của bạn tham gia vào dịch vụ này." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Chỉ dùng để cập nhật, thông báo, và hồi phục mật khẩu" @@ -2559,11 +2988,16 @@ msgstr "Người dùng đang lắng nghe để không thoát khỏi." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Người dùng không có thông tin." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Biệt hiệu của người dùng" @@ -2572,29 +3006,33 @@ msgid "User not found." msgstr "Không tìm thấy user." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Khu vực nào bạn thường ở?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Bạn đang làm gì thế, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Bạn ở đâu, \"Thành phố, Tỉnh thành, Quốc gia\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Kiểu file ảnh không phù hợp với '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Kích thước file ảnh không phù hợp đối với '%s'" @@ -2602,7 +3040,9 @@ msgstr "Kích thước file ảnh không phù hợp đối với '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Có" @@ -2623,11 +3063,12 @@ msgid "You are already logged in!" msgstr "Bạn đã đăng nhập!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Bạn đã theo những người này:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 #, fuzzy msgid "You are not friends with the specified user." msgstr "Bạn đã theo những người này:" @@ -2646,7 +3087,7 @@ msgstr "Bạn có thể tạo tài khoản mới để có thể gửi ý kiến msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Bạn có thể nhận tin nhắn SMS qua email từ %%site.name%%." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2655,6 +3096,7 @@ msgstr "" "\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2663,7 +3105,8 @@ msgstr "" "Bạn có thể gửi và nhận những tin nhắn qua Jabber hoặc GTalk [tin nhắn nhanh]" "(%%doc.im%%). Định dạng địa chỉ của bạn và các thiết lập sau." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2674,21 +3117,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Bạn có thể đăng ký tại nơi bạn ở!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Bạn không thể đăng ký nếu không đồng ý các điều khoản." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Bạn chưa cập nhật thông tin riêng" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2710,16 +3155,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Bạn đã không xóa trạng thái của những người khác." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2727,20 +3175,21 @@ msgstr "" "Bạn sẽ nhận được thông báo khi những người được bạn mời nhận lời mời và đăng " "ký vào trang web này. Cảm ơn bạn " -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Bạn đã được xác định. Hãy nhập mật khẩu mới ở dưới." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "OpenID URL của bạn" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Biệt hiệu của bạn đã tồn tại hoặc bạn đã đăng ký bằng email này rồi." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2749,47 +3198,57 @@ msgstr "" "[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản " "lý các OpenID của bạn ở đây." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "vài giây trước" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "%d ngày trước" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "%d giờ trước" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "%d phút trước" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "%d tháng trước" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "1 ngày trước" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "1 phút trước" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "1 tháng trước" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "1 năm trước" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "1 giờ trước" @@ -2811,12 +3270,14 @@ msgid "reply" msgstr "trả lời" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "cùng mật khẩu ở trên" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 #, fuzzy msgid "unsupported file type" msgstr "Không hỗ trợ kiểu file ảnh này." @@ -2839,6 +3300,26 @@ msgstr "Sau" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." @@ -2848,6 +3329,7 @@ msgid "This notice is not a favorite!" msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 #, fuzzy msgid "Could not delete favorite." msgstr "Không thể tạo favorite." @@ -2857,24 +3339,30 @@ msgstr "Không thể tạo favorite." msgid "Favor" msgstr "Ưa thích" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Gửi email thông báo tôi khi có ai đó lưu tin nhắn của tôi vào danh sách ưa " "thích của họ." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Không thể tạo favorite." @@ -2884,11 +3372,13 @@ msgstr "Không thích" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s ưa thích các tin nhắn" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, fuzzy, php-format msgid "Feed of favorite notices of %s" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" @@ -2933,36 +3423,47 @@ msgid "Login with your username and password. " msgstr "Sai tên đăng nhập hoặc mật khẩu." #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 #, fuzzy msgid "That's too long. Max message size is 140 chars." msgstr "Quá dài. Tối đa là 140 ký tự." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 #, fuzzy msgid "You can't send a message to this user." msgstr "Bạn đã theo những người này:" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 #, fuzzy msgid "No such user" msgstr "Không có user nào." #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 #, fuzzy msgid "New message" msgstr "Tin mới nhất" @@ -3036,6 +3537,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 #, fuzzy msgid "User without matching profile" msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" @@ -3070,6 +3576,8 @@ msgid "New password successfully saved. " msgstr "Mật khẩu mới đã được lưu. Bạn có thể đăng nhập ngay bây giờ." #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 #, fuzzy msgid "Password must be 6 or more characters." msgstr "Mật khẩu phải nhiều hơn 6 ký tự." @@ -3094,12 +3602,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Không thể lấy lại các tin nhắn ưa thích" @@ -3107,7 +3618,7 @@ msgstr "Không thể lấy lại các tin nhắn ưa thích" msgid "No such message." msgstr "Không có tin nhắn nào." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient may read this message." msgstr "Chỉ có người gửi hoặc người nhận mới có thể xem tin nhắn này" @@ -3133,54 +3644,73 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, fuzzy, php-format msgid "Direct messages to %s" msgstr "Tin nhắn riêng" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 #, fuzzy msgid "Direct Messages You've Sent" msgstr "Tin nhắn riêng" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, fuzzy, php-format msgid "All the direct messages sent from %s" msgstr "Bạn có tin nhắn riêng từ %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 #, fuzzy msgid "No message text!" msgstr "Không có tin nhắn nào." #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 #, fuzzy msgid "Recipient user not found." msgstr "Không tìm thấy user." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, fuzzy, php-format msgid "%s / Favorites from %s" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, fuzzy, php-format msgid "%s updates favorited by %s / %s." msgstr "Tất cả các cập nhật của %s" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" @@ -3191,7 +3721,8 @@ msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" msgid "" "%1$s just added your notice from %2$s as one of their favorites.\n" "\n" -msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich\n" +msgstr "" +"%s da them tin nhan cua ban vao danh sach tin nhan ua thich\n" "\n" #: actions/twittersettings.php:27 @@ -3203,14 +3734,17 @@ msgstr "" "bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Thiết lập tài khoản Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Tài khoản Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Tài khoản Twitter đã được xác nhận." @@ -3219,6 +3753,7 @@ msgid "Twitter Username" msgstr "Tên tài khoản Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Không nhập ký tự trắng." @@ -3227,18 +3762,22 @@ msgid "Twitter Password" msgstr "Mật khẩu Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Tự động gửi tin nhắn của tôi đến Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Đăng ký theo những bạn trên Twitter tại đây." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 #, fuzzy msgid "" "Username must have only numbers, upper- and lowercase letters, and " @@ -3248,6 +3787,7 @@ msgstr "" "gạch dưới (_)." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Không thể xác nhận tài khoản Twitter của bạn!" @@ -3258,34 +3798,44 @@ msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Không thể lưu thông tin Twitter của bạn!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 #, fuzzy msgid "Twitter settings saved." msgstr "Thiết lập tài khoản Twitter" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Không phải là tài khoản Twitter của bạn." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Không thể xóa tài khoản Twitter." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Tài khoản Twitter đã xóa." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Không thể lưu các yêu cầu cho tài khoản Twitter. " #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Các yêu cầu cho tài khoản Twitter đã lưu" @@ -3304,20 +3854,21 @@ msgid "The subscription has been rejected, but no " msgstr "Đăng nhận từ chối" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 #, fuzzy msgid "Command results" msgstr "Không có kết quả nào" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 #, fuzzy msgid "Command failed" msgstr " và bạn bè" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3327,94 +3878,116 @@ msgid "Subscriptions: %1$s\n" msgstr "Tôi theo: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 #, fuzzy msgid "User has no last notice" msgstr "Người dùng không có thông tin." -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 #, fuzzy msgid "Notice marked as fave." msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, fuzzy, php-format msgid "%1$s (%2$s)" msgstr "%s (%s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, fuzzy, php-format msgid "Fullname: %s" msgstr "Tên đầy đủ" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, fuzzy, php-format msgid "Location: %s" msgstr "Thành phố: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, fuzzy, php-format msgid "Homepage: %s" msgstr "Trang chủ hoặc Blog: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, fuzzy, php-format msgid "About: %s" msgstr "Giới thiệu" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, fuzzy, php-format msgid "Direct message to %s sent" msgstr "Tin nhắn riêng" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 #, fuzzy msgid "Error sending direct message." msgstr "Thư bạn đã gửi" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, fuzzy, php-format msgid "Subscribed to %s" msgstr "Theo nhóm này" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, fuzzy, php-format msgid "Unsubscribed from %s" msgstr "Hết theo" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 #, fuzzy msgid "Notification off." msgstr "Không có mã số xác nhận." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 #, fuzzy msgid "Notification on." msgstr "Không có mã số xác nhận." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3422,12 +3995,12 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 #, fuzzy msgid "Could not insert message." msgstr "Không thể chèn thêm vào đăng nhận." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 #, fuzzy msgid "Could not update message with new URI." msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." @@ -3444,7 +4017,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Bạn có tin nhắn riêng từ %s" @@ -3456,7 +4029,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3465,31 +4038,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Ưa thích" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Những tin nhắn ưa thích của %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Hộp thư đến" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Thư đến của bạn" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Hộp thư đi" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Thư bạn đã gửi" @@ -3503,15 +4084,20 @@ msgid "Twitter integration options" msgstr "Các lựa chọn để tích hợp với Twitter " #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 #, fuzzy msgid "Could not parse message." msgstr "Không thể cập nhật thành viên." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s và bạn bè" @@ -3524,21 +4110,31 @@ msgstr "" "về bạn." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Thay đổi hình đại diện" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Xem trước" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 #, fuzzy msgid "Crop" msgstr "Nhóm" @@ -3557,37 +4153,46 @@ msgid "There was a problem with your session token. " msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "Không có tin nhắn nào." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 #, fuzzy msgid "Unknown file type" msgstr "Không hỗ trợ kiểu file ảnh này." #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 #, fuzzy msgid "No profile with that ID." msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Ban user" @@ -3597,12 +4202,12 @@ msgstr "Ban user" msgid "Are you sure you want to block this user? " msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Bạn đã theo những người này:" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3621,42 +4226,60 @@ msgstr "Bạn muốn xóa tin nhắn này? Sau khi xóa, bạn không thể lấ msgid "Add to favorites" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, fuzzy, php-format msgid "Edit %s group" msgstr "%s và nhóm" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 #, fuzzy msgid "You must be logged in to create a group." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "Không có biệt hiệu." #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "Không có user nào." #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 #, fuzzy msgid "You must be an admin to edit the group" msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3666,16 +4289,17 @@ msgid "Nickname must have only lowercase letters " msgstr "Biệt hiệu phải là chữ viết thường hoặc số và không có khoảng trắng." #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "Không thể cập nhật thành viên." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 #, fuzzy msgid "Options saved." msgstr "Đã lưu các điều chỉnh." @@ -3695,7 +4319,8 @@ msgstr "Dia chi email moi de gui tin nhan den %s" msgid "Send me email when someone " msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3711,7 +4336,7 @@ msgstr "" "Mã xác nhận đã được gửi đến địa chỉ IM. Bạn phải chấp nhận %s để có thể gửi " "tin nhắn đến bạn." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3725,55 +4350,70 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "Không có nội dung!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "Sau" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Trước" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" msgstr "Thư mời đã gửi đến:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, fuzzy, php-format msgid "You have been invited to %s" msgstr "Bạn đã được xác định. Hãy nhập mật khẩu mới ở dưới." -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Mời bạn bè" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3822,13 +4462,15 @@ msgstr "" msgid "Sync preferences" msgstr "Tính năng" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 #, fuzzy msgid "Disfavor favorite" msgstr "Không thích" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "Các tin nhắn bị cảnh báo" @@ -3844,7 +4486,8 @@ msgid "The most popular notices on the site right now." msgstr "Các từ khóa phổ biến." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3858,15 +4501,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 #, fuzzy msgid "Group logo" msgstr "Mã nhóm" @@ -3875,12 +4520,14 @@ msgstr "Mã nhóm" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Hình đại diện đã được cập nhật." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Cập nhật hình đại diện không thành công." @@ -3900,7 +4547,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 #, fuzzy msgid "Groups" msgstr "Nhóm" @@ -3916,6 +4564,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Tạo nhóm" @@ -3928,7 +4577,7 @@ msgstr "" "Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " "họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Tìm kiếm nhiều người" @@ -3953,22 +4602,22 @@ msgstr "Hãy gửi tin nhắn đến tôi qua Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Không có mã số xác nhận." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Bạn đã theo những người này:" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, fuzzy, php-format msgid "%s joined group %s" msgstr "%s và nhóm" @@ -3977,17 +4626,20 @@ msgstr "%s và nhóm" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Không có tin nhắn nào." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Bạn chưa cập nhật thông tin riêng" @@ -3997,22 +4649,26 @@ msgstr "Bạn chưa cập nhật thông tin riêng" msgid "You may not leave a group while you are its administrator." msgstr "Bạn đã không xóa trạng thái của những người khác." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "Không thể cập nhật thành viên." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, fuzzy, php-format msgid "%s left group %s" msgstr "%s và nhóm" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -4025,16 +4681,18 @@ msgstr "" msgid "New group" msgstr "Tạo nhóm" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Không thể tạo favorite." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Không thể tạo đăng nhận." @@ -4049,12 +4707,15 @@ msgstr "File quá lớn." msgid "Don't send a message to yourself; " msgstr "Bạn đã theo những người này:" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Tin đã gửi" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 #, fuzzy msgid "Ajax Error" msgstr "Lỗi" @@ -4074,7 +4735,7 @@ msgstr "Tin đã gửi" msgid "Nudge sent!" msgstr "Tin đã gửi" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Đăng nhập OpenID" @@ -4102,11 +4763,13 @@ msgstr "" msgid "Service" msgstr "Tìm kiếm" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "Tên khu vực quá dài (không quá 255 ký tự)." @@ -4116,17 +4779,18 @@ msgstr "Tên khu vực quá dài (không quá 255 ký tự)." msgid "Change your password." msgstr "Thay đổi mật khẩu của bạn" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "Đã lưu mật khẩu." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Địa chỉ email không hợp lệ." -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -4136,12 +4800,13 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Hồ sơ này không biết" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4152,21 +4817,26 @@ msgid "Automatically subscribe to whoever " msgstr "Tự động theo những người nào đăng ký theo tôi" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Trang chủ '%s' không hợp lệ" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Dòng tin công cộng" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 #, fuzzy msgid "Could not retrieve public stream." msgstr "Không thể lấy lại các tin nhắn ưa thích" @@ -4188,11 +4858,13 @@ msgstr "Dòng tin công cộng" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4251,7 +4923,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Trả lời cho %s" @@ -4261,53 +4934,74 @@ msgstr "Trả lời cho %s" msgid "%s favorite notices, page %d" msgstr "%s ưa thích các tin nhắn" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, fuzzy, php-format msgid "%s group" msgstr "%s và nhóm" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Thông tin nhóm" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Tin nhắn" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 #, fuzzy msgid "Group actions" msgstr "Mã nhóm" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Thành viên" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 #, fuzzy msgid "All members" msgstr "Thành viên" @@ -4324,7 +5018,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Chỉ có người gửi hoặc người nhận mới có thể xem tin nhắn này" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, fuzzy, php-format msgid "%s, page %d" msgstr "Hộp thư đến của %s - trang %d" @@ -4335,35 +5029,42 @@ msgid "'s profile" msgstr "Hồ sơ" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "Hồ sơ" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "Không tìm thấy action" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 #, fuzzy msgid "Send a direct message to this user" msgstr "Bạn đã theo những người này:" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "Tin mới nhất" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Bạn này theo tôi" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 #, fuzzy msgid "All groups" msgstr "Nhóm" @@ -4390,7 +5091,7 @@ msgstr "Hãy gửi tin nhắn đến tôi qua Jabber hay GTalk" msgid "A confirmation code was sent to the phone number you added. " msgstr "Đó không phải là số điện thoại của bạn." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Chọn nhà cung cấp Mobile" @@ -4455,17 +5156,18 @@ msgstr "Có nhiều người gửi lời nhắn để %s nghe theo." msgid "These are the people whose " msgstr "Có nhiều người nghe theo lời nhắn của %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "Không có Jabber ID." -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Dòng tin nhắn cho %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4490,7 +5192,7 @@ msgstr "Từ khóa" msgid "Tag user" msgstr "Từ khóa" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4501,17 +5203,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4520,20 +5222,23 @@ msgstr "" msgid "No such tag." msgstr "Không có tin nhắn nào." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Microblog bởi %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Không tìm thấy" @@ -4545,17 +5250,18 @@ msgstr "" "Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, " "bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy msgid "Twitter user name" msgstr "Tên tài khoản Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Mật khẩu Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 #, fuzzy msgid "Twitter Friends" msgstr "Thiết lập tài khoản Twitter" @@ -4569,159 +5275,168 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "Lỗi xảy ra khi lưu thành viên." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "Không có URL cho hồ sơ để quay về." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Hết theo" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, fuzzy, php-format msgid "%s groups" msgstr "%s và nhóm" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Cập nhật hình đại diện không thành công." -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 #, fuzzy msgid "Other" msgstr "Sau" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Giới thiệu" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Thay đổi mật khẩu của bạn" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Tạo tài khoản mới" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "Không có OpenID nào." -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Hướng dẫn" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Thông báo mới" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Thông báo mới" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Tôi theo" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Ban user" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4735,12 +5450,15 @@ msgstr "cảnh báo tin nhắn" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Tạo tài khoản mới" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 #, fuzzy msgid "Published" msgstr "Công cộng" @@ -4762,34 +5480,39 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "Từ khóa" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "URL về Trang chính, Blog, hoặc hồ sơ cá nhân của bạn trên " -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Mô tả" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4799,21 +5522,21 @@ msgstr "Bạn ở đâu, \"Thành phố, Tỉnh thành, Quốc gia\"" msgid "Group" msgstr "Nhóm" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Thoát" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4847,12 +5570,12 @@ msgstr "Đăng nhập" msgid "Leave" msgstr "Lưu" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "Sai tên đăng nhập hoặc mật khẩu." -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "Tạo tài khoản mới" @@ -4873,24 +5596,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Thành phố: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Trang chủ hoặc Blog: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4905,46 +5628,54 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr " từ" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 #, fuzzy msgid "Send a direct notice" msgstr "Xóa tin nhắn" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "Thông báo mới" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "Nhiều hơn 6 ký tự" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "còn nữa..." -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 #, fuzzy msgid "Reply to this notice" msgstr "Trả lời tin nhắn này" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Trả lời" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 #, fuzzy msgid "Delete this notice" msgstr "Xóa tin nhắn" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "Xóa tin nhắn" @@ -4969,29 +5700,31 @@ msgstr "Bạn đã theo những người này:" msgid "Tags in %s's notices" msgstr "cảnh báo tin nhắn" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Công cộng" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 #, fuzzy msgid "User groups" msgstr "Hồ sơ" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy msgid "Recent tags" msgstr "Các từ khóa hiện tại" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "Tên tài khoản" @@ -5010,34 +5743,36 @@ msgstr "Tìm kiếm mọi người trên trang web này" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "Đăng nhận từ xa" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Theo nhóm này" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" "Điền địa chỉ email và nội dung tin nhắn để gửi thư mời bạn bè và đồng nghiệp " "của bạn tham gia vào dịch vụ này." -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "Người dùng không có thông tin." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "Theo nhóm này" @@ -5053,10 +5788,11 @@ msgid "Top posters" msgstr "Top posters" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Bỏ chặn người dùng này" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Bỏ chặn" @@ -5064,6 +5800,2113 @@ msgstr "Bỏ chặn" msgid "Unsubscribe from this user" msgstr "Ngừng đăng ký từ người dùng này" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Chọn những người bạn của %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Chọn những người bạn của %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Chọn những người bạn của %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s và bạn bè" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" +"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " +"về bạn." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Hình đại diện đã được cập nhật." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "Bạn muốn xóa tin nhắn này? Sau khi xóa, bạn không thể lấy lại được." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog bởi %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " +"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Thư bạn đã gửi" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Tìm dòng thông tin cho \"%s\"" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay " +"đổi trong điều chỉnh." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Dòng tin công cộng" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Dòng tin công cộng" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Dòng tin công cộng" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Tạo" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Thông tin nhóm" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Hồ sơ" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Hộp thư đi của %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Hình đại diện" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Các thiết lập cho Hồ sơ cá nhân" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " +"làm theo hướng dẫn." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" +"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " +"mình.\n" +"\n" +"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" +"\n" +"%3$s\n" +"\n" +"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" +"\n" +"%4$s\n" +"\n" +"Chúc sức khỏe,\n" +"%5$s\n" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Không có user nào." + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, " +"bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " +"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " +"của họ, hãy nhấn \"Hủy bỏ\"" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Tin đã gửi" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết " +"nối với OpenId của bạn." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, fuzzy, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" +"Chào, %1$s .\n" +"\n" +"Không biết có phải bạn là người vừa nhập địa chỉ email này trên %2$s.\n" +"\n" +"Nếu bạn là người nhập, và bạn muốn xác nhận lại, hãy nhấn chuột vào đường " +"dẫn dưới đây: \n" +"\n" +"\t%3$s\n" +"\n" +"Nếu không phải bạn, hãy bỏ qua tin nhắn này.\n" +"\n" +"Cảm ơn bạn đã bỏ thời gian để đọc thư,\n" +"\n" +"%4$s\n" +"\n" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s đang theo dõi các tin nhắn của bạn trên %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Người bạn trung thành của bạn,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" +"%1$s (%2$s) đã gửi đến bạn tin nhắn riêng:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"Bạn có thể trả lời tại:\n" +"\n" +"%4$s\n" +"\n" +"Đừng trả lời lại thư này; sẽ không có ai nhận thư.\n" +"\n" +"Chúc sức khỏe,\n" +"%5$s\n" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Tìm kiếm" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Không có tài liệu nào." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Ban user" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "Hồ sơ" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s và bạn bè" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Bỏ chặn người dùng này" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Không có mã số xác nhận." + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Không thể xóa tin nhắn này." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Trang chủ '%s' không hợp lệ" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Không thể tạo favorite." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Thông báo mới" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Thông báo mới" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Biệt hiệu không hợp lệ." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "Người dùng không có thông tin." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Bạn chưa cập nhật thông tin riêng" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Ban user" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Nhóm" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Không thể cập nhật thành viên." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Không thể lưu thông tin Twitter của bạn!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "Các tính năng đã được lưu." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make this user an admin" +msgstr "Kênh mà bạn tham gia" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Không có kết quả nào" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "Người dùng không có thông tin." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Tin mới nhất" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Không thể lưu hồ sơ cá nhân." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản " +"lý các OpenID của bạn ở đây." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Các thiết lập cho Hồ sơ cá nhân" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Nếu bạn đã quên hoặc mất mật khẩu, bạn có thể tạo mới và được gửi đến địa " +"chỉ email lưu trong tài khoản của bạn." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Bạn đã được xác định. Hãy nhập mật khẩu mới ở dưới." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Yêu cầu khôi phục lại mật khẩu đã được gửi" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Lỗi xảy ra với mã xác nhận." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Theo nhóm này" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s ưa thích các tin nhắn" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Không có user nào." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Thông báo được gắn thẻ %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của bạn rồi!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Không thể lấy lại các tin nhắn ưa thích" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Không tìm thấy bất kỳ trạng thái nào." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Các cập nhật đang trả lời tới %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Dòng tin nhắn cho %s" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Tất cả đăng nhận" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Các thiết lập cho Hồ sơ cá nhân" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Bạn chưa cập nhật thông tin riêng" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Có lỗi xảy ra khi lưu tin nhắn." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "%s chào mừng bạn " + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "Hồ sơ" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Hồ sơ " + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +#, fuzzy +msgid "Change background image" +msgstr "Background Theme:" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Tải file" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +#, fuzzy +msgid "Tile background image" +msgstr "Background Theme:" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Thay đổi mật khẩu của bạn" + +#: lib/designsettings.php:178 +#, fuzzy +msgid "Background" +msgstr "Background Theme:" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Kết nối" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Tìm kiếm" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Đăng nhập" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +#, fuzzy +msgid "Save design" +msgstr "Lưu" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Ban user" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Ban user" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " +"mình.\n" +"\n" +"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" +"\n" +"%3$s\n" +"\n" +"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" +"\n" +"%4$s\n" +"\n" +"Chúc sức khỏe,\n" +"%5$s\n" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Không có nội dung!" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Tìm kiếm" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "Trang chủ không phải là URL" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Không có tin nhắn nào." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Tin nhắn riêng" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Quá dài. Tối đa là 140 ký tự." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Lý lịch quá dài (không quá 140 ký tự)" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Bạn đã theo những người này:" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Bạn chưa cập nhật thông tin riêng" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s và nhóm" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Thành viên" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Mã nhóm" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Quá dài. Tối đa là 140 ký tự." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Không hỗ trợ kiểu file ảnh này." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Lý lịch quá dài (không quá 140 ký tự)" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Tất cả các cập nhật của %s" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Người dùng đang lắng nghe để không thoát khỏi." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Chưa được phép." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Không thể chuyển các token yêu cầu đến token truy cập." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Không biết phiên bản của giao thức OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Không có tin nhắn nào." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Không có tin nhắn nào." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài " +"khoản, [hãy đăng ký](%%action.register%%) tài khoản mới." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Các thay đổi phù hợp với từ \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Lý lịch quá dài (không quá 140 ký tự)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Không phải là URL về hồ sơ cá nhân hợp lệ (không phải là " + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Không thể lấy token yêu cầu." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Trả lời cho %s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Tìm kiếm các tin nhắn ưa thích của %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Tìm kiếm các tin nhắn ưa thích của %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Tìm kiếm các tin nhắn ưa thích của %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s và nhóm" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Tin đã gửi" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " +"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " +"của họ, hãy nhấn \"Hủy bỏ\"" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Đăng nhận được phép, nhưng URL trả lại không được gởi trả. Hãy kiểm tra các " +"hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token " +"của bạn là:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra " +"các hướng dẫn chi tiết trên site để " + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Không thể đọc URL cho hình đại diện '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Kiểu file ảnh không phù hợp với '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Không thể chuyển đến máy chủ: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Tìm theo nội dung của tin nhắn" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Tin đã gửi" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Trả lời tin nhắn này" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Có lỗi xảy ra khi lưu tin nhắn." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Không có mã số xác nhận." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Chọn nhà cung cấp Mobile" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Dòng tin nhắn cho %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" + +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " +"mình.\n" +"\n" +"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" +"\n" +"%3$s\n" +"\n" +"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" +"\n" +"%4$s\n" +"\n" +"Chúc sức khỏe,\n" +"%5$s\n" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " từ " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Không thể tạo favorite." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Xóa tin nhắn" + #, fuzzy #~ msgid "Code not yet ready." #~ msgstr "Không thể tạo favorite." @@ -5097,21 +7940,14 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ msgstr "FAQ - Hỏi đáp" #~ msgid "" -#~ "It runs the [StatusNet](http://status.net/) microblogging software, version " -#~ "%s, available under the [GNU Affero General Public License] (http://www." -#~ "fsf.org/licensing/licenses/agpl-3.0.html)." +#~ "It runs the [StatusNet](http://status.net/) microblogging software, " +#~ "version %s, available under the [GNU Affero General Public License] " +#~ "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #~ msgstr "" #~ "Microblogging [StatusNet](http://status.net/), version %s đã có ở [GNU " #~ "Affero General Public License] (http://www.fsf.org/licensing/licenses/" #~ "agpl-3.0.html)." -#~ msgid "" -#~ "Login with your username and password. Don't have a username yet? " -#~ "[Register](%%action.register%%) a new account." -#~ msgstr "" -#~ "Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài " -#~ "khoản, [hãy đăng ký](%%action.register%%) tài khoản mới." - #~ msgid "Password recovery requested " #~ msgstr "Yeu cau khoi phuc lai mat khau da duoc gui" @@ -5127,9 +7963,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ msgid "Everyone" #~ msgstr "Tất cả mọi người" -#~ msgid "Welcome to %s" -#~ msgstr "%s chào mừng bạn " - #~ msgid "Blog + Chat = Fun" #~ msgstr "Vừa Blog vừa Chat = Vui Lắm" @@ -5182,9 +8015,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ "Nếu cảm thấy nhàm chán với màu sắc cũ trên timeline của bạn, hãy thay đổi " #~ "màu sắc để trang %s của bạn hấp dẫn hơn." -#~ msgid "Background Theme:" -#~ msgstr "Background Theme:" - #~ msgid "Customize your theme" #~ msgstr "Tùy chỉnh theme " @@ -5212,9 +8042,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ msgid "Customize your page even more with CSS" #~ msgstr "Tùy chỉnh trang của bạn bằng CSS" -#~ msgid "Save Changes" -#~ msgstr "Lưu" - #~ msgid "Change css code" #~ msgstr "Thay đổi code css" @@ -5242,34 +8069,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ msgid "replies" #~ msgstr "trả lời" -#~ msgid "" -#~ "%1$s just added your notice from %2$s as one of their favorites.\n" -#~ "\n" -#~ "In case you forgot, you can see the text of your notice here:\n" -#~ "\n" -#~ "%3$s\n" -#~ "\n" -#~ "You can see the list of %1$s's favorites here:\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ "Faithfully yours,\n" -#~ "%5$s\n" -#~ msgstr "" -#~ "%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích " -#~ "của mình.\n" -#~ "\n" -#~ "Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" -#~ "\n" -#~ "%3$s\n" -#~ "\n" -#~ "Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ "Chúc sức khỏe,\n" -#~ "%5$s\n" - #~ msgid "Flag a notice" #~ msgstr "Cảnh báo tin nhắn" @@ -5300,38 +8099,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ "Bạn có thể thay đổi theme bằng cách chọn một hình mẫu của các theme rồi " #~ "nhấn nút \"Lưu\" để đổi theme. " -#~ msgid "" -#~ "Hey, %1$s .\n" -#~ "\n" -#~ "Someone just entered this email address on %2$s.\n" -#~ "\n" -#~ "If it was you, and you want to confirm your entry, use the URL below: \n" -#~ "\n" -#~ "\t%3$s\n" -#~ "\n" -#~ "If not, just ignore this message.\n" -#~ "\n" -#~ "Thanks for your time,\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ msgstr "" -#~ "Chào, %1$s .\n" -#~ "\n" -#~ "Không biết có phải bạn là người vừa nhập địa chỉ email này trên %2$s.\n" -#~ "\n" -#~ "Nếu bạn là người nhập, và bạn muốn xác nhận lại, hãy nhấn chuột vào đường " -#~ "dẫn dưới đây: \n" -#~ "\n" -#~ "\t%3$s\n" -#~ "\n" -#~ "Nếu không phải bạn, hãy bỏ qua tin nhắn này.\n" -#~ "\n" -#~ "Cảm ơn bạn đã bỏ thời gian để đọc thư,\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" - #~ msgid "" #~ "%1$s: confirm you own this phone number with this code:\n" #~ "\n" @@ -5343,37 +8110,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ "%2$s\n" #~ "\n" -#~ msgid "" -#~ "%1$s (%2$s) sent you a private message:\n" -#~ "\n" -#~ "------------------------------------------------------\n" -#~ "%3$s\n" -#~ "------------------------------------------------------\n" -#~ "\n" -#~ "You can reply to their message here:\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ "Don't reply to this email; it won't get to them.\n" -#~ "\n" -#~ "With kind regards,\n" -#~ "%5$s\n" -#~ msgstr "" -#~ "%1$s (%2$s) đã gửi đến bạn tin nhắn riêng:\n" -#~ "\n" -#~ "------------------------------------------------------\n" -#~ "%3$s\n" -#~ "------------------------------------------------------\n" -#~ "\n" -#~ "Bạn có thể trả lời tại:\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ "Đừng trả lời lại thư này; sẽ không có ai nhận thư.\n" -#~ "\n" -#~ "Chúc sức khỏe,\n" -#~ "%5$s\n" - #~ msgid "Terms of use" #~ msgstr "TTSD" @@ -5667,9 +8403,6 @@ msgstr "Ngừng đăng ký từ người dùng này" #~ msgid "Register user by channel" #~ msgstr "Đăng ký theo kênh" -#~ msgid "The channel this user in" -#~ msgstr "Kênh mà bạn tham gia" - #~ msgid " Subscribe" #~ msgstr "Theo kênh này" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.mo b/locale/zh_CN/LC_MESSAGES/statusnet.mo index 7984ab714f69018929222c3933fe6c722432d092..2a5eaed9072301bef98986513dcb22156b43ba83 100644 GIT binary patch delta 29086 zcma*v2Y6IP!~gv~38A+TAdm#u1VShDu5^$lT?M3tWPv~mBmtzz0ycU(z)Dd-K~Xvj zL@82~V!?(eO_Y)VB4VM4sJ!3bo{2Zl{oMEedCzrCKGSE;oSCzmSWcbHbLeb{_k4*w zOI%zn^0-`4SUASz+7RM${n=KzF4y}0E>}3dg~jk7#^M*)6Yt{V*y(APD=+%6AijzX z@GUHa=dmXKfYmU3fXh|h zoCyubHl*jG2L2pNVMx5ol@BAaDpoYzbUG`4Qk@OF%(m<0D7?m&O|rkyH*k@gZq#raeZwn+(vbjKf!5G z7S%yb)C3!$CfFWTZy;*GRMe8sKsPQn`8!c7@)>HJZ1k#Po zRj@fW#RN>oS4??9kCP5XJ)$X?iJNdI#td`0#^Ncwi`|C1T#sUh5v+ejBF~SYb6k%d z@G_Rf8c8l!b!>$da1@rq**Fs4LUmM<#9Zu!kKp$>2g{A(apK#kJyC^O$KU|0iQZ(^ z-%VsA8Csg-sHM4tAsCe6EO~y^N|Zotrm`4}(O3{;QSIxX_DTnn?vHvjqp>zl!|}Kc zJ7P6&s?%XQ)*@pfYT)�XLiUPSikqum&DMP2g9|gLh2%ebgh&o8}zX5~$4=gO#uW zY6beCHlcSikys-0jXSY6>9eQ`g+@D%qC8e7T_3e{gRnHtMs@re>QNp=J%a044XciE z@_S(?(&MlR9zY(k*L9DG?zCvSGviXmSYt!f=4+3OF$L+{6_nwuLD`FO;H_p!NxcO``~KS zEBZF7eaDH;O7uWYAPK|q1q{PiQ1!MM-<`<%7bfE%8FlbebmIfm61yikOWX|A(Gw<} zg4(n*(2bk1GJb|y!8;g zK;29_6E(mxjKDppXZbZo;T_Z?37g{NS4GwDh{_*{Rnd#Oq4kPrW(Tl7UO{b=NG4Vn zJD3SRgXKuCMBUkLll~fYC$~@og->-}U`REk?I%YYTAOA$%dB_XSvkgZ*%9^PDdSeWxU}s!_ zI*w;iH}WHvVSLvgMD)%Md(j!70)~)oh^p8eb$&Zx;F+Q}-#FA>S%^Bedr<>^V)AdI zCLZyUv#IN$o_%lQNc8GXrxDSTzk-_iUQ|b4qjv2*RK21zobu|Zj@qH}pGHk=JZc4( znDVzw{sH58)QbIyy5XWTS^r=n5i^~P@~8^cQG4PM)Ex{$E&Vvu%FIF4TZ9F0E#}9~ zsFlh>wL5}3*5^^1_%7pJIF*gE;9O2^#~55?)(gDPkfJs z@h2>Z_f3A@xlVpb%u9YWYGPGUE701c<54%}ok&D?wh;5+8q`w0f$DgR$=_}A_oI&G zG1LUIu?YT(ZgkCaCLWDyUkM9gZPbl4#{}$waXSAyi1a1n64t^;=Ckv0B)V}mPR4^c z30o|1R$@150tZlcavZDUWvqe47CL*OIqJ?kqw0+`>1kM9=YI{6Bnm!3?cPR&C@{j2E4AlrH4RYa{&7YxOIsJ%7{OEA7`CK1heCDy}Z zsAqQ{Yh%!2=fzPE)vzt@!+2D^3QL?juZ)^NPn?dUP>=K{)Fb^3E8(B0y%fEa_0LD7 z3K3=0Mm?*Bs0OX^G3<=7xCpi6@1XAJFsj`N)WlAk{JW?-4e>dKqmErQ)D3mTDmdB4 z`Y$K4mW0TI%tK9NIqDAIH0kZAdi$|4Ucg8! z`-<}j8=_XC1?qH+z;YU%IsApRP^(gA1R-`5BQS?LIaVnO> zDX0!tq9(i@)!%!@&oPYjMO3>x$fNbT@~(0|&5B@g3aX+yXo^~*_NY5gMy<>QEP>CN z{H3VP^*XBk5tIG~HQ_%{6Dzsec_h`1Z82Que*h6JO(tr_t58e44KN3kZBSnI4%OVq>$q6SPsJ;GV26<)lS_17J(B122F3AHqPF%KR` zHi_#?RK3%v4zHl@@Gfe?1=l$PR5G?k9lt?X0mowu`i#3#d+XbEtiPURo;RF#c8swt z>W&jpOEwWTfrY4JwhGnpH>mfH`B4Z-z4!2=#%)+{O1*>A&jXVx)W4wZ!Nzd8j?1APaG{Ls0&DR_2VKQn0tFRER zM?HcalJQ+fiRezwU_QKnx}$3*ZEbPxxB$AzcVi`NjjBHk)p05o#fhlnJQKBouV69U zjGD-MsPT@XS2OvPh>p<()H%IxEVI?=pdl6`zXR&dp2RpzL!P1QRV;u!OH9$$f)36q5b2Ufpg}GH|d?I_s9`czvnO-f5SXj%Dcmvc?6aqBO1G61Du1?Pz{Uj3$LSA zZrm&&yYJ%TmN&E#h0dL+cr$HgqE3z7@LRZus#-onaXjDg2ur|Jo z>hKt<-D%V@{S%vDnRlF1)f4NIo`LmoH|qHPgiO@yD)}z2MKbE43g+NrxE-}rf1sXO z)NW_@RzhvYT38bwMU{`lvY3v#fjOu>vj%min^664N7Xxp6?Fc8C8B{!>~YR{1JoT3 z#2PpkwYlC!4R`?S;0-K@<@Y+9ts0gg-41mc2AcfgsDYVvOA|l>CXP7twV%ZeFkciEyozlLOp^r z=*D}fm5Vs;l=r}nq%$x-?nUkT!x)6;P!s+R&*}UZ|J3Q=29BYi;%CnLUF&nCSe$g4aVqK&E<~-|+a~`AYIA>M(!XNh`+x8k&gO|kEmbWH#sL_H zL$EGpqE_M!Y=rNlp5-5?&Drcr=ff!lA0@rScmj3)Lr*v#+l?_F=>Zt(C6Y))Z>({s zb3Ge1^Vd-`-j7A`42I%0bmM(Y#;C8HiOoc<)ElUF+p#bn$C7vk)&ETl!+a-Me?7}c zB1Nzn7RQdL0sCPzjzBlg!pgV-HNcmsJG+53G3;xnek;sNdMM^#5~_ZWZ=C)|p(Z-{ z8=k+Ga0VHb@EE%B25J)(J>?Ae6gDS41@&UujatI}s5?B0n%GyU3Ef8x5PjNt5!J$Q z(rr;I@igj`j6Ti!YXugQQ33s^l{kUgWEW5a{DOKR{f$*I>Wp)z?Qsa{;iwLep$7O7 zHK29YITdA5EBXjVVi#%Bu>I7 z@JrN6RQ=Z3jNLJU^mwd}i?A;4LrvIw(?r6~J2P&KdY0X>3Qop`xE3|zGuQ<~zjMA? z4a6FxS7I+bhPr{s?_I8`*dA-+5quo)pz61~5O~C1*JvVo_U~eAJdc{0`=YZK+My=k zLEYI3lYa;`&?TIWMJ_q*mSH66eW>!&*bIX&JMCMb9-$|Y_VVdQL<8(J6|ST1yhJvC zY`|vd#vQ17C$Rw*Vr%OWwL(3Tepniluslx1mbePFhrYuS_#Yl&?m$^P`UMVUzwE^OC-bx}lp`6~nJNr>GTrHM90a z3SuuTgac8#H3{?MGpJKB4MT7~>Q0wnDcp#vcL@7g{L?hlW{$n?OtdBTB;DP(#`xQH z&c8Zr|D)4k7pz5kC>Fv6s9n1fYvNIi!du4B8_qy+7)yRfyvGDmu`=lqHy!6=JJP$1 z_t8zd)z7TI8pi+Z_!4TVH(@?JgnGswne-*pQeVen_?Ia!@{99~D;w*hHeoB19$-vD zJ<@T;nO-7#Mk`H)*HHs*H5ER@0;JEOmO2O3@t>%AWqx(;ur3xS-4`{nBrJgwQ0?a! zm!jIO#=_`**F=sOPoSHE@38_}zd0R68ylcHd<@k=Pt+qBWYUw2Gf*$6CB_f1GwI*3 z2)4Mz<6(SPS0c5@*ojl|k}>f%f8!&aZA`l3?BW~v2>GS%I`+bDq~~KvJdb+zzZoNb zckZ|~#*^RQxEG&gd{_B<&Usyl&r)HJvFRVql4lu@8!urr_3oigLF9dB6V^jL%C4x* z+uNiE8;2QFP%Ds$Wp)0iD}pOg9qvLc?Qv|1XN)EPbkf~W1I<9)>3r02-DNzCdPHBL zj`ex0gx65*ivHzT3cacrMMMKuMy2bU^rKjYbZ68A6HuG%S=6bSXWW5$glACw(8-;~0zTpoOsuYM{O*or>C2lTZV`X!7Tx23(HX zLz__TvhZ;{Zj21ET)l&MK_TtEu6_BOh996lrM@vfKsV_s`JE0sq6X|`(*01IE&(gx zLezlUj7L!u`qrd>Hs&qh?13l@{PX|jM6{#{sFm!>Dtb&fQsQgao z#=)riQ;n~oHrofrOQ;D26>`QYg{8b?#1TtVmr{{lTdIrlD@kXY#k2^p_a;=l|D2FXSoySJ#D&|b6F>1oS zQ3Ir-9?b;fD<=OSYT#qWlc;_!8p{^v{41kJamSa8?-_3!Ylb=lC7>oa61AiYQ7iPe z@d)Y_ei8M?yk`t6;Y_5Ku^H--KjtN(rR#4Tjk@C(@ey2)x`S-ghsLj{hORJYLSd-# z2xApgc?08PsFmuEn(zdyiHl6RcfYCdC2HVbOhH&lXGtrgCfFI(@eou;8L0YmOnNhF zpra<8gL>8vOn#+OPP?|K`~gV6Ue`1tYUo2Py`Z)Q@;QHdh-e89p`O`is1B|f9~eu8JNY$G9kn+0F%CCQ zG|n}yM)l`6=?{(Pq|X0MlMz(LS(;MVp8RIUsTf202m3(_9opO_2srV20s6vHWfUkLK+61v2hOSj@KFAL46PS7&Vb|#!IL#B0re) zJ)Uz^`IWfWYmhR zG3n26A?aJj7b`knNXk@lHf2TB01Z$RYmV9z9Z@SW()cWvVtm&EBHDa!U|rmaZSV@Z zv3jiYG1~?8>@!du&qS@nQsZh2d={AW5!5649Q)u+W4p@E_lsp1`27D!5h{F-y7N1z zXIG?(lV1*BAYC7|67Qn!@Cs_eKbf?WO<51&GMXx@`mlDxT528B$ z9<}sWOn%{N&WBMARKpRd`cq8$71WEykNP`67HX3nK%J(qQ0;CQgR46?Shl+P{I6y* znxdXjC)837FzIJd9n8kSWEu^LZK_77iSrmgW&te0e|H5?w5m#%} zBN&HT%2!b{+<@B62aO+_@{`7k#+#_k`=>FuuG3FJ)QyB2s~aB;$ocPKG7^mAj5CcZ zja!U|j320jQPPhMMR{SX!U|UnqiCQP1pwu~>blVg=Mn zR5m_>dKA4-1Eiu>XqqXXjrt5&V?2pk*#Zrm{_3KRXA|@)(v?UN9D@4YE*15RC!l6* zqXycDs<$82?zl-`Kz;qbiK-XY(3wzW)ScEry&<0*##f2FAyX{f#N8ey5`PeW?-WUo-NNA=jdoa+|5R z$K)SE4g4AEbN{+Awz1RUVAQL5m~k=cksZRBc*;1miIe^jHIZ@NrcT9YjW%k4w@?)> zp(gZ$DZho9Xu)QV;i!6*OuB|iH$gqRmd3uuF{t*lP%Gf|nT$70#txJIz@)!0=?kcV zelq#DjUmmQj!GG0jSW$csJ*c-Rwg|P-M9$3F|W%{L^IiEJdRqrZ&3sOhMMsoraa#x zPJTFQfbyvJbxnS2RQ-;o{0Y>ndIahb&NAh1U|xOx`%T7f<5AQb>MKmZkVl;XlTZVW zMxFELPy@Y&TIwyR2_Hk++-9c?*OVnoSZqm=9?qDuz zfGx&ds1Em`UN9fwDy-1bndp9ehV+-H@-D5M^3|vtY1NwZuMT??(RuHWN@t=bG|4#I zxWbfgK>gye9W}A@sEN4RI2JKRpa!afdLcD4`KhS(liG0pwbXBt(FjkW(#6_3wn8-= zgBoa^@hJ8uea)oXwX*{MP-++kCWg9^^Tuq{M1Dklv3X$fE4AnR>rQL5cb;K$)N$*B z>R=G+1>-?I^SP*wHlilBAN8ny!-k3|I`cVo|7pn;ZKWQ;>eVt{0t%YXfSj zK1VhD(O9Unldf*;gj$&qCOyme7OMR*)PydhJ`?VuCJ@ubnRs*5UK@guI{!W*^~mrW zbBtxXI{96VUR1;FsPlad)$s$=fMp(c2B?9`?}5pfWc=FXx9w)Ro+5vMWPH~SB3jbI z-5u*1pEOP~u10;#9!CB7{hF~@4=3Fa)z8x=Jr(t-`iAj+)Czr%`jzfa^ypUqH1_?d`Z8HL;7Rf%ErqRw@<)djNG>`WUD8;rweU zx02BVkDxYD_!G{A%A>xV*2UV`5Kp5Ab>JjRQMS6z5R?y|BkAcudmZC2DQl=puQ0eMxCMz)SW(O+-Cd^ zwTFuIb0*%-OC*kr(Z*HAPf?HJFJn}H=Z>1AR;(lH5e+g{ zNf&(D>EAnmh?aa3YUa~TdXY&lLk;*AYC`*s=TQUvg=$xDfKx95^(UD+sFmuC+O(-A zy~wx;*(+YxF_ZBVY9a*&TCN>f9JOf-l}u3bYvHOsqfZl{^9U%HCu= ziE8(kG0$LU;)Srh&VQLegm0&)cmI>9j)$NIo@~;KjGK)g8FNqr1PyVPx&W$ul(7kF zLVZknG7cjBGRElq-zB1@jEHycq>8ZvYIAz9A&xh0LcIYmp`ODk$M`maZ!%lOBv(vQJPAZlTV5gJF(CP~~%sJ5U{-GwI)r z?%~c#bwrhqMD_C`F2?P{z0S-Z8{sU~FjU8rjcd_O`V-XB-7uC&a?W>S)T8j2^h=mP zdM9eYvLl@pXlNXQI*zlkIKJvN8Cy_GcnI|k=mKgpmKfzUh{8um*TxB$Y|KH`82jvLEA8qL^3eYR$|?}n2YXp!D*Q%4?$wYA9Vpaw8T;aO>J+EW zE2Kwblid2$eT8^?^7m6uE8!=dN|-~N(v+u}3Frf87y12A*CXV|d&$t1kA#nSSwblB zLpYDnka#$q|Ao5v;B%EAR3iRbAm?8{_ELX3We=#UbDw(^WD=R=wW2Kd+C!v2dEOc{ zDo7&76mB7NiHVmX{wHB3b?VSb67_06)X7-#vrT#v^>jT+-XDb5Ne{yzSb(;TiRV!M z7CuehX4a@sWJ3yo_Zp%0bjlednzF1`J9?Ib_Tv>dteLuI+f7(3A2R$;&CK4Ti+BSUW|T{EdPijaG) zCGr^QgC-+`_)=5;fc9?_Z%x^o#0Q&vRUJvXHR&L8W0i=HH|3`p+gq8$C6iHv%KH0l z?xt*H^3~A_D(iZlI>B^SjC3(9fCb5GOVCw^^eVzV(iZK%MBcW6YYIQ#F!l5c>7Jm# z)8Ts`nIUvmiv}4^UDu1mw-SyKo+MA73!|vFkMu3#(e}cQ;ohsH9-;fsO{-T(>zYr^ zp~O28uWs(W3+Xoq5oQX3iu_2Yy-nU?LW;@!%G5bR+2M!ke?+_yd8yRf5ybXMA>$Jg zPY_bf;4_Jb5pPJ@BEoIb`ZhS7@GgzNqih!DUZ+ju1AM{saRXyaokaT3RhPVqGU8xjAXhM2FjTaIRC%y@*6DAQ>lRie--_&15`T^lHg0811)AflN z*h%s4-jFV2%C->?*7iL_ss8aqMG7vO4&F4CnljT##8*@KOZY$fGdHZ zucZqJk3KZ`c-5iZV>lbPQm$)1ab0^ciomZ-uFn|feJ8t->uVa!Cy_(uIpW=kf1zL+ zUM4^HYHIRI*cY0Ic{k-|W66i6(vDsh(&{tRRfDp=q@ObB&3Kfa=HgWH^+hI+DSMT8 z1Hxd+tI>`xT7l~j^(qs;M7?<8N6gX%3g6;qa|$L?p&g+F4L>H`nf!J55_vDvXaMmk z#G?bPSTEAAl0O0a5vG}ZeNTD#dYm@bsP`>(ej?~{>ywx7F0N994=L>G8B|O_jVcrdO4&b)Wba%EOdF zya!9MG*J>fikeVF@VRAv?Q_&SNW3}mZhA4kPvi?S`(SUpLG!nW>-vuL!`Ee#PR4Q6 zd6v+RKGI1)PQ^2(-Ecf*>UO03Cqf)yA$eD*_adPQ!TTba`Xf&{Q<MtcsC*2ndQokqlZjzoIXu-BN-lY5%L056=)ugY_Nx!WR#(_?L;O7Q1 zBdPEOowOvhAh$btPZPG83H?aC4dFKBx{`>$Mkr>|ZsKjp{}o3BYS5Olt){)QW>Z!c z^YeS9>mG$^B&y=~6uhAtT%&2wjC2!hZ5mf2y@7hVQpk%UZke)D+*N8EmPz--ZKNAe_n-Y2LgtTjravO-8b{!7NUl%Fn`#=aputC^>rytEu%7%_Jg$zo zY7+`m{w`rgAjkPp04|c3NZ3J}llVD4OFJ)rf^(H7eDqL*kBOhAup%KJ@j{eWL^pT% z5_!*=x?PCtx7XX0zf7n@yfb;aYBC7F5(cg^w7W^HJZ14FuMl}$jRHTrQ@Jh~cLOQs z$8V;hQvB^G@IRj1PrVNa%L5;b-#ZmuoyfUQjUA+y5tf+z3AmZE+$)C20K&7>T}?Po zD9V)9nF@(m-_-wrGF_pB@q~R!aIJT6Mdjhq6{XUBGByy(GX1lrQ0$}QRdiMvg9%@g z$6p&=9}w5|s2Skv+zFcetCW=`FETejP}}*Dm%Jl{*8_Fgy1F7s{7z6Z{vHbBmExL0;ULoU z3EvRUCa)Z;QiY)FQ}TYGqe`S#ksd?*0>MrE58CJoAss>a-xx(Y+_d%4b{BODkpBe1 zMLcl-gNXN|usRMSGgO6K>y4?V<5JW~Cx18QUXK&MLiq}l!C$5L7qD4T23<+sGSkO* z#IKonCh-Nt|I+x)&FtPG<6}A-LI)R#+h&l0#$Co!c!w~OPNq|@72#{zR5Rr^`MQ>p zr>g?}`-o4VJdV0!$!kX51Kg7P>gY(K6O|^KPDr}GA@n9am`1wzYn1CO@e4SUU=tRS zKQ~ay%HgwwEYrswlm9FAa<9U)f1boTQ)j5w|63B3DDdD}D$l|LfQb=RHp15<%Bq!Xh%?A>1YC zT294AgyN(-;Gg8x!I7j-VhHJ0#3M`}=SW{A-o~U?QkI`kpSt0c{YZW}Q?^%sl6aH? zU7L(YiN`T>i;#OQrorEY1$1-^*AnUx4ioB|dNry16ya?`Ny2NC>6(DA6QT*@7~>qi zN%)q~Odnkzl6jbp$CA;Wco1PO@n@X&fuHRtuT7q=GsYX#YeT-S(GIQ`Oqt%uk5jJe zC>A1&F?DC-ZPJ%0i`7?`dxYl+cL*IRXp8x|s~9TQB>gF272yhL{+UhS+KFN0k>#3< zFXIJ5Eb**Bjeq?pOWoGw&m!brznO@4Dv|9}7^a@M{-n}ZCcYR~l5R@)hR}ub@`PiA zUnmTk*_36|wmI<@1YKo}e^a)HP?B^$>P#j4 zLa0D^hP)Y+WtzI)ZX_Cz7*1jC^&ROdB<4}3D~xn6(_o^L75Mq$Lv4yP`6bjpK=_in zMKFi*5vGq+{Dk}r!e8WDgrD@^ZjCn`U$^YkE(=5BQxn~zN2H~C+^J(zhI-QD?Dx7n zSl zq|6b+#wI6Ea8F1Zo1Rg#U~J<`8F2***5WGIc0_#Ya8IDb?MaDGN_NL5CZ>BbGTdqD z?$or*q+v-3@fyLMHd7j^T^DI^LKh;M6iA3sb=<|zJ)>pJHwvRw|#}&#T}NOmf{|nmgL;` z2-YaDVD_fI*?AK^8A-!a?dkni*iro>;?!}**r6E-=}AL9OwZkCd{QRkxQC@Dc~TRZ zN^-gG31Y^h9H~PI4otTo8n&E0aj9RYNBjcZOw@*(`BbuBPpW%*)&4{r_PmA$C z-@kfr{zOl*C)1M{=YM11WGhd6;&6}c9$cenEDws?&ZrjWYLk>^AKX{oerj;#vYDEx zo;`ze1A(M7@o|GIlxw5i^iXl2#1+W(B>EQ*Zfb^Mj<=6~Ls1exphQRjWVEDfpGCxnZR8IoWAkE$T@!mCam&MgKEj2fv ziH=K3U|W-y8K00DkV7cPv4I1Jg~Zt8L^iR#YD9Rbx{FVsO$M=1p42#dxTk)8b}rj2 zBhH@T>6ehmf~B*`zCsUGAJhd_>jP^wT(^sbZU$rtg$qAmox^OpUuuK~BVB?+T z;)#xMrzRzgN{vt9sAbq+d*X_zoaGqq$qZDo?|NRh#}6xG#o6^m}>arWAO z+Ip^bX@P3aPPPlBOe)@P?C4~@3V9pzR!s2NFQinfkeHO|ZXMWQuJ($XH;FsLlbOjY z*}oy>gq7E+?@vn$v!c4U?%*EAn>9AW)!|=pb5N&_KJs+@xU}@7OzwzxUTlWDYU|9j zlxnUH9^OZ4H|*cbd-d+^t{Ye9|Ef}tDt7ZR(NE?c@c+`iIsT^fKXm@TE2wLKuQ4?& z`{ywgiY2EFPfB$M_MV=CJ!x`;JurQ0Seg!jUZ=c8GUJnz^>KDKJu>&jbThr1T`40p zpI*ALoQZ}R=fWQU=QTf$&!zaG9BqHG%%3fL`q+{F8)KJR1$Ba&1ztY>3FE&DF3e*| z&G5LoCZ&$b@IN`JXpmh$GseC?xikBF$g{76wAM?^j-FDT(7N0x=lt-Ni9=_+Xt5#J~rL?fYd4BA&pH zPVZbSP|2M!+LOSis3+0>ar!)a^mE|_oDJblO7uVXTsbR0Z}+juyx;AW&yT4dpUF#Q zgg({dT;0-mNhgeOC#EHg{hv9316k^Yj(PMkYWI1ew-s$Ke_>!qplAEq3&%L<Kz7pJ~r|2}tkzO;Q zivO)J@YWbOzl&8`_vXBb%{P+32Y|h9!J|c-k6JAt-w^DT8{Pgh3xcc~5AQEChh84u z&eYQS*R90clh+7ehokKi3mfKR_XbY#-wOwqe7yJneyi9|FWP4BU)0(TUEH-$N*Z6x z0$VO)yPay)k5A_Wj_@RpcJ=lI;^w#pUdQ_0>rktE0pSvX;mwo2~UXehcDe>g(P~0#;4oIeC}cie5c^(^X)J2CbKX4`h}ab zsx$lWiT2lfIngQ-&-b2`G(MEH$^0{x{bZH>*Qa~nBkZ5oPnUSHpClv#oIc)6-BZPXO~GLZPs=W*^yVx`mEW5%-AlPA~}-)iVD z{MN@oRtNjk2DiO?!+PIbR6=^<5ya1N?0^jmQP&fJ zFH`JY=NCJDcKSQl%WysANlr-P zo25B&HQlY86W4b8;fhHq`t?pnmnD6P9IFj?mnl;Pt2A2`&{WZLKV#TH@a`s_+dY^Es% zy*I09-MY2v)N|LZ)2v~gT6LQEm%n%1vP&K4YmfOO+)g>L!=LBi4?*_y_oMBP-rs1i z{-CTq?t}imo)xU9vb@%^=g-Psw=aACY}d7y_vCDP?aJcyIWw|s>rzSk(gzv7_!uk7 zo|;|OUi*G!`-#Kf+c_VUEb-pjD|?=IU4G~7%e!}9-oGYi+7^G^BgKO3{YU@uH#zos zuzlmBD)zRIQ|$booVJgCvfgfZe7yb2@k;iBUt|3TkN+N2I6G^5&Was5OSfK{I^Dnh z^JlHR*$ek(&);Cjec8$G@nx4%SGTNVjGP$@vKPLbJ;Qf(&3bCu%fGA?_V6^#oPD9e zR=EAum$&TmKZV;Tzl_LxdH?2|#qZh|PL%YYJkcPJec_v`cHPs_Wv@G>`I@gsoo3CzOdu6q~?@SXr@>Das<*BCj&{L)DiKi>rQ_jTLndeH_BhMAGE1#`k z_d8wGe*M%G`!7Pj(|7E?r(^ux&s?^A2O_MzcDZvY)GlqeI2&WnI@d36_KX$Tdv^OT zo;zjPUC*Zy#`(Hcx2pKM7qZG|{ma>h&UdrRd|JjX`dzL6e8+)1^ZgoP#n=PCd$e%& zjMdkct-UsNdG^9t_OkC{!m`)y$bN3Vc@$SSzjtNdX8-Q*j#x_uTP5xN7ef3~`47xW z^O&zJe?EKu!pnPhUD>?NrSzWX?Hw1l+dVFoHleyb{8E^LfA}T7IaIv7v)r;h*)Oci zS-J7bhGi~2aYFX2^_TapRLs77xtSf3ecN}YlojXyBYU#tuXE)kE9~++d#FhbF!W1=N0~$KX(tdkNwu&UU9pK9eQg` z%+jsSqPTLlugO_CGyBCCvNykbbMG`4t(+47fm`)0JLmT6cI2%R_T`^K?a%HMvS;6E zXTN@@f_>^vCp+}+9NT@jwEfE6@9c!%kJ;Dn7O)@uezZi+t{Lobb}S2+{mygRhllS~ zu}|L%`~MM!GT$eBYb#ixcGo{%wDU3eU)p_b@iIH^ehYt-`^iE6g@5(1 zZ2#XM+qeFnMYx;y%8GZc%zVlI;lWHjOde{TC9AA*Cgf$8>+CJrW7S=9&ML03^PE-C zDx5QODvNM+^J~{$e!-V*S&e+7BdsW3WRUfFX=gRAPFtS6V1|o3Vlr3uEVDnoS=yH! zWVQ8`2)0HB9;t6~u$ARIA8fVswFiMj1t=ditmvbg~DB15U$ey3&>K*th(an>2b>9{?XHM=O@s%!M z^|RA2hGnG{u%56AIQPN}FYEn+)@ds=@RV~F@1hNdnMabfys#A+^oA-y5nn9+$!c9RNOk^`=q$_qc1hoip_c_)Y=}D^;ekHG|0DshFMKZ zTk9;}_Hb)j*4c0?C&-r&Vb!+JoGt46EW#@2+Z|yI%K9_HO0;~fqpatASEH;VzB5r) zQQrqqR$av+?be@G&LWb}3VCPN<-MzY(a~0z@7HqHT_68Hg!;Za<(XCU3RYp?K(>T$ zXp9w^#hajkWp_W4x43hF|Lv)~;I_W;wTrg86n^+^?VA^ECHb=@ERzkU$6}^b&fL5cKt)#`hpBKB>ck1C1^F=yw_pe!#Ekg8^$%44e{7tr zsp*#mHDPYlge6h^>Y~PNgQ3jt45AW^KHKm)>dJPh1D?dxcoDVL*Rdep#fliw%yIf) zV^sTI8y`aLWU1zkGZ^D=2%f7OaK3cl|L3&cxoh z5j9X`E616JtuPj^;#ADj+HCzMEK2+{M&rL2j?rz{|D06Hw{e{0*aEf1?NC?pA?n`t zL7q=%Flr};VI~}l8pw~@+6`C&zrnhA7j^zSZ5^i=RzuAbZynT@{nvn>kkAC)*Zo_RR_nZfK5>YPeJY6=com*u_mIPnQw6p-oyUr8`sfs zVyHYuotV3mxdnw#J5m~>vAoT3s^L}Wq zI0m(Vny7pnMq^LZ&Lm(K=66=w#2(B|d=^XNb1Z;GyPGX-hIxqNQCm6_qw!1B!+6Yk z4>eBa9%iEQs2y#B+L-~U9h;6mHLReb6As#jtEek~fdw#Q&!o?4ry}YW#bYU)kGe(2 zFbCd6U2&RTCN6|paBbB1y-=_F6x+V87yGXcM@i`EzlD0QgL<2%H3GHbs;GP44pZO& z)WbFm^WzlME!tx92T^auFR0f!{YPfJ%&3Pw7NfD}N9?~=mOvr|ze25WJ8I(7s0kln zT6~6@I7J^GIE+MH@q4Hp>4>2?)8-eW-iDp13-}pR;SJP+ANZ)~UIfRRt;&k;6IVt} zI01F9=U{T&VDkag)4U(G^(Rpe)m1nTAN{d;@+53@BeTr zTEGI-iK|dszSsH-#t`4bIE)%-c4Q>#;hKk9$RgC+vI^7S2@Jw>sD)p|w0Id)<9)@< z@4Td<6G8@=hb;oNfE?EHs4MsYwes$$iHD-Dd<1I1aW+50=I5Xu;w7l@ccB*WEk@%R z^l61psAz!asGUeQ*m1gI1}u()u{Ey1V)zQnVUZzbpg0^!JO*{8Z%`8^8)_CFhI;r4 zp?0zv>Q?!Nvj6%3nr=I8M8$_uCtO875}XVln_Dv+^*YVQa9oetsRI~+7ce6}v?d>B z`e(&x@};pLHbd>ih+*u17?lJPdO8=O2KXAa(i2!3pP@bnVm>iH&r4$l;x4H32H{?u zh3fagaB~4IF_L%;euj%sw=U-hbL;Z@sN^G26t#6tP`99!?a&qL5ck3SxDBf?8SUQD)%os4E$anQ;W_6K^I) z;n$c6&!Fz*O)QMhunOiGZGJq*VGiPHsD*!pDRHOK=lqX~w&*Bk!OK_?U!Yc4mRqE! zzCC8eKBx)DV=kP7lW-gA^{eu!`5ftn`r*_Q^?FW4eXh(y?eI=aqxb(16+QhwB_()I zQ5|pMI~Y2~TyYK5>(&W%r9Dv(>1?ctdr=Q%5I0&2&x*PQ?_v-(Mct|vs9V<#Bbndn zMMYaY7ImfbQ3I_-t@InzK*y{XQT^_sZqXaehRMg8hcX&dIT77WOG>2WO*pXbEbf)u?;_we>7&;g3=0 zB_GfJYb&yhH}^C@YC&aD9c!W9>lUaT>VvwHG1lp*^A}-J{1SEEFPIFkp(eV8I{!6l zyo?jfCu89W?7yzGHVHk=?NK|>AGM{EQSGa2yc>%V|AN|qWE0KAB~Vw|9<_ksm>nmh z9=7sD2$V7k-2( zaf)sCY&wU9q- zd>!?WK1N+o+9_rsk*Im{p~fqV1@-<{u?-($ZW@MQ0raCj>Atb;=TTe!H)=w6s+lMi zY9Z0q;x-?Pny5Ky%R69x?2CnP4wl#Zzn6-x>=Bm27q&yuY5ZPTg!NJF9Wg!jLp`iMEROTBAbyJ>cn>xH^BL^FD#>S>*DegT(iqf$Wl&FbP1II) zL%p8ys4JO>TF5fgIIB?;ZN&_D9@Tyeb&DRNUTbF-zf(ZeEcSl@m9``_@d;GN)2N-f zjJh??QBV25HqJcTJe=7un0#T>gvBroR<&_`)Hv-?&(WanGdl{cMZ?1P$c0%|}%>H}yo>a%?pX2#zz9X>=|m^;^;pB_sP`wCOh zKy6Sb_C`JR)35@5iRJM!mcht*<|%H7ns5-d!C5wc3+oVv`OOu#LGA1a)GZu~>2WF+ z)%(AgimvQC)IIzQbw&43ugfFbo^8Gvuq^8JX^BZ!fHB0IP+NKd8Q8guB{BU1^Zvh! zy7%=lD|W{az5hNcnkWGya1*A+BdDGE3AM1xm<8`*IHp)=wlq6xtBaueS3~t{jQSbS z6ZMRYM=dY`^%l&;RC@mxQqdK!z(%+h8{$*UhP4)%3F1)whM*QS9E;!t%!^x4J97pL z;2WFIzu4TmdZ>kuLcLWUCjI?ifQs(@S&YILsHZhziRoAY^)sL~>Yjg$nqV%L#yzN8 zaL*dG)cmligStg+P@e+{)}5#eyS|kDFGnS4nYkwwP$x9OVmJnO;3m`r-9P7NJWuW{0Ywo{6s3Im>V#gXTe1-I z;ted1X;zvmtATxp2Vy7u9rs|hRc1l2@Ll5A)n?~LVRqt`J}P;r?8lsV1*0)|jrkQT zAJ!#qi+X)lpdQlo7=#B=3p|1s@hNIYPp{=k$JAe%XQd^kB<_NG{d!w{!>Q=0ooro% zdOg;oo`u6U|0n96J+yJ!b>=D0iDBf+qwaBC491T!6OKUb=nT{q??>(2CFEB5oba#A zL(~Eb(l80D;AYfoc^9?v%wWs zGUs4;~%D2@05JAPO~6E-a2!uqF0EUEsk0`>%WVH;E#ce4BY#N}?9f1&iVY)Uy#lJ>3^j z3kch8p7Od_m3R)u;3;g1|6*Zmy2Eik#gSM7Ut>comdO6=gb|768_*im#3wKs?_)U( z+i6x@2bJ%O8h8dy!LL#0)%x1(P%l*bc&vn*P*?mnYRAKNnQ<%msHmYo>I(h%3GTya zthn2BY>QcmXQJ-qml%Oxqi(@T)I)U-Gh&H7W{2LxQN*8M7(TUz>^1#-QB*S1P#iO1 z4b%j!Y=<7G6Nh64oND7Gn1Xl{>WX%t9>(8M&&n-Kg)cBU27hA~9D?D*(MY?`DNm)1 z%jz+bh6Ve~0s`2C_@FiXe`cT_Sd4r;YQjaRXJ-xSS@{{WLAA z<1G(LAKOEvCW)08jWcggEUJM~FkJ_qtQCr^rWU> z{u1WGf6=Fbavd>SRvLBU2iEqe_qLaHKE6-numH1 z#u8t#=Kjun(dqad`>(CtK%xL1u--&nNrq$mg%lRHPQg*ccQ7Y@blk*~Q9G6DgfS=P zCN7J5OIo6yg?LPX6H(93^b_pA5({m^7uL0?E8K)SaW871vzP|&VnuvuE%&_{ryuG< zhN9krB^ZM1F*WW$&9~or)Mq>Vh#L5ujj!4GK58dkqZShJgLxK8Vt(T4)*e`lcp7S) z-PWV1ojQZskw-Qk@uP`-d8ugYYN1}Yc32oU;QM&in&+g+$D?kUA9W?`Q4W0GN|$E*|9idyhN z>nSWi{1>W!>fg*nVOXBH3~IvOs0B?x^;?D7;q^XSIcXanp(cE3O?Al(6mD%`9g7-h z7ixn2s1K;$FcKf3#!2_PF$#5y3ZZtQGRC5>1C_K?7TOMLQ77)U@lopq%t`((>K>>4 z!~D1{fEu_Ns=YgEg7K*Q8q}5U!lY*cm4Aec<8xB}X-+3Z9q)Oih26AiSEM_t%_)Gb_vQF{NkQ_(;_VJ5te+S-?>0fPQAuT?lI zp9?im0n}EPL7m?a)xWECs5Qa1FShYk>tV_K&aXCc3$^k$SPS!BF<-xXVKU;Ws0GZz z7@Uv#DR#)_Phv3fS=8si1x$%oZG6Z26xGkY%KmH1lT*>kb6QJb2I88i30qj(V>;rl zHXdmG1U1g5s0A%R?a(UBhg(tSokcC|n)Uuw_P;ZU7bJAg+h6170FJ;scmNCGRm_d) zuA7}Hi5h4q>Rx_|*>NUn!VT7+Q44!&;|w>nL`58hSuhcE;g6_i z;vVL};G3p@Zq$ywV|^c^i928c9F6+mT4mc$p~ks}n)n53;gP<-O`@>1E~cQN2bRIU zsE*4~6K=%~co;R{pj&346Hz;`21nx|)HpS68{fx5#7%5G9Mcf{#@NJkEJtE47RKWk zijOf3x_8V#=};dy;WjRXYOjF$0IG$$1?{mIjv7brx`d_h5x$27?wOw%y-@A5P~)t@5Zq?{2DR{`s9SIao9q1#zHj~t zr8R1R1k{x*!}Per=8xcb;)|#&>+--Xd?so^ej9&>C5ca>7T`WKhFZg|xiDPse_<*` zuo`M*y-_=ofZEELHoqP9nSC0y(6E0@|AMHvHtM}@kEt*YGhr{(TQCaMZ=Q8M`gDZ{ zsK}o&BVI;r)niPW=#kmdf>@AzSya9~>b!xdg@0z_FRWW^em|=JAE@)6SaUvR|21Ll z$L95FWBnMFpNo1H)?zpwL*3gyP!r!lUD<2Y>lyLHSQd2)n_@WjLiP8d#+_mF%b(cy zeki-FA3^Ix)jjGf*^^CoXT}c+{4UwedvM1WQokZAR_ncc`BgSFQire5CK0 z*}8J56Plw=h{tl6fO?qrVOhM7+QR(L%}z8#U13|)!`9zA+_sOi&ay5=JzHN{eOqnA z*Qk{rv7STS)7z*8g}yND1u-jeCDcI8Faq0J2cULrl65|+-&)i{H=)KmjLheA{-mOn zKf*Hj##;KNxzg^a0j6UnoNN6O(-QAReV`o2Nc;u0!275R3VCJvWk;P~#Ku)IuipO# zRMfFQY9V7$6Hdc)I0yC6t+4HzQCGMNv*R(Fzm7WZ0jm9(jZ?igSDYR-PYmi7R>dNE z|GV3US=N=-MAU%CPy_yiTF9T)yQl@fMDk@4fVnF9JK>cL1w^0sJMhR7WMkp!>%|SHSs0ee$_`sTl3I1 zga(@xW<+%?gh>OUt|->F*G64gdut!-NYuinqR!uF-HsY(4>rf|a2Wb>CNl{?E+cUp zb>&l&n+cX#H=zdHhcS2rHPJ)Vz?oARb6bm}#;J^YtsB|=XQ=aMAUor8c2m(u>TQ#7 z@}@K=G)GM^$+`~P5}&Yf!BlS2zi`w;4LBFI!2Q;vs0I9p`YC!DwPPtm%uZ&(6ng)2 zQ_=fa2ysBYNIX}``6}2;6QRn%rORamY7t`|oYfE0* zM2>Xkgjm!7?NImdW7O79M%~NpsAuLps$W=oH|ZZDi&^8W9_oERf?D`R)Oe3k%##8Qi3QB&v;y1K0{rpgQIYGuE^AwR)JB_MMm?FIs~#nz#_^{6;n&gxQG~SanWLDY~wS^y|`i;Xj_&N5$7dRDrWH#qLvK9|F3+RcOa5`!yzCvB# ze$>P5J8vtgB3!32iSnp>KM}Q6(^21WzQ7W=3eVvg)N8jXi`l6QsAr{2RyXOF&UaA{ zYh7zAYj+GIKLoSs{hvrBGl}K4Ln7uNK4Rl5NJr-%)QRaL&9e}V`gvX-^^|u)T~R;l z66k~gQBryA-5t|R*N$v2yd+=UwOGHM|=Q44#5`os#)Wd_QH zT3BTpH$j~jkJ^#JHb2q20yX|V8(+tc#KFo7&+VPI z<4x3SnK`c+xDjegr=#-gP*;8h``}a56?e;L`cFkYd?!%(XQ=a|efdoy*4hnqrBhKI zHlj{EhI8-@wKHdIK1E?S>6g+-{Dgc<)U$HZdLFg)SF8`LZ%jM?{Z|pwA>5h= zH9!d)S42HrwXpy;wE4l-F{u92QT^tlUaw`S1#hzLKcGuIo(G1t+k^MNUJyUqZJ3Ap zGRpe@-@!DD=A^~sc2K^jUB?URt0}!GuPB|!e@T8FbsfJDx1|iEo`LhfqpoMABeLnv zbzJ2=ct2C&EY#i}lc@Y@kPlH7et8_G^f zQA$(V^HPe@{(p~ld}=uFaPmLcgtD9yGEjO_uSf6u_$v;#XLh4a&*Fa%JP-MMqt72VKW|_SjmpNp2hMg>gM?pI|QZlWRo%7WE_49r}k7^S8oDM_TGST3|D^bBw0$ z`++|;P~PJNeG0xk(vZ_}j?P2vN+&ha_F(cvkH4m9*5d4ia)j7cBaIw7AOY$!QCxt+FlvO&n#3g<`K=c^;fSjxVn z8b5)_x3uSuAoqfLRnD2tIW>sa5c`~V{6&)nq5SvAYEL|a(YB#5cBS9@wyi(@PF$1n zoN|zMz6mD%H)H|Y+UujnH=j%_(|%6tP3l#sFQi_U@*$-au@3#KM6;`+mk90&mQvF;s0p+A31$lEQ_TnKU0nnH>2qH03FGEbgsi> z4QQNW2dHh@oQ32X(N@LgZQ40ZWf=L$w+XCDUmbnv+kx^k_3q@#QGbJ<+cBn6=ZlWh zmGe8($LA8Hq|yirlhpAcom&v=fAV??TT(ub7aqcCb^>+#k@B}H_K2bVDeWKOV2X~Gl!02!A{z94tb%PAZYL;0oP)Z) z>RhMjNJUQH&G_xs>1-!_L~brcU#FYWKM%f3d3$KM67*e$|I#lTIk_^p6VKST228ev_(QDEAgd`c#8GBIr#AVIh;?kGl(zY#g#Dup zea4dil3z}ojs!YJaZ)8)SKQ8?SlAAxTm{Mu;tG^Ew6CM+w~UQyM*UZEi*280H2gw&K&<(l-c(BCX*%YhG^g}n!hUMx=uP}LeUeenZU-4peG>VV zlr@xIM@!9ZM;xIAJ}FlPJ&V`1Y7Z z+`3n;58&xm`_?+eOW>P7UG zM19Jzh+xWQ>Ptx!r+$()9h-@lm}=60Z9I>-Angq)Z;!j=9@wCRJx^g~>c?qoOFe<| zG4%x7K9ss|2*LlT45RTK>N)>2=w#xo#38hApuU(seJNF_kHp>BhBB5io<85>5sb%c zc!lzidUreKHqP-=bbLu0N7D0`^p`xpk+@1ZMz#~BJEayU2UGTu&%+=q$aN&1M{y_z zKt~zH9PeX$`hI{RluhK;QRYxea{eW9E}lglEA;t)hoFs#oxPmAiMSb^-X1Tgd_gHs zz9?l7MMrn~HpH(rA*Lf=mh(zc-%Dvsz5;P}>K|Yv<#%#x?fImgy88TYO5!vPJ4mFa z{sr|A@&%|@$K&KzlG{i*N&PeOcd#>U=gH~VPOd(2Nz{>ONc!`l?ei&4v-JpC($L>m zp2`O#8{s(2NU}eJq{P~GFpbic5=BmjXK)f}kEPzl4ytrM`qUu)hPHCl50TqMT*RI` znfflucj|0@!{J?}^97PRK2@RfB@80(C%=dK7VK*KZRjj%7vsF`(xYg63?dInX-y=-X1?upGdBz?Kho<=hR2zFxvLmz9oqJP+n2q zquuw?olDKlwnh{q`3&_0>? z5@xo0dppR!Pq|6lq_HAS#C(*W?SM0^t;j8*J{K!dbTlN+Z`%i(lv9T|9VN=f?_nt8 z9%d0b(o^q3eF0^Z-lx_i{(ICSu0i>b4j$j1`*p-%{Lqn-RQghU<8OXGi!P~y5I=F`5E`daE!sQ36! zr#I9G*tlAdx4P{tFQHwy*X4FbZ+E-7fqw1Z3-%ht{px+tdAJwaWsdi(%e_FZZmEO3 z7Crg~YW3_9>=o{l(d*ymN3TWv6t8vPR_VJB{&1jEy?5tf(X|E+>^Cs*pl?iYpy%ZlKxh zGr@uK^U?%)f%yx(RtrA#E-skl4Om#*`*mT*K!ZhGiNm0P_xD|039F|gl| z{$AJBHN4#CvwBZfkM_o|$>%*?6B&50CLt&=WnEL(OS}Gp7rU{W_vOavUh7Royjh!y zdq+1#2VytZaJ~6kDtRflzVONgih2VBExg|Xn*t@bcX7R=J7NN<5+}KV13TBb-r!w1 zyw$s!1tNF1a|1K>{NV;Be=|DBE4Y8M_s9McUX=r}-hl&I1N#p6TyNjuFt5+SD6Hbe z9j@!uK9U%y`faD+K$YWJg95|8-{1xw{CGUbd+~EMuj8o_fmNsax?aIEeY^{2LcG0a zN(Z|A66ppK&Q^B46Tjy5BF=RR{CY04>qTBT0Unz+8*f+ zb^Y^Px2`{VkekonCCJU>pU~C~^IxmthWn=mxsOs@*|+i9oUaoP1-q4#h1?i3=XzlG zm0i31GgG-W{5Mm%dHuaY+${bTsol)}4I%Dm{|Bkvw*KR(-P4KtL)|N`|9+^O!p}eZ zrtp8C)~)YvoX%~NxH+AB)=hhD#*7>LHapioTYEKetJm;#7XM#iZfSpsjBbqoQgt_v ze{Dv$ivM9oH+N#eOzvSfF?qOK&hc0=Q^XygZtEA<7AIVtF#hVsukY;{lh`Q6E#vy9 z7j@_P8y9nH`_~t9oBGogcSrg^FYf;Ck1641_ct!-X7C>>;g0o>Ea@)tA1LJ(@TV*7 ze&F9)+V%T8m2rzFt|;TK3`%TU-mT*L55MCs@ei%&#{2)S=uYxasl*UJRbu{QmDt?7 zmE4m4MwQ(c{uZ%rIsfWd_oRPq753(36}P#6R8==I@p?5k-t~{H?&eDTs=B+_O&nIk zUGJv9I%(0>-Mg;M+kAEB%&RjJ{mp8z`}=CSE!@PMb=+Uw#E^P!WYC(*^<6h@>2l?w zuk2iRb%X!<`qloc4VbP$Be$nN%?IwB#KRxBTZ0m>G<8p~o6X&|u76=mw?$%|R_^p5 ze}lAcI)ACQZoR~LZQZ)A|8+aJn}1|`x0FAmgL^yiRR=ef>ksYZ7WKF6igUBN z{@R`0v;J~j+%o_DSFW}}S9eh2jjrynApg|vZl%P#-Q9{oi4A(WnO*;s-tI(y X_K)0S{Vem}wx diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 5c2eced4e3..c3c256916f 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: identi.ca\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-07-28 14:03+0000\n" "Last-Translator: offacer \n" "Language-Team: i18n-zh \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "搜索有关\"%s\"的消息" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" @@ -35,17 +35,19 @@ msgid " from " msgstr " 从 " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / 回复 %2$s 的消息" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s 邀请您加入 %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -78,7 +80,8 @@ msgstr "" "%1$s 邀请你加入 %2$s (%3$s).\n" "\n" "%2$s 是一个能让你和你认识的、感兴趣的人保持联系的微博客服务。 \n" -"你可以和你认识的人分享你的近况、想法或者你的网络生活。你也可以结交有共同兴趣的新朋友。\n" +"你可以和你认识的人分享你的近况、想法或者你的网络生活。你也可以结交有共同兴趣" +"的新朋友。\n" "\n" "%1$s 说:\n" "\n" @@ -96,6 +99,7 @@ msgstr "" "诚挚的感谢, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s 开始关注您的 %2$s 信息。" @@ -117,25 +121,28 @@ msgstr "" "为您效力的 %4$s\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "回复 %2$s / %3$s 的 %1$s 更新。" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s 的 %2$s 状态" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s 公开聚合" @@ -145,40 +152,55 @@ msgstr "%s 公开聚合" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s 及好友" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 公众时间表" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s 状态" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s 时间表" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "来自所有人的 %s 消息!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "(您将收到一封邮件,包含了如何确认邮件地址的说明。)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -187,7 +209,8 @@ msgstr "" "**%%site.name%%** 是一个微博客服务,提供者为 [%%site.broughtby%%](%%site." "broughtbyurl%%)。" -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 是一个微博客服务。" @@ -199,30 +222,34 @@ msgstr "。贡献者应当有全名或昵称。" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 到 64 个小写字母或数字,不包含标点及空白" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "1 到 64 个小写字母或数字,不包含标点及空白。此项必填。" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 个或更多字符" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 个或更多字符,不能忘记!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 个或更多字符。此项必填。" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -230,6 +257,7 @@ msgid "" msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -263,7 +291,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "API 方法未实现!" @@ -286,16 +341,23 @@ msgstr "API 方法未实现!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "API 方法尚未实现。" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "关于" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "接受" @@ -306,6 +368,9 @@ msgstr "接受" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "添加" @@ -323,27 +388,29 @@ msgstr "添加或移除 OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "地址" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "要邀请的好友地址(每行一个)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "所有订阅" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "所有 %s 消息" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "所有匹配搜索条件\"%s\"的消息" @@ -353,30 +420,37 @@ msgstr "所有匹配搜索条件\"%s\"的消息" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "已登录。" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "已订阅!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "确定要删除这条消息吗?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "确认订阅" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "保持这台机器上的登录状态。不要在共用的机器上保持登录!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" @@ -384,22 +458,29 @@ msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器 #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "头像" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "头像已更新。" #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" -msgstr "正在等待这个地址的确认。请查阅你Jabber/GTalk的帐户看有没有收到进一步的指示。(你是否已经添加 %s为你的好友?)" +msgstr "" +"正在等待这个地址的确认。请查阅你Jabber/GTalk的帐户看有没有收到进一步的指示。" +"(你是否已经添加 %s为你的好友?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -408,7 +489,7 @@ msgstr "" "指示。" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "等待确认此电话号码。" @@ -420,6 +501,8 @@ msgstr "下一页 »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "自述" @@ -427,16 +510,18 @@ msgstr "自述" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "自述过长(不能超过140字符)。" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "无法删除通告。" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "无法访问头像URL '%s'" @@ -444,6 +529,8 @@ msgstr "无法访问头像URL '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "无法保存新密码。" @@ -451,31 +538,34 @@ msgstr "无法保存新密码。" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "取消" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "无法创建 OpenID 用户对象。" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "无法识别此Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "无法识别此电子邮件" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "修改" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "修改电子邮件" @@ -485,11 +575,12 @@ msgid "Change password" msgstr "修改密码" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "修改密码" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "修改您的个人信息" @@ -499,6 +590,9 @@ msgstr "修改您的个人信息" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "确认" @@ -511,12 +605,14 @@ msgstr "确认地址" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "已取消确认。" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "确认码" @@ -525,7 +621,8 @@ msgstr "确认码" msgid "Confirmation code not found." msgstr "未找到确认码。" -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -546,28 +643,35 @@ msgstr "" "恭喜, %s! 欢迎来到 %%%%site.name%%%%. 这里,你需要\n" "\n" "* 查看你的资料Go to [your profile](%s) 发布你的第一条消息.\n" -"* 填加 [Jabber/GTalk address](%%%%action.imsettings%%%%) 然后你可以通过即时消息平台发布信息。\n" -"* [Search for people](%%%%action.peoplesearch%%%%) 你认识的或和你有共同兴趣的朋友。 \n" -"* 更新你的 [profile settings](%%%%action.profilesettings%%%%) 告诉大家更多关于你的情况。 \n" +"* 填加 [Jabber/GTalk address](%%%%action.imsettings%%%%) 然后你可以通过即时消" +"息平台发布信息。\n" +"* [Search for people](%%%%action.peoplesearch%%%%) 你认识的或和你有共同兴趣的" +"朋友。 \n" +"* 更新你的 [profile settings](%%%%action.profilesettings%%%%) 告诉大家更多关" +"于你的情况。 \n" "* 请阅读 [online docs](%%%%doc.help%%%%) 有的功能也许你还不熟悉。\n" "\n" "感谢您的注册,希望您喜欢这个服务。" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "连接" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "连接现有帐号" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "联系人" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "无法创建 OpenID 表单:%s" @@ -575,35 +679,39 @@ msgstr "无法创建 OpenID 表单:%s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "无法订阅用户:%s 已在订阅列表中。" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "无法订阅用户:未找到。" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "无法重定向到服务器:%s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "无法保存头像" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "无法保存个人信息" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "无法订阅他人更新。" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "无法订阅。" @@ -623,15 +731,17 @@ msgstr "无法将请求标记转换为访问令牌。" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "无法删除电子邮件确认。" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "无法删除订阅。" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "找不到任何信息。" @@ -644,29 +754,38 @@ msgstr "无法获得一份请求标记。" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "无法插入验证码。" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "无法添加新的订阅。" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "无法保存个人信息。" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "无法更新用户的自动订阅选项。" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "无法更新用户记录。" @@ -682,42 +801,48 @@ msgstr "无法更新用户记录。" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "无法更新用户。" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "创建" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "创建使用此昵称的新用户。" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "创建新帐号" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "为 OpenID 用户产生新的帐号。" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "已确认的Jabber/GTalk帐号。" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "已确认的可以发送SMS短消息的电话号码。" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "已确认的电子邮件。" @@ -726,23 +851,27 @@ msgid "Currently" msgstr "目前" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "添加标签时数据库出错:%s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "添加回复时数据库出错:%s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "删除通告" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "用不超过140个字符描述您自己和您的爱好" @@ -750,11 +879,13 @@ msgstr "用不超过140个字符描述您自己和您的爱好" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "电子邮件" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "电子邮件地址" @@ -764,39 +895,43 @@ msgid "Email Settings" msgstr "电子邮件设置" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "电子邮件地址已存在。" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "电子邮件地址确认" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "电子邮件,类似 \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "电子邮件地址" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "输入昵称或电子邮件。" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "输入手机收到的验证码。" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "无法认证令牌" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "无法将用户与 OpenID 连接。" @@ -807,39 +942,46 @@ msgstr "无法连接用户。" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "添加头像出错" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "添加个人信息出错" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "添加远程的个人信息出错" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "保存地址确认时出错。" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "保存远程的个人信息时出错" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "保存个人信息时出错。" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "保存用户时出错。" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "保存用户时出错;不正确。" @@ -848,6 +990,9 @@ msgstr "保存用户时出错;不正确。" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "保存用户设置时出错。" @@ -858,6 +1003,7 @@ msgstr "更新个人信息时出错" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "更新远程的个人信息时出错" @@ -867,33 +1013,36 @@ msgid "Error with confirmation code." msgstr "验证码出错。" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "昵称已被使用" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "常见问题FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "更新头像失败。" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "%s 好友的聚合" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "%s 回复的聚合" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "%s 标签的聚合" @@ -908,7 +1057,7 @@ msgstr "搜索通告内容" msgid "Find people on this site" msgstr "搜索用户信息" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -919,6 +1068,11 @@ msgstr "由于安全原因,修改设置前需要输入用户名和密码。" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "全名" @@ -927,23 +1081,33 @@ msgstr "全名" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "全名过长(不能超过 255 个字符)。" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "帮助" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "主页" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "主页" @@ -951,21 +1115,27 @@ msgstr "主页" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "主页的URL不正确。" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "我希望通过邮件发布信息。" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "即时通讯IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "IM 帐号" @@ -975,19 +1145,19 @@ msgid "IM Settings" msgstr "IM 设置" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "如果您已经拥有帐号,可以将它连接到您的 OpenID。请输入用户名和密码。" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "如果您希望添加新的 OpenID,输入它并点击“添加”。" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -996,55 +1166,62 @@ msgstr "如果您忘记了密码,可以使用此邮箱收到新的密码。" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "发布用的电子邮件" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "发布用的电子邮件被移除。" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "旧密码不正确" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "用户名或密码不正确。" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "恢复密码的指示已被发送到您的注册邮箱。" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "头像URL '%s'不正确" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "电子邮件地址 %s 不正确" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "主页'%s'不正确" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "授权方式URL '%s'不正确" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "通告内容不正确" @@ -1059,13 +1236,13 @@ msgid "Invalid notice url" msgstr "通告URL不正确" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "个人信息URL '%s'不正确。" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "个人信息URL不正确(格式错误)" @@ -1083,28 +1260,35 @@ msgstr "大小不正确。" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "用户名或密码不正确。" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "已发送邀请" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "已发送邀请给这些人:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "邀请" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "邀请新用户" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1116,11 +1300,12 @@ msgstr "" "授权。" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID 属于另一用户。" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1130,12 +1315,14 @@ msgstr "" "或GTalk中将 %s 加为好友。" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "语言" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "语言过长(不能超过50个字符)。" @@ -1144,7 +1331,15 @@ msgstr "语言过长(不能超过50个字符)。" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "位置" @@ -1153,7 +1348,12 @@ msgstr "位置" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "位置过长(不能超过255个字符)。" @@ -1162,43 +1362,51 @@ msgstr "位置过长(不能超过255个字符)。" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "登录" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "使用[OpenID](%%doc.openid%%)帐号登录。" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" "(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" "%). " msgstr "" -"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, 或使用 " -"[OpenID](%%action.openidlogin%%). " +"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " +"或使用 [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "登出" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "长名字,最好是“实名”" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "忘记了密码?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "生成新的电子邮件地址用于发布信息;取消旧的。" @@ -1209,16 +1417,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "设置 %%site.name%% 发送的邮件。" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "用户始于" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "%s 的微博客服务" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1230,42 +1440,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "我的文字和文件采用的授权方式为" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "新建" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "新的电子邮件地址,用于发布 %s 信息" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "已添加新的发布用的电子邮件地址。" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "新昵称" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "新通告" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "新密码" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "新密码已保存,您现在已登录。" @@ -1275,7 +1493,13 @@ msgstr "新密码已保存,您现在已登录。" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "昵称" @@ -1284,7 +1508,12 @@ msgstr "昵称" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "昵称已被使用,换一个吧。" @@ -1293,47 +1522,58 @@ msgstr "昵称已被使用,换一个吧。" #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "昵称只能使用小写字母和数字,不包含空格。" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "不允许的昵称。" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "希望订阅的用户的昵称" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "昵称或电子邮件" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "否" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "没有 Jabber ID。" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "未收到认证请求!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "未选择运营商。" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "没有输入验证码" @@ -1345,11 +1585,15 @@ msgstr "没有验证码" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "没有内容!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "没有电子邮件地址。" @@ -1358,7 +1602,9 @@ msgid "No id." msgstr "没有 id。" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "没有发布用的电子邮件地址。" @@ -1369,6 +1615,7 @@ msgstr "远程服务器没有昵称。" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "没有昵称。" @@ -1376,12 +1623,14 @@ msgstr "没有昵称。" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "没有可以取消的确认。" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "没有电话号码。" @@ -1391,7 +1640,8 @@ msgid "No profile URL returned by server." msgstr "服务器没有返回个人信息URL。" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "用户没有注册电子邮件。" @@ -1403,7 +1653,7 @@ msgstr "没有找到请求!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "没有结果" @@ -1414,12 +1664,16 @@ msgstr "没有大小。" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "没有找到此ID的信息。" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "没有找到此ID的信息。" @@ -1429,13 +1683,15 @@ msgid "No such OpenID." msgstr "没有这个 OpenID。" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "没有这份文档。" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "没有这份通告。" @@ -1473,12 +1729,22 @@ msgstr "没有这个订阅" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "没有这个用户。" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "没有拥有这个用户名或电子邮件的用户。" @@ -1492,32 +1758,38 @@ msgid "Not a recovery code." msgstr "不是恢复码。" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "不是已注册用户。" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "不支持的数据格式。" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "不是有效的 Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "不是有效的 OpenID。" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "不是有效的电子邮件" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "不是有效的电子邮件。" @@ -1525,6 +1797,11 @@ msgstr "不是有效的电子邮件。" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "不是有效的昵称。" @@ -1544,7 +1821,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "不是有效的个人信息URL(没有YADIS数据)。" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "不是图片文件或文件已损坏。" @@ -1555,11 +1833,13 @@ msgstr "未认证。" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "未预料的响应!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "未找到" @@ -1575,11 +1855,15 @@ msgstr "未找到" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "未登录。" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "未订阅!" @@ -1596,39 +1880,44 @@ msgid "Notice feed for %s" msgstr "%s 的通告聚合" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "通告没有关联个人信息" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "通告" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "带 %s 标签的通告" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "旧密码" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "OpenID 帐号设置" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "OpenID 自动提交" @@ -1636,29 +1925,34 @@ msgstr "OpenID 自动提交" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID 登录" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID 认证已取消。" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "OpenID 认证失败:%s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID 失败:%s" @@ -1674,11 +1968,12 @@ msgid "OpenID settings" msgstr "OpenID 设置" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "在邀请中加几句话(可选)。" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "部分上传。" @@ -1688,34 +1983,46 @@ msgstr "部分上传。" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "密码" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "密码和确认不匹配。" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "密码必须是 6 个字符或更多。" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "请求恢复密码" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "密码已保存。" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "密码不匹配。" @@ -1735,14 +2042,17 @@ msgid "People search" msgstr "搜索用户" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "个人" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "个人消息" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "电话号码,不带标点或空格,包含地区代码" @@ -1756,7 +2066,7 @@ msgstr "" "告,请点击\"取消\"。" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "当我的Jabber/GTalk状态改变时自动发布通告。" @@ -1765,7 +2075,9 @@ msgstr "当我的Jabber/GTalk状态改变时自动发布通告。" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "首选项" @@ -1774,42 +2086,52 @@ msgstr "首选项" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "首选项已保存。" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "首选语言" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "隐私" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "保存通告时出错。" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "个人信息" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "个人信息URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "个人设置" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "未知的帐号" @@ -1818,17 +2140,19 @@ msgid "Public Stream Feed" msgstr "公开的聚合" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "公开的时间表" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "公开Jabber/GTalk帐号的 MicroID。" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "公开电子邮件的 MicroID。" @@ -1838,12 +2162,14 @@ msgid "Recent Tags" msgstr "最近的标签" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "恢复" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "恢复密码" @@ -1856,37 +2182,45 @@ msgstr "恢复码未知" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "注册" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "不允许注册。" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "注册成功。" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "拒绝" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "记住登录状态" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "没有匹配的远程个人信息" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "远程订阅" @@ -1900,6 +2234,9 @@ msgstr "远程订阅" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "移除" @@ -1908,41 +2245,48 @@ msgstr "移除" msgid "Remove OpenID" msgstr "移除OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "移除唯一的OpenID可能使您无法登陆!如果需要移除它,请先添加一个新的。" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "回复" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "%s 的回复" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "重置" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "重置密码" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS短信" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS短信电话号码" @@ -1951,17 +2295,18 @@ msgstr "SMS短信电话号码" msgid "SMS Settings" msgstr "SMS短信设置" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS短信确认" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "相同的密码" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "相同的密码。此项必填。" @@ -1974,12 +2319,21 @@ msgstr "相同的密码。此项必填。" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "保存" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "搜索" @@ -1989,7 +2343,7 @@ msgid "Search Stream Feed" msgstr "搜索聚合" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -1998,7 +2352,7 @@ msgstr "" "在 %%site.name%% 的通告内容中搜索。搜索条件至少包含 3 个字符,多个搜索条件用" "空格分隔。" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2008,48 +2362,56 @@ msgstr "" "含 3 个字符,多个搜索条件用空格分隔。" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "选择运营商" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "发送" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "向这个电子邮件发信以发布新的通告。" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "如果有新订阅,通过电子邮件告诉我。" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "通过Jabber/GTalk发送通告。" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "通过SMS短信将通告发给我;我了解这样也许会给我带来不菲的开支。" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "如果我尚未订阅的用户回我消息,使用Jabber/GTalk通知我。" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "设置" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "设置已保存。" @@ -2069,27 +2431,32 @@ msgid "Something weird happened." msgstr "发生了奇怪的错误……" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "对不起,发布用的电子邮件无法使用。" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "对不起,这个发布用的电子邮件属于其他用户。" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "来源" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "统计" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "未找到已有的OpenID。" @@ -2097,24 +2464,28 @@ msgstr "未找到已有的OpenID。" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "订阅" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "订阅者" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "订阅已确认" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "订阅被拒绝" @@ -2122,28 +2493,35 @@ msgstr "订阅被拒绝" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "订阅" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "上传文件时出错。" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "标签" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "文本" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "搜索文本" @@ -2163,6 +2541,7 @@ msgid "That confirmation code is not for you!" msgstr "此确认码不适用!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "此电子邮件属于其他用户。" @@ -2172,63 +2551,73 @@ msgid "That file is too big." msgstr "文件超出大小限制。" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "您已登记此Jabber帐号。" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "您已登记此电子邮件。" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "您已登记此电话号码。" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "这不是您的Jabber帐号。" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "这是他人的电子邮件。" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "这是他人的电话号码。" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "即时通讯帐号错误。" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "确认码错误。" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "这个电话号码属于另一个用户。" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "超出长度限制。不能超过 140 个字符。" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "超出长度限制。不能超过 255 个字符。" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "地址 \"%s\" 已确认。" @@ -2237,11 +2626,14 @@ msgstr "地址 \"%s\" 已确认。" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "地址被移除。" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2249,7 +2641,8 @@ msgid "" msgstr "" "订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2257,40 +2650,45 @@ msgid "" msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "这些用户订阅了 %s 的通告。" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "这些用户订阅了您的通告。" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "这是 %s 订阅的用户。" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "这是您订阅的用户。" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "这些好友已注册,您已自动订阅这些用户。" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "验证码超时,请重来。" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "此表单会自动提交。如果没有,点击“提交”以转向 OpenID 提供者。" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2304,6 +2702,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "此方法接受POST或DELETE请求。" @@ -2312,47 +2713,63 @@ msgstr "此方法接受POST或DELETE请求。" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "此方法接受POST请求。" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "这个页面不提供您想要的媒体类型" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "时区" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "未选择时区。" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"要订阅,你可以登录 (%%action.login%%), 或注册(%%action.register%%) " -"一个新帐号。如果你已经有在另一个兼容的微博客的帐号(%%doc.openmublog%%), 请填入你资料的互联网地址URL." +"要订阅,你可以登录 (%%action.login%%), 或注册(%%action.register%%) 一个新帐" +"号。如果你已经有在另一个兼容的微博客的帐号(%%doc.openmublog%%), 请填入你资料" +"的互联网地址URL." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "必须提供两个用户帐号或昵称。" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "您的主页、博客或在其他站点的URL" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "您在其他兼容的微博客服务的个人信息URL" @@ -2364,15 +2781,22 @@ msgstr "您在其他兼容的微博客服务的个人信息URL" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "未预料的表单提交。" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "未预料的密码重置。" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "未知动作" @@ -2401,38 +2825,47 @@ msgstr "退订" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "不支持此OMB版本" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "不支持这种图像格式。" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "使用SMS短信更新" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "使用即时通讯工具(IM)更新" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "%2$s 上 %1$s 和好友的更新!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "上传" @@ -2451,12 +2884,15 @@ msgid "Upload a new profile image" msgstr "上传个人信息头像" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "使用这个表单来邀请好友和同事加入。" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "只用于更新、通告或密码恢复" @@ -2480,11 +2916,16 @@ msgstr "要查看的用户不存在。" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "用户没有个人信息。" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "昵称" @@ -2493,29 +2934,33 @@ msgid "User not found." msgstr "未找到用户。" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "您一般处于哪个时区?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "怎么样,%s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "你的位置,格式类似\"城市,省份,国家\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "'%s' 图像格式错误" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "图像大小 '%s' 错误" @@ -2523,7 +2968,9 @@ msgstr "图像大小 '%s' 错误" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "是" @@ -2544,11 +2991,12 @@ msgid "You are already logged in!" msgstr "已登录!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "您已订阅这些用户:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "您与此用户并非好友。" @@ -2566,13 +3014,14 @@ msgstr "请创建新帐号,开始发布通告。" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "您可以通过 %%site.name%% 的电子邮件接收SMS短信。" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "您可以点击\"移除\"按钮,移除帐号的 OpenID。" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2581,7 +3030,8 @@ msgstr "" "您可以通过Jabber/GTalk [即时通讯工具](%%doc.im%%)发送和接受通告。在这里配置它" "们。" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "在这里更新个人信息,让大家对您了解得更多。" @@ -2590,21 +3040,23 @@ msgstr "在这里更新个人信息,让大家对您了解得更多。" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "您可以在这里订阅!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "您必须同意此授权方可注册。" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "您未告知此个人信息" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2625,35 +3077,39 @@ msgstr "" "为您效力的 %4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "您不能删除其他用户的状态。" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "您必须登录才能邀请其他人使用 %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "如果其他人接受邀请并注册,您将得到通知。谢谢您推动了社区发展壮大!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "您已得到确认。请输入新密码。" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "您的OpenID URL" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "您在此服务器的昵称,或注册邮箱。" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2662,47 +3118,57 @@ msgstr "" "[OpenID](%%doc.openid%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已" "关联的 OpenID。" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "几秒前" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "%d 天前" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "%d 小时前" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "%d 分钟前" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "%d 个月前" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "一天前" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "一分钟前" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "一个月前" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "一年前" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "一小时前" @@ -2724,12 +3190,14 @@ msgid "reply" msgstr "回复" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "相同的密码" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "不支持这种类型的文件" @@ -2751,6 +3219,26 @@ msgstr "« 之后" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "会话标识有问题,请重试。" @@ -2759,6 +3247,7 @@ msgid "This notice is not a favorite!" msgstr "此通告未被收藏!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "无法删除收藏。" @@ -2766,22 +3255,28 @@ msgstr "无法删除收藏。" msgid "Favor" msgstr "收藏" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "如果有人收藏我的通告,发邮件通知我。" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "如果收到私人信息,发邮件通知我。" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "已收藏此通告!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "无法创建收藏。" @@ -2791,11 +3286,13 @@ msgstr "取消收藏" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "%s 收藏的通告" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "%s 的收藏的聚合" @@ -2837,33 +3334,44 @@ msgid "Login with your username and password. " msgstr "输入用户名和密码以登录。" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "超出长度限制。不能超过 140 个字符。" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "没有收件人。" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "无法向此用户发送消息。" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "不要向自己发送消息;跟自己悄悄说就得了。" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "未找到用户" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "新消息" @@ -2917,6 +3425,11 @@ msgstr "您可以在这里更新个人信息。" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "找不到匹配的用户。" @@ -2945,6 +3458,8 @@ msgid "New password successfully saved. " msgstr "新密码已保存。" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "密码必须包含 6 个或更多字符。" @@ -2965,12 +3480,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "要订阅,请先[登录](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "%s 的收藏的聚合" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "无法获取收藏的通告。" @@ -2978,7 +3496,7 @@ msgstr "无法获取收藏的通告。" msgid "No such message." msgstr "未找到此消息。" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "只有发送和接受双方可以阅读此消息。" @@ -3002,51 +3520,70 @@ msgid "Mobile carrier for your phone. " msgstr "手机的运营商。" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "发给 %s 的直接消息" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "发给 %s 的直接消息" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "您已发送的直接消息" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "%s 发送的直接消息" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "消息没有正文!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "未找到收件人。" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "无法向并非好友的用户发送直接消息。" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s 的收藏 / %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s 收藏了 %s 的 %s 通告。" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s 收藏了您的通告" @@ -3067,14 +3604,17 @@ msgid "" msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter 设置" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitter 帐号" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "已验证的 Twitter 帐号。" @@ -3083,6 +3623,7 @@ msgid "Twitter Username" msgstr "Twitter 用户名" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "请不要包含空格。" @@ -3091,24 +3632,29 @@ msgid "Twitter Password" msgstr "Twitter 密码" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "自动将我的通告转发到 Twitter。" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "将这里的 \"@\" 回复发送到 Twitter。" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "在这里订阅 Twitter 好友。" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "用户名只能包含数字,大写和小写字母和下划线。不能超过 15 个字符。" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "不能验证 Twitter 帐号!" @@ -3119,33 +3665,43 @@ msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "无法保存 Twitter 设置!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Twitter 设置已保存。" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "此 Twitter 帐号属于他人。" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "无法移除 Twitter 用户。" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Twitter 帐号已移除。" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "无法保存 Twitter 首选项。" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Twitter 首选项已保存。" @@ -3162,18 +3718,19 @@ msgid "The subscription has been rejected, but no " msgstr "订阅已拒绝,但是" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "执行结果" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "执行完毕" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "执行失败" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "对不起,这个命令还没有实现。" @@ -3183,89 +3740,111 @@ msgid "Subscriptions: %1$s\n" msgstr "订阅:%1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "用户没有通告。" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "通告被标记为收藏。" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "全名:%s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "位置:%s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "主页:%s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "关于:%s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "已向 %s 发送消息" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "发送消息出错。" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "指定要订阅的用户名" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "订阅 %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "指定要取消订阅的用户名" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "取消订阅 %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "命令尚未实现。" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "通告关闭。" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "无法关闭通告。" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "通告开启。" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "无法开启通告。" @@ -3273,11 +3852,11 @@ msgstr "无法开启通告。" msgid "Commands:\n" msgstr "命令:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "无法添加信息。" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "无法添加新URI的信息。" @@ -3294,7 +3873,7 @@ msgstr "" "您的新的发布用的地址是 %1$s。\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "%s 发送了新的私人信息" @@ -3308,7 +3887,7 @@ msgstr "" "%1$s (%2$s) 发送了新的私人信息:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "只有用户自己可以访问邮箱。" @@ -3317,31 +3896,39 @@ msgid "This form should automatically submit itself. " msgstr "此表单会自动提交。" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "收藏夹" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "%s 收藏的通告" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "用户" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "收件箱" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "您接收的消息" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "发件箱" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "您发送的消息" @@ -3354,14 +3941,19 @@ msgid "Twitter integration options" msgstr "Twitter 整合选项" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "到" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "无法解析消息。" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s 及好友" @@ -3371,21 +3963,31 @@ msgid "You can upload your personal avatar." msgstr "您可以在这里上传个人头像。" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "头像设置" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "原来的" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "预览" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "剪裁" @@ -3403,37 +4005,46 @@ msgid "There was a problem with your session token. " msgstr "会话标识有问题,请重试。" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "请选择一块方形区域作为你的头像" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "文件数据丢失" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "没有这份通告。" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "未知文件类型" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 #, fuzzy msgid "No profile specified." msgstr "没有收件人。" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 #, fuzzy msgid "No profile with that ID." msgstr "没有找到此ID的信息。" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "阻止用户" @@ -3443,11 +4054,11 @@ msgstr "阻止用户" msgid "Are you sure you want to block this user? " msgstr "确定要阻止该用户吗?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "您已成功阻止该用户:" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "保存阻止信息失败。" @@ -3465,41 +4076,59 @@ msgstr "您将要永久删除这条通告。" msgid "Add to favorites" msgstr "加入收藏" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "编辑 %s 组" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 #, fuzzy msgid "Inboxes must be enabled for groups to work" msgstr "使用组功能前必须使能邮箱" # before login, the user don't even see any Chinese translation. Anyway. This may be good for the future. #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "您必须登录才能创建小组。" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "没有昵称。" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "没有这个组" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "只有admin才能编辑这个组" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "使用这个表单来编辑组" @@ -3509,14 +4138,15 @@ msgid "Nickname must have only lowercase letters " msgstr "昵称只能使用小写字母" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "描述过长(不能超过140字符)。" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "无法更新组" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "选项已保存。" @@ -3535,7 +4165,8 @@ msgstr "新的电子邮件地址,用于发布 %s 信息" msgid "Send me email when someone " msgstr "如果收到私人信息,发邮件通知我。" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "允许朋友们呼叫并给我发送邮件。" @@ -3549,7 +4180,7 @@ msgstr "此电子邮件属于其他用户。" msgid "A confirmation code was sent to the email address you added. " msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "服务器报错 -- 无法找到该用户。" @@ -3563,55 +4194,70 @@ msgstr "如果你想使用 %s 程序自动更新" msgid "Allow %s to update my Facebook status" msgstr "允许 %s 更新我Facebook 的状态" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "跳过" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "没有内容!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "分页" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 #, fuzzy msgid "After" msgstr "« 之后" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "之前 »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "感谢您邀请朋友使用 %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" msgstr "已发送邀请给这些人:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, fuzzy, php-format msgid "You have been invited to %s" msgstr "您已被邀请到 %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "%s 好友的聚合" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "已经正在使用 %s 的朋友:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "发出邀请" @@ -3658,13 +4304,15 @@ msgstr "如果你希望 %s 自动更新。" msgid "Sync preferences" msgstr "同步设置" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 #, fuzzy msgid "Disfavor favorite" msgstr "取消收藏" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "没有这份通告。" @@ -3680,7 +4328,8 @@ msgid "The most popular notices on the site right now." msgstr "显示上周以来最流行的标签" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "推荐用户" @@ -3694,15 +4343,17 @@ msgstr "推荐用户,第 %d 页" msgid "A selection of some of the great users on %s" msgstr "%s 优秀用户摘选" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "那个用户阻止了你的订阅。" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "没有ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "组logo" @@ -3710,11 +4361,13 @@ msgstr "组logo" msgid "You can upload a logo image for your group." msgstr "你可以给你的组上载一个logo图。" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "logo已更新。" -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "更新logo失败。" @@ -3734,7 +4387,8 @@ msgid "A list of the users in this group." msgstr "该组成员列表。" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "组" @@ -3744,12 +4398,12 @@ msgid "Groups, page %d" msgstr "组,第 %d 页" #: actions/groups.php:90 -#, php-format -#, fuzzy +#, fuzzy, php-format msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% 组你可以查找并联络" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "创建新组" @@ -3760,7 +4414,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "组检索" @@ -3784,21 +4438,21 @@ msgstr "通过Jabber/GTalk发送通告。" msgid "A confirmation code was sent " msgstr "确认消息已经发送" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." msgstr "您必须登录才能加入组。" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "您已经是该组成员" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "无法把 %s 用户添加到 %s 组" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, fuzzy, php-format msgid "%s joined group %s" msgstr "%s 加入 %s 组" @@ -3807,16 +4461,19 @@ msgstr "%s 加入 %s 组" msgid "Inboxes must be enabled for groups to work." msgstr "邮箱必须使能组才能工作。" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." msgstr "您必须登录才能邀请其他人使用 %s" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "没有这个组。" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "您未告知此个人信息" @@ -3826,22 +4483,26 @@ msgstr "您未告知此个人信息" msgid "You may not leave a group while you are its administrator." msgstr "您不能删除其他用户的状态。" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "无法更新用户记录。" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "无法订阅用户:未找到。" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s 离开群 %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "登录" @@ -3853,15 +4514,17 @@ msgstr "没有当前状态" msgid "New group" msgstr "新组" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "使用此表格创建组。" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "无法创建组。" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "无法删除订阅。" @@ -3876,11 +4539,14 @@ msgstr "文件超出大小限制。" msgid "Don't send a message to yourself; " msgstr "无法向此用户发送消息。" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "消息已发布。" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax错误" @@ -3897,7 +4563,7 @@ msgstr "振铃呼叫发出。" msgid "Nudge sent!" msgstr "振铃呼叫已经发出!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "OpenID 登录" @@ -3924,11 +4590,13 @@ msgstr "URL自动缩短" msgid "Service" msgstr "服务" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "要使用的自动缩短服务。" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "URL缩短服务超长(最多50个字符)。" @@ -3938,17 +4606,18 @@ msgstr "URL缩短服务超长(最多50个字符)。" msgid "Change your password." msgstr "修改密码" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "密码已保存。" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "不是有效的电子邮件" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "用户自加标签 %s - 第 %d 页" @@ -3958,12 +4627,13 @@ msgstr "用户自加标签 %s - 第 %d 页" msgid "These are users who have tagged themselves \"%s\" " msgstr "这些是自我标识为 \"%s\" 的用户" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "未知的帐号" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "你的标签 (字母letters, 数字numbers, -, ., 和 _), 以逗号或空格分隔" @@ -3974,21 +4644,26 @@ msgid "Automatically subscribe to whoever " msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "主页'%s'不正确" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "无法保存个人信息。" -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "公开的时间表" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 #, fuzzy msgid "Could not retrieve public stream." msgstr "无法获取收藏的通告。" @@ -3999,8 +4674,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) 服务" +"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) 服务" #: actions/publictagcloud.php:57 #, fuzzy @@ -4012,11 +4687,13 @@ msgstr "公开的聚合" msgid "These are most popular recent tags on %s " msgstr "这些是最近的 %s 流行标签 " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "标签云聚集" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "对不起,请邀请那些能注册的人。" @@ -4073,7 +4750,8 @@ msgstr "(您将立即收到一封电子邮件,含有" msgid "That's a local profile! Login to subscribe." msgstr "那是一个本地资料!需要登录才能订阅。" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "%s 的回复,第 % 页" @@ -4083,53 +4761,74 @@ msgstr "%s 的回复,第 % 页" msgid "%s favorite notices, page %d" msgstr "%s 收藏的通告" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s 组" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s 组, 第 %d 页" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "组资料" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "URL 互联网地址" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "通告" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "组动作" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "%s 的通告聚合" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "注册于" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(没有)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "所有成员" @@ -4139,15 +4838,15 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging)" +"**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient " msgstr "只有发送和接受双方可以阅读此消息。" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, fuzzy, php-format msgid "%s, page %d" msgstr "%s 的收件箱 - 第 %d 页" @@ -4158,35 +4857,42 @@ msgid "'s profile" msgstr "个人信息" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "用户没有个人信息。" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "相片" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "未知动作" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 #, fuzzy msgid "Send a direct message to this user" msgstr "无法向此用户发送消息。" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "新消息" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "订阅者" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "所有组" @@ -4196,8 +4902,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging)" +"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/smssettings.php:128 #, fuzzy @@ -4214,7 +4920,7 @@ msgstr "通过Jabber/GTalk发送通告。" msgid "A confirmation code was sent to the phone number you added. " msgstr "等待确认此电话号码。" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "选择运营商" @@ -4279,17 +4985,18 @@ msgstr "这是 %s 订阅的用户。" msgid "These are the people whose " msgstr "这些用户订阅了 %s 的通告。" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "没有 Jabber ID。" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "带 %s 标签的通告" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "有 \"%s\" 标签的消息,最近的排序在前" @@ -4314,28 +5021,29 @@ msgstr "标签" msgid "Tag user" msgstr "标签" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" -msgstr "给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" +msgstr "" +"给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" #: actions/tagother.php:164 #, fuzzy msgid "There was a problem with your session token." msgstr "会话标识有问题,请重试。" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "你只能给你订阅的人或订阅你的人加标签。" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "无法保存头像" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "使用这个表格给你的关注者或你的订阅加注标签。" @@ -4344,20 +5052,23 @@ msgstr "使用这个表格给你的关注者或你的订阅加注标签。" msgid "No such tag." msgstr "未找到此消息。" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "带 %s 标签的通告" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "阻止用户失败。" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "取消阻止用户失败。" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "未找到" @@ -4367,17 +5078,18 @@ msgstr "未找到" msgid "Add your Twitter account to automatically send " msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy msgid "Twitter user name" msgstr "Twitter 用户名" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Twitter 密码" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 #, fuzzy msgid "Twitter Friends" msgstr "Twitter 设置" @@ -4391,156 +5103,165 @@ msgstr "用户名只能有数字," msgid "Unable to retrieve account information " msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "保存用户时出错。" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "服务器没有返回个人信息URL。" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 #, fuzzy msgid "No profile with that id." msgstr "没有找到此ID的信息。" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "退订" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "%s 群组" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "%s 群组, 第 %d 页" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "保存通告时出错。" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "在这个网站你被禁止发布消息。" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "上载一个头像。" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "其他" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "其他选项" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "无标题页" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "主站导航" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "个人资料及朋友年表" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "检索人或文字" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "帐号" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "修改资料" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "与IM,手机短信,Twitter的连接" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "登出本站" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "登入本站" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "创建新帐号" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "没有这个 OpenID。" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "帮助" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "新通告" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "本地显示" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "新通告" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "次项站导航" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "StatusNet软件注册证" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "全部" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "注册证" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "阻止该用户" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "阻止" @@ -4554,12 +5275,15 @@ msgstr "%s 收藏的通告" msgid "To use the %s Facebook Application you need to login " msgstr "你需要登录方能使用%sFacebook程序" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "一个新帐号" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "已发布" @@ -4581,35 +5305,40 @@ msgstr "%s 标签的聚合" msgid "All" msgstr "全部" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "标签" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "选择标签缩小清单" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "执行" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" msgstr "您的主页、博客或在其他站点的URL" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "描述" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "用不超过140个字符描述您自己和您的爱好" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" @@ -4619,21 +5348,21 @@ msgstr "你的位置,格式类似\"城市,省份,国家\"" msgid "Group" msgstr "组" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "admin管理员" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "编辑 %s群选项" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logo图标" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "添加或编辑 %s 图标" @@ -4666,12 +5395,12 @@ msgstr "加入" msgid "Leave" msgstr "保存" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "输入用户名和密码以登录。" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "创建新帐号" @@ -4694,17 +5423,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s 开始关注您的 %2$s 信息。" -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, fuzzy, php-format msgid "Location: %s\n" msgstr "位置:%s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "主页:%s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4713,7 +5442,7 @@ msgstr "" "自传Bio: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s 振铃呼叫你" @@ -4728,47 +5457,55 @@ msgstr "%1$s (%2$s) 发送了新的私人信息:" msgid "%1$s just added your notice from %2$s" msgstr "%1$s 收藏了您的 %2$s 通告" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr "从 " -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 #, fuzzy msgid "Send a direct notice" msgstr "删除通告" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "发送消息" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 个或更多字符" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 #, fuzzy msgid "in reply to" msgstr "先前……" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 #, fuzzy msgid "Reply to this notice" msgstr "无法删除通告。" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "回复" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 #, fuzzy msgid "Delete this notice" msgstr "删除通告" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "删除" @@ -4791,28 +5528,30 @@ msgstr "呼叫这个用户" msgid "Tags in %s's notices" msgstr "%s's 的消息的标签" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(none 没有)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "公告" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "用户组" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy msgid "Recent tags" msgstr "最近的标签" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "特征" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" msgstr "用户" @@ -4831,32 +5570,34 @@ msgstr "搜索用户信息" msgid "Untitled section" msgstr "无标题章节" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "%s 订阅的人" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "订阅 %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "%s 组是成员组成了" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "使用这个表单来邀请好友和同事加入。" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." msgstr "用户没有个人信息。" #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 #, fuzzy msgid "Subscribe to this user" msgstr "订阅 %s" @@ -4872,11 +5613,12 @@ msgid "Top posters" msgstr "灌水精英" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "取消阻止次用户" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "取消阻止" @@ -4885,6 +5627,2044 @@ msgstr "取消阻止" msgid "Unsubscribe from this user" msgstr "取消订阅 %s" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "%s 好友的聚合" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "%s 好友的聚合" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "%s 好友的聚合" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s 及好友" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "您可以在这里上传个人头像。" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "头像已更新。" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "您选择了永久删除通告。这样做是无法恢复的。" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "会话标识有问题,请重试。" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "如果收到私人信息,发邮件通知我。" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "你可以给你的组上载一个logo图。" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "请选择一块方形区域作为你的头像" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "%s 的微博客服务" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。搜索条件至少包" +"含 3 个字符,多个搜索条件用空格分隔。" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "发送消息出错。" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "搜索有关\"%s\"的消息" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "由于安全原因,修改设置前需要输入用户名和密码。" + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "公开的聚合" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "公开的聚合" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "公开的聚合" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "创建" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "组资料" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "个人信息" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "%s 的通告聚合" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "%s 的通告聚合" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "%s 的通告聚合" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "%s 的发件箱" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "头像" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "个人设置" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"验证码已被发送到您新增的电话号码。请检查收件箱(和垃圾箱),找到验证码并按要求" +"使用它。" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "未找到用户" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" +"告,请点击\"取消\"。" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "检索人或文字" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "与IM,手机短信,Twitter的连接" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "呼叫" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "你需要登录方能使用%sFacebook程序" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s 开始关注您的 %2$s 信息。\n" +"\n" +"\t%3$s\n" +"\n" +"为您效力的 %4$s\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "搜索" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "没有这份文档。" + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "该组成员列表。" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "该组成员列表。" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "用户没有个人信息。" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s 及好友" + +#: actions/blockedfromgroup.php:108 +#, fuzzy +msgid "A list of the users blocked from joining this group." +msgstr "该组成员列表。" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "取消阻止用户失败。" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "确认码" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "无法删除通告。" + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "主页'%s'不正确" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "昵称已被使用,换一个吧。" + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "无法创建收藏。" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "新通告" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "新通告" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "不是有效的昵称。" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "没有收件人。" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "用户没有个人信息。" + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "您未告知此个人信息" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "阻止用户" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +# before login, the user don't even see any Chinese translation. Anyway. This may be good for the future. +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "您必须登录才能创建小组。" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "组" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "无法更新用户。" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "无法保存 Twitter 设置!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "同步选项已保存。" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "只有admin才能编辑这个组" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "admin管理员" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "没有结果" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "用户没有个人信息。" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "新消息" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "无法保存个人信息。" + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已" +"关联的 OpenID。" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "个人设置" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) 服务" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "如果您忘记了密码,可以使用此邮箱收到新的密码。" + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "您已得到确认。请输入新密码。" + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "请求恢复密码" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "验证码出错。" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "订阅 %s" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s 收藏的通告" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "%s 的通告聚合" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "%s 的通告聚合" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "%s 的通告聚合" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "admin管理员" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "没有这个用户。" + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "带 %s 标签的通告" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "%s 的通告聚合" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s 开始关注您的 %2$s 信息。" + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "%s 的通告聚合" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "%s 的通告聚合" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "已收藏此通告!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "此通告未被收藏!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "无法获取收藏的通告。" + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "没有收件人。" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "找不到任何信息。" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / 回复 %2$s 的消息" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "%2$s 上 %1$s 的更新!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy +msgid "License" +msgstr "注册证" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "所有订阅" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "个人设置" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "您未告知此个人信息" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "保存通告时出错。" + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "发送给 %1$s 的 %2$s 消息" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "用户没有个人信息。" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "个人信息" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "上传" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "修改密码" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "连接" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "搜索" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "登录" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "阻止" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "阻止用户" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "添加或编辑 %s 图标" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "没有内容!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "用户" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "搜索" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "主页的URL不正确。" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "未找到此消息。" + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "发给 %s 的直接消息" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "超出长度限制。不能超过 140 个字符。" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "无法订阅用户:未找到。" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "描述过长(不能超过140字符)。" + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "您已经是该组成员" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "无法把 %s 用户添加到 %s 组" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "您未告知此个人信息" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "无法订阅用户:未找到。" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s 群组" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%s 组是成员组成了" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "组动作" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "超出长度限制。不能超过 140 个字符。" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "不支持这种图像格式。" + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "相片" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "描述过长(不能超过140字符)。" + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%2$s 上 %1$s 的更新!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "要查看的用户不存在。" + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "未认证。" + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "无法将请求标记转换为访问令牌。" + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "此OMB协议版本无效。" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "没有这份通告。" + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "没有这份通告。" + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%2$s 上 %1$s 的更新!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "这个页面不提供您想要的媒体类型" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " +"或使用 [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "所有匹配搜索条件\"%s\"的消息" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "自述过长(不能超过140字符)。" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "不是有效的个人信息URL(没有YADIS数据)。" + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "那是一个本地资料!需要登录才能订阅。" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "无法获得一份请求标记。" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "%s 的通告聚合" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "发送给 %1$s 的 %2$s 消息" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "%s 的收藏的聚合" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "%s 的收藏的聚合" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "%s 的收藏的聚合" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s 组" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "消息已发布。" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "这个页面不提供您想要的媒体类型" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "%s 的通告聚合" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" +"告,请点击\"取消\"。" + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "无法访问头像URL '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "'%s' 图像格式错误" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "无法重定向到服务器:%s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "StatusNet软件注册证" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "无法更新已确认的电子邮件。" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "振铃呼叫发出。" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "无法删除通告。" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "保存通告时出错。" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "没有验证码" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "登入本站" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "选择运营商" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "用不超过140个字符描述您自己和您的爱好" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "%s 的通告聚合" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s 收藏了您的通告" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " 从 " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "无法删除收藏。" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "删除通告" + #, fuzzy #~ msgid "Code not yet ready." #~ msgstr "命令尚未实现。" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.mo b/locale/zh_TW/LC_MESSAGES/statusnet.mo index 9bdfbaf9f7ec586e2945341f71979db6089f294b..251d832662b63cde98c26ea2a73b59e63cf10ec0 100644 GIT binary patch literal 24937 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 delta 5715 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\n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "搜尋 \"%s\"相關資料" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" @@ -35,17 +35,19 @@ msgid " from " msgstr "" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -77,6 +79,7 @@ msgid "" msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "現在%1$s在%2$s成為你的粉絲囉" @@ -100,25 +103,28 @@ msgstr "" "敬上。\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s的狀態是%2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s的公開內容" @@ -128,40 +134,55 @@ msgstr "%s的公開內容" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s與好友" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -170,7 +191,8 @@ msgstr "" "**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型" "部落格服務" -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%**是個微型部落格" @@ -182,30 +204,34 @@ msgstr "必須注明作者姓名或昵稱." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6個以上字元" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6個或6個以上字元,別忘了自己密碼喔" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -213,6 +239,7 @@ msgid "" msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -242,7 +269,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "" @@ -265,16 +319,23 @@ msgstr "" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "" -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "關於" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "接受" @@ -285,6 +346,9 @@ msgstr "接受" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "新增" @@ -302,27 +366,29 @@ msgstr "" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "信箱" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "所有訂閱" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "%s的所有新增內容" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "所有符合 \"%s\"的更新" @@ -332,30 +398,37 @@ msgstr "所有符合 \"%s\"的更新" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "已登入" -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "此帳號已註冊" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "註冊確認" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "未來在同一部電腦自動登入" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -363,15 +436,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "個人圖像" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "更新個人圖像" #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -381,13 +458,14 @@ msgstr "" "好友清單了嗎?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "" @@ -399,6 +477,8 @@ msgstr "之前的內容»" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "自我介紹" @@ -406,16 +486,18 @@ msgstr "自我介紹" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "自我介紹過長(共140個字元)" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "無法讀取此%sURL的圖像" @@ -423,6 +505,8 @@ msgstr "無法讀取此%sURL的圖像" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "無法存取新密碼" @@ -430,31 +514,34 @@ msgstr "無法存取新密碼" #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "取消" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "無法初始化OpenID用戶對象(consumer object)" #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "此JabberID錯誤" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "更改" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "" @@ -464,11 +551,12 @@ msgid "Change password" msgstr "更改密碼" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "" @@ -478,6 +566,9 @@ msgstr "" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "確認" @@ -490,12 +581,14 @@ msgstr "確認信箱" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "確認取消" #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "" @@ -504,7 +597,8 @@ msgstr "" msgid "Confirmation code not found." msgstr "確認碼遺失" -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -524,20 +618,24 @@ msgid "" msgstr "" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "連結" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "與現有帳號連結" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "好友名單" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "無法從 %s 建立OpenID" @@ -545,35 +643,39 @@ msgstr "無法從 %s 建立OpenID" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "無法連結到伺服器:%s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "無法存取個人圖像資料" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "無法存取新的個人資料" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "" -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "" @@ -593,15 +695,17 @@ msgstr "無法轉換請求標記以致無法存取標記" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "無法取消信箱確認" -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "無法刪除帳號" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "" @@ -614,29 +718,38 @@ msgstr "無法取得轉換標記" #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "無法輸入確認碼" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "無法新增訂閱" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "無法儲存個人資料" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "" @@ -652,42 +765,48 @@ msgstr "" #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "無法更新使用者" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "新增" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "以此暱稱新增使用者" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "新增帳號" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "該OpenID已經注冊" #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "目前已確認的Jabber/Gtalk地址" #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "" @@ -696,23 +815,27 @@ msgid "Currently" msgstr "目前" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "增加回覆時,資料庫發生錯誤: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "請在140個字以內描述你自己與你的興趣" @@ -720,11 +843,13 @@ msgstr "請在140個字以內描述你自己與你的興趣" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "電子信箱" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "" @@ -734,39 +859,43 @@ msgid "Email Settings" msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "此電子信箱已註冊過了" -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "確認信箱" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "請輸入暱稱或電子信箱" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "授權錯誤(Error authorizing token)" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "連接OpenID時發生錯誤" @@ -777,39 +906,46 @@ msgstr "連接用戶時發生錯誤(Error connecting user.)" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "個人圖像插入錯誤" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "新的更人資料輸入錯誤" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "儲存信箱確認發生錯誤" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "儲存遠端個人資料發生錯誤" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "儲存個人資料發生錯誤" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "儲存使用者發生錯誤" #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "儲存使用者發生錯誤;使用者名稱無效" @@ -818,6 +954,9 @@ msgstr "儲存使用者發生錯誤;使用者名稱無效" #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "使用者設定發生錯誤" @@ -828,6 +967,7 @@ msgstr "更新個人資料發生錯誤" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "更新遠端個人資料發生錯誤" @@ -837,33 +977,36 @@ msgid "Error with confirmation code." msgstr "確認碼發生錯誤" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "這個暱稱已有人用了喔" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "常見問題" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "無法上傳個人圖像" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "發送給%s好友的訂閱" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "回應給%s的訂閱" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "" @@ -878,7 +1021,7 @@ msgstr "" msgid "Find people on this site" msgstr "" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -889,6 +1032,11 @@ msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更 #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "全名" @@ -897,23 +1045,33 @@ msgstr "全名" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "全名過長(最多255字元)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "求救" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "主頁" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "個人首頁" @@ -921,21 +1079,27 @@ msgstr "個人首頁" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "個人首頁位址錯誤" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "線上即時通信箱" @@ -945,19 +1109,19 @@ msgid "IM Settings" msgstr "線上即時通設定" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "若想新增OpenID到你的帳號,請在下方空格輸入並勾選『新增』" -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -966,55 +1130,62 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "舊密碼錯誤" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "使用者名稱或密碼錯誤" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "我們已寄出一封信到你帳號中的信箱,告訴你如何取回你的密碼。" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "個人圖像連結%s無效" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "個人首頁連結%s無效" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "" @@ -1029,13 +1200,13 @@ msgid "Invalid notice url" msgstr "" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "個人資料連結%s無效" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "個人資料連結無效(格式錯誤)" @@ -1053,28 +1224,35 @@ msgstr "尺寸錯誤" #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "使用者名稱或密碼無效" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1083,11 +1261,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "此Jabber ID已有人使用" #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1095,12 +1274,14 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "" @@ -1109,7 +1290,15 @@ msgstr "" #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "地點" @@ -1118,7 +1307,12 @@ msgstr "地點" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "地點過長(共255個字)" @@ -1127,18 +1321,22 @@ msgstr "地點過長(共255個字)" #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "登入" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "用OpenID(%%doc.openid%%)帳號登入" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1146,22 +1344,26 @@ msgid "" "%). " msgstr "" -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "登出" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "遺失或忘記密碼了嗎?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1172,16 +1374,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "何時加入會員的呢?" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "&s的微型部落格" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1191,42 +1395,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "新暱稱" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "新訊息" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "新密碼" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "新密碼已儲存成功。你已登入。" @@ -1236,7 +1448,13 @@ msgstr "新密碼已儲存成功。你已登入。" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "暱稱" @@ -1245,7 +1463,12 @@ msgstr "暱稱" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "此暱稱已有人使用。再試試看別的吧。" @@ -1254,47 +1477,58 @@ msgstr "此暱稱已有人使用。再試試看別的吧。" #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "暱稱請用小寫字母或數字,勿加空格。" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "此暱稱無法使用" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "你想成為誰的粉絲呢?請輸入他/她的暱稱。" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "暱稱或信箱" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "查無此Jabber ID" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "無確認請求" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "" @@ -1306,11 +1540,15 @@ msgstr "無確認碼" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "無內容" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1319,7 +1557,9 @@ msgid "No id." msgstr "" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1330,6 +1570,7 @@ msgstr "無遠端伺服器提供的暱稱" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "無暱稱" @@ -1337,12 +1578,14 @@ msgstr "無暱稱" #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "" #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "" @@ -1352,7 +1595,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "查無此使用者所註冊的信箱" @@ -1364,7 +1608,7 @@ msgstr "目前無請求" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "無結果" @@ -1375,12 +1619,16 @@ msgstr "無尺寸" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "" @@ -1390,13 +1638,15 @@ msgid "No such OpenID." msgstr "無此OpenID" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "無此文件" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "無此通知" @@ -1434,12 +1684,22 @@ msgstr "無此訂閱" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "無此使用者" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1453,32 +1713,38 @@ msgid "Not a recovery code." msgstr "此恢復碼錯誤" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "此JabberID無效" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "此OpenID無效" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "此信箱無效" @@ -1486,6 +1752,11 @@ msgstr "此信箱無效" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "" @@ -1505,7 +1776,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "" @@ -1516,11 +1788,13 @@ msgstr "" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1536,11 +1810,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "" @@ -1557,39 +1835,44 @@ msgid "Notice feed for %s" msgstr "" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1597,29 +1880,34 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "" @@ -1635,11 +1923,12 @@ msgid "OpenID settings" msgstr "" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "" @@ -1649,34 +1938,46 @@ msgstr "" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "" @@ -1696,14 +1997,17 @@ msgid "People search" msgstr "" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1715,7 +2019,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1724,7 +2028,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "" @@ -1733,42 +2039,52 @@ msgstr "" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "" @@ -1777,17 +2093,19 @@ msgid "Public Stream Feed" msgstr "" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1797,12 +2115,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1815,37 +2135,45 @@ msgstr "" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -1859,6 +2187,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "" @@ -1867,41 +2198,48 @@ msgstr "" msgid "Remove OpenID" msgstr "" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1910,17 +2248,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -1933,12 +2272,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "" @@ -1948,14 +2296,14 @@ msgid "Search Stream Feed" msgstr "" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -1963,48 +2311,56 @@ msgid "" msgstr "" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "" @@ -2024,27 +2380,32 @@ msgid "Something weird happened." msgstr "" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "" @@ -2052,24 +2413,28 @@ msgstr "" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "" @@ -2077,28 +2442,35 @@ msgstr "" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "" @@ -2118,6 +2490,7 @@ msgid "That confirmation code is not for you!" msgstr "" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2127,63 +2500,73 @@ msgid "That file is too big." msgstr "" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -2192,18 +2575,22 @@ msgstr "" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2211,40 +2598,45 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2256,6 +2648,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2264,25 +2659,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2291,18 +2698,21 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2314,15 +2724,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2351,38 +2768,47 @@ msgstr "" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "" @@ -2399,12 +2825,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" @@ -2428,11 +2857,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "" @@ -2441,29 +2875,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "" @@ -2471,7 +2909,9 @@ msgstr "" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2492,11 +2932,12 @@ msgid "You are already logged in!" msgstr "" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2514,20 +2955,22 @@ msgstr "" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2536,21 +2979,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2564,82 +3009,96 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "" @@ -2661,12 +3120,14 @@ msgid "reply" msgstr "" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2687,6 +3148,26 @@ msgstr "" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2695,6 +3176,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2702,22 +3184,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2727,11 +3215,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2771,33 +3261,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2851,6 +3352,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2879,6 +3385,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2899,12 +3407,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2912,7 +3423,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -2936,51 +3447,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -2999,14 +3529,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3015,6 +3548,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3023,24 +3557,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3051,33 +3590,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3094,18 +3643,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3115,89 +3665,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3205,11 +3777,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3224,7 +3796,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3236,7 +3808,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3245,31 +3817,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3282,14 +3862,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s與好友" @@ -3299,22 +3884,32 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 #, fuzzy msgid "Avatar settings" msgstr "線上即時通設定" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3331,35 +3926,44 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 #, fuzzy msgid "Lost our file." msgstr "無此通知" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "無此使用者" @@ -3368,11 +3972,11 @@ msgstr "無此使用者" msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3389,40 +3993,58 @@ msgstr "" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 #, fuzzy msgid "No nickname" msgstr "無暱稱" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 #, fuzzy msgid "No such group" msgstr "無此通知" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3432,16 +4054,17 @@ msgid "Nickname must have only lowercase letters " msgstr "暱稱請用小寫字母或數字,勿加空格。" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "自我介紹過長(共140個字元)" -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 #, fuzzy msgid "Could not update group." msgstr "無法更新使用者" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "" @@ -3458,7 +4081,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3472,7 +4096,7 @@ msgstr "此電子信箱已註冊過了" msgid "A confirmation code was sent to the email address you added. " msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3486,53 +4110,68 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "無內容" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "之前的內容»" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "發送給%s好友的訂閱" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3575,12 +4214,14 @@ msgstr "" msgid "Sync preferences" msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 #, fuzzy msgid "Popular notices" msgstr "無此通知" @@ -3595,7 +4236,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3609,15 +4251,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3625,12 +4269,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "更新個人圖像" -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "無法上傳個人圖像" @@ -3650,7 +4296,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3665,6 +4312,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "新增帳號" @@ -3675,7 +4323,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "" @@ -3697,20 +4345,20 @@ msgstr "" msgid "A confirmation code was sent " msgstr "無確認碼" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "無法連結到伺服器:%s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3719,16 +4367,19 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "無此通知" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -3736,21 +4387,25 @@ msgstr "" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "無法從 %s 建立OpenID" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3762,16 +4417,18 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "無法存取個人圖像資料" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "註冊失敗" @@ -3784,11 +4441,14 @@ msgstr "" msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3805,7 +4465,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "" @@ -3830,11 +4490,13 @@ msgstr "" msgid "Service" msgstr "" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 #, fuzzy msgid "URL shortening service is too long (max 50 chars)." msgstr "地點過長(共255個字)" @@ -3844,16 +4506,17 @@ msgstr "地點過長(共255個字)" msgid "Change your password." msgstr "更改密碼" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "此信箱無效" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3863,11 +4526,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3877,21 +4541,26 @@ msgid "Automatically subscribe to whoever " msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "個人首頁連結%s無效" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "無法儲存個人資料" -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3911,11 +4580,13 @@ msgstr "" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -3967,7 +4638,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "" @@ -3977,52 +4649,73 @@ msgstr "" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "無此通知" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "何時加入會員的呢?" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4037,7 +4730,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4048,32 +4741,39 @@ msgid "'s profile" msgstr "無此通知" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "無此通知" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "所有訂閱" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4098,7 +4798,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4159,17 +4859,18 @@ msgstr "" msgid "These are the people whose " msgstr "" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy msgid "Jabber" msgstr "查無此Jabber ID" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "&s的微型部落格" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4193,7 +4894,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4203,17 +4904,17 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "無法存取個人圖像資料" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4222,20 +4923,23 @@ msgstr "" msgid "No such tag." msgstr "無此通知" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "&s的微型部落格" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "目前無請求" @@ -4244,16 +4948,17 @@ msgstr "目前無請求" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "新密碼" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4266,155 +4971,164 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "無法取消信箱確認" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." msgstr "儲存使用者發生錯誤" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." msgstr "無確認請求" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "此帳號已註冊" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "儲存使用者發生錯誤" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "無法上傳個人圖像" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "關於" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "新增帳號" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 #, fuzzy msgid "Login with OpenID" msgstr "無此OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "求救" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "新訊息" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "新訊息" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "無此使用者" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "" @@ -4427,12 +5141,15 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "新增帳號" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "" @@ -4453,33 +5170,38 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "所有訂閱" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic in 140 chars" msgstr "請在140個字以內描述你自己與你的興趣" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" @@ -4488,21 +5210,21 @@ msgstr "" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "登出" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4534,12 +5256,12 @@ msgstr "登入" msgid "Leave" msgstr "" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" msgstr "使用者名稱或密碼無效" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 #, fuzzy msgid "Sign up for a new account" msgstr "新增帳號" @@ -4560,24 +5282,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: lib/mail.php:254 -#, fuzzy, php-format +#: lib/mail.php:254 lib/mail.php:253 +#, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 -#, fuzzy, php-format +#: lib/mail.php:256 lib/mail.php:255 +#, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4592,41 +5314,49 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" msgstr "新訊息" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6個以上字元" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4647,27 +5377,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "" @@ -4684,31 +5416,33 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" msgstr "無此訂閱" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "此帳號已註冊" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "" #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "" @@ -4721,11 +5455,12 @@ msgid "Top posters" msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "無此使用者" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "" @@ -4733,6 +5468,1969 @@ msgstr "" msgid "Unsubscribe from this user" msgstr "" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "發送給%s好友的訂閱" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s與好友" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "更新個人圖像" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "&s的微型部落格" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "搜尋 \"%s\"相關資料" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更改設定。" + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "%s的公開內容" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "新增" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "無此通知" + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "無此通知" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "個人圖像" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "線上即時通設定" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "無此使用者" + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "無法取消信箱確認" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"現在%1$s在%2$s成為你的粉絲囉。\n" +"\n" +"\t%3$s\n" +"\n" +"\n" +"%4$s.\n" +"敬上。\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "無此文件" + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "無法連結到伺服器:%s" + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "無此使用者" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "無此通知" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s與好友" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "無此使用者" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "地點" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "無此通知" + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "個人首頁連結%s無效" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "此暱稱已有人使用。再試試看別的吧。" + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "無法存取個人圖像資料" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "新訊息" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "新訊息" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "此信箱無效" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "" + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "無此使用者" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "無法更新使用者" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +msgid "Design preferences saved." +msgstr "" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "無結果" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "無法儲存個人資料" + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "若忘記或遺失密碼,我們會寄新的密碼到你帳號中的信箱。" + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recover" +msgstr "" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "確認碼發生錯誤" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "無此通知" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "無此使用者" + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "現在%1$s在%2$s成為你的粉絲囉" + +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "無法更新使用者" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "無法更新使用者" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s的狀態是%2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "&s的微型部落格" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "所有訂閱" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "儲存使用者發生錯誤" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "無此通知" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "無此通知" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "更改密碼" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "連結" + +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "登入" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "無此使用者" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "無此使用者" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "無內容" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "個人首頁位址錯誤" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "無此通知" + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "無法連結到伺服器:%s" + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "自我介紹過長(共140個字元)" + +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "無法連結到伺服器:%s" + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "無法從 %s 建立OpenID" + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "自我介紹過長(共140個字元)" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "無法轉換請求標記以致無法存取標記" + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "無此通知" + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "無此通知" + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "個人首頁位址錯誤" + +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "所有符合 \"%s\"的更新" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "請在140個字以內描述你自己與你的興趣" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "請在140個字以內描述你自己與你的興趣" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "自我介紹過長(共140個字元)" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "無法取得轉換標記" + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "發送給%s好友的訂閱" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "無此通知" + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "個人首頁位址錯誤" + +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "無法讀取此%sURL的圖像" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "無法連結到伺服器:%s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "新訊息" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "無法連結到伺服器:%s" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" +msgstr "" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "新增訊息時發生錯誤" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "無確認碼" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "請在140個字以內描述你自己與你的興趣" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "請在140個字以內描述你自己與你的興趣" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "現在%1$s在%2$s成為你的粉絲囉" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "新訊息" + #, fuzzy #~ msgid "Delete my account" #~ msgstr "新增帳號" @@ -4742,11 +7440,3 @@ msgstr "" #~ msgid "Email address" #~ msgstr "電子信箱" - -#~ msgid "Error inserting notice" -#~ msgstr "新增訊息時發生錯誤" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "若忘記或遺失密碼,我們會寄新的密碼到你帳號中的信箱。" From 12eec0fea24ab71a4a374d06bdd8ce8fe0ebef98 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 2 Nov 2009 11:56:44 -0800 Subject: [PATCH 32/92] Update Russian localization from apaskal's branch Updated from version in merge request 1762 - http://www.gitorious.org/statusnet/mainline/merge_requests/1762 --- locale/ru/LC_MESSAGES/statusnet.mo | Bin 132937 -> 135490 bytes locale/ru/LC_MESSAGES/statusnet.po | 227 ++++++++++++++++++++--------- 2 files changed, 158 insertions(+), 69 deletions(-) diff --git a/locale/ru/LC_MESSAGES/statusnet.mo b/locale/ru/LC_MESSAGES/statusnet.mo index 251292eae7b9f7459096f72739c52315e3c9a672..8bb08b88595777b9b0387ef43d929af6a6e62a9d 100644 GIT binary patch delta 26675 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 Y>AuPq`}0IMOKj?iZeZ;9L4L#k7qzCR-2eap diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 4fcd680001..5aa1298bcf 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -6,12 +6,12 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-04-01 16:09+0000\n" -"Last-Translator: motherfuker \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2009-10-12 12:17+0300\n" +"Last-Translator: Andrey Paskal \n" +"Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -4385,9 +4385,7 @@ msgstr "Особые пользователи, страница %d" #: actions/featured.php:99 #, php-format msgid "A selection of some of the great users on %s" -msgstr "" -"Список наиболее активных, знаменитых и уважаемых пользователей на %%%%site." -"name%%%%" +msgstr "Список наиболее активных, знаменитых и уважаемых пользователей на %s" #: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." @@ -4476,10 +4474,7 @@ msgstr "" #: actions/imsettings.php:120 #, php-format msgid "Jabber or GTalk address, " -msgstr "" -"Jabber или GTalk - адрес, типа \\\"UserName@example.org\\\". Первым делом " -"убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-" -"мессенджере или в GTalk." +msgstr "Jabber или GTalk - адрес, " #: actions/imsettings.php:147 msgid "Send me replies through Jabber/GTalk " @@ -4488,9 +4483,7 @@ msgstr "Посылать мне записи через Jabber/GTalk." #: actions/imsettings.php:321 #, php-format msgid "A confirmation code was sent " -msgstr "" -"Код подтверждения выслан на ваш IM-адрес, который вы добавили. Вы должны " -"подтвердить %s для рассылки сообщений вам." +msgstr "Код подтверждения выслан " #: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." @@ -4714,8 +4707,8 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" -"Micro-blogging)" +"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" +"Микроблоггинг)" #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4744,10 +4737,7 @@ msgstr "" #: actions/register.php:286 msgid "With this form you can create " -msgstr "" -"При помощи этой формы вы можете создать новый %%site.name%% аккаунт. (Есть " -"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" -"action.openidlogin%%)!)" +msgstr "При помощи этой формы вы можете создать " #: actions/register.php:368 msgid "1-64 lowercase letters or numbers, " @@ -4781,21 +4771,7 @@ msgstr "" #: actions/register.php:471 #, php-format msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" -"Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. Здесь вы " -"можете ...\n" -"\n" -"* Перейти на [ваш микроблог](%s) и запостить вашу первую запись.\n" -"* Добавить ваш [Jabber/GTalk - аккаунт](%%%%action.imsettings%%%%) так что " -"вы сможете после этого отправлять записи через мессенджеры.\n" -"* [Искать людей](%%%%action.peoplesearch%%%%), которых вы возможно знаете " -"или с которыми разделяете одни и те же интересы.\n" -"* Обновить ваши [профильные настройки](%%%%action.profilesettings%%%%) чтобы " -"больше рассказать другим о себе.\n" -"* Прочитать [документацию](%%%%doc.help%%%%) чтобы поподробнее узнать об " -"особенностях данного вэб сервиса и о том как его использовать.\n" -"Спасибо за то, что присоединились к нам и надеемся, что вы получите " -"удовольствие от использования данного сервиса!" +msgstr "Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. " #: actions/register.php:495 msgid "(You should receive a message by email " @@ -4892,8 +4868,8 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" -"Micro-blogging)" +"**%s** - это группа пользователей на сайте %%%%site.name%%%%, для " +"[микроблогинга](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4949,10 +4925,8 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** имеет аккаунт на %%%%site.name%%%%, сервисе для [микроблогинга]" -"(http://en.wikipedia.org/wiki/Micro-blogging). [Присоеденяйся](%%%%action." -"register%%%%) и получи возможность быть всегда в курсе всего самого " -"интересного в жизни **%s**. ([Читать больше](%%%%doc.help%%%%))" +"**%s** зарегистрирован на %%%%site.name%%%%, сервисе для [микроблогинга]" +"(http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -5005,7 +4979,7 @@ msgstr "Это пользователи, которые читают запис #: actions/subscribers.php:67 #, php-format msgid "These are the people who " -msgstr "Это пользователи, которые читают записи %s." +msgstr "Это пользователи, которые " #: actions/subscriptions.php:52 #, php-format @@ -5024,7 +4998,7 @@ msgstr "Это пользователи, записи которых читае #: actions/subscriptions.php:69 #, php-format msgid "These are the people whose " -msgstr "Это пользователи, которые читают записи %s." +msgstr "Это пользователи, которые " #: actions/subscriptions.php:122 actions/subscriptions.php:124 #: actions/subscriptions.php:183 actions/subscriptions.php:194 @@ -5138,7 +5112,7 @@ msgstr "" #: actions/twittersettings.php:341 #, php-format msgid "Unable to retrieve account information " -msgstr "Не удаётся подтвердить данные по аккаунту от \"%s\" из Твитера." +msgstr "Не удаётся подтвердить данные по аккаунту " #: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." @@ -5432,7 +5406,7 @@ msgstr "" #: lib/mail.php:236 #, php-format msgid "%1$s is now listening to " -msgstr "%1$s теперь просматривает твои записи на %2$s." +msgstr "%1$s теперь просматривает твои записи " #: lib/mail.php:254 lib/mail.php:253 #, php-format @@ -5588,7 +5562,7 @@ msgstr "Группы, в которых состоит %s" #: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" -msgstr "В этой форме ты можешь пригласить друзей и коллег на этот сервис." +msgstr "Пригласи друзей и коллег стать такими же как ты участниками %s" #: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." @@ -5774,6 +5748,11 @@ msgid "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" +"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" +"Микроблоггинг), созданный с использованием свободного программного " +"обеспечения [StatusNet](http://status.net/). [Стань участником](%%action." +"register%%), чтобы держать в курсе своих событий поклонников, друзей, " +"родственников и коллег! ([Читать далее](%%doc.help%%))" #: actions/register.php:286 actions/register.php:329 #, php-format @@ -5782,6 +5761,10 @@ msgid "" "link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " "Try our [OpenID registration](%%action.openidlogin%%)!)" msgstr "" +"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " +"короткие сообщения и устанавливать связи с друзьями и коллегами (Есть " +"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" +"action.openidlogin%%)!)" #: actions/register.php:432 actions/register.php:479 actions/register.php:489 msgid "Creative Commons Attribution 3.0" @@ -5812,6 +5795,12 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +"**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). Участники обмениваются короткими сообщениями о своих новостях. " +"[Зарегистрируйся](%%%%action.register%%%%), чтобы стать участником группы и " +"получить множество других возможностей! ([Читать далее](%%%%doc.help%%%%))" #: actions/showstream.php:147 #, fuzzy @@ -5869,6 +5858,12 @@ msgid "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" +"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). [Зарегистрируйся](%%%%action.register%%%%), чтобы всегда получать " +"сообщения участника **%s** и иметь доступ ко множеству других возможностей! " +"([Читать далее](%%%%doc.help%%%%))" #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy @@ -6564,14 +6559,15 @@ msgid "" msgstr "" #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format +#, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool." msgstr "" -"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" -"Micro-blogging)" +"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" +"Микроблоггинг), созданный с использованием свободного программного " +"обеспечения [StatusNet](http://status.net/)." #: actions/publictagcloud.php:69 #, php-format @@ -6690,15 +6686,17 @@ msgid "Notice feed for %s group (Atom)" msgstr "Лента записей от группы %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format +#, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" -"Это сайт %%site.name%%, для [микроблогинга](http://en.wikipedia.org/wiki/" -"Micro-blogging)" +"**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг) , созданный с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). Участники обмениваются короткими сообщениями о своих новостях. " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6739,16 +6737,16 @@ msgid "" msgstr "" #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format +#, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" -"**%s** имеет аккаунт на %%%%site.name%%%%, сервисе для [микроблогинга]" -"(http://en.wikipedia.org/wiki/Micro-blogging). [Присоеденяйся](%%%%action." -"register%%%%) и получи возможность быть всегда в курсе всего самого " -"интересного в жизни **%s**. ([Читать больше](%%%%doc.help%%%%))" +"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/)." #: actions/subscribers.php:108 msgid "" @@ -7209,8 +7207,9 @@ msgid "groups on %s" msgstr "Действия группы" #: actions/apistatusesshow.php:138 +#, fuzzy msgid "Status deleted." -msgstr "" +msgstr "Аватар обновлён." #: actions/apistatusesupdate.php:132 msgid "Unable to handle that much POST data!" @@ -7336,10 +7335,13 @@ msgid "Bio is too long (max %d chars)." msgstr "Слишком длинное био (максимум 140 символов)." #: actions/register.php:336 +#, fuzzy msgid "" "With this form you can create a new account. You can then post notices and " "link up to friends and colleagues. " msgstr "" +"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " +"короткие сообщения и устанавливать связи с друзьями и коллегами." #: actions/remotesubscribe.php:168 #, fuzzy @@ -7358,19 +7360,19 @@ msgid "Couldn’t get a request token." msgstr "Не удаётся получить запрос." #: actions/replies.php:144 -#, php-format +#, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" -msgstr "" +msgstr "Лента записей для %s" #: actions/replies.php:151 -#, php-format +#, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" -msgstr "" +msgstr "Лента записей для %s" #: actions/replies.php:158 #, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Лента записей от группы %s" +msgstr "Лента записей для %s" #: actions/repliesrss.php:72 #, fuzzy, php-format @@ -7380,17 +7382,17 @@ msgstr "Сообщение для %1$s на %2$s" #: actions/showfavorites.php:170 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Лента любимых записей от %s" +msgstr "Лента друзей %s" #: actions/showfavorites.php:177 #, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Лента любимых записей от %s" +msgstr "Лента друзей %s" #: actions/showfavorites.php:184 #, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Лента любимых записей от %s" +msgstr "Лента друзей %s" #: actions/showfavorites.php:211 #, php-format @@ -7403,7 +7405,7 @@ msgstr "" #: actions/showgroup.php:345 #, fuzzy, php-format msgid "FOAF for %s group" -msgstr "Группа %s" +msgstr "Исходящие для %s" #: actions/shownotice.php:90 #, fuzzy @@ -7610,7 +7612,7 @@ msgstr "Опиши группу при помощи 140 символов" #: lib/jabber.php:192 #, fuzzy, php-format msgid "notice id: %s" -msgstr "Лента записей для %s" +msgstr "Новая запись" #: lib/mail.php:554 #, fuzzy, php-format @@ -7670,13 +7672,100 @@ msgstr "" #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Не удаётся удалить любимую запись." +msgstr "Не удаётся вернуть публичный поток." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Удалить запись" +#, fuzzy +#~ msgid "OpenID is not available." +#~ msgstr "Страница недоступна для того типа, который Вы задействовали." + +#~ msgid "" +#~ "This is %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/" +#~ "wiki/Micro-blogging) service based on the Free Software [StatusNet]" +#~ "(http://status.net/) tool. [Join now](%%%%action.%s%%%%) to share notices " +#~ "about yourself with friends, family, and colleagues! ([Read more](%%%%doc." +#~ "help%%%%))" +#~ msgstr "" +#~ "Это %%%%site.name%%%% - сайт для [микроблогинга](http://ru.wikipedia.org/" +#~ "wiki/Микроблоггинг) созданный с использованием свободного программного " +#~ "обеспечения [StatusNet](http://status.net/). [Стань участником](%%%%" +#~ "action.%s%%%%), чтобы держать в курсе своих событий поклонников, " +#~ "друзей, родственников и коллег ! ([Читать далее](%%%%doc.help%%%%))" + +#, fuzzy +#~ msgid "" +#~ "To subscribe, you can [login](%%%%action.%s%%%%), or [register](%%%%" +#~ "action.%s%%%%) a new account. If you already have an account on a " +#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " +#~ "URL below." +#~ msgstr "" +#~ "Чтобы подписаться, необходимо [авторизоваться](%%action.login%%) или " +#~ "[зарегистрировать](%%action.register%%) новый аккаунт." + +#~ msgid "" +#~ "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +#~ "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +#~ "[StatusNet](http://status.net/) tool. Its members share short messages " +#~ "about their life and interests. [Join now](%%%%action.%s%%%%) to become " +#~ "part of this group and many more! ([Read more](%%%%doc.help%%%%))" +#~ msgstr "" +#~ "**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " +#~ "[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с " +#~ "использованием свободного программного обеспечения [StatusNet](http://" +#~ "status.net/). Участники обмениваются короткими сообщениями о своих " +#~ "новостях. [Зарегистрируйся](%%%%action.%s%%%%), чтобы стать участником " +#~ "группы и получить множество других возможностей! ([Читать далее](%%%%doc." +#~ "help%%%%))" + +#~ msgid "" +#~ "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +#~ "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +#~ "[StatusNet](http://status.net/) tool. [Join now](%%%%action.%s%%%%) to " +#~ "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +#~ msgstr "" +#~ "**%s** является зарегистрированным участником %%%%site.name%%%% - сайта " +#~ "для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), " +#~ "созданного с использованием свободного программного обеспечения " +#~ "[StatusNet](http://status.net/). [Зарегистрируйся](%%%%action.%s%%%%), " +#~ "чтобы всегда получать сообщения участника **%s** и иметь доступ ко " +#~ "множеству других возможностей! ([Читать далее](%%%%doc.help%%%%))" + +#, fuzzy +#~ msgid "Members of %s group" +#~ msgstr "Лента записей от группы %s" + +#, fuzzy +#~ msgid "Members of %1$s on %2$s" +#~ msgstr "Сообщение для %1$s на %2$s" + +#, fuzzy +#~ msgid "Group not found" +#~ msgstr "Пользователь не найден." + +#, fuzzy +#~ msgid "User not found" +#~ msgstr "Пользователь не найден." + +#, fuzzy +#~ msgid "Couldn't link your Twitter account." +#~ msgstr "Это не ваш аккаунт на Твиттере." + +#, fuzzy +#~ msgid "Twitter is not available." +#~ msgstr "Страница недоступна для того типа, который Вы задействовали." + +#, fuzzy +#~ msgid "Twitter account" +#~ msgstr "Твиттер аккаунт" + +#, fuzzy +#~ msgid "Connected Twitter account" +#~ msgstr "Соединить с существующей записью" + #~ msgid "Code not yet ready." #~ msgstr "Код ещё не готов." From 15d0055c6f2e3b7007a82df40502e15cf5c32a13 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Mon, 2 Nov 2009 15:18:04 -0500 Subject: [PATCH 33/92] allowed_nickname blocks top level url router names --- classes/User.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/classes/User.php b/classes/User.php index 3fa9cc1526..530ece1ba4 100644 --- a/classes/User.php +++ b/classes/User.php @@ -118,7 +118,7 @@ class User extends Memcached_DataObject { // XXX: should already be validated for size, content, etc. - $blacklist = array(); + $blacklist = common_config('nickname', 'blacklist'); //all directory and file names should be blacklisted $d = dir(INSTALLDIR); @@ -126,8 +126,15 @@ class User extends Memcached_DataObject $blacklist[]=$entry; } $d->close(); - $merged = array_merge($blacklist, common_config('nickname', 'blacklist')); - return !in_array($nickname, $merged); + + //all top level names in the router should be blacklisted + $router = Router::get(); + foreach(array_keys($router->m->getPaths()) as $path){ + if(preg_match('/^\/(.*?)[\/\?]/',$path,$matches)){ + $blacklist[]=$matches[1]; + } + } + return !in_array($nickname, $blacklist); } function getCurrentNotice($dt=null) From eee033ae7c78568129e7c35c9846e2be8800f4c2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 2 Nov 2009 17:28:03 -0500 Subject: [PATCH 34/92] script to register a user --- scripts/registeruser.php | 81 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 scripts/registeruser.php diff --git a/scripts/registeruser.php b/scripts/registeruser.php new file mode 100644 index 0000000000..9857f5aeea --- /dev/null +++ b/scripts/registeruser.php @@ -0,0 +1,81 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'n:w:f:e:'; +$longoptions = array('nickname=', 'password=', 'fullname=', 'email='); + +$helptext = << $nickname, + 'password' => $password, + 'fullname' => $fullname)); + + if (empty($user)) { + throw new Exception("Can't register user '$nickname' with password '$password' and fullname '$fullname'."); + } + + if (!empty($email)) { + + $orig = clone($user); + + $user->email = $email; + + if (!$user->updateKeys($orig)) { + print "Failed!\n"; + throw new Exception("Can't update email address."); + } + } + +} catch (Exception $e) { + print $e->getMessage() . "\n"; + exit(1); +} From edb2713026933a3de877d7198ee265f1858c2370 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 2 Nov 2009 18:06:09 -0500 Subject: [PATCH 35/92] correct name in registeruser --- scripts/registeruser.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/registeruser.php b/scripts/registeruser.php index 9857f5aeea..5d9c8862da 100644 --- a/scripts/registeruser.php +++ b/scripts/registeruser.php @@ -24,8 +24,8 @@ $shortoptions = 'n:w:f:e:'; $longoptions = array('nickname=', 'password=', 'fullname=', 'email='); $helptext = << Date: Mon, 2 Nov 2009 18:06:27 -0500 Subject: [PATCH 36/92] script to make someone a group admin --- scripts/makegroupadmin.php | 89 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 scripts/makegroupadmin.php diff --git a/scripts/makegroupadmin.php b/scripts/makegroupadmin.php new file mode 100644 index 0000000000..a68798451c --- /dev/null +++ b/scripts/makegroupadmin.php @@ -0,0 +1,89 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'g:n:'; +$longoptions = array('nickname=', 'group='); + +$helptext = << $group->id, + 'profile_id' => $user->id)); + + if (empty($member)) { + $member = new Group_member(); + + $member->group_id = $group->id; + $member->profile_id = $user->id; + $member->created = common_sql_now(); + + if (!$member->insert()) { + throw new Exception("Can't add '$nickname' to '$groupname'."); + } + } + + if ($member->is_admin) { + throw new Exception("'$nickname' is already an admin of '$groupname'."); + } + + $orig = clone($member); + + $member->is_admin = 1; + + if (!$member->update($orig)) { + throw new Exception("Can't make '$nickname' admin of '$groupname'."); + } + +} catch (Exception $e) { + print $e->getMessage() . "\n"; + exit(1); +} From 97b4576c115b86612a2ded6fbd800b6b5350d7a4 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 2 Nov 2009 17:28:03 -0500 Subject: [PATCH 37/92] script to register a user --- scripts/registeruser.php | 81 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 scripts/registeruser.php diff --git a/scripts/registeruser.php b/scripts/registeruser.php new file mode 100644 index 0000000000..9857f5aeea --- /dev/null +++ b/scripts/registeruser.php @@ -0,0 +1,81 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'n:w:f:e:'; +$longoptions = array('nickname=', 'password=', 'fullname=', 'email='); + +$helptext = << $nickname, + 'password' => $password, + 'fullname' => $fullname)); + + if (empty($user)) { + throw new Exception("Can't register user '$nickname' with password '$password' and fullname '$fullname'."); + } + + if (!empty($email)) { + + $orig = clone($user); + + $user->email = $email; + + if (!$user->updateKeys($orig)) { + print "Failed!\n"; + throw new Exception("Can't update email address."); + } + } + +} catch (Exception $e) { + print $e->getMessage() . "\n"; + exit(1); +} From 8e4bc78204e65589cebd5abab67db0f3b5fd8932 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 2 Nov 2009 18:06:09 -0500 Subject: [PATCH 38/92] correct name in registeruser --- scripts/registeruser.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/registeruser.php b/scripts/registeruser.php index 9857f5aeea..5d9c8862da 100644 --- a/scripts/registeruser.php +++ b/scripts/registeruser.php @@ -24,8 +24,8 @@ $shortoptions = 'n:w:f:e:'; $longoptions = array('nickname=', 'password=', 'fullname=', 'email='); $helptext = << Date: Mon, 2 Nov 2009 18:06:27 -0500 Subject: [PATCH 39/92] script to make someone a group admin --- scripts/makegroupadmin.php | 89 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 scripts/makegroupadmin.php diff --git a/scripts/makegroupadmin.php b/scripts/makegroupadmin.php new file mode 100644 index 0000000000..a68798451c --- /dev/null +++ b/scripts/makegroupadmin.php @@ -0,0 +1,89 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'g:n:'; +$longoptions = array('nickname=', 'group='); + +$helptext = << $group->id, + 'profile_id' => $user->id)); + + if (empty($member)) { + $member = new Group_member(); + + $member->group_id = $group->id; + $member->profile_id = $user->id; + $member->created = common_sql_now(); + + if (!$member->insert()) { + throw new Exception("Can't add '$nickname' to '$groupname'."); + } + } + + if ($member->is_admin) { + throw new Exception("'$nickname' is already an admin of '$groupname'."); + } + + $orig = clone($member); + + $member->is_admin = 1; + + if (!$member->update($orig)) { + throw new Exception("Can't make '$nickname' admin of '$groupname'."); + } + +} catch (Exception $e) { + print $e->getMessage() . "\n"; + exit(1); +} From f757ba3ca2f3c7cd647a6cd4421e98c1e310483e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 2 Nov 2009 18:10:01 -0500 Subject: [PATCH 40/92] notes about registeruser and makegroupadmin scripts --- README | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README b/README index b4c37e3aba..a10628ac7f 100644 --- a/README +++ b/README @@ -150,6 +150,8 @@ released Aug 26 2009. Notable changes this version: - Use the NICKNAME_FMT constant for detecting nicknames. - Check for site servername config'd. - Compatibility fix for empty status updates with Twitter API. +- a script to register a new user. +- a script to make a user admin of a group. Prerequisites ============= From b9d40f723bce8e01ddcbbb989bd7035b92cd9af8 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Mon, 2 Nov 2009 18:40:18 -0500 Subject: [PATCH 41/92] Added 'login' command that gives you a link that can be used to login to the website --- actions/login.php | 53 ++++++++++++++++++++++++++++---------- classes/Login_token.php | 42 ++++++++++++++++++++++++++++++ classes/statusnet.ini | 11 ++++++++ db/08to09.sql | 10 +++++++ db/08to09_pg.sql | 10 +++++++ db/statusnet.sql | 10 +++++++ db/statusnet_pg.sql | 10 +++++++ lib/command.php | 27 +++++++++++++++++++ lib/commandinterpreter.php | 6 +++++ lib/router.php | 2 ++ 10 files changed, 168 insertions(+), 13 deletions(-) create mode 100644 classes/Login_token.php diff --git a/actions/login.php b/actions/login.php index f6d0163105..ad57dd6678 100644 --- a/actions/login.php +++ b/actions/login.php @@ -79,6 +79,8 @@ class LoginAction extends Action $this->clientError(_('Already logged in.')); } else if ($_SERVER['REQUEST_METHOD'] == 'POST') { $this->checkLogin(); + } else if (isset($args['user_id']) && isset($args['token'])){ + $this->checkLogin($args['user_id'],$args['token']); } else { common_ensure_session(); $this->showForm(); @@ -95,23 +97,48 @@ class LoginAction extends Action * @return void */ - function checkLogin() + function checkLogin($user_id=null, $token=null) { - // XXX: login throttle + if(isset($token) && isset($user_id)){ + //Token based login (from the LoginCommand) + $login_token = Login_token::staticGet('user_id',$user_id); + if($login_token && $login_token->token == $token){ + if($login_token->modified > time()+2*60){ + //token has expired + //delete the token as it is useless + $login_token->delete(); + $this->showForm(_('Invalid or expired token.')); + return; + }else{ + //delete the token so it cannot be reused + $login_token->delete(); + //it's a valid token - let them log in + $user = User::staticGet('id', $user_id); + //$user = User::staticGet('nickname', "candrews"); + } + }else{ + $this->showForm(_('Invalid or expired token.')); + return; + } + }else{ + // Regular form submission login - // CSRF protection - token set in NoticeForm - $token = $this->trimmed('token'); - if (!$token || $token != common_session_token()) { - $this->clientError(_('There was a problem with your session token. '. - 'Try again, please.')); - return; + // XXX: login throttle + + // CSRF protection - token set in NoticeForm + $token = $this->trimmed('token'); + if (!$token || $token != common_session_token()) { + $this->clientError(_('There was a problem with your session token. '. + 'Try again, please.')); + return; + } + + $nickname = common_canonical_nickname($this->trimmed('nickname')); + $password = $this->arg('password'); + + $user = common_check_user($nickname, $password); } - $nickname = common_canonical_nickname($this->trimmed('nickname')); - $password = $this->arg('password'); - - $user = common_check_user($nickname, $password); - if (!$user) { $this->showForm(_('Incorrect username or password.')); return; diff --git a/classes/Login_token.php b/classes/Login_token.php new file mode 100644 index 0000000000..bd6381f903 --- /dev/null +++ b/classes/Login_token.php @@ -0,0 +1,42 @@ +. + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } + +require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; + +class Login_token extends Memcached_DataObject +{ + ###START_AUTOCODE + /* the code below is auto generated do not remove the above tag */ + + public $__table = 'login_token'; // table name + public $user_id; // int(4) primary_key not_null + public $token; // char(32) not_null + public $created; // datetime() not_null + public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP + + /* Static get */ + function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Login_token',$k,$v); } + + /* the code above is auto generated do not remove the tag below */ + ###END_AUTOCODE +} diff --git a/classes/statusnet.ini b/classes/statusnet.ini index 623790b100..912d05cdff 100644 --- a/classes/statusnet.ini +++ b/classes/statusnet.ini @@ -555,3 +555,14 @@ created = 142 [user_role__keys] user_id = K role = K + +[login_token] +user_id = 129 +token = 130 +created = 142 +modified = 384 + +[login_token__keys] +user_id = K +token = K + diff --git a/db/08to09.sql b/db/08to09.sql index 953e0e5f48..a0e37f0f14 100644 --- a/db/08to09.sql +++ b/db/08to09.sql @@ -32,3 +32,13 @@ create table user_role ( constraint primary key (user_id, role) ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; + +create table login_token ( + user_id integer not null comment 'user owning this token' references user (id), + token char(32) not null comment 'token useable for logging in', + created datetime not null comment 'date this record was created', + modified timestamp comment 'date this record was modified', + + constraint primary key (user_id) +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; + diff --git a/db/08to09_pg.sql b/db/08to09_pg.sql index 9e37314aa8..197fcabfdb 100644 --- a/db/08to09_pg.sql +++ b/db/08to09_pg.sql @@ -38,3 +38,13 @@ create table user_role ( primary key (user_id, role) ); + +create table login_token ( + user_id integer not null /* comment 'user owning this token'*/ references user (id), + token char(32) not null /* comment 'token useable for logging in'*/, + created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/, + modified timestamp /* comment 'date this record was modified'*/, + + constraint primary key (user_id) +); + diff --git a/db/statusnet.sql b/db/statusnet.sql index 1524d83957..3ed4e2c48b 100644 --- a/db/statusnet.sql +++ b/db/statusnet.sql @@ -575,3 +575,13 @@ create table location_namespace ( modified timestamp comment 'date this record was modified' ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; + +create table login_token ( + user_id integer not null comment 'user owning this token' references user (id), + token char(32) not null comment 'token useable for logging in', + created datetime not null comment 'date this record was created', + modified timestamp comment 'date this record was modified', + + constraint primary key (user_id) +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; + diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql index 672877ddf0..0e5e96c327 100644 --- a/db/statusnet_pg.sql +++ b/db/statusnet_pg.sql @@ -569,3 +569,13 @@ create table user_role ( primary key (user_id, role) ); + +create table login_token ( + user_id integer not null /* comment 'user owning this token'*/ references user (id), + token char(32) not null /* comment 'token useable for logging in'*/, + created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/, + modified timestamp /* comment 'date this record was modified'*/, + + constraint primary key (user_id) +); + diff --git a/lib/command.php b/lib/command.php index 9efa406964..2ec3320de8 100644 --- a/lib/command.php +++ b/lib/command.php @@ -579,6 +579,32 @@ class OnCommand extends Command } } +class LoginCommand extends Command +{ + function execute($channel) + { + $login_token = Login_token::staticGet('user_id',$this->user->id); + if($login_token){ + $login_token->delete(); + } + $login_token = new Login_token(); + $login_token->user_id = $this->user->id; + $login_token->token = common_good_rand(16); + $login_token->created = common_sql_now(); + $result = $login_token->insert(); + if (!$result) { + common_log_db_error($login_token, 'INSERT', __FILE__); + $channel->error($this->user, sprintf(_('Could not create login token for %s'), + $this->user->nickname)); + return; + } + $channel->output($this->user, + sprintf(_('This link is useable only once, and is good for only 2 minutes: %s'), + common_local_url('login', + array('user_id'=>$login_token->user_id, 'token'=>$login_token->token)))); + } +} + class HelpCommand extends Command { function execute($channel) @@ -598,6 +624,7 @@ class HelpCommand extends Command "reply # - reply to notice with a given id\n". "reply - reply to the last notice from user\n". "join - join group\n". + "login - Get a link to login to the web interface\n". "drop - leave group\n". "stats - get your stats\n". "stop - same as 'off'\n". diff --git a/lib/commandinterpreter.php b/lib/commandinterpreter.php index b921a17cc2..d878fe2680 100644 --- a/lib/commandinterpreter.php +++ b/lib/commandinterpreter.php @@ -41,6 +41,12 @@ class CommandInterpreter return null; } return new HelpCommand($user); + case 'login': + if ($arg) { + return null; + } else { + return new LoginCommand($user); + } case 'on': if ($arg) { list($other, $extra) = $this->split_arg($arg); diff --git a/lib/router.php b/lib/router.php index 888cbdd20c..0ddda473c0 100644 --- a/lib/router.php +++ b/lib/router.php @@ -88,6 +88,8 @@ class Router $m->connect('doc/:title', array('action' => 'doc')); + $m->connect('main/login?user_id=:user_id&token=:token', array('action'=>'login'), array('user_id'=> '[0-9]+', 'token'=>'.+')); + // main stuff is repetitive $main = array('login', 'logout', 'register', 'subscribe', From 1e6aff69d69e09495638b60831c0548aae0b9773 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 3 Nov 2009 09:41:36 -0800 Subject: [PATCH 42/92] Fix reference to sources class variable --- actions/apistatusesupdate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index 898a4bd723..b9c0832a4e 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -80,7 +80,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction $this->status = $this->trimmed('status'); $this->source = $this->trimmed('source'); - if (empty($this->source) || in_array($source, $this->reserved_sources)) { + if (empty($this->source) || in_array($source, self::$reserved_sources)) { $this->source = 'api'; } From d03a57853e06310228f7df782dd60068863f4a69 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 3 Nov 2009 09:55:35 -0800 Subject: [PATCH 43/92] Don't try to pull up designs for non-existent users --- lib/api.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/lib/api.php b/lib/api.php index 9bd2083deb..a1236ab7ec 100644 --- a/lib/api.php +++ b/lib/api.php @@ -134,11 +134,20 @@ class ApiAction extends Action $twitter_user['protected'] = false; # not supported by StatusNet yet $twitter_user['followers_count'] = $profile->subscriberCount(); - // Need to pull up the user for some of this - $user = $profile->getUser(); - $design = $user->getDesign(); $defaultDesign = Design::siteDesign(); - if (!$design) $design = $defaultDesign; + $design = null; + $user = $profile->getUser(); + + // Note: some profiles don't have an associated user + + if (!empty($user)) { + $design = $user->getDesign(); + } + + if (empty($design)) { + $design = $defaultDesign; + } + $color = Design::toWebColor(empty($design->backgroundcolor) ? $defaultDesign->backgroundcolor : $design->backgroundcolor); $twitter_user['profile_background_color'] = ($color == null) ? '' : '#'.$color->hexValue(); $color = Design::toWebColor(empty($design->textcolor) ? $defaultDesign->textcolor : $design->textcolor); From 06a5090bfcbc95f0ee65d138ac35c0b0dda51668 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 3 Nov 2009 12:13:24 -0800 Subject: [PATCH 44/92] Update translations from TranslateWiki scripts/update_translations.php now pulls updated files from TranslateWiki and merges them to an updated master. Note that the .po files exported from TranslateWiki do lose some of the old manual comments for now. --- locale/bg/LC_MESSAGES/statusnet.mo | Bin 119506 -> 119582 bytes locale/bg/LC_MESSAGES/statusnet.po | 67 +- locale/ca/LC_MESSAGES/statusnet.mo | Bin 103127 -> 103213 bytes locale/ca/LC_MESSAGES/statusnet.po | 37 +- locale/cs/LC_MESSAGES/statusnet.mo | Bin 51797 -> 51879 bytes locale/cs/LC_MESSAGES/statusnet.po | 31 +- locale/de/LC_MESSAGES/statusnet.mo | Bin 103431 -> 103700 bytes locale/de/LC_MESSAGES/statusnet.po | 226 +- locale/el/LC_MESSAGES/statusnet.mo | Bin 37126 -> 37203 bytes locale/el/LC_MESSAGES/statusnet.po | 20 +- locale/en_GB/LC_MESSAGES/statusnet.mo | Bin 96014 -> 96102 bytes locale/en_GB/LC_MESSAGES/statusnet.po | 71 +- locale/es/LC_MESSAGES/statusnet.mo | Bin 101938 -> 102031 bytes locale/es/LC_MESSAGES/statusnet.po | 43 +- locale/fi/LC_MESSAGES/statusnet.mo | Bin 104971 -> 105047 bytes locale/fi/LC_MESSAGES/statusnet.po | 78 +- locale/fr/LC_MESSAGES/statusnet.mo | Bin 105593 -> 108987 bytes locale/fr/LC_MESSAGES/statusnet.po | 227 +-- locale/ga/LC_MESSAGES/statusnet.mo | Bin 106699 -> 106769 bytes locale/ga/LC_MESSAGES/statusnet.po | 119 +- locale/he/LC_MESSAGES/statusnet.mo | Bin 56035 -> 56120 bytes locale/he/LC_MESSAGES/statusnet.po | 23 +- locale/it/LC_MESSAGES/statusnet.mo | Bin 102032 -> 102115 bytes locale/it/LC_MESSAGES/statusnet.po | 122 +- locale/ja/LC_MESSAGES/statusnet.mo | Bin 60793 -> 60867 bytes locale/ja/LC_MESSAGES/statusnet.po | 29 +- locale/ko/LC_MESSAGES/statusnet.mo | Bin 108710 -> 108795 bytes locale/ko/LC_MESSAGES/statusnet.po | 27 +- locale/mk/LC_MESSAGES/statusnet.mo | Bin 67520 -> 67529 bytes locale/mk/LC_MESSAGES/statusnet.po | 30 +- locale/nb/LC_MESSAGES/statusnet.mo | Bin 28771 -> 28802 bytes locale/nb/LC_MESSAGES/statusnet.po | 29 +- locale/nl/LC_MESSAGES/statusnet.mo | Bin 80080 -> 90517 bytes locale/nl/LC_MESSAGES/statusnet.po | 1519 +++++++------- locale/nn/LC_MESSAGES/statusnet.mo | Bin 98211 -> 98278 bytes locale/nn/LC_MESSAGES/statusnet.po | 32 +- locale/pl/LC_MESSAGES/statusnet.mo | Bin 135651 -> 135699 bytes locale/pl/LC_MESSAGES/statusnet.po | 19 +- locale/pt/LC_MESSAGES/statusnet.mo | Bin 32851 -> 32927 bytes locale/pt/LC_MESSAGES/statusnet.po | 16 +- locale/pt_BR/LC_MESSAGES/statusnet.mo | Bin 102280 -> 102381 bytes locale/pt_BR/LC_MESSAGES/statusnet.po | 52 +- locale/ru/LC_MESSAGES/statusnet.mo | Bin 135490 -> 135183 bytes locale/ru/LC_MESSAGES/statusnet.po | 218 +- locale/sv/LC_MESSAGES/statusnet.mo | Bin 85551 -> 85632 bytes locale/sv/LC_MESSAGES/statusnet.po | 52 +- locale/te/LC_MESSAGES/statusnet.mo | Bin 59280 -> 60079 bytes locale/te/LC_MESSAGES/statusnet.po | 65 +- locale/tr/LC_MESSAGES/statusnet.mo | Bin 50465 -> 50492 bytes locale/tr/LC_MESSAGES/statusnet.po | 36 +- locale/uk/LC_MESSAGES/statusnet.mo | Bin 133916 -> 133948 bytes locale/uk/LC_MESSAGES/statusnet.po | 60 +- locale/vi/LC_MESSAGES/statusnet.mo | Bin 99171 -> 99159 bytes locale/vi/LC_MESSAGES/statusnet.po | 629 +----- locale/zh_CN/LC_MESSAGES/statusnet.mo | Bin 93634 -> 496 bytes locale/zh_CN/LC_MESSAGES/statusnet.po | 2718 +++++++++++-------------- locale/zh_TW/LC_MESSAGES/statusnet.mo | Bin 24937 -> 497 bytes locale/zh_TW/LC_MESSAGES/statusnet.po | 920 ++++----- scripts/update_translations.php | 15 +- 59 files changed, 2713 insertions(+), 4817 deletions(-) diff --git a/locale/bg/LC_MESSAGES/statusnet.mo b/locale/bg/LC_MESSAGES/statusnet.mo index e444a365f805ae09540c1a649a589f6d384f335d..ad9e7b624038420b83a56f162da9e9cb6810e8c3 100644 GIT binary patch delta 8431 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 delta 8387 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 diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index da920ef257..d388328dac 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -1,3 +1,6 @@ +# Translation of StatusNet to Bulgarian +# +# -- # #-#-#-#-# statusnet.pot (StatusNet 0.6.4) #-#-#-#-# # StatusNet Bulgarian translation. # Copyright (C) 2008 @@ -7,16 +10,17 @@ # msgid "" msgstr "" -"Project-Id-Version: StatusNet 0.6.4\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-06-27 18:04+0000\n" -"Last-Translator: Yasen Pramatarov \n" -"Language-Team: Bulgarian \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:57:20+0000\n" +"Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: bg\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -7645,54 +7649,3 @@ msgstr "Грешка при изтриване на любима бележка. #, fuzzy msgid "Duplicate notice" msgstr "Изтриване на бележката" - -#, fuzzy -#~ msgid "Code not yet ready." -#~ msgstr "Командата все още не се поддържа." - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Създаване на нова сметка" - -#, fuzzy -#~ msgid "Delete my account confirmation" -#~ msgstr "Грешка при изтриване потвърждението по е-поща." - -#, fuzzy -#~ msgid "Check if you are sure you want to delete your account." -#~ msgstr "Наистина ли искате да изтриете тази бележка?" - -#, fuzzy -#~ msgid "Showing recently popular notices" -#~ msgstr "Търсене в съдържанието на бележките" - -#~ msgid "Icons" -#~ msgstr "Икони" - -#, fuzzy -#~ msgid "" -#~ "Hey, %s.\n" -#~ "\n" -#~ "Someone just entered this email address on %s.\n" -#~ "\n" -#~ msgstr "" -#~ "Здравей %s.\n" -#~ "\n" -#~ "Друг потребител вече въведе този email адрес на %s.\n" -#~ "\n" - -#~ msgid "Couldn't confirm email." -#~ msgstr "Не може да се потвърди електронната поща." - -#~ msgid "Email address" -#~ msgstr "Адрес на е-поща" - -#~ msgid "Error inserting notice" -#~ msgstr "Грешка при вмъкване на бележка" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Ако сте забравили или изгубили паролата си, може да ви бъде изпратена " -#~ "нова на е-пощата, записана в сметката ви." diff --git a/locale/ca/LC_MESSAGES/statusnet.mo b/locale/ca/LC_MESSAGES/statusnet.mo index c3a36098bed7fd5048324a41f7d06022b0dfd144..9ca4379fcdd009e6c2d49bce5b092a6383788549 100644 GIT binary patch delta 9024 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 K{c)GJ?)VRSwzXaW delta 8939 zcmX}xd0drM9>?+LqG&2+ptw?A3<(zy+{FcOS3pqQal;@*S!8h~e9SGf$WY5|n#{(j z)G^Dn0kh1qMKhSjB(=>H*Nij^F&-b45n*Mp8^W5j2=bYd9{myfxzx}n&iEVXu z2efg=cpT^GdB+KI94GXG<21sq*cAujlep08f6;Mj)33m0_#Ae_UDyDB!iVrO#$fYH zjuVcgCelA_4ZLEmPsV;+e;VWP7&gI% zR~@G=w!sK&Z~JN3n0`72VLs~frC1+#Ty-6%DUE&hhGVGy_ZW!P*b?hqGb;&0Jtz@% zUmCW-S=boM@g95;HL>j&g70EGJcU|lo!=a%HF{kddO$q3!gSOC^HE!|#9n^}@1wsH zHQ)gZ!jq_hFQEo*cHKNU1{M0jsPS^K4$i}SvDEh6r)c8-e zg-_vWoP=|3InLX73^m}YKOCnLPgpB%J5F2riFb?z7)^gYcEpeI0lbbO*yOGj#{S39 z2;f2wRHz1`LX~VCjScCiqq08R`WUvLzY&!yd$1QC#tC@WI>GVya%K;9;`)A6#4kvf z#uXaM#%imd$KyoOZ-}+9H>&L7PxxxM(*LPtW7kY4^82^GhaRrX7=VN=wBPdVF;laF4mr5%qw6_#h5Ntvm-+PU}#i+m9X4Q_qAv z5;dXms0e1FzPADU;z3k--?7(Q);BrP-=(1shGR>71QnvkP!W07etyheKabkm+o-(` zZ{YEr10zu@&cxPOj0*8ORBr7;Evyo?^7m2CbHAdY9Jq{L^bhd(&i-&rp`VU#azyVy zRmrqQ9w!uYu`{l=9zw17I%>T8?=$yzM)l)xAdW^wZX-75`Oaa}aK1&=Wi@JMO#+Rb zP}MLT`{M%CgZAV7cp8VJC&=UU#w1kMm!TfC!+HX}^lLRX-w(qm)qj$&;W#Cz`rM9s z;7L?=-_ykGX)ja`h8+Pap(W+G9jiOfPpsvNa|gQ%^o)s%>+{(I9< zk}N^3>>bp~&Z17P+RZdm4k}cCnzh_og*uXdMlZH#Zj41uG#xd8$EoVP`{%Va0j&&;VsSgr(+oXCsE0`8}-uK z-;(;*1kP|l^Yef;lJ(9jsENGi(onsAi5loP)E>8JZIW>?Drx4S?yE$t=-<{ruc?w@s0n4-ei=5S z{}Sr0w;wf;lc)*YL`B363^irf7j?r#)C~(zWmtjQf}N-d9!K5x8*1R7Hs*Q^>b|k4 zty_o%K_zkMuzDJeW6;vpzQD5|b$P5^a`aBdh z@rSJOs1;8@O=J!#Vr8iNH=(v*3%YtKykb9i1NGp)qw4b$)B~@fCRi)NoP;e<4@^cS z-6N>`SE1_vO`LqsN~y% z33wP&v2I7R72{D4E<$bHX4|hs9qB*dYz&MvTV0Bp`1(lKl+}JN=xqN6HDkXh^S}d37^9nBX}k!sb+JfH*WoEU^k?%5cPW!MWVQCo1$rJ;dtp~@sO+WwTn zcj#xM4vvTz^N#3*3Vkl_!j-5I8;qJzGHPodMJ3-#)O~AEx%86#+^y{O-M6QD_?7U33dM-RD?c5P53)Jf_G7G$0NPW z&v;L)$t{1>1fnpU=Q}-U1mG0wY}DQ@Kn=VUwKZ!o9zQ`HSoM3Gfxrly7g?iu@)=Q}S>-IGRHbqUKD{70T zqjF<0DmT`l7Vt7EV*f#H$<4mhzmld-KXV}(weo(b2Mo3Saj2ZgK<#Ncs!U%)FMf@B z@b9Sd430DQ!Z!3LqjF^lYGMab5&u`5YZ|Aypa)+@9ho)A+sO%vH!JIldhl#iJ(pXz zqayPWD%3xqzJCK1xqB1L=MSMmpMaY9RPK_zM`Hji;J-u-;IQ@2^`?*n@s9>cQJkd%F{rT%V#s z`V-d2tEh?IMkT3tm^nB4qwY(y{S4GZ3Q^_wIJz3}01eIjE7SwOMU}}J)ZX4gt+4)Z zlhq-p9O;G{Fda3KIjH+eP%oWwjKPhl@s46A`~iDmV4|)6#6**gb5S?GfLh63)GwkF zsB$`m8u&VDWu7E+y%A~w5vU2opnhl!z|J@a6YwR}cxNyLe@UYL)rd_tGg^gv=zm~c zFv9dZrkIz<_ozKQhYI;!?2c_x&A<~-6PtpXa1LrgD^QW$jEd-1)Oql_OGBYMj!MFl z)@oD^G#P2Wn1uRb8fxI_sEL%={uX1r#}bt@O9KU-ZAEUXpcH62cjZ4)%NqSp6dSz z8d~{U>rUSX{K!PDfl<2dN=GsR|6lRp%d#r7>-v^RndH+dGJisR+OMt_9BkJqc{*-rW>bXD*eBps^dB; z^vx%kg>^w)e+AR<=p^btnnvr%W~QmA@)?I(Nfzp$D7Bxzh02w8Q1AKUs6D-AKlhtr zR#p#nVzxy+a1g4RW@0RE!Fc>;3iaQKM#xlCze(7Q{z&YPkE0%N1ogmwqatw|mDLYU zGdU5Bk@S;ozXX-68&C^+5q1A-s9bv+l?z|F_J)h7@~A;CHp(!s*J#uOC!q#hiaG(G zL~Y%AR5ffzWqlQn!w+yghDdu}AM(-M^Wd)@76vG z&0f3Kw@~%|E9wON1C@l$78zqv6QAtTP+dwz;IF7JRH7#IB`(1l)XSx$#2g@-P)WB3 z8{l{7#S8ZHfJe>2)YjS`6~U>fbEXKJp<6~n^}Pj^rN>Zvf64ZPOU?CeIDqS8Y=0yA z)33z4_%3Q8?=ChuaTfLY4OFiDflAU*L|hSEhM7E{pFk$$O_!LL%22Gs4ePCcM$LR1 zDk7EE?@-C-|Cl+jf>E#MPNh$rHW8JqOHozy4C=tyg7OX?x-~SKM(1XsR zX6$|3928@%ucB7?2Py}`%1m|4L@i(g>U+(f@Ho?O1nK~L&3Y1*{r;~R=sC4Eposb--j`YP%HpIfUjh5r5J z=Kfq%GHxy>`O0a0$_4G&#HYNg2>V2ro@EY$nF!1haQ|8Z-Dy}lXsyWnNi%VxLr9M-1q zU1NSRwM9L+J1R*B+3TItXlMeNs3e+$8gMy!u^hEUyHFE6vSv@sfHT_~r6vqWOc*lA zJ9f~hv|%YD)}A{*-i_`a8PnMt-77YxXNPG1tDlrnR2(_FFe9%hC!;vOFxH!qmz|qY zI4>i|+voqy_!+qw**Q@U=jZn03wbl zzxv6;k_SbO%_=O)&d-bW#zaNeACR9{oRwF+w(yq`0jc@<#W`7A=7T+RFZ})G{{c=h BnqmL| diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 1df50f70d1..958fa9cfc2 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -1,3 +1,6 @@ +# Translation of StatusNet to Catalan +# +# -- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. @@ -5,16 +8,17 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-06-12 09:18+0000\n" -"Last-Translator: animarval \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:57:25+0000\n" +"Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -7666,24 +7670,3 @@ msgstr "No pots eliminar favorits." #, fuzzy msgid "Duplicate notice" msgstr "Eliminar nota." - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Crear nou compte" - -#~ msgid "Couldn't confirm email." -#~ msgstr "No s'ha pogut confirmar el correu electrònic." - -#~ msgid "Email address" -#~ msgstr "Adreça de correu electrònic" - -#~ msgid "Error inserting notice" -#~ msgstr "Error en inserir avís" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Si has oblidat o has perdut la teva contrasenya, pots rebre una de nova a " -#~ "l'adreça de correu electrònic que vas utilitzar per a registrar el teu " -#~ "compte." diff --git a/locale/cs/LC_MESSAGES/statusnet.mo b/locale/cs/LC_MESSAGES/statusnet.mo index f20634a2f663f8421e562276ddad62a4d01fdcee..4984f5882afa692538726303606b67671bd9ef3b 100644 GIT binary patch delta 4997 zcmY+`dw7rM9mny(9JgR1?l-UDW5m&O zoTE|K*Q4$~Vev(bA`bUG-)lyrt?&J40%{_e77xSwh{t1FoMZ7?RL3>g7(c~G{L;LK z?T91idR~1@GP~o`#J#XHZkx-EPtZ6|A`JucoTE@3F2MkTcYmk;L~VABN0bs0loSs=y*_kCmuW9!Hh%0=B># zH~@e4oO^B%HXt5r@kDG${H(?EQT_TWX)sA|CpN-vzjJ0`J>r4b8;6?9P!FCmubE*B zTt3$9g&nys2ixFmR0S$f72AOH<9o+xsI*s657b%cZj3`!CfR)09Eh6eQ>an~Q56Yc z02iQ2UxgZY7e0WeFdT27uHV8&jPKo}@hFK#i`+y88q%+JtQN8w9cNfJ@te;TIZlNQf0S78MCYK+4@sEJ+1diXtd z#;~Q%Bs0gHXTENpTT1=)z&%TJUgqA>aMY$7gVDGKbuLt+Ds%)@;(wyfkFavL+oMrm zMLX1ll2H>(Lv7j-sEJRt{F-v=pFm4*n4>ltngAK9JoQ^8(JZypsQ7c@9QMe1W zM~>L__fVVo5>CL_ReZ9z04cujU8kXermS`ymEm~eHK-ZiK~ArT!)AYskkK zoMWy=-M=063f@J%qT8qmc3R{5$-w(Gg&{Ol+Cr?sMHr2J*1BCh49keiuo2$IaICk^ z#ZAmM*ou5dOvm1+g_YR#`4~f7j;dG{rtAB!rLh~oGq=CwN;v*yca~2xaHpltZH%=Aq&WOubYU4cUx>OMopl~;{E1%)OcU}G+NVWy2+I?4r7V?pgJ0B&b0h$Od`JrwbHBD z16x-*voV=?5vqdwP!&Cn58`EPigjLd`jIqrV=QWuC7T&$UsMN!%sg|3S#G{&?l;ex z*UazD=s&vtIy-$Yi-tDQNYn(TnA1@cn~OT2Uc~yi9#yeQ?1TqU6TFH#kiJ8m@eQin zUP(cH_hV4^69^SjaXBxD}OVIelc6{wYMKuu_?xgWa_pGLis+o%CrZ+9IhpziN( zK8`bpN7?niq9%S}JN4H)`HF<}b~qzZGYnXqfZ79@7C(ZI5@%x@T!C7^HdKXbPy@V; zW%#~1WGA0A@o7{((ck4B*o@jlJ1jni>hL}DLu^KT8RPLwGlmVL_z~2=lTa0#irNda zEMJcL%2uQL*=G6&XgomTUDOHoZ`8rlc(+?|JgUR4sQWTdl^KK47&K>CeknF4Ut#%5 z)T`KsTF?npe`now-@8OZEBFdqV4FAG(b(1OkGh_Zde=)WUyUmLF;wL~wft?fMUCh6 zC7*1Tn0rz8-@!zE|IvF~A`3TjA;^KzHZz~L!Lm*>|dx7<^S2e>oRizw(&TMF@RgmQ>X*xI%;!8 z9(J2CfG-ipq57}2{1w!}_1R(SuSVQo+^<^DT!EUvVe{|iO>9d(qSjsSfI267Tl@q@ z5syPnqy$^xd~+Sf67Mq4*7|NGH%Vx~s3Y#d1k{6>=1{W$H38pThZ?BH;&)J`{sjBr zT^xeF-r=7cT#UK+18P%`^N%tJjpxlHr~&SwCeZenJLyu*u^3H$F%G~DsCW4}PRH=$ z&Ndu|Ov^8`{43a-{7&-*)+J6j>7GwEv&g zp4~IjI`;~Un3h{qG9@<@3S!T$wO6ixg9 delta 4925 zcmXZe32@J69>?*YCDKG3NeFTNg9>s8C5SMBpl+#PQ6?p9Rw5&Ub^g>KrOq|O&em#OsatFt|?uIG78=Xzcgrry?re6J>rD!^&NL-3l@viv* zrxHKGRycYAjlMLNEbzPzc-^e>uIn%b1LXUoI?ToKxZJG3mc&CBI%lH>+=(H$&*Ebk zOne4w;Cah`?bE1E;x;DXBh-rOEpiih9aVv3Y=#-AQqDk?a2eLdE!Yo_pepebzJ_6o zU0er4iCb9Q7S*rcg9c-IW3d|k*{r}I;^&x(ugugX?!{T=db7m5W2 zssib#iVZ|2;CnM@sI+TPFC0ew@FuD<<>ueb=ctJWzvoIBiK<9b3}Aay=`&FSkHZ+8 zg~7N5^?WB*(*Zk3qX&sosEPcHO)+|zGZh;Vk3)4d&*JSCe_`G?D=l~ZG&8%S`g4K;wb!VTCIHL>p47#E>l{1ltvSq$KxP`9Jf`|iDls56mb4mKy) z^I7Hw^wrUE8Xg576Dz_X+>foW#Jp<;ec@)M@|4 zDmU@QsC;jII9k)lCZUd3+k?-r1@RwH&;N@7Y_{6%VJ}qW@-QAhM4gdR4B$PC!xyN5 zTYcyTOh@G>pz^DI8d~82tc>Td4qiab@Q(Q$wc>hfoE^*zGv6#S_nMc?hp2wNwVu}p zqD+4*jW80su@fFe4fG6aV#qr8;fOYyqe|Nbt78Y$N_t`hjzgW10((9eb%9LO26r~%&0eVAk3p4s4r+^v zQ4{7E6mO2 zKGcWjG=}3t%l{jFttjYY&wB&IQE@sZ;ZRJ+h2|BkPh4Z0d)^AQ;!&uIO*NNbL*h;5 z3Dm@Hpx%Fo8t3IU>aV>B-R?d(0aToUdf`{*Z_H(=>$njU@x1vD)E>ut;ubOp^~qg` zn%FM$6siK(P+M{T6W`6~M-rM@#11#}1hbzx$y{viK;8dRY=jRi?|tg_wvpKxHGxcv zbIc{E@pkw$>d`ohD&X4P2kIWxX9sFd5?{aah+0}f@%rSj)y}92kGrx8EUIh)Uyz*{0 zf%;~1)Wi}|AE<6v75k$qmVqsBGHQZrP#>f{7>g%RXXQK8y$>mNziWt!+hMrwe>x5A z(FoLanv5EF25O+C7=+ugG44W@@B(Up8>qwd(u~^Uo+qLXTUT>1s^2V&r(!VUdy8mv z!1wVpEHexDx;S>9d+`qHT0J#`_tQCXa}33IPz%Y!s`xHyOP66YTw|Uv@1U15pvLdQo}Kp zI2x;A8fs+&Q4<i8Dw_Ycf};w<7Shurh|sEIE-ME$iV+epYm zW~u$~y2ZCpXW+5L-(wHrml%y{hus23qbf8WHNdZNE-o-%;8^0>M_m54PeU&ZFL8(H zZB#rRRhhZwVysDAge`HadC~kH^cevywc>A39o|Fz?h&fQAxGT+k!CC^-vz@k-SQczt(b^f&`eZ+zI*O_D`;p%+psoX zMtvIZnLpa|h+}TAyP%$rLY00x>iVs+e6jfz_9S0!#vFHXHtP3#F;4ft%n}vI&GUjz zI1k|(;t?mEPw@@nd7nE=%)eqM^3kVUJ_D18mzpQB4e?`4!+NKwHjct_-T!ZB=rA2S z=Y`r$|# zawg8fk5DCwIOq1Xwb>q{$#=s5jx=YXJ}{e6hpQBI=&s`yyou_6YMINg#;(L0%Ba5@ zH%TO50JZ{EcakptF>NMFKb$$e?eAmAhl5K#L2X~Ps+>6$xR%epVy67rc9ciH7Pq`Saw!kN?<_R zpgx%zCw0Jp?zuUM`2~}@g${gkV0yyv?1E`I`BPE?Z4;A1d*)9m%wC%}XGrxS`T2#p S*(8--d#EJ(XwlpTgZ>ZRdoi5= diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index f4c2137201..51cfca0517 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -1,3 +1,6 @@ +# Translation of StatusNet to Czech +# +# -- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. @@ -5,18 +8,18 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-07-07 22:07+0000\n" -"Last-Translator: Tomas Kral \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:57:31+0000\n" +"Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: cs\n" +"X-Message-Group: out-statusnet\n" -# jak přeložit stream? #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, fuzzy, php-format @@ -5673,7 +5676,6 @@ msgstr "" msgid "Only logged-in users can send direct messages." msgstr "" -# jak přeložit stream? #: actions/noticesearch.php:91 #, fuzzy, php-format msgid "Search results for \"%s\" on %s" @@ -7579,16 +7581,3 @@ msgstr "" #, fuzzy msgid "Duplicate notice" msgstr "Nové sdělení" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Vytvořit nový účet" - -#~ msgid "Couldn't confirm email." -#~ msgstr "Nelze potvrdit email" - -#~ msgid "Email address" -#~ msgstr "Emailová adresa" - -#~ msgid "Error inserting notice" -#~ msgstr "Chyba při vkládání nového sdělení" diff --git a/locale/de/LC_MESSAGES/statusnet.mo b/locale/de/LC_MESSAGES/statusnet.mo index 4cb3b2b5ad1bccbd832f1df07c348e66e187b0b0..47a10db8ba23528823527e1668fd7b6e67f527b5 100644 GIT binary patch delta 10221 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 o@9Jbo-(rG6@kc+C1$A(ypb#W9+=a1* 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 TnrCw`EwXj6X%#uJ!3_U@UX\n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:57:37+0000\n" +"Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" -msgstr "Suche im Stream nach \"%s\"" +msgstr "Suche im Stream nach „%s“" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 @@ -42,7 +47,6 @@ msgstr "von" msgid "%1$s / Updates replying to %2$s" msgstr "%1$s Antworten an %2$s" -# Nedd a concrete example with full data #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 #: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format @@ -434,7 +438,7 @@ msgstr "Alle Aktualisierungen für %s" #: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" -msgstr "Alle Aktualisierungen, die den Suchbegriff \"%s\" enthalten" +msgstr "Alle Aktualisierungen, die den Suchbegriff „%s“ enthalten" #: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 #: ../actions/openidlogin.php:29 ../actions/register.php:30 @@ -444,7 +448,7 @@ msgstr "Alle Aktualisierungen, die den Suchbegriff \"%s\" enthalten" #: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 #: actions/login.php:79 msgid "Already logged in." -msgstr "Bereits eingeloggt." +msgstr "Bereits angemeldet." #: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." @@ -467,7 +471,7 @@ msgstr "Abonnement bestätigen" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Automatisch einloggen; nicht bei gemeinsam genutzten PCs einsetzen!" +msgstr "Automatisch anmelden; nicht bei gemeinsam genutzten PCs einsetzen!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 @@ -547,7 +551,7 @@ msgstr "Die Nachricht konnte nicht gelöscht werden." #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" -msgstr "Konnte Avatar-URL nicht öffnen '%s'" +msgstr "Konnte Avatar-URL nicht öffnen „%s“" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 @@ -744,7 +748,7 @@ msgstr "Konnte nicht abbonieren." #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "Die bestätigte Emailadresse konnte nicht gespeichert werden." +msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 @@ -760,7 +764,7 @@ msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln." #: actions/emailsettings.php:382 actions/emailsettings.php:390 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." -msgstr "Konnte E-Mailbestätigung nicht löschen." +msgstr "Konnte E-Mail-Bestätigung nicht löschen." #: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." @@ -865,7 +869,7 @@ msgstr "Aktuelle bestätigte Jabber/GTalk-Adresse" #: ../actions/smssettings.php:46 actions/smssettings.php:46 #: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." -msgstr "Aktuelle für den SMS Dienst bestätigte Telefon Nummer" +msgstr "Aktuelle für den SMS-Dienst bestätigte Telefon-Nummer." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 #: actions/emailsettings.php:99 actions/emailsettings.php:105 @@ -913,37 +917,37 @@ msgstr "E-Mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 #: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" -msgstr "E-Mail Adresse" +msgstr "E-Mail-Adresse" #: ../actions/emailsettings.php:32 actions/emailsettings.php:32 #: actions/emailsettings.php:60 msgid "Email Settings" -msgstr "E-Mail Einstellungen" +msgstr "E-Mail-Einstellungen" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." -msgstr "Diese E-Mail Adresse existiert bereits." +msgstr "Diese E-Mail-Adresse existiert bereits." #: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" -msgstr "Bestätigung der E-Mail Adresse" +msgstr "Bestätigung der E-Mail-Adresse" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 #: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" -msgstr "E-Mail Adresse, z.B. \"UserName@example.org\"" +msgstr "E-Mail-Adresse, beispielsweise „Benutzername@example.org“" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 #: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" -msgstr "E-Mail Adressen" +msgstr "E-Mail-Adressen" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." -msgstr "Gib einen Spitznamen oder eine E-Mail Adresse ein." +msgstr "Gib einen Spitznamen oder eine E-Mail-Adresse ein." #: ../actions/smssettings.php:64 actions/smssettings.php:64 #: actions/smssettings.php:119 actions/smssettings.php:131 @@ -1025,13 +1029,13 @@ msgstr "Fehler bei den Nutzereinstellungen." #: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 #: actions/finishaddopenid.php:131 msgid "Error updating profile" -msgstr "Fehler beim Update des Profils" +msgstr "Fehler beim Aktualisieren des Profils" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 #: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" -msgstr "Fehler beim Update des entfernten Profils" +msgstr "Fehler beim Aktualisieren des entfernten Profils" #: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 #: actions/recoverpassword.php:86 @@ -1188,7 +1192,7 @@ msgid "" "click \"Add\"." msgstr "" "Wenn du deinem Konto eine OpenID hinzufügen möchtest, dann trage sie hier " -"ein und klicke auf \"Hinzufügen\"." +"ein und klicke auf „Hinzufügen“." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" @@ -1196,8 +1200,8 @@ msgid "" "email address you have stored in your account." msgstr "" "Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-" -"Mail Adresse, die in deinem Account eingetragen ist, ein neues zusenden " -"lassen." +"Mail-Adresse, die in deinem Benutzerkonto eingetragen ist, ein neues " +"zusenden lassen." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1211,7 +1215,7 @@ msgstr "Eingehende E-Mail" #: actions/smssettings.php:518 actions/smssettings.php:519 #: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." -msgstr "Eingehende E-Mail Adresse entfernt" +msgstr "Eingehende E-Mail-Adresse entfernt" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 @@ -1232,31 +1236,31 @@ msgid "" "address registered to your account." msgstr "" "Anweisungen für die Wiederherstellung deines Passworts wurden an deine " -"hinterlegte E-Mailadresse geschickt." +"hinterlegte E-Mail-Adresse geschickt." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" -msgstr "Ungültiger Avatar-URL '%s'" +msgstr "Ungültiger Avatar-URL „%s“" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 #: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" -msgstr "Ungültige E-Mail Adresse: %s" +msgstr "Ungültige E-Mail-Adresse: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" -msgstr "Ungültige Homepage '%s'" +msgstr "Ungültige Homepage „%s“" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 #: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" -msgstr "Ungültige Lizenz-URL '%s'" +msgstr "Ungültige Lizenz-URL „%s“" #: ../actions/postnotice.php:61 actions/postnotice.php:62 #: actions/postnotice.php:66 actions/postnotice.php:84 @@ -1277,7 +1281,7 @@ msgstr "Ungültige Nachrichten-URL" #: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." -msgstr "Ungültige Profil-URL '%s'." +msgstr "Ungültige Profil-URL „%s“." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 #: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 @@ -1414,7 +1418,7 @@ msgstr "Einloggen" #: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Mit [OpenID](%%doc.openid%%) Konto einloggen" +msgstr "Mit [OpenID](%%doc.openid%%)-Konto anmelden." #: ../actions/login.php:126 actions/login.php:251 #, php-format @@ -1435,7 +1439,7 @@ msgstr "Abmelden" #: ../actions/register.php:166 actions/register.php:180 #: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" -msgstr "Längerer Name, bevorzugt dein \"echter\" Name" +msgstr "Längerer Name, bevorzugt dein „echter“ Name" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 @@ -1449,14 +1453,14 @@ msgstr "Passwort vergessen?" #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" -"Neue Mailadresse für Postings aktivieren; die alte wird automatisch " +"Neue E-Mail-Adresse für Postings aktivieren; die alte wird automatisch " "deaktiviert." #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 #, php-format msgid "Manage how you get email from %%site.name%%." -msgstr "Einstellen, wie und wann du Emails von %%site.name%% bekommst." +msgstr "Einstellen, wie und wann du E-Mails von %%site.name%% bekommst." #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 @@ -1498,14 +1502,14 @@ msgstr "Neu" #: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" -msgstr "Neue E-Mail Adresse um auf %s zu schreiben" +msgstr "Neue E-Mail-Adresse um auf %s zu schreiben" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 #: actions/emailsettings.php:465 actions/emailsettings.php:472 #: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." -msgstr "Neue Eingangs-Emailadresse hinzugefügt." +msgstr "Neue Eingangs-E-Mail-Adresse hinzugefügt." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 @@ -1528,7 +1532,7 @@ msgstr "Neues Passwort" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt eingeloggt." +msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt angemeldet." #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1640,7 +1644,7 @@ msgstr "Kein Inhalt!" #: actions/emailsettings.php:304 actions/emailsettings.php:311 #: actions/emailsettings.php:319 msgid "No email address." -msgstr "Keine E-Mail Adresse." +msgstr "Keine E-Mail-Adresse." #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." @@ -1651,7 +1655,7 @@ msgstr "Keine ID." #: actions/smssettings.php:505 actions/smssettings.php:506 #: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." -msgstr "Keine Eingangs-Emailadresse" +msgstr "Keine Eingangs-E-Mail-Adresse." #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 @@ -1688,7 +1692,7 @@ msgstr "Der entfernte Server hat keine Profil-URL geliefert." #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 msgid "No registered email address for that user." -msgstr "Der Nutzer hat keine registrierte E-Mailadresse." +msgstr "Der Nutzer hat keine registrierte E-Mail-Adresse." #: ../actions/userauthorization.php:49 actions/userauthorization.php:55 #: actions/userauthorization.php:57 @@ -1707,7 +1711,6 @@ msgstr "Keine Ergebnisse" msgid "No size." msgstr "Keine Größe." -# Duplicate with: "No status with that ID found." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 #: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 @@ -1717,7 +1720,6 @@ msgstr "Keine Größe." msgid "No status found with that ID." msgstr "Keine Nachricht mit dieser ID gefunden." -# Duplicate with: "No status found with that ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 #: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 #: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 @@ -1793,7 +1795,7 @@ msgstr "Unbekannter Benutzer." #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 #: actions/recoverpassword.php:272 msgid "No user with that email address or username." -msgstr "Kein Benutzer mit dieser E-Mail Adresse oder mit diesem Nutzernamen." +msgstr "Kein Benutzer mit dieser E-Mail-Adresse oder mit diesem Nutzernamen." #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" @@ -1908,7 +1910,7 @@ msgstr "Nicht gefunden" #: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 #: actions/unsubscribe.php:52 msgid "Not logged in." -msgstr "Nicht eingeloggt." +msgstr "Nicht angemeldet." #: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." @@ -1961,7 +1963,7 @@ msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 #: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" -msgstr "OpenID Account erstellen" +msgstr "OpenID-Benutzerkonto erstellen" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 #: lib/openid.php:269 @@ -1974,7 +1976,7 @@ msgstr "OpenID Automatische Übertragung" #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 #: actions/openidlogin.php:89 msgid "OpenID Login" -msgstr "OpenID Anmeldung" +msgstr "OpenID-Anmeldung" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 @@ -2024,7 +2026,7 @@ msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." -msgstr "Unvollständiger Upload" +msgstr "Unvollständiges Hochladen." #: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 #: ../actions/register.php:153 ../lib/settingsaction.php:93 @@ -2113,7 +2115,7 @@ msgid "" msgstr "" "Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " "dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " -"\"Abbrechen\"." +"„Abbrechen“." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2176,7 +2178,7 @@ msgstr "Profil-URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 #: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" -msgstr "Profil Einstellungen" +msgstr "Profil-Einstellungen" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 @@ -2204,7 +2206,7 @@ msgstr "MicroID für meine Jabber/GTalk-Adresse veröffentlichen." #: actions/emailsettings.php:178 actions/emailsettings.php:183 #: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." -msgstr "MicroID für meine Emailadresse veröffentlichen." +msgstr "MicroID für meine E-Mail-Adresse veröffentlichen." #: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 #: actions/tag.php:76 @@ -2300,7 +2302,7 @@ msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" -"Wenn du deine einzige OpenID entfernst, kannst du dich nicht mehr einloggen! " +"Wenn du deine einzige OpenID entfernst, kannst du dich nicht mehr anmelden! " "Falls du sie also entfernen musst, füge zuerst eine neue OpenID hinzu." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 @@ -2340,16 +2342,16 @@ msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 #: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" -msgstr "SMS Telefonnummer" +msgstr "SMS-Telefonnummer" #: ../actions/smssettings.php:33 actions/smssettings.php:33 #: actions/smssettings.php:58 msgid "SMS Settings" -msgstr "SMS Einstellungen" +msgstr "SMS-Einstellungen" #: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" -msgstr "SMS Konfiguration" +msgstr "SMS-Konfiguration" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 @@ -2434,12 +2436,12 @@ msgstr "Senden" #: actions/emailsettings.php:132 actions/smssettings.php:145 #: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." -msgstr "Schicke ein Mail an diese Adresse um eine Nachricht zu posten." +msgstr "Schicke ein E-Mail an diese Adresse um eine Nachricht zu posten." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 #: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." -msgstr "Informiere mich über neues Abonnements per Mail." +msgstr "Informiere mich über neues Abonnements per E-Mail." #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 @@ -2496,7 +2498,7 @@ msgstr "Sorry, keinen eingehenden E-Mails gestattet." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 #: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." -msgstr "Sorry, das ist nicht deine Addresse für eingehende E-Mails." +msgstr "Sorry, das ist nicht deine Adresse für eingehende E-Mails." #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 @@ -2601,7 +2603,7 @@ msgstr "Dieser Bestätigungscode ist nicht für dich!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 #: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." -msgstr "Diese E-Mail Adresse gehört einem anderen Nutzer." +msgstr "Diese E-Mail-Adresse gehört einem anderen Nutzer." #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 @@ -2617,7 +2619,7 @@ msgstr "Diese JabberID hast du schon angegeben." #: actions/emailsettings.php:318 actions/emailsettings.php:325 #: actions/emailsettings.php:333 msgid "That is already your email address." -msgstr "Dies ist bereits deine E-Mail Adresse." +msgstr "Dies ist bereits deine E-Mail-Adresse." #: ../actions/smssettings.php:188 actions/smssettings.php:196 #: actions/smssettings.php:306 actions/smssettings.php:318 @@ -2633,7 +2635,7 @@ msgstr "Dies ist nicht deine JabberID." #: actions/emailsettings.php:397 actions/emailsettings.php:404 #: actions/emailsettings.php:412 msgid "That is not your email address." -msgstr "Dies ist nicht deine E-Mail Adresse." +msgstr "Dies ist nicht deine E-Mail-Adresse." #: ../actions/smssettings.php:257 actions/smssettings.php:265 #: actions/smssettings.php:393 actions/smssettings.php:405 @@ -2680,7 +2682,7 @@ msgstr "" #: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." -msgstr "Die Adresse \"%s\" wurde für dein Konto bestätigt." +msgstr "Die Adresse „%s“\" wurde für dein Konto bestätigt." #: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 #: ../actions/smssettings.php:274 actions/emailsettings.php:282 @@ -2754,7 +2756,7 @@ msgid "" "button to go to your OpenID provider." msgstr "" "Dieses Formular sollte automatisch übermittelt werden. Wenn nicht, dann " -"klicke auf \"Senden\", um zu deinem OpenID-Anbieter zu gelangen." +"klicke auf „Senden“, um zu deinem OpenID-Anbieter zu gelangen." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 @@ -2764,7 +2766,7 @@ msgid "" "to a local account. You can either create a new account, or connect with " "your existing account, if you have one." msgstr "" -"Dies ist das erste Mail, dass du dich bei %s einloggst. Deshalb müssen wir " +"Dies ist das erste Mal, dass du dich bei %s anmeldest. Deshalb müssen wir " "deine OpenID mit einem lokalen Konto verbinden. Du kannst entweder ein neues " "Konto erstellen oder mit einem vorhandenen Konto anmelden." @@ -2820,10 +2822,10 @@ msgid "" "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"Für ein Abonnement kannst du dich entweder [einloggen](%%action.login%%) " -"oder ein neues Konto [registrieren](%%action.register%%). Wenn du schon ein " -"Konto auf einer [kompatiblen Microbloggingsite](%%doc.openmublog%%) hast, " -"dann gib deine Profil-URL unten an." +"Für ein Abonnement kannst du dich entweder [anmelden](%%action.login%%) oder " +"ein neues Konto [registrieren](%%action.register%%). Wenn du schon ein Konto " +"auf einer [kompatiblen Microbloggingsite](%%doc.openmublog%%) hast, dann gib " +"deine Profil-URL unten an." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2912,12 +2914,12 @@ msgstr "Bildformat wird nicht unterstützt." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 #: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" -msgstr "Updates via SMS" +msgstr "Aktualisierungen via SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 #: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" -msgstr "Updates via Instant Messenger (IM)" +msgstr "Aktualisierungen via Instant Messenger (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 #: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 @@ -2925,7 +2927,7 @@ msgstr "Updates via Instant Messenger (IM)" #: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" -msgstr "Updates von %1$s und Freunden auf %2$s!" +msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 #: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 @@ -2934,7 +2936,7 @@ msgstr "Updates von %1$s und Freunden auf %2$s!" #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" -msgstr "Updates von %1$s auf %2$s!" +msgstr "Aktualisierungen von %1$s auf %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 @@ -2950,7 +2952,7 @@ msgid "" "site license, also. Use a picture that belongs to you and that you want to " "share." msgstr "" -"Hier kannst du einen neuen \"Avatar\" (Nutzerbild) hochladen. Du kannst das " +"Hier kannst du einen neuen „Avatar“ (Nutzerbild) hochladen. Du kannst das " "Bild nach dem Hochladen nicht mehr verändern, also stell bitte sicher, dass " "es halbwegs quadratisch ist. Es muss auch unter der Lizenz der Site zur " "Verfügung gestellt werden. Nutze also ein Bild, das dir gehört und das du " @@ -3030,19 +3032,19 @@ msgstr "Was ist los, %s?" #: actions/register.php:456 actions/profilesettings.php:134 #: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Wo du bist, z.B. \"Stadt, Gebiet, Land\"" +msgstr "Wo du bist, beispielsweise „Stadt, Gebiet, Land“" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 #: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" -msgstr "Falscher Bildtyp für '%s'" +msgstr "Falscher Bildtyp für „%s“" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 #: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" -msgstr "Falsche Bildgröße bei '%s'" +msgstr "Falsche Bildgröße bei „%s“" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 @@ -3093,14 +3095,14 @@ msgstr "Du kannst ein neues Konto erstellen, um Nachrichten zu verschicken." #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Du kannst SMS per Mail empfangen von %%site.name%%." +msgstr "Du kannst SMS per E-Mail empfangen von %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" -"Du kannst eine OpenID aus deinem Konto entfernen, indem du auf \"Entfernen\" " +"Du kannst eine OpenID aus deinem Konto entfernen, indem du auf „Entfernen“ " "klickst." #: ../actions/imsettings.php:28 actions/imsettings.php:28 @@ -3143,7 +3145,7 @@ msgid "You did not send us that profile" msgstr "Dieses Profil hast du uns nicht geschickt" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, fuzzy, php-format +#, php-format msgid "" "You have a new posting address on %1$s.\n" "\n" @@ -3156,9 +3158,9 @@ msgid "" msgstr "" "Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n" "\n" -"Schicke eine E-mail an %2$s um eine neue Nachricht hinzuzufügen.\n" +"Schicke eine E-Mail an %2$s um eine neue Nachricht hinzuzufügen.\n" "\n" -"Weitere E-Mailanweisungen unter %3$s.\n" +"Weitere E-Mail-Anweisungen unter %3$s.\n" "\n" "Viele Grüße,\n" "%4$s" @@ -3166,19 +3168,17 @@ msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 #: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -#, fuzzy msgid "You may not delete another user's status." msgstr "Du kannst den Status eines anderen Benutzers nicht löschen." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 #: actions/invite.php:41 -#, fuzzy, php-format +#, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Du musst angemeldet sein, um andere Benutzer zu %s einzuladen" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -#, fuzzy msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -3188,19 +3188,18 @@ msgstr "" "wachsen!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -#, fuzzy msgid "You've been identified. Enter a new password below. " msgstr "Du wurdest indentifiziert. Bitte trage unten ein neues Passwort ein." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 #: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" -msgstr "Deine OpenID URL" +msgstr "Deine OpenID-URL" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "Dein Benutzername oder E-Mail Adresse auf diesem Server." +msgstr "Dein Benutzername oder E-Mail-Adresse auf diesem Server." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format @@ -3273,9 +3272,8 @@ msgstr "löschen" #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -#, fuzzy msgid "in reply to..." -msgstr "als Antwort auf..." +msgstr "als Antwort auf …" #: ../actions/noticesearch.php:137 ../actions/showstream.php:415 #: ../lib/stream.php:124 actions/noticesearch.php:143 @@ -3285,7 +3283,6 @@ msgstr "antworten" #: ../actions/password.php:44 actions/profilesettings.php:183 #: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -#, fuzzy msgid "same as password above" msgstr "Gleiches Passwort wie oben" @@ -4577,7 +4574,6 @@ msgstr "%%%%site.name%%%% Gruppen - finde und tausche dich aus mit " msgid "Create a new group" msgstr "Neue Gruppe erstellen" -# Suche nach "Nutzern" stimmt ja nicht, es ist die Gruppensuche. #: actions/groupsearch.php:57 #, fuzzy, php-format msgid "" @@ -7888,45 +7884,3 @@ msgstr "Konnte Favoriten nicht löschen." #, fuzzy msgid "Duplicate notice" msgstr "Notiz löschen" - -#~ msgid "Code not yet ready." -#~ msgstr "Code noch nicht fertig." - -#~ msgid "Export and delete your user information." -#~ msgstr "Exportiere und lösche deine Benutzer Daten." - -#~ msgid "Delete my account" -#~ msgstr "Lösche meinen Account" - -#, fuzzy -#~ msgid "Delete my account confirmation" -#~ msgstr "Konnte E-Mailbestätigung nicht löschen." - -#, fuzzy -#~ msgid "Check if you are sure you want to delete your account." -#~ msgstr "Sind sie sicher, dass sie diese Nachricht löschen wollen?" - -#~ msgid "Showing recently popular notices" -#~ msgstr "Kürzlich populäre Nachrichten" - -#~ msgid "Tag a person" -#~ msgstr "Tagge eine Person" - -#~ msgid "Icons" -#~ msgstr "Icons" - -#~ msgid "Couldn't confirm email." -#~ msgstr "E-Mail konnte nicht bestätigt werden." - -#~ msgid "Email address" -#~ msgstr "E-Mail Adresse " - -#~ msgid "Error inserting notice" -#~ msgstr "Fehler beim Einfügen der Nachricht" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Wenn du deine Passwort verlegt hast, kannst du dir ein Neues an die E-" -#~ "Mailadresse schicken lasssen, die für dein Konto eingetragen ist." diff --git a/locale/el/LC_MESSAGES/statusnet.mo b/locale/el/LC_MESSAGES/statusnet.mo index ffcd47205e526a48cc512d03d7a57286f81552c2..6f2e5f0830aed432cabf4953fe5e3a60454d26d0 100644 GIT binary patch delta 2651 zcmY+_eN5F=7{KudMFUe)R0K7Zf@2}E!WGI>-%tyZSl|NJm>t*`8~hq_xvt< zj}7WSHmG+)c<{Xtk(T))Gel%crbsF-!AtnMb)HvbDDmI;42CQeiNbKyeN(M@m_h8f z@mcf|-@+IipC#hM44j3Bvm`ihzzrrQGVvGc0pqfbEASriK^%$AIU<*FH&$cLB9RL0 z#a0}*SR@6zaV>t1OK?)I2sy|`3<(iAjg|QROF@xF24nJ!dtNpb_+zOEXUdEDB4Ox9 zO`z4r?Kq0K2glm!v#9$944}Ts8#o+C6p6&)1k_iZW8$Ec+KG1L zHOoni#QT_lA=K54Zd{1#aY!g7MNQ!Nt0HsoL!|n0A9ep+oC-^ePlH`2T272&O)C-3=CV_=mN_+vcFmj{FY+Q$W<1W-2evg?Lzsc<1Y&~hcgH^0g zt`woqWk2eJ_G3^7BUmlPT+|*ojj4DE=_h$)aT;+S~JmyEyPiE#x84Ey?KW_kk=+XsFiqxTCunW)0__K z4bGt#`!O5GHd0kA!YC}Zwlq@z6ehZuNX9Fu&GZ;2q1$f`%EK3kJ5XWpE8AT+b+}1p>G(YaUL5JQA=En zQFsbR3hvDTNdhpyKy)k zv7SLqCg>P!ZN>!DbIVXG*ND@w9esEXy*Rpq`p;mnvcojRc3hwrSbst7 zTK55Sa1Lq$t?0$G*oVJj9DZ=nJmD>Tp7;Sy$B~_;SJF@u=|X;L6CvA==H6mNTuu#h`A$=lW}NG< bZ*K6o>YD@Zrh(_wEj^(fCFfHzzgh7wqj0r! delta 2574 zcmXZddr(wW9Ki7(jG~d5Vk+iqO^`&{7JQ??t}76V3W_MA$b|@2mtEu~mQG|TBRqob)aQd;BqNXr@@O^q6jy=E$#W-6-5rtgn)_=C^+opbNG=lss^-o3If zx_w{tp%wQ;Rz!)c%MeKtk*k>^lks1CA5*i8zhVsWyIzq#cogHY6ZO7p*1I^9IMHYN z9i&S-a4dd|4&K2@STI{6JrlIf78y>*JE#+!xAyXj{6Or*{`l}5kyAJg*I+k3hLzbO z>+w9M;hY?irMM3B@G|mD8I~&&6(v%NHMsK8h{#$RXSqt9KF?&}t$Y#YlCQBZCeAkt zaHGZo;wLLc@g&%Jw*Qq%<$ucRKZ3dy?cMZNzg)bVI`6Ndw_923xsZ8($q zle0YyE+nrr7|6s1Y(bsyXWWSC<(wa$KnF+gPscZ*?(`B;KGK)G>Ufd$80vUDH}~}8 z6U4`GY=nk~0?>(zP%k`zx`5xY9BZmXX5$5%iv1op5B8%z@I}nRo2d7XtTvWdcVU43 z&v7o!tT7vH$B6FuG>vln2ek%Dxq33zA@w8&Y}{>~xY}IjU^(N>$crLhAX7-f8dD?N zP;21|k_7Pt&39lYmJ%Nil7DRssx=*9Tt|G->JORtB?qZZRa9D!Zv#k)8fGwaO*%TOoUgAd^m z>vikj))Abej%QgbtZg`j{(})3V`$vMPf;3;mobL$l_vB09YD%KPGc-4Hk*ZbP%{y< z?#H>rU!hiiBI#5o;}G;?UtEsEFj7gwOJgIB!VfS9Z(=V@Xfa>7@m3#t=`X=f+=HiZ zDJA_M4t>%%WWCAY;0>mR(r_H(t*Ev2HeTWR(nW*%kfXd~nkv^ObJl)qG3pKiHf}-c zOt#{3{1b;_AxGJB9cnGKU>1Iag&4h=-;XHXGV8{t^b^kD8&8{RK5o5)v$)|K)Z!ZT zj5+J&IFPu(+J>6K-KYyVjB$7Y^{8$jNfBSG@g(YkrnH&Yy$Of&eEE`w5C1@&a9X?h zWENV>P#3bs`lj`^b@a1lycG3QyW9FY>U@V$YwV(pf3fy?j{IxN#?V-X9-M$3Sb^`^ zIKIR5&%reM>ri*P9|zzu)Z#jaQ}Gt+yo0xx%q3s~aRxeAfnGebh5RSc=)KhxMG9u> z1=iP4C+xEpl=?&r+}4t5gn!|}Lko7r&(jwIfX=*R^JQfl1wU zI)*b4_kxMt$dIf?UEoREe;dn)NAECh!WiP4s44z-$B{j8za`&a;PcP(8>PRH(YT^HD_?hqk diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index b074e5f63e..641ebc5e56 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -1,3 +1,6 @@ +# Translation of StatusNet to Greek +# +# -- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. @@ -5,16 +8,17 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-09-08 20:21+0000\n" -"Last-Translator: Giannis Pappas \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:57:42+0000\n" +"Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: el\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -7443,7 +7447,3 @@ msgstr "" #, fuzzy msgid "Duplicate notice" msgstr "Διαγραφή μηνύματος" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Δημιουργία νέου λογαριασμού" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.mo b/locale/en_GB/LC_MESSAGES/statusnet.mo index b970c431985f5ab63f50b0b336774dbb77faed9a..a00d7cd6eaa87008cbbf2acb690e3dfb3a464723 100644 GIT binary patch delta 9028 zcmY+|d3aUTxySK+0)a3q5a!{KAco;&f&d9~Ab~(Y3Xuq93h@955HLeg6gO(=#emX) zh!><-MD(%H%OuDnpeRNQl`D#1FKRDU5o9Pbh*XAte`mez^VEMnYpuQa8s7D;b%M`c zj6QuadTaeSe^; z9>&i26Sl{=3(ibb`!wv1%Px4nHzvyS-l3r-4NWe2ULuC@KAdQ7Mos7@4#v12+`!W@ zmik((joUCD_gMW))WW{SyYQAhZ+O}B8d6Wa?7J5R(NLd;@u&}`V_ke4HNex@7T048 z?n8B0jhgrgyc>VOI#}b1=QYL#s0jtJ4GuxQUtrH4^(m;MXRTp9s)OyQ8SX_*=rHQN zuTdRbMTNZKRnO~ytx)ZKQCl+(HQ_m^{+6N^vaD5ZcM=an1SD63C3M> z&#Q12^%pRNHGlNHa!fT}#R}?et~*y?Kk6|*xd>!qAL_-JjhnEk$NpcS(1nJm8!kyg zsF{z%Vw{Ej@i;zC7c1e0kmMqe+i zrJ$Al5w#WXVmG{iN~Ts`AkuLPDx1e)UtEBi=x%F2g*nut0|Bo$-iPe5w*(d0b*Kq% zGV9;hwrgNjfV1~JDhw&zPxp(~-+VJmE2GvKwrR8$s^z&7|_*cvyYCiV{MqWS>! z-38Q^#6$-o$2o**?~8gr->0AuO-6;f3^mhA)G=FQ&p$+E@0X~7ub>9Lt5zU#FLXoQ z7yVGrb5Z>ip;r0`DhYpW?aNU2ivJ=7CC^UOht=2%zs5XlT{{rDqUWJHc(0C `C~ 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 b^oN$tt(cb)oLf;IDvK7j=+Rn9B$8rr_ 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\n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:57:52+0000\n" +"Language-Team: British English\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: en-gb\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -23,7 +27,6 @@ msgstr "" msgid " Search Stream for \"%s\"" msgstr " Search Stream for \"%s\"" -# Adjusted for grammar. #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 @@ -485,7 +488,6 @@ msgstr "Avatar" msgid "Avatar updated." msgstr "Avatar updated." -# Buddy? #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, fuzzy, php-format @@ -510,7 +512,6 @@ msgstr "" msgid "Awaiting confirmation on this phone number." msgstr "Awaiting confirmation on this phone number." -# erm, not sure what to do here, » is recognised as a quotation mark. #: ../lib/util.php:1318 lib/util.php:1452 msgid "Before »" msgstr "Before »" @@ -689,7 +690,6 @@ msgstr "Connect existing account" msgid "Contact" msgstr "Contact" -# Thought form was incorrect #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 #: lib/openid.php:190 #, php-format @@ -1016,13 +1016,11 @@ msgstr "Error saving user; invalid." msgid "Error setting user." msgstr "Error setting user." -# Added full stop #: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 #: actions/finishaddopenid.php:131 msgid "Error updating profile" msgstr "Error updating profile." -# Added full stop #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 #: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 @@ -1158,13 +1156,11 @@ msgstr "I want to post notices by e-mail." msgid "IM" msgstr "I.M." -# possibly use I.M. #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "I.M. Address" -# requires full stops? #: ../actions/imsettings.php:33 actions/imsettings.php:33 #: actions/imsettings.php:59 msgid "IM Settings" @@ -1187,7 +1183,6 @@ msgstr "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." -# double space here #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " @@ -1231,7 +1226,6 @@ msgstr "" "Instructions for recovering your password have been sent to the e-mail " "address registered to your account." -# Avatar? #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format @@ -1266,7 +1260,6 @@ msgstr "Invalid notice content" msgid "Invalid notice uri" msgstr "Invalid notice URI" -# URL case #: ../actions/postnotice.php:72 actions/postnotice.php:73 #: actions/postnotice.php:77 msgid "Invalid notice url" @@ -1465,7 +1458,6 @@ msgstr "Member since" msgid "Microblog by %s" msgstr "Microblog by %s" -# Carrier? #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, fuzzy, php-format @@ -1606,7 +1598,6 @@ msgstr "No Jabber ID." msgid "No authorization request!" msgstr "No authorisation request!" -# Carrier? #: ../actions/smssettings.php:181 actions/smssettings.php:189 #: actions/smssettings.php:299 actions/smssettings.php:311 #, fuzzy @@ -1823,7 +1814,6 @@ msgstr "Not a valid Jabber ID" msgid "Not a valid OpenID." msgstr "Not a valid OpenID." -# Missing full stop, needs to merge with: actions/register.php:63 actions/register.php:70 actions/register.php:152 #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 #: actions/emailsettings.php:315 actions/emailsettings.php:322 #: actions/emailsettings.php:330 @@ -1905,7 +1895,6 @@ msgstr "Not found" msgid "Not logged in." msgstr "Not logged in." -# removed full stop #: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Not subscribed!" @@ -2407,7 +2396,6 @@ msgstr "" "Search for people on %%site.name%% by their name, location, or interests. " "Separate the terms by spaces; they must be 3 characters or more." -# Carrier? #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 #, fuzzy @@ -2440,7 +2428,6 @@ msgstr "Send me notices of new subscriptions through e-mail." msgid "Send me notices through Jabber/GTalk." msgstr "Send me notices through Jabber/GTalk." -# Carrier #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 #, fuzzy @@ -2804,7 +2791,6 @@ msgstr "Timezone" msgid "Timezone not selected." msgstr "Timezone not selected." -# double space. #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format @@ -3171,7 +3157,6 @@ msgstr "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" -# extra spaces. #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "You've been identified. Enter a new password below. " @@ -3186,7 +3171,6 @@ msgstr "Your OpenID URL" msgid "Your nickname on this server, or your registered email address." msgstr "Your nickname on this server, or your registered e-mail address." -# extra spaces. #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" @@ -3279,7 +3263,6 @@ msgstr "same as password above" msgid "unsupported file type" msgstr "unsupported file type" -# erm, not sure what to do here, « is recognised as a quotation mark. #: ../lib/util.php:1309 lib/util.php:1443 msgid "« After" msgstr "← After" @@ -3398,7 +3381,6 @@ msgstr "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" -# extra space? #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 msgid "Automatically login in the future; " @@ -3597,7 +3579,6 @@ msgstr "Message from %1$s on %2$s" msgid "Send a message" msgstr "Send a message" -# Carrier? #: actions/smssettings.php:312 actions/smssettings.php:464 #, fuzzy, php-format msgid "Mobile carrier for your phone. " @@ -4049,7 +4030,6 @@ msgstr "%s and friends, page %d" msgid "You can upload your personal avatar." msgstr "You can upload your personal avatar." -# requires full stops? #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -4284,7 +4264,6 @@ msgstr "No notice content!" msgid "Pagination" msgstr "Pagination" -# erm, not sure what to do here, « is recognised as a quotation mark. #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -4292,7 +4271,6 @@ msgstr "Pagination" msgid "After" msgstr "After" -# erm, not sure what to do here, » is recognised as a quotation mark. #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 @@ -4544,7 +4522,6 @@ msgstr "You may not leave a group while you are its administrator." msgid "Could not find membership record." msgstr "Could not find membership record." -# Thought form was incorrect #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 #, php-format @@ -4625,7 +4602,6 @@ msgstr "OpenID login" msgid "Removing your only OpenID " msgstr "Removing your only OpenID " -# requires full stops? #: actions/othersettings.php:60 msgid "Other Settings" msgstr "Other Settings" @@ -4944,7 +4920,6 @@ msgstr "Send me notices through SMS; " msgid "A confirmation code was sent to the phone number you added. " msgstr "A confirmation code was sent to the phone number you added. " -# Carrier? #: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" @@ -5755,7 +5730,6 @@ msgstr "" msgid "Creative Commons Attribution 3.0" msgstr "" -# Adjusted for grammar. #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy msgid "" @@ -6490,7 +6464,6 @@ msgid "" "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -# extra spaces. #: actions/openidsettings.php:70 #, fuzzy, php-format msgid "" @@ -6561,7 +6534,6 @@ msgid "" "one!" msgstr "" -# double space here #: actions/recoverpassword.php:152 #, fuzzy msgid "" @@ -6571,7 +6543,6 @@ msgstr "" "If you've forgotten or lost your password, you can get a new one sent to the " "e-mail address you have stored in your account." -# extra spaces. #: actions/recoverpassword.php:158 #, fuzzy msgid "You've been identified. Enter a new password below. " @@ -7159,7 +7130,6 @@ msgstr "Could not join user %s to group %s" msgid "You are not a member of this group." msgstr "You are not a member of that group." -# Thought form was incorrect #: actions/apigroupleave.php:124 #, fuzzy, php-format msgid "Could not remove user %s to group %s." @@ -7566,7 +7536,6 @@ msgstr "" msgid "Go to the installer." msgstr "Login to the site" -# Carrier? #: lib/galleryaction.php:139 #, fuzzy msgid "Select tag to filter" @@ -7651,23 +7620,3 @@ msgstr "Could not delete favourite." #, fuzzy msgid "Duplicate notice" msgstr "Delete notice" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Create new account" - -#~ msgid "Couldn't confirm email." -#~ msgstr "Couldn’t confirm e-mail." - -#~ msgid "Email address" -#~ msgstr "E-mail address" - -#~ msgid "Error inserting notice" -#~ msgstr "Error inserting notice" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "If you’ve forgotten or lost your password, you can get a new one sent to " -#~ "the e-mail address you have stored in your account." diff --git a/locale/es/LC_MESSAGES/statusnet.mo b/locale/es/LC_MESSAGES/statusnet.mo index dffc701b44cf49a079d36087962d801c2d2ef5a9..f2534940f1267430f721a4584116794a8dbda082 100644 GIT binary patch delta 9023 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 delta 8944 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 diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 85a11f8779..c205d67104 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -1,3 +1,6 @@ +# Translation of StatusNet to Spanish +# +# -- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. @@ -5,16 +8,17 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-07-12 05:49+0000\n" -"Last-Translator: Jorge \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:58:01+0000\n" +"Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: es\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -878,7 +882,6 @@ msgstr "Actual dirección de correo electrónico confirmada" msgid "Currently" msgstr "Actualmente" -# 'Hash' existe en español (http://es.wikipedia.org/wiki/Hash) pero lo cambio por 'clave' para ser más claros - @fauno #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 #: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format @@ -4650,7 +4653,6 @@ msgstr "" msgid "Nudge sent" msgstr "Se envió zumbido" -# ¿zumbido? creo que así lo traduce msn #: actions/nudge.php:97 #, fuzzy msgid "Nudge sent!" @@ -5554,7 +5556,6 @@ msgstr "Desde" msgid "Send a direct notice" msgstr "Enviar un aviso directo" -# ¿zumbido? creo que así lo traduce msn #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -5592,17 +5593,14 @@ msgstr "Borrar este aviso" msgid "Delete" msgstr "Borrar" -# ¿zumbido? creo que así lo traduce msn #: lib/nudgeform.php:116 msgid "Nudge this user" msgstr "Enviar zumbido a este usuario" -# ¿zumbido? creo que así lo traduce msn #: lib/nudgeform.php:128 msgid "Nudge" msgstr "Zumbido " -# ¿zumbido? creo que así lo traduce msn #: lib/nudgeform.php:128 msgid "Send a nudge to this user" msgstr "Enviar zumbido a este usuario" @@ -6038,7 +6036,6 @@ msgstr "" msgid "Connect to SMS, Twitter" msgstr "Conectarse a IM, SMS, Twitter" -# ¿zumbido? creo que así lo traduce msn #: lib/action.php:671 lib/action.php:721 lib/action.php:736 #, fuzzy msgid "Badge" @@ -7765,23 +7762,3 @@ msgstr "No se pudo borrar favorito." #, fuzzy msgid "Duplicate notice" msgstr "Borrar aviso" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Crear una nueva cuenta" - -#~ msgid "Couldn't confirm email." -#~ msgstr "No se pudo confirmar el correo electrónico." - -#~ msgid "Email address" -#~ msgstr "Dirección de correo electrónico" - -#~ msgid "Error inserting notice" -#~ msgstr "Error al insertar aviso" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Si olvidaste o perdiste tu contraseña, puedes recibir una nueva en la " -#~ "dirección de correo electrónico que usaste para registrar tu cuenta." diff --git a/locale/fi/LC_MESSAGES/statusnet.mo b/locale/fi/LC_MESSAGES/statusnet.mo index 3aca83c61d5e39365ee67889ada2d21f08deaa3a..9a02d0a2a9cb6af075b768f963382d3caa6fe7b8 100644 GIT binary patch delta 9018 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 diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 992e943b9a..52a92a3052 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -1,3 +1,6 @@ +# Translation of StatusNet to Finnish +# +# -- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. @@ -5,16 +8,17 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-02-28 01:41+0000\n" -"Last-Translator: Antti Salminen \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:58:07+0000\n" +"Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fi\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -36,7 +40,6 @@ msgstr "" msgid " from " msgstr " lähteestä " -# Onko päivitys hyvä sana? #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 #: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format @@ -233,7 +236,6 @@ msgstr "" ". Tunnustus osallistujille tulee antaa joko koko nimelle tai " "käyttäjätunnukselle." -# näissä ei tueta tällä hetkellä myöskään ääkkösiä #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 @@ -457,7 +459,6 @@ msgstr "Tilaat jo!" msgid "Are you sure you want to delete this notice?" msgstr "Oletko varma että haluat poistaa tämän päivityksen?" -# "anna lupa" ehkä parempi #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 @@ -482,7 +483,6 @@ msgstr "" "Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin " "ihmiskäyttäjille)" -# Avatar ei ole laajalti käytössä minun tietääkseni missään suomenkielisessä sivustossa tai ohjelmistossa, "kuva" tai silloin kuin täsmennystä tarvitaan "profiilikuva" tai "käyttäjäkuva" on selkeämpi. #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 @@ -527,7 +527,6 @@ msgstr "Odotetaan vahvistusta tälle puhelinnumerolle." msgid "Before »" msgstr "Aiemmin »" -# Biolle ei oikein suoranaista käännöstä taida suomeksi olla (pl. elämäkerta, joka ei nyt ihan ole 140-merkkistä infokenttää vastaava), tietoja on varmaan kohtuullinen käännös. #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 @@ -702,7 +701,6 @@ msgstr "Yhdistä olemassa oleva käyttäjätunnus" msgid "Contact" msgstr "Ota yhteyttä" -# on lomake #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 #: lib/openid.php:190 #, php-format @@ -859,7 +857,6 @@ msgstr "Luo uusi käyttäjä tällä käyttäjätunnuksella." msgid "Create new account" msgstr "Luo uusi käyttäjätili" -# Koodista selviää, että tämä on virhetilanne jossa on yritetty luoda tuollaista. #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." @@ -1048,13 +1045,11 @@ msgstr "Virhe tapahtui etäprofiilin päivittämisessä" msgid "Error with confirmation code." msgstr "Virhe vahvistuskoodin kanssa." -# openid-tunnuksen liittämisessä omaan olemassaolevaan tunnukseen. #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 #: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Käytetty tunnus" -# Ei tämäkään kauheasti kerro, mutta ehkä silti englanninkielisiin sivustoihin tutustumattomalle edes lievästi selkeämpi. #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 #: lib/action.php:708 lib/action.php:723 msgid "FAQ" @@ -1065,7 +1060,6 @@ msgstr "UKK" msgid "Failed updating avatar." msgstr "Profiilikuvan päivittäminen epäonnistui." -# Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 #: actions/allrss.php:110 actions/allrss.php:118 @@ -1080,7 +1074,6 @@ msgstr "Syöte käyttäjän %s kavereille" msgid "Feed for replies to %s" msgstr "Syöte käyttäjän %s saamista vastauksista" -# tägille vai tagille? #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 #: actions/tag.php:68 #, php-format @@ -1138,7 +1131,6 @@ msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." msgid "Help" msgstr "Ohjeet" -# Tämä teksti tulee linkkiin, joka vie käyttäjän omalle sivulle. #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 #: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 #: lib/action.php:417 lib/action.php:430 @@ -1172,7 +1164,6 @@ msgstr "Kotisivun verkko-osoite ei ole toimiva." msgid "I want to post notices by email." msgstr "Haluan lähettää päivityksiä sähköpostilla." -# IM ei ole suomessa käytössä ollenkaan, pikaviestimistä puhutaan ainakin jossain... surullista kyllä ainoa suosittu termi olisi varmaan joku "mese", mutta se ei taida sentään olla yleistynyt tarkoittamaan muuta kuin MS:n tuotetta. #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 #: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" @@ -1213,7 +1204,6 @@ msgstr "" "Jos olet unohtanut tai hukannut salasanasi, voit saada uuden sähköpostiisi, " "jonka olet tallettanut käyttäjätunnuksellesi." -# Saapuva on ehkä vakiintuneempi sana kun sitä näkee kaikissa sp-ohjelmissa #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 @@ -1273,13 +1263,11 @@ msgstr "Kotisivun osoite '%s' ei kelpaa" msgid "Invalid license URL '%s'" msgstr "Lisenssin verkko-osoite '%s' ei kelpaa" -# status päivitys, päivitys, tätä ei ole vielä päätetty #: ../actions/postnotice.php:61 actions/postnotice.php:62 #: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Päivityksen sisältö ei kelpaa" -# URL ja URI ilmeisesti OMB:ssä eri asiat. #: ../actions/postnotice.php:67 actions/postnotice.php:68 #: actions/postnotice.php:72 msgid "Invalid notice uri" @@ -1376,7 +1364,6 @@ msgstr "" msgid "Language" msgstr "Kieli" -# heh #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 #: actions/profilesettings.php:217 actions/profilesettings.php:218 #: actions/profilesettings.php:234 @@ -1551,7 +1538,6 @@ msgid "New password successfully saved. You are now logged in." msgstr "" "Uusi salasana tallennettiin onnistuneesti. Olet nyt kirjautunut sisään." -# samaa stringiä käytetään sekä ryhmän nimessä, että käyttäjätunnuksessa ->"tunnus" #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 #: actions/profilesettings.php:74 actions/register.php:165 @@ -1937,7 +1923,6 @@ msgstr "Et ole kirjautunut sisään." msgid "Not subscribed!." msgstr "Ei ole tilattu!." -# Vaihtoehtoja noticelle löytyy: päivitys, nootti, status, viesti, päivitys, tilapäivitys, mikropostaus, tilaviesti, status #: ../actions/opensearch.php:35 actions/opensearch.php:35 #: actions/opensearch.php:67 msgid "Notice Search" @@ -1955,7 +1940,6 @@ msgstr "Päivityksien syöte käyttäjälle %s" msgid "Notice has no profile" msgstr "Päivitykselle ei ole profiilia" -# Notice suomennos vielä hakusessa #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 #: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 @@ -1964,7 +1948,6 @@ msgstr "Päivitykselle ei ole profiilia" msgid "Notices" msgstr "Päivitykset" -# tagi, tägätty, tagätty, tagatty, tagitetty, #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 #: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 #: actions/twitapitags.php:69 actions/apitimelinetag.php:101 @@ -2114,7 +2097,6 @@ msgstr "Etsi ihmisiä" msgid "People search" msgstr "Etsi ihmisiä" -# Tämä on otsikko käyttäjän sivun välilehdelle, jossa näkyy omat ja tilausten viestit. Omat on ehkä paremmin kuvaava, kuin henkilökohtainen. Saa kyllä muutakin ehdottaa. #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 #: lib/personalgroupnav.php:99 msgid "Personal" @@ -2214,7 +2196,6 @@ msgstr "Tuntematon profiili." msgid "Public Stream Feed" msgstr "Julkinen syöte" -# Suorakäännös voisi sopia. Tähän voisi jotain suomenkielistä termiä hakea tai ottaa tuollainen vähän erikoisempi suora käännös. #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 #: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 #: actions/public.php:120 actions/public.php:131 @@ -2232,13 +2213,11 @@ msgstr "Julkaise MicroID Jabber/GTalk-osoitteelleni." msgid "Publish a MicroID for my email address." msgstr "Julkaise MicroID sähköpostiosoitteelleni." -# Tagi, tägi,... #: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 #: actions/tag.php:76 msgid "Recent Tags" msgstr "Tuoreet tagit" -# Palautuslomakkeen toimintonappi #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -2336,7 +2315,6 @@ msgstr "" msgid "Replies" msgstr "Vastaukset" -# Kai tuo on tiettyyn päivitykseen liittyvät vastaukset. #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 @@ -2347,7 +2325,6 @@ msgstr "Vastaukset" msgid "Replies to %s" msgstr "Vastaukset käyttäjälle %s" -# Palauta, aseta uudelleen, uudelleenasetus, nollaus, tyhjää #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 #: actions/recoverpassword.php:223 actions/recoverpassword.php:240 #: actions/recoverpassword.php:243 @@ -2719,7 +2696,6 @@ msgstr "Osoite \"%s\" on vahvistettu sinun käyttäjätunnuksellesi." msgid "The address was removed." msgstr "Osoite on poistettu." -# Ilmeisesti jotain etäprofiilin tilausvirheitä nämä on. Laitoin callbackin tuohon ettei huku tietoa virheestä... #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 msgid "" @@ -2731,7 +2707,6 @@ msgstr "" "saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " "Tilauskoodisi on:" -# Etäprofiilin tilausjuttua. #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 msgid "" @@ -2807,7 +2782,6 @@ msgstr "" msgid "This method requires a POST or DELETE." msgstr "Tämä metodi edellyttää joko POST tai DELETE sanoman." -# sanoma? #: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 #: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 @@ -2914,7 +2888,6 @@ msgstr "" "Ellei toisin ilmoitettu, tämän palvelun sisältöjen tekijänoikeudet kuuluvat " "niiden kirjoittajille ja ovat saatavilla seuraavalla lisenssillä " -# formaatti/tyyppi #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 #, php-format @@ -2966,7 +2939,6 @@ msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" msgid "Updates from %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" -# tai lähetä #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -3051,7 +3023,6 @@ msgstr "Käyttäjää ei löytynyt." msgid "What timezone are you normally in?" msgstr "Missä aikavyöhykkeessä olet normaalisti?" -# Suora FB kopio. #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -3514,7 +3485,6 @@ msgstr "" msgid "If you want to add an OpenID to your account, " msgstr "Jos haluat lisätä OpenID-tunnuksen käyttäjätiliisi, " -# pitäisi olla ehkä et voi OpenID:llä kirjautua sisään. #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " msgstr "" @@ -3538,7 +3508,6 @@ msgstr "Käyttäjän %s lähetetyt viestit" msgid "This is your outbox, which lists private messages you have sent." msgstr "Tämä on postilaatikkosi, jossa on lähettämäsi yksityisviestit." -# olikos se näin aiemminkin #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" @@ -3618,7 +3587,6 @@ msgstr "Tilataksesi päivitykset, voit [kirjautua sisään](%%action.login%%)," msgid "Feed for favorites of %s" msgstr "Käyttäjän %s suosikkien syöte" -# suosikkipäivitystä? #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 #: actions/showfavorites.php:179 actions/showfavorites.php:209 @@ -3639,7 +3607,6 @@ msgstr "Vain lähettäjä ja vastaanottaja voivat lukea tämän viestin." msgid "Message to %1$s on %2$s" msgstr "Viesti käyttäjälle %1$s, %2$s" -# Ei välttämättä kovin hyvä tuo päiväysosa. #: actions/showmessage.php:66 actions/showmessage.php:113 #, php-format msgid "Message from %1$s on %2$s" @@ -3709,7 +3676,6 @@ msgstr "" msgid "%s / Favorites from %s" msgstr "%s / Käyttäjän %s suosikit" -# ensimmäinen on sivuston/palvelun nimi sorsasta päätellen. #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 #: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 #: actions/apitimelinefavorites.php:119 @@ -3850,12 +3816,10 @@ msgstr "Twitter-asetukset tallennettu." msgid "Please check these details to make sure " msgstr "Tarkista näistä tiedoista haluatko " -# koodissa jatkuu "but no callback url was passed"... #: actions/userauthorization.php:324 actions/userauthorization.php:340 msgid "The subscription has been authorized, but no " msgstr "Tilausta ei ole hyväksytty, mutta" -# koodissa jatkuu "but no callback url was passed" #: actions/userauthorization.php:334 actions/userauthorization.php:351 msgid "The subscription has been rejected, but no " msgstr "Tilaus on hylätty, mutta " @@ -4390,7 +4354,6 @@ msgstr "Lähetä kutsut" msgid "Couldn't remove Facebook user." msgstr "Facebook käyttäjää ei voitu poistaa." -# Pitää tarkistaa mitä nuo sync on! #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" msgstr "Synkronointiasetusten tallennus epäonnistui!" @@ -4455,7 +4418,6 @@ msgstr "Esittelyssä olevat käyttäjät" msgid "Featured users, page %d" msgstr "Esittelyssä olevat käyttäjät, sivu %d" -# Valikoima, joukko #: actions/featured.php:99 #, php-format msgid "A selection of some of the great users on %s" @@ -4783,7 +4745,6 @@ msgstr "" msgid "Public tag cloud" msgstr "Julkinen tagipilvi" -# ssa pääte ensimmäistä kertaa #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " @@ -4882,7 +4843,6 @@ msgstr "Ryhmän profiili" msgid "URL" msgstr "URL" -# Missähän yhteydessä tämä oikein on. pitää tarkistaa vielä #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4894,7 +4854,6 @@ msgstr "URL" msgid "Note" msgstr "Huomaa" -# Pitää tarkistaa #: actions/showgroup.php:270 actions/showgroup.php:272 #: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" @@ -5067,7 +5026,6 @@ msgstr "Tässä ovat ihmiset, joiden " msgid "Jabber" msgstr "Jabber" -# tagi, tägätty, tagätty, tagatty, tagitetty, #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" @@ -5353,7 +5311,6 @@ msgstr "Merkitse päivitys suosikkeihin" msgid "Export data" msgstr "Vie tietoja" -# Filtteröi, erota,... #: lib/galleryaction.php:121 msgid "Filter tags" msgstr "Suodata tagien perusteella" @@ -5402,7 +5359,6 @@ msgstr "" msgid "Group" msgstr "Ryhmä" -# Hallinnointi, ylläpitäjä #: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Ylläpito" @@ -5496,7 +5452,6 @@ msgstr "" msgid "You've been nudged by %s" msgstr "%s tönäisi sinua" -# joo, vähän hämärä #: lib/mail.php:465 #, php-format msgid "%1$s (%2$s) is wondering what you are up to " @@ -5594,7 +5549,6 @@ msgstr "Esittelyssä" msgid "Popular" msgstr "Suosituimmat" -# Notice suomennos vielä hakusessa #: lib/searchgroupnav.php:82 msgid "Notice" msgstr "Päivitys" @@ -5658,19 +5612,16 @@ msgstr "Poista esto" msgid "Unsubscribe from this user" msgstr "Peruuta tämän käyttäjän tilaus" -# Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. #: actions/all.php:77 actions/all.php:59 actions/all.php:99 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Syöte käyttäjän %s kavereille" -# Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. #: actions/all.php:82 actions/all.php:64 actions/all.php:107 #, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Syöte käyttäjän %s kavereille" -# Tämä on otsikko käyttäjän Personal-sivun feedille jossa näkyy käyttäjän ja tämän tilausten päivitykset. #: actions/all.php:87 actions/all.php:69 actions/all.php:115 #, fuzzy, php-format msgid "Feed for friends of %s (Atom)" @@ -5885,7 +5836,6 @@ msgstr "Päivityksien syöte käyttäjälle %s" msgid "FOAF for %s" msgstr "Käyttäjän %s lähetetyt viestit" -# Avatar ei ole laajalti käytössä minun tietääkseni missään suomenkielisessä sivustossa tai ohjelmistossa, "kuva" tai silloin kuin täsmennystä tarvitaan "profiilikuva" tai "käyttäjäkuva" on selkeämpi. #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -6413,7 +6363,6 @@ msgstr "Synkronointiasetukset tallennettiin." msgid "Make user an admin of the group" msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" -# Hallinnointi, ylläpitäjä #: actions/groupmembers.php:470 actions/groupmembers.php:473 #, fuzzy msgid "Make Admin" @@ -6748,7 +6697,6 @@ msgstr "" "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -# Hallinnointi, ylläpitäjä #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy msgid "Admins" @@ -6759,7 +6707,6 @@ msgstr "Ylläpito" msgid "Not a local notice" msgstr "Käyttäjä ei ole rekisteröitynyt tähän palveluun." -# tagi, tägätty, tagätty, tagatty, tagitetty, #: actions/showstream.php:72 #, fuzzy, php-format msgid " tagged %s" @@ -6868,7 +6815,6 @@ msgstr "Vastaanottajaa ei ole määritelty." msgid "Could not find target user." msgstr "Ei löytynyt yhtään päivitystä." -# Onko päivitys hyvä sana? #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -6985,7 +6931,6 @@ msgstr "" msgid "Change background image" msgstr "" -# tai lähetä #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -7252,7 +7197,6 @@ msgstr "Käyttäjän %s ryhmät" msgid "Groups %s is a member of on %s." msgstr "Ryhmät, joiden jäsen %s on" -# Pitää tarkistaa #: actions/apigrouplistall.php:94 #, fuzzy, php-format msgid "groups on %s" @@ -7489,7 +7433,6 @@ msgstr "" "päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " "paina \"Peruuta\"." -# Ilmeisesti jotain etäprofiilin tilausvirheitä nämä on. Laitoin callbackin tuohon ettei huku tietoa virheestä... #: actions/userauthorization.php:249 #, fuzzy msgid "" @@ -7501,7 +7444,6 @@ msgstr "" "saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " "Tilauskoodisi on:" -# Etäprofiilin tilausjuttua. #: actions/userauthorization.php:261 #, fuzzy msgid "" diff --git a/locale/fr/LC_MESSAGES/statusnet.mo b/locale/fr/LC_MESSAGES/statusnet.mo index 06a6adf0a0f3c0d8cc21a92ca82344f218fc0120..562b9dceea8ebeaa7a7b55db63bc39f3757d91bc 100644 GIT binary patch delta 26911 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 delta 24013 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 E0E(6V!vFvP diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 912bf650d6..34d50c76a7 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -1,3 +1,8 @@ +# Translation of StatusNet to French +# +# Author@translatewiki.net: IAlex +# Author@translatewiki.net: Jean-Frédéric +# -- # #-#-#-#-# statusnet-no-duplicates.po (0.43) #-#-#-#-# # French translations for StatusNet package # Traductions françaises du paquet StatusNet. @@ -16,17 +21,18 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-05-01 23:42+0000\n" -"Last-Translator: Nicolas Ritoux \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:58:13+0000\n" +"Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: fr\n" +"X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -34,7 +40,6 @@ msgstr "" msgid " Search Stream for \"%s\"" msgstr " Flux de recherche pour « %s »" -# à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 @@ -900,10 +905,6 @@ msgstr "Erreur de base de donnée en insérant le hashtag : %s" msgid "DB error inserting reply: %s" msgstr "Erreur de base de donnée en insérant la réponse :%s" -# De #-#-#-#-# statusnet-no-duplicates.po (0.43) #-#-#-#-#\n -# Nouveau message\n -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n -# à "Supprimer l'avis" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 #: actions/deletenotice.php:79 actions/deletenotice.php:111 #: actions/deletenotice.php:109 actions/deletenotice.php:141 @@ -3559,7 +3560,6 @@ msgstr "Ce code de validation est périmé." msgid "If you've forgotten or lost your" msgstr "Si vous avez oublié ou perdu votre " -# Entrez un : masculin ou féminin ? De quoi s'agit-il ? Contexte ? #: actions/recoverpassword.php:154 actions/recoverpassword.php:158 msgid "You've been identified. Enter a " msgstr "Vous avez été identifié(e) avec succès. Entrez un " @@ -3841,17 +3841,13 @@ msgstr "Préférences Twitter enregistrées avec succès." msgid "Please check these details to make sure " msgstr "Veuillez vérifier ces informations pour vous assurer que " -# we are missing context here #: actions/userauthorization.php:324 actions/userauthorization.php:340 -#, fuzzy msgid "The subscription has been authorized, but no " -msgstr "L'abonnement a été autorisé, mais pas " +msgstr "L’abonnement a été autorisé, mais pas " -# missing context #: actions/userauthorization.php:334 actions/userauthorization.php:351 -#, fuzzy msgid "The subscription has been rejected, but no " -msgstr "L'abonnement a été refusé, mais pas " +msgstr "L’abonnement a été refusé, mais pas " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 #: lib/channel.php:138 lib/channel.php:158 @@ -3942,7 +3938,6 @@ msgstr "Une erreur est survenue pendant l'envoi de votre message." msgid "Specify the name of the user to subscribe to" msgstr "Indiquez le nom de l'utilisateur auquel vous souhaitez vous abonner " -# could it be plural? #: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 #: lib/command.php:300 lib/command.php:502 #, php-format @@ -4285,7 +4280,6 @@ msgstr "Vos options ont été enregistrées." msgid "Awaiting confirmation on this address. " msgstr "En attente de confirmation de cette adresse." -# using the infinitive form here? #: actions/emailsettings.php:139 actions/smssettings.php:150 msgid "Make a new email address for posting to; " msgstr "Créer une nouvelle adresse courriel pour publier vos statuts ; " @@ -4299,11 +4293,9 @@ msgstr "Envoyez-moi un courriel quand quelqu'un " msgid "Allow friends to nudge me and send me an email." msgstr "Autoriser mes amis à m'envoyer des courriels et des clins d'oeil." -# Missing context #: actions/emailsettings.php:321 -#, fuzzy msgid "That email address already belongs " -msgstr "Cette adresse courriel appartient déjà " +msgstr "Cette adresse électronique appartient déjà " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " @@ -4324,18 +4316,15 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "Autoriser %s à mettre à jour mon statut dans Facebook" -# context??? #: actions/facebookhome.php:218 actions/facebookhome.php:223 #: actions/facebookhome.php:217 msgid "Skip" msgstr "Sauter" -# i originally put 'aucun statut!' here, but the original translation seems better #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 -#, fuzzy msgid "No notice content!" -msgstr "Statut sans contenu!" +msgstr "Statut sans contenu !" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 #: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 @@ -4519,7 +4508,6 @@ msgstr "Groupes" msgid "Groups, page %d" msgstr "Groupes - page %d" -# missing context #: actions/groups.php:90 #, php-format msgid "%%%%site.name%%%% groups let you find and talk with " @@ -4543,13 +4531,10 @@ msgstr "" msgid "Group search" msgstr "Rechercher des groupes" -# missing context #: actions/imsettings.php:70 -#, fuzzy msgid "You can send and receive notices through " msgstr "Vous pouvez publier et lire les statuts via " -# missing context #: actions/imsettings.php:120 #, php-format msgid "Jabber or GTalk address, " @@ -4734,13 +4719,11 @@ msgstr "Modification du mot de passe" msgid "Not a valid people tag: %s" msgstr "Ce marquage est invalide : %s" -# can it be plural? #: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Utilisateurs marqués &s - page %d" -# can it be plural? #: actions/peopletag.php:91 #, php-format msgid "These are users who have tagged themselves \"%s\" " @@ -4757,11 +4740,9 @@ msgid "" msgstr "" "Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" -# missing context #: actions/profilesettings.php:144 -#, fuzzy msgid "Automatically subscribe to whoever " -msgstr "M'abonner automatiquement à quiconque " +msgstr "M’abonner automatiquement à quiconque " #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 @@ -4816,49 +4797,40 @@ msgstr "Marquages " msgid "Sorry, only invited people can register." msgstr "Désolé ! Seules les personnes invitées peuvent s'inscrire." -# missing context #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Vous ne pouvez pas créer un compte si vous ne " -# missing context #: actions/register.php:286 #, fuzzy msgid "With this form you can create " msgstr "Ce formulaire permet de créer " -# missing context #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " msgstr "1 à 64 lettres minuscules ou chiffres, " -# missing context #: actions/register.php:382 actions/register.php:386 #, fuzzy msgid "Used only for updates, announcements, " msgstr "Utilisé seulement pour les mises à jour, nouvelles du site, " -# missing context #: actions/register.php:398 -#, fuzzy msgid "URL of your homepage, blog, " msgstr "URL de votre site Web, blogue, " -# missing context #: actions/register.php:404 #, fuzzy msgid "Describe yourself and your " msgstr "Décrivez qui vous êtes et vos " -# missing context #: actions/register.php:410 #, fuzzy msgid "Where you are, like \"City, " msgstr "Votre emplacement, ex.: \"Ville, " -# missing context #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " @@ -4869,7 +4841,6 @@ msgstr " à l'exception de ces données personnelles : mot de passe, " msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " msgstr "Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. " -# missing context #: actions/register.php:495 #, fuzzy msgid "(You should receive a message by email " @@ -4967,9 +4938,7 @@ msgstr "" "**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." "wikipedia.org/wiki/Microblog) %%%%site.name%%%%" -# is there another part to this sentence? #: actions/showmessage.php:98 -#, fuzzy msgid "Only the sender and recipient " msgstr "Expéditeur et destinataire seulement " @@ -4978,7 +4947,6 @@ msgstr "Expéditeur et destinataire seulement " msgid "%s, page %d" msgstr "%s - page %d" -# missing context #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -5028,13 +4996,10 @@ msgstr "" "**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" "wiki/Microblog) %%%%site.name%%%%" -# missing context #: actions/smssettings.php:128 -#, fuzzy msgid "Phone number, no punctuation or spaces, " msgstr "Numéro de téléphone, sans ponctuation ni espace, " -# missing context #: actions/smssettings.php:162 #, fuzzy msgid "Send me notices through SMS; " @@ -5061,11 +5026,9 @@ msgstr "Impossible d'enregistrer l'abonnement." msgid "Not a local user." msgstr "Ceci n'est pas un utilisateur local." -# missing context? #: actions/subscribe.php:69 -#, fuzzy msgid "Subscribed" -msgstr "Abonné" +msgstr "Souscrit" #: actions/subscribers.php:50 #, php-format @@ -5077,13 +5040,11 @@ msgstr "Abonnés à %s" msgid "%s subscribers, page %d" msgstr "Abonnés à %s - page &d" -# missing context #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Ces personnes suivent " -# missing context #: actions/subscribers.php:67 #, php-format msgid "These are the people who " @@ -5099,13 +5060,11 @@ msgstr "Abonnements de %s" msgid "%s subscriptions, page %d" msgstr "Abonnements de %s - page %d" -# missing context #: actions/subscriptions.php:65 #, fuzzy msgid "These are the people whose notices " msgstr "Voici les personnes dont les messages " -# missing context #: actions/subscriptions.php:69 #, php-format msgid "These are the people whose " @@ -5303,7 +5262,6 @@ msgstr "Rechercher des personnes ou du texte" msgid "Account" msgstr "Compte" -# missing context #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" @@ -5341,7 +5299,6 @@ msgstr "Notice du site" msgid "Local views" msgstr "Vues locales" -# missing context? #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5383,12 +5340,10 @@ msgstr "Retirer des favoris" msgid "To use the %s Facebook Application you need to login " msgstr "Vous devez ouvrir une session pour utiliser l'application Facebook %s" -# missing context? #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 -#, fuzzy msgid " a new account." -msgstr " un nouveau compte." +msgstr " un nouveau compte." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 #: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 @@ -5404,11 +5359,9 @@ msgstr "Ajouter aux favoris" msgid "Export data" msgstr "Exporter les données" -# étiquettes ou marquages? #: lib/galleryaction.php:121 -#, fuzzy msgid "Filter tags" -msgstr "Filtrer les étiquettes" +msgstr "Filtrer les balises" #: lib/galleryaction.php:131 msgid "All" @@ -5483,7 +5436,6 @@ msgstr "Groupes avec le plus d'éléments publiés" msgid "Tags in %s group's notices" msgstr "Marquages des statuts du groupe %s" -# missing context #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -5518,7 +5470,6 @@ msgstr "" "Bonjour, %s.\n" "\n" -# missing context #: lib/mail.php:236 #, php-format msgid "%1$s is now listening to " @@ -5563,10 +5514,6 @@ msgstr "%1$s a ajouté votre statut depuis %2$s" msgid "From" msgstr "De" -# De #-#-#-#-# statusnet-no-duplicates.po (0.43) #-#-#-#-#\n -# Nouveau message\n -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n -# à "Supprimer l'avis" #: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Envoyer un message direct" @@ -5595,20 +5542,12 @@ msgstr "Répondre à ce statut" msgid "Reply" msgstr "Répondre" -# De #-#-#-#-# statusnet-no-duplicates.po (0.43) #-#-#-#-#\n -# Nouveau message\n -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n -# à "Supprimer l'avis" #: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 #: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 #: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Supprimer ce statut" -# De #-#-#-#-# statusnet-no-duplicates.po (0.43) #-#-#-#-#\n -# Nouveau message\n -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n -# à "Supprimer l'avis" #: lib/noticelist.php:474 actions/avatarsettings.php:148 #: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" @@ -5721,24 +5660,23 @@ msgid "Unsubscribe from this user" msgstr "Ne plus suivre cet utilisateur" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Flux des amis de %s" +msgstr "Flux pour les amis de %s (RSS 1.0)" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Flux des amis de %s" +msgstr "Flux pour les amis de %s (RSS 2.0)" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Atom)" -msgstr "Flux des amis de %s" +msgstr "Flux pour les amis de %s (Atom)" #: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy msgid "You and friends" -msgstr "%s et ses amis" +msgstr "Vous et vos amis" #: actions/avatarsettings.php:78 #, fuzzy, php-format @@ -5746,9 +5684,8 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Vous pouvez associer un « avatar » (image personnelle) à votre profil." #: actions/avatarsettings.php:373 -#, fuzzy msgid "Avatar deleted." -msgstr "Avatar mis à jour." +msgstr "Avatar supprimé." #: actions/block.php:129 actions/block.php:136 msgid "" @@ -5756,6 +5693,9 @@ msgid "" "unsubscribed from you, unable to subscribe to you in the future, and you " "will not be notified of any @-replies from them." msgstr "" +"Êtes-vous certain de vouloir bloquer cet utilisateur ? Après cela, il ne " +"sera plus abonné à votre compte, ne pourra plus s’y abonner de nouveau, et " +"vous ne serez pas informé des @-réponses de sa part." #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy @@ -5784,6 +5724,8 @@ msgid "" "If you would like the %s app to automatically update your Facebook status " "with your latest notice, you need to give it permission." msgstr "" +"Si vous souhaitez que l’application %s mette automatiquement à jour votre " +"statut Facebook avec votre dernier message, vous devez lui donner ce droit." #: actions/facebookhome.php:217 actions/facebookhome.php:211 #, php-format @@ -5796,6 +5738,8 @@ msgid "" "If you would like %s to automatically update your Facebook status with your " "latest notice, you need to give it permission." msgstr "" +"Si vous souhaitez que %s mette automatiquement à jour votre statut Facebook " +"avec votre dernier message, vous devez lui donner ce droit." #: actions/grouplogo.php:155 actions/grouplogo.php:150 #, fuzzy, php-format @@ -5834,9 +5778,8 @@ msgid "" msgstr "" #: actions/newmessage.php:102 -#, fuzzy msgid "Only logged-in users can send direct messages." -msgstr "Une erreur est survenue pendant l'envoi de votre message." +msgstr "Seuls les utilisateurs connectés peuvent envoyer des messages directs." #: actions/noticesearch.php:91 #, fuzzy, php-format @@ -5875,6 +5818,11 @@ msgid "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" +"Vous êtes sur %%site.name%% un service de [microblog] (http://fr.wikipedia." +"org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://status." +"net/). [Inscrivez-vous](%%action.register%%) pour partager des messages sur " +"vous avec vos amis, famille et collègues ! ([Plus d’informations](%%doc.help%" +"%))" #: actions/register.php:286 actions/register.php:329 #, php-format @@ -5886,9 +5834,8 @@ msgstr "" #: actions/register.php:432 actions/register.php:479 actions/register.php:489 msgid "Creative Commons Attribution 3.0" -msgstr "" +msgstr "Creative Commons Paternité 3.0" -# à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy msgid "" @@ -5900,9 +5847,8 @@ msgstr "" #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 -#, fuzzy msgid "Created" -msgstr "Créer" +msgstr "Créé" #: actions/showgroup.php:393 actions/showgroup.php:440 #: actions/showgroup.php:448 @@ -5916,15 +5862,13 @@ msgid "" msgstr "" #: actions/showstream.php:147 -#, fuzzy msgid "Your profile" -msgstr "Profil du groupe" +msgstr "Votre profil" -# missing context #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format msgid "%s's profile" -msgstr " - Profil" +msgstr "Profil de %s" #: actions/showstream.php:163 actions/showstream.php:128 #, fuzzy, php-format @@ -5961,7 +5905,7 @@ msgstr "Paramètres du profil" #: actions/showstream.php:317 actions/showstream.php:282 #: actions/showstream.php:367 msgid "Edit" -msgstr "" +msgstr "Modifier" #: actions/showstream.php:542 actions/showstream.php:388 #: actions/showstream.php:487 @@ -5999,6 +5943,19 @@ msgid "" "Faithfully yours,\n" "%5$s\n" msgstr "" +"%1$s vient de marquer votre message de %2$s comme un de ses favoris.\n" +"\n" +"Dans le cas où vous l’auriez oublié, vous pouvez lire le texte de votre " +"message ici :\n" +"\n" +"%3$s\n" +"\n" +"Vous pouvez consulter la liste des favoris de %1$s ici :\n" +"\n" +"%4$s\n" +"\n" +"Cordialement,\n" +"%5$s\n" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -6009,9 +5966,8 @@ msgstr "" #: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 #: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#, fuzzy msgid "No such user!" -msgstr "Utilisateur inexistant" +msgstr "Aucun utilisateur n'a été trouvé !" #: actions/twittersettings.php:72 #, fuzzy @@ -6070,6 +6026,9 @@ msgid "" "Subscribers: %2$s\n" "Notices: %3$s" msgstr "" +"Abonnements : %1$s\n" +"Abonnés : %2$s\n" +"Messages : %3$s" #: lib/command.php:392 lib/command.php:385 msgid "" @@ -6103,7 +6062,7 @@ msgstr "" #: lib/dberroraction.php:60 msgid "Database error" -msgstr "" +msgstr "Erreur de la base de données" #: lib/facebookaction.php:271 lib/facebookaction.php:273 #, fuzzy, php-format @@ -6114,15 +6073,15 @@ msgstr "Vous devez ouvrir une session pour utiliser l'application Facebook %s" #: lib/feed.php:85 msgid "RSS 1.0" -msgstr "" +msgstr "RSS 1.0" #: lib/feed.php:87 msgid "RSS 2.0" -msgstr "" +msgstr "RSS 2.0" #: lib/feed.php:89 msgid "Atom" -msgstr "" +msgstr "Atom" #: lib/feed.php:91 msgid "FOAF" @@ -6131,7 +6090,7 @@ msgstr "" #: lib/imagefile.php:75 #, php-format msgid "That file is too big. The maximum file size is %d." -msgstr "" +msgstr "Ce fichier est trop lourd. La taille maximale est %d." #: lib/mail.php:175 lib/mail.php:174 #, php-format @@ -6149,6 +6108,19 @@ msgid "" "Thanks for your time, \n" "%s\n" msgstr "" +"Bonjour %s.\n" +"\n" +"Quelqu’un vient d’utiliser cette adresse électronique sur %s.\n" +"\n" +"S’il s’agit bien de vous, et que vous souhaitez confirmer cette adresse, " +"utilisez le lien qui suit :\n" +"\n" +"%s\n" +"\n" +"Dans le cas contraire, il vous suffit d’ignorer ce message.\n" +"\n" +"Merci de votre attention,\n" +"%s\n" #: lib/mail.php:241 lib/mail.php:240 #, fuzzy, php-format @@ -6239,9 +6211,8 @@ msgid "" msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy msgid "Search site" -msgstr "Rechercher" +msgstr "Rechercher sur le site" #: lib/section.php:106 msgid "More..." @@ -6276,9 +6247,8 @@ msgid "" msgstr "" #: actions/attachment.php:73 -#, fuzzy msgid "No such attachment." -msgstr "Document non trouvé. " +msgstr "Pièce jointe non trouvée." #: actions/block.php:149 #, fuzzy @@ -6376,13 +6346,12 @@ msgid "No notice id" msgstr "Nouveau statut" #: actions/file.php:38 -#, fuzzy msgid "No notice" -msgstr "Nouveau statut" +msgstr "Aucun avis" #: actions/file.php:42 msgid "No attachments" -msgstr "" +msgstr "Aucune pièce jointe" #: actions/file.php:51 msgid "No uploaded attachments" @@ -6886,7 +6855,6 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" -# missing context #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 #, fuzzy, php-format @@ -7390,7 +7358,6 @@ msgstr "Fichier perdu." msgid "Updates from members of %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" -# missing context #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." @@ -7434,7 +7401,6 @@ msgstr "" msgid "Describe yourself and your interests in %d chars" msgstr "Décrivez vos intérêts en 140 caractères" -# missing context #: actions/profilesettings.php:125 actions/register.php:457 #, fuzzy msgid "Describe yourself and your interests" @@ -7520,7 +7486,6 @@ msgstr "Groupe %s" msgid "Notice deleted." msgstr "Statut publié" -# missing context #: actions/smssettings.php:91 #, fuzzy msgid "SMS is not available." @@ -7790,27 +7755,7 @@ msgstr "" msgid "Could not determine file's mime-type!" msgstr "Impossible de supprimer le favori." -# De #-#-#-#-# statusnet-no-duplicates.po (0.43) #-#-#-#-#\n -# Nouveau message\n -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n -# à "Supprimer l'avis" #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Supprimer ce statut" - -#~ msgid "" -#~ "It runs the [StatusNet](http://status.net/) microblogging software, " -#~ "version %s, available under the [GNU Affero General Public License] " -#~ "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#~ msgstr "" -#~ "Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), " -#~ "version %s, disponible sous la licence [GNU Affero General Public " -#~ "License] (http://www.fsf.org/licensing/licenses/agpl-3.0.html)." - -#~ msgid "Unsupported type" -#~ msgstr "Type non supporté" - -#, fuzzy -#~ msgid "not a supported data format" -#~ msgstr "pas un format de données supporté" diff --git a/locale/ga/LC_MESSAGES/statusnet.mo b/locale/ga/LC_MESSAGES/statusnet.mo index bcf01b04df49748b292b9ff0240204a4627b9478..b510569de929dacc3cf58824dec7deb4b3105f86 100644 GIT binary patch delta 8363 zcmY+|d7O{s{>SnA#$d)i#2m?d!x-C_8T*WFj7Ae?$TF5A489mKgBkmBqm*PlluG>& zhvKJ_3@x0ZJd~2uIh}B{9mi1Gyd2{PVm%*S%cV^|_Y&YmU8Be$Aos zugr@NUi3Y0Zi(mJ<#}GhMbE2_J#ab>G(RxYE_q%B>Wi@s9>hxcHw@!9xEHJc=;9+- zhxcE>lhjxK$@3cEmu8vEUf?yRBH^;}JSDlrvd0v0w_U2>Qh4_qF z_h;9@5VQF&p4WlvzoI(Y{<`aUHpUU>SX^*Da5v1Pq8b-g*$o>}BinDji^|LitchQn zS5cXZzTr$nbvy&r@D!_Gij|4CnR~D{@!NqFKF3;AT*MHTz3FafWOg$9qwdQ?rE&q5 z$Ia#o*opXM^Lw04oOsLb!)e4XpfVoZdE4_EGDlhF)L&iv#Ba{mJ>R>B8~@?^USDib z#yJiDNPGzI!1`r|~-8dYTnFY8SpEbkfd~YZ5L2O6+-oz;1+d;)9vv+ylt4n+h z>tl@yz88f_7>(^wi!jaVGcC@>KTw~8dVUIOsvgHdxDnUmRf|_t^u3C-?|n-ll?x>p zgNf08>0GtO4B~F64lFSr$5`Sus5#w=n#}!q9;&mWhbfw zuVSE79kGh9kvZ|M;yP?z&G!!A+o<{l)s-^Od(Aw6Wr>fVI{Jb6vt4gg!!O-6VY4gV z$$fn-ez1lgl)i8t6C@qbX~L`tmhHNsJ-jx53UxDs3Adzgg3pi&)zAuA z&hwr!x5T-{`%*o(cJ`y5I~G{s9M+@aH_XI(cR3?i#EJM4YQzmgE>kVADRDNcewMii z_2OmN6}O`9`xcdvDt9|um_cs}O8rE0IkqBx3DuFa*b);P_@xI<4t64*jU90>>iLTn zS8wR*??cruMs;AT)gL!2G%DRaftN->4Q63;oR6Br7f~nNDb$N@TO6O@mmaa{sFY7e zb>tz`{coY(_a$lo)f&6)Jp`4JwWtA|#75fxexiG@F{%Uip*k=f)$?tr)qMg(cpJ6d z>NjyGTt71(wK$ifK0doq4P8KWEUu}u6RMpN7^VHcj6!u>jaucKEk0^~fjWS`Lv6z! zQTxAfGv8~AeNYW8!Y23%YM+0B4e=|~K*}|DYo#StCGLQM3Oy;L;UM!#^K&zf}3(T68~Q2rGx(Vh*F~dzoXgGVuZ|J(|Ppe-$=Tp*h}z8o^&N7k@={ za8ye-q5{-*oPm0773wJ7V)exsPy8|J<8ui$6;)cf`!lc^@lezhKHQ4^uLp{$(1`wq zN>y}{n~FB5xf+IA1CLn!9@L^cg_`r4$?keb)D%X{<)|szgBsw!Q5}eB?b>MPLm9p*t)W=@*Hk5;JK)?H|U z`X=-;Bj!SL18OxFqo(2uR0e*+8d#^DoBO7y>pjhps7%blS-8u|@4xnL1RGI{YddOg z_M%>R9?Rf$)LOWO%1osW?g$Q{c1M!g9zP=PjLJ+*M|WQ=>RZtOm8qenvi~Mi(A+FS zHM9lQ&^FWovlo@JW0->%unnfA_}+LdLT$4%I3K-K=K|D#ZlT^2)5&Engw=?9U=!{C z0Tk50Jk*PxK^;H`aU5Pkr81|pOKkya3YMeJ^p{c3A4g4H3F_-sp^LL2>i%x1%#KD4 zU>ye9K1V62fzzlPub^I3r>k4lt<90BlrG1?xDNGP3F`i+Zoc;(hEVtY3zhPVsGnX5 zX>LjnU`67O)7byoR)42LCstHfutKDU~Cp?fl;v@$=^Es5w4ier^7Qnbeo<>)Ppqf#xiif*KfW&O!BfHEM*fp?+|jM1389 zK}}7Aer~EVP}lQOi*=p(l3hQFovHs1YSp*A-~Eqh#{KO7Zd4Rgp^wNlR7dXY?-o}w zYA&&2 z_6(MG6tx>F4t8-5R6`G-Iy%-YMD2>js3}~9bU5&~QYbx{P!D{9n)9zvBPl^W5E|mP zPdjrAYB8=c-$dPa4z*}+U=+p;bs4IUdVex%plMh|`@bIr9V{d4!Z_?nJi|PITAbyE z`QBD+Y92QW|LC5N8}7DU$V|r8+@EgobW{c&L9LawSi1jrP*BPapho^Ks=*WHRaA=W zKH%;fgqri=sLyW!YKoRx{H(=$QSW^p^|?KPT7+Mi*Dz2;%@OWGl9`2CloQRxsBQWT z>Z5ZC^}<>s-I}-y)uHC7Mc5VfBXksMkxfKRiKP`-}^^VQ*qh6f$F#)jPbob6l&ly z9D({KT(J7Qv97)t^@8pZx4JV?@i^2JPDX9VW#(49eh`)F_pk|;pmxC>Z?dE9yT({URzi!PyRn6OXg_F!m$9g4%5vd8Hi* zyetap`Eb;BnSmPFi>R;IE2t5^gE}Y9qCPekP-~~!MAv}?)Oj!nJ7R#Eg8kS5Pod6( z*azMBKMp%7*L^8yF+7esIG#o|w9o1fVVL-Y#lNB!U*$>exjRr9Y=~N9NvJiEY1c=h zIyxD(3m!tiEvkVb zsF6O3+RkrU{V8lu96i;wmo}CCe?JwuRLDJ;g;CR-1I*2+2QQ&cy2gbrPDRC2QEO)j zszdwnD1K?aP~_Ik)akyrf%^4kn;Go?bSgfc;f$T>9ArLao<{BK`m>z9%o(Wt{k+8= zp-#x_W}DeAo{USV-;SE<@ErG>voN60or*tW7d(%PFkvn!^?ATNHqZCop#IW)_viN= z3w*CP@eR~e^kg7fy!qyGRO)wN8oqDFEOhtv#{Sd?c@(r7-?9tuBkg+UQ7ONG|HRND zxA>wK``$3(;pRTnevW;}ExNj>-v`aHHg>_fIMC_~P-|$ByB>Idrf@eEZ=r5Hi~9Oq zx48bpzL!m$f;wWCVj4bYo;Bl_xc{h(LS=F*YHGhR6CQE#1k_sDSt|SgECqdbYdq>k za2G0dEzK-c2PdKCdL^nOuiN$Gs44gXXX719-3V8q_Wd4IM&3uAGp8-SfOTo#yGcQd ztM+5gbkzRMM>QCrQnmwI;Bkv@n(@ork=z4y-$SUAZaZGbT^LgQxO@Lm)b%SEXxrVO zFc|wRcd6cLUPjGr`U+<+)W@SgCSk7mC)B}p7&YP#QRl}usH45iN>^VGwMbiA+;1iO zU#S^Kg;F{T^}q_$NVcOga18Y^xrRDm2CQd))`6V5KEeL5Spnm@#LSnWyQ8-N+87e0+E@ep># z``7#41YC)Ve>U4b<<`JdOrbt_&I+HSUR2|0_t8j2rG7B(!o{c&COzYRg7rnMfzjq# z>`wfyS$>0yGtFh@hi27heeW^a_xe%L_Bw^Bc+2eYoNH(rDpgBRKe;xb7STS`{eMMG zRrUXI=SKo+#A!GW=bJZByK3e}ci=58mHqbw1+D7m?ZR%Yi~{loEB F{|j=ofvW%j delta 8293 zcmXZhdwkDz|Htvqci3h*^K**!Er-ovvn_|&#+c)1M9k%wFV-w}FsC_wM8uMk(?UP_ zDVGiomqT@3U8typRJ&Cdek8Z9(j|ma5xE}Ey>)Q^ZmTv@7MeA`HYqChaY<{ zeAnD)e|*66=3Mf;rk>}WyX<+j@D5JL8dsc8nzt~5`l6pauK||eJ@_2P;YQqtM=f4( zmHT-94lJks!)u=R0KRbD`OoW~@3o}j92JQe{HyJ0wLWX0xuRAx%C zE^aV)qB3{LJdf)5T~vlz-*VS8up04LGau^{&-Sgb66;a14THGf>c2K`nAQGp_ccSM zG8w~hq&W^#iSx`?a2D}-thnzsgCZV>%DDd}g=WlA#2sgwKb-^bI;VO8uO~OI3k1A@ zc*blS7Vt(A&&B`2lNf_n@P4dcDNvD_WPFY|+q{6U6PHvDcpYfpYhESby+*|dvr2ft zYfQWg@55tQ1utS%yo#E;TUH+y;o?YaM13vP?^~m$suvE$;kXWWTHGfx;6>8D_acQ9 zE^NgpJdc{IOV|r{LDA4aYq55URdu4L3ytQEMOv zm6^%tD^&}uVgoWK-cDSN-{F3oUDMSk*HX$nufUv%m53Lh2Joc$H@p5dYS&yaf5&@? ztJZe)Eouk+iU)S2LW?FHHNud^%dije>!@?$XKap*>$r}jV@Kk?n1nti;BHjvzePPS ztgf5d)~JzpKy@UuuJ0;x?7}Sb8FMr0z}Sa+&PYg-zImioauD{K|}O8t|rZB2Gl5{%o|%)c4qmI5Oz!lgw1q zgL`6E9D};=MN~#UGQT(dD)+kwHaB}?J8qna>PQ*J<9XD9Q|p01#R2mmCKDH;rf!?X zN6kvjTzwj<17lG4FE!soc8~AfqM!yNng_f#*a}^!aV_LWe zcR}4h1NFQYPy_fFwY}@KbQ#G)4QM$w*ZzNpf`0f7ssoi`TnE~rdOjAlx=S&LZ=tr; zNz~aN73+*eEzaJkm(L_rLt9YKFE?+X+G*H|^F;f~Hhzwp`)}>K*TLP_2$hK>EWuo-?|nldf{NiC-Qo(N zwpStQftxW5_n_9oo2blufHmG0$&&pSLqT(s zifU*ys-dx{1Evs_vc;H3OIQE=5h&b>bz}dlf#<2viFFV)mmi`In&YTHEKZ}gXJmIbHK}Gl)B}g3QaTCsyg8^0 zZnO9l?j{b;aQ+>6JA0FRu>Z9fru1+Xi&1l1iW<=YR4PxQ9()6P-~&Bf1COEZTZh$f zw|US!Zr4wlzhDFItJ%wa*u?l&C`3)gTjo(z!)H-P>rK?u)a~t3*%3PvpFoWyvXARv zbu$IkppH&WN{Z=_ObeYsFO7p)$ylLi}f|sV*S|Zdlx9Er&ap7xvYbF2Q)|hFbmaS5o%E_L3MNm zD)swNBm4|CqB9mp^>-t#k9z+77RRH`fzH@M`@e{Sw#8a(i$_om-#~50h7UQ@Fot+6 zrr=W4NDiSoa^Ad+YOq0;JE)qYp3@oC!O^IUJ&kp=|2L?BJ5VRvd#E}33iW!ufXcw1 zsDr8A09W4(b#SFvJj$Gk`hBUn!F&VzQokS7PWV9fzvk>-3Tog!vpuTE{ZJz;z!tb1 z_14;r%Fr3qRNb}fu@Ae&I>4NWy1o$8@OA8iKVUj03}XMQP&CNBM0TM%@+Ime@*`?) zBL_R{p?V%fZQBlJChGhcZB9U)3zJZ(o`>3Y&zP^6`vT~^xNKH=#ML)7JD6E! zjycaOv5EV}dyo^@Vc) zU&e3Er6XJ%H`4vS9JTFEn?GU_@okISjdB_2hFU9GSh4>nP*BQdqDDR+)nKW)6P4mG zQ1{gw?M74|_4;jvnxYJgvn?(}-MLaxAqi&HkM@?l4s=feQV#%ZIf33nzROo^GP^xxR!yJL?cyY*gg#}dT#uav<3^kIi zR(}N5(Q>SWKcHUEmr!#VInFJvqFk zR0?Asb3e>M&HZxhj>j#ok?ZOQU_0tpU;-X6f5K73!HKSZ9zIOG10(P*(h=W_$a6if zkJ>H?sF99GZKuakBbx`O$V(f&gQRl&N?1<%< zs$5r{EvPanszIX)`_GZJ>UTd3iefKZA;8Gn~iGnloKI*j$6!*C)-&B`!`t?e9?*KZQCW z_n4Q>m{|dDG4&zTR9`@SbH@3z-L`rZyHK$ipTKk2EWi)uI2X?ic>kdO)p_op;U~-w zc>Rg@qNc)QAey>Zvo|XB6R;aDG7sDJDhmP?|D)nJqoCC|1NDGKNW0! zJruCXAcmfH?JPu{6Fbn?_S;Kg z7=|x*sUBl)N6qbRv+^_UQ0K)))Jy4~R{s@hja{-hY6bgW zsR^!dDNRECpbu)qAymp2qh2PvPzOo%XWf@i8tTX$irV-2sMqRh)RFzNS&p9*d(Sz` zQ6IN2uVg!@@X<=w;6)50uJOFE38C4=ospy@e3;TwO$jf|2p@gc2(jgci?4I$o?Bhp#~R5*@a1{IWIx&*C#OwpEqB$`faFH|0e3g zqiyKlLDwsMsG_9~WC72Z|o_1(^ zK`{H!=GjxG=gbcF2#pIBgr)}5a;A67=VD&Lj8Mgu_=22iU3ox3?(|S@PTY{3P<~3V zPiS)9_`Fa7w-JKCTy{=W@zlJ+f|Oule8Q@Rm$Pg1&j^jnnM|0N T7~ei>U7wsl^qwA9PVD|KKmlhH diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index f9da265495..9a8340023c 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -1,20 +1,23 @@ -# translation of statusnet.po to Galician +# Translation of StatusNet to Irish +# +# -- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Francisco Diéguez , 2008. msgid "" msgstr "" -"Project-Id-Version: laconica-new\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2008-12-17 20:10+0100\n" -"Last-Translator: Martín Vázquez Cabanas \n" -"Language-Team: Galician \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:58:19+0000\n" +"Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ga\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -7922,105 +7925,3 @@ msgstr "Non se puido eliminar o favorito." #, fuzzy msgid "Duplicate notice" msgstr "Eliminar chío" - -#~ msgid "Code not yet ready." -#~ msgstr "Código non implementado." - -#~ msgid "Export and delete your user information." -#~ msgstr "Exportar e eliminar a túa información de usuario." - -#~ msgid "Delete my account" -#~ msgstr "Borrar a miña conta" - -#~ msgid "Delete my account confirmation" -#~ msgstr "Confirmación de borrado da miña conta" - -#~ msgid "Check if you are sure you want to delete your account." -#~ msgstr "Estas seguro que queres eliminar a tua conta?" - -#~ msgid "Showing recently popular notices" -#~ msgstr "Amosando chíos populares recentes" - -#~ msgid "Send me notices from public timeline through Jabber/GTalk." -#~ msgstr "" -#~ "Enviarme os chíos da liña de tempo pública a través de Jabber/GTalk." - -#~ msgid "you can also login using OpenID" -#~ msgstr "tamén te podes rexistrar cunha conta OpenID" - -#~ msgid "Embedded" -#~ msgstr "Embebida" - -#~ msgid "Embedded %1s" -#~ msgstr "%1s embebida" - -#~ msgid "WP" -#~ msgstr "WP" - -#~ msgid "Theme" -#~ msgstr "Tema" - -#~ msgid "Preferred theme" -#~ msgstr "Tema preferido" - -#~ msgid "" -#~ "You can post on %1s sending an sms to %2s in the followin format: '%3s'" -#~ msgstr "" -#~ "Podes publicar chíos en %1s enviando un SMS a %2s co seguinte formato: '%" -#~ "3s'" - -#~ msgid "SMS Post Settings" -#~ msgstr "Configuracións de envio por SMS" - -#~ msgid "The address was added." -#~ msgstr "Enderezo engadido." - -#~ msgid "Tag a person" -#~ msgstr "Etiquetar a unha persoa" - -#~ msgid "Showing all tags" -#~ msgstr "Amosando tódalas etiquetas" - -#~ msgid "Users list" -#~ msgstr "Lista de usuarios" - -#~ msgid "Icons" -#~ msgstr "Iconos" - -#~ msgid "SMS Post" -#~ msgstr "Envío por SMS" - -#~ msgid "%1s in your blog" -#~ msgstr "%1s no teu blogue" - -#~ msgid "WordPress Plugin" -#~ msgstr "Plugin WordPress" - -#~ msgid "Graphics and statistics about the state of %1s" -#~ msgstr "Gráficos e estatísticas sobre o estado de %1s" - -#~ msgid "Unexpected error" -#~ msgstr "Erro inesperado" - -#~ msgid "No such phone" -#~ msgstr "Non existe o telefono" - -#~ msgid "Missing message" -#~ msgstr "Falta a mensaxe" - -#~ msgid "Notice published correctly" -#~ msgstr "Chío publicado correctamente" - -#~ msgid "" -#~ "If you want to have your notices on your Wordpress, then follow the " -#~ "instructions" -#~ msgstr "Se queres ter os teus chios no teu Wordpress, sigue as instruccións" - -#~ msgid "%1s on your Wordpress" -#~ msgstr "%1s no teu Wordpress" - -#~ msgid "" -#~ "If you want to have your notices on your blog/website, then follow the " -#~ "instructions" -#~ msgstr "" -#~ "Se queres ter os teus chios no teu blogue/sitio web, sigue as instruccións" diff --git a/locale/he/LC_MESSAGES/statusnet.mo b/locale/he/LC_MESSAGES/statusnet.mo index c6fd808286eceffb314540a2a7022737a9aa8286..2a7e01471418d07de68701e0eefe7f16dc453d2c 100644 GIT binary patch delta 5031 zcmY+{dsJ6d7Qpd?xX?g+fDhEv9|{H{PeJ6TuJVD8Kw=89Nlht#OE5&`2ZJKh^^xf~ zCKwHB}{|6}7f2(ol zGGn?Dr(rwvsKqGrEYWytnQc4HgjSs09EY6Z#!o3#I!`U&zZ z<};M>e(|a?nYa|al2_9md;f8VMkF0g*dJRiupRNZ&hP|kGs=@LU1&Xm{=|2&Ej~m) z3|M6ILD-tO2TBF{qFgsn`%^K1IMbowrZEZSNmrvh=_U-tgE$JCFbG2z8`B;WQ3g)M z7jQgEMRubs>@;@6ODN<1OXD9<#tnJRn0j>FG-M?$mRQ@OOwbL}FiI^!nc$>)O?{wt zc-{6#;b5*y#eTRD{ctCa!WvA*eUauhx`PTf#z$xLE}?uv)XpK zy>EazSzU?)xqlBz>2GS@|F^`J|0B+8_Rgy>2YZcr#HdU4@Rk@9SvDYgdaBH>)jH+6%j*yhgoI_Rfo~aR&~;eJBIo z#SHvT9bInYD)lQhvBKsTS5SYs;XH{p7`nNHyiBh5cD2K2K_MD?(x0!cbZ9(!Z?P>Mr%`UaqJFP-t+M$P^_S{A zbuG#Shp+@MtIw>quXQ~>P5uH(rF*Wi^Ey#9I*~|4>6nPJx4G&Zl)Wv*KwO9kSdQ}A zoj}=|uP`0`*BZmO%1pp{*o0EStheobWjKI%7gBM@+|WeFcZ`XlV+_g`lwdb}N3BIE zaRUxVpLgwdVjL0#2J{16`F5Eso)nV6F)$yQ1k|4I0j~_dLLU7FR!)_R*o$l65DA+;V$fo zS5ZoRU-jK+PkRS793Q7YMa@>dID&iy%9dTkV7!VQ@N12I{$TT+(8;7Dl7>8KDY|h9 z&cWkq!X~@0O*oSLF>Hyxn{7#3V|U_6lm|#vr(k>Hc_>@79D{Hp%7XT9rvCkD)NA4% z%8LEA=pP}JI11zON#xL&IqF7~y}W=jao|>a{S)e7lm$G4vPDx-7V;}~}ij{&RmyzNbXN1{)mzw;yx%r^*uxzf;Uuz9I!e{G znm>rqBA_r`gWhP?L~>O?gc z<%3eJR;qi{bLwq1V5hx4QXQ>&)WvGGT8A!q|F6+#!$d!-0e`e53_;oZB=p0vn$JY3 z*i4i|REZsNGfD;D$56bY{r^z||70uB3uW9m>?ZI3NE)($DcX^bvd0V1A6KKi&l@oW zFX3>!gS|0+mo*EezXbbW1pmMN zqQsdf1HYoqMJfFfb(4Bh{ZjSWZx`lLQ}$DT8R%IO;uMrpWDQ-eHrDxRVeqpi?VgwG=B<1h@EpZWT2bsLzL3DKWfjyQz);~3)mXV zFbJ2Roc=W^l{k!Dut9Csyw5SafG#NgVd@Z@cTAREkb|C==GAEU*qE@B+%j z4^j5KSDn6o=prt`ez*qZ`jeQ9x3oX(IR7ssPJN`q`>ly)lm!g_!2XcPLW!5*M_8@q zo}iq>u_vu(a0qeUDeD&X1`a0g`q1VlscY3ne2V!^FryE{EF6PX_*cA+a;T2fTOa$_ z{!z)sI3Iqh;UfB1aH6C_?N0NH7yGECY6E7FkNCv?a4A7~&5xoZjmtEoq<1k4JD#zn zO~G-*1sI7(upRzG{TAi>;dj=Syq`KAN0DEEk7GUhZjIBbQ4cht561LP`^<-HQ1kE$te9ZQ4VLh#+$J_aXogx8x7Qd7>)ZR#N_k# zhsHd0hk6ZL(%IzIEzf=7Z+Y^UewE0LJOFYG)F^->a)Xvs>dNU9s=w zv+4|W5y}8>qm-&v{TPFZn>4)X^=Z1F)EIK{^>ad(~EPa zd!n;EIWyg^F`kzSJtdW!=Vd$NJk#=WCgi=6=ZcSsADELrJ2xkyFlkU?N>b!tS5{$8 zfj2*=$m8l-m^n#b+R^^hCq@p@&+qYGyh&vv_J6&FQ&A3dnt PQaR~xSWW-Z15^J8Bk^`c delta 4957 zcmXZfdvr}#9>DRFGLg9+i3EvPT#-nLL=w#yHzvy!q2wmw*%no|q!~e?Nt9|hqM|6N zHW@*cc-5n!jgWd%kJeihDMrh9v|XJwBdfJoYPvGtpZ)XCXaDx&?0tTF?~`k9O{2Se z8hud~Xpi!-tm;{o)!DMFKhL(T5RAf3H~?S3N$M(0C%&L|e8;p;Md`m@E#zIScTt}A zKg_`Rxt5hL_3C4k@l$Nuvbs?y#vb@NO2bY31Rtqo^UQ+ci;P+5pnVOtz%A&DHClfN z{fJMYWZ)7?zkg|aJvJqNYEy7gXfoftNq>|#9g3ZCA`Zl248(I7fVWT{T#sYWde9+>caijXH z>i)pgFIR7=G0Vxn44AXroYHfcN_-t(GJK*d7m~Wab9; zM4yk$_&AgdjX-IC8>PMCBl0f|wN%97Ba}UkEHxccF_QQllztm=Af86qihwec(nOR8 zPD0t^GVFvkD2KBSJK_^<5B`Vg*T<$HZ!{KL;0%<33)D^O3H6@Zc!lW~t`0z%U=q&6 z`Rec3lsK=P^MrG;8JDtX+1m(gjy*6QT_|rh4P|SVqX+jO z-z4j~Riqh(8jDC1S>+h=nMK|?NFa;CW znQ=uZ8C;4o@dlJPy@qVJ)wIG`fsKh1)|(e|VPl($Q52$Z47SCED5^x+VI1)< zDA%;Zr^Ymty_}0O@m`ei->N^NJm+_mEo!>OETpsAXAAk4fy1Z}r>Mp1I&~k0(S8}* z;3KVXzSWG2RNW|BGZq`;EUllTmSZUORVatO)}|0ap+OrWwwVqCQ0gaQG%iN@;CzXa zu{)~&cFX!3abJ`-osCX>ALR^Hs{6J5lzJWIdt?7XK|TmiRNv1`9E9>gajHq`ICZwV zQms+1sK2TKmF77ysz=R6r`-QV6q+&7Hnj#Ng~w6$@;3V7L#=;`l9`Yl<`5-eE8+~4 z)MjF5T%hfrs(Vo~bOzr#~Cz5YAUuO1<3wofQ1=Ys|-s$o5*vUl{+RmRFevx_6mF=TYCl zk@TO3@*-DJ7J5hHr>bAISy*ee587Sm_$mb%ScGy5N>J|eR&0kSG`^+rQTOwzTzL(?1lQ#NF^T4pCd#`^+ByfYPvNzZo$6fH}plqD*L`tau5^g33`cu@<9o zmwH=manOwGi!yEy%2tll`dkblwr5k22bHQ@P*Q&Y3?z<4IsM5f znRo+(u~043`bv}q9Mk%X>QAQLwi>iUv%_XZZ83%c@hBs+u;v4GB zIR?#;oG4DH9!ctMRgW8y+gr~WdgVAxr+wSPxj_IN%8N$DC4$0I1Iy@zSo_MG{j zOcweRf2giU`F>Pkcf6`v=gqI=DC|Ie9y;&?9Kym^V`t*~7r6h@(BvZfgn?=iN`1Zh z6kWu=wMI9}0}9o(>QPLf{*J~Wm(1aGq4dwd_Lzq)vE&l@cT=dKLcD`<82+tsw7Li- z_4_drkDx#Pgq`rQ8hqKry-^nOlDZ57h>vT01qTy5>?+2?tMtMLA zN~*kSJ_ZpNYrIPR4CTXg2vhNd8gRqB`8W)uewsQDJIWNL6l7o(hT>jqir?L+c0?Q+ z;h*77PIV7TagI(IK4S3D^wQc{FWa$k(Y<1waq+I$-chmqb9lV@1<@n(ygB((y#={> zE@%FX>CS`q_tvSxU*GNVV*!R7S0(+7=` zS^9cB{iaTi$<513a-\n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:58:24+0000\n" +"Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: he\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -7560,10 +7564,3 @@ msgstr "" #, fuzzy msgid "Duplicate notice" msgstr "הודעה חדשה" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "צור חשבון חדש" - -#~ msgid "Error inserting notice" -#~ msgstr "שגיאה בהכנסת ההודאה" diff --git a/locale/it/LC_MESSAGES/statusnet.mo b/locale/it/LC_MESSAGES/statusnet.mo index 6aafacbbc6543d2f9d3c5fa995087a2cad4e2013..384ed9ad993dc6075a74590348b4efefba9e1003 100644 GIT binary patch delta 9015 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�Re9o^&Z#__v3uLf1rDCIjWzH`td15ZR3TQi)*dD;n0BBgL?O&?Elsj=F*_#`4AP--Kc&2CF=TR z)XbxXxel9}Jx~MBMh$c#D)dt^3YVb<{0S--&SHCvc*5mYmnYc&&1e`+g9h*#>RWFq zrryN3xcFi(WGOn}hyKn&Y1K1mzJmn%%i29j-4THD_6*2!11 zjK_1RHG5!$i%eV8kIK{LOjHP0qq6xt>Z>>WX?I^!R74*|g?u6^7fQ{KF^2kis!0U)9=0wzw$y)P_S^XLJTo+Wf7o!ILGU|Za zjS1TS=P2k!wX*{J9X(lTR?c=aIf5V1?)|~J79XKHD#!f+WG(8XyolP@QKOt$m_&UQ zDpDsoU;w@D2 zW)->_j=_NLLoLxuco+AgBDQCYv*y@^Mm@+A!7J=Al-A{VK4s3SeM$aniOp9YP12CBo4QK3DJ z`f;gO?Ed26DO9MJV`n^K)+%ua)gW^Y>cHBL+UL748oxE~qLw`9k9Q&MgrSoRHM5DR zZL$EBBb!l6l{~?P{Atuui$z^xruJ~v_QS56Y4p?AB9#Fa!{dL zjOuv3)sLIMV;9=%O>*}Q$8yxC;B|Z+HQ-5qbT9ZT>iRnDk6TemTV=A_ZK?Q}_J1w~ zy>JsMwL;}WFT7u| z9YH}K6h){GrlC&4m8k4LievE}>gRLpRM*j8%yp>yzCb1Guc)=vzb)zOw+ZSb?2kb# zF&AOz`+oxkW#ehokHcBir`8=*vPJyK?dN3kFQ^&aHG_Y4OVSnfqD<71PDkCh);xk5 z;0;v7D@-G|f)wH@w8egyinFjU?m}gGjpyA#GyuC%pNg8<4*WY_MXl`{(*vRZUtl-3 zq26_db0X^g)#f)Cq#p4C`(Fo7vlrZmd!Wwp@u>C{R^NfkssDsQTr|_|?+vJ#evTUG z@2KyElv!>-W6U=(MfahuSD5XdOPx)KU!WnM2Ce-sn2xpQ*nUSHJj<~fZbW@_?nQlQ ze2+b`!d#b({ZLDog=shipTlit$9ZlEHldPtuTP;0h2z$6#ctpqbwf8)Gap2)T|2WE z>baq)gC-X>v$5t1EKB`s)WA=gKcRM0_)D(8glZHbXlR7mM$N6>-RgZ&+vyLe2d8~- zv)j29<%^0li%W_MUOjhlm>=J^WqeXFAt^b&L-Tn4i|mtGRNQjFxXgm0yv*Xlamm5H zxp{@bZka`yIW%Tv2UGHCNGlmxQczqH_e^1aCmt!tDap*qZaE-3Ge0@lyErp1H?ts^ zQamOtFSn?;C@wFzpk!iPZgHo`zP\n" -"Language-Team: Italian \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:58:30+0000\n" +"Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: it\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -32,7 +36,6 @@ msgstr "" " a eccezione di questi dati personali: password, indirizzo email, indirizzo " "messaggistica istantanea, numero di telefono." -# è quello che si vede come descrizione da dove si è inviato il messaggio. Mettere 'da' non suona bene ('da web', 'da api'...), 'via' mi pare la soluzione migliore ('via web', 'via api', 'via Twhirl'...). #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " @@ -44,14 +47,12 @@ msgstr " via " msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Aggiornamenti in risposta a %2$s" -# %USERNAME has invited you to join THEM on %site. You start with a singular and end with a plural??? #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 #: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "Hai ricevuto un invito per seguire %1$s su %2$s" -# resa il più 'asessuale' possibile... #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format @@ -154,7 +155,6 @@ msgstr "Stato di %1$s su %2$s" msgid "%s (%s)" msgstr "%s (%s)" -# Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format @@ -176,7 +176,6 @@ msgstr "Attività pubblica di %s" msgid "%s and friends" msgstr "%s e amici" -# Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 #: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 #: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 @@ -190,7 +189,6 @@ msgstr "attività pubblica di %s" msgid "%s status" msgstr "stato di %s" -# Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 #: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 #: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 @@ -258,14 +256,12 @@ msgstr "" msgid "6 or more characters" msgstr "6 o più caratteri" -# messa al femminile... dovrebbe essere la password #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 #: actions/recoverpassword.php:220 actions/recoverpassword.php:233 #: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 o più caratteri, e non dimenticarla!" -# Femminile, è la password #: ../actions/register.php:154 actions/register.php:168 #: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." @@ -406,7 +402,6 @@ msgstr "Aggiungi" msgid "Add OpenID" msgstr "Aggiungi OpenID" -# we don't use 's' in plurals even from english words. #: ../lib/settingsaction.php:97 lib/settingsaction.php:91 #: lib/accountsettingsaction.php:117 msgid "Add or remove OpenIDs" @@ -879,7 +874,6 @@ msgstr "Numero di telefono attualmente confermato per gli SMS." msgid "Current confirmed email address." msgstr "Indirizzo email attualmente confermato." -# aggiunti i due punti, dopo questa stringa c'è lo stato attuale di un utente nella pagina del suo profilo #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "In questo momento:" @@ -902,7 +896,6 @@ msgstr "Errore del DB nell'inserire la risposta: %s" msgid "Delete notice" msgstr "Elimina messaggio" -# per renderla 'asessuale' il più possibile... #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -1166,7 +1159,6 @@ msgstr "L'URL della pagina web non è valido." msgid "I want to post notices by email." msgstr "Voglio inviare i messaggi via email" -# Non è il massimo (Messaggistica Istantanea), ma non lo è nemmeno in inglese, questo tipo di abbreviazioni sarebbe da evitare sempre... #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 #: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" @@ -2191,7 +2183,6 @@ msgstr "Profilo sconosciuto" msgid "Public Stream Feed" msgstr "Feed del flusso pubblico" -# Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 #: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 #: actions/public.php:120 actions/public.php:131 @@ -2214,7 +2205,6 @@ msgstr "Pubblica un MicroID per il mio indirizzo email" msgid "Recent Tags" msgstr "Etichette recenti" -# pulsante, indica un'azione quindi come gli altri: accedi, abbonati... #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -2361,7 +2351,6 @@ msgstr "Conferma SMS" msgid "Same as password above" msgstr "Stessa password di sopra" -# Femminile, è la password #: ../actions/register.php:156 actions/register.php:170 #: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." @@ -2620,7 +2609,6 @@ msgstr "Quello è già il tuo ID di Jabber." msgid "That is already your email address." msgstr "Quello è già il tuo indirizzo email." -# previous suggestion missed the dot #: ../actions/smssettings.php:188 actions/smssettings.php:196 #: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." @@ -2631,14 +2619,12 @@ msgstr "Quello è già il tuo numero di telefono." msgid "That is not your Jabber ID." msgstr "Quello non è il tuo ID di Jabber." -# previous suggestion missed the dot #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 #: actions/emailsettings.php:397 actions/emailsettings.php:404 #: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Quello non è il tuo indirizzo email." -# previous suggestion missed the dot #: ../actions/smssettings.php:257 actions/smssettings.php:265 #: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." @@ -2891,7 +2877,6 @@ msgstr "" msgid "Unrecognized address type %s" msgstr "Tipo di indirizzo non riconosciuto %s" -# è un tentativo, visto che è un pulsante, mi prendo la licenza poetica... #: ../actions/showstream.php:209 actions/showstream.php:219 #: lib/unsubscribeform.php:137 msgid "Unsubscribe" @@ -2968,7 +2953,6 @@ msgstr "" "Usa questo modulo per invitare i tuoi amici e colleghi a usare questo " "servizio." -# Femminile, è l'email #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 @@ -3045,7 +3029,6 @@ msgstr "Tipo di immagine errata per \"%s\"" msgid "Wrong size image at '%s'" msgstr "Dimensione dell'immagine sbagliata a \"%s\"" -# "si" is the last musical note in the "do scale". "sì" is the correct Italian translation for "yes". #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 @@ -3184,7 +3167,6 @@ msgstr "" "Riceverai una notifica quando i tuoi invitati accetteranno e si " "registreranno sul sito. Grazie per l'aiuto ad accrescere la comunità!" -# per la par condicio ho sostituito 'sei stato identificato' #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Sei ora identificato/a. Inserisci una nuova password qui di seguito. " @@ -3285,7 +3267,6 @@ msgstr "rispondi" msgid "same as password above" msgstr "stessa password di sopra" -# wrong capitalization in previous suggestion #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 #: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 #: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 @@ -4121,7 +4102,6 @@ msgstr "Perso il nostro file di dati." msgid "Lost our file." msgstr "Perso il nostro file." -# wrong capitalization in previous suggestion #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 #: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 @@ -4254,7 +4234,6 @@ msgstr "Crea un nuovo indirizzo email per inviare messaggi; " msgid "Send me email when someone " msgstr "Inviami un'email quando qualcuno " -# per non usare una traduzione troppo fedele e forse un po' banale (gomitata, spintarella), facciamo come abbiamo fatto con Pidgin in Ubuntu, trasformando 'nudge' in un richiamo, anche perché è quello che realmente fa. #: actions/emailsettings.php:168 actions/emailsettings.php:173 #: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." @@ -4386,12 +4365,10 @@ msgstr "Se vuoi che %s aggiorni automaticamente " msgid "Sync preferences" msgstr "Preferenze di sincronizzazione" -# da chiarire dove e come appaia #: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Rimuovi preferito" -# prova per 'famosi', al massimo si cambia #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -4399,7 +4376,6 @@ msgstr "Rimuovi preferito" msgid "Popular notices" msgstr "Messaggi famosi" -# prova per 'famosi', al massimo si cambia #: actions/favorited.php:67 #, php-format msgid "Popular notices, page %d" @@ -4655,7 +4631,6 @@ msgstr "Altre impostazioni" msgid "Manage various other options." msgstr "Gestisci altre opzioni." -# o andare con un 'accorciamento'? auto-accorciamento? #: actions/othersettings.php:93 msgid "URL Auto-shortening" msgstr "Autoriduzione degli URL" @@ -4664,13 +4639,11 @@ msgstr "Autoriduzione degli URL" msgid "Service" msgstr "Servizio" -# o andare con 'accorciamento'? auto-accorciamento? #: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Servizio di autoriduzione da usare." -# in caso, accorciamento anche qui. #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." @@ -4728,7 +4701,6 @@ msgstr "Etichetta non valida: \"%s\"" msgid "Couldn't save tags." msgstr "Impossibile salvare le etichette." -# Solo una prova, se non sta bene si ripristina la versione vecchia, giusto per avere l'interfaccia il più tradotta possibile #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 #, php-format @@ -4783,7 +4755,6 @@ msgstr "Tramite questo modulo puoi creare " msgid "1-64 lowercase letters or numbers, " msgstr "1-64 lettere minuscole o numeri, " -# Femminile, è l'email #: actions/register.php:382 actions/register.php:386 #, fuzzy msgid "Used only for updates, announcements, " @@ -4794,7 +4765,6 @@ msgstr "Usata solo per aggiornamenti, annunci " msgid "URL of your homepage, blog, " msgstr "URL della tua pagina web, blog " -# per renderla 'asessuale' il più possibile... #: actions/register.php:404 #, fuzzy msgid "Describe yourself and your " @@ -4889,7 +4859,6 @@ msgstr "Feed dei messaggi per il gruppo %s" msgid "Members" msgstr "Membri" -# femminile, è relativo alle etichette #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 #: lib/tagcloudsection.php:71 actions/showgroup.php:344 @@ -5143,7 +5112,6 @@ msgstr "Nome utente di Twitter" msgid "Twitter password" msgstr "Password di Twitter" -# elenca quali sono i propri amici su twitter #: actions/twittersettings.php:228 actions/twittersettings.php:232 #: actions/twittersettings.php:248 msgid "Twitter Friends" @@ -5305,13 +5273,11 @@ msgstr "licenza." msgid "Block this user" msgstr "Blocca questo utente" -# azione #: lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 msgid "Block" msgstr "Blocca" -# è un suggerimento #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" msgstr "Togli questo messaggio dai preferiti" @@ -5374,7 +5340,6 @@ msgstr "URL della pagina web o del blog per il gruppo o l'argomento" msgid "Description" msgstr "Descrizione" -# per renderla 'asessuale' il più possibile... #: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" @@ -5389,7 +5354,6 @@ msgstr "Dove è situato il gruppo, tipo \"città, regione, stato\"" msgid "Group" msgstr "Gruppo" -# potrebbe essere lunga... #: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Amministra" @@ -5426,7 +5390,6 @@ msgstr "Etichette nei messaggi del gruppo %s" msgid "This page is not available in a " msgstr "Questa pagina non è disponibile in un " -# è relativo ai gruppi #: lib/joinform.php:114 msgid "Join" msgstr "Iscriviti" @@ -5495,7 +5458,6 @@ msgstr "%1$s (%2$s) si chiede cosa tu " msgid "%1$s just added your notice from %2$s" msgstr "%1$s ha appena aggiunto il tuo messaggio da %2$s" -# è quello che si vede come descrizione da dove si è inviato il messaggio. Mettere 'da' non suona bene ('da web', 'da api'...), 'via' mi pare la soluzione migliore ('via web', 'via api', 'via Twhirl'...). #: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 #: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" @@ -5557,7 +5519,6 @@ msgstr "Invia un richiamo a questo utente" msgid "Tags in %s's notices" msgstr "Etichette nei messaggi di %s" -# femminile, è relativo alle etichette #: lib/profilelist.php:182 lib/profilelist.php:180 #: lib/subscriptionlist.php:126 msgid "(none)" @@ -5580,7 +5541,6 @@ msgstr "Etichette recenti" msgid "Featured" msgstr "In evidenza" -# è una prova, è il nome di una scheda, al massimo si cambia, però popolari mi pare troppo banale. #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Famosi" @@ -5640,7 +5600,6 @@ msgstr "Chi scrive più messaggi" msgid "Unblock this user" msgstr "Sblocca questo utente" -# azione #: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Sblocca" @@ -6398,7 +6357,6 @@ msgstr "Preferenze di sincronizzazione salvate." msgid "Make user an admin of the group" msgstr "Devi essere amministratore per modificare il gruppo" -# potrebbe essere lunga... #: actions/groupmembers.php:470 actions/groupmembers.php:473 #, fuzzy msgid "Make Admin" @@ -6631,7 +6589,6 @@ msgstr "" "Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova " "per email all'indirizzo indicato nel tuo profilo." -# per la par condicio ho sostituito 'sei stato identificato' #: actions/recoverpassword.php:158 #, fuzzy msgid "You've been identified. Enter a new password below. " @@ -6734,7 +6691,6 @@ msgstr "" "**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" "it.wikipedia.org/wiki/Microblogging) " -# potrebbe essere lunga... #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy msgid "Admins" @@ -7048,7 +7004,6 @@ msgstr "" msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" -# azione #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" @@ -7354,13 +7309,11 @@ msgstr "" msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" -# per renderla 'asessuale' il più possibile... #: actions/profilesettings.php:122 actions/register.php:454 #, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" -# per renderla 'asessuale' il più possibile... #: actions/profilesettings.php:125 actions/register.php:457 #, fuzzy msgid "Describe yourself and your interests" @@ -7634,13 +7587,11 @@ msgstr "Accedi al sito" msgid "Select tag to filter" msgstr "Seleziona un operatore" -# per renderla 'asessuale' il più possibile... #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" -# per renderla 'asessuale' il più possibile... #: lib/groupeditform.php:170 #, fuzzy, php-format msgid "Describe the group or topic in %d characters" @@ -7697,7 +7648,6 @@ msgid "" "\n" msgstr "" -# è quello che si vede come descrizione da dove si è inviato il messaggio. Mettere 'da' non suona bene ('da web', 'da api'...), 'via' mi pare la soluzione migliore ('via web', 'via api', 'via Twhirl'...). #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" @@ -7716,55 +7666,3 @@ msgstr "Impossibile eliminare un preferito." #, fuzzy msgid "Duplicate notice" msgstr "Elimina messaggio" - -#~ msgid "Code not yet ready." -#~ msgstr "Codice non ancora implementato." - -#~ msgid "Export and delete your user information." -#~ msgstr "Esporta ed elimina le tue informazioni personali." - -#~ msgid "Delete my account" -#~ msgstr "Elimina il mio account" - -#~ msgid "Delete my account confirmation" -#~ msgstr "Conferma l'eliminazione dell'account" - -#~ msgid "Check if you are sure you want to delete your account." -#~ msgstr "Seleziona per eliminare veramente il tuo account." - -# messa così perché è una descrizione della pagina, compare in alto -#~ msgid "Showing recently popular notices" -#~ msgstr "Ecco i messaggi più famosi" - -#~ msgid "Tag a person" -#~ msgstr "Etichetta una persona" - -#~ msgid "Icons" -#~ msgstr "Icone" - -#~ msgid "" -#~ "Hey, %s.\n" -#~ "\n" -#~ "Someone just entered this email address on %s.\n" -#~ "\n" -#~ msgstr "" -#~ "Ehi %s.\n" -#~ "\n" -#~ "Qualcuno ha appena inserito questo indirizzo email in %s.\n" -#~ "\n" - -#~ msgid "Couldn't confirm email." -#~ msgstr "Impossibile confermare l'email." - -#~ msgid "Email address" -#~ msgstr "Indirizzo email" - -#~ msgid "Error inserting notice" -#~ msgstr "Errore nell'inserire un messaggio" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Se hai dimenticato o perso la tua password, puoi riceverne una nuova " -#~ "all'indirizzo email memorizzato nel tuo account." diff --git a/locale/ja/LC_MESSAGES/statusnet.mo b/locale/ja/LC_MESSAGES/statusnet.mo index 0226253b0086fc8ec5eeb6829b9154ee47b03d28..619bed7047dd2c326475e4e21c72ce546b2e705c 100644 GIT binary patch delta 5512 zcmY+`dsJ3c8prXCtxWNPqUMFlmtqh^0z{OH6O)cL%cj({pqVgV^Q}|@g_p9+bPO{q zMJ-KoqMMg+8Z!+uOS8O5{yOxkU==KFI$&06Che)jX6efEC#K4+ho z?_18NrQL(oG0v6V?_9_^*L#+8y)Yk3aICq`jC;Vjw&ZWe1dL(PH#4V`%zDMnVW|Og~e0NmgL4sYVMpZTsQ*j;U;6clGUEl{Ej4I?h9EcIr zRz86paSisvO{j^ET6`SSiQ^YK$C}-5kn4eK^bOZ!wx9+)f~QHSXsaXrOkrK2d;*OU#AlcGN(p%|1`~0WZUB z@;95cmVd|MQ>gKhmiqCFP=(!vdL+A-vi}<36bYI1XMdp>70*Ofx*oMN`^}gqeLMhl zy~w-^b>EYy9efvi={_8cUt649=ktYi?7un|lTc+h;UHXt${)o7JZ^FFQ~uedqh7Y* zX4G7X3FP;i-#Eg2I_ht>X_Y%T3Hlz zu4_=wz7|zjJ*tpq?1BHm-(l>tK0g*UUQkX$1J$B#Sc@vC5p`bwi5KAo&-r`-<`I{m zuGdaQn4lBJisI829-oG?`QP1pp)Qu&mM{oz~ zrJRM@;x(9rJIq$pgq`dCBkGU3Z;-{8V?6V_t7vGY<54T0hn;Z+>c^)6OK>yJ!9J^a zQE?g0z&3yJ&-@-NBwmd-<4FwR=okF2=5$nn3sCv>7^v|f4Xxlb>JfDOtG6#E6Awfk zs~b?iel@86O&G#f)Jqq;+TIa7Ok9F}ap;SD@9{=lgim2x%v!_#x2KW2#!om5wMEyV zI!wfToQ&F`71#myq52(0t>^^m(R6vq7nX|ZUx;aVJ8Hb8*bkq@INbdb`>&U;*)E*H z{=|LP`e!y0wbF6s6x1`FY1Ww=Q6HEOEbg$*PtXrl*bpqj(Wo6>g}30QfW`wfE`Hft zkJ{=14c-ZuNxT@fl{--@JBC_$xAop!vjkO0HEQD5P%GYtdN+QsIR6!2U@(z}2CA?` zEoukqQ6G$bco`;a@P7~d0hM2fy6*t$QT%Lnc-8M{FVr|ga4=3Zms7yd+$JfyZ52qowzsrPF#w;h{s|gmYVZ1fp{(IC2TaCB=fr#8a?rd z`Mue7i_fQ;mzy`3)6Iv?=gim4_sv$+PR6|H3&=5tVxY=~TjD0v3U0w37+C&sOd+nr zZn)DtfU(41;Sl@|^>Svu<=^u0sQ%OOVw{bga20BYHoRr$znO%#=2KKbt*G;P?pEKi z2Pz(dIt^E%UalGVYg~?crbos5_LGz5+ZMQEh!yJS9@&=VOG|->0E!LpkfyJn;e$n!W&10x@ ze-c$-*T4JUgmf$*u0-v?OQ`YQ$1d1xw&Hx^AN=*eJ^Z$R%NL>wS!HfCccTVsM(xnY z=C`O1PltExgM%f+Lr{f1j=FE1xe-m*O?2Ag_`SZs-l&CSpmw4V2VvM;V!nfC&%b-uPjDXUhRzmeVmk2bIAXRbvLj$cb_oL4L z&!~<)KlZ=-d8mQPQH9OLB6i?uRKL@o_dOEdI&j*pvQvCYUK0 z#L+Rw5+hLYwKxU=7TjN)mX(#BnH|c?%g@Qp&(2B9Q|dkBfwF z&kv0ZPYahtDkF=gR$m`n9ho#aTr_#=SnlYuWSi$p`= zXy~?RbXtB!#{XX%%tc1|UxmZVCq?o@Q^Mq~j#O5v=qoGAtET0L%B!O3m1mdAEe(6B HS5NsbOx)&r delta 5443 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\n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:58:35+0000\n" +"Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ja\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -7535,16 +7539,3 @@ msgstr "" #, fuzzy msgid "Duplicate notice" msgstr "新しい通知" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "アカウントを作成" - -#~ msgid "Couldn't confirm email." -#~ msgstr "メールを確認できません" - -#~ msgid "Email address" -#~ msgstr "メールアドレス" - -#~ msgid "Error inserting notice" -#~ msgstr "通知追加エラー" diff --git a/locale/ko/LC_MESSAGES/statusnet.mo b/locale/ko/LC_MESSAGES/statusnet.mo index a57340724f4f01d18b15f95471e2fd3a63dbc6f7..6fff9fc61ca84b15d460170b8b1d3920990fcd45 100644 GIT binary patch delta 9016 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 Lc|GFN{I~xXe)!m` delta 8938 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\n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:58:40+0000\n" +"Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ko\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -3746,12 +3750,10 @@ msgstr "트위터 환경설정이 저장되었습니다." msgid "Please check these details to make sure " msgstr "이 상세설정들을 체크해주세요." -# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. #: actions/userauthorization.php:324 actions/userauthorization.php:340 msgid "The subscription has been authorized, but no " msgstr "가입이 승인되었습니다." -# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. #: actions/userauthorization.php:334 actions/userauthorization.php:351 msgid "The subscription has been rejected, but no " msgstr "이 구독이 거절되었습니다." @@ -4095,7 +4097,6 @@ msgstr "당신은 이미 이 사용자를 차단하고 있습니다." msgid "Failed to save block information." msgstr "정보차단을 저장하는데 실패했습니다." -# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. #: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been " @@ -5312,7 +5313,6 @@ msgstr "가장 많은 게시글이 있는 그룹들" msgid "Tags in %s group's notices" msgstr "%s 그룹 게시글의 태그" -# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. #: lib/htmloutputter.php:104 msgid "This page is not available in a " msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." @@ -5375,13 +5375,11 @@ msgstr "" msgid "You've been nudged by %s" msgstr "%s 사용자가 찔러 봤습니다." -# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. #: lib/mail.php:465 #, php-format msgid "%1$s (%2$s) is wondering what you are up to " msgstr "%1$s (%2$s) 사용자가 요즘에 무엇을 하는지 궁금해 하고, " -# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. #: lib/mail.php:555 #, php-format msgid "%1$s just added your notice from %2$s" @@ -7190,7 +7188,6 @@ msgstr "파일을 잃어버렸습니다." msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" -# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." @@ -7319,7 +7316,6 @@ msgstr "%s 그룹" msgid "Notice deleted." msgstr "게시글이 등록되었습니다." -# FIXME: 잘못 추출된 문자열, 번역할 필요 없음. #: actions/smssettings.php:91 #, fuzzy msgid "SMS is not available." @@ -7585,6 +7581,3 @@ msgstr "favorite을 삭제할 수 없습니다." #, fuzzy msgid "Duplicate notice" msgstr "통지 삭제" - -#~ msgid "Email address" -#~ msgstr "이메일 주소" diff --git a/locale/mk/LC_MESSAGES/statusnet.mo b/locale/mk/LC_MESSAGES/statusnet.mo index cdc1a395bd49360650c50ed85f8fc959976139a7..c64c70c726db36fe6419c5f0b8700f58cd558ae6 100644 GIT binary patch delta 4982 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 aI_7%|N2IyDg}#`Avd5>rZ2@CGneks!!ka(< delta 4997 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 XPE9J_QT$19!Kq27rW6K`-!${Tx)PU< diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index d242c0e3e6..de9c1e06b9 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -1,3 +1,6 @@ +# Translation of StatusNet to Macedonian +# +# -- # #-#-#-#-# statusnet.pot (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) 2008 FREE SOFTWARE MACEDONIA @@ -13,17 +16,17 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:58:46+0000\n" +"Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"#-#-#-#-# statusnet.pot (PACKAGE VERSION) #-#-#-#-#\n" -"#-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -7592,16 +7595,3 @@ msgstr "" #, fuzzy msgid "Duplicate notice" msgstr "Ново известување" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Креирај нова сметка" - -#~ msgid "Couldn't confirm email." -#~ msgstr "Адресата за е-пошта неможе да се потврди." - -#~ msgid "Email address" -#~ msgstr "Адреса за е-пошта" - -#~ msgid "Error inserting notice" -#~ msgstr "Грешка во внесувањето на известувањето" diff --git a/locale/nb/LC_MESSAGES/statusnet.mo b/locale/nb/LC_MESSAGES/statusnet.mo index e41d29064a77c20a5c3ed6e5d186249c12339c52..509dd898caad29519ca9c9104ce60fb677ac71f3 100644 GIT binary patch delta 3141 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 WOT%@wE9f${WJXTKk)xBo8t^XyBfQ4| diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 3242960116..52d5d33f8e 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -1,23 +1,19 @@ -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-# -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# Translation of StatusNet to Norwegian Bokmål # +# -- msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-09-26 22:45+0000\n" -"Last-Translator: Eivind Uggedal \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:58:56+0000\n" +"Language-Team: Norwegian Bokmål\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" -"X-Poedit-Language: Norwegian Bokmal\n" -"X-Poedit-Country: NORWAY\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nb\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -7479,10 +7475,3 @@ msgstr "" #: lib/oauthstore.php:345 msgid "Duplicate notice" msgstr "" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Opprett en ny konto" - -#~ msgid " by " -#~ msgstr "av" diff --git a/locale/nl/LC_MESSAGES/statusnet.mo b/locale/nl/LC_MESSAGES/statusnet.mo index c3d6958535dc36ad94bb9bf82fff875255b4e96e..4ec605e0911313bfd6d47d9be158e47b20314917 100644 GIT binary patch literal 90517 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�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

PMXosde`wlV z{=`y<8UrKq7F$AhF_c+B9ux@G^<>}C3cok+rFoae_>@+xxp+t?+4a7VOFvE*C?wa> zdXU=}g@nZd6x#^{rK2In`p?r5YJ-Pq3nK)vYGo<9^50+Oq=V-7(K_ z#-0i^`*gz_OZRv(EyUhn*?LWe+fsSrZ8U$mC+&c^Gx5(0xaGZ4&m5mx)ALAZu4`k^ z6OHR1Pgh@Y=UQ^&yD z`LzNTDSD=Lneeo(J!}ROvX*}!24RKXL{wUtUUEZeJXud*<~D4rry+M%oWly-H0BQj zp&RR{OUVd*Rs1^weo)Uu+YWH2{h|Kw*o1yx-fDm#BNqC za9-W%2(CO+{h&Pk9tTpD02fkxtJANjsC8JRxf7CV_CNXLXWaFCkoJZMD}p33M>nzA zEXq7RO?74B#Ui;+HU*tS#VZ=ZRMlSDs^4Z`2%|)TSwKeiO z#KFXS!TZy2GHZ~hldip%X5A9DCcWkdGYv97Kq!K*MJ2a7zgHe$6Hc(~Jw7p}3kiV) z&TS&TO;u(c^F)-)8nGz1E!U}bos|i{aNnQ6t4Z;-`}5=Zft*+ scPCu-oDZN{&RG7gU>loQ2@P0U%w&b8G2-IGemwj0zs`SJAac$A6WgAS%>V!Z delta 28355 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\n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:59:08+0000\n" +"Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" -msgstr "Doorzoek de stroom naar \"%s\"" +msgstr " Stroom doorzoeken naar \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 @@ -40,13 +45,13 @@ msgstr " van " #: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / Updates antwoordend op %2$s" +msgstr "%1$s / Updates in antwoord op %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 #: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s heeft je uitgenodigd voor %2$s" +msgstr "%1$s heeft u uitgenodigd voor %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 @@ -79,30 +84,30 @@ msgid "" "\n" "Sincerely, %2$s\n" msgstr "" -"%1$s heeft je uitgenodigd voor %2$s (%3$s).\n" +"%1$s heeft u uitgenodigd voor %2$s (%3$s).\n" "\n" -"%2$s is een micro-blog service waarmee je mensen op de hoogte kunt houden " -"van wat jou interesseerd en bezig houdt.\n" +"%2$s is een microblogdienst waarmee u mensen op de hoogte kunt houden van " +"wat u interesseert en bezig houdt.\n" "\n" -"Je kunt ook nieuws over jezelf of jouw hersenspinsels met anderen delen. Het " -"is ook de ideale plek om mensen te ontmoeten met dezelfde interesses als " -"jij.\n" +"U kunt ook nieuws over uzelf of uw ideeën en gedachten met anderen delen. " +"Het is ook de ideale plek om mensen te ontmoeten met dezelfde interesses als " +"u.\n" "\n" -"%1$s zei:\n" +"%1$s schreef:\n" "\n" "%4$s\n" "\n" -"Je kunt %1$s's profiel pagina op %2$s hier bekijken:\n" +"U kunt %1$s's profielpagina op %2$s hier bekijken:\n" "\n" "%5$s\n" "\n" -"Als je het wilt proberen, klik dan op de link hieronder om de uitnodiging te " -"accepteren.\n" +"Als u het wilt proberen, klik dan op de verwijzing hieronder om de " +"uitnodiging te accepteren.\n" "\n" "%6$s\n" "\n" -"Als je geen interesse hebt, kun je dit bericht gewoon negeren. Bedankt voor " -"je geduld.\n" +"Als u geen interesse hebt, kunt u dit bericht negeren. Bedankt voor uw " +"geduld.\n" "\n" "Met vriendelijke groet, %2$s\n" @@ -110,7 +115,7 @@ msgstr "" #: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s volgt nu je berichten %2$s." +msgstr "%1$s volgt nu uw berichten %2$s." #: ../lib/mail.php:126 #, php-format @@ -122,7 +127,7 @@ msgid "" "Faithfully yours,\n" "%4$s.\n" msgstr "" -"%1$s volgt nu je berichten op %2$s.\n" +"%1$s volgt nu uw berichten op %2$s.\n" "\n" "\t%3$s\n" "\n" @@ -141,7 +146,7 @@ msgstr "%1$s updates die een reactie zijn op updates van %2$s / %3$s." #: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" -msgstr "%1$s's status op %2$s" +msgstr "Status van %1$s op %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 @@ -154,7 +159,7 @@ msgstr "%s (%s)" #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" -msgstr "%s rss" +msgstr "%s publieke stream" #: ../actions/all.php:47 ../actions/allrss.php:60 #: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 @@ -177,7 +182,7 @@ msgstr "%s en vrienden" #: actions/publicrss.php:103 #, php-format msgid "%s public timeline" -msgstr "" +msgstr "%s publieke tijdlijn" #: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format @@ -191,7 +196,7 @@ msgstr "%s status" #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" -msgstr "" +msgstr "%s tijdlijn" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 #: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 @@ -207,8 +212,8 @@ msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -"(U ontvangt een bericht per e-mail met instructies over: hoe te bevestigen " -"dat uw e-mailadres.)" +"U ontvangt snel een e-mailbericht met daarin instructies over hoe u uw e-" +"mail kunt bevestigen." #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 @@ -217,14 +222,14 @@ msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** is een microbloggingdienst van [%%site.broughtby%%](%%site." +"**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." "broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** is een microbloggingdienst. " +msgstr "**%%site.name%%** is een microblogdienst. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." @@ -248,18 +253,18 @@ msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties. Verplicht." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" -msgstr "6 of meer tekens" +msgstr "Zes of meer tekens" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 #: actions/recoverpassword.php:220 actions/recoverpassword.php:233 #: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" -msgstr "6 of meer tekens, en vergeet het niet!" +msgstr "Zes of meer tekens, en vergeet uw wachtwoord niet!" #: ../actions/register.php:154 actions/register.php:168 #: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." -msgstr "6 of meer tekens. Verplicht" +msgstr "Zes of meer tekens. Verplicht" #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 @@ -268,8 +273,8 @@ msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." msgstr "" -"Een bevestigingscode is verstuurd naar het opgegeven IM-adres. Je moet ermee " -"akkoord gaan dat %s boodschappen aan jou stuurt." +"Er is een bevestigingscode verstuurd naar het opgegeven IM-adres. U moet " +"ermee akkoord gaan dat %s berichten aan u verzendt." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 @@ -286,9 +291,8 @@ msgid "" "A confirmation code was sent to the phone number you added. Check your inbox " "(and spam box!) for the code and instructions on how to use it." msgstr "" -"Een bevestigingscode is verzonden naar het telefoonnummer dat u hebt " -"toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies " -"hoe het te gebruiken." +"Er is een bevestigingscode verzonden naar het telefoonnummer dat u hebt " +"toegevoegd. Controleer uw inbox (en spambox!) voor de code en instructies." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -337,7 +341,7 @@ msgstr "" #: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 #: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" -msgstr "API functie niet gevonden" +msgstr "De API-functie is niet aangetroffen!" #: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 #: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 @@ -365,9 +369,8 @@ msgstr "API functie niet gevonden" #: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 #: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." -msgstr "API functie in bewerking" +msgstr "De API-functie is in bewerking." -# This would be appropriate for the footer menu link (actual context isn't clear!) #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 msgid "About" @@ -377,7 +380,7 @@ msgstr "Over" #: actions/userauthorization.php:143 actions/userauthorization.php:178 #: actions/userauthorization.php:209 msgid "Accept" -msgstr "Accepteer" +msgstr "Aanvaarden" #: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 #: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 @@ -390,17 +393,17 @@ msgstr "Accepteer" #: actions/emailsettings.php:126 actions/imsettings.php:133 #: actions/smssettings.php:145 msgid "Add" -msgstr "Voeg toe" +msgstr "Toevoegen" #: ../actions/openidsettings.php:43 actions/openidsettings.php:44 #: actions/openidsettings.php:93 msgid "Add OpenID" -msgstr "Voeg OpenID toe" +msgstr "OpenID toevoegen" #: ../lib/settingsaction.php:97 lib/settingsaction.php:91 #: lib/accountsettingsaction.php:117 msgid "Add or remove OpenIDs" -msgstr "Toevoegen en verwijderen van je OpenIDs" +msgstr "OpenID's toevoegen en verwijderen" #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 @@ -414,7 +417,7 @@ msgstr "Adres" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 #: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" -msgstr "Adressen van je vrienden om uit te nodigen (1 per regel)" +msgstr "Adressen van uit te nodigen vrienden (één per regel)" #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 @@ -441,30 +444,30 @@ msgstr "Alle updates die overeenkomen met de zoekterm \"%s\"" #: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 #: actions/login.php:79 msgid "Already logged in." -msgstr "Al ingelogd." +msgstr "U bent al aangemeld." #: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." -msgstr "Al geabonneerd!" +msgstr "U bent al geabonneerd!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 #: actions/deletenotice.php:113 actions/deletenotice.php:114 #: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" -msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" +msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 msgid "Authorize subscription" -msgstr "Sta abonnement toe" +msgstr "Abonneren" #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Voortaan automatisch inloggen; niet voor gemeenschappelijke computers!" +msgstr "Voortaan automatisch aanmelden. Niet gebruiken op gedeelde computers!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 @@ -472,7 +475,8 @@ msgstr "Voortaan automatisch inloggen; niet voor gemeenschappelijke computers!" msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" -"Automatisch een abonnement op wie abonneerd op mij (beste voor niet-mensen)" +"Automatisch abonneren bij abonnement op mij (beste voor automatische " +"processen)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -486,7 +490,7 @@ msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 #: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." -msgstr "Avatar geactualiseerd." +msgstr "De avatar is bijgewerkt." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 @@ -495,9 +499,9 @@ msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -"Wacht op bevestiging van dit adres. Controleer je Jabber/GTalk account op " -"een boodschap met nadere instructies. (Heb je %s aan je contactenlijst " -"toegevoegd?)" +"Er wordt gewacht op bevestiging van dit adres. Controleer uw Jabber/GTalk-" +"gebruiker op een bericht met nadere instructies. Hebt u %s aan uw " +"contactenlijst toegevoegd?" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 @@ -505,17 +509,17 @@ msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -"Wacht op bevestiging van dit adres. Controleer je mailbox en ook je spambox " -"voor een bericht met verdere instructies. " +"Er wordt gewacht op bevestiging van dit adres. Controleer uw inbox en uw " +"spambox voor een bericht met nadere instructies." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." -msgstr "Afwachtend op bevestiging van dit telefoonnummer" +msgstr "Er wordt gewacht op bevestiging van dit telefoonnummer." #: ../lib/util.php:1318 lib/util.php:1452 msgid "Before »" -msgstr "Eerder »" +msgstr "Voor »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 @@ -523,7 +527,7 @@ msgstr "Eerder »" #: actions/register.php:448 actions/profilesettings.php:127 #: actions/register.php:459 msgid "Bio" -msgstr "Biografie" +msgstr "Beschrijving" #: ../actions/profilesettings.php:101 ../actions/register.php:82 #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 @@ -532,18 +536,18 @@ msgstr "Biografie" #: actions/updateprofile.php:107 actions/updateprofile.php:109 #: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." -msgstr "Biografie is te lang (maximaal 140 tekens)" +msgstr "De beschrijving is te lang (maximaal 140 tekens)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 #: actions/deletenotice.php:71 msgid "Can't delete this notice." -msgstr "Kan dit bericht niet verwijderen." +msgstr "Deze mededeling kan niet verwijderd worden." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" -msgstr "Kan avatar-URL '%s' niet lezen" +msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 @@ -551,7 +555,7 @@ msgstr "Kan avatar-URL '%s' niet lezen" #: actions/passwordsettings.php:174 actions/recoverpassword.php:365 #: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." -msgstr "Kan nieuw wachtwoord niet opslaan." +msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." #: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 #: ../actions/smssettings.php:62 actions/emailsettings.php:58 @@ -560,17 +564,17 @@ msgstr "Kan nieuw wachtwoord niet opslaan." #: actions/smssettings.php:114 actions/emailsettings.php:117 #: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" -msgstr "Annuleer" +msgstr "Annuleren" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 #: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." -msgstr "Kan OpenID-consumerobject niet instantiëren." +msgstr "Het was niet mogelijk uw OpenID te verwerken." #: ../actions/imsettings.php:163 actions/imsettings.php:171 #: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" -msgstr "Kan die Jabber-ID niet normaliseren" +msgstr "Het was niet mogelijk om het Jabber-ID te normaliseren" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 #: actions/emailsettings.php:311 actions/emailsettings.php:318 @@ -581,27 +585,27 @@ msgstr "Kan het emailadres niet normaliseren" #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" -msgstr "Wijzig" +msgstr "Wijzigen" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 #: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" -msgstr "Wijzigen e-mail afhandeling" +msgstr "E-mailafhandeling wijzigen" #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" -msgstr "Wijzig wachtwoord" +msgstr "Wachtwoord wijzigen" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 #: lib/accountsettingsaction.php:115 msgid "Change your password" -msgstr "Wijzig jouw wachtwoord" +msgstr "Uw wachtwoord wijzigen" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 #: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" -msgstr "Wijzig jouw profiel gegevens" +msgstr "Uw profielgegevens wijzigen" #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 @@ -613,12 +617,12 @@ msgstr "Wijzig jouw profiel gegevens" #: actions/passwordsettings.php:111 actions/recoverpassword.php:239 #: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" -msgstr "Bevestig" +msgstr "Bevestigen" #: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 #: actions/confirmaddress.php:144 msgid "Confirm Address" -msgstr "Bevestig adres" +msgstr "Adres bevestigen" #: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 #: ../actions/smssettings.php:245 actions/emailsettings.php:256 @@ -638,7 +642,7 @@ msgstr "Bevestigingscode" #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." -msgstr "Bevestigingscode niet gevonden." +msgstr "De bevestigingscode niet gevonden." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 @@ -659,33 +663,33 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"Gefeliciteerd, %s! Welkom op de site: %%%%site.name%%%%. Vanaf hier je zult " -"misschien....\n" +"Gefeliciteerd, %s! Welkom bij %%%%site.name%%%%. Hier staan aan aantal " +"handelingen die u wellicht uit wilt voeren:\n" "\n" -"* Naar je [profiel](%s) gaan en je eerste bericht posten.\n" -"* een adres [Jabber/GTalk](%%%%action.imsettings%%%%) toevoegen zodat je " -"vandaaruit berichten kan verzenden.\n" -"* [Op zoek naar mensen](%%%%action.peoplesearch%%%%) die je misschien kent " -"en / of dezelfde interesse hebben of uit dezelfde plaats komen. \n" -"* Bijwerken van [je profiel](%%%%action.profilesettings%%%%) om andere meer " -"van jezelf te vertellen en een leuke foto te uploaden. \n" -"* Lees ook even de [online documenten](%%%%doc.help%%%%) met alle " -"mogelijkheden en hulp \n" +"* Naar uw [profiel](%s) gaan en uw eerste bericht verzenden;\n" +"* Een [Jabber/GTalk-adres](%%%%action.imsettings%%%%) toevoegen zodat u " +"vandaaruit mededelingen kunt verzenden;\n" +"* [Gebruikers zoeken](%%%%action.peoplesearch%%%%) die u al kent of waarmee " +"u interesses deelt;\n" +"* [Uw profiel](%%%%action.profilesettings%%%%) bijwerken om anderen meer " +"over uzelf te vertellen;\n" +"* De [online documentatie](%%%%doc.help%%%%) raadplegen voor mogelijkheden " +"die u nog niet kent.\n" "\n" -"Dank je wel voor het inschrijven op onze site en we hoen dat je een hele " -"leuke tijd hebt met deze service." +"Dank u wel voor het registreren en we hopen dat deze dienst u biedt wat u " +"ervan verwacht." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 #: lib/action.php:425 lib/action.php:435 msgid "Connect" -msgstr "Koppel" +msgstr "Koppelen" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 #: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" -msgstr "Koppel bestaand account" +msgstr "Bestaande gebruiker koppelen" #: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 #: lib/action.php:719 lib/action.php:734 @@ -696,7 +700,7 @@ msgstr "Contact" #: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" -msgstr "Kan geen OpenID aanmaken van: %s" +msgstr "Het was niet mogelijk het OpenID-formulier aan te maken: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 @@ -705,34 +709,33 @@ msgstr "Kan geen OpenID aanmaken van: %s" #: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "je kan deze persoon %s niet volgen omdat deze al je vriend is" +msgstr "U kunt de gebruiker %s niet volgen, omdat deze al op uw lijst staat." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 #: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." -msgstr "" -"Je kan de gebruiker niet volgen, we hebben deze gebruiker niet gevonden" +msgstr "U kunt de gebruiker %s niet volgen, omdat deze gebruiker niet bestaat." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" -msgstr "Kon niet omleiden naar service: %s" +msgstr "Het was niet mogelijk om door te verwijzen naar de server: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 #: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" -msgstr "Kon avatar informatie niet opslaan" +msgstr "De avatarinformatie kon niet opgeslagen worden" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 #: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" -msgstr "Kon de nieuwe profiel informatie niet opslaan" +msgstr "De nieuwe profielinformatie kon niet opgeslagen worden" #: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." -msgstr "Kan geen abonnee toewijzen aan je" +msgstr "Het was niet mogelijk om een ander op u te laten abonneren" #: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." @@ -741,16 +744,15 @@ msgstr "Kan niet abonneren " #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "Kan de gebruiker niet aan het bevestigde mailadres bijwerken" +msgstr "" +"Het was niet mogelijk het bevestigde e-mailadres voor de gebruiker bij te " +"werken." -# tokens zou vervangen moeten worden dus -# tokens need to be replaced #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -#, fuzzy msgid "Couldn't convert request tokens to access tokens." msgstr "" -"Kan niet converteren verzoek om tokens om toegang te krijgen tot de tokens" +"Het was niet mogelijk de verzoekentokens om te zetten naar toegangstokens." #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -761,7 +763,7 @@ msgstr "" #: actions/emailsettings.php:382 actions/emailsettings.php:390 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." -msgstr "Kon e-mailbevestiging niet verwijderen." +msgstr "De e-mailbevestiging kon niet verwijderd worden." #: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." @@ -772,12 +774,10 @@ msgstr "Kon abonnement niet verwijderen." msgid "Couldn't find any statuses." msgstr "Kan geen ene status vinden" -# Token need to be replaced #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 -#, fuzzy msgid "Couldn't get a request token." -msgstr "Kan geen verzoek om token krijgen" +msgstr "Het was niet mogelijk een verzoektoken te krijgen." #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 @@ -787,7 +787,7 @@ msgstr "Kan geen verzoek om token krijgen" #: actions/emailsettings.php:352 actions/imsettings.php:317 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." -msgstr "Kon bevestigingscode niet toevoegen" +msgstr "De bevestigingscode kon niet ingevoegd worden." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 @@ -800,12 +800,14 @@ msgstr "Kon nieuw abonnement niet toevoegen." #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 #: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." -msgstr "Kon profiel niet opslaan." +msgstr "Het profiel kon niet opgeslagen worden." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 #: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." -msgstr "kan de automatische inschrijving niet verwerken" +msgstr "" +"Het was niet mogelijk de instelling voor automatisch abonneren voor de " +"gebruiker bij te werken." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 @@ -848,34 +850,34 @@ msgstr "Aanmaken" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 #: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." -msgstr "Maak een nieuwe gebruiker aan met deze gebruikersnaam." +msgstr "Nieuwe gebruiker aanmaken met deze gebruikersnaam." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 #: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" -msgstr "Maak een nieuw account aan" +msgstr "Nieuw gebruiker aanmaken" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "" -"Bezig nieuw account aan te maken voor OpenID waarvoor al een " -"gebruikersaccount bestaat." +"Bezig met het aanmaken van een nieuwe OpenID-gebruiker bij een bestaande " +"gebruiker." #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." -msgstr "Huidig bevestigd Jabber/GTalk adres." +msgstr "Huidige bevestigde Jabber/GTalk adres." #: ../actions/smssettings.php:46 actions/smssettings.php:46 #: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." -msgstr "Huidig bevestigd SMS-ingevoerd telefoonnummer." +msgstr "Huidige bevestigde telefoonnummer met SMS-functie." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 #: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." -msgstr "Huidig bevestigd emailadres" +msgstr "Huidige bevestigde e-mailadres" #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" @@ -885,26 +887,27 @@ msgstr "Op dit moment" #: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" -msgstr "Database fout van de invoer hashtag: %s" +msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" -msgstr "Database-fout bij toevoegen antwoord: %s" +msgstr "" +"Er is een databasefout opgetreden bij het invoegen van het antwoord: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 #: actions/deletenotice.php:79 actions/deletenotice.php:111 #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" -msgstr "Verwijderd bericht" +msgstr "Mededeling verwijderen" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 #: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" -msgstr "Beschrijf jezelf en je interesses in 140 tekens" +msgstr "Beschrijf uzelf en uw interesses in 140 tekens" #: ../actions/register.php:158 ../actions/register.php:161 #: ../lib/settingsaction.php:87 actions/register.php:172 @@ -918,97 +921,100 @@ msgstr "E-mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 #: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" -msgstr "Email adres" +msgstr "E-mailadres" #: ../actions/emailsettings.php:32 actions/emailsettings.php:32 #: actions/emailsettings.php:60 msgid "Email Settings" -msgstr "Email instellingen" +msgstr "E-mailinstellingen" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." -msgstr "E-mailadres bestaat al." +msgstr "Het e--mailadres bestaat al." #: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" -msgstr "Bevestiging e-mailadres" +msgstr "E-mailadresbevestiging" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 #: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" -msgstr "Email adres, zoals \"gebruikersnaam@voorbeeld.net\"" +msgstr "E-mailadres, zoals \"gebruikersnaam@example.com\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 #: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" -msgstr "Email adressen" +msgstr "E-mailadressen" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." -msgstr "Voer een gebruikersnaam of e-mailadres in" +msgstr "Voer een gebruikersnaam of e-mailadres in." #: ../actions/smssettings.php:64 actions/smssettings.php:64 #: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." -msgstr "Voer de code in die je kreeg via je telefoon" +msgstr "Voer de code in die u via uw telefoon hebt ontvangen." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" -msgstr "Fout bij autoriseren token" +msgstr "Er is een fout opgetreden tijdens het autoriseren van het token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 #: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 #: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." -msgstr "Fout bij koppelen gebruiker aan OpenID." +msgstr "" +"Er is een fout opgetreden tijdens het koppelen van de gebruiker aan OpenID." #: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 #: actions/finishaddopenid.php:126 msgid "Error connecting user." -msgstr "Fout bij koppelen gebruiker." +msgstr "Er is een fout opgetreden bij het koppelen van de gebruiker." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 #: lib/oauthstore.php:291 msgid "Error inserting avatar" -msgstr "Fout bij toevoegen avatar" +msgstr "Er is een fout opgetreden bij het toevoegen van de avatar" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 #: lib/oauthstore.php:283 msgid "Error inserting new profile" -msgstr "Fout bij toevoegen nieuw profiel" +msgstr "Er is een fout opgetreden tijdens het invoegen van een nieuw profiel" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 #: lib/oauthstore.php:311 msgid "Error inserting remote profile" -msgstr "Fout bij toevoegen profiel op afstand" +msgstr "" +"Er is een fout opgetreden tijdens het invoegen in het profiel op afstand." #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 #: actions/recoverpassword.php:280 actions/recoverpassword.php:298 #: actions/recoverpassword.php:301 msgid "Error saving address confirmation." -msgstr "Fout bij opslaan adresbevestiging." +msgstr "Er is een fout opgetreden bij het opslaan van de adresbevestiging." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 #: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" -msgstr "Fout bij opslaan profiel op afstand" +msgstr "" +"Er is een fout opgetreden tijdens het opslaan van het profiel op afstand." #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 #: lib/openid.php:238 msgid "Error saving the profile." -msgstr "Fout bij opslaan van het profiel." +msgstr "Er is een fout opgetreden bij het opslaan van het profiel." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 #: lib/openid.php:249 msgid "Error saving the user." -msgstr "Fout bij opslaan van de gebruiker." +msgstr "Er is een fout opgetreden bij het opslaan van de gebruiker." #: ../actions/password.php:80 actions/profilesettings.php:399 #: actions/passwordsettings.php:164 actions/passwordsettings.php:169 @@ -1025,28 +1031,29 @@ msgstr "Fout bij opslaan gebruiker; ongeldig." #: actions/register.php:235 actions/login.php:122 #: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." -msgstr "Fout bij instellingen gebruiker." +msgstr "Er is een fout opgetreden tijdens het instellen van de gebruiker." #: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 #: actions/finishaddopenid.php:131 msgid "Error updating profile" -msgstr "Fout bij actualiseren profiel" +msgstr "Er is een fout opgetreden tijdens het bijwerken van het profiel" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 #: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" -msgstr "Fout bij actualiseren profiel op afstand" +msgstr "" +"Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." #: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 #: actions/recoverpassword.php:86 msgid "Error with confirmation code." -msgstr "Fout bij bevestigingscode." +msgstr "Er is een fout opgetreden die te maken heeft met de bevestigingscode." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 #: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" -msgstr "Gebruikersnaam bestaat al" +msgstr "De gebruikersnaam bestaat al" #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 #: lib/action.php:708 lib/action.php:723 @@ -1056,7 +1063,7 @@ msgstr "Veelgestelde vragen" #: ../actions/avatar.php:115 actions/profilesettings.php:352 #: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." -msgstr "Actualiseren avatar niet gelukt." +msgstr "Het bijwerken van de avatar is mislukt." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 @@ -1076,25 +1083,25 @@ msgstr "Feed voor antwoorden aan %s" #: actions/tag.php:68 #, php-format msgid "Feed for tag %s" -msgstr "Feed voor tag %s" +msgstr "Feed voor label %s" #: ../lib/searchaction.php:105 lib/searchaction.php:105 #: lib/searchgroupnav.php:83 msgid "Find content of notices" -msgstr "Vind de inhoud van een bericht" +msgstr "Inhoud van mededelingen vinden" #: ../lib/searchaction.php:101 lib/searchaction.php:101 #: lib/searchgroupnav.php:81 msgid "Find people on this site" -msgstr "Vind mensen op deze site" +msgstr "Gebruikers op deze site vinden" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." msgstr "" -"Om veiligheidsredenen vragen we je je gebruikersnaam en wachtwoord nogmaals " -"in te voeren alvorens je instellingen te veranderen." +"Om veiligheidsredenen moet u uw gebruikersnaam en wachtwoord nogmaals " +"invoeren alvorens u uw instellingen kunt wijzigen." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1121,7 +1128,7 @@ msgstr "Volledige naam" #: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/register.php:214 msgid "Full name is too long (max 255 chars)." -msgstr "Volledige naam is te lang (maximaal 255 tekens)" +msgstr "De volledige naam is te lang (maximaal 255 tekens)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 #: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 @@ -1133,7 +1140,7 @@ msgstr "Help" #: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 #: lib/action.php:417 lib/action.php:430 msgid "Home" -msgstr "Home" +msgstr "Thuis" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 @@ -1142,7 +1149,7 @@ msgstr "Home" #: lib/groupeditform.php:161 actions/profilesettings.php:115 #: actions/register.php:446 msgid "Homepage" -msgstr "Homepage" +msgstr "Thuispagina" #: ../actions/profilesettings.php:95 ../actions/register.php:76 #: actions/profilesettings.php:210 actions/register.php:83 @@ -1154,13 +1161,13 @@ msgstr "Homepage" #: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/register.php:211 msgid "Homepage is not a valid URL." -msgstr "Homepage is geen geldige URL" +msgstr "De thuispagina is geen geldige URL." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 #: actions/emailsettings.php:173 actions/emailsettings.php:178 #: actions/emailsettings.php:185 msgid "I want to post notices by email." -msgstr "Ik wil een bericht posten per email" +msgstr "Ik wil mededelingen per e-mail versturen." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 #: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 @@ -1183,50 +1190,50 @@ msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" -"Als je al een account hebt, log dan in met je gebruikersnaam en wachtwoord " -"om het aan je OpenID te koppelen." +"Als u al een gebruiker hebt, meld dan aan met uw gebruikersnaam en " +"wachtwoord om met uw OpenID te koppelen." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." msgstr "" -"Als je een OpenID aan je account wilt toevoegen, vul het dan in het veld " -"hieronder in en klik op \"Voeg toe\"." +"Als u een OpenID aan uw gebruiker wilt toevoegen, vul het dan in het veld " +"hieronder in en klik op \"Toevoegen\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." msgstr "" -"Als je je paswoord vergeten of verloren bent, kan je hier een nieuwe " -"aanvragen naar het mailadres dat bij ons _ _ opgeslagen is in je account." +"Als u uw wachwoord kwijt bent, dan kunnen we u een nieuw wachtwoord sturen " +"op het e-mailadres dat u bij uw gebruiker hebt geregistreerd." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 #: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" -msgstr "Binnenkomende mail" +msgstr "Inkomende e-mail" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 #: actions/emailsettings.php:443 actions/emailsettings.php:450 #: actions/smssettings.php:518 actions/smssettings.php:519 #: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." -msgstr "Binnenkomende mailadres is verwijderd" +msgstr "Het e-mailadres voor inkomende mail is verwijderd." #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 #: actions/passwordsettings.php:164 msgid "Incorrect old password" -msgstr "Incorrect oud wachtwoord" +msgstr "Het oude wachtwoord is onjuist" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 #: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 #: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." -msgstr "Incorrecte gebruikersnaam of wachtwoord." +msgstr "De gebruikersnaam of wachtwoord is onjuist." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 @@ -1234,37 +1241,37 @@ msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." msgstr "" -"Instructies om je wachtwoord te herstellen zijn verstuurd naar het e-" -"mailadres dat voor je account is geregistreerd." +"De instructies om uw wachtwoord te herstellen zijn verstuurd naar het e-" +"mailadres dat voor uw gebruiker is geregistreerd." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" -msgstr "Ongeldige avatar-URL '%s'" +msgstr "Ongeldige avatar-URL \"%s\"" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 #: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" -msgstr "Ongeldig Email adres: %s" +msgstr "Ongeldig e-mailadres: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" -msgstr "Ongeldige homepage '%s'" +msgstr "Ongeldige thuspagina \"%s\"" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 #: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" -msgstr "Ongeldige licentie-URL '%s'" +msgstr "Ongeldige licentie-URL \"%s\"" #: ../actions/postnotice.php:61 actions/postnotice.php:62 #: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" -msgstr "Ongeldige berichtinhoud" +msgstr "Ongeldige mededelinginhoud" #: ../actions/postnotice.php:67 actions/postnotice.php:68 #: actions/postnotice.php:72 @@ -1280,22 +1287,22 @@ msgstr "Ongeldige bericht-URL" #: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." -msgstr "Ongeldige profiel-URL '%s'." +msgstr "Ongeldige profiel-URL \"%s\"." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 #: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" -msgstr "Ongeldige profiel-URL (foutieve syntax)" +msgstr "Ongeldige profiel-URL (foutieve opmaak)" #: ../actions/finishremotesubscribe.php:77 #: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 msgid "Invalid profile URL returned by server." -msgstr "Ongeldige profiel-URL teruggestuurd door de server." +msgstr "Er is een ongeldige profiel-URL teruggestuurd door de server." #: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." -msgstr "Ongeldige afmeting." +msgstr "Ongeldige afmetingen." #: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 #: ../actions/register.php:111 actions/finishopenidlogin.php:241 @@ -1310,12 +1317,12 @@ msgstr "Ongeldige gebruikersnaam of wachtwoord." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 #: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" -msgstr "Uitnodiging(en) verzonden" +msgstr "De uitnodiging(en) zijn verzonden" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 #: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" -msgstr "Uitnodiging(en) verzonden an de volgende mensen:" +msgstr "Uitnodiging(en) zijn verzonden aan de volgende mensen:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 #: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 @@ -1326,7 +1333,7 @@ msgstr "Uitnodigen" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 #: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" -msgstr "Nodig nieuwe gebruikers uit" +msgstr "Nieuwe gebruikers uitnodigen" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 @@ -1336,14 +1343,14 @@ msgid "" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Het draait op de [StatusNet](http://status.net/) microbloggingsoftware " +"De site werkt met de [StatusNet](http://status.net/) microblogsoftware, " "versie %s, beschikbaar onder de [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." -msgstr "Jabber-ID al in gebruik bij een andere gebruiker" +msgstr "Het Jabber-ID wordt al gebruikt door een andere gebruiker." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 @@ -1365,7 +1372,7 @@ msgstr "Taal" #: actions/profilesettings.php:217 actions/profilesettings.php:218 #: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." -msgstr "Taal is te lang (max 50 karaketers)" +msgstr "Taal is te lang (max 50 tekens)." #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -1410,7 +1417,7 @@ msgstr "Locatie is te lang (maximaal 255 tekens)." #: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" -msgstr "Inloggen" +msgstr "Aanmelden" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 #: actions/openidlogin.php:62 actions/openidlogin.php:70 @@ -1458,7 +1465,6 @@ msgstr "Maak een nieuw emailadres aan voor te posten naar; verwijder de oude." msgid "Manage how you get email from %%site.name%%." msgstr "Geef hier aan hoe je de notificaties wilt van %%site.name%%." -# String should contain a variable token for since 'when' #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -3097,13 +3103,13 @@ msgstr "" #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 -#, fuzzy, php-format +#, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"Je kunt berichten verzenden en ontvangen via Jabber/GTalk [instant messages]" -"(%%doc.im%%). Configureer je adres en instellingen hieronder." +"U kunt berichten verzenden en ontvangen via Jabber/GTalk [\"instant messages" +"\"](%%doc.im%%). Maak hieronder uw instellingen." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 @@ -3859,7 +3865,7 @@ msgstr "" #: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" -msgstr "" +msgstr "Over: %s" #: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 #: lib/command.php:221 @@ -3899,7 +3905,7 @@ msgstr "" #: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" -msgstr "" +msgstr "Uw abonnement op %s is opgezegd" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 #: classes/Command.php:376 lib/command.php:353 lib/command.php:376 @@ -3916,7 +3922,7 @@ msgstr "" #: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 #: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." -msgstr "" +msgstr "Het is niet mogelijk de mededelingen uit te schakelen." #: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 #: lib/command.php:372 lib/command.php:574 @@ -3986,65 +3992,64 @@ msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: lib/personalgroupnav.php:115 msgid "User" -msgstr "" +msgstr "Gebruiker" #: lib/personal.php:75 lib/personalgroupnav.php:123 #: lib/personalgroupnav.php:124 msgid "Inbox" -msgstr "" +msgstr "Postvak IN" #: lib/personal.php:76 lib/personalgroupnav.php:124 #: lib/personalgroupnav.php:125 msgid "Your incoming messages" -msgstr "" +msgstr "Uw inkomende berichten" #: lib/personal.php:80 lib/personalgroupnav.php:128 #: lib/personalgroupnav.php:129 msgid "Outbox" -msgstr "" +msgstr "Postvak UIT" #: lib/personal.php:81 lib/personalgroupnav.php:129 #: lib/personalgroupnav.php:130 msgid "Your sent messages" -msgstr "" +msgstr "Uw verzonden berichten" #: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 msgid "Twitter" -msgstr "" +msgstr "Twitter" #: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 msgid "Twitter integration options" -msgstr "" +msgstr "Twitter integratieinstellingen" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 #: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 #: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" -msgstr "" +msgstr "Aan" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 #: scripts/maildaemon.php:47 msgid "Could not parse message." -msgstr "" +msgstr "Het was niet mogelijk het bericht te verwerken." #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format msgid "%s and friends, page %d" -msgstr "%s en vrienden" +msgstr "%s en vrienden, pagina %d" #: actions/avatarsettings.php:76 msgid "You can upload your personal avatar." -msgstr "" +msgstr "U kunt uw persoonlijke avatar uploaden." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 #: actions/grouplogo.php:251 -#, fuzzy msgid "Avatar settings" -msgstr "Instellingen" +msgstr "Avatarinstellingen" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 @@ -4052,7 +4057,7 @@ msgstr "Instellingen" #: actions/grouplogo.php:204 actions/grouplogo.php:264 #: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" -msgstr "" +msgstr "Origineel" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 @@ -4060,13 +4065,13 @@ msgstr "" #: actions/grouplogo.php:215 actions/grouplogo.php:276 #: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" -msgstr "" +msgstr "Voorvertoning" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 #: actions/avatarsettings.php:228 actions/grouplogo.php:291 #: actions/grouplogo.php:286 msgid "Crop" -msgstr "" +msgstr "Uitsnijden" #: actions/avatarsettings.php:248 actions/deletenotice.php:133 #: actions/emailsettings.php:224 actions/grouplogo.php:307 @@ -4078,7 +4083,7 @@ msgstr "" #: actions/subedit.php:38 actions/twittersettings.php:290 #: actions/userauthorization.php:39 msgid "There was a problem with your session token. " -msgstr "" +msgstr "Er was een probleem met uw sessietoken. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 #: actions/avatarsettings.php:308 @@ -4089,14 +4094,13 @@ msgstr "" #: actions/avatarsettings.php:323 actions/grouplogo.php:382 #: actions/grouplogo.php:377 msgid "Lost our file data." -msgstr "" +msgstr "Ons databestand is verloren gegaan." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 -#, fuzzy msgid "Lost our file." -msgstr "Onbekend bericht." +msgstr "Het bestand is zoekgeraakt." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 @@ -4104,62 +4108,60 @@ msgstr "Onbekend bericht." #: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 #: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" -msgstr "" +msgstr "Onbekend bestandstype" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 msgid "No profile specified." -msgstr "" +msgstr "Er is geen profiel opgegeven." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 #: actions/unblock.php:75 actions/groupblock.php:76 #: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." -msgstr "" +msgstr "Er is geen profiel met dat ID." #: actions/block.php:111 actions/block.php:134 -#, fuzzy msgid "Block user" -msgstr "Onbekende gebruiker." +msgstr "Gebruiker blokkeren" #: actions/block.php:129 msgid "Are you sure you want to block this user? " msgstr "" #: actions/block.php:162 actions/block.php:165 -#, fuzzy msgid "You have already blocked this user." -msgstr "Je bent al aangemeld!" +msgstr "U hebt deze gebruiker reeds geblokkeerd." #: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format msgid "The address \"%s\" has been " -msgstr "Het adres was verwijderd." +msgstr "Het adres \"%s\" is " #: actions/deletenotice.php:73 msgid "You are about to permanently delete a notice. " -msgstr "" +msgstr "U staat op het punt een kennisgeving permanent te verwijderen. " #: actions/disfavor.php:94 msgid "Add to favorites" -msgstr "" +msgstr "Aan favorieten toevoegen" #: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" -msgstr "" +msgstr "Groep %s bewerken" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 #: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 #: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" -msgstr "" +msgstr "Postvak IN moet ingeschakeld zijn voordat groepen kunnen werken" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 @@ -4174,9 +4176,8 @@ msgstr "" #: actions/groupdesignsettings.php:89 actions/showgroup.php:126 #: actions/editgroup.php:84 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy msgid "No nickname" -msgstr "Geen gebruikersnaam." +msgstr "Geen gebruikersnaam" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 @@ -4186,9 +4187,8 @@ msgstr "Geen gebruikersnaam." #: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 #: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy msgid "No such group" -msgstr "Onbekend bericht." +msgstr "Deze groep bestaat niet" #: actions/editgroup.php:106 actions/editgroup.php:165 #: actions/grouplogo.php:107 actions/grouplogo.php:111 @@ -4197,40 +4197,34 @@ msgstr "Onbekend bericht." #: actions/editgroup.php:168 actions/groupdesignsettings.php:104 #: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" -msgstr "" +msgstr "U moet beheerder zijn om de groep te kunnen bewerken" #: actions/editgroup.php:157 actions/editgroup.php:159 #: actions/editgroup.php:154 msgid "Use this form to edit the group." -msgstr "" +msgstr "Gebruik dit formulier om de groep te bewerken." #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "" -"Gebruikersnaam moet bestaan uit alleen kleine letters en cijfers en geen " -"spaties." +msgstr "De gebruikersnaam moet bestaan uit alleen kleine letters " #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy msgid "description is too long (max 140 chars)." -msgstr "Biografie is te lang (maximaal 140 tekens)" +msgstr "de beschrijving is te lang (maximaal 140 tekens)." #: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy msgid "Could not update group." -msgstr "Kon gebruiker niet actualiseren." +msgstr "Het was niet mogelijk de groep bij te werken." #: actions/editgroup.php:226 actions/editgroup.php:269 -#, fuzzy msgid "Options saved." -msgstr "Instellingen opgeslagen." +msgstr "De instellingen zijn opgeslagen." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format msgid "Awaiting confirmation on this address. " -msgstr "Fout bij bevestigingscode." +msgstr "Dit adres wacht nog op bevestiging. " #: actions/emailsettings.php:139 actions/smssettings.php:150 msgid "Make a new email address for posting to; " @@ -4246,16 +4240,14 @@ msgid "Allow friends to nudge me and send me an email." msgstr "" #: actions/emailsettings.php:321 -#, fuzzy msgid "That email address already belongs " -msgstr "E-mailadres bestaat al." +msgstr "Dat e-mailadres hoort al bij " #: actions/emailsettings.php:343 -#, fuzzy msgid "A confirmation code was sent to the email address you added. " msgstr "" -"Een bevestigingscode is verstuurd naar het opgegeven IM-adres. Je moet ermee " -"accoord gaan dat %s boodschappen aan jou stuurt." +"Er is een bevestigingscode verzonden naar het e-mailadres dat u hebt " +"opgegeven. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" @@ -4274,36 +4266,33 @@ msgstr "" #: actions/facebookhome.php:218 actions/facebookhome.php:223 #: actions/facebookhome.php:217 msgid "Skip" -msgstr "" +msgstr "Overslaan" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 -#, fuzzy msgid "No notice content!" -msgstr "Geen inhoud!" +msgstr "De kennisgeving heeft geen inhoud!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 #: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 #: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 #: lib/action.php:1053 msgid "Pagination" -msgstr "" +msgstr "Paginering" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 #: lib/action.php:1062 -#, fuzzy msgid "After" -msgstr "« Later" +msgstr "Na" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 #: lib/action.php:1070 -#, fuzzy msgid "Before" -msgstr "Eerder »" +msgstr "Voor" #: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format @@ -4322,9 +4311,9 @@ msgstr "" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format msgid "Invite your friends to use %s" -msgstr "Feed voor vrienden van %s" +msgstr "Uw vrienden uitnodigen %s te gebruiken" #: actions/facebookinvite.php:113 actions/facebookinvite.php:126 #: actions/facebookinvite.php:124 @@ -4339,18 +4328,16 @@ msgid "Send invitations" msgstr "" #: actions/facebookremove.php:56 -#, fuzzy msgid "Couldn't remove Facebook user." -msgstr "Kon gebruiker niet actualiseren." +msgstr "Het was niet mogelijk de Facebook-gebruiker te verwijderen." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" msgstr "" #: actions/facebooksettings.php:67 -#, fuzzy msgid "Sync preferences saved." -msgstr "Voorkeuren opgeslagen." +msgstr "De synchronisatievoorkeuren zijn opgeslagen." #: actions/facebooksettings.php:90 msgid "Automatically update my Facebook status with my notices." @@ -4361,9 +4348,8 @@ msgid "Send \"@\" replies to Facebook." msgstr "" #: actions/facebooksettings.php:106 -#, fuzzy msgid "Prefix" -msgstr "Profiel" +msgstr "Voorvoegsel" #: actions/facebooksettings.php:108 msgid "A string to prefix notices with." @@ -4375,26 +4361,24 @@ msgid "If you would like %s to automatically update " msgstr "" #: actions/facebooksettings.php:147 -#, fuzzy msgid "Sync preferences" -msgstr "Voorkeuren" +msgstr "Synchronisatievoorkeuren" #: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" -msgstr "" +msgstr "Favoriet verwijderen" #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 #: lib/popularnoticesection.php:87 -#, fuzzy msgid "Popular notices" -msgstr "Populaire berichten" +msgstr "Populaire kennisgevingen" #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format msgid "Popular notices, page %d" -msgstr "Populaire berichten, pagina %d" +msgstr "Populaire kennisgevingen, pagina %d" #: actions/favorited.php:79 msgid "The most popular notices on the site right now." @@ -4647,9 +4631,8 @@ msgid "Manage various other options." msgstr "Beheer verschillende andere optie´s" #: actions/othersettings.php:93 -#, fuzzy msgid "URL Auto-shortening" -msgstr "URL auto-sorteren" +msgstr "URL's automatisch inkorten" #: actions/othersettings.php:112 msgid "Service" @@ -4724,7 +4707,7 @@ msgstr "Openbare tijdlijn, pagina %d" #: actions/public.php:173 actions/public.php:184 actions/public.php:210 #: actions/public.php:92 msgid "Could not retrieve public stream." -msgstr "" +msgstr "Het was niet mogelijk de publieke stream op te halen." #: actions/public.php:220 #, php-format @@ -4808,7 +4791,7 @@ msgstr "Antwoorden aan %s, pagina %d" #: actions/showfavorites.php:79 #, php-format msgid "%s favorite notices, page %d" -msgstr "" +msgstr "%s favoriete kennisgevingen, pagina %d" #: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format @@ -4857,7 +4840,6 @@ msgstr "Groeps aktie" msgid "Notice feed for %s group" msgstr "Berichten-feed voor groep %s" -# String should contain a variable token for since 'when' #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 #: actions/showgroup.php:430 actions/showgroup.php:381 @@ -4950,89 +4932,82 @@ msgid "Phone number, no punctuation or spaces, " msgstr "Telefoonnummer, geen leestekens of spaties,_" #: actions/smssettings.php:162 -#, fuzzy msgid "Send me notices through SMS; " -msgstr "Stuur mij berichten via Jabber/GTalk." +msgstr "Kennisgevingen via SMS naar mij sturen; " #: actions/smssettings.php:335 -#, fuzzy msgid "A confirmation code was sent to the phone number you added. " -msgstr "Die bevestigingscode is niet voor jou!" +msgstr "" +"Er is een bevestigingscode verstuurd naar het telefoonnummer dat u hebt " +"opgegeven. " #: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" -msgstr "" +msgstr "Mobiele aanbieder" #: actions/subedit.php:70 -#, fuzzy msgid "You are not subscribed to that profile." -msgstr "Je hebt dat profiel niet ingezonden" +msgstr "U bent niet geabonneerd op dat profiel." #: actions/subedit.php:83 -#, fuzzy msgid "Could not save subscription." -msgstr "Kon abonnement niet aanmaken." +msgstr "Het was niet mogelijk het abonnement op te slaan." #: actions/subscribe.php:55 -#, fuzzy msgid "Not a local user." -msgstr "Onbekende gebruiker." +msgstr "Dit is geen lokale gebruiker." #: actions/subscribe.php:69 -#, fuzzy msgid "Subscribed" -msgstr "Abonneren" +msgstr "Geabonneerd" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format msgid "%s subscribers" -msgstr "Abonnees" +msgstr "%s abonnees" #: actions/subscribers.php:52 #, php-format msgid "%s subscribers, page %d" -msgstr "" +msgstr "%s abonnees, pagina %d" #: actions/subscribers.php:63 -#, fuzzy msgid "These are the people who listen to " -msgstr "Dit zijn de mensen die %s's berichten volgen." +msgstr "Dit zijn de gebruikers die luisteren naar " #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format msgid "These are the people who " -msgstr "Dit zijn de mensen die %s's berichten volgen." +msgstr "Dit zijn de gebruikers die " #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format msgid "%s subscriptions" -msgstr "Alle abonnementen" +msgstr "%s abonnementen" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format msgid "%s subscriptions, page %d" -msgstr "Alle abonnementen" +msgstr "%s abonnementen, pagina %d" #: actions/subscriptions.php:65 -#, fuzzy msgid "These are the people whose notices " -msgstr "Dit zijn de mensen van wie %s de berichten volgt." +msgstr "Dit zijn de gebruikers wiens kennsigevingen " #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format msgid "These are the people whose " -msgstr "Dit zijn de mensen die %s's berichten volgen." +msgstr "Dit zijn de gebruikers wiens " #: actions/subscriptions.php:122 actions/subscriptions.php:124 #: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy msgid "Jabber" -msgstr "Geen Jabber-ID." +msgstr "Jabber" #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format msgid "Notices tagged with %s, page %d" -msgstr "Microblog van %s" +msgstr "Kennisgevingen met het label %s, pagina %d" #: actions/tag.php:66 actions/tag.php:73 #, php-format @@ -5040,23 +5015,21 @@ msgid "Messages tagged \"%s\", most recent first" msgstr "" #: actions/tagother.php:33 -#, fuzzy msgid "Not logged in" -msgstr "Niet ingelogd." +msgstr "Niet aangemeld." #: actions/tagother.php:39 -#, fuzzy msgid "No id argument." -msgstr "Onbekend document." +msgstr "Geen ID-argument." #: actions/tagother.php:65 #, php-format msgid "Tag %s" -msgstr "" +msgstr "Label %s" #: actions/tagother.php:141 msgid "Tag user" -msgstr "" +msgstr "Gebruiker labelen" #: actions/tagother.php:149 actions/tagother.php:151 msgid "" @@ -5074,156 +5047,148 @@ msgid "" msgstr "" #: actions/tagother.php:198 actions/tagother.php:200 -#, fuzzy msgid "Could not save tags." -msgstr "Kon avatarinformatie niet opslaan" +msgstr "Het was niet mogelijk de labels op te slaan." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" #: actions/tagrss.php:35 -#, fuzzy msgid "No such tag." -msgstr "Onbekend bericht." +msgstr "Onbekend label." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format msgid "Microblog tagged with %s" -msgstr "Microblog van %s" +msgstr "Microblog met label %s" #: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 #: actions/apiblockcreate.php:108 msgid "Block user failed." -msgstr "" +msgstr "Het blokkeren van de gebruiker is mislukt." #: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 #: actions/apiblockdestroy.php:107 msgid "Unblock user failed." -msgstr "" +msgstr "Het deblokkeren van de gebruiker is mislukt." #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 -#, fuzzy msgid "Not found." -msgstr "Geen verzoek gevonden!" +msgstr "Niet aangetroffen." #: actions/twittersettings.php:71 msgid "Add your Twitter account to automatically send " -msgstr "" +msgstr "Uw Twitter-gebruiker toevoegen om automatisch " #: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" -msgstr "" +msgstr "Gebruikersnaam bij Twitter" #: actions/twittersettings.php:126 actions/twittersettings.php:129 -#, fuzzy msgid "Twitter password" -msgstr "Nieuw wachtwoord" +msgstr "Twitter-wachtwoord" #: actions/twittersettings.php:228 actions/twittersettings.php:232 #: actions/twittersettings.php:248 msgid "Twitter Friends" -msgstr "" +msgstr "Twitter-vrienden" #: actions/twittersettings.php:327 msgid "Username must have only numbers, " -msgstr "" +msgstr "Gebruikersnamen moeten uit alleen getallen bestaan, " #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format msgid "Unable to retrieve account information " -msgstr "Kon e-mailbevestiging niet verwijderen." +msgstr "Het was niet mogelijk om de gebruikersinformatie op te halen. " #: actions/unblock.php:108 actions/groupunblock.php:128 -#, fuzzy msgid "Error removing the block." -msgstr "Fout bij opslaan van de gebruiker." +msgstr "Er is een fout opgetreden bij het verwijderen van de blokkade." #: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy msgid "No profile id in request." -msgstr "Geen profiel-URL teruggestuurd door de server." +msgstr "Het profiel-ID was niet aanwezig in het verzoek." #: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -#, fuzzy msgid "No profile with that id." -msgstr "Profiel op afstand zonder overeenkomend profiel" +msgstr "Er is geen profiel met dat ID." #: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -#, fuzzy msgid "Unsubscribed" -msgstr "Abonnement opheffen" +msgstr "Abonnement opgezegd" #: actions/usergroups.php:63 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" -msgstr "" +msgstr "%s groepen" #: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" -msgstr "" +msgstr "%s groepen, pagina %d" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 -#, fuzzy msgid "Problem saving notice. Unknown user." -msgstr "Probleem bij opslaan bericht." +msgstr "" +"Er was een probleem bij het opslaan vna de kennisgeving. De gebruiker is " +"onbekend." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" +"U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer " +"het over enige tijd weer." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 msgid "You are banned from posting notices on this site." -msgstr "" +msgstr "U mag geen mededelingen meer achterlaten op deze site." #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -#, fuzzy msgid "Upload an avatar" -msgstr "Actualiseren avatar niet gelukt." +msgstr "Avatar uploaden" #: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 #: lib/accountsettingsaction.php:123 msgid "Other" -msgstr "" +msgstr "Overige" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 #: lib/accountsettingsaction.php:124 msgid "Other options" -msgstr "" +msgstr "Overige instellingen" #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" -msgstr "" +msgstr "%s - %s" #: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" -msgstr "" +msgstr "Naamloze pagina" #: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" -msgstr "" +msgstr "Primaire sitenavigatie" #: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" -msgstr "" +msgstr "Persoonlijk profiel en tijdlijn van vrienden" #: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" -msgstr "" +msgstr "Naar gebruikers of tekst zoeken" -# This would be appropriate for the footer menu link (actual context isn't clear!) #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy msgid "Account" -msgstr "Over ons" +msgstr "Gebruiker" #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" @@ -5231,77 +5196,70 @@ msgstr "" #: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" -msgstr "" +msgstr "Met IM, SMS of Twitter verbinden" #: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" -msgstr "" +msgstr "Van de site afmelden" #: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" -msgstr "" +msgstr "Bij de site aanmelden" #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy msgid "Create an account" -msgstr "Maak een nieuw account aan" +msgstr "Gebruiker aanmaken" #: lib/action.php:341 lib/action.php:418 -#, fuzzy msgid "Login with OpenID" -msgstr "Die OpenID is niet bekend." +msgstr "Aanmelden met OpenID" #: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy msgid "Help me!" -msgstr "Help" +msgstr "Help me!" #: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy msgid "Site notice" -msgstr "Nieuw bericht" +msgstr "Kennisgeving van site" #: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy msgid "Page notice" -msgstr "Nieuw bericht" +msgstr "Kennisgeving van pagina" #: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -#, fuzzy msgid "Secondary site navigation" -msgstr "Abonnementen" +msgstr "Secundaire sitenavigatie" #: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 #: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" -msgstr "" +msgstr "Licentie van de StatusNet-software" #: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " -msgstr "" +msgstr "Alle " #: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." -msgstr "" +msgstr "licentie." #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 -#, fuzzy msgid "Block this user" -msgstr "Onbekende gebruiker." +msgstr "Deze gebruiker blokkeren" #: lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 msgid "Block" -msgstr "" +msgstr "Blokkeren" #: lib/disfavorform.php:114 lib/disfavorform.php:140 msgid "Disfavor this notice" -msgstr "" +msgstr "Mededeling uit favorieten verwijderen" #: lib/facebookaction.php:268 #, php-format @@ -5310,98 +5268,91 @@ msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 -#, fuzzy msgid " a new account." -msgstr "Maak een nieuw account aan" +msgstr " een nieuwe gebruiker." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 #: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 #: lib/mailbox.php:217 lib/noticelist.php:361 -#, fuzzy msgid "Published" -msgstr "Openbaar" +msgstr "Gepubliceerd" #: lib/favorform.php:114 lib/favorform.php:140 -#, fuzzy msgid "Favor this notice" -msgstr "Onbekend bericht." +msgstr "Deze kennisgeving steunen" #: lib/feedlist.php:64 msgid "Export data" -msgstr "" +msgstr "Gegevens exporteren" #: lib/galleryaction.php:121 msgid "Filter tags" -msgstr "" +msgstr "Labels filteren" #: lib/galleryaction.php:131 msgid "All" -msgstr "" +msgstr "Alle" #: lib/galleryaction.php:137 lib/galleryaction.php:138 #: lib/galleryaction.php:140 msgid "Tag" -msgstr "" +msgstr "Label" #: lib/galleryaction.php:138 lib/galleryaction.php:139 #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" -msgstr "" +msgstr "Kies een label om de lijst kleiner te maken" #: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" -msgstr "" +msgstr "OK" #: lib/groupeditform.php:148 lib/groupeditform.php:163 -#, fuzzy msgid "URL of the homepage or blog of the group or topic" -msgstr "URL van je homepage, blog, of profiel op een andere site" +msgstr "De URL van de thuispagina of de blog van de groep of het onderwerp" #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 -#, fuzzy msgid "Description" -msgstr "Abonnementen" +msgstr "Beschrijving" #: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy msgid "Describe the group or topic in 140 chars" -msgstr "Beschrijf jezelf en je interesses in 140 tekens" +msgstr "Beschrijf de groep of het onderwerp in maximaal 140 karakters" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -#, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Waar je bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" +msgstr "" +"Locatie voor de groep - als relevant. Iets als \"Plaats, regio, land\"." #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" -msgstr "" +msgstr "Groep" #: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" -msgstr "" +msgstr "Beheerder" #: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" -msgstr "" +msgstr "Eigenschappen van de groep %s bewerken" #: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy msgid "Logo" -msgstr "Uitloggen" +msgstr "Logo" #: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" -msgstr "" +msgstr "Logo voor %s toevoegen of verwijderen" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" -msgstr "" +msgstr "Groepen met de meeste leden" #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" @@ -5413,29 +5364,24 @@ msgid "Tags in %s group's notices" msgstr "" #: lib/htmloutputter.php:104 -#, fuzzy msgid "This page is not available in a " -msgstr "Deze pagina is niet beschikbaar in een mediatype dat jij accepteert" +msgstr "Deze pagina is niet beschikbaar in een " #: lib/joinform.php:114 -#, fuzzy msgid "Join" -msgstr "Inloggen" +msgstr "Toetreden" #: lib/leaveform.php:114 -#, fuzzy msgid "Leave" -msgstr "Opslaan" +msgstr "Verlaten" #: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy msgid "Login with a username and password" -msgstr "Ongeldige gebruikersnaam of wachtwoord." +msgstr "Aanmelden met gebruikersnaam en wachtwoord" #: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy msgid "Sign up for a new account" -msgstr "Maak een nieuw account aan" +msgstr "Nieuwe gebruiker aanmaken" #: lib/logingroupnav.php:82 msgid "Login or register with OpenID" @@ -5447,21 +5393,23 @@ msgid "" "Hey, %s.\n" "\n" msgstr "" +"Hallo, %s.\n" +"\n" #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format msgid "%1$s is now listening to " -msgstr "%1$s volgt nu je berichten op %2$s." +msgstr "%1$s luistert nu naar " #: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format +#, php-format msgid "Location: %s\n" msgstr "Locatie: %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format +#, php-format msgid "Homepage: %s\n" -msgstr "Homepage: %s\n" +msgstr "Thuispagina: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format @@ -5469,6 +5417,8 @@ msgid "" "Bio: %s\n" "\n" msgstr "" +"Beschrijving: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5481,33 +5431,29 @@ msgid "%1$s (%2$s) is wondering what you are up to " msgstr "" #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format msgid "%1$s just added your notice from %2$s" -msgstr "%1$s volgt nu je berichten op %2$s." +msgstr "%1$s heeft zojuist uw kennisgeving van %2$s toevoegd" #: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 #: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -#, fuzzy msgid "From" -msgstr " van " +msgstr "Van" #: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" -msgstr "" +msgstr "Directe mededeling verzenden" #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy msgid "Send a notice" -msgstr "Nieuw bericht" +msgstr "Mededeling verzenden" #: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 #: lib/noticeform.php:173 -#, fuzzy msgid "Available characters" -msgstr "6 of meer tekens" +msgstr "Beschikbare tekens" #: lib/noticelist.php:426 lib/noticelist.php:429 -#, fuzzy msgid "in reply to" msgstr "in antwoord op" @@ -5515,24 +5461,23 @@ msgstr "in antwoord op" #: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 #: lib/noticelist.php:498 msgid "Reply to this notice" -msgstr "" +msgstr "Op deze mededeling antwoorden" #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 -#, fuzzy msgid "Reply" -msgstr "antwoord" +msgstr "Antwoorden" #: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 #: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 #: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" -msgstr "" +msgstr "Deze mededeling verwijderen" #: lib/noticelist.php:474 actions/avatarsettings.php:148 #: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" -msgstr "" +msgstr "Verwijderen" #: lib/nudgeform.php:116 msgid "Nudge this user" @@ -5549,12 +5494,12 @@ msgstr "" #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" -msgstr "" +msgstr "Labels in de mededelingen van %s" #: lib/profilelist.php:182 lib/profilelist.php:180 #: lib/subscriptionlist.php:126 msgid "(none)" -msgstr "" +msgstr "(geen)" #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" @@ -5562,44 +5507,42 @@ msgstr "Openbaar" #: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" -msgstr "" +msgstr "Gebruikersgroepen" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" -msgstr "" +msgstr "Recente labels" #: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -#, fuzzy msgid "Popular" -msgstr "Personen zoeken" +msgstr "Populair" #: lib/searchgroupnav.php:82 -#, fuzzy msgid "Notice" -msgstr "Berichten" +msgstr "Mededeling" #: lib/searchgroupnav.php:85 msgid "Find groups on this site" -msgstr "" +msgstr "Groepen op deze site vinden" #: lib/section.php:89 msgid "Untitled section" -msgstr "" +msgstr "Naamloze sectie" #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format msgid "People %s subscribes to" -msgstr "Abonneren op afstand" +msgstr "Gebruikers waarop %s een abonnement heeft" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format msgid "People subscribed to %s" -msgstr "Abonneren op afstand" +msgstr "Gebruikers met een abonnement op %s" #: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format @@ -5610,12 +5553,11 @@ msgstr "" #: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" -msgstr "" +msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" #: lib/subs.php:53 lib/subs.php:52 -#, fuzzy msgid "User has blocked you." -msgstr "De gebruiker heeft je geblokkeerd." +msgstr "Deze gebruiker negeert u." #: lib/subscribeform.php:115 lib/subscribeform.php:139 #: actions/userauthorization.php:178 actions/userauthorization.php:210 @@ -5628,7 +5570,7 @@ msgstr "Geen" #: lib/topposterssection.php:74 msgid "Top posters" -msgstr "" +msgstr "Meest actieve gebruikers" #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 @@ -5644,34 +5586,33 @@ msgid "Unsubscribe from this user" msgstr "Uitschrijven van deze gebruiker" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Feed voor vrienden van %s" +msgstr "Feed voor vrienden van %s (RSS 1.0)" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Feed voor vrienden van %s" +msgstr "Feed voor vrienden van %s (RSS 2.0)" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Atom)" -msgstr "Feed voor vrienden van %s" +msgstr "Feed voor vrienden van %s (Atom)" #: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy msgid "You and friends" -msgstr "%s en vrienden" +msgstr "U en vrienden" #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" +"U kunt een persoonlijke avatar uploaden. De maximale bestandsgrootte is %s." #: actions/avatarsettings.php:373 -#, fuzzy msgid "Avatar deleted." -msgstr "Avatar geactualiseerd." +msgstr "De avatar is verwijderd." #: actions/block.php:129 actions/block.php:136 msgid "" @@ -5681,23 +5622,22 @@ msgid "" msgstr "" #: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." msgstr "" -"Je staat op het punt een bericht definitief te verwijderen._ _ Als dit " -"gebeurd kan het nooit meer teruggevonden worden." +"U staat op het punt een mededeling permanent te verwijderen. Als dit " +"uitgevoerd is, kan het niet ongedaan gemaakt worden." #: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "Er is een problem ontstaan met je sessie, Porbeer nog eens aub." +msgstr "" +"Er is een probleem ontstaan met uw sessietoken. Probeer het nog een keer." #: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Stuur mij een Email als iemand mij een privebericht toezend" +msgstr "" +"Mij een e-mail sturen als iemand mij een antwoord met \"@\" erin stuurt." #: actions/facebookhome.php:193 actions/facebookhome.php:187 #, php-format @@ -5719,29 +5659,31 @@ msgid "" msgstr "" #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format +#, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." -msgstr "Je kan hier een logo voor je groep uploaden" +msgstr "" +"Hier kunt u een logo voor uw groep uploaden. De maximale bestandsgrootte is %" +"s." #: actions/grouplogo.php:367 actions/grouplogo.php:362 msgid "Pick a square area of the image to be the logo." msgstr "" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format msgid "Microblog by %s group" -msgstr "Microblog van %s" +msgstr "Microblog door de groep %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format +#, php-format msgid "" "Search for groups on %%site.name%% by their name, location, or description. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Zoek naar mensen op %%site.name%% op basis van hun naam, locatie of " -"interesses. Scheid de zoektermen met spaties; ze moeten uit 3 of meer tekens " -"bestaan." +"Zoeken naar groepen op %%site.name%% op basis van naam, locatie of " +"interesses of beschrijving. Scheid de zoektermen met spaties. Iedere " +"zoekterm moet uit drie of meer tekens bestaan." #: actions/groups.php:90 #, php-format @@ -5758,33 +5700,30 @@ msgid "Only logged-in users can send direct messages." msgstr "" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%s\" on %s" -msgstr "Doorzoek de stroom naar \"%s\"" +msgstr "Zoekresultaten voor \"%s\" op %s" #: actions/openidlogin.php:66 -#, fuzzy, php-format +#, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " "before changing your settings." msgstr "" -"Om veiligheidsredenen vragen we je je gebruikersnaam en wachtwoord nogmaals " -"in te voeren alvorens je instellingen te veranderen." +"Om veiligheidsredenen vragen we u opnieuw aan te melden met uw [OpenID](%%" +"doc.openid%%) alvorens u uw instellingen kunt wijzigen." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy msgid "Public Stream Feed (RSS 1.0)" -msgstr "Openbare feed" +msgstr "Publieke streamfeed (RSS 1.0)" #: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy msgid "Public Stream Feed (RSS 2.0)" -msgstr "Openbare feed" +msgstr "Publieke streamfeed (RSS 1.0)" #: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy msgid "Public Stream Feed (Atom)" -msgstr "Openbare feed" +msgstr "Publieke streamfeed (Atom)" #: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format @@ -5808,7 +5747,6 @@ msgid "Creative Commons Attribution 3.0" msgstr "" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#, fuzzy msgid "" " except this private data: password, email address, IM address, and phone " "number." @@ -5818,9 +5756,8 @@ msgstr "" #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 -#, fuzzy msgid "Created" -msgstr "Aanmaken" +msgstr "Aangemaakt" #: actions/showgroup.php:393 actions/showgroup.php:440 #: actions/showgroup.php:448 @@ -5834,46 +5771,43 @@ msgid "" msgstr "" #: actions/showstream.php:147 -#, fuzzy msgid "Your profile" -msgstr "Groeps profiel" +msgstr "Uw profiel" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format msgid "%s's profile" -msgstr "'s profiel" +msgstr "Profiel van %s" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (RSS 1.0)" -msgstr "Berichten-feed voor %s" +msgstr "Mededelingenfeed voor %s (RSS 1.0)" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (RSS 2.0)" -msgstr "Berichten-feed voor %s" +msgstr "Mededelingenfeed voor %s (RSS 2.0)" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (Atom)" -msgstr "Berichten-feed voor %s" +msgstr "Mededelingenfeed voor %s (Atom)" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format msgid "FOAF for %s" -msgstr "Feed voor tag %s" +msgstr "Vriend van een vriend (FOAF) voor %s" #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 -#, fuzzy msgid "Edit Avatar" -msgstr "Avatar" +msgstr "Avatar bewerken" #: actions/showstream.php:316 actions/showstream.php:281 #: actions/showstream.php:366 -#, fuzzy msgid "Edit profile settings" -msgstr "Profielinstellingen" +msgstr "Profielinstellingen bewerken" #: actions/showstream.php:317 actions/showstream.php:282 #: actions/showstream.php:367 @@ -5891,14 +5825,12 @@ msgid "" msgstr "" #: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." msgstr "" -"Een bevestigingscode is verzonden naar het telefoonnummer dat u hebt " -"toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies " -"hoe het te gebruiken." +"Er is een bevestigingscode is verzonden naar het telefoonnummer dat u hebt " +"toegevoegd. Controleer uw telefoon voor de code en instructies." #: actions/twitapifavorites.php:171 lib/mail.php:556 #: actions/twitapifavorites.php:222 @@ -5927,9 +5859,8 @@ msgstr "" #: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 #: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#, fuzzy msgid "No such user!" -msgstr "Geen gebruiker gevonden zoals je zoekt" +msgstr "Deze gebruiker bestaat niet." #: actions/twittersettings.php:72 msgid "" @@ -5938,21 +5869,22 @@ msgid "" msgstr "" #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Kon e-mailbevestiging niet verwijderen." +msgstr "" +"Het was niet mogelijk de gebruikersgegeven voor \"%s\" op te halen van " +"Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user's notices. If you didn't just ask to subscribe to someone's notices, " "click \"Reject\"." msgstr "" -"Ga alsjeblieft deze details na om er zeker van te zijn dat je je wilt " -"abonneren op de berichten van deze gebruiker. Als je niet zojuist hebt " -"aangegeven je op iemand's berichten te willen abonneren, klik dan op " -"\"Annuleer\"." +"Controleer de details alstublieft om er zeker van te zijn u zich wilt " +"abonneren op de mededelingen van deze gebruiker. Als u zojuist geen verzoek " +"hebt gedaan om te abonneren op de mededelingen van een andere gebruiker, " +"klik dan op \"Afkeuren\"" #: actions/usergroups.php:131 actions/usergroups.php:130 msgid "Search for more groups" @@ -6012,16 +5944,16 @@ msgstr "" #: lib/dberroraction.php:60 msgid "Database error" -msgstr "" +msgstr "Databasefout" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#, php-format msgid "" "To use the %s Facebook Application you need to login with your username and " "password. Don't have a username yet? " msgstr "" -"Als je al een account hebt, log dan in met je gebruikersnaam en wachtwoord " -"om het aan je OpenID te koppelen." +"Om de Facebook-applicatie te kunnen gebruiken moet u aanmelden met uw " +"gebruikersnaam en wachtwoord. Hebt u nog geen gebruikersnaam? " #: lib/feed.php:85 msgid "RSS 1.0" @@ -6037,7 +5969,7 @@ msgstr "" #: lib/feed.php:91 msgid "FOAF" -msgstr "" +msgstr "Vrienden van vrienden (FOAF)" #: lib/imagefile.php:75 #, php-format @@ -6062,7 +5994,7 @@ msgid "" msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format +#, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" "\n" @@ -6075,12 +6007,16 @@ msgid "" "----\n" "Change your email address or notification options at %8$s\n" msgstr "" -"%1$s volgt nu je berichten op %2$s.\n" +"%1$s volgt nu uw medelingen op %2$s.\n" "\n" "\t%3$s\n" "\n" +"%4$s%5$s%6$s\n" +"\n" "Met vriendelijke groet,\n" -"%4$s.\n" +"%7$s.\n" +"----\n" +"Wijzig uw e-mailadres of instellingen op %8$s\n" #: lib/mail.php:466 #, php-format @@ -6150,9 +6086,8 @@ msgid "" msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy msgid "Search site" -msgstr "Zoeken" +msgstr "Site doorzoeken" #: lib/section.php:106 msgid "More..." @@ -6187,49 +6122,42 @@ msgid "" msgstr "" #: actions/attachment.php:73 -#, fuzzy msgid "No such attachment." -msgstr "Onbekend document." +msgstr "Dat document bestaat niet." #: actions/block.php:149 -#, fuzzy msgid "Do not block this user from this group" -msgstr "Lijst van de leden in deze groep" +msgstr "Deze gebruiker niet de toegang tot deze groep ontzeggen" #: actions/block.php:150 -#, fuzzy msgid "Block this user from this group" -msgstr "Lijst van de leden in deze groep" +msgstr "Deze gebruiker de toegang tot deze groep ontzeggen" #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format msgid "%s blocked profiles" -msgstr "Gebruikersprofiel" +msgstr "%s geblokkeerde profielen" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format msgid "%s blocked profiles, page %d" -msgstr "%s en vrienden" +msgstr "%s geblokkeerde profielen, pagina %d" #: actions/blockedfromgroup.php:108 -#, fuzzy msgid "A list of the users blocked from joining this group." -msgstr "Lijst van de leden in deze groep" +msgstr "Een lijst met voor deze groep geblokkeerde gebruikers." #: actions/blockedfromgroup.php:281 -#, fuzzy msgid "Unblock user from group" -msgstr "Deblokkeer deze gebruiker." +msgstr "Deze gebruiker weer toegang geven tot de groep" #: actions/conversation.php:99 -#, fuzzy msgid "Conversation" -msgstr "Bevestigingscode" +msgstr "Dialoog" #: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy msgid "Do not delete this notice" -msgstr "Kan dit bericht niet verwijderen." +msgstr "Deze mededeling niet verwijderen" #: actions/editgroup.php:214 actions/newgroup.php:164 #: actions/apigroupcreate.php:291 actions/editgroup.php:215 @@ -6241,16 +6169,16 @@ msgstr "" #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"" -msgstr "Ongeldige tag: '%s'" +msgstr "Ongeldig alias: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format msgid "Alias \"%s\" already in use. Try another one." -msgstr "Gebruikersnaam al in gebruik. Probeer een andere." +msgstr "De alias \"%s\" wordt al gebruikt. Geef een ander alias op." #: actions/editgroup.php:233 actions/newgroup.php:183 #: actions/apigroupcreate.php:334 actions/editgroup.php:234 @@ -6260,9 +6188,8 @@ msgstr "" #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy msgid "Could not create aliases." -msgstr "Kan geen favoriet aanmaken" +msgstr "Het was niet mogelijk de aliassen aan te maken." #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." @@ -6282,14 +6209,12 @@ msgid "" msgstr "" #: actions/file.php:34 -#, fuzzy msgid "No notice id" -msgstr "Nieuw bericht" +msgstr "Geen mededelings-ID" #: actions/file.php:38 -#, fuzzy msgid "No notice" -msgstr "Nieuw bericht" +msgstr "Geen mededeling" #: actions/file.php:42 msgid "No attachments" @@ -6300,35 +6225,30 @@ msgid "No uploaded attachments" msgstr "" #: actions/finishopenidlogin.php:211 -#, fuzzy msgid "Not a valid invitation code." -msgstr "Geen geldige gebruikersnaam." +msgstr "Geen geldige uitnodigingscode." #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 -#, fuzzy msgid "No group specified." -msgstr "Geen begunstigde aangeduid" +msgstr "Er is geen groep aangegeven." #: actions/groupblock.php:91 msgid "Only an admin can block group members." msgstr "" #: actions/groupblock.php:95 -#, fuzzy msgid "User is already blocked from group." -msgstr "De gebruiker heeft je geblokkeerd." +msgstr "Deze gebruiker is al de toegang tot de groep ontzegd." #: actions/groupblock.php:100 -#, fuzzy msgid "User is not a member of group." -msgstr "Je bent geen lid van deze groep" +msgstr "De gebruiker is geen lid van de groep." #: actions/groupblock.php:136 actions/groupmembers.php:311 #: actions/groupmembers.php:314 -#, fuzzy msgid "Block user from group" -msgstr "Onbekende gebruiker." +msgstr "Gebruiker toegang tot de groep blokkeren" #: actions/groupblock.php:155 #, php-format @@ -6343,14 +6263,12 @@ msgid "Database error blocking user from group." msgstr "" #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy msgid "You must be logged in to edit a group." -msgstr "Je moet ingelogd zijn om deze groep bij te wonen" +msgstr "U moet aangemeld zijn om een groep te kunnen bewerken." #: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy msgid "Group design" -msgstr "Groepen" +msgstr "Groepsontwerpen" #: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 msgid "" @@ -6362,9 +6280,8 @@ msgstr "" #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 #: lib/designsettings.php:461 -#, fuzzy msgid "Couldn't update your design." -msgstr "Kon gebruiker niet actualiseren." +msgstr "Het was niet mogelijk uw ontwerp bij te werken." #: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 @@ -6375,9 +6292,8 @@ msgstr "" #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 -#, fuzzy msgid "Design preferences saved." -msgstr "Voorkeuren opgeslagen." +msgstr "De ontwerpvoorkeuren zijn opgeslagen." #: actions/groupmembers.php:438 actions/groupmembers.php:441 msgid "Make user an admin of the group" @@ -6393,9 +6309,8 @@ msgstr "" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 -#, fuzzy msgid "No results." -msgstr "Geen resultaten" +msgstr "Geen resultaten." #: actions/groupsearch.php:82 #, php-format @@ -6416,9 +6331,8 @@ msgid "Only an admin can unblock group members." msgstr "" #: actions/groupunblock.php:95 -#, fuzzy msgid "User is not blocked from group." -msgstr "De gebruiker heeft je geblokkeerd." +msgstr "De gebruiker is niet de toegang tot de groep ontzegd." #: actions/invite.php:39 msgid "Invites have been disabled." @@ -6449,9 +6363,8 @@ msgid "Can't make %s an admin for group %s" msgstr "" #: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy msgid "Message sent" -msgstr "Bericht" +msgstr "Bericht verzonden." #: actions/newnotice.php:93 lib/designsettings.php:281 #: actions/newnotice.php:94 @@ -6498,9 +6411,8 @@ msgid "File upload stopped by extension." msgstr "" #: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy msgid "Couldn't save file." -msgstr "Kon profiel niet opslaan." +msgstr "Het was niet mogelijk het bestand op te slaan." #: actions/newnotice.php:246 scripts/maildaemon.php:101 msgid "Max notice size is 140 chars, including attachment URL." @@ -6536,22 +6448,21 @@ msgid "" msgstr "" #: actions/openidsettings.php:70 -#, fuzzy, php-format +#, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -"Met [OpenID](%%doc.openid%%) kun je op vele sites inloggen met hetzelfde " -"gebruikersaccount. Hier kun je de aan je account gekoppelde OpenID's beheren." +"Via [OpenID](%%doc.openid%%) kunt u bij veel websites aanmelden met dezelfde " +"gebruiker. Hier kunt u uw koppelingen met OpenID's beheren." #: actions/othersettings.php:110 actions/othersettings.php:117 msgid "Shorten URLs with" msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy msgid "View profile designs" -msgstr "Profielinstellingen" +msgstr "Profielontwerpen bekijken" #: actions/othersettings.php:116 actions/othersettings.php:123 msgid "Show or hide profile designs." @@ -6580,14 +6491,14 @@ msgid "" msgstr "" #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format +#, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool." msgstr "" -"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging) service_" +"Dit is %%site.name%%, [microblogdienst](http://en.wikipedia.org/wiki/Micro-" +"blogging) gebaseerd op de Vrije Software [StatusNet](http://status.net/)" #: actions/publictagcloud.php:69 #, php-format @@ -6606,33 +6517,28 @@ msgid "" msgstr "" #: actions/recoverpassword.php:152 -#, fuzzy msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." msgstr "" -"Als je je paswoord vergeten of verloren bent, kan je hier een nieuwe " -"aanvragen naar het mailadres dat bij ons _ _ opgeslagen is in je account." +"Als u uw wachtwoord kwijt bent, is het mogelijk een nieuw wachtwoord te " +"ontvangen op het e-mailadres dat aan uw gebruiker gekoppeld is." #: actions/recoverpassword.php:158 -#, fuzzy msgid "You've been identified. Enter a new password below. " -msgstr "Je bent geïdentificeerd. Vul hieronder een nieuw wachtwoord in." +msgstr "U bent geïdentificeerd. Voer hieronder een nieuw wachtwoord in. " #: actions/recoverpassword.php:188 -#, fuzzy msgid "Password recover" -msgstr "Wachtwoordherstel aangevraagd" +msgstr "Wachtwoordherstel" #: actions/register.php:86 -#, fuzzy msgid "Sorry, invalid invitation code." -msgstr "Fout bij bevestigingscode." +msgstr "Sorry. De uitnodigingscode is ongeldig." #: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy msgid "Subscribe to a remote user" -msgstr "Abonnement geautoriseerd" +msgstr "Op een gebruiker uit een andere systeem abonneren" #: actions/replies.php:179 actions/replies.php:198 #, php-format @@ -6656,9 +6562,9 @@ msgid "" msgstr "" #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format msgid "%s's favorite notices, page %d" -msgstr "%s favorite berichten" +msgstr "Favoriete mededelingen van %s, pagina %d" #: actions/showfavorites.php:170 actions/showfavorites.php:205 msgid "" @@ -6691,49 +6597,50 @@ msgid "Aliases" msgstr "" #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (RSS 1.0)" -msgstr "Berichten-feed voor groep %s" +msgstr "Mededelingenfeed voor groep %s (RSS 1.0)" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (RSS 2.0)" -msgstr "Berichten-feed voor groep %s" +msgstr "Mededelingenfeed voor groep %s (RSS 2.0)" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (Atom)" -msgstr "Berichten-feed voor groep %s" +msgstr "Mededelingenfeed voor groep %s (Atom)" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format +#, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" -"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging) service_" +"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]" +"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " +"[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit " +"over hun ervaringen en interesses. " #: actions/showgroup.php:474 actions/showgroup.php:482 msgid "Admins" msgstr "" #: actions/shownotice.php:101 -#, fuzzy msgid "Not a local notice" -msgstr "Onbekende gebruiker." +msgstr "Geen lokale mededeling" #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format msgid " tagged %s" -msgstr "Berichten tagged met %s" +msgstr " met het label %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "Berichten-feed voor groep %s" +msgstr "Mededelingenfeed voor %s met het label %s (RSS 1.0)" #: actions/showstream.php:350 actions/showstream.php:444 #, php-format @@ -6754,14 +6661,15 @@ msgid "" msgstr "" #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format +#, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" -"**%s** heeft een account op %%%%site.name%%%%, een [micro-blogging](http://" -"en.wikipedia.org/wiki/Micro-blogging) service_" +"**%s** heeft een gebruiker op %%%%site.name%%%%, eena [microblogdienst]" +"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " +"[StatusNet](http://status.net/). " #: actions/subscribers.php:108 msgid "" @@ -6793,56 +6701,51 @@ msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format msgid "%s is not listening to anyone." -msgstr "%1$s volgt nu je berichten op %2$s." +msgstr "%s luistert nergens naar." #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "Berichten-feed voor %s" +msgstr "Mededelingenfeed voor label %s (RSS 1.0)" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Atom)" -msgstr "Berichten-feed voor %s" +msgstr "Mededelingenfeed voor label %s (Atom)" #: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite!" -msgstr "Dit bericht is al een favoriet" +msgstr "Deze status is al toegevoegd aan de favorieten." #: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite!" -msgstr "Dit bericht is geen favoriet" +msgstr "Deze status staat niet in de favorieten." #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 -#, fuzzy msgid "Could not determine source user." -msgstr "Kan deze favoriet niet verwijderen" +msgstr "Het was niet mogelijk de brongebruiker te bepalen." #: actions/twitapifriendships.php:215 -#, fuzzy msgid "Target user not specified." -msgstr "Geen begunstigde aangeduid" +msgstr "De doelgebruiker is niet aangegeven." #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy msgid "Could not find target user." -msgstr "Kan geen ene status vinden" +msgstr "Het was niet mogelijk de doelgebruiker te vinden." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / Updates antwoordend op %2$s" +msgstr "%1$s / Updates over %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format msgid "Updates tagged with %1$s on %2$s!" -msgstr "Bijwerkingen van %1$s op %2$s!" +msgstr "Updates met het label %1$s op %2$s!" #: actions/twittersettings.php:165 msgid "Import my Friends Timeline." @@ -6850,17 +6753,15 @@ msgstr "" #: actions/userauthorization.php:158 actions/userauthorization.php:188 msgid "License" -msgstr "" +msgstr "Licentie" #: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy msgid "Reject this subscription" -msgstr "Alle abonnementen" +msgstr "Dit abonnement weigeren" #: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy msgid "Profile design" -msgstr "Profielinstellingen" +msgstr "Profielontwerp" #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" @@ -6873,9 +6774,9 @@ msgid "Enjoy your hotdog!" msgstr "" #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format msgid "%s is not a member of any group." -msgstr "Je bent geen lid van deze groep" +msgstr "%s is van geen enkele groep lid." #: actions/usergroups.php:158 #, php-format @@ -6900,9 +6801,10 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy msgid "Problem saving notice. Too long." -msgstr "Probleem bij opslaan bericht." +msgstr "" +"Er is een probleem opgetreden bij het opslaan van de mededeling. Deze is te " +"lang." #: classes/User.php:319 classes/User.php:327 #, php-format @@ -6915,9 +6817,8 @@ msgid "Design" msgstr "" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy msgid "Design your profile" -msgstr "Gebruikersprofiel" +msgstr "Uw profiel ontwerpen" #: lib/action.php:712 lib/action.php:727 msgid "TOS" @@ -6929,12 +6830,11 @@ msgstr "" #: lib/attachmentlist.php:265 msgid "Author" -msgstr "" +msgstr "Auteur" #: lib/attachmentlist.php:278 -#, fuzzy msgid "Provider" -msgstr "Profiel" +msgstr "Provider" #: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" @@ -6949,9 +6849,8 @@ msgid "Change background image" msgstr "" #: lib/designsettings.php:105 -#, fuzzy msgid "Upload file" -msgstr "Uploaden" +msgstr "Bestand uploaden" #: lib/designsettings.php:109 msgid "" @@ -6960,11 +6859,11 @@ msgstr "" #: lib/designsettings.php:139 msgid "On" -msgstr "" +msgstr "Aan" #: lib/designsettings.php:155 msgid "Off" -msgstr "" +msgstr "Uit" #: lib/designsettings.php:156 msgid "Turn background image on or off." @@ -6975,44 +6874,40 @@ msgid "Tile background image" msgstr "" #: lib/designsettings.php:170 -#, fuzzy msgid "Change colours" -msgstr "Wijzig jouw wachtwoord" +msgstr "Kleuren wijzigen" #: lib/designsettings.php:178 msgid "Background" -msgstr "" +msgstr "Achtergrond" #: lib/designsettings.php:191 -#, fuzzy msgid "Content" -msgstr "Koppel" +msgstr "Inhoud" #: lib/designsettings.php:204 -#, fuzzy msgid "Sidebar" -msgstr "Zoeken" +msgstr "Menubalk" #: lib/designsettings.php:230 -#, fuzzy msgid "Links" -msgstr "Inloggen" +msgstr "Verwijzingen" #: lib/designsettings.php:247 msgid "Use defaults" -msgstr "" +msgstr "Standaardinstellingen gebruiken" #: lib/designsettings.php:248 msgid "Restore default designs" -msgstr "" +msgstr "Standaardontwerp toepassen" #: lib/designsettings.php:254 msgid "Reset back to default" -msgstr "" +msgstr "Standaardinstellingen toepassen" #: lib/designsettings.php:257 msgid "Save design" -msgstr "" +msgstr "Ontwerp opslaan" #: lib/designsettings.php:378 lib/designsettings.php:369 msgid "Bad default color settings: " @@ -7028,14 +6923,13 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" #: lib/groupnav.php:100 -#, fuzzy msgid "Blocked" -msgstr "Onbekende gebruiker." +msgstr "Geblokkeerd" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format msgid "%s blocked users" -msgstr "Onbekende gebruiker." +msgstr "%s geblokkeerde gebruikers" #: lib/groupnav.php:119 #, php-format @@ -7120,18 +7014,16 @@ msgid "Attach a file" msgstr "" #: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy msgid "in context" -msgstr "Geen inhoud!" +msgstr "in context" #: lib/profileaction.php:177 msgid "User ID" msgstr "" #: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy msgid "Search help" -msgstr "Zoeken" +msgstr "Hulp bij zoeken" #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 @@ -7144,9 +7036,9 @@ msgid "People Tagcloud as tagged" msgstr "" #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format msgid "%s is not a valid color!" -msgstr "Homepage is geen geldige URL" +msgstr "%s is geen geldige kleur." #: lib/webcolor.php:123 #, php-format @@ -7155,9 +7047,8 @@ msgstr "" #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy msgid "No such page" -msgstr "Onbekend bericht." +msgstr "Deze pagina bestaat niet" #: actions/apidirectmessage.php:89 #, php-format @@ -7165,63 +7056,61 @@ msgid "Direct messages from %s" msgstr "" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format msgid "That's too long. Max message size is %d chars." -msgstr "Dit is te lang. max. 140 karakters invoeren." +msgstr "Dat is te lang. De maximale berichtlengte is %d tekens." #: actions/apifriendshipsdestroy.php:109 -#, fuzzy msgid "Could not unfollow user: User not found." msgstr "" -"Je kan de gebruiker niet volgen, we hebben deze gebruiker niet gevonden" +"Het is niet mogelijk deze gebruiker niet langer te volgende: de gebruiker is " +"niet aangetroffen." #: actions/apifriendshipsdestroy.php:120 msgid "You cannot unfollow yourself!" msgstr "" #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format msgid "Description is too long (max %d chars)." -msgstr "Biografie is te lang (maximaal 140 tekens)" +msgstr "De beschrijving is te lang. Gebruik maximaal %d tekens." #: actions/apigroupjoin.php:110 -#, fuzzy msgid "You are already a member of that group." -msgstr "Je bent al aangemeld bij deze groep!" +msgstr "U bent al lid van die groep." #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format msgid "Could not join user %s to group %s." -msgstr "Kan de gebruiker %s niet aan de %s groep toevoegen " +msgstr "Het was niet mogelijk gebruiker %s toe te voegen aan de groep %s." #: actions/apigroupleave.php:114 -#, fuzzy msgid "You are not a member of this group." -msgstr "Je bent geen lid van deze groep" +msgstr "U bent geen lid van deze groep." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %s to group %s." -msgstr "Kan de gebruiker %s niet verwijderen uit de groep %s" +msgstr "Het was niet mogelijk gebruiker %s uit de group %s te verwijderen." #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format msgid "%s's groups" -msgstr "%s groep" +msgstr "Groepen van %s" #: actions/apigrouplist.php:103 #, php-format msgid "Groups %s is a member of on %s." -msgstr "" +msgstr "Groepen waarvan %s lid is op %s." #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format msgid "groups on %s" -msgstr "Groeps aktie" +msgstr "groepen op %s" #: actions/apistatusesshow.php:138 msgid "Status deleted." -msgstr "" +msgstr "De status is verwijderd." #: actions/apistatusesupdate.php:132 msgid "Unable to handle that much POST data!" @@ -7229,19 +7118,20 @@ msgstr "" #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format msgid "That's too long. Max notice size is %d chars." -msgstr "Dat is te lang. Maximale bericht lengte is 140 tekens." +msgstr "Dat is te lang. De maximale mededelingslengte is 140 tekens." #: actions/apistatusesupdate.php:209 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "" +"De maximale mededelingenlengte is %d tekens, inclusief de URL voor de " +"bijlage." #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy msgid "Unsupported format." -msgstr "Niet ondersteund beeldbestandsformaat." +msgstr "Niet-ondersteund bestandsformaat." #: actions/bookmarklet.php:50 #, fuzzy @@ -7249,67 +7139,58 @@ msgid "Post to " msgstr "Foto" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format msgid "description is too long (max %d chars)." -msgstr "Biografie is te lang (maximaal 140 tekens)" +msgstr "de beschrijving is te lang (maximaal %d tekens)" #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "Bijwerkingen van %1$s op %2$s!" +msgstr "Updates gesteund door %1$s op %2$s." #: actions/finishremotesubscribe.php:80 -#, fuzzy msgid "User being listened to does not exist." -msgstr "Gebruiker waarnaar geluisterd wordt bestaat niet." +msgstr "De gebruiker waarnaar wordt geluisterd bestaat niet." #: actions/finishremotesubscribe.php:106 -#, fuzzy msgid "You are not authorized." -msgstr "Niet geautoriseerd." +msgstr "U hebt niet de juiste toegangsrechten." -# tokens zou vervangen moeten worden dus -# tokens need to be replaced #: actions/finishremotesubscribe.php:109 -#, fuzzy msgid "Could not convert request token to access token." msgstr "" -"Kan niet converteren verzoek om tokens om toegang te krijgen tot de tokens" +"Het was niet mogelijk het verzoektoken te converteren naar een toegangstoken." #: actions/finishremotesubscribe.php:114 -#, fuzzy msgid "Remote service uses unknown version of OMB protocol." -msgstr "Onbekende versie van het OMB-protocol." +msgstr "" +"De diensten op afstand gebruiken een onbekende versie van het OMB-protocol." #: actions/getfile.php:75 -#, fuzzy msgid "No such file." -msgstr "Onbekend bericht." +msgstr "Het bestand bestaat niet." #: actions/getfile.php:79 -#, fuzzy msgid "Cannot read file." -msgstr "Onbekend bericht." +msgstr "Het bestand kon niet gelezen worden." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format msgid "Updates from members of %1$s on %2$s!" -msgstr "Bijwerkingen van %1$s op %2$s!" +msgstr "Updates voor leden van %1$s op %2$s." #: actions/imsettings.php:89 -#, fuzzy msgid "IM is not available." -msgstr "Deze pagina is niet beschikbaar in een mediatype dat jij accepteert" +msgstr "IM is niet beschikbaar." #: actions/login.php:259 -#, fuzzy, php-format +#, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" "(%%action.register%%) a new account." msgstr "" -"Log in met je gebruikersnaam en wachtwoord. Heb je nog geen gebruikersnaam? " -"[Registreer](%%action.register%%) dan een nieuw account, of probeer [OpenID]" -"(%%action.openidlogin%%)." +"Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen " +"gebruikersnaam? [Registreer een nieuwe gebruiker](%%action.register%%)." #: actions/noticesearchrss.php:89 #, php-format @@ -7317,37 +7198,38 @@ msgid "Updates with \"%s\"" msgstr "" #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Alle updates die overeenkomen met de zoekterm \"%s\"" +msgstr "Updates die overeenkomen met de zoekterm \"%1$s\" op %2$s." #: actions/oembed.php:157 msgid "content type " -msgstr "" +msgstr "inhoudstype " #: actions/oembed.php:160 msgid "Only " -msgstr "" +msgstr "Alleen " #: actions/postnotice.php:90 #, php-format msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +"Mededelingenlicentie \"%s\" is niet compatibel met de licentie \"%s\" van " +"deze site." #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format msgid "Describe yourself and your interests in %d chars" -msgstr "Beschrijf jezelf en je interesses in 140 tekens" +msgstr "Geef een beschrijving van uzelf en uw interesses in %d tekens" #: actions/profilesettings.php:125 actions/register.php:457 -#, fuzzy msgid "Describe yourself and your interests" -msgstr "Beschrijf jezelf en je_" +msgstr "Beschrijf uzelf en uw interesses" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (max %d chars)." -msgstr "Biografie is te lang (maximaal 140 tekens)" +msgstr "De beschrijving is te lang (maximaal %d tekens)." #: actions/register.php:336 msgid "" @@ -7356,20 +7238,19 @@ msgid "" msgstr "" #: actions/remotesubscribe.php:168 -#, fuzzy msgid "" "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Geen geldige profiel-URL (geen YADIS document)." +msgstr "" +"De URL voor het profiel is niet geldig (het is geen YADIS document of er is " +"geen of ongeldige XRDS gedefinieerd)." #: actions/remotesubscribe.php:176 msgid "That’s a local profile! Login to subscribe." msgstr "" -# Token need to be replaced #: actions/remotesubscribe.php:183 -#, fuzzy msgid "Couldn’t get a request token." -msgstr "Kan geen verzoek om token krijgen" +msgstr "Het was niet mogelijk een verzoektoken te krijgen." #: actions/replies.php:144 #, php-format @@ -7382,29 +7263,29 @@ msgid "Replies feed for %s (RSS 2.0)" msgstr "" #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format msgid "Replies feed for %s (Atom)" -msgstr "Berichten-feed voor groep %s" +msgstr "Antwoordenfeed voor %s (Atom)" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format msgid "Replies to %1$s on %2$s!" -msgstr "Bijwerkingen van %1$s op %2$s!" +msgstr "Antwoorden aan %1$s op %2$s." #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed voor vrienden van %s" +msgstr "Favorietenfeed van %s (RSS 1.0)" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed voor vrienden van %s" +msgstr "Favorietenfeed van %s (RSS 2.0)" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Feed voor vrienden van %s" +msgstr "Favorietenfeed van %s (Atom)" #: actions/showfavorites.php:211 #, php-format @@ -7415,24 +7296,22 @@ msgid "" msgstr "" #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format msgid "FOAF for %s group" -msgstr "%s groep" +msgstr "Vriend van een vriend voor de groep %s" #: actions/shownotice.php:90 -#, fuzzy msgid "Notice deleted." -msgstr "Berichten gepubliceerd " +msgstr "Deze mededeling is verwijderd." #: actions/smssettings.php:91 -#, fuzzy msgid "SMS is not available." -msgstr "Deze pagina is niet beschikbaar in een mediatype dat jij accepteert" +msgstr "SMS is niet beschikbaar." #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Berichten-feed voor %s" +msgstr "Mededelingenfeed voor label %s (RSS 2.0)" #: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format @@ -7452,26 +7331,24 @@ msgstr "" "\"Annuleer\"." #: actions/userauthorization.php:249 -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -"Het abonnement is geautoriseerd maar er is geen callback-URL doorgegeven. " -"Loop de instructies van de site na voor details over hoe het abonnement te " -"autoriseren. Je abonnement-token is:" +"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de site voor informatie over het volledig " +"afwijzen van een abonnement. Uw abonnementstoken is:" #: actions/userauthorization.php:261 -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." msgstr "" -"Het abonnement is afgewezen maar er is geen callback-URL doorgegeven. Loop " -"de instructies van de site na voor details over hoe het abonnement volledig " -"af te wijzen." +"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de site voor informatie over het volledig " +"afwijzen van een abonnement." #: actions/userauthorization.php:296 #, php-format @@ -7499,29 +7376,27 @@ msgid "Avatar URL ‘%s’ is not valid." msgstr "" #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format msgid "Can’t read avatar URL ‘%s’." -msgstr "Kan avatar-URL '%s' niet lezen" +msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Foutief beeldbestandstype voor '%s'" +msgstr "Er staat een verkeerd afbeeldingsttype op de avatar-URL \"%s\"." #: lib/action.php:435 -#, fuzzy msgid "Connect to services" -msgstr "Kon niet omleiden naar service: %s" +msgstr "Met diensten verbinden" #: lib/action.php:785 -#, fuzzy msgid "Site content license" -msgstr "Vind de inhoud van een bericht" +msgstr "Licentie voor siteinhoud" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format msgid "Could not find a user with nickname %s" -msgstr "Kan de gebruiker niet aan het bevestigde mailadres bijwerken" +msgstr "De gebruiker met de alias %s is niet aangetroffen." #: lib/command.php:92 msgid "It does not make a lot of sense to nudge yourself!" @@ -7540,6 +7415,8 @@ msgstr "" #, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "" +"Het bericht te is lang. De maximale lengte is %d tekens. De lengte van uw " +"bericht was %d" #: lib/command.php:431 #, php-format @@ -7547,14 +7424,13 @@ msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format msgid "Reply to %s sent" -msgstr "Antwoorden aan %s" +msgstr "Het antwoord aan %s is verzonden" #: lib/command.php:441 -#, fuzzy msgid "Error saving notice." -msgstr "Probleem bij opslaan bericht." +msgstr "Er is een fout opgetreden bij het opslaan van de mededeling." #: lib/command.php:587 msgid "" @@ -7592,9 +7468,8 @@ msgid "" msgstr "" #: lib/common.php:191 -#, fuzzy msgid "No configuration file found. " -msgstr "Geen bevestigingscode." +msgstr "Er is geen instellingenbestand aangetroffen. " #: lib/common.php:192 msgid "I looked for configuration files in the following places: " @@ -7609,29 +7484,27 @@ msgid "Go to the installer." msgstr "" #: lib/galleryaction.php:139 -#, fuzzy msgid "Select tag to filter" -msgstr "Selecteer een provider" +msgstr "Selecteer een label om op te filteren" #: lib/groupeditform.php:168 -#, fuzzy msgid "Describe the group or topic" -msgstr "Beschrijf jezelf en je interesses in 140 tekens" +msgstr "Beschrijf de groep of het onderwerp" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d characters" -msgstr "Beschrijf jezelf en je interesses in 140 tekens" +msgstr "Beschrijf de groep of het onderwerp in %d tekens" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format msgid "notice id: %s" -msgstr "Berichten-feed voor %s" +msgstr "berichtnummer: %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "%1$s volgt nu je berichten op %2$s." +msgstr "%s (@%s) heeft uw bericht als favoriet toegevoegd" #: lib/mail.php:556 #, php-format @@ -7657,7 +7530,7 @@ msgstr "" #: lib/mail.php:611 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgstr "%s (@%s) heeft u een bericht gestuurd" #: lib/mail.php:613 #, php-format @@ -7675,41 +7548,17 @@ msgid "" msgstr "" #: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy msgid "from" -msgstr " van " +msgstr "van" #: lib/mediafile.php:179 lib/mediafile.php:216 msgid "File exceeds user's quota!" -msgstr "" +msgstr "Met dit bestand wordt het quotum van de gebruiker overschreden!" #: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Kan deze favoriet niet verwijderen" +msgstr "Het was niet mogelijk het MIME-type van het bestand te bepalen!" #: lib/oauthstore.php:345 -#, fuzzy msgid "Duplicate notice" -msgstr "Verwijderd bericht" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Maak een nieuw account aan" - -#~ msgid "Couldn't confirm email." -#~ msgstr "Kon e-mail niet bevestigen." - -#~ msgid "Email address" -#~ msgstr "E-mailadres" - -#~ msgid "Error inserting notice" -#~ msgstr "Fout bij toevoegen bericht" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Als je je wachtwoord vergeten of kwijt bent, kan een nieuw wachtwoord " -#~ "worden opgestuurd naar het e-mailadres dat je in je account hebt " -#~ "vastgelegd." +msgstr "Kennisgeving van duplicaat" diff --git a/locale/nn/LC_MESSAGES/statusnet.mo b/locale/nn/LC_MESSAGES/statusnet.mo index 1dda46a4b0d8649b40aa9c66a24163eedc466581..5a67178f5742f02730a255efc5336917c9f1f45b 100644 GIT binary patch delta 9017 zcmY+}d3aPsy2tU;2@nj6tP=Kygs^4<5+EcYVNHO9MFO%!Xh;ZAvXFEF1j7Lt6&V#| zRUDYVSak}Dh9EK0988;lKGwoG41ovSY zhTL?VFwDRZoQewIDcfF#n%HZofVbNF2e2;f%Qs!eY0AYN+fo0PX}81%^v7W%?2n2( z8y`VG>T~mL|4M8`dpm~WLDYnfV>>*L(HQcJ=}*9xw1>L3V>;@Em8b!hp;Gz=D)NoC zy$AK&=eB(kJJP<08mQr~X2v~G0S`k3^c3oS<<^B(_hl}Wy4NuR{{!{HgE$JW+54&g z>o_^I(@`_oh-LV#HRHD9%%Q#4n(%*))0_4Os6hUXLowuzsj1P}#9{q6aM6VuyRj9X zM-^YtUB{V;?J*vg;>&mdlkxF?m;qn4hTb!QFS2gND4zQoRXd*hj`J9HMP;f#1~I;q z%Y~{sA8TTf)sMAlSK_0%2$i7~)?LU9oRioTZ(&cY{lIa?V6t^ND#Jfx9A3wI*zO@R zz7xZR21-V){a}p2kyry4Sf4{x?GmhyYfzutXxkrPIPFiYXR$f$TECfH;YDS7ux-ym zw=o@SxX=tYV-MVen(1|Hh)o<%V9g`3E$wVf#BywdTdhY?+x8l!Vxq?r*cJ0ofxm*< zj@78lZTEQGK*u3Ev_?N+DTW4loGDm^O4%t?CK?2L0;z0jZH-#G4yZNlX3aunvIGN5 zh#Ghis<^9B+k1bo>j~_`Z*0d6)CW8@Jb~1OVkGSd^x`laj5AT0*lzp3Mg{V#ZQny> zuvJY@;6O@44VaI5-yBq}z3pYm`g);>e@iVAER#~^9*7hjs1vgP^*}1OC zL>lUR@SzT-HK@Q2qW1q8>!bC|^U0_{b1*{te{tZ#ao$I5pTD98yp2k6SbdMv8q=(k zQ3F)j_G_qJumd&IZ&86YQMH`U?NRI&0rF$ zXqKQC|BQh^u|4hE*bSREG?^J}eG(OD1*(=_MSVN|7q-Mp=<1?YBQsEY45mF2RUBhb z+ob?CvsbO_P|t10MBIt0{#&Txyo;K7^TwXQk(+?ZXeO#AiZK=EHfH~8X1nQ7b)G?0 z>(8iz=@--zgfub6TF0X@^{n+xRLXZ)&toX8OLK6qP}@Df?fMuBSuA z_o?-J)De5j>Uqoz*Z`H0F19@ywFEO!yJabA0_RaD=S_P*xS1I^5;d_Ns0j~o?Tt*- zKAwOIs1UU@OHh$-#K5_L3g8qfbG5=uO+=yES*T(yM;$;bP)oAQw!cHY{{iYfZj0t- zfc_Ym394w8TK|MyX&=B?yorG#ZDFcD2{rIU)aRZ>ea)^#W$;5(t?Wll;B!bF$V&WhNDa zwf{$Oq3!iJ*1}v=@jQ(oScMAYIaCT)pe24W2D&PyKK!Vzu_qRe7T@>o` zJsLE`%y)E6qS*)sHMDzx!BHYPQ2%F675e= zHPo`5C-4()csusLs&ok*6Yv9TXnQmBJk-F2r~#hA1YCvv@Jm$Y>V})ZTB8n{WK>N| zMopv&r{H_2Z`pbgruxGpT(cd9(V+ompcfaSPQZ1j5A3vlg&N>*sDr6y2Qxr4YRPg? z&ljVfdk*!UO{nKTww}k@wClT(rYM@BJ~#|@GWqZmd=6C;13P*GzX^w-_U}Aggs-7$ zq*W*LTm9sQZ&p1LmS?sSs5IZWR|XTr9>Y+=Y7Z0;(3S+xA`b(hllu`omGF zk3yYjDX8;fG-{2@Q8V6%Yw@VHu#2g+I$Z;SxK0Bu6rtC2IGs@6X1!4}&BMUKf*Now zswlUhX8JKE;RTGt@NQ;FvQb~lzeAn*>roThiW+Y>HrMz6XSU-+pu=&_p?(29w04g& zC*X8c0L!iGQEU7mDy9F8%D@F&fR99*j4r_-+PhFoy9X7>X>70ke~}BVMco)v?afe2 z5Q&OB29@F@)Qm@>inS8;q7|qmT#Gu2zrr;96_vq+SkwPFs$Ge}xCUJfRLzA_`bSjC zwxLpf995K8PzOv~V0xsOm8I~>RU*Z%yT z4yCqscQfrb7{}v2H>y?VZ-|P#L(3dSSz!#wb*#GEn_P)E? zc6?|(j{3kg?2eE0GG}-aCeij=|BTAmHB{gaQ8RDQ+Z1ybRBgngp6hQNZTqJp+t782 zxzLPeql%>pRg5p7)^wHi9qS(J5!8TZtoN)<`$igqR{168PR(WR&(d!@D7x(-$S@1mA+FUD&Bf60Z` zILsv_n?;SFQ^0PJSye2lT2V?sOP(2U;?O`%0gEi zi@DG_uog9gji>=Pqn2bJDv-md3>`xi-zj_lHtGO#l1-}XppMu!sNVyTsLu^Yoq!Y2 zi}RD&|4QZCbjZD^NPk3C>m^h`!6_!7+NhbevUWoSl7tF$3~DK!M4cBU7=>$W`v7Vp zS5U?MOA7m67m@uuP7034m+&=fhg8$vh8mz>ni(JimGX(G&sCsa{1NK8k5RR85Ean> zpmxJW)Gw#os0jwS{Y~mxVrM!cts}7u?Ml>(H(+4RQA@K2RnZWs{7mc^hMC}F_cL~EugmkOnO{WB@II;->klzi-Ujua zfv7K~iKu|9PysDMEzx2ejH_|A_WwyPRQ>*Rk24RKV;0uW-~r4*-TxK!qDDha)i*=6 zV^FE>i3)6_b*jDZ#|Zl8qH63d)UG*%u4eEP7xD&r(HZ6m{QG=6)C+S^`?eVMJ-!0d zaU1r?4 z1N&|N9n^rqBTeeOsDOH-`jf2_tg}(Yyb=}ITHD@)3T!KCJMVYx1Aj&B(-Zc_Ra7AN zQNYRYME#NxY9*iix954J|;`%3G-7ba!*12tP&b_rIV9 zb{;n$?1EaN5vXlB8x!#lsM`1uwZ>ObMH({3*a0=r0MrB~qZb#VYG9q|cb(7djdQ4C zs+nyDPD8EbbW{zzfg12ACg2%s*jN+L2ZBTMO9X&M|(c12+yGol&h$dvgTC# z+Yv9*PC_k3r)kC<98P=rH1@wPPSc@pwQjlQ97sh~c{(aH*{J*Zs3UfsbvY{FcTp4g z5|!dJs5O3Q+fDLJfN|K3{tQ&06?yD`?ZZksR8%jbmf%wygeOp`YCqkiIuE00Z$vG{ zH`dnqX2#R4ucI>aC29iSqH5u1Ypoe3zz!}K8n7>F|Bpi*#WPSdn}g3_HEKp-1?I$y zMlbCo)C6)+nVE^oz#`Ouf3WUDW%Lv(lb2D?yT5Uv;(6>TQ^oyIKRkT4{gQPHsuqsf z_HEP*!=Cmy9uNQ4gBmb=rWv3=>i$^t<7Cus`3Cj=;KIPan(_A^7hUOCfSLFn>g)F( zR!@1M+rh=A7FuBw?f;%!C^Z?Vl#E6F zJT63i>uth`_ysBh9ZSp%Gf@Niur1C*1yqfZ_$Sl>b{rL0%~>YU2x~HiYyXesLe*G_ zdeMATKyRV8&1THOpR6gRCa^cHpP~XehkE`Y>L~9~W@cVs{XMD}-$xzQ`_R>qc#;bp zIQ9G{;uOrMU5d&01L~XzEB6Hc&t@vBy$Y*vFKSKuR(PC|I31O#oz|16j0Dd%c0t`A zHJkmf6wjt(09K=lMQ2UP=iP*vV;uGw}esGn4`Fb;R2w&^8nSf%;n zbuf0Pe-ZY=9hL0=Wn5gNLnod)&+PL*TF;}3EAkoh`=B2x)k9I+GZ%;83s?`2q7I^y z*cWf%9E`3qZbIGn&NtgU-nAElQ2Rd{^#fr#YQN7#4Y(8)$h)W_{mlA3)}(y{m6_Yt zwoFXBC>^!t`k|xZ^r3321a;2DRdEr*#mlIHS78l&2Q}dPr~wb6_VdZ@cL!YGu;SXq zCwj)kMaA~;#`Q^z?~@oC*EN>^LWlc`^2>esc~N8Xe1(bLtm4wydHDstB5&5*qTms{W)SMYR!H!eCZ!8fyHhObj;eD9up;yd^Cjw$sOmCf||^SpU;{CP!X z1;s_)PTgZ;`$Wa|X1va!PelFe5pG3|EG>R2Z<;^R>;Kp1X7l3cqCCIX=l9O=`%4mI zV*dZV1a9({e}_7tI5#iRTU10}W?osDq90OPTwapsEiU&*mHB=C@-jZMJ?V1(%6|f1 C427}) delta 8951 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\n" -"Language-Team: Norwegian/Nynorsk \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:59:01+0000\n" +"Language-Team: Norwegian Nynorsk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nn\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -7610,19 +7614,3 @@ msgstr "Kunne ikkje slette favoritt." #, fuzzy msgid "Duplicate notice" msgstr "Slett notis" - -#, fuzzy -#~ msgid "Code not yet ready." -#~ msgstr "Kunne ikkje prosessera melding." - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Opprett ny konto" - -#, fuzzy -#~ msgid "Check if you are sure you want to delete your account." -#~ msgstr "Sikker på at du vil sletta notisen?" - -#, fuzzy -#~ msgid "Showing recently popular notices" -#~ msgstr "Søk i innhaldet av notisar" diff --git a/locale/pl/LC_MESSAGES/statusnet.mo b/locale/pl/LC_MESSAGES/statusnet.mo index 902669dee93187ece27416e351a135132fd88b72..0964667c079da4091b3a778598623c76bf062128 100644 GIT binary patch delta 10162 zcmZA7dtlFH|Htvq=R0PktXAAZ`VupT*^FVE_PXH%f7bkV%oP zlv7Cwk<*+yNk!$5+bQMH?QW$ae$Usg>;C6=|MR%6&+)q6@Aq|mzSDhfbNt*5+QfD0;%=;tr!fpK<3PNxsp|~DEDXTCcpo0XPWU}$^Ss*4T<0$O z&oy_QX1EvwIKCU((=Ur~omTXHEnLsJ$bmMIuG0`7jB=fDOu)97g)z7q@Aw?&JA8ot zcigSxzhE&oYVA6GaThkm`(s?EAGXI|Z~^K))7!Yt6TEnITi5A8e}6mAb^J6c#kx)v zY=kW^0`-ES_V_}qMZXvy#!aZ}j-et}InKPe0oJ6Sg!M5E71^0s4`0J3xD$i$l1Jly z8rSh542*Z35DY_I5NG>cu?zhH=;1P)kD={d=W|?RE$m9><+unN;G3u!9!5pr8fr!jJDZutqe46oHM1hr{jXps?!{<4g}N@di>;uIJ39aW@B6VO89Sfw&c;a2Kj*uH)0#BEg(rhB@?CqGlT0mEyw$T!-%> zL3M^b;yRP*FME{8(tjY)b(Uk3Zm!c)u`KIuMi|n=gg6>gxS;@5Y`ak-KaPHMlU%0} zHo!vcjw+^IxF2t$Rzq2`>m0<&DXudeKgS`M+S7G<<2sB|E^pCLs3Urr(5It{We(QH zH&Cl%H&(-o*6Y?=SefHhdK>RXEz1y8io#IOOF$KC8mh*op{HCeq%jlAFd2KKng=b$ zIQq*`DLRHV@H{G2<*0Rj8zZq=AJ=J)ai|oILghLeb$ub~{^_UzEa=1fSM`^2K%w4- z3f&QF@MC7gso0U@V^RCUI!waz_z#TiYaZAgHISir317f>aC|@4iNLV_u2Tv7p$0an zzh`Fl6bH29<)T746}8@HVmK~Gy=Wiy!c(XRHh)T&DHXf&mfj&I<6T#qpW%`!TN8gb1*W|`GNZBz;P6eeLlu1D2K{lVtCL{zPe zMWt>6ss?7GQd5eGq_@sC&Z8nwcZdm16IAg~* z4K=CghN_7|)c#U}qwxSTV9$wSL)M1VA2qUxs2!^awJNrt9&i=!!P>)2zX|I4$5A1D z0yWcI)WD|M{tDDbXszuZM?L2PhHCwn(+K0hJ;TimV^GT^88xHP7>v)NX1Wafl9N*F zpXnylJx81C2BK;u6IJCiP|sh2n#c}(1b@cEo{#FyG$H>h%Zxl=j48SXs4X=am4XaZ z?&qNfve@=lVHf&up=#+eDgrgfnit2Q_JN_OjcWpG$9xq%HIC3oL|?XfaSv3E^H3vQ ziF&~WRH_>1nBq*fPD2gwUF&z)g1(z;j6$6sjvC+`)Q-9-m-Vj;PjbMIca1YPM_t$x z6|xDa8I+<1vK##vkmovGu_0;#qcI*gqOQA)`i4a0o9l<6ma~TxpR*?4Gb8+r0~*mS z)QiIkjD1kYr(nfajH->@=*QEj2;D(N?2++irg^AH6{B9X6P3Dis15HjYT}OfjH%j4 zR26qXZI!9m7YCz?X9H@-`UW+?)2L-uwa~mM1+~0#Q7>AANw^$S@FFTQttOb&m4kYp z_XZ7pUbmulzTdGL-a;*tDih5NYFgv1Pok=OmUS5_)a$LMu@e0nlgv!-M-8kiYE>m8 zMd~?OG_+ODMa`fXwf=XYa$jz(KiO=_y{scqH8Bm9qGHqrwGS2Y@3A}HK~1Rp6tiFS zMJ?ySSWoLei-tCixv1s#G6v!%td3hz>v=!wg+EwtVmtb^rkeXxQ4tx2^)U}MftOIV zup1Sj3#ipla~j8aztfS1a{3hNhI#16ZKxYgpdwS9V%3e2s0R)}Rr6%jKuSFxk^c0FR8olut24L89le?ykFDuT7o#^%<@)%S597EJCG`cIJS50+otMn2x1bgjHv|6)BmE zKKg4>k=uY;Rv)9*^-a`FgXfrH4MokkCF=UNs9NieD$2(_8Y;3h)N;#4-7pm^et=k) zqjLHlYCkxEdZ6!FbA1RZRiUWoG{SOhjXPX^?LJ2;@W;7kwI#h^2I38-5yge0QK4Ce z%FS9-k?ll1_^dsC4K*-#o>|ACSVTV-N8&bA$m`E{oh*DDTj3te$KO%EmY@EY>rB)7 zUqeGLYW$+PAsNTh--4?8hy^C3si+zlgc|TP?1&q&D_%q8K6;_4`V`c%%|oU1dDO=9 z0S?DwSX=AA%_4I{AJhefSRa?7LcJCJcm}n6+?R}g)cH;rjU!RZa2YB>M^VN7GwRzA zwAj>08&q*8V`tv)OrlW*w__*Vi@GsjiJ5VI)PNH47>>q3?6lPU*i1ytd^)bc<)|Wz zec4=>fcjP31NEMXsPog&Qx(pop`uxg%5@3$!FNzwv2U3vnpjlP^*|NvVAM=Tp=P|q zx&alb{ixhuz_u7#Y&NJq_%{7H#jJldqL-Tu=M-ugokhLi2G+z%ub3O_pio69NVK@e_FvnxDGyQZ_EtRZb{U_2m!~q%ns)@h=Yq~WD^`Ob97nj)n zR_sFmthM25X2v5?DJe#+rp>7RxnA_`gQI%hBrm6AHEOi_kmCHg70 z-v@QR5Var7K&9kuR3x@zRXmJJ<=3d%IfMGc#P_<{x;vn*^PZ-m92TIebTw*5U!rmv zvf5O4Gt|h3VE|4<&0s2OW(#b81FCrUpi*)M^?AR6x~@uzu_3bGcup4@`Wp2`Junjs zajLn%`3+S}RZ30h!%+K0JZgOpN4;PID)-N#BC-h;slBL)e2z-VMNCHL4NaW&mqJ4W zn2gHt0_!%^fX<;_c*9!fO*4>A*q-D4P!C>!+S}KnQnA%~5S5DKsAYK08nT8IYyEen zq0nTa9yA*@pp~cre1Iyt!>APeV9)=Bx<2?VljEkSeu{M@>IX{^>iMsr?%!&Ue~q3t zod3|!3!~mP#g>Q)Z8EBOMxb&!8&z~A)=yD2Q*Ldr)-0=3Y{c>LsE95{ZRPt=&-)QO zW7T!6e}yn9CARaZd-l))KVnxnv|5@u&RHWWOt(xuDUG{hxDn;L; zCVXkVXF_wE1KL>XY%s>7LN^38@V-p4%W@hjXX{ZBIEbq1v#9H@S}VV6Uics?*KJTm*BABT z;iw&TEb9JA7=zv{8r^7Y$5;&5WPUbxK)rA_>KD#R)Yt7K2I2$nnE}*A)kbU73m!v7 zayV)t9%>@5qayMp>bjqi>pbTM4gK(_wb^_mnxJxjFd9xp=8;6)6=wgFhjWE;tGOCCUpmKK-wV~WZ&9wRlCS^@g zH4=r|<5RE$4o9t$74~=;>bh@H11?8B|8ETE{my+`OfKT_QTpRh7j8j)es^IrykUL# zL-TLHz43jHpSHfV)yz0)n~7jQRPBtwj_9GDyAu_m1L$cPd__Yu_{pBQg}N|kyQzVD zQ8{ad%4s`P2#26*;yF}k_n=aF2$jMUsF_|yJ>U7r91lS~|KX2V|H@Hw4k)y3P`T`f z3gJZSDpXY;LhXnbQK|XMo)6vOI)3_HPy>Amt6+|`5H$eLx)4>2r8`*vDyE$rs2DkF zW+zZNue#Gzb8S>8<4_Ook9xopsOz4=rZ@*x{hLrTKZ^P}|0C-Ds~CVVV{{<39886M-|bxs2>uSa0=c*4RA`CaXxAQD^Z{6HP{wEMGdIZ zep55`P_+?_T1}lWLF+%uUa-NQ*kiqh-MO�rP_)9Uq~;5nEz8>YEUD(1bJv)9GiT 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, 2008. # Piotr Drąg , 2009. # @@ -11,17 +13,18 @@ # msgid "" msgstr "" -"Project-Id-Version: pl\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-09-09 15:47+0200\n" -"Last-Translator: Piotr Drąg \n" -"Language-Team: Polish \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:59:13+0000\n" +"Language-Team: Polish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%" -"100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pl\n" +"X-Message-Group: out-statusnet\n" +"Plural-Forms: nplurals=3;\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 diff --git a/locale/pt/LC_MESSAGES/statusnet.mo b/locale/pt/LC_MESSAGES/statusnet.mo index 6169cb2ccf5d172e36aef47cf11ce0d33bd66c5c..85e095d9444bac87c0a2646314127d2d377d8c3b 100644 GIT binary patch delta 2860 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 diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 7f3df0492b..8d8340a7eb 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -1,3 +1,6 @@ +# Translation of StatusNet to Portuguese +# +# -- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. @@ -5,16 +8,17 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-05-28 14:56+0000\n" -"Last-Translator: Rui de Brito Mendes \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:59:19+0000\n" +"Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.mo b/locale/pt_BR/LC_MESSAGES/statusnet.mo index 099e3fd6d64c988f7462a5e58990ce953b71cf92..4cf5ea13c69c43c3c0c9054578e090eb4928d5c9 100644 GIT binary patch delta 8765 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, 2009. msgid "" msgstr "" -"Project-Id-Version: statusnet\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-07-14 11:24+0000\n" -"Last-Translator: Jose Martinho \n" -"Language-Team: Português do Brasil\n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:59:24+0000\n" +"Language-Team: Brazilian Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: pt-br\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -133,7 +136,6 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s atualizações que respondem a mensagens de %2$s / %3$s." -# Apesar do termo em inglês ser status, na verdade ele refere-se a uma determinada mensagem. #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 #: actions/shownotice.php:180 @@ -2180,7 +2182,6 @@ msgstr "Perfil desconhecido" msgid "Public Stream Feed" msgstr "Feed de mensagens públicas" -# Just for me. #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 #: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 #: actions/public.php:120 actions/public.php:131 @@ -7724,38 +7725,3 @@ msgstr "Não foi possível excluir a favorita." #, fuzzy msgid "Duplicate notice" msgstr "Excluir a mensagem" - -#~ msgid "Code not yet ready." -#~ msgstr "O código ainda não está pronto." - -#~ msgid "Export and delete your user information." -#~ msgstr "Exportar e excluir as informações do seu usuário." - -#~ msgid "Delete my account" -#~ msgstr "Excluir a minha conta" - -#~ msgid "Delete my account confirmation" -#~ msgstr "Confirmação de exclusão da minha conta" - -#~ msgid "Check if you are sure you want to delete your account." -#~ msgstr "Verifique se você deseja realmente excluir sua conta." - -#~ msgid "Showing recently popular notices" -#~ msgstr "Exibir as mensagens populares recentes" - -#~ msgid "Tag a person" -#~ msgstr "Etiquetar uma pessoa" - -#~ msgid "Icons" -#~ msgstr "Ícones" - -#~ msgid "" -#~ "Hey, %s.\n" -#~ "\n" -#~ "Someone just entered this email address on %s.\n" -#~ "\n" -#~ msgstr "" -#~ "Olá %s.\n" -#~ "\n" -#~ "Alguém acabou de digitar esse endereço de e-mail no %s.\n" -#~ "\n" diff --git a/locale/ru/LC_MESSAGES/statusnet.mo b/locale/ru/LC_MESSAGES/statusnet.mo index 8bb08b88595777b9b0387ef43d929af6a6e62a9d..160660f081bb0d0b236427d847ac805b9119392b 100644 GIT binary patch delta 24721 zcmbW$N8*|avi5Z2gk{X4Y4S`jV;iN=`jV%;S~(V%pDyk9P?vIY=mVo5p&~u zR6ED8HqAKqh?F3sbSKA2gRLc_UOuI$~z7?+hoBj*MxT1wTL!uEAV*0t?_ZTmA~wP^K=Xei-Wfa;Og0Ky@$< zRWAW`!4aqtnui`-rhKmN93+w*FJb}w1ywPmD*89r1Kf{lFp%+$z!21htDr6zYt!{n7mCBu*dEn^$;bwCrrYv47)*Mxmx#94 z8qAD4u?T*N8i5C>MVVoM**0O;`lyZ$K$R~?O~qC$g(ol^e?#r2`~yw9WS=d#jSWes9ppHbuqCSDS*SZ*xgaJmt2ZODugEEm7jYr}gM)D)f9T#*4>4mD zgF3S!YLaT8#-ssiwKPEw_P6D8P-E*uU1vF}-e%O;o*BZb(LG-xL$mn+H9783v(eIF z9@2$T8@L8)*|x)cxB&CwR#eAMqsHt!>O!wkV^m<6nUmTWM!Ges{)l0$nhZq7lA#XF zM)h3^^&={%#%39(p=bUbPZr=vQs5zFA0w)`39ChZw*mVFh}6m-U1 zH~~Gl1lb;5XFm~L=!VH~g2tE&l*T;d$D!u34{C&_V>bNM=I=vw=(5d!iFylVe$U)c z6;#JtVp$x8S|gh=MsJNvMAXCdW6iTJ67!O7V$*$48+a<}LK{$ztW&o9zAaBX&P+jR z)JCmo(`~Uh>31+6&PT1aElP8J=L8Ym;Z4-43?MTLrbCU4Drt?>w)w45bKDy%;ULr_ zX+7#fn^D{Ld-R|?-gLYWYTLer1+Xc4)uRDKw0dWvI`9#O;!0FUK1YqnQPi%uiW=hd z6HI=tTm1Wz<0RdgcbuZAm=p@KH3MK}mGMAI-WE=P^P zTGZU{LCxtI)Ok;^5N4RfR{_SLw&i=M8<~Szd`nRs+KFoa$Rvg+HIWOp;uX|L+{gU* z47CVzPBx3C3~FC@MqO}#&7X(r_9=D$RBEZ0;sgcVTbjZpdVRxfJAmZR=?3#P*THhtKZdruJwqu?s)4*o$6 zP0nd%WFk-vl|?O{x~M5>h8n5%sPlTGhS-Y*aWU$~_E>*Fb@Vl=quHnXN6PDzH4&#Z zs={#85YI*p)iTr_>_=VbE7XOqTc2WS(wS%Qbi?Y{8$U)3anMY&J3OcxD2l}}3PZI2 z+Y$*NqX%jVdSPlDgIYWjP>;~Lm>!qe{B<^e7Y31k4Arr(Q6q5ErUPb~8_SEju`(El zwJ|N%cj^;KkIijCM-`CnhT5KeQ5~3y>d*r8;3ue#A48pg0)sIbbt6}>2R_C~Y%`nb z!pRtcSJ7LZNbnrfU@hcf=yb<1cpWto9p5({h(}G)KrDq*urzMP40r`~=MPZzg6Eoa zAyoa^*cS(2R=hZu@zZq4i-wzmn&D}CGqHr~4!tm~ZMGLEXt$s1E#&6ES3g znbWzbsauFea5-uOk6{`-Y17FVO!|VCh)%eP_3;4~#j*>{kiU((qh6?n5>Xu+ZSxmn zX3}e|dr;f%8`KT`f*P6pi+HwRT^x)zP>ayp;zM(Rwy2TliP^9pmca3-2hs-2iYHKW z{Xf*AyN4z553G*)eP+%(VmRqBs1C2k5d0D~66cLx=LaGh%3HR=E6hnc{bKWWD}!>x7ZYi%?EQjjoDAWziMNL@}>Q(Q2O+<5h z8a3DFFgM;nO~rH69cNr-hO!{4!Rn|Ew?Z}8)j9++&n7tU>4FvQ27;6i|Z{^1HEl}B&x$pQ61Zbnvzr2+o&mhg&LXcADa%x ze$4o5h+C4Oj&w#1Wna{Vhhl!5VqJ~8qob%hOhMiG9n{GEZB4zxtc9$ojut|lR~B_6 zbub4uU*R=F+}jqsXPtp+@I&hw3@5!E)zEd+_IZTr=o3^&(yTP?)a-yJ5IgE3|U@O2g;zfSuCpIk*Ej9V${&CwE0P>p}&Z_qn}Z` z={f4ooli}EFlvqEL)};j^uPZr5s4(DE*8Kt-zHCF39w&B^bm)$gt|caR>Hp9wW01u+OCY`Pq3Th&J0 zSqD@{dZ8{f1l8UIERHj6{&ox_eGI+Dh}tLeymRQVFr{@-OikKCZwc}zqNrQc?T zJ{P7Y9fg^&JZjt3v-uq{1L=57g@aM`5-|j)*z|nVb7eJZO825xeKH2(?-<1Ooxh1_ zZeC*(%)FiFGIl|o_y9*^zz*~19g8zbpF|C1tDR=V23SX-@~5CWwgR)^R@8-0phn^w zETsK^k4QEQ-evC0gBp=2R72G<3frL?oQ8#PG3LenSP3tpwpXUzW;fNxvZP0$w&7;f zh0o*L_!zw^Xq;p|K8K)&XfJ9J{eW6Dw=g3<#Bh9R%S-Mt9gIQUKx5R}>4v(~{;2kc zpl-y6T8!IJ*GbvK_-nuaL5A)y-(K^`ZGu{4BT*OhVl;k+dcs{rb?6>yaXrOcn024o z9pR|_3aAdWz#RB4>iqXnBl*!j#$P?&NJdWFjoI;A)D+xC-P!M`6VmKA^>U&1Z!~HV z#-Tdg0<}HcqeiYfY9#t$Qyh$Oco_3wsP}-mKnYYvb<_#%Q61}yrLZp+#)YU6+k?gM zN1LDapqcA%)D3h)4fP1rc^{(I%s$MES5Z^oeMUqT^Byv9zp9v@bO+Q0Mq(LUVav~9 zY0{6a`45}dZ$peEzawfYXJQ2Iv-$U|Iggn9ddLlXokSw#9X^Xub9e&Pz%^6@8ICe7 zSPfYw&L5}_e0GcvPP~N6G4Ttt>a!d-YvwJ~`9m-kS71%NfhEy%LW|PNo+hFp>WNxp z)2(|^Lv`Pl2YqQSP|Df~RsVhT&nc>%(67ukj6sb^AMB4l?23UW=?wP7Ft1C-*F2xe zDE5u%;Vq0MUHFulf}WU<^eild>#+cyLJ!_YjbQL;Q(g-jknV|TaWiW5@5TT;gX(xP zdan?1&zJ_T;SkcA|6(+8+US~|tNw7Ot*(o?O+ zu_)<)bLMqk0@IL=JIDNICenrs?epHK4!wu!`9f5Ww_*l7g{prUJ@^p&W9WI)vC*iJ z@}bUKjUjjl)&40|`!_HvKJ^mOT!wsS9yp~j6Y0vR3pTcJD28-b`)CImk-Ptt^ z$H4DR{TK`)-3oug4ygLIE|~T^p*rdvKtw}03X9-g^x!qrBKik)!3G!2U%d>%K+>B~ zL%0=nhkH=L}Zjai2dr=p-in`$Ms9lr(vKi3`)YMkP3flkeiKqi}aS(ovYy_vk z59Y1)5cR+aVyooBXw>3ti0V)rs-yid631X$+=y+^y=q3L9Tq1&4)fqzEXDPmqeNox zA?gkaTr<{2-9azZ+>S#vunEiKd8~lxuA6Ndi#15k#?p8STjJlS8)$UHamHgJM&Y06 zjU!U@M{~k3)SRzCt%ZA73qx<34mCp$>0zi2EJV%uH#Yw<>Oxs=@vy>bs2e(o8uEvz z^0c@4`&KM-oAFlz1IW;vE<~jdqAqaTrt{n}cU}uek>3|Rcnei8@F(+;S_L&lgHTg4 z9dqDfEPz|ECVq=rQyK1h&9`6PyJjdOaV!N1I0kQ__IuZR#vz!6^d!_G`w+E{H=!YvTF%!$RxFW@Cof=E3K#6hT@C8EAmCZM*_Y}E5$F{Z_Js9mxZ zQ{y4jogT;R_yelmW8CEO(=ckJ);{0|TfAcR4t{9%Yv3;|4l0&HU2xN{=CzxI4M-1s z#7{Mtgmo~@Z+szRW9)_-u>}S{HqV95s5wtS4^F@qxC%9bPmmGtI%$44LlI?dhvlf? zMa|hxEQ{w+L!9Ohv!8QfMbcHU2o6P+`)qn0#*#jbWij-Lc}>?s)t`%D+W$L=6e8mS zs)1*yZI|v(v+cq#E9s`Fsp^g@pM@HU)u;yVqBu>W#^9t4A(x<%haUW{+_ISqMZs2O{%aqlA&Vmf!i|7T@Mt<~bMvMF_ zc!d0|j_dR!e@H6V|D|*RyO2%{bRF+FBIk){1X`wc{c}CsdI+P)PZQ)iN3kMaz-Rat z7f4RyI-N*oPv<%jq=#ZVT$$eW|HZ@8U}L8c*T1WdU}fsp2zC80wUME&*FPjn$jD5= zDJ+OrQA73$vtURD*T0PlqJ};iHBt?%^Du(+CDe@sWpo{G(kY26Nk?Qdev8^wgEG6$ zNF1G+?=M~84>Dv>7T3RRa-%v_2nS#}48m2`4X8D-6?5Zp)M~$mdH_AgNX(km^{&lq zy3RoKT7N~|Y3E#KWGt3=jSyYe1vJq zPn*y6KZr7;MyMdhVKHkW>Vn5G2cE@p_!IWf{?D7=WO(r{3U=D`Gt>!@1zi6=uZyvy z$D($@AzXv6F(0ljXl~#LW+HtZ%iwR=5DR-;Cmsi&M))k&(f+?jL??uYx&D1z9d%-N z%#Vw(CGN20LHt82?f24H6`Nx$&c-l2gIdIoP-`G#VUu42b)9ag8ylj0uJ24I5{?^{ zffrFj^bEUWWD(c@PnbTyb%8vXikii`t)%P!$~}&ys25Pm7=aqe_NWUkM=kEpQSBea z=6DOe+K=T*n;{)&{T!po|J9}ohPzHJ(p{~e;AAy`8i76$W=PlIFwzHc9>zqv{$ETS z!;Yk1SldOp{`dcmDE7a4`YRb))n%iN(@=Bv1M0#>V_g5sr#H4CorIMzw2bL!J#0Yw zUDV<`f_e^QDC_$F4k!lI-ac%Ef#u8%G%M%jiABbDWN1jj%e(%+JRXahf;*_ilBa@M z6J=2ko?fVqeU944zoB+bg^I5KEjJM>kp9jZT*-8_Hg+L@80v=4d5P2@QmnEu0k!zn zpq_viu^9e@>R@OU*Z&ggg5^n1L)ANo6Y(@=!e&*?^Pn3}CA}BBVQe+i(N9p@()$Y$ zt?uWjp^K|-hHfdU;X|k=+ZmhxGscn*sbP$>zKyN08RgZQ3U&l?6 z5%fBr65&I@xrG0s6X z_&r8rwnpZ>x~SDY3k%`})N|r5)T2ABF(af$XDK4GKDNi6sPFTGSPh?|=B|7b^O~)P zS{sR|MKlTZcAJMfZ#SwVk1-DxiZfQXwzm$8WB;qd`!-{P^*E|S*HPQ=C6>nQP0gLu z!m^~}Q5RZ-+OA(>e|&-auun5%;pXN;<{D~>GqfJ}kzg?rbrp$91SX z+>Tlchi&>QYFFI12DLQj7edvqf|~34)=}7;^d{7lyhN?J`rcONgud1hn3aM_sMo0v z)uE43cf1)j)IXx03u#)LCt@T9ke-a8I1RJoA{>O9FbVUvF>B{M?kDXn(Uucke$=ww zZD+pG?zbnC{}p-LShRy#1I0R;xvYp9`j*%hC!wCCmr>iYOeeEj5>V;2s44m%YL{f_ z>^hgV|Ko{hXsdNGch~{-=zJez@dRopgSwixWF-tEonW1Y>c|GvF1n0OFi$u0Jo;6l|*}gd1LpOvUJbszO@`6q^OeJ4#XvzW4BA=1&9fUT^1QFC3ew|P?5L+#&z z7>nW=9Uu4L11I?Z0 zL#69r32ckQ(QEw^-zME}kXei;tT#|=$^uvdqe8w?-nH9f94 z)a+j`>gC}>Etj3!k)DbAO!o{oFSRwO z5&hOnM60pr2yvCX2f2o@)4+gzZNy*r%_MDJJ!tan*8dhwbB+Na4hQWx(Rhd z=dlPr##r>`7->Ev+Mx>OU>n?ynu4^W%$?^&%~@HSZiMPscT~sbqdw*KpgQ&nb>Whu zjV-LBP&e=ij@AC(N2D+rmByI;+Q~Wwb-^VViQ7;O-atJ_(!OVQO?6cM+tvxFx!-^V z@N1jCXUo%$HRaKmU;Do~5$*GVsO`7GU%(Kf9vJtnImekHeGB`LKNMB}2h!~JwEyc6DT6&w&-f2fL-dXH7OEpJu?d!(U_Ks4pc?+h z8amM|s^+LWUx(`8m#BBj!ZE7V%ZGReOGqlsv!<1hq!T8E$>EaOmfyc9K6N3D0P z=_Z@}2-H-yu#UHGv0k%=PBHbXO=175!EQEVGOEYxQFD9>bzx_!+5g3`4#{Pxj^03( z|ALyrtkcX$HARiU7}Q8EK`qK1*6XMd51!6k=nJRDbn|ok7_3iv5e~$w)+RGtX9Vf} zsQq1Lrm0^UHJ7bW+jTfP~+_t?K8f50yN#&GsyVnxeX>JL--qUu4TSqqg-CR6BQ2A0WS@M#x)zj#*5dtXokd z68OHc7OLVnRL7R1UOr!-Uc0AJ9~!T$S?Ah)kGfzBRL8qu1ssP>aF@~R1k5uHHp8A2 zw6`8aJ*x|Sz@75!9%7w5-=uvD%n)u|Xr|yW>Hc3HQnf62TL@b4xyKdHxupjAjm;r0}%oN0-&g+I+%oA;TEo#J0qU!&OdaJ%d zbtLU#)c!B82zIy5MeTwEsG+@%rSMN|hMtei+ix(c!EaFYzDM2J1Jn~S)e^HdN~3;~ zYJgf}Loo+_jowHiH;Cw^k#VWHqY9`8Mnlx9?Tn3a6zU0f0<}HeWoC{mpz7DLw!@jE z`{5n@3q$bAax+3dTSGs#`#m>e)EdeqDr`nxm*YIA?u{TJ^y7ay{yc<|^uor{Y?(c)FpcU@B@` zuEOzn9d*HO>&%*%iCaluw$57bIvYt>+hDwltw_(`Xntq(6MjP4TV#`oe2LY`=<}Jm z^R?KKbdk+w?#5#l(sNL2WhM5&uTUdb`g7Cq3YdpXsdYAx-x<;mED z^dpQ~Jb~=ili%KGMZ-hW7sTreK=9%9D z%afjr!*HK9GRcg@D%9dj!HW18^?_1y5Bpyq0v(CyNjD1B&~}W%d#Jh2wb%TDp(YL? zJq|nLZ`c)^?lbAnQBS~-{pPo5(bmPNwc;Ew_OzZn!2VZ5;Rju(8_q<{(F4>7R61mS zXWIhx;Msw{;Unvf!{$y>j=286vQ2f=n1Tt^TXD?13sQe!9B930jXlo(*P_~R+^otM z7)Lt%gmE-#+nhwL+I(Ny-;!CEqR#&r+hNtO%rB)EU=7lhPMTlgzKd$-GX8~;U%USQ zr$tfkH>^^ZeT^9cSgogMko3tj<`J6btoZ@rQ>>s1B%8%F6zh^+iW_n>OmEUdU^FlJ)&o$9_1TQYwLSdz2Hm!=Z)7XPDG0)0kt}3p!V-k)C1@@OodJU zXMVtFj#`9^a4@F1Z0>j@jv;*y`(e)?%=bew_9k8Mig6n1N&Cnz`>)|u)6>)FNA9)7Pv)x6C$+MAe&*dUWr@oUE}k z*pT#{JM4cw7@~eM6`J8Z(%n%*^ar-ZxVz@-cMZ-Uo%fy@>Q7O3685vP3hK$(3bl*I zT2EmJ>D>3tNEX8w(%tT}|H}}WZwpRfEa`u2I`)CN^U4GG;jUpI5s=Me;K?#o~XP z3yiQPp+3W(qTT^HpPG&gzxr zrTI-ohgYuu|IvREHAHP+8`olO(tlYi|6}ssLtXGRF2yeV`mr-U$12#~4e;O40xZJ_ zreI_815*X~w|jH!sP}&&kr5Om;~1fpfMUvBrgT`P!FEK^a1{#{mP<;3#_t! z5lou$+aUq|DN7w1;9rcTt*uatbPVdrw+;*8aqC^w6sG4nFH2$u%~1m)+Gg#npJQs$ zsWS%nAFaWtZB`PsxN2i|Y=fDxAL`jY7WIHxgu2tUsNHoQ^j*Hm?gyL6-#@iM5R9^nchDuDanZBP1;3U7|$#6RT3dbaFs(%mWCVADL% z{4bfk4bNQ^VRG>mRa@Q$i#)B@i)q+a!xMNYBwusJ_DRm$S!x*kyn!VJJgwB&-b#J{l{qj z{F-o{^nEJv!1I6ACXiR1co^olbqiq}dB5UfOr~rgeni+poHwp>mNt440_jW*>J=fh zA?Vm`CEC_$Or?XIpyPewJfi*oc0=j9RIEhaBm5r66Q)zXh>)FzbsQmHnezI`3(c8B z{MQ9z>*e&WB&B0KIqwngfF($OVDsZhKOh}oTTSQ8xwQ1#DBAu4Hy~$f; z+faTB+9^POHY|jlDBGZ=U5|`PB>1(L|A@yUChGsQ7U>H1;Q_Yoi?4@c3|Sa z&g04GM3Nt1%QoX)TmJ{j_yTh7`=7R)bdS)H%+vpBAe3IBa;CXd7asB#XI;DPMCk2P(@zcHg7N7XE5PEgc2N?8Ny>+le- zMmz&{j#HNO zG*0S3dJ*|=j#K3EUiAOd-!Pj$ow`eiM_@XFj!#LCCVrgw=Y$%>2djYN8{*aQJfST0 zycHSZE%roJcx@a0jCdX{_~!VDI`;^n|)V2{ydxz|Kk8OE#(%C7$K>9H9 z{pJ7UgK*+C7JSkut2YfLO9^idK0=(&2>J=9 z9GBllSrJ;(4<3a{e@pr&%4fYf0W;Y1OOaog_!H{iw0UhPPp5Xs+els;LO#+ug7pP9 zih>Wxyur!q2#-mhB-)WL6G{&TFLJU?M2VE`q)33Z4^an3iy zV+i^Wf9WX4xn1xrzOJ2gB&t$TKjZ1(BgQ#SI)g&sRRU5Mu*w4>~? zzZ(BKjkJ!YSbzrg;kbs?%zl3{S@JU=& z?;1*TQt}JoJn@r+C~90Joq@9haiVQ`2Jt48??fF32rUWiNY5sJDrTTJKI-oyU50dw z?cE^K9qoC1&-%YNPo-j^mnL%uVV7FuSVzSL_JaC><_qEr$@`1=1LDI74M^)lbvU6C z>91_VQ^>zg`pr?yMv`zbb-t$j%`uF4=0NjqaQ1N0OfvElDiD90$`6RIARfXU)Ul0j zQNKHN+mQF>&`(A8_qgkse1 zMtU~o*Zd9TWTX2d{K!MWUE;A+YQLali-IMG+Y$<#6mr-8EB%&@_n@rgf*~z(dVAB6 z2y!#3I!6HUZseumOdWcuUm@=yVYbcdN&GF!(&2KOmy7sH@&@CVwP`*7}(A4Dh@ z68h+yxdIh*q@~h6!c|VXPG~}2XM196>MSI^o&17?zJ%$NmBaRw{STkmx@zlPLOkgl z+;tAhsuLEI_dC8#{R!BN^b&2aLxdm_IubZ36X`d{9NW3nWRxPFAFJC7ttNembXw}~ zvGpRkU~S4f5xNrQlb@B)pE^I1eu$k3!JPL2=~}h;Lq~Z|JWa*&6gDUPLVS}gOJ(gy zULtj;*|bagw*^PrWc4;9mWCE8_}gMblh*Mu79kYmjDJW!!*>1>er6!PiLzs)i*v=Q zI1oR?JCy18i1fdYb)+v5u5ey|f<5?;w2=6g)Bp<45WhiutyE>g9|Rp)$XiL{W$Emj zqZ?(9NSq~u$ZLpm*?Cqc(B0Ypq!8|#i=usvZY+3F`+#1H^&Gfnayv4P1c{Bl#b{z+o8j@W^0+C+S+e3bT;-BCs z(nAT=h?l1Br(O~hXuJ}M&&bq~moSvP%A|kC%!FNpH^)<3?*!-SI6>KM!by{KveDL1 z>crc$m}t)_N?8y=$3Nt8|K=!4V`Xjpa|$LA_}XwQX!zhNo`9rBGCTP|@*z*k1P{gjoaC)E zxF>m6@&QlEM1QM?7F2&aF4fKP3m5Er8s%$o+ReV;)zh@8x6_vizHR;791A?pYWmBM zJ}t3h`m^uSMa)ayu9H*7|9?8-zY3k+Melaeow@2t(!^A5pqouq_vk)7DO2g%WS#7L z9O&jw+7jq4al>^#+vweP>g=MA_P*!_x3I_4FfM}FPBl)qCI-3XOVNRe$%o0&N&Bb+ zROW7JipElA_#4`jyf^8`AUD)4=pVEH|7-XjcW?`NBR$D0H14#*&~XFfHKNJ8G@@Gx z`%)%xp_D0HVJA1JYnb6rnMUPVo)XDhHL_dj(eD4AMT=_UK=RhGlHndz_xF-uE*Wu+nU}jIf?SqGV;4Xc?1-m)jJxO$>c{(@TSL+uypD$lFH+S~rBn^ofEr#XTrlP}+?N4fu z&Hdi>9Xsk~Pvs=f^R@We&E@0&E4a3iX2=ZOn?<@^>v$_GWj15LK+!}E z-5(3qBGd3PYrY>AyJ1P+7IL2lus_!NP8W5n`D#sbv-)EHaD#k#i@7zba(8yo{->Xv zOBCgZ?~%xZC$jH=VF`(eeFyd)rcBm`xpQBpRBjHIz@b-ePG1mzgs^sYFi?l+!!FkPBtz0%9V1PyWvUGO1aUgQ?Yt{pMBj5{cL|_NYBto7k~y)$H4T1X%lLz zs#cdxtCaG8zTW5f{QCXh@Ar6|b?-g%-kZ?RoE2%0u1f2@kv(X>!%;EFal-L>0moUF z%5j#~RxbJN9VZJ`!ot`PTi_r}k4La9p1}<0c5s|hmUj1whpPX;<~yBCeh8)|KL%A^8P$-t zFdO%GdJ;)T#(S6@C!hyE#$31)^WitP{2uB;PG?g;8|wTBR0E?>4XlQ$*9LXNUZ@co zj~<+*eD3dTB9a5Y!hHBWs^Uw`h-tf+bPm*z7r@k53X5VaR>BV0ALrZhfUYK;4x`8) zfx~bO?!-LtjDJDbagvD)C*w&s$N3u*y3<%;iZBC@=XP$vW!3<1|A7dI^f`Pai)8jhS`P)!y=VV{6$+%92=ISw)#=w582aLrA z_&Mr=e_|xQMBTUqHJyye#*Z|dlVaNt^M%wamn1S>(FA;68k1-p5iV?UA zH3HXAi}Do~#%u$O6;KWBgesqnnu--z0(W95youUPnFgBcMxds$A!-V|1BetSvcVR7 zhYd+T!-`mIkh$;}R8K#`EaQB+DT+*)*NGyc zA*zU4JXO(y9Zdyi9O}fWm<4B}>McVJ^#RlfoJ7s-HPlo+LT$U}meTEz7+ zT>F0#kuWk=pnA9;HH61dH@c4+vdlxx6qUgOr0byS_rlCL0M&r8sD{o%O~ESE)O>5p zf5vdq|6myRcS47m#TSdZP#si-R;UXNM)h<&s%JB8ej@5Yvl_GEKGb<$^qt+C*6 z$7vbBf<~Qxnw6~w+d1^A=XZ#NVw#a=TjWPojI~z5jHGL0G&V;MPCyOuD%23~M_uQV zO+P>_+VrDL{b(#gx&>+kM~-6r)qurhl)+uL!ta=ybk@;k7nDFvK@-e{@1h51pmxjW zs2e5Q^i$Lg!p4|}RYOf>Ths`R#1Nc6hVfUy1~PQQXV&%SXv~BYP&b-`VYmvl8xEpI_70NobwVbXIgCavt~RJ4 zoq~Eq?nX7}IBHGYMU6=6iRQw2Q2FIii?2CqWcpxQd>_^Gsi-+$gqq6Dm|Oe*0+E7b zJitbneUjOZolrd)h+1@GQ4N}py1`0Jg-NJ-2TBo9$d3b-$)q zg8Mt~5>d;Sq6c@Np4k_ycTqza_<8!{8gbO5f#+3c0~=@`=}m&gn_u!rdQbVjaY#EgQyPNM2*ZdOof@Jn(Kt1Ue85P zQxc6DsY+8Bf1TKX3=MHt%#Wi`JzHemk80=-sD?g84~9%LmP3`lje24ZKrPO3s17Ve z-RCpZeGXf%Ok?~@lJS^~u9$DS!7BfKC0&( zQEQ?bs@`BskK=6qG@HM`OC&V~t5Gf6fEs~gHvJQ-XD?Ab3!Z5jR0z|OE{5qb#^zVG z`8847vJt8Qy-^Jsh8~=VYPfeb5nW&{X27keo*cmLcn+hm{45q4_QXg$h~@Auda&SZ z^9ffQ$B;gZ8i}eOng-NDb)*@Vz+PBV`+qKx%w!xu_52K~;$52#oMTQXgbCy~MXlc5 zs5w1@nyQ~si|-X`Btt$j*NH^`6VLh%s(xSeX#YnWpq#L28ZXA}z$(R*)pw2si2k<9Uy_NG!M?OO};5<&`{?0ujT4aM0&72O$2-5GP zhHy2e!Sy!16*G`dLal*gSRc<|VGQ}$40&Z#hw7uQ(+1VB4mN)jdb5!+m55w~+IF9# zdh`uyWM1K7EHdAG(;Y!IxXc1`g9@k~*2NHPjKwe>^+1||!MGMR)q7EE?$iRtzc`Wa z$f$;|P-~#7&%7);qFOv1GvYebNbIogM-An1TYdvWN#DVW7`V{+P5ukD#XF z8mh++Q6uRrHP_3BYOuE~5nV9O+7dNaJy0i(M9u9q%!6}Kt9%3M0{gHCeue7!ebmUj z!0ec6naR(ET3dxt=Ql8EuhWi*T09mtCks$hve9}1HK#XFBl8s1-~ykRA&x~gq&jLO z8=-F83iDzw>ts}iR-rn$4gEj=e@R3`ciH+2YAyVUYH8qdb7BaphY^?)V^Blfz~*fSQu2 z7>=t@^$wx(FJL4-M2%d&mF5GdA*w+iqgO+8gos-91L{H#P;;1Zl^Noks2&wSjZA6O z$W%x5q#0_Bv_{qIfVy4+YAQyd8axYi{k7I(tJwdV>zicc$LClObFVg5MJ=u_sD@5K z4}NMrf$H%us1bXKYC!O(W}6j2UAGRGxqW-a8#DAGkRAGX1=I1EeTdeq2VKuzs+)QCJnt)(FET63dp=piHAS`AgP zGpgdds2jg;{SbAdPf$~G9<};!VJf_1^BVn;{DE71YiCBR2YAk{$P$PF2!|-3!`MEzcLtPwGla52(us*5*U5s95fGrqoV zU2rKD#!XlZ&trLfiRxkOdh?R1gfXNOQ1zA|v*aANCT!q2PdfAGW(^!bHSh%H()<4c zkuqf5$Fx{rqZyGBs3|CKZHVegM@)m=Q9bHs)00q(YbJVd6-MAOTmBnnApHtfW1C85qgiP}|{QH%2t7DW%kkPaK5 z8qyNIigYHT3-?9!Y%=PCvryY-8LB}CQ1!k<_53EPfzMDke2uzZt}o0DBT$R9G3t5~ zQ1$0wCS3Fd5iyDc~QBTTK7=m|E zJ#%-O5y^_WPChJ+6;apggF0^%YP))u5~)aJH)?x5!Wb;J%lxLJJ!%_%h`R9(Y=`G; zeyJq$@!1kJLW@yrXg_Mr9LFqp7E9sxwmkiAe*?Wvb|UIQDb(VriRx(+)QwxBdNLBV z80VpGv<-{lcc>ozizP8~kC~cws2g_0Xq=6Dz#T+2=oIGB{=Y&b7a4z|wnwJDX3>SB z8c+svVq4S&2BC&>G^)WfF%*561HV8m$`h!Lok!LG4OQrZT7o zR6-41ZPZ9K#-`W;o8St}gZEK4NVngl^P%cjLN%;9mcT|>2#2FaY!Md0qv%z^??hrT z(*e_iny8_E2UY$aYSApgFg%Ewf~%-{FHvv5@PlTJR6*UK9hSlIm=Cw3rs$mY)j`HT z8yO`InI~0M)Liz%NL*s`Pg$SY{Gx|VkK155>J3Is;ab%BhfwD~K-Q^~_XrCdze6=( z_ED~ldyaZ}x)Et}%&ht+s6|uwxVb<}j3YfBYv2(qj_wJwC`+P7s4i-eC0G}uM(S%@ z{wr!%W%$xq4OM@TmxzB(Q5U+8;@C+{q(seN{eu!HAJ`BLksFrWV>v#)w z{-Lwx(ft>;Bi;KO{)!EcUEo#FbOE)7?qL+Z#z2fpHebtSP(xo2H4-CHBRn5#X#bxfqE(tP#k{p@U^UXct!uC_ z>7OtH)15OtiNb88%cHho15|@Lp&C9M)!@0988@Qp??Vrs#s1vixlcqb>u}x-)kxHd zlQAPMN8Ml}>IO$J7_Xq_@*ZZwjNh4&%!9gNNi2Ys(Ssea2#!Nt|5Nm;XNQQC!rQ15 zvR^O{q_X%6=_;rb3SKlfsD_%;rdR{pqef;idhifx4c$cDu=pkOS1!#li1aK>gL5x2 z{_5c(GE{LbszGN_H+X_M@HK{Fj>~2wB2l}g7HR}~VSfAoH4jcosDx zudRh{m=4rOO>Gw}inFjB?m%_G`v(#2(*i%3Pp|=4lJrJwiI-7NyplJ03St{9jTf;A zrvA~?Z;hJs@u;xE{5g&Z5eH z$I2M|vl*GDs5u>O)1RPjaKffvpn6{LHeWs12t9Zl%W41LCQ_D+uwTp^HAhWJ0_Ma~ zm=8a~8u$fjQ9Z!y_!2dgS$<_}VLcp!$5Hz|?l)sgRQ(>PHTE9*zyD_u(G6GF3R_So z9>c77!KQz~)TE!Gdh{BLVbR~swrY-QSQ|`_-B7z|0BZ4$!n8OIwM*urHx-fPMAXwY zm;?8tDxSmXEMf8H@u0uV8~N5cM%v(I@YFppudNBiTrt3AN&4o z(%VqwGoJCII%2q81nZUbuKzC{Vlo=%qqfy^tc34na{WWU6*VH~F&hSDcKz>woT$}a9esR@3W|5HRF$;g()^rQyTNv9jGAiq~uW14KPe_MTqBgx;6xn+rp_#OTK{^wsJdcuVUyZ*%#i&3N-qZY{+ER2V+JKn~+*f7NPKPl&6 zKGI=1%=wkE59wCe826((m@cR5w89G59A~0;Fp=v-+G3MX*BOXwtvPa;o=!&1@xPc6 zJ-N*dBe4MK#x^|=-y%I5_3w(V;J2h-=JC(9b0*9*uz0u`saoN#*Z(AXiwq4>JJdGo zYTb;w;Y-Yk>GHb%N3{nv5^ZdH57r@l-=<^pnfiUO0{LFlNG72k;Veqfu+1IV#_ay3tD1NNltDr%(@?J2ssw!i-R5>_+||d=Jmz zah~;!3Y*26rKIbB9(W59(T7A=>rB*8?n2%01!|RNEM*#!ADfe|iQ10yP(3+g%@}F6 zWn)zSIIM{Wtgmr0>6%fl{uz$f`I3l+G@!KW48<^?=LQ6sk+b-hQZ2bxpEjAS^*DQO*V zJyL`Hua`+coO!8qLe2GVYe-GgpuzYy`4dn>cNvRfo?8AzOnHS_FuZ}8>!zp^XIsx=Q_`6l znuc~ny&LAE&cBAbUcN@I|KEc3LoLF?SRK7--!hA-WOkE$0Bs~hXHrAom&Mqvh{eO&zPW&CU$|IV({-1E#SO;5Y zTGv{SSg%|EMl~#ZGqdeVV@c8tP#qbDvG_6SJ}0rPCi^*&{$xZocb&bs#QJs%^97Tw zrJ3WJ7)*J6)V}Y4p|~B@v#(K~-B(dPyp385k8L_@D>L_bt(7p8`#Wuj=!5~NxgKrZ zh}yR|P*YO6wOMqdQT3Nv*P|M?3-uN~jcQN|s>e5xp>{&rnCC%d)RQnCy#Yj$h-AXO zm;+DZAiRM|*z|3)cv8RPI{Qd>zyOyImbS(`?aaF%Z+kNN|97lyJD4@luA`aKzNn%9 z0JWWWb!7i*C^L03`?4p-kzQ!iS5S}AjGfIcsfkxfe~cR1L0wD_XQQ5&M=%bbp+>S& zSMzr4huW?St$R@ox!%=lwo|5fvrU?yKBX3;Zm4pp6fD5Z z^yF*n)xKtt{oc=YJd{5}T_<;cV+3lBOQRmSQ&890gSqfN@@V!tX$F`lQXZT|K{p(O z4{!+f8))YE25N+|4>Hg4;?}CDo;I`T5vaG^bR3S`ti=Yq{$EUff_cb)=9m2!{H|Fn zQK$z+SJZ=JJTh(0M$}wq9cp^k1@#E+i`xI&Q16b@s5O&kn3<}IsPabEZm4(3XzYO7 zmDc{xGTbbV1~`CpGn|hHa1yo}Vcu$&P($jzXBJ~y)S{Y(>2MBa!9})wJ!;=yK@It9 zRL63SG}b|{3I-F=5Kc!utGA$DuQyOVN4sPiXW0D1*oO3NWKNwbqfO77 zqNc2uO^-wEqWP$Xofysj*T?1^GSsr@G3Le{t&^=AQ4ReL$KgFJg#E^v?K;Q08Fj<6 z7==HhIubn2EWRqJT{9S!KWiNOUy&VTXzs70_Ww(p4tw8}S3#9`M~%oN)IMK{+J4t< z{%h3pA}`mKjZh={9`?aCsQQ`5n>7;SC88%)ZR>E<3G1*HUcf4tYl3-#wMI2$1ZrC? zKt1D6p+@LmYtD(L0j04q`5mzpu18(>U#mB6l37%fP(8njYThYKneb!HH`Bu~%e}kH;KdrewFzKqs#4cr1c{Np&Nz3ilTh?q-Onw~dI)ki< z)+AJWuc4kVuTb}moocp!JFHFmTU0xPr*7coGL<))_`Gjv##>wM%=>H1+#q0n$@YyY;h~tch$yc9Ws0JdG9c z6>70om}M%qLcMFcqi#GB-^O{U9{-M6G0SYzQx9sXM53NUO;EeDCu#;qqL$EnudQ&> zR=9}~6g)uM8?Ys`Vs9~r&% zh-epfMBQ*Qs^xRBJZ{Ct_?xxdTyw#R*n|9;)`!@XbennflqdJ6)}%y}KK-#7!SCmr zDR_)rpMQhCz--UAP%YhoS_21AYvUqn2m^iQr5A=8>Jq5Atb%$Vc0x^EqV){+Bb{oY zIqzN66pTlmmxzV*4Z722TtN-l3(SlK7MXWWG^!z0tbMHWtw&M2-~noAvoAJZ?Zr^< zrdHSvSEJt2|Dx)pT|&pWzmt!Mrl34(adbxgBsB)L$kt#^e2Lno!As36qZX=138=@# zSk$8Z2;ahusOQ%+)b=d9%uI0ts{RP{Dl&t}4EzLdWART+#VpIsz7My?S$m*f^V3ib z+ltz*Cs9-LC#nOfRv1g8I@ZpnN1(RliWTgCRa{4gwp9vhZtmb9%(T)B{WxqudIPG* zPf$addX*{9hI%(u#}~LCb=}>oUFRI$!cn;MQ&V1gjVUj=)@v@*X05R+mY`xk)Gk8fs3nt}`Ri7qxa0QB$x7wJk5;c+CEpxnUw|O&q{2n8~}|L=NHxG6roh z=K0+0^AlK&{M;K|XC=O4eU8dsvdQ%P3U*NWW;1o$Q6qI2^?7j~yW>Bok?Z`0X}C9m zh(5{Yp|;s3)RXQ6>KT0%_29^{#XN}Wp|;yxY>8iCTgP}_CPF7wVxkM_vEl)RsTW{y$5FpkwAI zsB_qdbj9PwmDcnpOnNA4QC&wZ%BU~RuX?&zH(@LCU!cmHePznWTfae_AAZvO8e!l` zulZ&4mt<(j`kgYry4`@fP^Qza^AzK8EVlicMe4GzF>?Tm^$Zsz{o)(*1Z|RRetfu$ z<*7d~#jK?@SeNuSs1Xb~XC81vyf$(RRiWj1^HcUh)FK-Cop~V5L_IQhVJ|#@M=|1p z>;KPuf3>!}==%Rn$^q->OZG$NvU#bs!n~Z<4fUY%jwhnG*HY9o`Vi__ejT;A(q1tY zt7A3N?XeIp#0t0{wSE6YJ%9>bG|h4M*BbPx_M9guqhP+ zzc-7qrFAdrQCskaaV)B#7g0m}1RG(AAB@AX66wRJMfeZ;->x^!_UnwwpNnU;|IZSM zC1c5t=7I7ps;56=RxEhStnOHhA>A08)OFeuVQ;BUI!!^Sv-0N07dR zdSEsE-TYL48TFuQ{fBV?diCg>LZk_9vA)8Lq#NHcL)i}1^F-7W?1asKhH<3J+%@%v zqKEV*)EfE*)uDe-?|_2$%NOtlm-%i;^Ox5QWmz(IQ&8XPJT>V( zSd;uAe;aq8-t$jUYb5-cS+wmjj`Vu#AE=jB$>-)B&_GWC)Zz+E72y9>(P->O z`l+>D>HudR>HVns&C&$;7w6~baNSgC1N<+q)am^BUZ;kMIEzsG_6bH{WcmRAXLn1C zB<;lkxCz5BEJJ|*!BYVTlJ12bZg9c+G$U#9LwQbX$||B3V`u9WEU7WyOhgZqt5^{K zw&uwa;Ge^4){dB&@-g@}&anQ7sYqAM8sLAlR!1$?j;L)q9CP3_%!Z$!9_?E&tLFS9 z5&eL11+~3WXAAIucvM0<@4^4 z7()6W<&B7^5Z94F+`Ea$cZ8>8rl;}*GIhL-FR>yaMHw8EslyA*X-8N_JdMeA{=z<_ zV+kMX;m@JfU)09whqI5M1vr+xy_`Rez&lI*=k;kTHlfl-iqjDNSMxEbqaNWpA&R`6 zoTy_y@i#{i;`2GLt}Sazx*LU`*)$JA|IdPZ$XiNiK;2se|Mwp|%75hJW<$w5Ou8Fk zG#9x-`2Qcd$zzi^x9oZAZJojR9_Q>nC+L=Y-UgGR}q2A?W>Cl*rA>I!4V*SYGHzs|Dv}-S= zx<7IY9ejT|SqPnNT6vd9r=e~y@>bewD8D(^$xD7P7QhaaeHOqJ)Fq<=iAlC{S3ImU z>=8%0oV__O@&6rLIFFw?{6{X^fQkPrWqc@)B;U1V8*#U-f0eQ;#Q*R=Z8_;TLVGgL z{O1BCIbkb#dYtGOO_~>mbCK{P=^>=`X%Rsk9YKlr>W6v1BGrMCH%DR8H3)jl>-dDA zm);-L`H(9mO3L+qm_s;B`~vFufb!miOXT&Yo*rleF_OFu_}^nAc^qbIA0#n^lV)Re zTk$Dow&SRph0O_yI)^E%PkkNviB}<>3D*zt#01Jdu1P9VOIcmUxUaUGS( z?@9a%Y>2D0`hOvOO~wIJ$0okUyse7O5H`oOJQ1qj!#LC zB7U6sWm9J?J+$S`NQY2LMMp{RDy^TgvFrUmHIC(AMA?dFOI&LE0gH8#;6yiBKv7sq)J}2+L z$0wAB6P6S7)zX_#i+B|0oF*Pa(Ese0j#$p^jJ5e1cG8llOhx^Wr-QE@=NRc|f{vAV z%tZZv>cf8xd6lSFnRE9O4?O~kybj^N$13XSt7b9f!CngWX``=@6BG<5 zQ{PNF@)GxvcZv8Qdy!G3Q<1+3b%c@6m#zPIaVF>g{&|slBAx~OI6U@s6_2IaL^0x>&e1xLp^K*c6T6xqPY1HlOOUyZuv1s$SWCru_J&PK zA0?hh-c#a#*!=pW^`SbPP=UNJ?S&_kf5XUe2AOw*lf+5W z$p|NuBi@$Ee-QtKcm{e<%U*N?Xa8ewc8k0oq-#)5M-Yx9F9z?}yj$e|OZ|DI|F+jC zsD=>VM&4j8^a5m*vct5E6Mmy`ATG5hd}%LMpS(~TuSeMe&TB(D2>+(+&9RTjWI{Uf zZ`jO{)Q_ibYx3S4`Z=&+b296YIf=x2TT-9&x8#o{ygBaL$aXH&obo(`WrR1!=EQW( z!@P4iV>Ma)fbTyNY;k_ldFWzK&VEjqO1^$D-$-0XX|9xCWyDMPbJ*MD9kb=9IR9@# zPFq%wvaW<~go4yLL4NKaR?{3Z^fQl+2!oT?USt{R1H{MJ^g8O=s56~-dcr8%aGhF+ z(3A?V2=|EBR3=9{IubxAO#QB;XHx#X|3aZ`bbo}$BL%+@uR*1E5-YXHUwoJ?p}@8dP{?ht0$yza#7P?i>#+PqNW zE65v!C&-&&^U3lbcgfdr7Wd)=LQU<gRQm+&(daUGu# zA_;$T-U~v0WpaE+`AX772{lN+Bwe2Pm&A{9y}GKz(SW>TlBN8XN~*u?=Ey_7j$duwG}2jZy@|x%qHG6c+Y~212l0&LRl&xj zj}R}9El8)f*CNY*Jmk+Igx>mQE=L6&X{fY^aGjHG5E_%$(Vp0fIvqTsW?`2>CeUHR)&g zj=zLg0`U!$9VK0aJ66E~xB!2qOvggf|2@`{zC^gjdHo3X@H**8d_$@~g=dK0B)$fJ zP-Vhnf{twDE$8B8XzZJ#3uO;Td`l=wzK8U4!ajS>2jq`=QyCLEznv|6LAsNkB0msm zMdl3K@>1OBPx4}H`hDV`+LLlpmW>;YBu~d^(rF0Y2|9KWt`Qd5^mkn2H6a^$UGRIZ zvsm?rr=m`us{GNH%)bbO3AqVxj!!7tZPSxD;gQn#9^N4AOkDO(sP{5CI`p0JHDX3!cZNHt!$Oxk&dXG*KmvGo0L#^7O<%^5?K@$s0x} zOpo6j7m4(wUK08JiLbzsq~9e}Azp&IpK930bMXo!J||O07~x&=Dw2MLSqVD`Z;roh zz2ls#<2YqM5l)(<6U?>VrB1v}iwX9e2+C3sbi5*u{+lC$i^babCJH7J_}XwH0@q;BNfJ%m8QODLWzXxY zRCYtRU%Rs*Rmk#`Ny%H2_a*O6nVNhcc}vP1Px6xOiypld==)=#n_>I&Khp#z-h6r~ zaoMxdiOJ8R5??Ls+QkqaVO<;%_g+}q+y7e4Vx_;~U{{1|W zzPK!IPG8YH?$Dy9m^&Wi!V~H9Uj8(uYbRSUW~e6{Pi!QuWZ(v1&1DU%puUGspNPuQC@wxF9KFvt@X73G^z z*sYo=iBdY}ueaNGrLbGa`+uA2QIj+vbc_aeDpr^yzWXqib5z0r7U8gjfxU++v$)5! z-;*+x$U%+JOwH_mZoEq?M8o927qh<8lQLVilDDhoL84kvTWF=PX{ejd*Sxix(f7j( zH$zd*->JpoUl}|6R~nx(Gb()vPlx1%X0B2urp)r4FXC3u$4$9rlD#M0_K;wL&Fy_< zin<+p`=?8jK25uWnM)Z@-;%gKv%1^lnUgdr`%`A7d{BdXEvJ3EY3@F)U53}+9Y*>8 zj>y0f3B!8&N5l7Rgd6IX@}0@z=8I-cGatI!R_?VUWtKU8o4;GzwYO-whq<3bW9X`H zdQsO?L_=~gWwIKTGRwax7(un1SyfT;9wuhD?^IEi`<xTQT7IT{hQl3=2xEq}+amnMHzCp2WSKpZOZdPCMvTpXI=TR\n" -"Language-Team: Russian \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:59:30+0000\n" +"Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" -"X-Poedit-Language: Russian\n" -"X-Poedit-SourceCharset: utf-8\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -123,7 +126,7 @@ msgstr "" #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" -msgstr "%s Публичная Лента" +msgstr "%s публичная лента" #: ../actions/all.php:47 ../actions/allrss.php:60 #: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 @@ -146,7 +149,7 @@ msgstr "%s и друзья" #: actions/publicrss.php:103 #, php-format msgid "%s public timeline" -msgstr "%s общая лента" +msgstr "%s общая хронология" #: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format @@ -176,8 +179,8 @@ msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" msgstr "" -"(Вам сразу же послано сообщение по электронной почте, с инструкциями по " -"тому, как подтвердить свой электронный адрес.)" +"(Вы должный получить письмо с описанием того, как подтвердить свой " +"электронный адрес.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 @@ -186,18 +189,18 @@ msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** это сервис микроблогинга созданный для Вас при помощи [%%" -"site.broughtby%%](%%site.broughtbyurl%%). " +"**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%" +"%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** - сервис микроблогинга. " +msgstr "**%%site.name%%** — сервис микроблогинга. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Создатель определяется по полному имени или нику." +msgstr ". Авторы должны определяться по полному имени или нику." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -205,7 +208,7 @@ msgstr ". Создатель определяется по полному име #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 латинских строчных букв или цифр, без пробелов" +msgstr "1-64 латинских строчных буквы или цифры, без пробелов" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 @@ -236,8 +239,8 @@ msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." msgstr "" -"Код подтверждения выслан на Ваш IM-адрес, который Вы добавили. Вы должны " -"подтвердить %s для рассылки сообщений Вам." +"Код подтверждения выслан на добавленный вами IM-адрес. Вы должны подтвердить " +"%s для отправки вам сообщений." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 @@ -245,18 +248,18 @@ msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" -"Код подтверждения выслан на электронный адрес, который Вы добавили. " -"Просмотрите Вашу электронный почтовый ящик (и папку для спама тоже!) для " -"нахождения этого кода и инструкций по его использованию." +"Код подтверждения выслан на добавленный вами электронный адрес. Просмотрите " +"папку входящей почты (а также папку спама!), чтобы найти этот кода и " +"инструкции по его использованию." #: ../actions/smssettings.php:216 actions/smssettings.php:224 msgid "" "A confirmation code was sent to the phone number you added. Check your inbox " "(and spam box!) for the code and instructions on how to use it." msgstr "" -"Код подтверждения выслан на мобильный номер, который вы добавили. " -"Посмотрите Ваши входящие сообщения (и папку для спама тоже!) для нахождения " -"этого кода и инструкций по его использованию." +"Код подтверждения выслан на добавленный вами номер телефона. Посмотрите ваши " +"входящие (а также папку спама!), чтобы найти этот код и инструкции по его " +"использованию." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -398,7 +401,7 @@ msgstr "Все обновления для %s" #: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" -msgstr "Все обновления соответствующие поисковому термину \"%s\"" +msgstr "Все обновления, соответствующие поисковому запросу «%s»" #: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 #: ../actions/openidlogin.php:29 ../actions/register.php:30 @@ -424,14 +427,14 @@ msgstr "Вы уверены, что хотите удалить эту запи #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 msgid "Authorize subscription" -msgstr "Авторизованная подписка" +msgstr "Авторизовать подписку" #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Автоматический повторный вход. Не для публичных компьютеров!" +msgstr "Автоматическии входить в дальнейшем. Не для общедоступных компьютеров!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 @@ -461,9 +464,9 @@ msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -"В ожидании подтверждения этого адреса. Проверьте Ваш Jabber/GTalk - аккаунт " -"на предмет сообщения с дальнейшими инструкциями. (Вы включили %s в Ваш " -"контактный список?)" +"В ожидании подтверждения этого адреса. Проверьте ваш Jabber/GTalk на предмет " +"сообщения с дальнейшими инструкциями. (Вы включили %s в ваш список " +"контактов?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 @@ -509,7 +512,7 @@ msgstr "Не удаётся удалить эту запись." #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" -msgstr "Не удается прочитать URL аватары из '%s'" +msgstr "Не удаётся прочитать URL аватары «%s»" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 @@ -562,12 +565,12 @@ msgstr "Изменить пароль" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 #: lib/accountsettingsaction.php:115 msgid "Change your password" -msgstr "Изменить Ваш пароль" +msgstr "Изменить ваш пароль" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 #: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" -msgstr "Настройки Ваших установок профиля" +msgstr "Изменить ваши настройки профиля" #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 @@ -626,21 +629,19 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" "Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. Здесь вы " -"можете ...\n" +"можете…\n" "\n" -"* Перейти на [ваш микроблог](%s) и запостить вашу первую запись.\n" -"* Добавить ваш [Jabber/GTalk - аккаунт](%%%%action.imsettings%%%%) так что " -"вы сможете после этого отправлять записи через мессенджеры.\n" -"* [Искать людей](%%%%action.peoplesearch%%%%), которых вы возможно знаете " +"* Перейти на [ваш микроблог](%s) и опубликовать вашу первую запись.\n" +"* Добавить ваш [адрес Jabber/GTalk](%%%%action.imsettings%%%%), для " +"возможности отправлять записи через мгновенные сообщения.\n" +"* [Найти людей](%%%%action.peoplesearch%%%%), которых вы, возможно, знаете, " "или с которыми разделяете одни и те же интересы.\n" -"* Не нашли друзей или знакомых? [Пригласите их](%%%%action.invite%%%%) на %%%" -"%site.name%%%%, подпишитесь на них и будьте всегда в курсе.\n" -"* Обновить ваши [профильные настройки](%%%%action.profilesettings%%%%) чтобы " +"* Обновить ваши [настройки профиля](%%%%action.profilesettings%%%%), чтобы " "больше рассказать другим о себе.\n" -"* Прочитать [документацию](%%%%doc.help%%%%) чтобы поподробнее узнать об " -"особенностях данного вэб сервиса и о том как его использовать.\n" +"* Прочитать [документацию](%%%%doc.help%%%%), чтобы узнать о возможностях, о " +"которые вы можете не знать.\n" "\n" -"Спасибо за то, что присоединились к нам и надеемся, что вы получите " +"Спасибо за то, что присоединились к нам, надеемся, что вы получите " "удовольствие от использования данного сервиса!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 @@ -680,7 +681,8 @@ msgstr "Не удается включить %s в список поддержк #: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "" -"Не удаётся следовать пользователю, т.к. такого пользователя не существует." +"Не удаётся следовать за пользователем, т. к. такого пользователя не " +"существует." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 @@ -700,7 +702,7 @@ msgstr "Не удаётся сохранить новую информацию #: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." -msgstr "Не удаётся подписать других на Вашу ленту." +msgstr "Не удаётся подписать других на вашу ленту." #: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." @@ -815,7 +817,7 @@ msgstr "Создать нового пользователя с таким им #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 #: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" -msgstr "Создать новую учетную запись" +msgstr "Создать новую учётную запись" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 @@ -5995,7 +5997,7 @@ msgstr "" #: lib/dberroraction.php:60 msgid "Database error" -msgstr "" +msgstr "Ошибка базы данных" #: lib/facebookaction.php:271 lib/facebookaction.php:273 #, fuzzy, php-format @@ -7678,123 +7680,3 @@ msgstr "Не удаётся вернуть публичный поток." #, fuzzy msgid "Duplicate notice" msgstr "Удалить запись" - -#, fuzzy -#~ msgid "OpenID is not available." -#~ msgstr "Страница недоступна для того типа, который Вы задействовали." - -#~ msgid "" -#~ "This is %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/" -#~ "wiki/Micro-blogging) service based on the Free Software [StatusNet]" -#~ "(http://status.net/) tool. [Join now](%%%%action.%s%%%%) to share notices " -#~ "about yourself with friends, family, and colleagues! ([Read more](%%%%doc." -#~ "help%%%%))" -#~ msgstr "" -#~ "Это %%%%site.name%%%% - сайт для [микроблогинга](http://ru.wikipedia.org/" -#~ "wiki/Микроблоггинг) созданный с использованием свободного программного " -#~ "обеспечения [StatusNet](http://status.net/). [Стань участником](%%%%" -#~ "action.%s%%%%), чтобы держать в курсе своих событий поклонников, " -#~ "друзей, родственников и коллег ! ([Читать далее](%%%%doc.help%%%%))" - -#, fuzzy -#~ msgid "" -#~ "To subscribe, you can [login](%%%%action.%s%%%%), or [register](%%%%" -#~ "action.%s%%%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "Чтобы подписаться, необходимо [авторизоваться](%%action.login%%) или " -#~ "[зарегистрировать](%%action.register%%) новый аккаунт." - -#~ msgid "" -#~ "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -#~ "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -#~ "[StatusNet](http://status.net/) tool. Its members share short messages " -#~ "about their life and interests. [Join now](%%%%action.%s%%%%) to become " -#~ "part of this group and many more! ([Read more](%%%%doc.help%%%%))" -#~ msgstr "" -#~ "**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " -#~ "[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с " -#~ "использованием свободного программного обеспечения [StatusNet](http://" -#~ "status.net/). Участники обмениваются короткими сообщениями о своих " -#~ "новостях. [Зарегистрируйся](%%%%action.%s%%%%), чтобы стать участником " -#~ "группы и получить множество других возможностей! ([Читать далее](%%%%doc." -#~ "help%%%%))" - -#~ msgid "" -#~ "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -#~ "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -#~ "[StatusNet](http://status.net/) tool. [Join now](%%%%action.%s%%%%) to " -#~ "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -#~ msgstr "" -#~ "**%s** является зарегистрированным участником %%%%site.name%%%% - сайта " -#~ "для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), " -#~ "созданного с использованием свободного программного обеспечения " -#~ "[StatusNet](http://status.net/). [Зарегистрируйся](%%%%action.%s%%%%), " -#~ "чтобы всегда получать сообщения участника **%s** и иметь доступ ко " -#~ "множеству других возможностей! ([Читать далее](%%%%doc.help%%%%))" - -#, fuzzy -#~ msgid "Members of %s group" -#~ msgstr "Лента записей от группы %s" - -#, fuzzy -#~ msgid "Members of %1$s on %2$s" -#~ msgstr "Сообщение для %1$s на %2$s" - -#, fuzzy -#~ msgid "Group not found" -#~ msgstr "Пользователь не найден." - -#, fuzzy -#~ msgid "User not found" -#~ msgstr "Пользователь не найден." - -#, fuzzy -#~ msgid "Couldn't link your Twitter account." -#~ msgstr "Это не ваш аккаунт на Твиттере." - -#, fuzzy -#~ msgid "Twitter is not available." -#~ msgstr "Страница недоступна для того типа, который Вы задействовали." - -#, fuzzy -#~ msgid "Twitter account" -#~ msgstr "Твиттер аккаунт" - -#, fuzzy -#~ msgid "Connected Twitter account" -#~ msgstr "Соединить с существующей записью" - -#~ msgid "Code not yet ready." -#~ msgstr "Код ещё не готов." - -#~ msgid "Export and delete your user information." -#~ msgstr "Экспорт и удаление Вашей пользовательской информации." - -#~ msgid "Delete my account" -#~ msgstr "Удалить мой счёт" - -#~ msgid "Delete my account confirmation" -#~ msgstr "Подтверждение удаления моего счёта" - -#~ msgid "Check if you are sure you want to delete your account." -#~ msgstr "Пометьте, если уверены, что хотите удалить ваш счёт." - -#~ msgid "Showing recently popular notices" -#~ msgstr "Показ последних популярных заметок" - -#~ msgid "Tag a person" -#~ msgstr "Тег пользователя" - -#~ msgid "Icons" -#~ msgstr "Иконки" - -#~ msgid "" -#~ "Hey, %s.\n" -#~ "\n" -#~ "Someone just entered this email address on %s.\n" -#~ "\n" -#~ msgstr "" -#~ "Привет, %s.\n" -#~ "Кто-то добавил этот электронный адрес для %s." diff --git a/locale/sv/LC_MESSAGES/statusnet.mo b/locale/sv/LC_MESSAGES/statusnet.mo index 544bd1e8e6b2c61fe4202fdcab90e2588210ac0a..91697c3d93eee519ae70df3d9b0377baa86e0349 100644 GIT binary patch delta 7523 zcmY+|d7RJH9>?+TZ!irrChHhuncpxN!)%x}`?!sSD@%>iGBIUqMl*xr>Wf>lB~j9% zQawmorYl<;-O#N>k+fK9BwNZ%MHJoF`*%Lw$K(3vc|Pa+{hseRpR;^_FTpz0AHx_tjgeUUeb4KF4a^)265oOy zaTZ=1=6P$eGjZ65&a@9b-|I`oC@SRB*axdH9}_?Fyk0mK^}-i09JgRw++p!aY(`v- z4Y2M`cRdcHiF=xZuodwri>K}M-GlR}h~mOZ^A$`WeiQY;LF|mbqh6HsvCC9%tV=us zBk^XdpJ2|!DC!@cS(uEBQbe@a2AJ%=+e`cvmZTtQrKkLRW03-~1NH!Jpf zUL0}5&s?TDBU9`RMs@reRAvgT{#L9Z#D&W;8`4wo6YEbE*_0)a1&$9~B)Vh7Z&%0#tyjm2Y88NCSba5Eo+`d=1;< zXQ&bUj%uLML3e)+Dnq?c*GHg6KGEu@nTyR;807j}sI_tMAo*`V;h5d<8)|N%54r8q z8vjn5Z!X38tg<7h4wroEw&!G2W|pEd^)~AI4pe&|V|P4=8hKom=QYQkRpeiVLaQjl zmc$FqHK={N1J%GO)FMhc;^y{x%p;zHJ@7U2Co|yMawF_E~Tf7BJSFpY{E zunR6g&DlFvf5_tK?_GnbsJSmhH9QG}_zJ3{yDw}SNZ#)Sesm*@ zM$P#^)PXb+`{FYgjYqIP)}XeX_mj&|3`P>RL{jP{VI1~A-B*aoSb}=~G3 zQfQ6mF%@IaxYQP)7UOu-s$YTX*ltt>6le4#0ZUm!VQS19jhgbEUb-+>M&5@6Ag;lYdpj z{NhYS&DoXM7;m=va*G$(^`}vDyvf{$THQ5Rip_p?-j7;G;-B^owCTexxi&|t0F%n-yjeG-YD&NB}Jb`ub2UNRfQM)MOoafzvSE4fS zzfR#g3g4p+h@QW>?|-p*1hr_2&bthiqDFE*YMU)bW#SFgobN}iA@2ge`5+Co80VnY z*h*}MTV1{HePIMs;W_YK~9X^`9*M4V8&Y zsDmrzPy4NiTC_J~gim2S1+D&a)C0>f9k*M27AuL{d4Z6hV+8U2fk5aCUyO=h!W3MO zF?hthfSTHdVS&(jl7sz;r=#DE!Zr$8MCZ-$T7l3B*BDz<-`3*3*ot^4DnpaZS*RB- z!A7_SHK4cf89a=gac1p6XmP%b>QH6vfbVG$?Wf{$JdbLiZXMU5mZ)=}BeuXC?2f}x zBYp_8@o~Hc_n3*{fzXsr!H(1~Lam8SsNM82Y5<>x`))*4R5Yc+yUg7fgBnpMvoGp_ zk*E%iM=i=3sI{{UwcTDpWoQ%X`Oi`3$Z6En1R`9VhRS%pPeBb2v5F#8k4sQJUT*Qr z=6=+R19jch#F@FM`a;x{-ihkKDpUsFHg}@7^Vg^W`zI)9j{ihWMeBNQ?s}s}Hrkwy zYH+E=FJg1zf13yF`dN$XN4j=8ptk1#)cwV%c73PsJ!%!N;uTzYAJwy3QEsl9qaJ8w zW}>#!AZ&?~F^Eer9@n9!U@s~o)u_c-uYMqOM5mZTF;@G3Duu4xuoyFO8)o4JGb1_> z+KyvU8F&o!f=W~>cbNxJsXl3*N3E5J%LAc81vT8yyumCp=b6u# z8_iwjQS%S8aRb+0ve^eU1%;>+upBjj>FBHCF$(IyN^=wHqp=(N;J0SmhJnz@SBx6j zMAV%6sQVv7oos7S+jRpf^?OiL_$%tZ`i-3NjoAO1>kKM#u>f`BEDWU@mC{PoTy8;a zn=eoe9Yt-sbC`sI#%}E-qYj+jsI_tj>a+WZ`7Y|cryH~XHG*1A+=0>x)o^<=#~fge zLcOpA)xcethl|V)@Ll5CO`SW;xiPN&0nOaNhMD7i3fVj`3pLWss0{oE^`dW3ADfe? z6S5jLvOuge)w}_9-(1ubJc#Pxud>1kyKu(5WJWc24aAvAsMVWg z7NB-dAu7cSQ4McGb$E-p8@1>TqkgztL^|kub>jk|uU)b(MgwNQvU7w$lv3v)0Tmtqj#L9LC$n2urX+}E)yDg$HNvH!Kr zN~uV|yHRuc1gfFc<{tB+T~BK7?(2r?KyOsWMxs`IDQW;dY5dCHOnlh<5S1A($$cH0qIOdk)Bvxs`f>~s`->@P z)xTyHyHQ8)8B~ui>*!vTj6vdIs25bArf#0O&aNLcFJUUz_vr=7V%FR{gm#7yEtRZ}=T{?G_0AtrnZ<*1#Op)I5wjAJ(E4-P@?=_geiAsQWHqJT}d8 z_hq7X!PThu`~!UzHd;juW)Y`kyEz|&*~AZ++s%uZLVaeAb2Ms|KV+`KAo07X4pgCb zMOd!e6^&49Dn9zlJctL=JZp1ZFTYUEd=c0m!U!TG2~_p-$Y z%s)|6)aD9z-*D8npLzxRKRm$amx?$l=5}{K7@kAj@DUEjeK-V@dpM_~Mzj;P3l5m! zJ>70fHwT*&F@gK$Tl^Ag03Z4kG{SG}!UYTx$My<@{(nCgb>m9ZHrXTxhPsFzUCW&V%vNB4E+p z*H5GVBcgV`yPk|n{Xo>(x(BtL*CQva@6}LHYFqVlAE6S|c6%1pfsTK3U%L^g_<8da zR3`qwUYK~La}4TZ_B^VCU*Jrvcwa_2!Jsy+*K-$2xNzXQO^x^867js)*nQ%=(=$e#sxD{ zGqQ>%P8wU3RF;|3EjP2{6~W$#~koLW*`5iF_*j;*Mel$VzF|JSm)NGt#AV1DVC;=Ew_ o6zT>QmzS&01!bj^C*=i8Cs(ADheoPL9(^i4(0biJx4$&^zxC-?YybcN delta 7444 zcmXZgdwkDjAII_UPh+z=3}YFy-^Q@nW^)?bn3*+dF=5e3WJa;MH@Z9VMbg2cn^cr) zI!HxM54Q@BD2J5fR7;@~sXG$xlyG;y-n%~jd0wCE`~6;r&vjkj?{8+jPtx5s&WkLP>+sEGL3t920O5ii7iJcPLz{fX=FW~@hCj%{(O#Y-`oxEdqz z9lO2<8xfx|uV5^3#9mjQwAXhJ_N1Z#7mCf>F`oEt)C2P{1>Zzp@whFi_-1D^K+@w=FYHy>oZagN#c5VIuS zhRW2}$P#;3Q4{eFyUc{5>YHFVMqv|-!#Mi)GAL*OLvR?5H@BKiKX(n5VGpjCV;H`M znfNwF;Ex!E=TVz3^b0rB3~Ww35;L#@8{=|}r+;r9g|1W_GDBY?~S2wAD*@grC+%jEjFuBGhT(7 z*+%mlj3%!CwKLxAWezbXAgT6dqSkyl>h$bJzlg#w6treNkGkENiwVScqBh^ds2RM8 zYG6C+{!^$7{c6`kj=7n)Le(dkx#n;TQhyKX)XY0Z{v#i5xTAQt?0I}b>>PyZrvmHZV&u5`-g6Xm9M-rB@3?sZ zbz|6n+zcCG2jU`3#3`77&!LuZD~4hXYUbad1{(Oq)yJTYX98+ZWMD6y|Ge6Q=RIg{ zG|!qzr*$J|-h2VoKn*70Db!LlIpa2C5^4_>q6RS5oQ4gEpD|yN^zW^upv|)twdR*m zFQit#y07A3)W{cMLtKtJUTaVp+KCbP3F-}4gE4p-bzkUN&r8Nw)bj(d6PBQ_RL-K% z23KMl?nb5dB5E_X{LQUt5o%!5Q4Ore6g+N5oOAU(u_N_kEuN1Wz`Lj=JYhCCPyREg z=yu+9I1ZZ0wbwkh05Gk)C7O_DQLuh zViRn9(Y?9i&5n2t^_@|>yDP?GHfqgBqBd12YAGwR4lcp^_&loJ*HC+G6Hdb4QJMGe z`h#yfg{M*H{R~dSs6U;HP@5+5lFLLJ)J%Gyj#(ip6BAHtJ_ogj)?f)9M{UOLf4MzY zjM2muNWJepY85Y|HsO1yR39^g|S&cyksfmC4(&bI3>VHEL4*aeT7kyl&> z^KlsUH((2$|7r>v(I$K!KSMSAeLqz&3c$;&T{F9JnS>o1r)}9o1nT zHpLOB3EhL$xB&H@=o}KL-JG|f1~e)p;CtFcbEr^UsNuh@A~MX4I2JYHLW^%R z=b$=Xi&~mJ=1*21T0h`vNrR{X3`b>fqWK`|I6r}!u)l@-FHXebfvz)ODY?9)+%4$i?nhg+1^M^IJ?O zj&9^KFaXuTC{!w^nR8L8UTUsHZRSm=SNF%}LDZ6erI`M`UnnTG7tHX+E{->QnuE=8 z<}`D$`Ih;CdBpq;wFIG&ZXgM$2_&Phkqw}r0Ti2MsE@{U%)@_~2eBS;R1-I|R;WFY zhPrT`Sx>bRDoQa=;5mtIBPx5eDog!8Yp{+5bfc+qZ5Z)&MVrF0Z(Ez42I=228b zi&4jJ1?pA27S-Mn)C=b znucZ~Y9_t0Hr1#X)+p3K?n0gasi=%ShP`nq>NwV5iq8Le3i<&N7wbAoL^Y6%gD?kQ z#JMC=U%IHP(+flemL2H;0bSW!A&8XCT z5OsYa_Q9Q~=R)EGwSV&^VIlDZi`SXwP&3X*a38e_b19Cb{=)>$e-ee*wgGP_7NSP} zJZkN#QKw-I>X_}e>vh_>y%36eFSJIz7rJ9I_QN1fLhX$Os8{$p)YtKQR0g6GeRs^- zB)YF(N7R~Lk7}sIoN2DI>ow*Nr~#ZsWh|_{OL-gA1kz9w=#3i4a8$?lnZ9p@Ip%y+ zgNsp_SdH3@>#;p26mS;2h%l_&!EuxLti1`w}y&cH`JyZl<%%MX1knHL9Wa%&$;0`U^GC$Sl`jFVv>H&EmP{ z+n7Q90gJE6cE`SbHs`-yfX^=#G2D=u<9;yQg!=qGfWvS$7UK~!xwo6qgQ!z5*W8FY zP2ZST%~pNf@#}@Uek*DM_xlty!zb;+8yFc-++_ux3xFPhn?HC~09@rUMl zRD1D#o!RDatV4YT>U~g&S_*$5g*zxzn}3^kO9$`L!y1oqc z9}yd@{s=1dmr;8wHQycIvB(?N_m)#oYWJc(GO_*LaT|i2h`+=^7*gQkp{9?@#9Nq) zhsz&B9sB^SC(mSBd?|CHJSKO%7eH+*Tv4{-6_<_7bMSuoK3kXV3P z(+1bO7frG`3RS-tmFo4VO}riR@jGlm|6bw^?gf#9Q;8oie?z5oT#@@DavJL0z7Vx1 zR-mqLLA?(SS^Y`WeV0++{m2{L^KG#naVBch_QByQjHjR\n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:59:37+0000\n" +"Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: sv\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -7749,39 +7753,3 @@ msgstr "Kunde inte tabort favoriten." #, fuzzy msgid "Duplicate notice" msgstr "Tabort inlägg" - -#, fuzzy -#~ msgid "Code not yet ready." -#~ msgstr "Kunde inte tabort favoriten." - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Skapa ett nytt konto" - -#, fuzzy -#~ msgid "Delete my account confirmation" -#~ msgstr "Kunde inte radera epost bekräftelsen." - -#, fuzzy -#~ msgid "Check if you are sure you want to delete your account." -#~ msgstr "Är du säker på att du vill tabort detta inlägg?" - -#, fuzzy -#~ msgid "Showing recently popular notices" -#~ msgstr "Sök innehåll i inlägg" - -#~ msgid "Couldn't confirm email." -#~ msgstr "Kunde inte bekräfta epost" - -#~ msgid "Email address" -#~ msgstr "Epostadress" - -#~ msgid "Error inserting notice" -#~ msgstr "Fel uppstog när inlägget skulle läggas till" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Om du har förlorat eller glömt bort ditt lösenord så kan du få ett nytt " -#~ "skickat till din epost, kopplat till ditt konto." diff --git a/locale/te/LC_MESSAGES/statusnet.mo b/locale/te/LC_MESSAGES/statusnet.mo index 69f2d9a4ac13cb7227f757cab22b5f3c640d546e..0a28a195231ae5c33af16421ad5fa217dd8ebae4 100644 GIT binary patch delta 11745 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 delta 11168 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 diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index ccd39f7942..66560c6111 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -1,3 +1,7 @@ +# Translation of StatusNet to Telugu +# +# Author@translatewiki.net: Veeven +# -- # #-#-#-#-# statusnet.pot (PACKAGE VERSION) #-#-#-#-# # StatusNet Telugu Translation # Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER @@ -12,16 +16,17 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-04-18 06:18+0000\n" -"Last-Translator: Veeven \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:59:43+0000\n" +"Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: te\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -1802,7 +1807,7 @@ msgstr "" #: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 #: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" -msgstr "" +msgstr "దొరకలేదు" #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 @@ -2011,7 +2016,7 @@ msgstr "వ్యక్తిగత" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 #: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" -msgstr "" +msgstr "వ్యక్తిగత సందేశం" #: ../actions/smssettings.php:69 actions/smssettings.php:69 #: actions/smssettings.php:128 actions/smssettings.php:140 @@ -2255,7 +2260,7 @@ msgstr "" #: ../actions/smssettings.php:33 actions/smssettings.php:33 #: actions/smssettings.php:58 msgid "SMS Settings" -msgstr "" +msgstr "SMS అమరికలు" #: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" @@ -3120,7 +3125,7 @@ msgstr "ఒక గంట క్రితం" #: ../actions/showstream.php:423 ../lib/stream.php:132 #: actions/showstream.php:441 lib/stream.php:99 msgid "delete" -msgstr "" +msgstr "తొలగించు" #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 @@ -3316,7 +3321,7 @@ msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" -msgstr "" +msgstr "కొత్త సందేశం" #: actions/noticesearch.php:95 actions/noticesearch.php:146 msgid "Notice without matching profile" @@ -3903,9 +3908,8 @@ msgstr "" #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 #: actions/grouplogo.php:251 -#, fuzzy msgid "Avatar settings" -msgstr "ట్విట్టర్ అమరికలు" +msgstr "అవతారపు అమరికలు" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 @@ -3913,7 +3917,7 @@ msgstr "ట్విట్టర్ అమరికలు" #: actions/grouplogo.php:204 actions/grouplogo.php:264 #: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" -msgstr "" +msgstr "అసలు" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 @@ -3921,7 +3925,7 @@ msgstr "" #: actions/grouplogo.php:215 actions/grouplogo.php:276 #: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" -msgstr "" +msgstr "మునుజూపు" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 #: actions/avatarsettings.php:228 actions/grouplogo.php:291 @@ -4149,17 +4153,15 @@ msgstr "" #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 #: lib/action.php:1062 -#, fuzzy msgid "After" -msgstr "« తర్వాత" +msgstr "తర్వాత" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 #: lib/action.php:1070 -#, fuzzy msgid "Before" -msgstr "ఇంతక్రితం »" +msgstr "ఇంతక్రితం" #: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format @@ -4770,7 +4772,7 @@ msgstr "" #: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" -msgstr "" +msgstr "%s, పేజీ %d" #: actions/showstream.php:143 #, fuzzy @@ -4793,7 +4795,7 @@ msgstr "" #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" -msgstr "" +msgstr "వాడుకరి చర్యలు" #: actions/showstream.php:342 actions/showstream.php:307 #: actions/showstream.php:390 @@ -5208,7 +5210,7 @@ msgstr "" #: lib/galleryaction.php:131 msgid "All" -msgstr "" +msgstr "అన్నీ" #: lib/galleryaction.php:137 lib/galleryaction.php:138 #: lib/galleryaction.php:140 @@ -5223,7 +5225,7 @@ msgstr "" #: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" -msgstr "" +msgstr "వెళ్ళు" #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy @@ -5403,7 +5405,7 @@ msgstr "" #: lib/noticelist.php:474 actions/avatarsettings.php:148 #: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" -msgstr "" +msgstr "తొలగించు" #: lib/nudgeform.php:116 msgid "Nudge this user" @@ -6758,7 +6760,7 @@ msgstr "" #: lib/attachmentlist.php:87 msgid "Attachments" -msgstr "" +msgstr "జోడింపులు" #: lib/attachmentlist.php:265 msgid "Author" @@ -7494,16 +7496,3 @@ msgstr "" #, fuzzy msgid "Duplicate notice" msgstr "కొత్త సందేశం" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "కొత్త ఖాతా సృష్టించుకోండి" - -#~ msgid "Couldn't confirm email." -#~ msgstr "ఈమెయిలుని నిర్ధారించలేకున్నాం." - -#~ msgid "Email address" -#~ msgstr "ఈమెయిల్ చిరునామా" - -#~ msgid "Error inserting notice" -#~ msgstr "సందేశాన్ని చేర్చటంలో పొరపాటు" diff --git a/locale/tr/LC_MESSAGES/statusnet.mo b/locale/tr/LC_MESSAGES/statusnet.mo index 46795b44017c4a2b721d4d36645da399e4733df7..24fda5904ae269672d76cb00b014aea5b75c3e0f 100644 GIT binary patch delta 4792 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 diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 6c65626055..52f7c6b8dc 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -1,3 +1,6 @@ +# Translation of StatusNet to Turkish +# +# -- # #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER @@ -6,18 +9,17 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-01-26 00:13+0000\n" -"Last-Translator: Egemen Metin Turan \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:59:51+0000\n" +"Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" -"X-Poedit-Language: Turkish\n" -"X-Poedit-Country: TURKEY\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tr\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -723,7 +725,6 @@ msgstr "" msgid "Couldn't get a request token." msgstr "" -# Note: Bu federation ozelligi nasilsa simdi kullanilmayacak #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 @@ -1078,7 +1079,6 @@ msgstr "Yardım" msgid "Home" msgstr "Başlangıç" -# Belki Durum Merkezi falan denebilir mi ki? #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 @@ -4507,7 +4507,6 @@ msgstr "" msgid "Could not create group." msgstr "Avatar bilgisi kaydedilemedi" -# Note: Bu federation ozelligi nasilsa simdi kullanilmayacak #: actions/newgroup.php:191 actions/newgroup.php:229 #: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy @@ -4910,7 +4909,6 @@ msgstr "" msgid "You are not subscribed to that profile." msgstr "Bize o profili yollamadınız" -# Note: Bu federation ozelligi nasilsa simdi kullanilmayacak #: actions/subedit.php:83 #, fuzzy msgid "Could not save subscription." @@ -5400,7 +5398,6 @@ msgstr "%1$s %2$s'da durumunuzu takip ediyor" msgid "Location: %s\n" msgstr "" -# Belki Durum Merkezi falan denebilir mi ki? #: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" @@ -7594,16 +7591,3 @@ msgstr "" #, fuzzy msgid "Duplicate notice" msgstr "Yeni durum mesajı" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Yeni hesap oluştur" - -#~ msgid "Couldn't confirm email." -#~ msgstr "Eposta onaylanamadı." - -#~ msgid "Email address" -#~ msgstr "Eposta adresi" - -#~ msgid "Error inserting notice" -#~ msgstr "Durum gönderilirken hata oluştu" diff --git a/locale/uk/LC_MESSAGES/statusnet.mo b/locale/uk/LC_MESSAGES/statusnet.mo index f14bcc7763fa5cbe952ca05e13a7e31328ea8398..c7faa477cb7899ef4e9f382f072d4500f6518ad7 100644 GIT binary patch delta 9029 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\n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 19:59:57+0000\n" +"Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" -"X-Poedit-Language: Ukrainian\n" -"X-Poedit-Country: UKRAINE\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -1368,7 +1370,6 @@ msgstr "Мова" msgid "Language is too long (max 50 chars)." msgstr "Мова задовга (50 знаків максимум)" -# "Місцезнаходження", як на мене забагато літер. "Локація" - не менш вживане в українській мові слово. #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 #: actions/profilesettings.php:117 actions/register.php:408 @@ -1819,7 +1820,6 @@ msgstr "Це не зареєстрований користувач." msgid "Not a supported data format." msgstr "Такий формат даних не підтримується." -# "Invalid" та "Not a valid" я умовно поставив знак рівняння між ними, тому перекладаю як "недійсний", замість "не дійсний". Це не помилка. #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -2419,7 +2419,6 @@ msgstr "" msgid "Select a carrier" msgstr "Оберіть оператора" -# Слово "Надіслати" у вузьку рамку веб-форми відправлення повідомлень на сайті не втискається. Гадаю "Так!" цілком прийнятний замінник. #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 #: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 @@ -5534,8 +5533,6 @@ msgstr "Групи користувачів" msgid "Recent tags" msgstr "Нові теги" -# ПОСТАТЬ - Видатна особа, визначний представник кого-, чого-небудь. -# "Featured" перекласти одним словом, так щоб втислося в таб на головній сторінці, важко. На мою думку "Постаті", тобто користувачі, які варті уваги - цілком прийнятний замінник. #: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Постаті" @@ -7667,40 +7664,3 @@ msgstr "Не можна видалити зі списку обраних." #, fuzzy msgid "Duplicate notice" msgstr "Видалити повідомлення" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Створити новий рахунок" - -#, fuzzy -#~ msgid "Check if you are sure you want to delete your account." -#~ msgstr "Ви впевненні, що бажаєте видалити це повідомлення?" - -#, fuzzy -#~ msgid "Showing recently popular notices" -#~ msgstr "Знайти зміст повідомлення" - -#~ msgid " by " -#~ msgstr "від" - -#~ msgid "%1$s Notices recently tagged with %2$s" -#~ msgstr "%1$s Повідомлення щойно позначені з %2$s" - -#~ msgid "Error inserting notice" -#~ msgstr "Помилка при додаванні повідомлення" - -#~ msgid "" -#~ "If you've forgotten or lost your password, you can get a new one sent " -#~ "the email address you have stored in your account." -#~ msgstr "" -#~ "Якщо ви забули, або загубили свій пароль, ви можете отримати новий на " -#~ "електронну адресу, яку ви закріпили за своїм рахунком." - -#~ msgid "Last message posted: " -#~ msgstr "Останнє повідомлення:" - -#~ msgid "Unsupported type" -#~ msgstr "Тип не підтримується" - -#~ msgid "not a supported data format" -#~ msgstr "формат даних не підтримується" diff --git a/locale/vi/LC_MESSAGES/statusnet.mo b/locale/vi/LC_MESSAGES/statusnet.mo index 853a4887aea5a1ee3605146908e46d68f5645956..e560b197b4e17d455c3bc4129ebc5758078cbd9d 100644 GIT binary patch delta 7889 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

v|Bkv} z?&1_|Sch%I=n9`# zfK$vjF{B2Q9`<>Aa6B%+ut%Jg<}GvH0{79lgd=&b`9fzds-8Wl4xGZb(6`9tA4UDy z{uK_wj7sOyO3uHI%V9EP!$+Ny&F9T8%(S2Tyx;NM5>$mP7CZCJKcl_@wK&$=j4g2% zrkHC{OK=M{bKy%!EFsZqiF2bFx77W;{v7IJ`IC9rJcatmTtQX%gBi8VJs*eqA=3p_ z-XFC`#+pm84)NY$BqB+?g6jDj*Z|L%mrx_Qh4nFNxx4dYP@A*|YLm^}*SpWA-$s;` z=ag5J6|epH_|#C>9)WIM{at&cr}Rwf%D;M}a>~jB6H9Z7%ZhT!gQe;IFdnOk{$YQ6wK(73w_bsa^DG8RA4=Bqi%nue9=H|G^Mh_o7BoH+zue7W%Se)+fmfUsioOdSWjtvIO zi}DD`s5dzLeu%a|KFS8)0v@EYY-Ct2YC(!HvrT=R&-9Mx_zo@XR;QvLL c^sl^hA;TDQzklkGfujbF8N6@)iA($b3&EmkGXMYp diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index b9efcec147..7f07471fae 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -1,18 +1,19 @@ +# Translation of StatusNet to Vietnamese +# +# -- msgid "" msgstr "" -"Project-Id-Version: statusnet\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-05-10 05:27+0000\n" -"Last-Translator: NGUYỄN Mạnh Hùng \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 20:00:03+0000\n" +"Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-Language: English\n" -"X-Poedit-Country: NEW ZEALAND\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: vi\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -7906,613 +7907,3 @@ msgstr "Không thể tạo favorite." #, fuzzy msgid "Duplicate notice" msgstr "Xóa tin nhắn" - -#, fuzzy -#~ msgid "Code not yet ready." -#~ msgstr "Không thể tạo favorite." - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "Tạo tài khoản mới" - -#, fuzzy -#~ msgid "Delete my account confirmation" -#~ msgstr "Không thể xóa email xác nhận." - -#, fuzzy -#~ msgid "Check if you are sure you want to delete your account." -#~ msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" - -#, fuzzy -#~ msgid "Showing recently popular notices" -#~ msgstr "Tìm theo nội dung của tin nhắn" - -#~ msgid " Required." -#~ msgstr " Bắt buộc." - -#~ msgid "Couldn't confirm email." -#~ msgstr "Không thể xác nhận địa chỉ email." - -#~ msgid "Error inserting notice" -#~ msgstr "Lỗi xảy ra khi thêm mới tin nhắn" - -#~ msgid "FAQ " -#~ msgstr "FAQ - Hỏi đáp" - -#~ msgid "" -#~ "It runs the [StatusNet](http://status.net/) microblogging software, " -#~ "version %s, available under the [GNU Affero General Public License] " -#~ "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#~ msgstr "" -#~ "Microblogging [StatusNet](http://status.net/), version %s đã có ở [GNU " -#~ "Affero General Public License] (http://www.fsf.org/licensing/licenses/" -#~ "agpl-3.0.html)." - -#~ msgid "Password recovery requested " -#~ msgstr "Yeu cau khoi phuc lai mat khau da duoc gui" - -#~ msgid "%s, Tell the world what's on your mind?" -#~ msgstr "%s, bạn đang làm gì?" - -#~ msgid "City, State/Region, Country" -#~ msgstr "Thành phố, Tỉnh thành, Quốc gia" - -#~ msgid "Register for a free account!" -#~ msgstr "Đăng ký tài khoản miễn phí!" - -#~ msgid "Everyone" -#~ msgstr "Tất cả mọi người" - -#~ msgid "Blog + Chat = Fun" -#~ msgstr "Vừa Blog vừa Chat = Vui Lắm" - -#~ msgid "" -#~ "%s is a new way to send short messages to your friends, family, and co-" -#~ "workers." -#~ msgstr "" -#~ "%s là dịch vụ cho bạn bè, gia đình và đồng nghiệp liên lạc và kết nối qua " -#~ "những trao đổi ngắn." - -#~ msgid "" -#~ "Starting a conversation is fast and easy: You can shout messages to your " -#~ "followers, or whisper to your friends. Just think of something to say, " -#~ "and get started!" -#~ msgstr "" -#~ "Để bắt đầu cuộc đàm luận: Bạn có thể gửi tin nhắn đến những người mà bạn " -#~ "theo, hoặc gửi những mong ước của bạn đến bạn bè, những câu trả lời thông " -#~ "thường cho một câu hỏi đơn giản: Bạn đang làm gì vậy? " - -#~ msgid "Register now!" -#~ msgstr "Hãy đăng ký ngay!" - -#~ msgid "What's the latest?" -#~ msgstr "Mọi người đang nói gì?" - -#~ msgid "What Everyone Is Talking About" -#~ msgstr "Mọi người đang nói gì?" - -#~ msgid "" -#~ "Send me replies through Jabber/GTalk from people I’m not subscribed to." -#~ msgstr "Gửi tin nhắn trả lời những người mà tôi không đăng ký qua " - -#~ msgid "" -#~ "You can change the theme as you want by clicking a thumbnail image and " -#~ "then click Save button to active new theme." -#~ msgstr "" -#~ "Bạn có thể thay đổi theme bằng cách chọn vào một hình ảnh theme bạn " -#~ "thích. Sau đó nhấn nút Lưu để thay đổi theme mới." - -#~ msgid "Choose a theme" -#~ msgstr "Chọn theme" - -#~ msgid "Theme Error" -#~ msgstr "Lỗi Theme" - -#~ msgid "" -#~ "Tired of the same old colors on your timeline? Change is good so spice up " -#~ "your %s page." -#~ msgstr "" -#~ "Nếu cảm thấy nhàm chán với màu sắc cũ trên timeline của bạn, hãy thay đổi " -#~ "màu sắc để trang %s của bạn hấp dẫn hơn." - -#~ msgid "Customize your theme" -#~ msgstr "Tùy chỉnh theme " - -#~ msgid "Timeline Theme:" -#~ msgstr "Timeline Theme:" - -#~ msgid "Dashboard Theme:" -#~ msgstr "Dashboard Theme:" - -#~ msgid "Theme" -#~ msgstr "Theme" - -#~ msgid "Activity" -#~ msgstr "Các hoạt động" - -#~ msgid "Me & My Friends" -#~ msgstr "Tôi & bạn" - -#~ msgid "User & Friends" -#~ msgstr "Nhóm bạn" - -#~ msgid "My Profile" -#~ msgstr "Cá nhân" - -#~ msgid "Customize your page even more with CSS" -#~ msgstr "Tùy chỉnh trang của bạn bằng CSS" - -#~ msgid "Change css code" -#~ msgstr "Thay đổi code css" - -#~ msgid "You can change your css code here." -#~ msgstr "Bạn có thể thay đổi code css" - -#~ msgid "New css code saved." -#~ msgstr "CSS đã được lưu." - -#~ msgid "Upload from your computer" -#~ msgstr "Tải từ máy tính cá nhân " - -#~ msgid "Get from library" -#~ msgstr "Lấy từ tập ảnh có sẵn" - -#~ msgid "Male" -#~ msgstr "Nam" - -#~ msgid "Female" -#~ msgstr "Nữ" - -#~ msgid "No reply yet" -#~ msgstr "chưa có trả lời" - -#~ msgid "replies" -#~ msgstr "trả lời" - -#~ msgid "Flag a notice" -#~ msgstr "Cảnh báo tin nhắn" - -#~ msgid "" -#~ "If you think this notice is an offensive message, please notify to the " -#~ "administrator. Thank you." -#~ msgstr "" -#~ "Nếu bạn nghĩ tin nhắn này có nội dung xấu không chấp nhận được, hãy báo " -#~ "cho ban quản trị web site. Cảm ơn rất nhiều." - -#~ msgid "" -#~ "To use this [Saigonica version](%%doc.source%%), you must write the " -#~ "license is of StatusNet and has contributions from Saigonica." -#~ msgstr "" -#~ "Để sử dụng [phiên bản Saigonica](%%doc.source%%) này, cần ghi rõ bản " -#~ "quyền của Laconia cộng thêm sự đóng góp của Saigonica." - -#~ msgid "Change theme" -#~ msgstr "Đổi theme" - -#~ msgid "Customize theme" -#~ msgstr "Tùy chỉnh theme" - -#~ msgid "" -#~ "You can change the theme as you want by choosing a thumbnail and then " -#~ "click Save button to active new theme." -#~ msgstr "" -#~ "Bạn có thể thay đổi theme bằng cách chọn một hình mẫu của các theme rồi " -#~ "nhấn nút \"Lưu\" để đổi theme. " - -#~ msgid "" -#~ "%1$s: confirm you own this phone number with this code:\n" -#~ "\n" -#~ "%2$s\n" -#~ "\n" -#~ msgstr "" -#~ "%1$s: Hãy xác nhận bạn là chủ nhân số điện thoại :\n" -#~ "\n" -#~ "%2$s\n" -#~ "\n" - -#~ msgid "Terms of use" -#~ msgstr "TTSD" - -#~ msgid " Terms of use" -#~ msgstr "Thỏa thuận sử dụng" - -#~ msgid "Termsofuse" -#~ msgstr "Thỏa thuận sử dụng" - -#~ msgid "Click here to view emotion icon" -#~ msgstr "Nhấn chuột vào đây để chọn biểu tượng cảm xúc" - -#~ msgid "Import from Web Address Book" -#~ msgstr "Nhập địa chỉ từ Yahoo hoặc Gmail" - -#~ msgid "Select All/None" -#~ msgstr "Chọn tất cả/Không chọn" - -#~ msgid "Contacts not found." -#~ msgstr "Không tìm thấy kết nối." - -#~ msgid "" -#~ "Please input your yahoo or gmail account. List of contacts will be loaded " -#~ "from your address book.\n" -#~ "\n" -#~ "Don't worry, we won't save your password and you'll get a chance to " -#~ "choose which friends to invite." -#~ msgstr "" -#~ "Hãy nhập tài khoản yahoo hoặc tài khoản gmail của bạn. Danh sách bạn bè, " -#~ "người thân sẽ được lấy từ sổ địa chỉ của bạn.\n" -#~ "\n" -#~ "Đừng lo, chúng tôi sẽ không lưu password của bạn và bạn sẽ có danh sách " -#~ "những người bạn để mời." - -#~ msgid "Import Address Book" -#~ msgstr "Thêm vào danh sách địa chỉ" - -#~ msgid "Import Contacts Address Book from Yahoo, Gmail" -#~ msgstr "Nhập sổ địa chỉ liên lạc từ Yahoo, Gmail" - -#~ msgid "Import Web Address Book from" -#~ msgstr "Nhập sổ địa chỉ web từ" - -#~ msgid "" -#~ "%2$s is a micro-blogging service that lets you keep up-to-date with " -#~ "people you know and people who interest you.\n" -#~ "\n" -#~ "You can also share news about yourself, your thoughts, or your life " -#~ "online with people who know about you. It's also great for meeting new " -#~ "people who share your interests.\n" -#~ "\n" -#~ msgstr "" -#~ "%2$s là một dịch vụ gửi tin nhắn mà nó cho phép bạn giữ liên lạc, cập " -#~ "nhật thông tin với bạn bè, người thân và những người quan tâm đến bạn.\n" -#~ "\n" -#~ "Ban cũng có thể chia sẻ thông tin về bản thân, những suy nghĩ, cuộc sống " -#~ "của bạn với những người biết bạn. Là một công cụ hữu hiệu cho việc gặp gỡ " -#~ "người mới, những người có cùng sở thích với bạn.\n" -#~ "\n" - -#~ msgid "" -#~ "%1$s has invited you to join them on %2$s (%3$s).\n" -#~ "\n" -#~ "%1$s said:\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ "You can see %1$s's profile page on %2$s here:\n" -#~ "\n" -#~ "%5$s\n" -#~ "\n" -#~ "If you'd like to try the service, click on the link below to accept the " -#~ "invitation.\n" -#~ "\n" -#~ "%6$s\n" -#~ "\n" -#~ "If not, you can ignore this message. Thanks for your patience and your " -#~ "time.\n" -#~ "\n" -#~ "Sincerely, %2$s\n" -#~ msgstr "" -#~ "%1$s đã mời bạn tham gia vào %2$s (%3$s).\n" -#~ "\n" -#~ "%1$s đã nói:\n" -#~ "\n" -#~ "%4$s\n" -#~ "\n" -#~ "Bạn có thể thấy trang hồ sơ của %1$s trên %2$s ở đây:\n" -#~ "\n" -#~ "%5$s\n" -#~ "\n" -#~ "Nếu bạn muốn thử dịch vụ này, hãy bấm vào đường liên kết bên dưới để chấp " -#~ "nhận lời mời.\n" -#~ "\n" -#~ "%6$s\n" -#~ "\n" -#~ "Nếu không, bạn có thể bỏ qua tin nhắn này. Cảm ơn sự kiên nhẫn và thời " -#~ "gian của bạn dành cho chúng tôi.\n" -#~ "\n" -#~ "Xin chân thành cảm ơn, %2$s\n" - -#~ msgid "" -#~ "Hi, I recently created an account at %1$s and want to share it with you.\n" -#~ "\n" -#~ "%1$s is a free, micro-blogging service, which combines the best of blog " -#~ "and chat. You can use it to write short notices (less than 140 " -#~ "characters) about your daily life: where you are, what you are doing, and " -#~ "how you are feeling.\n" -#~ "\n" -#~ "It is a tool that allows you to communicate, share, and stay in touch " -#~ "with friends and to follow other people that interest you through the " -#~ "exchange of short frequent messages (micro-blogging).\n" -#~ "\n" -#~ msgstr "" -#~ "Chào bạn, mình đã tạo tài khoản trên %1$s và muốn giới thiệu cho bạn cùng " -#~ "biết về dịch vụ này.\n" -#~ "\n" -#~ "%1$s là dịch vụ gửi tin nhắn ngắn miễn phí, một sự kết hợp tuyệt vời giữa " -#~ "blog và chat. Bạn có thể viết tin nhắn khoảng 140 kí tự về đời sống " -#~ "thường nhật của bạn như: bạn ở đâu, bạn đang làm gì, và bạn cảm thấy thế " -#~ "nào.\n" -#~ "\n" -#~ "Đây là công cụ để bạn giao tiếp, chia sẻ, kết nối với bạn bè và theo " -#~ "những người có cùng sở thích với bạn bằng cách gửi cho nhau những tin " -#~ "nhắn ngắn.\n" -#~ "\n" - -#~ msgid "Copy and paste the embed code to your website or blog" -#~ msgstr "Copy và dán mã trên vào website hay blog của bạn" - -#~ msgid "" -#~ "Hey, %1$s\n" -#~ "\n" -#~ "Someone just asked for a new password for this account on %2$s.\n" -#~ "\n" -#~ "If it was you, and you want to confirm, use the URL below:\n" -#~ "\n" -#~ "\t%3$s\n" -#~ "\n" -#~ "If not, just ignore this message.\n" -#~ "\n" -#~ "Thanks for your time, \n" -#~ "%1$s\n" -#~ msgstr "" -#~ "Xin chào, %1$s\n" -#~ "\n" -#~ "Không biết có phải bạn là người yêu cầu mật khẩu mới cho tài khoản này " -#~ "trên %2$s.\n" -#~ "\n" -#~ "Nếu chính là bạn và nếu bạn muốn xác nhận, hãy nhấn chuột vào đường dẫn " -#~ "dưới đây:\n" -#~ "\n" -#~ "\t%3$s\n" -#~ "\n" -#~ "Nếu không phải bạn, hãy bỏ qua tin nhắn này.\n" -#~ "\n" -#~ "Cảm ơn bạn đã bỏ thời gian để đọc thư, \n" -#~ "%1$s\n" - -#~ msgid "" -#~ "You are about to permanently delete a message. Once this is done, it " -#~ "cannot be undone." -#~ msgstr "Bạn muốn xóa tin nhắn này? Sau khi xóa, bạn không thể lấy lại được." - -#~ msgid "Can't delete this message." -#~ msgstr "Không thể xóa tin nhắn này." - -#~ msgid "Timeline" -#~ msgstr "Dòng tin" - -#~ msgid "Share a thought? Vas-y, ton tour..." -#~ msgstr "Muốn chia sẽ ý nghĩ của bạn?" - -#~ msgid "Create date" -#~ msgstr "Ngày thành lập" - -#~ msgid "Member count" -#~ msgstr "Số thành viên" - -#~ msgid "" -#~ "By clicking on 'I accept' above, you confirm that you are over 13 years " -#~ "of age and accept the Terms of Service" -#~ msgstr "" -#~ "Nhấn vào 'Tôi đồng ý' ở trên để xác nhận là bạn trên 13 tuổi và chấp nhận " -#~ "những điều khoản của dịch vụ" - -#~ msgid "I accept" -#~ msgstr "Tôi đồng ý" - -#~ msgid "Group code invalid." -#~ msgstr "Mã số của nhóm không đúng." - -#~ msgid "Register a Group" -#~ msgstr "Đăng ký nhóm" - -#~ msgid "Only people who know this code can join the group. Required." -#~ msgstr "Chỉ những ai biết mã này mới có thể gia nhập nhóm. Bắt buộc." - -#~ msgid "Enter the code if you want to join this group" -#~ msgstr "Nhập vào mã của nhóm nếu bạn muốn tham gia." - -#~ msgid "Manage" -#~ msgstr "Quản lý" - -#~ msgid "You have no authentication to access this page." -#~ msgstr "Bạn không có quyền truy cập trang này." - -#~ msgid "Check the flagged notice and then delete or ignore it." -#~ msgstr "" -#~ "Kiểm tra lại tin bị cảnh báo, sau đó bạn hãy quyết định xóa tin đó hoặc " -#~ "xác nhận nó là hợp lệ." - -#~ msgid "Flagged" -#~ msgstr "Kiểm tin" - -#~ msgid "Short description of the group" -#~ msgstr "Mô tả ngắn gọn về nhóm" - -#~ msgid "Check notice flagged by user" -#~ msgstr "Kiểm tra các tin nhắn do người dùng cảnh báo" - -#~ msgid "is more fun with friends." -#~ msgstr "vui hơn với bạn bè" - -#~ msgid "Hide recommendations" -#~ msgstr "Tắt" - -#~ msgid "" -#~ "Sorry, but you need to activate your account first. We sent the " -#~ "activation email, so please check your email for details. Don't forget to " -#~ "look in your spam folder as well." -#~ msgstr "" -#~ "Xin lỗi, bạn cần phải kích hoạt tài khoản của bạn trước. Chúng tôi đã gửi " -#~ "email tới bạn, vì vậy hãy mở hộp mail để xem hướng dẫn chi tiết. Đừng " -#~ "quên tìm cả trong spam." - -#~ msgid "Chat vs T8M" -#~ msgstr "Chat và T8M" - -#~ msgid "Prev" -#~ msgstr "Trước" - -#~ msgid "Next" -#~ msgstr "Kế" - -#~ msgid "Group View" -#~ msgstr "Xem theo nhóm" - -#~ msgid "Linear View" -#~ msgstr "Xem tuần tự" - -#~ msgid "Channels" -#~ msgstr "Kênh" - -#~ msgid "Channel already exist. Try another one." -#~ msgstr "Kênh này đã có rồi. Hãy chọn tên khác." - -#~ msgid "Can't save this chanel" -#~ msgstr "Lỗi khi lưu kênh" - -#~ msgid "You can create a new channel here." -#~ msgstr "Bạn có thể tạo kênh tại đây." - -#~ msgid "Create Channel" -#~ msgstr "Tạo Kênh" - -#~ msgid "Channel name" -#~ msgstr "Tên kênh" - -#~ msgid "Name of channel. Required." -#~ msgstr "Tên kênh. Bắt buộc" - -#~ msgid "Channel saved successfully" -#~ msgstr "Tạo kênh thành công." - -#~ msgid " You have just created channel %s successfuly." -#~ msgstr "Bạn vừa tạo thành công kênh %s." - -#~ msgid "Channel" -#~ msgstr "Kênh" - -#~ msgid "No such chanel." -#~ msgstr "Không tìm thấy kênh nào." - -#~ msgid "Channels View" -#~ msgstr "Hệ thống các kênh" - -#~ msgid "Create a channel" -#~ msgstr "Tạo kênh" - -#~ msgid "Register user by channel" -#~ msgstr "Đăng ký theo kênh" - -#~ msgid " Subscribe" -#~ msgstr "Theo kênh này" - -#~ msgid "Your incoming and sent messages" -#~ msgstr "Hộp thư của bạn" - -#~ msgid "Send me all replies through Yahoo Messenger." -#~ msgstr "Hãy gửi tin nhắn đến tôi qua Yahoo Messenger" - -#~ msgid "Yahoo Messenger Settings" -#~ msgstr "Thiết lập địa chỉ Yahoo" - -#~ msgid "" -#~ "You can send and receive notices through Yahoo Messenger [instant " -#~ "messages](%%doc.im%%). Configure your yahoo address and settings below." -#~ msgstr "" -#~ "Bạn có thể gửi và nhận những tin nhắn qua Yahoo Messenger [tin nhắn nhanh]" -#~ "(%%doc.im%%). Hãy định dạng địa chỉ của bạn và các thiết lập sau." - -#~ msgid "" -#~ "Awaiting confirmation on this address. Check your Yahoo inbox (and spam " -#~ "box!) for a message with further instructions." -#~ msgstr "" -#~ "Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra hộp thư đến(và thư rác) " -#~ "để nhận tin nhắn và lời hướng dẫn. " - -#~ msgid "Yahoo Address" -#~ msgstr "Địa chỉ email Yahoo" - -#~ msgid "Yahoo address, like \"UserName@yahoo.com\"" -#~ msgstr "Địa chỉ email Yahoo, Ví dụ: \"UserName@yahoo.com\"" - -#~ msgid "That is already your yahoo address." -#~ msgstr "Bạn đã dùng địa chỉ email này rồi" - -#~ msgid "Cannot normalize that Yahoo address" -#~ msgstr "Không thể bình thường hóa địa chỉ Yahoo này" - -#~ msgid "No yahoo address." -#~ msgstr "Chưa nhập địa chỉ email Yahoo" - -#~ msgid "" -#~ "A confirmation code was sent to the yahoo email address you added. Check " -#~ "your inbox (and spam box!) for the code and instructions on how to use it." -#~ msgstr "" -#~ "Mã xác nhận đã được gửi đến địa chỉ email Yahoo của bạn. Hãy kiểm tra hộp " -#~ "thư đến (và thư rác) và làm theo hướng dẫn trong thư." - -#~ msgid "says" -#~ msgstr "nói" - -#~ msgid "Your message is posted successful." -#~ msgstr "Tin nhắn đã gửi đi" - -#~ msgid "To use this service, You must register your YM with Saigonica." -#~ msgstr "Để được sử dụng dịch vụ này, bạn phải đăng ký YM trên Saigonica" - -#~ msgid "To use this service, You must register your Gtalk with Saigonica." -#~ msgstr "Để được sử dụng dịch vụ này, bạn phải đăng ký GTalk trên Saigonica" - -#~ msgid "GTalk Settings" -#~ msgstr "Thiết lập địa chỉ GTalk" - -#~ msgid "" -#~ "You can send and receive notices through Jabber/GTalk [instant messages](%" -#~ "%doc.im%%). Configure your yahoo address and settings below." -#~ msgstr "" -#~ "Bạn có thể gửi và nhận những tin nhắn qua Jabber/GTalk [tin nhắn nhanh](%%" -#~ "doc.im%%). Hãy định dạng địa chỉ của bạn và các thiết lập sau." - -#~ msgid "" -#~ "Awaiting confirmation on this address. Check your GTalk inbox (and spam " -#~ "box!) for a message with further instructions." -#~ msgstr "" -#~ "Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra hộp thư đến(và thư rác) " -#~ "để nhận tin nhắn và lời hướng dẫn. " - -#~ msgid "GTalk Address" -#~ msgstr "Địa chỉ email GTalk" - -#~ msgid "" -#~ "A confirmation code was sent to the GTalk email address you added. Check " -#~ "your inbox (and spam box!) for the code and instructions on how to use it." -#~ msgstr "" -#~ "Mã xác nhận đã được gửi đến địa chỉ email GTalk của bạn. Hãy kiểm tra hộp " -#~ "thư đến (và thư rác) và làm theo hướng dẫn trong thư." - -#~ msgid "Check virus" -#~ msgstr "Kiểm tra virus" - -#~ msgid "Avatar " -#~ msgstr "Hình" - -#~ msgid "Change your avatar" -#~ msgstr "Thay đổi hình đại diện của bạn" - -#~ msgid "Updates by Yahoo Messenger (YM)" -#~ msgstr "Cập nhật địa chỉ Yahoo để gửi tin qua Yahoo Mesenger(YM)" - -#~ msgid "Ban from network" -#~ msgstr "Ban user ra khỏi mạng" - -#~ msgid "Ban users violate rules of saigonica" -#~ msgstr "Ban user vi phạm nội quy của saigonica" - -#~ msgid "Are you sure to ban this user?" -#~ msgstr "Bạn có chắc muốn ban người này không?" - -#~ msgid "Your account was banned." -#~ msgstr "Tài khoản của bạn đã bị ban." - -#~ msgid "User has been baned." -#~ msgstr "User đã bị ban." diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.mo b/locale/zh_CN/LC_MESSAGES/statusnet.mo index 2a5eaed9072301bef98986513dcb22156b43ba83..4217cec2f5d7ddd5a64e6e9dfdfad1e52c08d96a 100644 GIT binary patch delta 339 zcmY+9&q~8U5XLLjOOKvC%)vu~Zo7$AlI^hv5v&N7*z3>?O|))Gc7o!?hbVm&@A?{o zXZ7SGI4ic`2S0Y%Z~lDy`nL1k&fa&oS1r+&uqW&bZQ)SxN`z-IQ#pOjMwfMULsM2~ zxyq<^Wn~RqF>>QBh?gIqlQ@c$K7v>qtxXgkXi?`J?X1BWsWIW5fniZvas+|DV7Pqw z%AQ7)mv~*?mJoHL6Pzy!4C;Pzoc6;3jBB)Rj!ZxgOxCZ3Al5onI+1N*XQI|6VyVB7 z26)|fFN3?57?7c0UYK6*zc&z5rfh-^tDFox7HVqcc|^|n_@{N%EDTf)EBE_p-_`m7 DTqk5- literal 93634 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 -# This file is distributed under the same license as the identi.ca package. -# Gouki , 2008 +# Translation of StatusNet to Chinese (China) # +# -- msgid "" msgstr "" -"Project-Id-Version: identi.ca\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-07-28 14:03+0000\n" -"Last-Translator: offacer \n" -"Language-Team: i18n-zh \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 20:00:12+0000\n" +"Language-Team: Chinese (China)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-cn\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" -msgstr "搜索有关\"%s\"的消息" +msgstr "" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." -msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" +msgstr "" #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " -msgstr " 从 " +msgstr "" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 #: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" -msgstr "%1$s / 回复 %2$s 的消息" +msgstr "" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 #: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" -msgstr "%1$s 邀请您加入 %2$s" +msgstr "" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 @@ -77,32 +76,12 @@ msgid "" "\n" "Sincerely, %2$s\n" msgstr "" -"%1$s 邀请你加入 %2$s (%3$s).\n" -"\n" -"%2$s 是一个能让你和你认识的、感兴趣的人保持联系的微博客服务。 \n" -"你可以和你认识的人分享你的近况、想法或者你的网络生活。你也可以结交有共同兴趣" -"的新朋友。\n" -"\n" -"%1$s 说:\n" -"\n" -"%4$s\n" -"\n" -"你可以在这里查阅 %1$s's 的资料 %2$s :\n" -"\n" -"%5$s\n" -"\n" -"如果你想使用这个服务,请点击一下链接接受邀请。\n" -"%6$s\n" -"\n" -"如果你不愿意,请跳过这条信息。感谢您的耐心和时间。\n" -"\n" -"诚挚的感谢, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s 开始关注您的 %2$s 信息。" +msgstr "" #: ../lib/mail.php:126 #, php-format @@ -114,38 +93,33 @@ msgid "" "Faithfully yours,\n" "%4$s.\n" msgstr "" -"%1$s 开始关注您的 %2$s 信息。\n" -"\n" -"\t%3$s\n" -"\n" -"为您效力的 %4$s\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 #: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "回复 %2$s / %3$s 的 %1$s 更新。" +msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 #: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" -msgstr "%1$s 的 %2$s 状态" +msgstr "" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 #: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" -msgstr "%s (%s)" +msgstr "" #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" -msgstr "%s 公开聚合" +msgstr "" #: ../actions/all.php:47 ../actions/allrss.php:60 #: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 @@ -160,7 +134,7 @@ msgstr "%s 公开聚合" #: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" -msgstr "%s 及好友" +msgstr "" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 #: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 @@ -168,12 +142,12 @@ msgstr "%s 及好友" #: actions/publicrss.php:103 #, php-format msgid "%s public timeline" -msgstr "%s 公众时间表" +msgstr "" #: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" -msgstr "%s 状态" +msgstr "" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 #: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 @@ -182,7 +156,7 @@ msgstr "%s 状态" #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" -msgstr "%s 时间表" +msgstr "" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 #: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 @@ -190,14 +164,14 @@ msgstr "%s 时间表" #: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" -msgstr "来自所有人的 %s 消息!" +msgstr "" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" -msgstr "(您将收到一封邮件,包含了如何确认邮件地址的说明。)" +msgstr "" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 @@ -206,18 +180,16 @@ msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%** 是一个微博客服务,提供者为 [%%site.broughtby%%](%%site." -"broughtbyurl%%)。" #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** 是一个微博客服务。" +msgstr "" #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "。贡献者应当有全名或昵称。" +msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -225,28 +197,28 @@ msgstr "。贡献者应当有全名或昵称。" #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1 到 64 个小写字母或数字,不包含标点及空白" +msgstr "" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1 到 64 个小写字母或数字,不包含标点及空白。此项必填。" +msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" -msgstr "6 个或更多字符" +msgstr "" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 #: actions/recoverpassword.php:220 actions/recoverpassword.php:233 #: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" -msgstr "6 个或更多字符,不能忘记!" +msgstr "" #: ../actions/register.php:154 actions/register.php:168 #: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." -msgstr "6 个或更多字符。此项必填。" +msgstr "" #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 @@ -254,7 +226,7 @@ msgstr "6 个或更多字符。此项必填。" msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." -msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" +msgstr "" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 @@ -262,16 +234,12 @@ msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." msgstr "" -"验证码已被发送到您新增的电子邮件。请检查收件箱(和垃圾箱),找到验证码并按要求" -"使用它。" #: ../actions/smssettings.php:216 actions/smssettings.php:224 msgid "" "A confirmation code was sent to the phone number you added. Check your inbox " "(and spam box!) for the code and instructions on how to use it." msgstr "" -"验证码已被发送到您新增的电话号码。请检查收件箱(和垃圾箱),找到验证码并按要求" -"使用它。" #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -320,7 +288,7 @@ msgstr "" #: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 #: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" -msgstr "API 方法未实现!" +msgstr "" #: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 #: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 @@ -348,18 +316,18 @@ msgstr "API 方法未实现!" #: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 #: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." -msgstr "API 方法尚未实现。" +msgstr "" #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 msgid "About" -msgstr "关于" +msgstr "" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 #: actions/userauthorization.php:143 actions/userauthorization.php:178 #: actions/userauthorization.php:209 msgid "Accept" -msgstr "接受" +msgstr "" #: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 #: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 @@ -372,17 +340,17 @@ msgstr "接受" #: actions/emailsettings.php:126 actions/imsettings.php:133 #: actions/smssettings.php:145 msgid "Add" -msgstr "添加" +msgstr "" #: ../actions/openidsettings.php:43 actions/openidsettings.php:44 #: actions/openidsettings.php:93 msgid "Add OpenID" -msgstr "添加 OpenID" +msgstr "" #: ../lib/settingsaction.php:97 lib/settingsaction.php:91 #: lib/accountsettingsaction.php:117 msgid "Add or remove OpenIDs" -msgstr "添加或移除 OpenID" +msgstr "" #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 @@ -391,29 +359,29 @@ msgstr "添加或移除 OpenID" #: actions/smssettings.php:92 actions/emailsettings.php:100 #: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" -msgstr "地址" +msgstr "" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 #: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" -msgstr "要邀请的好友地址(每行一个)" +msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" -msgstr "所有订阅" +msgstr "" #: ../actions/publicrss.php:64 actions/publicrss.php:50 #: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" -msgstr "所有 %s 消息" +msgstr "" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 #: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" -msgstr "所有匹配搜索条件\"%s\"的消息" +msgstr "" #: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 #: ../actions/openidlogin.php:29 ../actions/register.php:30 @@ -423,37 +391,37 @@ msgstr "所有匹配搜索条件\"%s\"的消息" #: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 #: actions/login.php:79 msgid "Already logged in." -msgstr "已登录。" +msgstr "" #: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." -msgstr "已订阅!" +msgstr "" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 #: actions/deletenotice.php:113 actions/deletenotice.php:114 #: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" -msgstr "确定要删除这条消息吗?" +msgstr "" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 msgid "Authorize subscription" -msgstr "确认订阅" +msgstr "" #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "保持这台机器上的登录状态。不要在共用的机器上保持登录!" +msgstr "" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" +msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -462,12 +430,12 @@ msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器 #: actions/showgroup.php:216 actions/showgroup.php:221 #: lib/accountsettingsaction.php:111 msgid "Avatar" -msgstr "头像" +msgstr "" #: ../actions/avatar.php:113 actions/profilesettings.php:350 #: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." -msgstr "头像已更新。" +msgstr "" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 @@ -476,8 +444,6 @@ msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -"正在等待这个地址的确认。请查阅你Jabber/GTalk的帐户看有没有收到进一步的指示。" -"(你是否已经添加 %s为你的好友?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 @@ -485,18 +451,15 @@ msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -"等待确认此地址。请查看您的收件箱(和垃圾箱)是否收到了邮件,其中包含了进一步的" -"指示。" #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." -msgstr "等待确认此电话号码。" +msgstr "" #: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy msgid "Before »" -msgstr "下一页 »" +msgstr "" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 @@ -504,7 +467,7 @@ msgstr "下一页 »" #: actions/register.php:448 actions/profilesettings.php:127 #: actions/register.php:459 msgid "Bio" -msgstr "自述" +msgstr "" #: ../actions/profilesettings.php:101 ../actions/register.php:82 #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 @@ -513,18 +476,18 @@ msgstr "自述" #: actions/updateprofile.php:107 actions/updateprofile.php:109 #: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." -msgstr "自述过长(不能超过140字符)。" +msgstr "" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 #: actions/deletenotice.php:71 msgid "Can't delete this notice." -msgstr "无法删除通告。" +msgstr "" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" -msgstr "无法访问头像URL '%s'" +msgstr "" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 @@ -532,7 +495,7 @@ msgstr "无法访问头像URL '%s'" #: actions/passwordsettings.php:174 actions/recoverpassword.php:365 #: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." -msgstr "无法保存新密码。" +msgstr "" #: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 #: ../actions/smssettings.php:62 actions/emailsettings.php:58 @@ -541,48 +504,48 @@ msgstr "无法保存新密码。" #: actions/smssettings.php:114 actions/emailsettings.php:117 #: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" -msgstr "取消" +msgstr "" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 #: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." -msgstr "无法创建 OpenID 用户对象。" +msgstr "" #: ../actions/imsettings.php:163 actions/imsettings.php:171 #: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" -msgstr "无法识别此Jabber ID" +msgstr "" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 #: actions/emailsettings.php:311 actions/emailsettings.php:318 #: actions/emailsettings.php:326 msgid "Cannot normalize that email address" -msgstr "无法识别此电子邮件" +msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" -msgstr "修改" +msgstr "" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 #: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" -msgstr "修改电子邮件" +msgstr "" #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" -msgstr "修改密码" +msgstr "" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 #: lib/accountsettingsaction.php:115 msgid "Change your password" -msgstr "修改密码" +msgstr "" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 #: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" -msgstr "修改您的个人信息" +msgstr "" #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 @@ -594,12 +557,12 @@ msgstr "修改您的个人信息" #: actions/passwordsettings.php:111 actions/recoverpassword.php:239 #: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" -msgstr "确认" +msgstr "" #: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 #: actions/confirmaddress.php:144 msgid "Confirm Address" -msgstr "确认地址" +msgstr "" #: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 #: ../actions/smssettings.php:245 actions/emailsettings.php:256 @@ -609,17 +572,17 @@ msgstr "确认地址" #: actions/emailsettings.php:394 actions/imsettings.php:367 #: actions/smssettings.php:386 msgid "Confirmation cancelled." -msgstr "已取消确认。" +msgstr "" #: ../actions/smssettings.php:63 actions/smssettings.php:63 #: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" -msgstr "确认码" +msgstr "" #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." -msgstr "未找到确认码。" +msgstr "" #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 @@ -640,41 +603,29 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -"恭喜, %s! 欢迎来到 %%%%site.name%%%%. 这里,你需要\n" -"\n" -"* 查看你的资料Go to [your profile](%s) 发布你的第一条消息.\n" -"* 填加 [Jabber/GTalk address](%%%%action.imsettings%%%%) 然后你可以通过即时消" -"息平台发布信息。\n" -"* [Search for people](%%%%action.peoplesearch%%%%) 你认识的或和你有共同兴趣的" -"朋友。 \n" -"* 更新你的 [profile settings](%%%%action.profilesettings%%%%) 告诉大家更多关" -"于你的情况。 \n" -"* 请阅读 [online docs](%%%%doc.help%%%%) 有的功能也许你还不熟悉。\n" -"\n" -"感谢您的注册,希望您喜欢这个服务。" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 #: lib/action.php:425 lib/action.php:435 msgid "Connect" -msgstr "连接" +msgstr "" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 #: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" -msgstr "连接现有帐号" +msgstr "" #: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 #: lib/action.php:719 lib/action.php:734 msgid "Contact" -msgstr "联系人" +msgstr "" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 #: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" -msgstr "无法创建 OpenID 表单:%s" +msgstr "" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 @@ -683,47 +634,47 @@ msgstr "无法创建 OpenID 表单:%s" #: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "无法订阅用户:%s 已在订阅列表中。" +msgstr "" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 #: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." -msgstr "无法订阅用户:未找到。" +msgstr "" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" -msgstr "无法重定向到服务器:%s" +msgstr "" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 #: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" -msgstr "无法保存头像" +msgstr "" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 #: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" -msgstr "无法保存个人信息" +msgstr "" #: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." -msgstr "无法订阅他人更新。" +msgstr "" #: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." -msgstr "无法订阅。" +msgstr "" #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "无法更新已确认的电子邮件。" +msgstr "" #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "无法将请求标记转换为访问令牌。" +msgstr "" #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -734,21 +685,21 @@ msgstr "无法将请求标记转换为访问令牌。" #: actions/emailsettings.php:382 actions/emailsettings.php:390 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." -msgstr "无法删除电子邮件确认。" +msgstr "" #: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." -msgstr "无法删除订阅。" +msgstr "" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 #: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." -msgstr "找不到任何信息。" +msgstr "" #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." -msgstr "无法获得一份请求标记。" +msgstr "" #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 @@ -758,25 +709,25 @@ msgstr "无法获得一份请求标记。" #: actions/emailsettings.php:352 actions/imsettings.php:317 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." -msgstr "无法插入验证码。" +msgstr "" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 #: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." -msgstr "无法添加新的订阅。" +msgstr "" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 #: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." -msgstr "无法保存个人信息。" +msgstr "" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 #: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." -msgstr "无法更新用户的自动订阅选项。" +msgstr "" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 @@ -787,7 +738,7 @@ msgstr "无法更新用户的自动订阅选项。" #: actions/emailsettings.php:455 actions/emailsettings.php:477 #: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." -msgstr "无法更新用户记录。" +msgstr "" #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 @@ -809,71 +760,71 @@ msgstr "无法更新用户记录。" #: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/smssettings.php:420 msgid "Couldn't update user." -msgstr "无法更新用户。" +msgstr "" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 #: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" -msgstr "创建" +msgstr "" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 #: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." -msgstr "创建使用此昵称的新用户。" +msgstr "" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 #: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" -msgstr "创建新帐号" +msgstr "" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." -msgstr "为 OpenID 用户产生新的帐号。" +msgstr "" #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." -msgstr "已确认的Jabber/GTalk帐号。" +msgstr "" #: ../actions/smssettings.php:46 actions/smssettings.php:46 #: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." -msgstr "已确认的可以发送SMS短消息的电话号码。" +msgstr "" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 #: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." -msgstr "已确认的电子邮件。" +msgstr "" #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" -msgstr "目前" +msgstr "" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 #: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" -msgstr "添加标签时数据库出错:%s" +msgstr "" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" -msgstr "添加回复时数据库出错:%s" +msgstr "" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 #: actions/deletenotice.php:79 actions/deletenotice.php:111 #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" -msgstr "删除通告" +msgstr "" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 #: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" -msgstr "用不超过140个字符描述您自己和您的爱好" +msgstr "" #: ../actions/register.php:158 ../actions/register.php:161 #: ../lib/settingsaction.php:87 actions/register.php:172 @@ -882,108 +833,108 @@ msgstr "用不超过140个字符描述您自己和您的爱好" #: actions/register.php:427 actions/register.php:431 actions/register.php:435 #: lib/accountsettingsaction.php:117 msgid "Email" -msgstr "电子邮件" +msgstr "" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 #: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" -msgstr "电子邮件地址" +msgstr "" #: ../actions/emailsettings.php:32 actions/emailsettings.php:32 #: actions/emailsettings.php:60 msgid "Email Settings" -msgstr "电子邮件设置" +msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." -msgstr "电子邮件地址已存在。" +msgstr "" #: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" -msgstr "电子邮件地址确认" +msgstr "" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 #: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" -msgstr "电子邮件,类似 \"UserName@example.org\"" +msgstr "" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 #: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" -msgstr "电子邮件地址" +msgstr "" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." -msgstr "输入昵称或电子邮件。" +msgstr "" #: ../actions/smssettings.php:64 actions/smssettings.php:64 #: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." -msgstr "输入手机收到的验证码。" +msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" -msgstr "无法认证令牌" +msgstr "" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 #: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 #: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." -msgstr "无法将用户与 OpenID 连接。" +msgstr "" #: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 #: actions/finishaddopenid.php:126 msgid "Error connecting user." -msgstr "无法连接用户。" +msgstr "" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 #: lib/oauthstore.php:291 msgid "Error inserting avatar" -msgstr "添加头像出错" +msgstr "" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 #: lib/oauthstore.php:283 msgid "Error inserting new profile" -msgstr "添加个人信息出错" +msgstr "" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 #: lib/oauthstore.php:311 msgid "Error inserting remote profile" -msgstr "添加远程的个人信息出错" +msgstr "" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 #: actions/recoverpassword.php:280 actions/recoverpassword.php:298 #: actions/recoverpassword.php:301 msgid "Error saving address confirmation." -msgstr "保存地址确认时出错。" +msgstr "" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 #: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" -msgstr "保存远程的个人信息时出错" +msgstr "" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 #: lib/openid.php:238 msgid "Error saving the profile." -msgstr "保存个人信息时出错。" +msgstr "" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 #: lib/openid.php:249 msgid "Error saving the user." -msgstr "保存用户时出错。" +msgstr "" #: ../actions/password.php:80 actions/profilesettings.php:399 #: actions/passwordsettings.php:164 actions/passwordsettings.php:169 #: actions/passwordsettings.php:175 msgid "Error saving user; invalid." -msgstr "保存用户时出错;不正确。" +msgstr "" #: ../actions/login.php:47 ../actions/login.php:73 #: ../actions/recoverpassword.php:307 ../actions/register.php:98 @@ -994,74 +945,74 @@ msgstr "保存用户时出错;不正确。" #: actions/register.php:235 actions/login.php:122 #: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." -msgstr "保存用户设置时出错。" +msgstr "" #: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 #: actions/finishaddopenid.php:131 msgid "Error updating profile" -msgstr "更新个人信息时出错" +msgstr "" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 #: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" -msgstr "更新远程的个人信息时出错" +msgstr "" #: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 #: actions/recoverpassword.php:86 msgid "Error with confirmation code." -msgstr "验证码出错。" +msgstr "" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 #: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" -msgstr "昵称已被使用" +msgstr "" #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 #: lib/action.php:708 lib/action.php:723 msgid "FAQ" -msgstr "常见问题FAQ" +msgstr "" #: ../actions/avatar.php:115 actions/profilesettings.php:352 #: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." -msgstr "更新头像失败。" +msgstr "" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 #: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" -msgstr "%s 好友的聚合" +msgstr "" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 #: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" -msgstr "%s 回复的聚合" +msgstr "" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 #: actions/tag.php:68 #, php-format msgid "Feed for tag %s" -msgstr "%s 标签的聚合" +msgstr "" #: ../lib/searchaction.php:105 lib/searchaction.php:105 #: lib/searchgroupnav.php:83 msgid "Find content of notices" -msgstr "搜索通告内容" +msgstr "" #: ../lib/searchaction.php:101 lib/searchaction.php:101 #: lib/searchgroupnav.php:81 msgid "Find people on this site" -msgstr "搜索用户信息" +msgstr "" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." -msgstr "由于安全原因,修改设置前需要输入用户名和密码。" +msgstr "" #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1074,7 +1025,7 @@ msgstr "由于安全原因,修改设置前需要输入用户名和密码。" #: actions/profilesettings.php:111 actions/register.php:441 #: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" -msgstr "全名" +msgstr "" #: ../actions/profilesettings.php:98 ../actions/register.php:79 #: ../actions/updateprofile.php:93 actions/profilesettings.php:213 @@ -1088,19 +1039,19 @@ msgstr "全名" #: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/register.php:214 msgid "Full name is too long (max 255 chars)." -msgstr "全名过长(不能超过 255 个字符)。" +msgstr "" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 #: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 #: lib/action.php:456 lib/action.php:719 msgid "Help" -msgstr "帮助" +msgstr "" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 #: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 #: lib/action.php:417 lib/action.php:430 msgid "Home" -msgstr "主页" +msgstr "" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 @@ -1109,7 +1060,7 @@ msgstr "主页" #: lib/groupeditform.php:161 actions/profilesettings.php:115 #: actions/register.php:446 msgid "Homepage" -msgstr "主页" +msgstr "" #: ../actions/profilesettings.php:95 ../actions/register.php:76 #: actions/profilesettings.php:210 actions/register.php:83 @@ -1121,140 +1072,140 @@ msgstr "主页" #: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/register.php:211 msgid "Homepage is not a valid URL." -msgstr "主页的URL不正确。" +msgstr "" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 #: actions/emailsettings.php:173 actions/emailsettings.php:178 #: actions/emailsettings.php:185 msgid "I want to post notices by email." -msgstr "我希望通过邮件发布信息。" +msgstr "" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 #: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" -msgstr "即时通讯IM" +msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" -msgstr "IM 帐号" +msgstr "" #: ../actions/imsettings.php:33 actions/imsettings.php:33 #: actions/imsettings.php:59 msgid "IM Settings" -msgstr "IM 设置" +msgstr "" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." -msgstr "如果您已经拥有帐号,可以将它连接到您的 OpenID。请输入用户名和密码。" +msgstr "" #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." -msgstr "如果您希望添加新的 OpenID,输入它并点击“添加”。" +msgstr "" #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." -msgstr "如果您忘记了密码,可以使用此邮箱收到新的密码。" +msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 #: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" -msgstr "发布用的电子邮件" +msgstr "" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 #: actions/emailsettings.php:443 actions/emailsettings.php:450 #: actions/smssettings.php:518 actions/smssettings.php:519 #: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." -msgstr "发布用的电子邮件被移除。" +msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 #: actions/passwordsettings.php:164 msgid "Incorrect old password" -msgstr "旧密码不正确" +msgstr "" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 #: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 #: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." -msgstr "用户名或密码不正确。" +msgstr "" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." -msgstr "恢复密码的指示已被发送到您的注册邮箱。" +msgstr "" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" -msgstr "头像URL '%s'不正确" +msgstr "" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 #: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" -msgstr "电子邮件地址 %s 不正确" +msgstr "" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" -msgstr "主页'%s'不正确" +msgstr "" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 #: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" -msgstr "授权方式URL '%s'不正确" +msgstr "" #: ../actions/postnotice.php:61 actions/postnotice.php:62 #: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" -msgstr "通告内容不正确" +msgstr "" #: ../actions/postnotice.php:67 actions/postnotice.php:68 #: actions/postnotice.php:72 msgid "Invalid notice uri" -msgstr "通告URI不正确" +msgstr "" #: ../actions/postnotice.php:72 actions/postnotice.php:73 #: actions/postnotice.php:77 msgid "Invalid notice url" -msgstr "通告URL不正确" +msgstr "" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 #: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." -msgstr "个人信息URL '%s'不正确。" +msgstr "" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 #: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" -msgstr "个人信息URL不正确(格式错误)" +msgstr "" #: ../actions/finishremotesubscribe.php:77 #: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 msgid "Invalid profile URL returned by server." -msgstr "服务器返回的个人信息URL不正确。" +msgstr "" #: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." -msgstr "大小不正确。" +msgstr "" #: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 #: ../actions/register.php:111 actions/finishopenidlogin.php:241 @@ -1264,28 +1215,28 @@ msgstr "大小不正确。" #: actions/finishopenidlogin.php:307 actions/register.php:230 #: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." -msgstr "用户名或密码不正确。" +msgstr "" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 #: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" -msgstr "已发送邀请" +msgstr "" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 #: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" -msgstr "已发送邀请给这些人:" +msgstr "" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 #: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 #: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" -msgstr "邀请" +msgstr "" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 #: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" -msgstr "邀请新用户" +msgstr "" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 @@ -1295,14 +1246,11 @@ msgid "" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"它运行[StatusNet](http://status.net/)微博客服务,版本 %s,采用[GNU Affero " -"General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)" -"授权。" #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." -msgstr "Jabber ID 属于另一用户。" +msgstr "" #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 @@ -1311,20 +1259,18 @@ msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " "add %s to your buddy list in your IM client or on GTalk." msgstr "" -"Jabber 或 GTalk 帐号,类似\"UserName@example.org\"。首先,必须在即时聊天工具" -"或GTalk中将 %s 加为好友。" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 #: actions/profilesettings.php:144 msgid "Language" -msgstr "语言" +msgstr "" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 #: actions/profilesettings.php:217 actions/profilesettings.php:218 #: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." -msgstr "语言过长(不能超过50个字符)。" +msgstr "" #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -1341,7 +1287,7 @@ msgstr "语言过长(不能超过50个字符)。" #: actions/userauthorization.php:158 lib/groupeditform.php:177 #: lib/profilelist.php:218 msgid "Location" -msgstr "位置" +msgstr "" #: ../actions/profilesettings.php:104 ../actions/register.php:85 #: ../actions/updateprofile.php:108 actions/profilesettings.php:219 @@ -1355,7 +1301,7 @@ msgstr "位置" #: actions/newgroup.php:148 actions/profilesettings.php:225 #: actions/register.php:221 msgid "Location is too long (max 255 chars)." -msgstr "位置过长(不能超过255个字符)。" +msgstr "" #: ../actions/login.php:97 ../actions/login.php:106 #: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 @@ -1369,13 +1315,13 @@ msgstr "位置过长(不能超过255个字符)。" #: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" -msgstr "登录" +msgstr "" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 #: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "使用[OpenID](%%doc.openid%%)帐号登录。" +msgstr "" #: ../actions/login.php:126 actions/login.php:251 #, php-format @@ -1384,48 +1330,46 @@ msgid "" "(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" "%). " msgstr "" -"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " -"或使用 [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" -msgstr "登出" +msgstr "" #: ../actions/register.php:166 actions/register.php:180 #: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" -msgstr "长名字,最好是“实名”" +msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" -msgstr "忘记了密码?" +msgstr "" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 #: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "生成新的电子邮件地址用于发布信息;取消旧的。" +msgstr "" #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 #, php-format msgid "Manage how you get email from %%site.name%%." -msgstr "设置 %%site.name%% 发送的邮件。" +msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" -msgstr "用户始于" +msgstr "" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 #: actions/userrss.php:93 #, php-format msgid "Microblog by %s" -msgstr "%s 的微博客服务" +msgstr "" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 @@ -1434,8 +1378,6 @@ msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " "email but isn't listed here, send email to let us know at %s." msgstr "" -"电话的服务商。如果您的服务商支持通过电子邮件发送SMS短信,而这里尚未列出,请联" -"系 %s 以告知。" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1443,36 +1385,36 @@ msgstr "" #: actions/register.php:430 actions/finishopenidlogin.php:106 #: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " -msgstr "我的文字和文件采用的授权方式为" +msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 #: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" -msgstr "新建" +msgstr "" #: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" -msgstr "新的电子邮件地址,用于发布 %s 信息" +msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 #: actions/emailsettings.php:465 actions/emailsettings.php:472 #: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." -msgstr "已添加新的发布用的电子邮件地址。" +msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" -msgstr "新昵称" +msgstr "" #: ../actions/newnotice.php:87 actions/newnotice.php:96 #: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" -msgstr "新通告" +msgstr "" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 @@ -1480,12 +1422,12 @@ msgstr "新通告" #: actions/recoverpassword.php:232 actions/passwordsettings.php:107 #: actions/recoverpassword.php:235 msgid "New password" -msgstr "新密码" +msgstr "" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "新密码已保存,您现在已登录。" +msgstr "" #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1501,7 +1443,7 @@ msgstr "新密码已保存,您现在已登录。" #: actions/profilesettings.php:106 actions/register.php:417 #: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" -msgstr "昵称" +msgstr "" #: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 #: ../actions/register.php:69 actions/finishopenidlogin.php:181 @@ -1515,7 +1457,7 @@ msgstr "昵称" #: actions/newgroup.php:130 actions/profilesettings.php:231 #: actions/register.php:202 msgid "Nickname already in use. Try another one." -msgstr "昵称已被使用,换一个吧。" +msgstr "" #: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 #: ../actions/register.php:67 ../actions/updateprofile.php:77 @@ -1531,22 +1473,22 @@ msgstr "昵称已被使用,换一个吧。" #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "昵称只能使用小写字母和数字,不包含空格。" +msgstr "" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." -msgstr "不允许的昵称。" +msgstr "" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 #: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "希望订阅的用户的昵称" +msgstr "" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 #: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" -msgstr "昵称或电子邮件" +msgstr "" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 @@ -1554,33 +1496,33 @@ msgstr "昵称或电子邮件" #: actions/deletenotice.php:115 actions/groupblock.php:176 #: actions/deletenotice.php:145 msgid "No" -msgstr "否" +msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." -msgstr "没有 Jabber ID。" +msgstr "" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 #: actions/userauthorization.php:153 actions/userauthorization.php:192 #: actions/userauthorization.php:225 msgid "No authorization request!" -msgstr "未收到认证请求!" +msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 #: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." -msgstr "未选择运营商。" +msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 #: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" -msgstr "没有输入验证码" +msgstr "" #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." -msgstr "没有验证码" +msgstr "" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 @@ -1589,35 +1531,35 @@ msgstr "没有验证码" #: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 #: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" -msgstr "没有内容!" +msgstr "" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 #: actions/emailsettings.php:304 actions/emailsettings.php:311 #: actions/emailsettings.php:319 msgid "No email address." -msgstr "没有电子邮件地址。" +msgstr "" #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." -msgstr "没有 id。" +msgstr "" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 #: actions/emailsettings.php:430 actions/emailsettings.php:437 #: actions/smssettings.php:505 actions/smssettings.php:506 #: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." -msgstr "没有发布用的电子邮件地址。" +msgstr "" #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." -msgstr "远程服务器没有昵称。" +msgstr "" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 #: actions/leavegroup.php:76 msgid "No nickname." -msgstr "没有昵称。" +msgstr "" #: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 #: ../actions/smssettings.php:229 actions/emailsettings.php:240 @@ -1627,40 +1569,40 @@ msgstr "没有昵称。" #: actions/emailsettings.php:378 actions/imsettings.php:351 #: actions/smssettings.php:370 msgid "No pending confirmation to cancel." -msgstr "没有可以取消的确认。" +msgstr "" #: ../actions/smssettings.php:176 actions/smssettings.php:184 #: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." -msgstr "没有电话号码。" +msgstr "" #: ../actions/finishremotesubscribe.php:72 #: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." -msgstr "服务器没有返回个人信息URL。" +msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 msgid "No registered email address for that user." -msgstr "用户没有注册电子邮件。" +msgstr "" #: ../actions/userauthorization.php:49 actions/userauthorization.php:55 #: actions/userauthorization.php:57 msgid "No request found!" -msgstr "没有找到请求!" +msgstr "" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 #: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" -msgstr "没有结果" +msgstr "" #: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 #: actions/avatarbynickname.php:64 msgid "No size." -msgstr "没有大小。" +msgstr "" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 @@ -1669,23 +1611,23 @@ msgstr "没有大小。" #: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 #: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." -msgstr "没有找到此ID的信息。" +msgstr "" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 #: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 #: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." -msgstr "没有找到此ID的信息。" +msgstr "" #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." -msgstr "没有这个 OpenID。" +msgstr "" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 #: actions/doc.php:69 msgid "No such document." -msgstr "没有这份文档。" +msgstr "" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 @@ -1693,17 +1635,17 @@ msgstr "没有这份文档。" #: lib/deleteaction.php:51 actions/deletenotice.php:52 #: actions/shownotice.php:92 msgid "No such notice." -msgstr "没有这份通告。" +msgstr "" #: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 #: actions/recoverpassword.php:62 msgid "No such recovery code." -msgstr "没有这个恢复码。" +msgstr "" #: ../actions/postnotice.php:56 actions/postnotice.php:57 #: actions/postnotice.php:60 msgid "No such subscription" -msgstr "没有这个订阅" +msgstr "" #: ../actions/all.php:34 ../actions/allrss.php:35 #: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 @@ -1740,27 +1682,27 @@ msgstr "没有这个订阅" #: lib/command.php:163 lib/command.php:311 lib/command.php:364 #: lib/command.php:411 lib/command.php:466 msgid "No such user." -msgstr "没有这个用户。" +msgstr "" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 #: actions/recoverpassword.php:272 msgid "No user with that email address or username." -msgstr "没有拥有这个用户名或电子邮件的用户。" +msgstr "" #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" -msgstr "不显示任何人!" +msgstr "" #: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 #: actions/recoverpassword.php:66 msgid "Not a recovery code." -msgstr "不是恢复码。" +msgstr "" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 #: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." -msgstr "不是已注册用户。" +msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 @@ -1770,28 +1712,28 @@ msgstr "不是已注册用户。" #: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 #: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." -msgstr "不支持的数据格式。" +msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" -msgstr "不是有效的 Jabber ID" +msgstr "" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 #: lib/openid.php:143 msgid "Not a valid OpenID." -msgstr "不是有效的 OpenID。" +msgstr "" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 #: actions/emailsettings.php:315 actions/emailsettings.php:322 #: actions/emailsettings.php:330 msgid "Not a valid email address" -msgstr "不是有效的电子邮件" +msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." -msgstr "不是有效的电子邮件。" +msgstr "" #: ../actions/profilesettings.php:91 ../actions/register.php:71 #: actions/profilesettings.php:206 actions/register.php:78 @@ -1803,45 +1745,45 @@ msgstr "不是有效的电子邮件。" #: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/register.php:204 msgid "Not a valid nickname." -msgstr "不是有效的昵称。" +msgstr "" #: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 #: actions/remotesubscribe.php:159 msgid "Not a valid profile URL (incorrect services)." -msgstr "不是有效的个人信息URL(不正确的服务)。" +msgstr "" #: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 #: actions/remotesubscribe.php:152 msgid "Not a valid profile URL (no XRDS defined)." -msgstr "不是有效的个人信息URL(未定义XRDS)。" +msgstr "" #: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 #: actions/remotesubscribe.php:143 msgid "Not a valid profile URL (no YADIS document)." -msgstr "不是有效的个人信息URL(没有YADIS数据)。" +msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 #: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 #: lib/imagefile.php:96 msgid "Not an image or corrupt file." -msgstr "不是图片文件或文件已损坏。" +msgstr "" #: ../actions/finishremotesubscribe.php:51 #: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 msgid "Not authorized." -msgstr "未认证。" +msgstr "" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" -msgstr "未预料的响应!" +msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 #: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 #: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" -msgstr "未找到" +msgstr "" #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 @@ -1861,28 +1803,28 @@ msgstr "未找到" #: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 #: actions/unsubscribe.php:52 msgid "Not logged in." -msgstr "未登录。" +msgstr "" #: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." -msgstr "未订阅!" +msgstr "" #: ../actions/opensearch.php:35 actions/opensearch.php:35 #: actions/opensearch.php:67 msgid "Notice Search" -msgstr "搜索通告" +msgstr "" #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 #, php-format msgid "Notice feed for %s" -msgstr "%s 的通告聚合" +msgstr "" #: ../actions/shownotice.php:39 actions/shownotice.php:39 #: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" -msgstr "通告没有关联个人信息" +msgstr "" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 @@ -1890,7 +1832,7 @@ msgstr "通告没有关联个人信息" #: actions/conversation.php:149 lib/facebookaction.php:572 #: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" -msgstr "通告" +msgstr "" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 #: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 @@ -1898,28 +1840,28 @@ msgstr "通告" #: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" -msgstr "带 %s 标签的通告" +msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" -msgstr "旧密码" +msgstr "" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 #: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" -msgstr "OpenID" +msgstr "" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 #: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" -msgstr "OpenID 帐号设置" +msgstr "" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 #: lib/openid.php:269 msgid "OpenID Auto-Submit" -msgstr "OpenID 自动提交" +msgstr "" #: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 @@ -1927,21 +1869,21 @@ msgstr "OpenID 自动提交" #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 #: actions/openidlogin.php:89 msgid "OpenID Login" -msgstr "OpenID 登录" +msgstr "" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 #: actions/openidlogin.php:111 msgid "OpenID URL" -msgstr "OpenID URL" +msgstr "" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 #: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." -msgstr "OpenID 认证已取消。" +msgstr "" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 @@ -1949,33 +1891,33 @@ msgstr "OpenID 认证已取消。" #: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" -msgstr "OpenID 认证失败:%s" +msgstr "" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 #: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" -msgstr "OpenID 失败:%s" +msgstr "" #: ../actions/openidsettings.php:144 actions/openidsettings.php:153 #: actions/openidsettings.php:231 msgid "OpenID removed." -msgstr "OpenID 已移除。" +msgstr "" #: ../actions/openidsettings.php:37 actions/openidsettings.php:37 #: actions/openidsettings.php:59 msgid "OpenID settings" -msgstr "OpenID 设置" +msgstr "" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 #: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." -msgstr "在邀请中加几句话(可选)。" +msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." -msgstr "部分上传。" +msgstr "" #: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 #: ../actions/register.php:153 ../lib/settingsaction.php:93 @@ -1988,19 +1930,19 @@ msgstr "部分上传。" #: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 #: lib/accountsettingsaction.php:114 msgid "Password" -msgstr "密码" +msgstr "" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 #: actions/recoverpassword.php:335 actions/recoverpassword.php:353 #: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." -msgstr "密码和确认不匹配。" +msgstr "" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 #: actions/recoverpassword.php:331 actions/recoverpassword.php:349 #: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." -msgstr "密码必须是 6 个字符或更多。" +msgstr "" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 @@ -2008,7 +1950,7 @@ msgstr "密码必须是 6 个字符或更多。" #: actions/recoverpassword.php:207 actions/recoverpassword.php:319 #: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" -msgstr "请求恢复密码" +msgstr "" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 @@ -2016,7 +1958,7 @@ msgstr "请求恢复密码" #: actions/passwordsettings.php:178 actions/recoverpassword.php:208 #: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." -msgstr "密码已保存。" +msgstr "" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 @@ -2024,37 +1966,37 @@ msgstr "密码已保存。" #: actions/passwordsettings.php:150 actions/register.php:220 #: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." -msgstr "密码不匹配。" +msgstr "" #: ../lib/searchaction.php:100 lib/searchaction.php:100 #: lib/searchgroupnav.php:80 msgid "People" -msgstr "用户" +msgstr "" #: ../actions/opensearch.php:33 actions/opensearch.php:33 #: actions/opensearch.php:64 msgid "People Search" -msgstr "搜索用户" +msgstr "" #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" -msgstr "搜索用户" +msgstr "" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 #: lib/personalgroupnav.php:99 msgid "Personal" -msgstr "个人" +msgstr "" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 #: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" -msgstr "个人消息" +msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 #: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" -msgstr "电话号码,不带标点或空格,包含地区代码" +msgstr "" #: ../actions/userauthorization.php:78 msgid "" @@ -2062,13 +2004,11 @@ msgid "" "user's notices. If you didn't just ask to subscribe to someone's notices, " "click \"Cancel\"." msgstr "" -"请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" -"告,请点击\"取消\"。" #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "当我的Jabber/GTalk状态改变时自动发布通告。" +msgstr "" #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 @@ -2079,7 +2019,7 @@ msgstr "当我的Jabber/GTalk状态改变时自动发布通告。" #: actions/emailsettings.php:153 actions/imsettings.php:139 #: actions/smssettings.php:169 msgid "Preferences" -msgstr "首选项" +msgstr "" #: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 #: ../actions/smssettings.php:163 actions/emailsettings.php:180 @@ -2090,18 +2030,18 @@ msgstr "首选项" #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." -msgstr "首选项已保存。" +msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:129 actions/profilesettings.php:130 #: actions/profilesettings.php:145 msgid "Preferred language" -msgstr "首选语言" +msgstr "" #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" -msgstr "隐私" +msgstr "" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 @@ -2109,74 +2049,74 @@ msgstr "隐私" #: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 #: classes/Notice.php:293 msgid "Problem saving notice." -msgstr "保存通告时出错。" +msgstr "" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 #: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 #: lib/accountsettingsaction.php:108 msgid "Profile" -msgstr "个人信息" +msgstr "" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 #: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" -msgstr "个人信息URL" +msgstr "" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 #: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" -msgstr "个人设置" +msgstr "" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 #: actions/updateprofile.php:58 msgid "Profile unknown" -msgstr "未知的帐号" +msgstr "" #: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 msgid "Public Stream Feed" -msgstr "公开的聚合" +msgstr "" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 #: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 #: actions/public.php:120 actions/public.php:131 msgid "Public timeline" -msgstr "公开的时间表" +msgstr "" #: ../actions/imsettings.php:79 actions/imsettings.php:80 #: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "公开Jabber/GTalk帐号的 MicroID。" +msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 #: actions/emailsettings.php:178 actions/emailsettings.php:183 #: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." -msgstr "公开电子邮件的 MicroID。" +msgstr "" #: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 #: actions/tag.php:76 msgid "Recent Tags" -msgstr "最近的标签" +msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" -msgstr "恢复" +msgstr "" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 #: actions/recoverpassword.php:198 actions/recoverpassword.php:206 #: actions/recoverpassword.php:209 msgid "Recover password" -msgstr "恢复密码" +msgstr "" #: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 #: actions/recoverpassword.php:73 msgid "Recovery code for unknown user." -msgstr "恢复码未知" +msgstr "" #: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 #: actions/register.php:152 actions/register.php:207 lib/util.php:328 @@ -2187,42 +2127,42 @@ msgstr "恢复码未知" #: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 #: lib/logingroupnav.php:85 msgid "Register" -msgstr "注册" +msgstr "" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 #: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 #: actions/register.php:129 msgid "Registration not allowed." -msgstr "不允许注册。" +msgstr "" #: ../actions/register.php:200 actions/register.php:214 #: actions/register.php:67 actions/register.php:106 msgid "Registration successful" -msgstr "注册成功。" +msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 msgid "Reject" -msgstr "拒绝" +msgstr "" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 #: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 #: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" -msgstr "记住登录状态" +msgstr "" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 #: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" -msgstr "没有匹配的远程个人信息" +msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 #: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" -msgstr "远程订阅" +msgstr "" #: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 #: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 @@ -2238,23 +2178,23 @@ msgstr "远程订阅" #: actions/emailsettings.php:140 actions/imsettings.php:108 #: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" -msgstr "移除" +msgstr "" #: ../actions/openidsettings.php:68 actions/openidsettings.php:69 #: actions/openidsettings.php:123 msgid "Remove OpenID" -msgstr "移除OpenID" +msgstr "" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." -msgstr "移除唯一的OpenID可能使您无法登陆!如果需要移除它,请先添加一个新的。" +msgstr "" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 msgid "Replies" -msgstr "回复" +msgstr "" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 @@ -2264,51 +2204,51 @@ msgstr "回复" #: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" -msgstr "%s 的回复" +msgstr "" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 #: actions/recoverpassword.php:223 actions/recoverpassword.php:240 #: actions/recoverpassword.php:243 msgid "Reset" -msgstr "重置" +msgstr "" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 #: actions/recoverpassword.php:197 actions/recoverpassword.php:205 #: actions/recoverpassword.php:208 msgid "Reset password" -msgstr "重置密码" +msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 #: actions/subscriptions.php:125 actions/subscriptions.php:184 #: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" -msgstr "SMS短信" +msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 #: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" -msgstr "SMS短信电话号码" +msgstr "" #: ../actions/smssettings.php:33 actions/smssettings.php:33 #: actions/smssettings.php:58 msgid "SMS Settings" -msgstr "SMS短信设置" +msgstr "" #: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" -msgstr "SMS短信确认" +msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" -msgstr "相同的密码" +msgstr "" #: ../actions/register.php:156 actions/register.php:170 #: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." -msgstr "相同的密码。此项必填。" +msgstr "" #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 @@ -2329,18 +2269,18 @@ msgstr "相同的密码。此项必填。" #: actions/profilesettings.php:167 actions/smssettings.php:181 #: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" -msgstr "保存" +msgstr "" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 #: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 #: lib/action.php:459 msgid "Search" -msgstr "搜索" +msgstr "" #: ../actions/noticesearch.php:80 actions/noticesearch.php:85 #: actions/noticesearch.php:127 msgid "Search Stream Feed" -msgstr "搜索聚合" +msgstr "" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 @@ -2349,8 +2289,6 @@ msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -"在 %%site.name%% 的通告内容中搜索。搜索条件至少包含 3 个字符,多个搜索条件用" -"空格分隔。" #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format @@ -2358,13 +2296,11 @@ msgid "" "Search for people on %%site.name%% by their name, location, or interests. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。搜索条件至少包" -"含 3 个字符,多个搜索条件用空格分隔。" #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" -msgstr "选择运营商" +msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -2373,84 +2309,84 @@ msgstr "选择运营商" #: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 #: lib/noticeform.php:208 msgid "Send" -msgstr "发送" +msgstr "" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 #: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." -msgstr "向这个电子邮件发信以发布新的通告。" +msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 #: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." -msgstr "如果有新订阅,通过电子邮件告诉我。" +msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." -msgstr "通过Jabber/GTalk发送通告。" +msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." -msgstr "通过SMS短信将通告发给我;我了解这样也许会给我带来不菲的开支。" +msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "如果我尚未订阅的用户回我消息,使用Jabber/GTalk通知我。" +msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" -msgstr "设置" +msgstr "" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 #: actions/profilesettings.php:319 actions/profilesettings.php:318 #: actions/profilesettings.php:344 msgid "Settings saved." -msgstr "设置已保存。" +msgstr "" #: ../actions/tag.php:60 actions/tag.php:60 msgid "Showing most popular tags from the last week" -msgstr "显示上周以来最流行的标签" +msgstr "" #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." -msgstr "其他人已经使用了这个OpenID。" +msgstr "" #: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 #: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 #: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 msgid "Something weird happened." -msgstr "发生了奇怪的错误……" +msgstr "" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 #: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." -msgstr "对不起,发布用的电子邮件无法使用。" +msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 #: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." -msgstr "对不起,这个发布用的电子邮件属于其他用户。" +msgstr "" #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" -msgstr "来源" +msgstr "" #: ../actions/showstream.php:296 actions/showstream.php:311 #: actions/showstream.php:476 actions/showgroup.php:375 #: actions/showgroup.php:421 lib/profileaction.php:173 #: actions/showgroup.php:429 msgid "Statistics" -msgstr "统计" +msgstr "" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 @@ -2458,7 +2394,7 @@ msgstr "统计" #: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 #: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." -msgstr "未找到已有的OpenID。" +msgstr "" #: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 @@ -2467,7 +2403,7 @@ msgstr "未找到已有的OpenID。" #: lib/subscribeform.php:139 actions/showstream.php:345 #: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" -msgstr "订阅" +msgstr "" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 @@ -2475,19 +2411,19 @@ msgstr "订阅" #: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 #: lib/subgroupnav.php:90 msgid "Subscribers" -msgstr "订阅者" +msgstr "" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 #: actions/userauthorization.php:338 actions/userauthorization.php:344 #: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" -msgstr "订阅已确认" +msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 #: actions/userauthorization.php:349 actions/userauthorization.php:355 #: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" -msgstr "订阅被拒绝" +msgstr "" #: ../actions/showstream.php:230 ../actions/showstream.php:307 #: ../actions/subscriptions.php:27 actions/showstream.php:240 @@ -2496,13 +2432,13 @@ msgstr "订阅被拒绝" #: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 #: lib/subgroupnav.php:82 msgid "Subscriptions" -msgstr "订阅" +msgstr "" #: ../actions/avatar.php:87 actions/profilesettings.php:324 #: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 #: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." -msgstr "上传文件时出错。" +msgstr "" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 @@ -2513,74 +2449,74 @@ msgstr "上传文件时出错。" #: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 #: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" -msgstr "标签" +msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 #: lib/designsettings.php:217 msgid "Text" -msgstr "文本" +msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 #: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" -msgstr "搜索文本" +msgstr "" #: ../actions/openidsettings.php:140 actions/openidsettings.php:149 #: actions/openidsettings.php:227 msgid "That OpenID does not belong to you." -msgstr "此OpenID属于他人。" +msgstr "" #: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 #: actions/confirmaddress.php:94 msgid "That address has already been confirmed." -msgstr "此地址已被确认。" +msgstr "" #: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 #: actions/confirmaddress.php:85 msgid "That confirmation code is not for you!" -msgstr "此确认码不适用!" +msgstr "" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 #: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." -msgstr "此电子邮件属于其他用户。" +msgstr "" #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." -msgstr "文件超出大小限制。" +msgstr "" #: ../actions/imsettings.php:170 actions/imsettings.php:178 #: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." -msgstr "您已登记此Jabber帐号。" +msgstr "" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 #: actions/emailsettings.php:318 actions/emailsettings.php:325 #: actions/emailsettings.php:333 msgid "That is already your email address." -msgstr "您已登记此电子邮件。" +msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 #: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." -msgstr "您已登记此电话号码。" +msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." -msgstr "这不是您的Jabber帐号。" +msgstr "" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 #: actions/emailsettings.php:397 actions/emailsettings.php:404 #: actions/emailsettings.php:412 msgid "That is not your email address." -msgstr "这是他人的电子邮件。" +msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 #: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." -msgstr "这是他人的电话号码。" +msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 @@ -2588,17 +2524,17 @@ msgstr "这是他人的电话号码。" #: actions/emailsettings.php:374 actions/emailsettings.php:382 #: actions/imsettings.php:355 msgid "That is the wrong IM address." -msgstr "即时通讯帐号错误。" +msgstr "" #: ../actions/smssettings.php:233 actions/smssettings.php:241 #: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." -msgstr "确认码错误。" +msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 #: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." -msgstr "这个电话号码属于另一个用户。" +msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 @@ -2608,19 +2544,19 @@ msgstr "这个电话号码属于另一个用户。" #: actions/twitapistatuses.php:251 lib/facebookaction.php:477 #: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." -msgstr "超出长度限制。不能超过 140 个字符。" +msgstr "" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 #: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 #: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." -msgstr "超出长度限制。不能超过 255 个字符。" +msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." -msgstr "地址 \"%s\" 已确认。" +msgstr "" #: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 #: ../actions/smssettings.php:274 actions/emailsettings.php:282 @@ -2630,7 +2566,7 @@ msgstr "地址 \"%s\" 已确认。" #: actions/emailsettings.php:431 actions/imsettings.php:408 #: actions/smssettings.php:425 msgid "The address was removed." -msgstr "地址被移除。" +msgstr "" #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 @@ -2639,7 +2575,6 @@ msgid "" "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -"订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 @@ -2647,45 +2582,45 @@ msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " "subscription." -msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" +msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." -msgstr "这些用户订阅了 %s 的通告。" +msgstr "" #: ../actions/subscribers.php:33 actions/subscribers.php:33 #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." -msgstr "这些用户订阅了您的通告。" +msgstr "" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 #: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." -msgstr "这是 %s 订阅的用户。" +msgstr "" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." -msgstr "这是您订阅的用户。" +msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" -msgstr "这些好友已注册,您已自动订阅这些用户。" +msgstr "" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." -msgstr "验证码超时,请重来。" +msgstr "" #: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." -msgstr "此表单会自动提交。如果没有,点击“提交”以转向 OpenID 提供者。" +msgstr "" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 @@ -2695,8 +2630,6 @@ msgid "" "to a local account. You can either create a new account, or connect with " "your existing account, if you have one." msgstr "" -"这是您第一次登陆 %s,我们需要将 OpenID 连接到这里的帐号。您可以创建新帐号,或" -"者连接到已有的帐号。" #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2706,7 +2639,7 @@ msgstr "" #: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 #: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." -msgstr "此方法接受POST或DELETE请求。" +msgstr "" #: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 #: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 @@ -2724,23 +2657,23 @@ msgstr "此方法接受POST或DELETE请求。" #: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 #: actions/apistatusesupdate.php:109 msgid "This method requires a POST." -msgstr "此方法接受POST请求。" +msgstr "" #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" -msgstr "这个页面不提供您想要的媒体类型" +msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 #: actions/profilesettings.php:154 msgid "Timezone" -msgstr "时区" +msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 #: actions/profilesettings.php:211 actions/profilesettings.php:212 #: actions/profilesettings.php:228 msgid "Timezone not selected." -msgstr "未选择时区。" +msgstr "" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 @@ -2750,15 +2683,12 @@ msgid "" "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"要订阅,你可以登录 (%%action.login%%), 或注册(%%action.register%%) 一个新帐" -"号。如果你已经有在另一个兼容的微博客的帐号(%%doc.openmublog%%), 请填入你资料" -"的互联网地址URL." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 #: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." -msgstr "必须提供两个用户帐号或昵称。" +msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2766,12 +2696,12 @@ msgstr "必须提供两个用户帐号或昵称。" #: actions/register.php:444 actions/profilesettings.php:117 #: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" -msgstr "您的主页、博客或在其他站点的URL" +msgstr "" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 #: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" -msgstr "您在其他兼容的微博客服务的个人信息URL" +msgstr "" #: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 #: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 @@ -2787,63 +2717,63 @@ msgstr "您在其他兼容的微博客服务的个人信息URL" #: actions/emailsettings.php:255 actions/grouplogo.php:319 #: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." -msgstr "未预料的表单提交。" +msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 #: actions/recoverpassword.php:323 actions/recoverpassword.php:341 #: actions/recoverpassword.php:344 msgid "Unexpected password reset." -msgstr "未预料的密码重置。" +msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 #: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" -msgstr "未知动作" +msgstr "" #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." -msgstr "此OMB协议版本无效。" +msgstr "" #: ../lib/util.php:269 lib/util.php:285 msgid "" "Unless otherwise specified, contents of this site are copyright by the " "contributors and available under the " -msgstr "除非另外说明,此站点的内容由贡献者版权所有,授权方式为" +msgstr "" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 #, php-format msgid "Unrecognized address type %s" -msgstr "不可识别的地址类型 %s" +msgstr "" #: ../actions/showstream.php:209 actions/showstream.php:219 #: lib/unsubscribeform.php:137 msgid "Unsubscribe" -msgstr "退订" +msgstr "" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 #: actions/updateprofile.php:51 msgid "Unsupported OMB version" -msgstr "不支持此OMB版本" +msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 #: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 #: lib/imagefile.php:105 msgid "Unsupported image file format." -msgstr "不支持这种图像格式。" +msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 #: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" -msgstr "使用SMS短信更新" +msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 #: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" -msgstr "使用即时通讯工具(IM)更新" +msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 #: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 @@ -2851,7 +2781,7 @@ msgstr "使用即时通讯工具(IM)更新" #: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" -msgstr "%2$s 上 %1$s 和好友的更新!" +msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 #: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 @@ -2860,14 +2790,14 @@ msgstr "%2$s 上 %1$s 和好友的更新!" #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" -msgstr "%2$s 上 %1$s 的更新!" +msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 #: actions/grouplogo.php:233 msgid "Upload" -msgstr "上传" +msgstr "" #: ../actions/avatar.php:27 msgid "" @@ -2876,30 +2806,28 @@ msgid "" "site license, also. Use a picture that belongs to you and that you want to " "share." msgstr "" -"在这里上传新的头像。上传后无法修改,请尽量使用正方形图片。图片必须使用与站点" -"相同的授权。请使用您希望分享的属于您的图片。" #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" -msgstr "上传个人信息头像" +msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." -msgstr "使用这个表单来邀请好友和同事加入。" +msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "只用于更新、通告或密码恢复" +msgstr "" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 msgid "User being listened to doesn't exist." -msgstr "要查看的用户不存在。" +msgstr "" #: ../actions/all.php:41 ../actions/avatarbynickname.php:48 #: ../actions/foaf.php:47 ../actions/replies.php:41 @@ -2922,28 +2850,28 @@ msgstr "要查看的用户不存在。" #: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 #: actions/apiusershow.php:108 msgid "User has no profile." -msgstr "用户没有个人信息。" +msgstr "" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 #: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" -msgstr "昵称" +msgstr "" #: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 msgid "User not found." -msgstr "未找到用户。" +msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:139 actions/profilesettings.php:140 #: actions/profilesettings.php:155 msgid "What timezone are you normally in?" -msgstr "您一般处于哪个时区?" +msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" -msgstr "怎么样,%s?" +msgstr "" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 @@ -2951,19 +2879,19 @@ msgstr "怎么样,%s?" #: actions/register.php:456 actions/profilesettings.php:134 #: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "你的位置,格式类似\"城市,省份,国家\"" +msgstr "" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 #: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" -msgstr "'%s' 图像格式错误" +msgstr "" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 #: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" -msgstr "图像大小 '%s' 错误" +msgstr "" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 @@ -2972,53 +2900,53 @@ msgstr "图像大小 '%s' 错误" #: actions/block.php:150 actions/deletenotice.php:116 #: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" -msgstr "是" +msgstr "" #: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" -msgstr "已登记此OpenID!" +msgstr "" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." -msgstr "您选择了永久删除通告。这样做是无法恢复的。" +msgstr "" #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" -msgstr "已登录!" +msgstr "" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 #: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" -msgstr "您已订阅这些用户:" +msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 #: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." -msgstr "您与此用户并非好友。" +msgstr "" #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" -msgstr "在这里修改密码。选择一个好密码!" +msgstr "" #: ../actions/register.php:135 actions/register.php:145 msgid "You can create a new account to start posting notices." -msgstr "请创建新帐号,开始发布通告。" +msgstr "" #: ../actions/smssettings.php:28 actions/smssettings.php:28 #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "您可以通过 %%site.name%% 的电子邮件接收SMS短信。" +msgstr "" #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." -msgstr "您可以点击\"移除\"按钮,移除帐号的 OpenID。" +msgstr "" #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 @@ -3027,14 +2955,12 @@ msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"您可以通过Jabber/GTalk [即时通讯工具](%%doc.im%%)发送和接受通告。在这里配置它" -"们。" #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." -msgstr "在这里更新个人信息,让大家对您了解得更多。" +msgstr "" #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3042,19 +2968,19 @@ msgstr "在这里更新个人信息,让大家对您了解得更多。" #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" -msgstr "您可以在这里订阅!" +msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 #: actions/finishopenidlogin.php:43 actions/register.php:149 #: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." -msgstr "您必须同意此授权方可注册。" +msgstr "" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 #: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" -msgstr "您未告知此个人信息" +msgstr "" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format @@ -3068,46 +2994,39 @@ msgid "" "Faithfully yours,\n" "%4$s" msgstr "" -"您的 %1$s 发布用地址已更新。\n" -"\n" -"发送邮件到 %2$s 来发布新消息。\n" -"\n" -"更多电子邮件的帮助请见 %3$s。\n" -"\n" -"为您效力的 %4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 #: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." -msgstr "您不能删除其他用户的状态。" +msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "您必须登录才能邀请其他人使用 %s" +msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" -msgstr "如果其他人接受邀请并注册,您将得到通知。谢谢您推动了社区发展壮大!" +msgstr "" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " -msgstr "您已得到确认。请输入新密码。" +msgstr "" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 #: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" -msgstr "您的OpenID URL" +msgstr "" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "您在此服务器的昵称,或注册邮箱。" +msgstr "" #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format @@ -3115,96 +3034,93 @@ msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -"[OpenID](%%doc.openid%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已" -"关联的 OpenID。" #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" -msgstr "几秒前" +msgstr "" #: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 #: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" -msgstr "%d 天前" +msgstr "" #: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 #: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" -msgstr "%d 小时前" +msgstr "" #: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 #: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" -msgstr "%d 分钟前" +msgstr "" #: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 #: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" -msgstr "%d 个月前" +msgstr "" #: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 #: lib/util.php:780 lib/util.php:826 msgid "about a day ago" -msgstr "一天前" +msgstr "" #: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 #: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" -msgstr "一分钟前" +msgstr "" #: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 #: lib/util.php:784 lib/util.php:830 msgid "about a month ago" -msgstr "一个月前" +msgstr "" #: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 #: lib/util.php:788 lib/util.php:834 msgid "about a year ago" -msgstr "一年前" +msgstr "" #: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 #: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" -msgstr "一小时前" +msgstr "" #: ../actions/showstream.php:423 ../lib/stream.php:132 #: actions/showstream.php:441 lib/stream.php:99 msgid "delete" -msgstr "删除" +msgstr "" #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 msgid "in reply to..." -msgstr "先前……" +msgstr "" #: ../actions/noticesearch.php:137 ../actions/showstream.php:415 #: ../lib/stream.php:124 actions/noticesearch.php:143 #: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 msgid "reply" -msgstr "回复" +msgstr "" #: ../actions/password.php:44 actions/profilesettings.php:183 #: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" -msgstr "相同的密码" +msgstr "" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 #: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 #: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 #: actions/twitapistatuses.php:575 msgid "unsupported file type" -msgstr "不支持这种类型的文件" +msgstr "" #: ../lib/util.php:1309 lib/util.php:1443 -#, fuzzy msgid "« After" -msgstr "« 之后" +msgstr "" #: actions/deletenotice.php:74 actions/disfavor.php:43 #: actions/emailsettings.php:127 actions/favor.php:45 @@ -3240,36 +3156,36 @@ msgstr "« 之后" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "会话标识有问题,请重试。" +msgstr "" #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" -msgstr "此通告未被收藏!" +msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 #: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." -msgstr "无法删除收藏。" +msgstr "" #: actions/disfavor.php:72 lib/favorform.php:140 msgid "Favor" -msgstr "收藏" +msgstr "" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "如果有人收藏我的通告,发邮件通知我。" +msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." -msgstr "如果收到私人信息,发邮件通知我。" +msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 #: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 #: actions/favor.php:79 msgid "This notice is already a favorite!" -msgstr "已收藏此通告!" +msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 @@ -3278,38 +3194,38 @@ msgstr "已收藏此通告!" #: actions/twitapifavorites.php:133 lib/command.php:145 #: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." -msgstr "无法创建收藏。" +msgstr "" #: actions/favor.php:70 msgid "Disfavor" -msgstr "取消收藏" +msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 #: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" -msgstr "%s 收藏的通告" +msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 #: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" -msgstr "%s 的收藏的聚合" +msgstr "" #: actions/inbox.php:28 actions/inbox.php:59 #, php-format msgid "Inbox for %s - page %d" -msgstr "%s 的收件箱 - 第 %d 页" +msgstr "" #: actions/inbox.php:30 actions/inbox.php:62 #, php-format msgid "Inbox for %s" -msgstr "%s 的收件箱" +msgstr "" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "这是您的收件箱,包含发给您的私人消息。" +msgstr "" #: actions/invite.php:178 actions/invite.php:213 #, php-format @@ -3317,33 +3233,31 @@ msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" "\n" msgstr "" -"%1$s 邀请您加入 %2$s (%3$s)。\n" -"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 msgid "Automatically login in the future; " -msgstr "保持登录状态;" +msgstr "" #: actions/login.php:122 actions/login.php:264 msgid "For security reasons, please re-enter your " -msgstr "由于安全原因,请重新输入" +msgstr "" #: actions/login.php:126 actions/login.php:268 msgid "Login with your username and password. " -msgstr "输入用户名和密码以登录。" +msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 #: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." -msgstr "超出长度限制。不能超过 140 个字符。" +msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 #: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." -msgstr "没有收件人。" +msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 @@ -3352,7 +3266,7 @@ msgstr "没有收件人。" #: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 #: lib/command.php:367 msgid "You can't send a message to this user." -msgstr "无法向此用户发送消息。" +msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 @@ -3362,63 +3276,63 @@ msgstr "无法向此用户发送消息。" #: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "不要向自己发送消息;跟自己悄悄说就得了。" +msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 #: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" -msgstr "未找到用户" +msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" -msgstr "新消息" +msgstr "" #: actions/noticesearch.php:95 actions/noticesearch.php:146 msgid "Notice without matching profile" -msgstr "找不到匹配的通告" +msgstr "" #: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[OpenID](%%doc.openid%%)允许您登录许多不同的站点" +msgstr "" #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " -msgstr "如果您希望添加OpenID," +msgstr "" #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "移除仅有的OpenID可能使您无法登陆!" +msgstr "" #: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " -msgstr "您可以移除一个OpenID" +msgstr "" #: actions/outbox.php:28 actions/outbox.php:58 #, php-format msgid "Outbox for %s - page %d" -msgstr "%s 的发件箱 - 第 %d 页" +msgstr "" #: actions/outbox.php:30 actions/outbox.php:61 #, php-format msgid "Outbox for %s" -msgstr "%s 的发件箱" +msgstr "" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "这是您的发件箱,包含您发送的私人消息。" +msgstr "" #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。" +msgstr "" #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " -msgstr "您可以在这里更新个人信息。" +msgstr "" #: actions/profilesettings.php:115 actions/remotesubscribe.php:320 #: actions/userauthorization.php:159 actions/userrss.php:76 @@ -3431,154 +3345,154 @@ msgstr "您可以在这里更新个人信息。" #: actions/userrss.php:103 actions/grouplogo.php:178 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" -msgstr "找不到匹配的用户。" +msgstr "" #: actions/recoverpassword.php:91 actions/recoverpassword.php:97 msgid "This confirmation code is too old. " -msgstr "验证码超时。" +msgstr "" #: actions/recoverpassword.php:141 actions/recoverpassword.php:152 msgid "If you've forgotten or lost your" -msgstr "如果您忘记或丢失了您的" +msgstr "" #: actions/recoverpassword.php:154 actions/recoverpassword.php:158 msgid "You've been identified. Enter a " -msgstr "您已得到确认。输入" +msgstr "" #: actions/recoverpassword.php:169 actions/recoverpassword.php:188 msgid "Your nickname on this server, " -msgstr "您在服务器上的昵称," +msgstr "" #: actions/recoverpassword.php:271 actions/recoverpassword.php:304 msgid "Instructions for recovering your password " -msgstr "恢复密码的步骤" +msgstr "" #: actions/recoverpassword.php:327 actions/recoverpassword.php:361 msgid "New password successfully saved. " -msgstr "新密码已保存。" +msgstr "" #: actions/register.php:95 actions/register.php:180 #: actions/passwordsettings.php:147 actions/register.php:217 #: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." -msgstr "密码必须包含 6 个或更多字符。" +msgstr "" #: actions/register.php:216 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " "want to..." -msgstr "祝贺你,%s!欢迎来到 %%%%site.name%%%%。在这里,您可以……" +msgstr "" #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " -msgstr "(您将立即收到一封电子邮件,含有" +msgstr "" #: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 #, php-format msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "要订阅,请先[登录](%%action.login%%)," +msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 #: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" -msgstr "%s 的收藏的聚合" +msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 #: actions/showfavorites.php:179 actions/showfavorites.php:209 #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." -msgstr "无法获取收藏的通告。" +msgstr "" #: actions/showmessage.php:33 actions/showmessage.php:81 msgid "No such message." -msgstr "未找到此消息。" +msgstr "" #: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." -msgstr "只有发送和接受双方可以阅读此消息。" +msgstr "" #: actions/showmessage.php:61 actions/showmessage.php:108 #, php-format msgid "Message to %1$s on %2$s" -msgstr "发送给 %1$s 的 %2$s 消息" +msgstr "" #: actions/showmessage.php:66 actions/showmessage.php:113 #, php-format msgid "Message from %1$s on %2$s" -msgstr "来自 %1$s 的 %2$s 消息" +msgstr "" #: actions/showstream.php:154 msgid "Send a message" -msgstr "发送消息" +msgstr "" #: actions/smssettings.php:312 actions/smssettings.php:464 #, php-format msgid "Mobile carrier for your phone. " -msgstr "手机的运营商。" +msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 #: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 #: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" -msgstr "发给 %s 的直接消息" +msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 #: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 #: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" -msgstr "发给 %s 的直接消息" +msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 #: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" -msgstr "您已发送的直接消息" +msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 #: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 #: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" -msgstr "%s 发送的直接消息" +msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 #: actions/twitapidirect_messages.php:146 #: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" -msgstr "消息没有正文!" +msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:159 #: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." -msgstr "未找到收件人。" +msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "无法向并非好友的用户发送直接消息。" +msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 #: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" -msgstr "%s 的收藏 / %s" +msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 #: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 #: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." -msgstr "%s 收藏了 %s 的 %s 通告。" +msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 @@ -3586,7 +3500,7 @@ msgstr "%s 收藏了 %s 的 %s 通告。" #: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" -msgstr "%s 收藏了您的通告" +msgstr "" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 @@ -3595,101 +3509,99 @@ msgid "" "%1$s just added your notice from %2$s as one of their favorites.\n" "\n" msgstr "" -"%1$s 收藏了您的 %2$s 通告。\n" -"\n" #: actions/twittersettings.php:27 msgid "" "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" +msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 msgid "Twitter settings" -msgstr "Twitter 设置" +msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 #: actions/twittersettings.php:106 msgid "Twitter Account" -msgstr "Twitter 帐号" +msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 #: actions/twittersettings.php:114 msgid "Current verified Twitter account." -msgstr "已验证的 Twitter 帐号。" +msgstr "" #: actions/twittersettings.php:63 msgid "Twitter Username" -msgstr "Twitter 用户名" +msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 #: actions/twittersettings.php:126 msgid "No spaces, please." -msgstr "请不要包含空格。" +msgstr "" #: actions/twittersettings.php:67 msgid "Twitter Password" -msgstr "Twitter 密码" +msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 #: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." -msgstr "自动将我的通告转发到 Twitter。" +msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 #: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." -msgstr "将这里的 \"@\" 回复发送到 Twitter。" +msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 #: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." -msgstr "在这里订阅 Twitter 好友。" +msgstr "" #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." -msgstr "用户名只能包含数字,大写和小写字母和下划线。不能超过 15 个字符。" +msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" -msgstr "不能验证 Twitter 帐号!" +msgstr "" #: actions/twittersettings.php:137 #, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" +msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 #: actions/twittersettings.php:352 actions/twittersettings.php:372 #: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" -msgstr "无法保存 Twitter 设置!" +msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 #: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." -msgstr "Twitter 设置已保存。" +msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 #: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." -msgstr "此 Twitter 帐号属于他人。" +msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 #: actions/twittersettings.php:403 actions/twittersettings.php:407 #: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." -msgstr "无法移除 Twitter 用户。" +msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 #: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." -msgstr "Twitter 帐号已移除。" +msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 @@ -3698,171 +3610,171 @@ msgstr "Twitter 帐号已移除。" #: actions/twittersettings.php:452 actions/twittersettings.php:463 #: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." -msgstr "无法保存 Twitter 首选项。" +msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 #: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." -msgstr "Twitter 首选项已保存。" +msgstr "" #: actions/userauthorization.php:84 actions/userauthorization.php:86 msgid "Please check these details to make sure " -msgstr "请检查详细信息" +msgstr "" #: actions/userauthorization.php:324 actions/userauthorization.php:340 msgid "The subscription has been authorized, but no " -msgstr "订阅已确认,但是" +msgstr "" #: actions/userauthorization.php:334 actions/userauthorization.php:351 msgid "The subscription has been rejected, but no " -msgstr "订阅已拒绝,但是" +msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" -msgstr "执行结果" +msgstr "" #: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" -msgstr "执行完毕" +msgstr "" #: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" -msgstr "执行失败" +msgstr "" #: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." -msgstr "对不起,这个命令还没有实现。" +msgstr "" #: classes/Command.php:96 classes/Command.php:113 #, php-format msgid "Subscriptions: %1$s\n" -msgstr "订阅:%1$s\n" +msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 #: classes/Command.php:276 lib/command.php:145 lib/command.php:276 #: lib/command.php:138 lib/command.php:269 lib/command.php:168 #: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" -msgstr "用户没有通告。" +msgstr "" #: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 #: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." -msgstr "通告被标记为收藏。" +msgstr "" #: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 #: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +msgstr "" #: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 #: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" -msgstr "全名:%s" +msgstr "" #: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 #: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" -msgstr "位置:%s" +msgstr "" #: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 #: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" -msgstr "主页:%s" +msgstr "" #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 #: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" -msgstr "关于:%s" +msgstr "" #: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 #: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" +msgstr "" #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 #: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 #: lib/command.php:375 #, php-format msgid "Direct message to %s sent" -msgstr "已向 %s 发送消息" +msgstr "" #: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 #: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." -msgstr "发送消息出错。" +msgstr "" #: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 #: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" -msgstr "指定要订阅的用户名" +msgstr "" #: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 #: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" -msgstr "订阅 %s" +msgstr "" #: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 #: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" -msgstr "指定要取消订阅的用户名" +msgstr "" #: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 #: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" -msgstr "取消订阅 %s" +msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 #: classes/Command.php:376 lib/command.php:353 lib/command.php:376 #: lib/command.php:346 lib/command.php:369 lib/command.php:548 #: lib/command.php:571 msgid "Command not yet implemented." -msgstr "命令尚未实现。" +msgstr "" #: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 #: lib/command.php:349 lib/command.php:551 msgid "Notification off." -msgstr "通告关闭。" +msgstr "" #: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 #: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." -msgstr "无法关闭通告。" +msgstr "" #: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 #: lib/command.php:372 lib/command.php:574 msgid "Notification on." -msgstr "通告开启。" +msgstr "" #: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 #: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." -msgstr "无法开启通告。" +msgstr "" #: classes/Command.php:344 classes/Command.php:392 msgid "Commands:\n" -msgstr "命令:\n" +msgstr "" #: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." -msgstr "无法添加信息。" +msgstr "" #: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." -msgstr "无法添加新URI的信息。" +msgstr "" #: lib/gallery.php:46 msgid "User without matching profile in system." -msgstr "系统中没有相应用户的信息。" +msgstr "" #: lib/mail.php:147 lib/mail.php:289 #, php-format @@ -3870,13 +3782,11 @@ msgid "" "You have a new posting address on %1$s.\n" "\n" msgstr "" -"您的新的发布用的地址是 %1$s。\n" -"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" -msgstr "%s 发送了新的私人信息" +msgstr "" #: lib/mail.php:253 lib/mail.php:512 #, php-format @@ -3884,90 +3794,88 @@ msgid "" "%1$s (%2$s) sent you a private message:\n" "\n" msgstr "" -"%1$s (%2$s) 发送了新的私人信息:\n" -"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." -msgstr "只有用户自己可以访问邮箱。" +msgstr "" #: lib/openid.php:195 lib/openid.php:203 msgid "This form should automatically submit itself. " -msgstr "此表单会自动提交。" +msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 #: lib/personalgroupnav.php:114 msgid "Favorites" -msgstr "收藏夹" +msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: actions/favoritesrss.php:110 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" -msgstr "%s 收藏的通告" +msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: lib/personalgroupnav.php:115 msgid "User" -msgstr "用户" +msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 #: lib/personalgroupnav.php:124 msgid "Inbox" -msgstr "收件箱" +msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 #: lib/personalgroupnav.php:125 msgid "Your incoming messages" -msgstr "您接收的消息" +msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 #: lib/personalgroupnav.php:129 msgid "Outbox" -msgstr "发件箱" +msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 #: lib/personalgroupnav.php:130 msgid "Your sent messages" -msgstr "您发送的消息" +msgstr "" #: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 msgid "Twitter" -msgstr "Twitter" +msgstr "" #: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 msgid "Twitter integration options" -msgstr "Twitter 整合选项" +msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 #: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 #: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" -msgstr "到" +msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 #: scripts/maildaemon.php:47 msgid "Could not parse message." -msgstr "无法解析消息。" +msgstr "" #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format msgid "%s and friends, page %d" -msgstr "%s 及好友" +msgstr "" #: actions/avatarsettings.php:76 msgid "You can upload your personal avatar." -msgstr "您可以在这里上传个人头像。" +msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 #: actions/grouplogo.php:251 msgid "Avatar settings" -msgstr "头像设置" +msgstr "" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 @@ -3975,7 +3883,7 @@ msgstr "头像设置" #: actions/grouplogo.php:204 actions/grouplogo.php:264 #: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" -msgstr "原来的" +msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 @@ -3983,13 +3891,13 @@ msgstr "原来的" #: actions/grouplogo.php:215 actions/grouplogo.php:276 #: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" -msgstr "预览" +msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 #: actions/avatarsettings.php:228 actions/grouplogo.php:291 #: actions/grouplogo.php:286 msgid "Crop" -msgstr "剪裁" +msgstr "" #: actions/avatarsettings.php:248 actions/deletenotice.php:133 #: actions/emailsettings.php:224 actions/grouplogo.php:307 @@ -4000,27 +3908,25 @@ msgstr "剪裁" #: actions/remotesubscribe.php:53 actions/smssettings.php:216 #: actions/subedit.php:38 actions/twittersettings.php:290 #: actions/userauthorization.php:39 -#, fuzzy msgid "There was a problem with your session token. " -msgstr "会话标识有问题,请重试。" +msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 #: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" -msgstr "请选择一块方形区域作为你的头像" +msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 #: actions/grouplogo.php:377 msgid "Lost our file data." -msgstr "文件数据丢失" +msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 -#, fuzzy msgid "Lost our file." -msgstr "没有这份通告。" +msgstr "" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 @@ -4028,73 +3934,66 @@ msgstr "没有这份通告。" #: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 #: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" -msgstr "未知文件类型" +msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 -#, fuzzy msgid "No profile specified." -msgstr "没有收件人。" +msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 #: actions/unblock.php:75 actions/groupblock.php:76 #: actions/groupunblock.php:76 actions/makeadmin.php:76 -#, fuzzy msgid "No profile with that ID." -msgstr "没有找到此ID的信息。" +msgstr "" #: actions/block.php:111 actions/block.php:134 -#, fuzzy msgid "Block user" -msgstr "阻止用户" +msgstr "" #: actions/block.php:129 -#, fuzzy msgid "Are you sure you want to block this user? " -msgstr "确定要阻止该用户吗?" +msgstr "" #: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." -msgstr "您已成功阻止该用户:" +msgstr "" #: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." -msgstr "保存阻止信息失败。" +msgstr "" #: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been " -msgstr "该地址 \"%s\" 已被" +msgstr "" #: actions/deletenotice.php:73 -#, fuzzy msgid "You are about to permanently delete a notice. " -msgstr "您将要永久删除这条通告。" +msgstr "" #: actions/disfavor.php:94 msgid "Add to favorites" -msgstr "加入收藏" +msgstr "" #: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" -msgstr "编辑 %s 组" +msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 #: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 #: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -#, fuzzy msgid "Inboxes must be enabled for groups to work" -msgstr "使用组功能前必须使能邮箱" +msgstr "" -# before login, the user don't even see any Chinese translation. Anyway. This may be good for the future. #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 #: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." -msgstr "您必须登录才能创建小组。" +msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 @@ -4103,9 +4002,8 @@ msgstr "您必须登录才能创建小组。" #: actions/groupdesignsettings.php:89 actions/showgroup.php:126 #: actions/editgroup.php:84 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy msgid "No nickname" -msgstr "没有昵称。" +msgstr "" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 @@ -4116,7 +4014,7 @@ msgstr "没有昵称。" #: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 #: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" -msgstr "没有这个组" +msgstr "" #: actions/editgroup.php:106 actions/editgroup.php:165 #: actions/grouplogo.php:107 actions/grouplogo.php:111 @@ -4125,548 +4023,509 @@ msgstr "没有这个组" #: actions/editgroup.php:168 actions/groupdesignsettings.php:104 #: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" -msgstr "只有admin才能编辑这个组" +msgstr "" #: actions/editgroup.php:157 actions/editgroup.php:159 #: actions/editgroup.php:154 msgid "Use this form to edit the group." -msgstr "使用这个表单来编辑组" +msgstr "" #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "昵称只能使用小写字母" +msgstr "" #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." -msgstr "描述过长(不能超过140字符)。" +msgstr "" #: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." -msgstr "无法更新组" +msgstr "" #: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." -msgstr "选项已保存。" +msgstr "" #: actions/emailsettings.php:107 actions/imsettings.php:108 #, php-format msgid "Awaiting confirmation on this address. " -msgstr "正在等待这个地址的确认。" +msgstr "" #: actions/emailsettings.php:139 actions/smssettings.php:150 -#, fuzzy msgid "Make a new email address for posting to; " -msgstr "新的电子邮件地址,用于发布 %s 信息" +msgstr "" #: actions/emailsettings.php:157 -#, fuzzy msgid "Send me email when someone " -msgstr "如果收到私人信息,发邮件通知我。" +msgstr "" #: actions/emailsettings.php:168 actions/emailsettings.php:173 #: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." -msgstr "允许朋友们呼叫并给我发送邮件。" +msgstr "" #: actions/emailsettings.php:321 -#, fuzzy msgid "That email address already belongs " -msgstr "此电子邮件属于其他用户。" +msgstr "" #: actions/emailsettings.php:343 -#, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" +msgstr "" #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" -msgstr "服务器报错 -- 无法找到该用户。" +msgstr "" #: actions/facebookhome.php:196 #, php-format msgid "If you would like the %s app to automatically update " -msgstr "如果你想使用 %s 程序自动更新" +msgstr "" #: actions/facebookhome.php:213 actions/facebooksettings.php:137 #, php-format msgid "Allow %s to update my Facebook status" -msgstr "允许 %s 更新我Facebook 的状态" +msgstr "" #: actions/facebookhome.php:218 actions/facebookhome.php:223 #: actions/facebookhome.php:217 msgid "Skip" -msgstr "跳过" +msgstr "" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 -#, fuzzy msgid "No notice content!" -msgstr "没有内容!" +msgstr "" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 #: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 #: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 #: lib/action.php:1053 msgid "Pagination" -msgstr "分页" +msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 #: lib/action.php:1062 -#, fuzzy msgid "After" -msgstr "« 之后" +msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 #: lib/action.php:1070 -#, fuzzy msgid "Before" -msgstr "之前 »" +msgstr "" #: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" -msgstr "感谢您邀请朋友使用 %s" +msgstr "" #: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -#, fuzzy msgid "Invitations have been sent to the following users:" -msgstr "已发送邀请给这些人:" +msgstr "" #: actions/facebookinvite.php:96 actions/facebookinvite.php:102 #: actions/facebookinvite.php:94 -#, fuzzy, php-format +#, php-format msgid "You have been invited to %s" -msgstr "您已被邀请到 %s" +msgstr "" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format msgid "Invite your friends to use %s" -msgstr "%s 好友的聚合" +msgstr "" #: actions/facebookinvite.php:113 actions/facebookinvite.php:126 #: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" -msgstr "已经正在使用 %s 的朋友:" +msgstr "" #: actions/facebookinvite.php:130 actions/facebookinvite.php:143 #: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" -msgstr "发出邀请" +msgstr "" #: actions/facebookremove.php:56 -#, fuzzy msgid "Couldn't remove Facebook user." -msgstr "无法移除 facebook用户。" +msgstr "" #: actions/facebooksettings.php:65 -#, fuzzy msgid "There was a problem saving your sync preferences!" -msgstr "会话标识有问题,请重试。" +msgstr "" #: actions/facebooksettings.php:67 msgid "Sync preferences saved." -msgstr "同步选项已保存。" +msgstr "" #: actions/facebooksettings.php:90 -#, fuzzy msgid "Automatically update my Facebook status with my notices." -msgstr "自动将我的通告转发到 Twitter。" +msgstr "" #: actions/facebooksettings.php:97 -#, fuzzy msgid "Send \"@\" replies to Facebook." -msgstr "将这里的 \"@\" 回复发送到 Twitter。" +msgstr "" #: actions/facebooksettings.php:106 -#, fuzzy msgid "Prefix" -msgstr "个人信息" +msgstr "" #: actions/facebooksettings.php:108 msgid "A string to prefix notices with." -msgstr "消息以一字符串为前缀。" +msgstr "" #: actions/facebooksettings.php:124 #, php-format msgid "If you would like %s to automatically update " -msgstr "如果你希望 %s 自动更新。" +msgstr "" #: actions/facebooksettings.php:147 msgid "Sync preferences" -msgstr "同步设置" +msgstr "" #: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -#, fuzzy msgid "Disfavor favorite" -msgstr "取消收藏" +msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 #: lib/popularnoticesection.php:87 -#, fuzzy msgid "Popular notices" -msgstr "没有这份通告。" +msgstr "" #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format msgid "Popular notices, page %d" -msgstr "没有这份通告。" +msgstr "" #: actions/favorited.php:79 -#, fuzzy msgid "The most popular notices on the site right now." -msgstr "显示上周以来最流行的标签" +msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 #: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 #: lib/featureduserssection.php:87 msgid "Featured users" -msgstr "推荐用户" +msgstr "" #: actions/featured.php:71 #, php-format msgid "Featured users, page %d" -msgstr "推荐用户,第 %d 页" +msgstr "" #: actions/featured.php:99 #, php-format msgid "A selection of some of the great users on %s" -msgstr "%s 优秀用户摘选" +msgstr "" #: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." -msgstr "那个用户阻止了你的订阅。" +msgstr "" #: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" -msgstr "没有ID" +msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 #: actions/grouplogo.php:144 actions/grouplogo.php:197 #: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" -msgstr "组logo" +msgstr "" #: actions/grouplogo.php:149 msgid "You can upload a logo image for your group." -msgstr "你可以给你的组上载一个logo图。" +msgstr "" #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 msgid "Logo updated." -msgstr "logo已更新。" +msgstr "" #: actions/grouplogo.php:450 actions/grouplogo.php:403 #: actions/grouplogo.php:398 -#, fuzzy msgid "Failed updating logo." -msgstr "更新logo失败。" +msgstr "" #: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format msgid "%s group members" -msgstr "%s 组成员" +msgstr "" #: actions/groupmembers.php:96 #, php-format msgid "%s group members, page %d" -msgstr "%s 组成员, 第 %d 页" +msgstr "" #: actions/groupmembers.php:111 msgid "A list of the users in this group." -msgstr "该组成员列表。" +msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 #: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 #: lib/subgroupnav.php:98 msgid "Groups" -msgstr "组" +msgstr "" #: actions/groups.php:64 #, php-format msgid "Groups, page %d" -msgstr "组,第 %d 页" +msgstr "" #: actions/groups.php:90 -#, fuzzy, php-format +#, php-format msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "%%%%site.name%%%% 组你可以查找并联络" +msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy msgid "Create a new group" -msgstr "创建新组" +msgstr "" #: actions/groupsearch.php:57 -#, fuzzy, php-format +#, php-format msgid "" "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。" +msgstr "" #: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" -msgstr "组检索" +msgstr "" #: actions/imsettings.php:70 -#, fuzzy msgid "You can send and receive notices through " -msgstr "收发可以通过" +msgstr "" #: actions/imsettings.php:120 #, php-format msgid "Jabber or GTalk address, " -msgstr "Jabber 或者 GTalk 地址, " +msgstr "" #: actions/imsettings.php:147 -#, fuzzy msgid "Send me replies through Jabber/GTalk " -msgstr "通过Jabber/GTalk发送通告。" +msgstr "" #: actions/imsettings.php:321 #, php-format msgid "A confirmation code was sent " -msgstr "确认消息已经发送" +msgstr "" #: actions/joingroup.php:65 actions/joingroup.php:60 -#, fuzzy msgid "You must be logged in to join a group." -msgstr "您必须登录才能加入组。" +msgstr "" #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" -msgstr "您已经是该组成员" +msgstr "" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format msgid "Could not join user %s to group %s" -msgstr "无法把 %s 用户添加到 %s 组" +msgstr "" #: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, fuzzy, php-format +#, php-format msgid "%s joined group %s" -msgstr "%s 加入 %s 组" +msgstr "" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "邮箱必须使能组才能工作。" +msgstr "" #: actions/leavegroup.php:65 actions/leavegroup.php:60 -#, fuzzy msgid "You must be logged in to leave a group." -msgstr "您必须登录才能邀请其他人使用 %s" +msgstr "" #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 #: lib/command.php:212 lib/command.php:263 msgid "No such group." -msgstr "没有这个组。" +msgstr "" #: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -#, fuzzy msgid "You are not a member of that group." -msgstr "您未告知此个人信息" +msgstr "" #: actions/leavegroup.php:100 -#, fuzzy msgid "You may not leave a group while you are its administrator." -msgstr "您不能删除其他用户的状态。" +msgstr "" #: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 -#, fuzzy msgid "Could not find membership record." -msgstr "无法更新用户记录。" +msgstr "" #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %s to group %s" -msgstr "无法订阅用户:未找到。" +msgstr "" #: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" -msgstr "%s 离开群 %s" +msgstr "" #: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 #: actions/login.php:216 msgid "Login to site" -msgstr "登录" +msgstr "" #: actions/microsummary.php:69 msgid "No current status" -msgstr "没有当前状态" +msgstr "" #: actions/newgroup.php:53 msgid "New group" -msgstr "新组" +msgstr "" #: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." -msgstr "使用此表格创建组。" +msgstr "" #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." -msgstr "无法创建组。" +msgstr "" #: actions/newgroup.php:191 actions/newgroup.php:229 #: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy msgid "Could not set group membership." -msgstr "无法删除订阅。" +msgstr "" #: actions/newmessage.php:119 actions/newnotice.php:132 -#, fuzzy msgid "That's too long. " -msgstr "文件超出大小限制。" +msgstr "" #: actions/newmessage.php:134 -#, fuzzy msgid "Don't send a message to yourself; " -msgstr "无法向此用户发送消息。" +msgstr "" #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" -msgstr "消息已发布。" +msgstr "" #: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 #: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 #: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" -msgstr "Ajax错误" +msgstr "" #: actions/nudge.php:85 msgid "" "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "此用户不允许振铃呼叫或者还没有确认或设置TA的电子邮件。" +msgstr "" #: actions/nudge.php:94 msgid "Nudge sent" -msgstr "振铃呼叫发出。" +msgstr "" #: actions/nudge.php:97 msgid "Nudge sent!" -msgstr "振铃呼叫已经发出!" +msgstr "" #: actions/openidlogin.php:97 actions/openidlogin.php:106 -#, fuzzy msgid "OpenID login" -msgstr "OpenID 登录" +msgstr "" #: actions/openidsettings.php:128 -#, fuzzy msgid "Removing your only OpenID " -msgstr "移除OpenID" +msgstr "" #: actions/othersettings.php:60 -#, fuzzy msgid "Other Settings" -msgstr "Twitter 设置" +msgstr "" #: actions/othersettings.php:71 msgid "Manage various other options." -msgstr "管理其他选项。" +msgstr "" #: actions/othersettings.php:93 msgid "URL Auto-shortening" -msgstr "URL自动缩短" +msgstr "" #: actions/othersettings.php:112 msgid "Service" -msgstr "服务" +msgstr "" #: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." -msgstr "要使用的自动缩短服务。" +msgstr "" #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 -#, fuzzy msgid "URL shortening service is too long (max 50 chars)." -msgstr "URL缩短服务超长(最多50个字符)。" +msgstr "" #: actions/passwordsettings.php:69 -#, fuzzy msgid "Change your password." -msgstr "修改密码" +msgstr "" #: actions/passwordsettings.php:89 actions/recoverpassword.php:228 #: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -#, fuzzy msgid "Password change" -msgstr "密码已保存。" +msgstr "" #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s" -msgstr "不是有效的电子邮件" +msgstr "" #: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" -msgstr "用户自加标签 %s - 第 %d 页" +msgstr "" #: actions/peopletag.php:91 #, php-format msgid "These are users who have tagged themselves \"%s\" " -msgstr "这些是自我标识为 \"%s\" 的用户" +msgstr "" #: actions/profilesettings.php:91 actions/profilesettings.php:99 -#, fuzzy msgid "Profile information" -msgstr "未知的帐号" +msgstr "" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "你的标签 (字母letters, 数字numbers, -, ., 和 _), 以逗号或空格分隔" +msgstr "" #: actions/profilesettings.php:144 -#, fuzzy msgid "Automatically subscribe to whoever " -msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" +msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"" -msgstr "主页'%s'不正确" +msgstr "" #: actions/profilesettings.php:311 actions/profilesettings.php:310 #: actions/profilesettings.php:336 -#, fuzzy msgid "Couldn't save tags." -msgstr "无法保存个人信息。" +msgstr "" #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format msgid "Public timeline, page %d" -msgstr "公开的时间表" +msgstr "" #: actions/public.php:173 actions/public.php:184 actions/public.php:210 #: actions/public.php:92 -#, fuzzy msgid "Could not retrieve public stream." -msgstr "无法获取收藏的通告。" +msgstr "" #: actions/public.php:220 #, php-format @@ -4674,108 +4533,96 @@ msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service " msgstr "" -"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) 服务" #: actions/publictagcloud.php:57 -#, fuzzy msgid "Public tag cloud" -msgstr "公开的聚合" +msgstr "" #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " -msgstr "这些是最近的 %s 流行标签 " +msgstr "" #: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" -msgstr "标签云聚集" +msgstr "" #: actions/register.php:139 actions/register.php:349 actions/register.php:79 #: actions/register.php:177 actions/register.php:394 actions/register.php:183 #: actions/register.php:398 msgid "Sorry, only invited people can register." -msgstr "对不起,请邀请那些能注册的人。" +msgstr "" #: actions/register.php:149 -#, fuzzy msgid "You can't register if you don't " -msgstr "您必须同意此授权方可注册。" +msgstr "" #: actions/register.php:286 msgid "With this form you can create " -msgstr "使用这个表格你可以创建" +msgstr "" #: actions/register.php:368 -#, fuzzy msgid "1-64 lowercase letters or numbers, " -msgstr "1 到 64 个小写字母或数字,不包含标点及空白" +msgstr "" #: actions/register.php:382 actions/register.php:386 -#, fuzzy msgid "Used only for updates, announcements, " -msgstr "只用于更新、通告或密码恢复" +msgstr "" #: actions/register.php:398 -#, fuzzy msgid "URL of your homepage, blog, " -msgstr "您的主页、博客或在其他站点的URL" +msgstr "" #: actions/register.php:404 -#, fuzzy msgid "Describe yourself and your " -msgstr "用不超过140个字符描述您自己和您的爱好" +msgstr "" #: actions/register.php:410 -#, fuzzy msgid "Where you are, like \"City, " -msgstr "你的位置,格式类似\"城市,省份,国家\"" +msgstr "" #: actions/register.php:432 -#, fuzzy msgid " except this private data: password, " -msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" +msgstr "" #: actions/register.php:471 -#, fuzzy, php-format +#, php-format msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "祝贺你,%s!欢迎来到 %%%%site.name%%%%。在这里,您可以……" +msgstr "" #: actions/register.php:495 -#, fuzzy msgid "(You should receive a message by email " -msgstr "(您将立即收到一封电子邮件,含有" +msgstr "" #: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." -msgstr "那是一个本地资料!需要登录才能订阅。" +msgstr "" #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format msgid "Replies to %s, page %d" -msgstr "%s 的回复,第 % 页" +msgstr "" #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format msgid "%s favorite notices, page %d" -msgstr "%s 收藏的通告" +msgstr "" #: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" -msgstr "%s 组" +msgstr "" #: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" -msgstr "%s 组, 第 %d 页" +msgstr "" #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 -#, fuzzy msgid "Group profile" -msgstr "组资料" +msgstr "" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 @@ -4786,7 +4633,7 @@ msgstr "组资料" #: actions/showstream.php:295 actions/userauthorization.php:167 #: lib/profilelist.php:230 msgid "URL" -msgstr "URL 互联网地址" +msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 @@ -4796,27 +4643,25 @@ msgstr "URL 互联网地址" #: lib/profilelist.php:212 actions/showgroup.php:274 #: actions/showstream.php:312 actions/userauthorization.php:179 #: lib/profilelist.php:245 -#, fuzzy msgid "Note" -msgstr "通告" +msgstr "" #: actions/showgroup.php:270 actions/showgroup.php:272 #: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" -msgstr "组动作" +msgstr "" #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group" -msgstr "%s 的通告聚合" +msgstr "" #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 #: actions/showgroup.php:430 actions/showgroup.php:381 #: actions/showgroup.php:438 -#, fuzzy msgid "Members" -msgstr "注册于" +msgstr "" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 @@ -4825,12 +4670,12 @@ msgstr "注册于" #: lib/profileaction.php:148 lib/profileaction.php:226 #: actions/showgroup.php:386 msgid "(None)" -msgstr "(没有)" +msgstr "" #: actions/showgroup.php:370 actions/showgroup.php:350 #: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" -msgstr "所有成员" +msgstr "" #: actions/showgroup.php:378 #, php-format @@ -4838,63 +4683,54 @@ msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showmessage.php:98 -#, fuzzy msgid "Only the sender and recipient " -msgstr "只有发送和接受双方可以阅读此消息。" +msgstr "" #: actions/showstream.php:73 actions/showstream.php:78 -#, fuzzy, php-format +#, php-format msgid "%s, page %d" -msgstr "%s 的收件箱 - 第 %d 页" +msgstr "" #: actions/showstream.php:143 -#, fuzzy msgid "'s profile" -msgstr "个人信息" +msgstr "" #: actions/showstream.php:236 actions/tagother.php:77 #: actions/showstream.php:220 actions/showstream.php:185 #: actions/showstream.php:193 -#, fuzzy msgid "User profile" -msgstr "用户没有个人信息。" +msgstr "" #: actions/showstream.php:240 actions/tagother.php:81 #: actions/showstream.php:224 actions/showstream.php:189 #: actions/showstream.php:220 msgid "Photo" -msgstr "相片" +msgstr "" #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 -#, fuzzy msgid "User actions" -msgstr "未知动作" +msgstr "" #: actions/showstream.php:342 actions/showstream.php:307 #: actions/showstream.php:390 -#, fuzzy msgid "Send a direct message to this user" -msgstr "无法向此用户发送消息。" +msgstr "" #: actions/showstream.php:343 actions/showstream.php:308 #: actions/showstream.php:391 -#, fuzzy msgid "Message" -msgstr "新消息" +msgstr "" #: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy msgid "All subscribers" -msgstr "订阅者" +msgstr "" #: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" -msgstr "所有组" +msgstr "" #: actions/showstream.php:542 #, php-format @@ -4902,512 +4738,459 @@ msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " msgstr "" -"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/smssettings.php:128 -#, fuzzy msgid "Phone number, no punctuation or spaces, " -msgstr "电话号码,不带标点或空格,包含地区代码" +msgstr "" #: actions/smssettings.php:162 -#, fuzzy msgid "Send me notices through SMS; " -msgstr "通过Jabber/GTalk发送通告。" +msgstr "" #: actions/smssettings.php:335 -#, fuzzy msgid "A confirmation code was sent to the phone number you added. " -msgstr "等待确认此电话号码。" +msgstr "" #: actions/smssettings.php:453 actions/smssettings.php:465 -#, fuzzy msgid "Mobile carrier" -msgstr "选择运营商" +msgstr "" #: actions/subedit.php:70 -#, fuzzy msgid "You are not subscribed to that profile." -msgstr "您未告知此个人信息" +msgstr "" #: actions/subedit.php:83 -#, fuzzy msgid "Could not save subscription." -msgstr "无法删除订阅。" +msgstr "" #: actions/subscribe.php:55 -#, fuzzy msgid "Not a local user." -msgstr "没有这个用户。" +msgstr "" #: actions/subscribe.php:69 -#, fuzzy msgid "Subscribed" -msgstr "订阅" +msgstr "" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format msgid "%s subscribers" -msgstr "订阅者" +msgstr "" #: actions/subscribers.php:52 #, php-format msgid "%s subscribers, page %d" -msgstr "%s 订阅者, 第 %d 页" +msgstr "" #: actions/subscribers.php:63 -#, fuzzy msgid "These are the people who listen to " -msgstr "这些用户订阅了 %s 的通告。" +msgstr "" #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format msgid "These are the people who " -msgstr "这些用户订阅了 %s 的通告。" +msgstr "" #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format msgid "%s subscriptions" -msgstr "所有订阅" +msgstr "" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format msgid "%s subscriptions, page %d" -msgstr "所有订阅" +msgstr "" #: actions/subscriptions.php:65 -#, fuzzy msgid "These are the people whose notices " -msgstr "这是 %s 订阅的用户。" +msgstr "" #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format msgid "These are the people whose " -msgstr "这些用户订阅了 %s 的通告。" +msgstr "" #: actions/subscriptions.php:122 actions/subscriptions.php:124 #: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy msgid "Jabber" -msgstr "没有 Jabber ID。" +msgstr "" #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format msgid "Notices tagged with %s, page %d" -msgstr "带 %s 标签的通告" +msgstr "" #: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" -msgstr "有 \"%s\" 标签的消息,最近的排序在前" +msgstr "" #: actions/tagother.php:33 -#, fuzzy msgid "Not logged in" -msgstr "未登录。" +msgstr "" #: actions/tagother.php:39 -#, fuzzy msgid "No id argument." -msgstr "没有这份文档。" +msgstr "" #: actions/tagother.php:65 -#, fuzzy, php-format +#, php-format msgid "Tag %s" -msgstr "标签" +msgstr "" #: actions/tagother.php:141 -#, fuzzy msgid "Tag user" -msgstr "标签" +msgstr "" #: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" msgstr "" -"给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" #: actions/tagother.php:164 -#, fuzzy msgid "There was a problem with your session token." -msgstr "会话标识有问题,请重试。" +msgstr "" #: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "你只能给你订阅的人或订阅你的人加标签。" +msgstr "" #: actions/tagother.php:198 actions/tagother.php:200 -#, fuzzy msgid "Could not save tags." -msgstr "无法保存头像" +msgstr "" #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "使用这个表格给你的关注者或你的订阅加注标签。" +msgstr "" #: actions/tagrss.php:35 -#, fuzzy msgid "No such tag." -msgstr "未找到此消息。" +msgstr "" #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format msgid "Microblog tagged with %s" -msgstr "带 %s 标签的通告" +msgstr "" #: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 #: actions/apiblockcreate.php:108 msgid "Block user failed." -msgstr "阻止用户失败。" +msgstr "" #: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 #: actions/apiblockdestroy.php:107 msgid "Unblock user failed." -msgstr "取消阻止用户失败。" +msgstr "" #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 -#, fuzzy msgid "Not found." -msgstr "未找到" +msgstr "" #: actions/twittersettings.php:71 -#, fuzzy msgid "Add your Twitter account to automatically send " -msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" +msgstr "" #: actions/twittersettings.php:119 actions/twittersettings.php:122 -#, fuzzy msgid "Twitter user name" -msgstr "Twitter 用户名" +msgstr "" #: actions/twittersettings.php:126 actions/twittersettings.php:129 -#, fuzzy msgid "Twitter password" -msgstr "Twitter 密码" +msgstr "" #: actions/twittersettings.php:228 actions/twittersettings.php:232 #: actions/twittersettings.php:248 -#, fuzzy msgid "Twitter Friends" -msgstr "Twitter 设置" +msgstr "" #: actions/twittersettings.php:327 msgid "Username must have only numbers, " -msgstr "用户名只能有数字," +msgstr "" #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format msgid "Unable to retrieve account information " -msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" +msgstr "" #: actions/unblock.php:108 actions/groupunblock.php:128 -#, fuzzy msgid "Error removing the block." -msgstr "保存用户时出错。" +msgstr "" #: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy msgid "No profile id in request." -msgstr "服务器没有返回个人信息URL。" +msgstr "" #: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -#, fuzzy msgid "No profile with that id." -msgstr "没有找到此ID的信息。" +msgstr "" #: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -#, fuzzy msgid "Unsubscribed" -msgstr "退订" +msgstr "" #: actions/usergroups.php:63 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" -msgstr "%s 群组" +msgstr "" #: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" -msgstr "%s 群组, 第 %d 页" +msgstr "" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 -#, fuzzy msgid "Problem saving notice. Unknown user." -msgstr "保存通告时出错。" +msgstr "" #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" +msgstr "" #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 msgid "You are banned from posting notices on this site." -msgstr "在这个网站你被禁止发布消息。" +msgstr "" #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" -msgstr "上载一个头像。" +msgstr "" #: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 #: lib/accountsettingsaction.php:123 msgid "Other" -msgstr "其他" +msgstr "" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 #: lib/accountsettingsaction.php:124 msgid "Other options" -msgstr "其他选项" +msgstr "" #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format +#, php-format msgid "%s - %s" -msgstr "%s (%s)" +msgstr "" #: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" -msgstr "无标题页" +msgstr "" #: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" -msgstr "主站导航" +msgstr "" #: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" -msgstr "个人资料及朋友年表" +msgstr "" #: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" -msgstr "检索人或文字" +msgstr "" #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" -msgstr "帐号" +msgstr "" #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy msgid "Change your email, avatar, password, profile" -msgstr "修改资料" +msgstr "" #: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" -msgstr "与IM,手机短信,Twitter的连接" +msgstr "" #: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" -msgstr "登出本站" +msgstr "" #: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" -msgstr "登入本站" +msgstr "" #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy msgid "Create an account" -msgstr "创建新帐号" +msgstr "" #: lib/action.php:341 lib/action.php:418 -#, fuzzy msgid "Login with OpenID" -msgstr "没有这个 OpenID。" +msgstr "" #: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy msgid "Help me!" -msgstr "帮助" +msgstr "" #: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy msgid "Site notice" -msgstr "新通告" +msgstr "" #: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" -msgstr "本地显示" +msgstr "" #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy msgid "Page notice" -msgstr "新通告" +msgstr "" #: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -#, fuzzy msgid "Secondary site navigation" -msgstr "次项站导航" +msgstr "" #: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 #: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" -msgstr "StatusNet软件注册证" +msgstr "" #: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " -msgstr "全部" +msgstr "" #: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." -msgstr "注册证" +msgstr "" #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 -#, fuzzy msgid "Block this user" -msgstr "阻止该用户" +msgstr "" #: lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 msgid "Block" -msgstr "阻止" +msgstr "" #: lib/disfavorform.php:114 lib/disfavorform.php:140 -#, fuzzy msgid "Disfavor this notice" -msgstr "%s 收藏的通告" +msgstr "" #: lib/facebookaction.php:268 #, php-format msgid "To use the %s Facebook Application you need to login " -msgstr "你需要登录方能使用%sFacebook程序" +msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 -#, fuzzy msgid " a new account." -msgstr "一个新帐号" +msgstr "" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 #: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 #: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" -msgstr "已发布" +msgstr "" #: lib/favorform.php:114 lib/favorform.php:140 -#, fuzzy msgid "Favor this notice" -msgstr "%s 收藏的通告" +msgstr "" #: lib/feedlist.php:64 msgid "Export data" -msgstr "导出数据" +msgstr "" #: lib/galleryaction.php:121 -#, fuzzy msgid "Filter tags" -msgstr "%s 标签的聚合" +msgstr "" #: lib/galleryaction.php:131 msgid "All" -msgstr "全部" +msgstr "" #: lib/galleryaction.php:137 lib/galleryaction.php:138 #: lib/galleryaction.php:140 -#, fuzzy msgid "Tag" -msgstr "标签" +msgstr "" #: lib/galleryaction.php:138 lib/galleryaction.php:139 #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" -msgstr "选择标签缩小清单" +msgstr "" #: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" -msgstr "执行" +msgstr "" #: lib/groupeditform.php:148 lib/groupeditform.php:163 -#, fuzzy msgid "URL of the homepage or blog of the group or topic" -msgstr "您的主页、博客或在其他站点的URL" +msgstr "" #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 -#, fuzzy msgid "Description" -msgstr "描述" +msgstr "" #: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy msgid "Describe the group or topic in 140 chars" -msgstr "用不超过140个字符描述您自己和您的爱好" +msgstr "" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -#, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "你的位置,格式类似\"城市,省份,国家\"" +msgstr "" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" -msgstr "组" +msgstr "" #: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" -msgstr "admin管理员" +msgstr "" #: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" -msgstr "编辑 %s群选项" +msgstr "" #: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy msgid "Logo" -msgstr "Logo图标" +msgstr "" #: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" -msgstr "添加或编辑 %s 图标" +msgstr "" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" -msgstr "人气最旺的群" +msgstr "" #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" -msgstr "消息最多的群" +msgstr "" #: lib/grouptagcloudsection.php:56 #, php-format msgid "Tags in %s group's notices" -msgstr "这个组所发布的消息的标签" +msgstr "" #: lib/htmloutputter.php:104 -#, fuzzy msgid "This page is not available in a " -msgstr "这个页面不提供您想要的媒体类型" +msgstr "" #: lib/joinform.php:114 -#, fuzzy msgid "Join" -msgstr "加入" +msgstr "" #: lib/leaveform.php:114 -#, fuzzy msgid "Leave" -msgstr "保存" +msgstr "" #: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy msgid "Login with a username and password" -msgstr "输入用户名和密码以登录。" +msgstr "" #: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy msgid "Sign up for a new account" -msgstr "创建新帐号" +msgstr "" #: lib/logingroupnav.php:82 msgid "Login or register with OpenID" -msgstr "使用openID登录或注册" +msgstr "" #: lib/mail.php:175 #, php-format @@ -5415,23 +5198,21 @@ msgid "" "Hey, %s.\n" "\n" msgstr "" -"你好,%s.\n" -"\n" #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format msgid "%1$s is now listening to " -msgstr "%1$s 开始关注您的 %2$s 信息。" +msgstr "" #: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format +#, php-format msgid "Location: %s\n" -msgstr "位置:%s\n" +msgstr "" #: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format +#, php-format msgid "Homepage: %s\n" -msgstr "主页:%s\n" +msgstr "" #: lib/mail.php:258 lib/mail.php:257 #, php-format @@ -5439,223 +5220,199 @@ msgid "" "Bio: %s\n" "\n" msgstr "" -"自传Bio: %s\n" -"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" -msgstr "%s 振铃呼叫你" +msgstr "" #: lib/mail.php:465 -#, fuzzy, php-format +#, php-format msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) 发送了新的私人信息:" +msgstr "" #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format msgid "%1$s just added your notice from %2$s" -msgstr "%1$s 收藏了您的 %2$s 通告" +msgstr "" #: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 #: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -#, fuzzy msgid "From" -msgstr "从 " +msgstr "" #: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -#, fuzzy msgid "Send a direct notice" -msgstr "删除通告" +msgstr "" #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy msgid "Send a notice" -msgstr "发送消息" +msgstr "" #: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 #: lib/noticeform.php:173 -#, fuzzy msgid "Available characters" -msgstr "6 个或更多字符" +msgstr "" #: lib/noticelist.php:426 lib/noticelist.php:429 -#, fuzzy msgid "in reply to" -msgstr "先前……" +msgstr "" #: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 #: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 #: lib/noticelist.php:498 -#, fuzzy msgid "Reply to this notice" -msgstr "无法删除通告。" +msgstr "" #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 -#, fuzzy msgid "Reply" -msgstr "回复" +msgstr "" #: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 #: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 #: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -#, fuzzy msgid "Delete this notice" -msgstr "删除通告" +msgstr "" #: lib/noticelist.php:474 actions/avatarsettings.php:148 #: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -#, fuzzy msgid "Delete" -msgstr "删除" +msgstr "" #: lib/nudgeform.php:116 msgid "Nudge this user" -msgstr "呼叫这个用户" +msgstr "" #: lib/nudgeform.php:128 msgid "Nudge" -msgstr "呼叫" +msgstr "" #: lib/nudgeform.php:128 -#, fuzzy msgid "Send a nudge to this user" -msgstr "呼叫这个用户" +msgstr "" #: lib/personaltagcloudsection.php:56 -#, fuzzy, php-format +#, php-format msgid "Tags in %s's notices" -msgstr "%s's 的消息的标签" +msgstr "" #: lib/profilelist.php:182 lib/profilelist.php:180 #: lib/subscriptionlist.php:126 msgid "(none)" -msgstr "(none 没有)" +msgstr "" #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" -msgstr "公告" +msgstr "" #: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" -msgstr "用户组" +msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -#, fuzzy msgid "Recent tags" -msgstr "最近的标签" +msgstr "" #: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" -msgstr "特征" +msgstr "" #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -#, fuzzy msgid "Popular" -msgstr "用户" +msgstr "" #: lib/searchgroupnav.php:82 -#, fuzzy msgid "Notice" -msgstr "通告" +msgstr "" #: lib/searchgroupnav.php:85 -#, fuzzy msgid "Find groups on this site" -msgstr "搜索用户信息" +msgstr "" #: lib/section.php:89 msgid "Untitled section" -msgstr "无标题章节" +msgstr "" #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format msgid "People %s subscribes to" -msgstr "%s 订阅的人" +msgstr "" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format msgid "People subscribed to %s" -msgstr "订阅 %s" +msgstr "" #: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" -msgstr "%s 组是成员组成了" +msgstr "" #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 -#, fuzzy, php-format +#, php-format msgid "Invite friends and colleagues to join you on %s" -msgstr "使用这个表单来邀请好友和同事加入。" +msgstr "" #: lib/subs.php:53 lib/subs.php:52 -#, fuzzy msgid "User has blocked you." -msgstr "用户没有个人信息。" +msgstr "" #: lib/subscribeform.php:115 lib/subscribeform.php:139 #: actions/userauthorization.php:178 actions/userauthorization.php:210 -#, fuzzy msgid "Subscribe to this user" -msgstr "订阅 %s" +msgstr "" #: lib/tagcloudsection.php:56 -#, fuzzy msgid "None" -msgstr "否" +msgstr "" #: lib/topposterssection.php:74 -#, fuzzy msgid "Top posters" -msgstr "灌水精英" +msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 -#, fuzzy msgid "Unblock this user" -msgstr "取消阻止次用户" +msgstr "" #: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" -msgstr "取消阻止" +msgstr "" #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -#, fuzzy msgid "Unsubscribe from this user" -msgstr "取消订阅 %s" +msgstr "" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 1.0)" -msgstr "%s 好友的聚合" +msgstr "" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 2.0)" -msgstr "%s 好友的聚合" +msgstr "" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Atom)" -msgstr "%s 好友的聚合" +msgstr "" #: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy msgid "You and friends" -msgstr "%s 及好友" +msgstr "" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "您可以在这里上传个人头像。" +msgstr "" #: actions/avatarsettings.php:373 -#, fuzzy msgid "Avatar deleted." -msgstr "头像已更新。" +msgstr "" #: actions/block.php:129 actions/block.php:136 msgid "" @@ -5665,21 +5422,18 @@ msgid "" msgstr "" #: actions/deletenotice.php:73 actions/deletenotice.php:103 -#, fuzzy msgid "" "You are about to permanently delete a notice. Once this is done, it cannot " "be undone." -msgstr "您选择了永久删除通告。这样做是无法恢复的。" +msgstr "" #: actions/deletenotice.php:127 actions/deletenotice.php:157 -#, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "会话标识有问题,请重试。" +msgstr "" #: actions/emailsettings.php:168 actions/emailsettings.php:174 -#, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "如果收到私人信息,发邮件通知我。" +msgstr "" #: actions/facebookhome.php:193 actions/facebookhome.php:187 #, php-format @@ -5701,29 +5455,26 @@ msgid "" msgstr "" #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format +#, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." -msgstr "你可以给你的组上载一个logo图。" +msgstr "" #: actions/grouplogo.php:367 actions/grouplogo.php:362 -#, fuzzy msgid "Pick a square area of the image to be the logo." -msgstr "请选择一块方形区域作为你的头像" +msgstr "" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format msgid "Microblog by %s group" -msgstr "%s 的微博客服务" +msgstr "" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format +#, php-format msgid "" "Search for groups on %%site.name%% by their name, location, or description. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。搜索条件至少包" -"含 3 个字符,多个搜索条件用空格分隔。" #: actions/groups.php:90 #, php-format @@ -5736,36 +5487,32 @@ msgid "" msgstr "" #: actions/newmessage.php:102 -#, fuzzy msgid "Only logged-in users can send direct messages." -msgstr "发送消息出错。" +msgstr "" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%s\" on %s" -msgstr "搜索有关\"%s\"的消息" +msgstr "" #: actions/openidlogin.php:66 -#, fuzzy, php-format +#, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " "before changing your settings." -msgstr "由于安全原因,修改设置前需要输入用户名和密码。" +msgstr "" #: actions/public.php:125 actions/public.php:133 actions/public.php:151 -#, fuzzy msgid "Public Stream Feed (RSS 1.0)" -msgstr "公开的聚合" +msgstr "" #: actions/public.php:130 actions/public.php:138 actions/public.php:155 -#, fuzzy msgid "Public Stream Feed (RSS 2.0)" -msgstr "公开的聚合" +msgstr "" #: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy msgid "Public Stream Feed (Atom)" -msgstr "公开的聚合" +msgstr "" #: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format @@ -5789,17 +5536,15 @@ msgid "Creative Commons Attribution 3.0" msgstr "" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#, fuzzy msgid "" " except this private data: password, email address, IM address, and phone " "number." -msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" +msgstr "" #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 -#, fuzzy msgid "Created" -msgstr "创建" +msgstr "" #: actions/showgroup.php:393 actions/showgroup.php:440 #: actions/showgroup.php:448 @@ -5813,46 +5558,43 @@ msgid "" msgstr "" #: actions/showstream.php:147 -#, fuzzy msgid "Your profile" -msgstr "组资料" +msgstr "" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format msgid "%s's profile" -msgstr "个人信息" +msgstr "" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (RSS 1.0)" -msgstr "%s 的通告聚合" +msgstr "" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (RSS 2.0)" -msgstr "%s 的通告聚合" +msgstr "" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (Atom)" -msgstr "%s 的通告聚合" +msgstr "" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format msgid "FOAF for %s" -msgstr "%s 的发件箱" +msgstr "" #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 -#, fuzzy msgid "Edit Avatar" -msgstr "头像" +msgstr "" #: actions/showstream.php:316 actions/showstream.php:281 #: actions/showstream.php:366 -#, fuzzy msgid "Edit profile settings" -msgstr "个人设置" +msgstr "" #: actions/showstream.php:317 actions/showstream.php:282 #: actions/showstream.php:367 @@ -5870,13 +5612,10 @@ msgid "" msgstr "" #: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." msgstr "" -"验证码已被发送到您新增的电话号码。请检查收件箱(和垃圾箱),找到验证码并按要求" -"使用它。" #: actions/twitapifavorites.php:171 lib/mail.php:556 #: actions/twitapifavorites.php:222 @@ -5905,53 +5644,44 @@ msgstr "" #: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 #: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#, fuzzy msgid "No such user!" -msgstr "未找到用户" +msgstr "" #: actions/twittersettings.php:72 -#, fuzzy msgid "" "Add your Twitter account to automatically send your notices to Twitter, and " "subscribe to Twitter friends already here." -msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" +msgstr "" #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" +msgstr "" #: actions/userauthorization.php:86 actions/userauthorization.php:81 -#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user's notices. If you didn't just ask to subscribe to someone's notices, " "click \"Reject\"." msgstr "" -"请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" -"告,请点击\"取消\"。" #: actions/usergroups.php:131 actions/usergroups.php:130 -#, fuzzy msgid "Search for more groups" -msgstr "检索人或文字" +msgstr "" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -#, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." -msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" +msgstr "" #: lib/action.php:406 lib/action.php:425 -#, fuzzy msgid "Connect to SMS, Twitter" -msgstr "与IM,手机短信,Twitter的连接" +msgstr "" #: lib/action.php:671 lib/action.php:721 lib/action.php:736 -#, fuzzy msgid "Badge" -msgstr "呼叫" +msgstr "" #: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format @@ -5996,11 +5726,11 @@ msgid "Database error" msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#, php-format msgid "" "To use the %s Facebook Application you need to login with your username and " "password. Don't have a username yet? " -msgstr "你需要登录方能使用%sFacebook程序" +msgstr "" #: lib/feed.php:85 msgid "RSS 1.0" @@ -6041,7 +5771,7 @@ msgid "" msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format +#, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" "\n" @@ -6054,11 +5784,6 @@ msgid "" "----\n" "Change your email address or notification options at %8$s\n" msgstr "" -"%1$s 开始关注您的 %2$s 信息。\n" -"\n" -"\t%3$s\n" -"\n" -"为您效力的 %4$s\n" #: lib/mail.php:466 #, php-format @@ -6128,9 +5853,8 @@ msgid "" msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 -#, fuzzy msgid "Search site" -msgstr "搜索" +msgstr "" #: lib/section.php:106 msgid "More..." @@ -6165,49 +5889,42 @@ msgid "" msgstr "" #: actions/attachment.php:73 -#, fuzzy msgid "No such attachment." -msgstr "没有这份文档。" +msgstr "" #: actions/block.php:149 -#, fuzzy msgid "Do not block this user from this group" -msgstr "该组成员列表。" +msgstr "" #: actions/block.php:150 -#, fuzzy msgid "Block this user from this group" -msgstr "该组成员列表。" +msgstr "" #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format msgid "%s blocked profiles" -msgstr "用户没有个人信息。" +msgstr "" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format msgid "%s blocked profiles, page %d" -msgstr "%s 及好友" +msgstr "" #: actions/blockedfromgroup.php:108 -#, fuzzy msgid "A list of the users blocked from joining this group." -msgstr "该组成员列表。" +msgstr "" #: actions/blockedfromgroup.php:281 -#, fuzzy msgid "Unblock user from group" -msgstr "取消阻止用户失败。" +msgstr "" #: actions/conversation.php:99 -#, fuzzy msgid "Conversation" -msgstr "确认码" +msgstr "" #: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy msgid "Do not delete this notice" -msgstr "无法删除通告。" +msgstr "" #: actions/editgroup.php:214 actions/newgroup.php:164 #: actions/apigroupcreate.php:291 actions/editgroup.php:215 @@ -6219,16 +5936,16 @@ msgstr "" #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"" -msgstr "主页'%s'不正确" +msgstr "" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format msgid "Alias \"%s\" already in use. Try another one." -msgstr "昵称已被使用,换一个吧。" +msgstr "" #: actions/editgroup.php:233 actions/newgroup.php:183 #: actions/apigroupcreate.php:334 actions/editgroup.php:234 @@ -6238,9 +5955,8 @@ msgstr "" #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy msgid "Could not create aliases." -msgstr "无法创建收藏。" +msgstr "" #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." @@ -6260,14 +5976,12 @@ msgid "" msgstr "" #: actions/file.php:34 -#, fuzzy msgid "No notice id" -msgstr "新通告" +msgstr "" #: actions/file.php:38 -#, fuzzy msgid "No notice" -msgstr "新通告" +msgstr "" #: actions/file.php:42 msgid "No attachments" @@ -6278,35 +5992,30 @@ msgid "No uploaded attachments" msgstr "" #: actions/finishopenidlogin.php:211 -#, fuzzy msgid "Not a valid invitation code." -msgstr "不是有效的昵称。" +msgstr "" #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 -#, fuzzy msgid "No group specified." -msgstr "没有收件人。" +msgstr "" #: actions/groupblock.php:91 msgid "Only an admin can block group members." msgstr "" #: actions/groupblock.php:95 -#, fuzzy msgid "User is already blocked from group." -msgstr "用户没有个人信息。" +msgstr "" #: actions/groupblock.php:100 -#, fuzzy msgid "User is not a member of group." -msgstr "您未告知此个人信息" +msgstr "" #: actions/groupblock.php:136 actions/groupmembers.php:311 #: actions/groupmembers.php:314 -#, fuzzy msgid "Block user from group" -msgstr "阻止用户" +msgstr "" #: actions/groupblock.php:155 #, php-format @@ -6320,16 +6029,13 @@ msgstr "" msgid "Database error blocking user from group." msgstr "" -# before login, the user don't even see any Chinese translation. Anyway. This may be good for the future. #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy msgid "You must be logged in to edit a group." -msgstr "您必须登录才能创建小组。" +msgstr "" #: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -#, fuzzy msgid "Group design" -msgstr "组" +msgstr "" #: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 msgid "" @@ -6341,33 +6047,28 @@ msgstr "" #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 #: lib/designsettings.php:461 -#, fuzzy msgid "Couldn't update your design." -msgstr "无法更新用户。" +msgstr "" #: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -#, fuzzy msgid "Unable to save your design settings!" -msgstr "无法保存 Twitter 设置!" +msgstr "" #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 -#, fuzzy msgid "Design preferences saved." -msgstr "同步选项已保存。" +msgstr "" #: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy msgid "Make user an admin of the group" -msgstr "只有admin才能编辑这个组" +msgstr "" #: actions/groupmembers.php:470 actions/groupmembers.php:473 -#, fuzzy msgid "Make Admin" -msgstr "admin管理员" +msgstr "" #: actions/groupmembers.php:470 actions/groupmembers.php:473 msgid "Make this user an admin" @@ -6375,9 +6076,8 @@ msgstr "" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 -#, fuzzy msgid "No results." -msgstr "没有结果" +msgstr "" #: actions/groupsearch.php:82 #, php-format @@ -6398,9 +6098,8 @@ msgid "Only an admin can unblock group members." msgstr "" #: actions/groupunblock.php:95 -#, fuzzy msgid "User is not blocked from group." -msgstr "用户没有个人信息。" +msgstr "" #: actions/invite.php:39 msgid "Invites have been disabled." @@ -6431,9 +6130,8 @@ msgid "Can't make %s an admin for group %s" msgstr "" #: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy msgid "Message sent" -msgstr "新消息" +msgstr "" #: actions/newnotice.php:93 lib/designsettings.php:281 #: actions/newnotice.php:94 @@ -6480,9 +6178,8 @@ msgid "File upload stopped by extension." msgstr "" #: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy msgid "Couldn't save file." -msgstr "无法保存个人信息。" +msgstr "" #: actions/newnotice.php:246 scripts/maildaemon.php:101 msgid "Max notice size is 140 chars, including attachment URL." @@ -6518,22 +6215,19 @@ msgid "" msgstr "" #: actions/openidsettings.php:70 -#, fuzzy, php-format +#, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -"[OpenID](%%doc.openid%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已" -"关联的 OpenID。" #: actions/othersettings.php:110 actions/othersettings.php:117 msgid "Shorten URLs with" msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 -#, fuzzy msgid "View profile designs" -msgstr "个人设置" +msgstr "" #: actions/othersettings.php:116 actions/othersettings.php:123 msgid "Show or hide profile designs." @@ -6562,14 +6256,12 @@ msgid "" msgstr "" #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format +#, php-format msgid "" "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool." msgstr "" -"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) 服务" #: actions/publictagcloud.php:69 #, php-format @@ -6588,31 +6280,26 @@ msgid "" msgstr "" #: actions/recoverpassword.php:152 -#, fuzzy msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." -msgstr "如果您忘记了密码,可以使用此邮箱收到新的密码。" +msgstr "" #: actions/recoverpassword.php:158 -#, fuzzy msgid "You've been identified. Enter a new password below. " -msgstr "您已得到确认。请输入新密码。" +msgstr "" #: actions/recoverpassword.php:188 -#, fuzzy msgid "Password recover" -msgstr "请求恢复密码" +msgstr "" #: actions/register.php:86 -#, fuzzy msgid "Sorry, invalid invitation code." -msgstr "验证码出错。" +msgstr "" #: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -#, fuzzy msgid "Subscribe to a remote user" -msgstr "订阅 %s" +msgstr "" #: actions/replies.php:179 actions/replies.php:198 #, php-format @@ -6636,9 +6323,9 @@ msgid "" msgstr "" #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format msgid "%s's favorite notices, page %d" -msgstr "%s 收藏的通告" +msgstr "" #: actions/showfavorites.php:170 actions/showfavorites.php:205 msgid "" @@ -6671,50 +6358,46 @@ msgid "Aliases" msgstr "" #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (RSS 1.0)" -msgstr "%s 的通告聚合" +msgstr "" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (RSS 2.0)" -msgstr "%s 的通告聚合" +msgstr "" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (Atom)" -msgstr "%s 的通告聚合" +msgstr "" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format +#, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" -"**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showgroup.php:474 actions/showgroup.php:482 -#, fuzzy msgid "Admins" -msgstr "admin管理员" +msgstr "" #: actions/shownotice.php:101 -#, fuzzy msgid "Not a local notice" -msgstr "没有这个用户。" +msgstr "" #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format msgid " tagged %s" -msgstr "带 %s 标签的通告" +msgstr "" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "%s 的通告聚合" +msgstr "" #: actions/showstream.php:350 actions/showstream.php:444 #, php-format @@ -6735,14 +6418,12 @@ msgid "" msgstr "" #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format +#, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" -"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/subscribers.php:108 msgid "" @@ -6774,75 +6455,67 @@ msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format msgid "%s is not listening to anyone." -msgstr "%1$s 开始关注您的 %2$s 信息。" +msgstr "" #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "%s 的通告聚合" +msgstr "" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Atom)" -msgstr "%s 的通告聚合" +msgstr "" #: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite!" -msgstr "已收藏此通告!" +msgstr "" #: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite!" -msgstr "此通告未被收藏!" +msgstr "" #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 -#, fuzzy msgid "Could not determine source user." -msgstr "无法获取收藏的通告。" +msgstr "" #: actions/twitapifriendships.php:215 -#, fuzzy msgid "Target user not specified." -msgstr "没有收件人。" +msgstr "" #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy msgid "Could not find target user." -msgstr "找不到任何信息。" +msgstr "" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s / 回复 %2$s 的消息" +msgstr "" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format msgid "Updates tagged with %1$s on %2$s!" -msgstr "%2$s 上 %1$s 的更新!" +msgstr "" #: actions/twittersettings.php:165 msgid "Import my Friends Timeline." msgstr "" #: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy msgid "License" -msgstr "注册证" +msgstr "" #: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy msgid "Reject this subscription" -msgstr "所有订阅" +msgstr "" #: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy msgid "Profile design" -msgstr "个人设置" +msgstr "" #: actions/userdesignsettings.php:87 lib/designsettings.php:76 msgid "" @@ -6855,9 +6528,9 @@ msgid "Enjoy your hotdog!" msgstr "" #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format msgid "%s is not a member of any group." -msgstr "您未告知此个人信息" +msgstr "" #: actions/usergroups.php:158 #, php-format @@ -6882,14 +6555,13 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy msgid "Problem saving notice. Too long." -msgstr "保存通告时出错。" +msgstr "" #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format msgid "Welcome to %1$s, @%2$s!" -msgstr "发送给 %1$s 的 %2$s 消息" +msgstr "" #: lib/accountsettingsaction.php:119 lib/groupnav.php:118 #: lib/accountsettingsaction.php:120 @@ -6897,9 +6569,8 @@ msgid "Design" msgstr "" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy msgid "Design your profile" -msgstr "用户没有个人信息。" +msgstr "" #: lib/action.php:712 lib/action.php:727 msgid "TOS" @@ -6914,9 +6585,8 @@ msgid "Author" msgstr "" #: lib/attachmentlist.php:278 -#, fuzzy msgid "Provider" -msgstr "个人信息" +msgstr "" #: lib/attachmentnoticesection.php:67 msgid "Notices where this attachment appears" @@ -6931,9 +6601,8 @@ msgid "Change background image" msgstr "" #: lib/designsettings.php:105 -#, fuzzy msgid "Upload file" -msgstr "上传" +msgstr "" #: lib/designsettings.php:109 msgid "" @@ -6957,28 +6626,24 @@ msgid "Tile background image" msgstr "" #: lib/designsettings.php:170 -#, fuzzy msgid "Change colours" -msgstr "修改密码" +msgstr "" #: lib/designsettings.php:178 msgid "Background" msgstr "" #: lib/designsettings.php:191 -#, fuzzy msgid "Content" -msgstr "连接" +msgstr "" #: lib/designsettings.php:204 -#, fuzzy msgid "Sidebar" -msgstr "搜索" +msgstr "" #: lib/designsettings.php:230 -#, fuzzy msgid "Links" -msgstr "登录" +msgstr "" #: lib/designsettings.php:247 msgid "Use defaults" @@ -7010,19 +6675,18 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" #: lib/groupnav.php:100 -#, fuzzy msgid "Blocked" -msgstr "阻止" +msgstr "" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format msgid "%s blocked users" -msgstr "阻止用户" +msgstr "" #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format msgid "Add or edit %s design" -msgstr "添加或编辑 %s 图标" +msgstr "" #: lib/mail.php:556 #, php-format @@ -7102,19 +6766,16 @@ msgid "Attach a file" msgstr "" #: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy msgid "in context" -msgstr "没有内容!" +msgstr "" #: lib/profileaction.php:177 -#, fuzzy msgid "User ID" -msgstr "用户" +msgstr "" #: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy msgid "Search help" -msgstr "搜索" +msgstr "" #: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48 @@ -7127,9 +6788,9 @@ msgid "People Tagcloud as tagged" msgstr "" #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format msgid "%s is not a valid color!" -msgstr "主页的URL不正确。" +msgstr "" #: lib/webcolor.php:123 #, php-format @@ -7138,68 +6799,64 @@ msgstr "" #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy msgid "No such page" -msgstr "未找到此消息。" +msgstr "" #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format msgid "Direct messages from %s" -msgstr "发给 %s 的直接消息" +msgstr "" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format msgid "That's too long. Max message size is %d chars." -msgstr "超出长度限制。不能超过 140 个字符。" +msgstr "" #: actions/apifriendshipsdestroy.php:109 -#, fuzzy msgid "Could not unfollow user: User not found." -msgstr "无法订阅用户:未找到。" +msgstr "" #: actions/apifriendshipsdestroy.php:120 msgid "You cannot unfollow yourself!" msgstr "" #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format msgid "Description is too long (max %d chars)." -msgstr "描述过长(不能超过140字符)。" +msgstr "" #: actions/apigroupjoin.php:110 -#, fuzzy msgid "You are already a member of that group." -msgstr "您已经是该组成员" +msgstr "" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format msgid "Could not join user %s to group %s." -msgstr "无法把 %s 用户添加到 %s 组" +msgstr "" #: actions/apigroupleave.php:114 -#, fuzzy msgid "You are not a member of this group." -msgstr "您未告知此个人信息" +msgstr "" #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %s to group %s." -msgstr "无法订阅用户:未找到。" +msgstr "" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format msgid "%s's groups" -msgstr "%s 群组" +msgstr "" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format msgid "Groups %s is a member of on %s." -msgstr "%s 组是成员组成了" +msgstr "" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format msgid "groups on %s" -msgstr "组动作" +msgstr "" #: actions/apistatusesshow.php:138 msgid "Status deleted." @@ -7211,9 +6868,9 @@ msgstr "" #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format msgid "That's too long. Max notice size is %d chars." -msgstr "超出长度限制。不能超过 140 个字符。" +msgstr "" #: actions/apistatusesupdate.php:209 actions/newnotice.php:178 #, php-format @@ -7221,73 +6878,62 @@ msgid "Max notice size is %d chars, including attachment URL." msgstr "" #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -#, fuzzy msgid "Unsupported format." -msgstr "不支持这种图像格式。" +msgstr "" #: actions/bookmarklet.php:50 -#, fuzzy msgid "Post to " -msgstr "相片" +msgstr "" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format msgid "description is too long (max %d chars)." -msgstr "描述过长(不能超过140字符)。" +msgstr "" #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "%2$s 上 %1$s 的更新!" +msgstr "" #: actions/finishremotesubscribe.php:80 -#, fuzzy msgid "User being listened to does not exist." -msgstr "要查看的用户不存在。" +msgstr "" #: actions/finishremotesubscribe.php:106 -#, fuzzy msgid "You are not authorized." -msgstr "未认证。" +msgstr "" #: actions/finishremotesubscribe.php:109 -#, fuzzy msgid "Could not convert request token to access token." -msgstr "无法将请求标记转换为访问令牌。" +msgstr "" #: actions/finishremotesubscribe.php:114 -#, fuzzy msgid "Remote service uses unknown version of OMB protocol." -msgstr "此OMB协议版本无效。" +msgstr "" #: actions/getfile.php:75 -#, fuzzy msgid "No such file." -msgstr "没有这份通告。" +msgstr "" #: actions/getfile.php:79 -#, fuzzy msgid "Cannot read file." -msgstr "没有这份通告。" +msgstr "" #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format msgid "Updates from members of %1$s on %2$s!" -msgstr "%2$s 上 %1$s 的更新!" +msgstr "" #: actions/imsettings.php:89 -#, fuzzy msgid "IM is not available." -msgstr "这个页面不提供您想要的媒体类型" +msgstr "" #: actions/login.php:259 -#, fuzzy, php-format +#, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" "(%%action.register%%) a new account." msgstr "" -"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " -"或使用 [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:89 #, php-format @@ -7295,9 +6941,9 @@ msgid "Updates with \"%s\"" msgstr "" #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "所有匹配搜索条件\"%s\"的消息" +msgstr "" #: actions/oembed.php:157 msgid "content type " @@ -7313,19 +6959,18 @@ msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format msgid "Describe yourself and your interests in %d chars" -msgstr "用不超过140个字符描述您自己和您的爱好" +msgstr "" #: actions/profilesettings.php:125 actions/register.php:457 -#, fuzzy msgid "Describe yourself and your interests" -msgstr "用不超过140个字符描述您自己和您的爱好" +msgstr "" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (max %d chars)." -msgstr "自述过长(不能超过140字符)。" +msgstr "" #: actions/register.php:336 msgid "" @@ -7334,20 +6979,17 @@ msgid "" msgstr "" #: actions/remotesubscribe.php:168 -#, fuzzy msgid "" "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "不是有效的个人信息URL(没有YADIS数据)。" +msgstr "" #: actions/remotesubscribe.php:176 -#, fuzzy msgid "That’s a local profile! Login to subscribe." -msgstr "那是一个本地资料!需要登录才能订阅。" +msgstr "" #: actions/remotesubscribe.php:183 -#, fuzzy msgid "Couldn’t get a request token." -msgstr "无法获得一份请求标记。" +msgstr "" #: actions/replies.php:144 #, php-format @@ -7360,29 +7002,29 @@ msgid "Replies feed for %s (RSS 2.0)" msgstr "" #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format msgid "Replies feed for %s (Atom)" -msgstr "%s 的通告聚合" +msgstr "" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format msgid "Replies to %1$s on %2$s!" -msgstr "发送给 %1$s 的 %2$s 消息" +msgstr "" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "%s 的收藏的聚合" +msgstr "" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "%s 的收藏的聚合" +msgstr "" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "%s 的收藏的聚合" +msgstr "" #: actions/showfavorites.php:211 #, php-format @@ -7393,24 +7035,22 @@ msgid "" msgstr "" #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format msgid "FOAF for %s group" -msgstr "%s 组" +msgstr "" #: actions/shownotice.php:90 -#, fuzzy msgid "Notice deleted." -msgstr "消息已发布。" +msgstr "" #: actions/smssettings.php:91 -#, fuzzy msgid "SMS is not available." -msgstr "这个页面不提供您想要的媒体类型" +msgstr "" #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "%s 的通告聚合" +msgstr "" #: actions/updateprofile.php:62 actions/userauthorization.php:330 #, php-format @@ -7418,31 +7058,25 @@ msgid "Listenee stream license ‘%s’ is not compatible with site license ‘% msgstr "" #: actions/userauthorization.php:110 -#, fuzzy msgid "" "Please check these details to make sure that you want to subscribe to this " "user’s notices. If you didn’t just ask to subscribe to someone’s notices, " "click “Reject”." msgstr "" -"请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" -"告,请点击\"取消\"。" #: actions/userauthorization.php:249 -#, fuzzy msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site’s instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -"订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" #: actions/userauthorization.php:261 -#, fuzzy msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site’s instructions for details on how to fully reject the " "subscription." -msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" +msgstr "" #: actions/userauthorization.php:296 #, php-format @@ -7470,62 +7104,59 @@ msgid "Avatar URL ‘%s’ is not valid." msgstr "" #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format msgid "Can’t read avatar URL ‘%s’." -msgstr "无法访问头像URL '%s'" +msgstr "" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format msgid "Wrong image type for avatar URL ‘%s’." -msgstr "'%s' 图像格式错误" +msgstr "" #: lib/action.php:435 -#, fuzzy msgid "Connect to services" -msgstr "无法重定向到服务器:%s" +msgstr "" #: lib/action.php:785 -#, fuzzy msgid "Site content license" -msgstr "StatusNet软件注册证" +msgstr "" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format msgid "Could not find a user with nickname %s" -msgstr "无法更新已确认的电子邮件。" +msgstr "" #: lib/command.php:92 msgid "It does not make a lot of sense to nudge yourself!" msgstr "" #: lib/command.php:99 -#, fuzzy, php-format +#, php-format msgid "Nudge sent to %s" -msgstr "振铃呼叫发出。" +msgstr "" #: lib/command.php:152 lib/command.php:400 msgid "Notice with that id does not exist" msgstr "" #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" +msgstr "" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" +msgstr "" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format msgid "Reply to %s sent" -msgstr "无法删除通告。" +msgstr "" #: lib/command.php:441 -#, fuzzy msgid "Error saving notice." -msgstr "保存通告时出错。" +msgstr "" #: lib/command.php:587 msgid "" @@ -7563,9 +7194,8 @@ msgid "" msgstr "" #: lib/common.php:191 -#, fuzzy msgid "No configuration file found. " -msgstr "没有验证码" +msgstr "" #: lib/common.php:192 msgid "I looked for configuration files in the following places: " @@ -7576,34 +7206,31 @@ msgid "You may wish to run the installer to fix this." msgstr "" #: lib/common.php:194 -#, fuzzy msgid "Go to the installer." -msgstr "登入本站" +msgstr "" #: lib/galleryaction.php:139 -#, fuzzy msgid "Select tag to filter" -msgstr "选择运营商" +msgstr "" #: lib/groupeditform.php:168 -#, fuzzy msgid "Describe the group or topic" -msgstr "用不超过140个字符描述您自己和您的爱好" +msgstr "" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d characters" -msgstr "用不超过140个字符描述您自己和您的爱好" +msgstr "" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format msgid "notice id: %s" -msgstr "%s 的通告聚合" +msgstr "" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "%s 收藏了您的通告" +msgstr "" #: lib/mail.php:556 #, php-format @@ -7647,40 +7274,17 @@ msgid "" msgstr "" #: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy msgid "from" -msgstr " 从 " +msgstr "" #: lib/mediafile.php:179 lib/mediafile.php:216 msgid "File exceeds user's quota!" msgstr "" #: lib/mediafile.php:201 lib/mediafile.php:237 -#, fuzzy msgid "Could not determine file's mime-type!" -msgstr "无法删除收藏。" +msgstr "" #: lib/oauthstore.php:345 -#, fuzzy msgid "Duplicate notice" -msgstr "删除通告" - -#, fuzzy -#~ msgid "Code not yet ready." -#~ msgstr "命令尚未实现。" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "创建新帐号" - -#, fuzzy -#~ msgid "Delete my account confirmation" -#~ msgstr "无法删除电子邮件确认。" - -#, fuzzy -#~ msgid "Check if you are sure you want to delete your account." -#~ msgstr "确定要删除这条通告吗?" - -#, fuzzy -#~ msgid "Showing recently popular notices" -#~ msgstr "搜索通告内容" +msgstr "" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.mo b/locale/zh_TW/LC_MESSAGES/statusnet.mo index 251d832662b63cde98c26ea2a73b59e63cf10ec0..aa501958cefc7e2e8b361958ad5c0c296e69c6d9 100644 GIT binary patch delta 324 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 diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index 664dd870bd..f3acfd99c2 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -1,33 +1,32 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# Translation of StatusNet to Chinese (Taiwan) # +# -- msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-03-12 16:21+0000\n" -"Last-Translator: Evan Prodromou \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"PO-Revision-Date: 2009-11-03 20:00:19+0000\n" +"Language-Team: Chinese (Taiwan)\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: zh-tw\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" -msgstr "搜尋 \"%s\"相關資料" +msgstr "" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." -msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" +msgstr "" #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -82,7 +81,7 @@ msgstr "" #: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "現在%1$s在%2$s成為你的粉絲囉" +msgstr "" #: ../lib/mail.php:126 #, php-format @@ -94,13 +93,6 @@ msgid "" "Faithfully yours,\n" "%4$s.\n" msgstr "" -"現在%1$s在%2$s成為你的粉絲囉。\n" -"\n" -"\t%3$s\n" -"\n" -"\n" -"%4$s.\n" -"敬上。\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -114,7 +106,7 @@ msgstr "" #: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" -msgstr "%1$s的狀態是%2$s" +msgstr "" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 @@ -127,7 +119,7 @@ msgstr "" #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" -msgstr "%s的公開內容" +msgstr "" #: ../actions/all.php:47 ../actions/allrss.php:60 #: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 @@ -142,7 +134,7 @@ msgstr "%s的公開內容" #: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" -msgstr "%s與好友" +msgstr "" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 #: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 @@ -188,18 +180,16 @@ msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -"**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型" -"部落格服務" #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%**是個微型部落格" +msgstr "" #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "必須注明作者姓名或昵稱." +msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -207,7 +197,7 @@ msgstr "必須注明作者姓名或昵稱." #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" +msgstr "" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 @@ -217,13 +207,13 @@ msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" -msgstr "6個以上字元" +msgstr "" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 #: actions/recoverpassword.php:220 actions/recoverpassword.php:233 #: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" -msgstr "6個或6個以上字元,別忘了自己密碼喔" +msgstr "" #: ../actions/register.php:154 actions/register.php:168 #: actions/register.php:373 actions/register.php:419 actions/register.php:423 @@ -236,7 +226,7 @@ msgstr "" msgid "" "A confirmation code was sent to the IM address you added. You must approve %" "s for sending messages to you." -msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" +msgstr "" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 @@ -331,13 +321,13 @@ msgstr "" #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 msgid "About" -msgstr "關於" +msgstr "" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 #: actions/userauthorization.php:143 actions/userauthorization.php:178 #: actions/userauthorization.php:209 msgid "Accept" -msgstr "接受" +msgstr "" #: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 #: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 @@ -350,12 +340,12 @@ msgstr "接受" #: actions/emailsettings.php:126 actions/imsettings.php:133 #: actions/smssettings.php:145 msgid "Add" -msgstr "新增" +msgstr "" #: ../actions/openidsettings.php:43 actions/openidsettings.php:44 #: actions/openidsettings.php:93 msgid "Add OpenID" -msgstr "新增OpenID" +msgstr "" #: ../lib/settingsaction.php:97 lib/settingsaction.php:91 #: lib/accountsettingsaction.php:117 @@ -369,7 +359,7 @@ msgstr "" #: actions/smssettings.php:92 actions/emailsettings.php:100 #: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" -msgstr "信箱" +msgstr "" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 #: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 @@ -379,19 +369,19 @@ msgstr "" #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" -msgstr "所有訂閱" +msgstr "" #: ../actions/publicrss.php:64 actions/publicrss.php:50 #: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" -msgstr "%s的所有新增內容" +msgstr "" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 #: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" -msgstr "所有符合 \"%s\"的更新" +msgstr "" #: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 #: ../actions/openidlogin.php:29 ../actions/register.php:30 @@ -401,11 +391,11 @@ msgstr "所有符合 \"%s\"的更新" #: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 #: actions/login.php:79 msgid "Already logged in." -msgstr "已登入" +msgstr "" #: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." -msgstr "此帳號已註冊" +msgstr "" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 #: actions/deletenotice.php:113 actions/deletenotice.php:114 @@ -417,14 +407,14 @@ msgstr "" #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 msgid "Authorize subscription" -msgstr "註冊確認" +msgstr "" #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "未來在同一部電腦自動登入" +msgstr "" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 @@ -440,12 +430,12 @@ msgstr "" #: actions/showgroup.php:216 actions/showgroup.php:221 #: lib/accountsettingsaction.php:111 msgid "Avatar" -msgstr "個人圖像" +msgstr "" #: ../actions/avatar.php:113 actions/profilesettings.php:350 #: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." -msgstr "更新個人圖像" +msgstr "" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 @@ -454,8 +444,6 @@ msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " "message with further instructions. (Did you add %s to your buddy list?)" msgstr "" -"等待確認此信箱。看看你的Jabber/GTalk是否有訊息指示下一步動作。(你加入%s到你的" -"好友清單了嗎?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 @@ -470,9 +458,8 @@ msgid "Awaiting confirmation on this phone number." msgstr "" #: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy msgid "Before »" -msgstr "之前的內容»" +msgstr "" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 @@ -480,7 +467,7 @@ msgstr "之前的內容»" #: actions/register.php:448 actions/profilesettings.php:127 #: actions/register.php:459 msgid "Bio" -msgstr "自我介紹" +msgstr "" #: ../actions/profilesettings.php:101 ../actions/register.php:82 #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 @@ -489,7 +476,7 @@ msgstr "自我介紹" #: actions/updateprofile.php:107 actions/updateprofile.php:109 #: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." -msgstr "自我介紹過長(共140個字元)" +msgstr "" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 #: actions/deletenotice.php:71 @@ -500,7 +487,7 @@ msgstr "" #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" -msgstr "無法讀取此%sURL的圖像" +msgstr "" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 @@ -508,7 +495,7 @@ msgstr "無法讀取此%sURL的圖像" #: actions/passwordsettings.php:174 actions/recoverpassword.php:365 #: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." -msgstr "無法存取新密碼" +msgstr "" #: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 #: ../actions/smssettings.php:62 actions/emailsettings.php:58 @@ -517,17 +504,17 @@ msgstr "無法存取新密碼" #: actions/smssettings.php:114 actions/emailsettings.php:117 #: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" -msgstr "取消" +msgstr "" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 #: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." -msgstr "無法初始化OpenID用戶對象(consumer object)" +msgstr "" #: ../actions/imsettings.php:163 actions/imsettings.php:171 #: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" -msgstr "此JabberID錯誤" +msgstr "" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 #: actions/emailsettings.php:311 actions/emailsettings.php:318 @@ -538,7 +525,7 @@ msgstr "" #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" -msgstr "更改" +msgstr "" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 #: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 @@ -548,7 +535,7 @@ msgstr "" #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" -msgstr "更改密碼" +msgstr "" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 #: lib/accountsettingsaction.php:115 @@ -570,12 +557,12 @@ msgstr "" #: actions/passwordsettings.php:111 actions/recoverpassword.php:239 #: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" -msgstr "確認" +msgstr "" #: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 #: actions/confirmaddress.php:144 msgid "Confirm Address" -msgstr "確認信箱" +msgstr "" #: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 #: ../actions/smssettings.php:245 actions/emailsettings.php:256 @@ -585,7 +572,7 @@ msgstr "確認信箱" #: actions/emailsettings.php:394 actions/imsettings.php:367 #: actions/smssettings.php:386 msgid "Confirmation cancelled." -msgstr "確認取消" +msgstr "" #: ../actions/smssettings.php:63 actions/smssettings.php:63 #: actions/smssettings.php:118 actions/smssettings.php:130 @@ -595,7 +582,7 @@ msgstr "" #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." -msgstr "確認碼遺失" +msgstr "" #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 @@ -622,23 +609,23 @@ msgstr "" #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 #: lib/action.php:425 lib/action.php:435 msgid "Connect" -msgstr "連結" +msgstr "" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 #: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" -msgstr "與現有帳號連結" +msgstr "" #: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 #: lib/action.php:719 lib/action.php:734 msgid "Contact" -msgstr "好友名單" +msgstr "" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 #: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" -msgstr "無法從 %s 建立OpenID" +msgstr "" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 @@ -659,17 +646,17 @@ msgstr "" #: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" -msgstr "無法連結到伺服器:%s" +msgstr "" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 #: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" -msgstr "無法存取個人圖像資料" +msgstr "" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 #: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" -msgstr "無法存取新的個人資料" +msgstr "" #: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." @@ -687,7 +674,7 @@ msgstr "" #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "無法轉換請求標記以致無法存取標記" +msgstr "" #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -698,11 +685,11 @@ msgstr "無法轉換請求標記以致無法存取標記" #: actions/emailsettings.php:382 actions/emailsettings.php:390 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." -msgstr "無法取消信箱確認" +msgstr "" #: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." -msgstr "無法刪除帳號" +msgstr "" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 #: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 @@ -712,7 +699,7 @@ msgstr "" #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." -msgstr "無法取得轉換標記" +msgstr "" #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 @@ -722,20 +709,20 @@ msgstr "無法取得轉換標記" #: actions/emailsettings.php:352 actions/imsettings.php:317 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." -msgstr "無法輸入確認碼" +msgstr "" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 #: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." -msgstr "無法新增訂閱" +msgstr "" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 #: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." -msgstr "無法儲存個人資料" +msgstr "" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 #: actions/profilesettings.php:279 actions/profilesettings.php:295 @@ -773,32 +760,32 @@ msgstr "" #: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/smssettings.php:420 msgid "Couldn't update user." -msgstr "無法更新使用者" +msgstr "" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 #: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" -msgstr "新增" +msgstr "" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 #: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." -msgstr "以此暱稱新增使用者" +msgstr "" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 #: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" -msgstr "新增帳號" +msgstr "" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." -msgstr "該OpenID已經注冊" +msgstr "" #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." -msgstr "目前已確認的Jabber/Gtalk地址" +msgstr "" #: ../actions/smssettings.php:46 actions/smssettings.php:46 #: actions/smssettings.php:100 actions/smssettings.php:112 @@ -812,7 +799,7 @@ msgstr "" #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" -msgstr "目前" +msgstr "" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 #: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 @@ -824,7 +811,7 @@ msgstr "" #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" -msgstr "增加回覆時,資料庫發生錯誤: %s" +msgstr "" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 #: actions/deletenotice.php:79 actions/deletenotice.php:111 @@ -837,7 +824,7 @@ msgstr "" #: actions/profilesettings.php:114 actions/register.php:404 #: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" -msgstr "請在140個字以內描述你自己與你的興趣" +msgstr "" #: ../actions/register.php:158 ../actions/register.php:161 #: ../lib/settingsaction.php:87 actions/register.php:172 @@ -846,7 +833,7 @@ msgstr "請在140個字以內描述你自己與你的興趣" #: actions/register.php:427 actions/register.php:431 actions/register.php:435 #: lib/accountsettingsaction.php:117 msgid "Email" -msgstr "電子信箱" +msgstr "" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 #: actions/emailsettings.php:115 actions/emailsettings.php:121 @@ -861,11 +848,11 @@ msgstr "" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." -msgstr "此電子信箱已註冊過了" +msgstr "" #: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" -msgstr "確認信箱" +msgstr "" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 #: actions/emailsettings.php:117 actions/emailsettings.php:123 @@ -881,7 +868,7 @@ msgstr "" #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." -msgstr "請輸入暱稱或電子信箱" +msgstr "" #: ../actions/smssettings.php:64 actions/smssettings.php:64 #: actions/smssettings.php:119 actions/smssettings.php:131 @@ -891,63 +878,63 @@ msgstr "" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" -msgstr "授權錯誤(Error authorizing token)" +msgstr "" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 #: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 #: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." -msgstr "連接OpenID時發生錯誤" +msgstr "" #: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 #: actions/finishaddopenid.php:126 msgid "Error connecting user." -msgstr "連接用戶時發生錯誤(Error connecting user.)" +msgstr "" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 #: lib/oauthstore.php:291 msgid "Error inserting avatar" -msgstr "個人圖像插入錯誤" +msgstr "" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 #: lib/oauthstore.php:283 msgid "Error inserting new profile" -msgstr "新的更人資料輸入錯誤" +msgstr "" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 #: lib/oauthstore.php:311 msgid "Error inserting remote profile" -msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)" +msgstr "" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 #: actions/recoverpassword.php:280 actions/recoverpassword.php:298 #: actions/recoverpassword.php:301 msgid "Error saving address confirmation." -msgstr "儲存信箱確認發生錯誤" +msgstr "" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 #: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" -msgstr "儲存遠端個人資料發生錯誤" +msgstr "" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 #: lib/openid.php:238 msgid "Error saving the profile." -msgstr "儲存個人資料發生錯誤" +msgstr "" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 #: lib/openid.php:249 msgid "Error saving the user." -msgstr "儲存使用者發生錯誤" +msgstr "" #: ../actions/password.php:80 actions/profilesettings.php:399 #: actions/passwordsettings.php:164 actions/passwordsettings.php:169 #: actions/passwordsettings.php:175 msgid "Error saving user; invalid." -msgstr "儲存使用者發生錯誤;使用者名稱無效" +msgstr "" #: ../actions/login.php:47 ../actions/login.php:73 #: ../actions/recoverpassword.php:307 ../actions/register.php:98 @@ -958,52 +945,52 @@ msgstr "儲存使用者發生錯誤;使用者名稱無效" #: actions/register.php:235 actions/login.php:122 #: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." -msgstr "使用者設定發生錯誤" +msgstr "" #: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 #: actions/finishaddopenid.php:131 msgid "Error updating profile" -msgstr "更新個人資料發生錯誤" +msgstr "" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 #: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" -msgstr "更新遠端個人資料發生錯誤" +msgstr "" #: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 #: actions/recoverpassword.php:86 msgid "Error with confirmation code." -msgstr "確認碼發生錯誤" +msgstr "" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 #: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" -msgstr "這個暱稱已有人用了喔" +msgstr "" #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 #: lib/action.php:708 lib/action.php:723 msgid "FAQ" -msgstr "常見問題" +msgstr "" #: ../actions/avatar.php:115 actions/profilesettings.php:352 #: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." -msgstr "無法上傳個人圖像" +msgstr "" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 #: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" -msgstr "發送給%s好友的訂閱" +msgstr "" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 #: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" -msgstr "回應給%s的訂閱" +msgstr "" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 #: actions/tag.php:68 @@ -1025,7 +1012,7 @@ msgstr "" msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." -msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更改設定。" +msgstr "" #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1038,7 +1025,7 @@ msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更 #: actions/profilesettings.php:111 actions/register.php:441 #: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" -msgstr "全名" +msgstr "" #: ../actions/profilesettings.php:98 ../actions/register.php:79 #: ../actions/updateprofile.php:93 actions/profilesettings.php:213 @@ -1052,19 +1039,19 @@ msgstr "全名" #: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/register.php:214 msgid "Full name is too long (max 255 chars)." -msgstr "全名過長(最多255字元)" +msgstr "" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 #: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 #: lib/action.php:456 lib/action.php:719 msgid "Help" -msgstr "求救" +msgstr "" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 #: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 #: lib/action.php:417 lib/action.php:430 msgid "Home" -msgstr "主頁" +msgstr "" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 @@ -1073,7 +1060,7 @@ msgstr "主頁" #: lib/groupeditform.php:161 actions/profilesettings.php:115 #: actions/register.php:446 msgid "Homepage" -msgstr "個人首頁" +msgstr "" #: ../actions/profilesettings.php:95 ../actions/register.php:76 #: actions/profilesettings.php:210 actions/register.php:83 @@ -1085,7 +1072,7 @@ msgstr "個人首頁" #: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/register.php:211 msgid "Homepage is not a valid URL." -msgstr "個人首頁位址錯誤" +msgstr "" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 #: actions/emailsettings.php:173 actions/emailsettings.php:178 @@ -1101,25 +1088,25 @@ msgstr "" #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" -msgstr "線上即時通信箱" +msgstr "" #: ../actions/imsettings.php:33 actions/imsettings.php:33 #: actions/imsettings.php:59 msgid "IM Settings" -msgstr "線上即時通設定" +msgstr "" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." -msgstr "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" +msgstr "" #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." -msgstr "若想新增OpenID到你的帳號,請在下方空格輸入並勾選『新增』" +msgstr "" #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" @@ -1145,26 +1132,26 @@ msgstr "" #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 #: actions/passwordsettings.php:164 msgid "Incorrect old password" -msgstr "舊密碼錯誤" +msgstr "" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 #: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 #: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." -msgstr "使用者名稱或密碼錯誤" +msgstr "" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." -msgstr "我們已寄出一封信到你帳號中的信箱,告訴你如何取回你的密碼。" +msgstr "" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" -msgstr "個人圖像連結%s無效" +msgstr "" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 #: actions/invite.php:72 @@ -1176,7 +1163,7 @@ msgstr "" #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" -msgstr "個人首頁連結%s無效" +msgstr "" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 #: actions/updateprofile.php:86 actions/updateprofile.php:88 @@ -1203,12 +1190,12 @@ msgstr "" #: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." -msgstr "個人資料連結%s無效" +msgstr "" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 #: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" -msgstr "個人資料連結無效(格式錯誤)" +msgstr "" #: ../actions/finishremotesubscribe.php:77 #: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 @@ -1218,7 +1205,7 @@ msgstr "" #: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." -msgstr "尺寸錯誤" +msgstr "" #: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 #: ../actions/register.php:111 actions/finishopenidlogin.php:241 @@ -1228,7 +1215,7 @@ msgstr "尺寸錯誤" #: actions/finishopenidlogin.php:307 actions/register.php:230 #: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." -msgstr "使用者名稱或密碼無效" +msgstr "" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 #: actions/invite.php:104 actions/invite.php:110 @@ -1263,7 +1250,7 @@ msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." -msgstr "此Jabber ID已有人使用" +msgstr "" #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 @@ -1300,7 +1287,7 @@ msgstr "" #: actions/userauthorization.php:158 lib/groupeditform.php:177 #: lib/profilelist.php:218 msgid "Location" -msgstr "地點" +msgstr "" #: ../actions/profilesettings.php:104 ../actions/register.php:85 #: ../actions/updateprofile.php:108 actions/profilesettings.php:219 @@ -1314,7 +1301,7 @@ msgstr "地點" #: actions/newgroup.php:148 actions/profilesettings.php:225 #: actions/register.php:221 msgid "Location is too long (max 255 chars)." -msgstr "地點過長(共255個字)" +msgstr "" #: ../actions/login.php:97 ../actions/login.php:106 #: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 @@ -1328,13 +1315,13 @@ msgstr "地點過長(共255個字)" #: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" -msgstr "登入" +msgstr "" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 #: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "用OpenID(%%doc.openid%%)帳號登入" +msgstr "" #: ../actions/login.php:126 actions/login.php:251 #, php-format @@ -1347,7 +1334,7 @@ msgstr "" #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" -msgstr "登出" +msgstr "" #: ../actions/register.php:166 actions/register.php:180 #: actions/register.php:393 actions/register.php:439 actions/register.php:443 @@ -1358,7 +1345,7 @@ msgstr "" #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" -msgstr "遺失或忘記密碼了嗎?" +msgstr "" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 @@ -1376,13 +1363,13 @@ msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" -msgstr "何時加入會員的呢?" +msgstr "" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 #: actions/userrss.php:93 #, php-format msgid "Microblog by %s" -msgstr "&s的微型部落格" +msgstr "" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 @@ -1422,12 +1409,12 @@ msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" -msgstr "新暱稱" +msgstr "" #: ../actions/newnotice.php:87 actions/newnotice.php:96 #: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" -msgstr "新訊息" +msgstr "" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 @@ -1435,12 +1422,12 @@ msgstr "新訊息" #: actions/recoverpassword.php:232 actions/passwordsettings.php:107 #: actions/recoverpassword.php:235 msgid "New password" -msgstr "新密碼" +msgstr "" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "新密碼已儲存成功。你已登入。" +msgstr "" #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1456,7 +1443,7 @@ msgstr "新密碼已儲存成功。你已登入。" #: actions/profilesettings.php:106 actions/register.php:417 #: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" -msgstr "暱稱" +msgstr "" #: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 #: ../actions/register.php:69 actions/finishopenidlogin.php:181 @@ -1470,7 +1457,7 @@ msgstr "暱稱" #: actions/newgroup.php:130 actions/profilesettings.php:231 #: actions/register.php:202 msgid "Nickname already in use. Try another one." -msgstr "此暱稱已有人使用。再試試看別的吧。" +msgstr "" #: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 #: ../actions/register.php:67 ../actions/updateprofile.php:77 @@ -1486,22 +1473,22 @@ msgstr "此暱稱已有人使用。再試試看別的吧。" #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "暱稱請用小寫字母或數字,勿加空格。" +msgstr "" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." -msgstr "此暱稱無法使用" +msgstr "" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 #: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "你想成為誰的粉絲呢?請輸入他/她的暱稱。" +msgstr "" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 #: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" -msgstr "暱稱或信箱" +msgstr "" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 @@ -1514,13 +1501,13 @@ msgstr "" #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." -msgstr "查無此Jabber ID" +msgstr "" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 #: actions/userauthorization.php:153 actions/userauthorization.php:192 #: actions/userauthorization.php:225 msgid "No authorization request!" -msgstr "無確認請求" +msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 #: actions/smssettings.php:299 actions/smssettings.php:311 @@ -1535,7 +1522,7 @@ msgstr "" #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." -msgstr "無確認碼" +msgstr "" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 @@ -1544,7 +1531,7 @@ msgstr "無確認碼" #: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 #: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" -msgstr "無內容" +msgstr "" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 #: actions/emailsettings.php:304 actions/emailsettings.php:311 @@ -1566,13 +1553,13 @@ msgstr "" #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." -msgstr "無遠端伺服器提供的暱稱" +msgstr "" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 #: actions/leavegroup.php:76 msgid "No nickname." -msgstr "無暱稱" +msgstr "" #: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 #: ../actions/smssettings.php:229 actions/emailsettings.php:240 @@ -1598,24 +1585,24 @@ msgstr "" #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 msgid "No registered email address for that user." -msgstr "查無此使用者所註冊的信箱" +msgstr "" #: ../actions/userauthorization.php:49 actions/userauthorization.php:55 #: actions/userauthorization.php:57 msgid "No request found!" -msgstr "目前無請求" +msgstr "" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 #: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" -msgstr "無結果" +msgstr "" #: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 #: actions/avatarbynickname.php:64 msgid "No size." -msgstr "無尺寸" +msgstr "" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 @@ -1635,12 +1622,12 @@ msgstr "" #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." -msgstr "無此OpenID" +msgstr "" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 #: actions/doc.php:69 msgid "No such document." -msgstr "無此文件" +msgstr "" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 @@ -1648,17 +1635,17 @@ msgstr "無此文件" #: lib/deleteaction.php:51 actions/deletenotice.php:52 #: actions/shownotice.php:92 msgid "No such notice." -msgstr "無此通知" +msgstr "" #: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 #: actions/recoverpassword.php:62 msgid "No such recovery code." -msgstr "無此恢復碼" +msgstr "" #: ../actions/postnotice.php:56 actions/postnotice.php:57 #: actions/postnotice.php:60 msgid "No such subscription" -msgstr "無此訂閱" +msgstr "" #: ../actions/all.php:34 ../actions/allrss.php:35 #: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 @@ -1695,7 +1682,7 @@ msgstr "無此訂閱" #: lib/command.php:163 lib/command.php:311 lib/command.php:364 #: lib/command.php:411 lib/command.php:466 msgid "No such user." -msgstr "無此使用者" +msgstr "" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 @@ -1710,7 +1697,7 @@ msgstr "" #: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 #: actions/recoverpassword.php:66 msgid "Not a recovery code." -msgstr "此恢復碼錯誤" +msgstr "" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 #: scripts/maildaemon.php:53 scripts/maildaemon.php:52 @@ -1730,12 +1717,12 @@ msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" -msgstr "此JabberID無效" +msgstr "" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 #: lib/openid.php:143 msgid "Not a valid OpenID." -msgstr "此OpenID無效" +msgstr "" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 #: actions/emailsettings.php:315 actions/emailsettings.php:322 @@ -1746,7 +1733,7 @@ msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." -msgstr "此信箱無效" +msgstr "" #: ../actions/profilesettings.php:91 ../actions/register.php:71 #: actions/profilesettings.php:206 actions/register.php:78 @@ -3875,9 +3862,9 @@ msgstr "" #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format msgid "%s and friends, page %d" -msgstr "%s與好友" +msgstr "" #: actions/avatarsettings.php:76 msgid "You can upload your personal avatar." @@ -3887,9 +3874,8 @@ msgstr "" #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 #: actions/grouplogo.php:251 -#, fuzzy msgid "Avatar settings" -msgstr "線上即時通設定" +msgstr "" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 @@ -3939,9 +3925,8 @@ msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 -#, fuzzy msgid "Lost our file." -msgstr "無此通知" +msgstr "" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 @@ -3964,9 +3949,8 @@ msgid "No profile with that ID." msgstr "" #: actions/block.php:111 actions/block.php:134 -#, fuzzy msgid "Block user" -msgstr "無此使用者" +msgstr "" #: actions/block.php:129 msgid "Are you sure you want to block this user? " @@ -4018,9 +4002,8 @@ msgstr "" #: actions/groupdesignsettings.php:89 actions/showgroup.php:126 #: actions/editgroup.php:84 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy msgid "No nickname" -msgstr "無暱稱" +msgstr "" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 @@ -4030,9 +4013,8 @@ msgstr "無暱稱" #: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 #: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -#, fuzzy msgid "No such group" -msgstr "無此通知" +msgstr "" #: actions/editgroup.php:106 actions/editgroup.php:165 #: actions/grouplogo.php:107 actions/grouplogo.php:111 @@ -4049,29 +4031,26 @@ msgid "Use this form to edit the group." msgstr "" #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -#, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "暱稱請用小寫字母或數字,勿加空格。" +msgstr "" #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 -#, fuzzy msgid "description is too long (max 140 chars)." -msgstr "自我介紹過長(共140個字元)" +msgstr "" #: actions/editgroup.php:218 actions/editgroup.php:253 -#, fuzzy msgid "Could not update group." -msgstr "無法更新使用者" +msgstr "" #: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "" #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format msgid "Awaiting confirmation on this address. " -msgstr "確認碼發生錯誤" +msgstr "" #: actions/emailsettings.php:139 actions/smssettings.php:150 msgid "Make a new email address for posting to; " @@ -4087,14 +4066,12 @@ msgid "Allow friends to nudge me and send me an email." msgstr "" #: actions/emailsettings.php:321 -#, fuzzy msgid "That email address already belongs " -msgstr "此電子信箱已註冊過了" +msgstr "" #: actions/emailsettings.php:343 -#, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" +msgstr "" #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" @@ -4117,9 +4094,8 @@ msgstr "" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 -#, fuzzy msgid "No notice content!" -msgstr "無內容" +msgstr "" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 #: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 @@ -4139,9 +4115,8 @@ msgstr "" #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 #: lib/action.php:1070 -#, fuzzy msgid "Before" -msgstr "之前的內容»" +msgstr "" #: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format @@ -4160,9 +4135,9 @@ msgstr "" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format msgid "Invite your friends to use %s" -msgstr "發送給%s好友的訂閱" +msgstr "" #: actions/facebookinvite.php:113 actions/facebookinvite.php:126 #: actions/facebookinvite.php:124 @@ -4177,9 +4152,8 @@ msgid "Send invitations" msgstr "" #: actions/facebookremove.php:56 -#, fuzzy msgid "Couldn't remove Facebook user." -msgstr "無法更新使用者" +msgstr "" #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" @@ -4222,14 +4196,13 @@ msgstr "" #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 #: lib/popularnoticesection.php:87 -#, fuzzy msgid "Popular notices" -msgstr "無此通知" +msgstr "" #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format msgid "Popular notices, page %d" -msgstr "無此通知" +msgstr "" #: actions/favorited.php:79 msgid "The most popular notices on the site right now." @@ -4271,15 +4244,13 @@ msgstr "" #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 -#, fuzzy msgid "Logo updated." -msgstr "更新個人圖像" +msgstr "" #: actions/grouplogo.php:450 actions/grouplogo.php:403 #: actions/grouplogo.php:398 -#, fuzzy msgid "Failed updating logo." -msgstr "無法上傳個人圖像" +msgstr "" #: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format @@ -4313,9 +4284,8 @@ msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -#, fuzzy msgid "Create a new group" -msgstr "新增帳號" +msgstr "" #: actions/groupsearch.php:57 #, php-format @@ -4341,9 +4311,9 @@ msgid "Send me replies through Jabber/GTalk " msgstr "" #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format msgid "A confirmation code was sent " -msgstr "無確認碼" +msgstr "" #: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." @@ -4354,9 +4324,9 @@ msgid "You are already a member of that group" msgstr "" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format msgid "Could not join user %s to group %s" -msgstr "無法連結到伺服器:%s" +msgstr "" #: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format @@ -4375,9 +4345,8 @@ msgstr "" #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 #: lib/command.php:212 lib/command.php:263 -#, fuzzy msgid "No such group." -msgstr "無此通知" +msgstr "" #: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." @@ -4394,9 +4363,9 @@ msgstr "" #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %s to group %s" -msgstr "無法從 %s 建立OpenID" +msgstr "" #: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 @@ -4423,15 +4392,13 @@ msgstr "" #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 -#, fuzzy msgid "Could not create group." -msgstr "無法存取個人圖像資料" +msgstr "" #: actions/newgroup.php:191 actions/newgroup.php:229 #: actions/apigroupcreate.php:166 actions/newgroup.php:224 -#, fuzzy msgid "Could not set group membership." -msgstr "註冊失敗" +msgstr "" #: actions/newmessage.php:119 actions/newnotice.php:132 msgid "That's too long. " @@ -4474,9 +4441,8 @@ msgid "Removing your only OpenID " msgstr "" #: actions/othersettings.php:60 -#, fuzzy msgid "Other Settings" -msgstr "線上即時通設定" +msgstr "" #: actions/othersettings.php:71 msgid "Manage various other options." @@ -4497,14 +4463,12 @@ msgstr "" #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 -#, fuzzy msgid "URL shortening service is too long (max 50 chars)." -msgstr "地點過長(共255個字)" +msgstr "" #: actions/passwordsettings.php:69 -#, fuzzy msgid "Change your password." -msgstr "更改密碼" +msgstr "" #: actions/passwordsettings.php:89 actions/recoverpassword.php:228 #: actions/passwordsettings.php:95 actions/recoverpassword.php:231 @@ -4512,9 +4476,9 @@ msgid "Password change" msgstr "" #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format msgid "Not a valid people tag: %s" -msgstr "此信箱無效" +msgstr "" #: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format @@ -4543,15 +4507,14 @@ msgstr "" #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"" -msgstr "個人首頁連結%s無效" +msgstr "" #: actions/profilesettings.php:311 actions/profilesettings.php:310 #: actions/profilesettings.php:336 -#, fuzzy msgid "Couldn't save tags." -msgstr "無法儲存個人資料" +msgstr "" #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 @@ -4599,9 +4562,8 @@ msgid "With this form you can create " msgstr "" #: actions/register.php:368 -#, fuzzy msgid "1-64 lowercase letters or numbers, " -msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" +msgstr "" #: actions/register.php:382 actions/register.php:386 msgid "Used only for updates, announcements, " @@ -4612,18 +4574,16 @@ msgid "URL of your homepage, blog, " msgstr "" #: actions/register.php:404 -#, fuzzy msgid "Describe yourself and your " -msgstr "請在140個字以內描述你自己與你的興趣" +msgstr "" #: actions/register.php:410 msgid "Where you are, like \"City, " msgstr "" #: actions/register.php:432 -#, fuzzy msgid " except this private data: password, " -msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" +msgstr "" #: actions/register.php:471 #, php-format @@ -4661,9 +4621,8 @@ msgstr "" #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 -#, fuzzy msgid "Group profile" -msgstr "無此通知" +msgstr "" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 @@ -4701,9 +4660,8 @@ msgstr "" #: actions/showgroup.php:384 actions/showgroup.php:373 #: actions/showgroup.php:430 actions/showgroup.php:381 #: actions/showgroup.php:438 -#, fuzzy msgid "Members" -msgstr "何時加入會員的呢?" +msgstr "" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 @@ -4736,16 +4694,14 @@ msgid "%s, page %d" msgstr "" #: actions/showstream.php:143 -#, fuzzy msgid "'s profile" -msgstr "無此通知" +msgstr "" #: actions/showstream.php:236 actions/tagother.php:77 #: actions/showstream.php:220 actions/showstream.php:185 #: actions/showstream.php:193 -#, fuzzy msgid "User profile" -msgstr "無此通知" +msgstr "" #: actions/showstream.php:240 actions/tagother.php:81 #: actions/showstream.php:224 actions/showstream.php:189 @@ -4769,9 +4725,8 @@ msgid "Message" msgstr "" #: actions/showstream.php:451 lib/profileaction.php:157 -#, fuzzy msgid "All subscribers" -msgstr "所有訂閱" +msgstr "" #: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" @@ -4785,18 +4740,16 @@ msgid "" msgstr "" #: actions/smssettings.php:128 -#, fuzzy msgid "Phone number, no punctuation or spaces, " -msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" +msgstr "" #: actions/smssettings.php:162 msgid "Send me notices through SMS; " msgstr "" #: actions/smssettings.php:335 -#, fuzzy msgid "A confirmation code was sent to the phone number you added. " -msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" +msgstr "" #: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" @@ -4807,24 +4760,21 @@ msgid "You are not subscribed to that profile." msgstr "" #: actions/subedit.php:83 -#, fuzzy msgid "Could not save subscription." -msgstr "註冊失敗" +msgstr "" #: actions/subscribe.php:55 -#, fuzzy msgid "Not a local user." -msgstr "無此使用者" +msgstr "" #: actions/subscribe.php:69 -#, fuzzy msgid "Subscribed" -msgstr "此帳號已註冊" +msgstr "" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format msgid "%s subscribers" -msgstr "此帳號已註冊" +msgstr "" #: actions/subscribers.php:52 #, php-format @@ -4841,14 +4791,14 @@ msgid "These are the people who " msgstr "" #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format msgid "%s subscriptions" -msgstr "所有訂閱" +msgstr "" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format msgid "%s subscriptions, page %d" -msgstr "所有訂閱" +msgstr "" #: actions/subscriptions.php:65 msgid "These are the people whose notices " @@ -4861,14 +4811,13 @@ msgstr "" #: actions/subscriptions.php:122 actions/subscriptions.php:124 #: actions/subscriptions.php:183 actions/subscriptions.php:194 -#, fuzzy msgid "Jabber" -msgstr "查無此Jabber ID" +msgstr "" #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format msgid "Notices tagged with %s, page %d" -msgstr "&s的微型部落格" +msgstr "" #: actions/tag.php:66 actions/tag.php:73 #, php-format @@ -4876,14 +4825,12 @@ msgid "Messages tagged \"%s\", most recent first" msgstr "" #: actions/tagother.php:33 -#, fuzzy msgid "Not logged in" -msgstr "已登入" +msgstr "" #: actions/tagother.php:39 -#, fuzzy msgid "No id argument." -msgstr "無此文件" +msgstr "" #: actions/tagother.php:65 #, php-format @@ -4910,23 +4857,21 @@ msgid "" msgstr "" #: actions/tagother.php:198 actions/tagother.php:200 -#, fuzzy msgid "Could not save tags." -msgstr "無法存取個人圖像資料" +msgstr "" #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" #: actions/tagrss.php:35 -#, fuzzy msgid "No such tag." -msgstr "無此通知" +msgstr "" #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format msgid "Microblog tagged with %s" -msgstr "&s的微型部落格" +msgstr "" #: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 #: actions/apiblockcreate.php:108 @@ -4940,9 +4885,8 @@ msgstr "" #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 -#, fuzzy msgid "Not found." -msgstr "目前無請求" +msgstr "" #: actions/twittersettings.php:71 msgid "Add your Twitter account to automatically send " @@ -4953,9 +4897,8 @@ msgid "Twitter user name" msgstr "" #: actions/twittersettings.php:126 actions/twittersettings.php:129 -#, fuzzy msgid "Twitter password" -msgstr "新密碼" +msgstr "" #: actions/twittersettings.php:228 actions/twittersettings.php:232 #: actions/twittersettings.php:248 @@ -4967,28 +4910,25 @@ msgid "Username must have only numbers, " msgstr "" #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format msgid "Unable to retrieve account information " -msgstr "無法取消信箱確認" +msgstr "" #: actions/unblock.php:108 actions/groupunblock.php:128 -#, fuzzy msgid "Error removing the block." -msgstr "儲存使用者發生錯誤" +msgstr "" #: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -#, fuzzy msgid "No profile id in request." -msgstr "無確認請求" +msgstr "" #: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" #: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -#, fuzzy msgid "Unsubscribed" -msgstr "此帳號已註冊" +msgstr "" #: actions/usergroups.php:63 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 @@ -5003,9 +4943,8 @@ msgstr "" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 -#, fuzzy msgid "Problem saving notice. Unknown user." -msgstr "儲存使用者發生錯誤" +msgstr "" #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 @@ -5019,9 +4958,8 @@ msgid "You are banned from posting notices on this site." msgstr "" #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -#, fuzzy msgid "Upload an avatar" -msgstr "無法上傳個人圖像" +msgstr "" #: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 #: lib/accountsettingsaction.php:123 @@ -5055,9 +4993,8 @@ msgid "Search for people or text" msgstr "" #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy msgid "Account" -msgstr "關於" +msgstr "" #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" @@ -5076,33 +5013,28 @@ msgid "Login to the site" msgstr "" #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 -#, fuzzy msgid "Create an account" -msgstr "新增帳號" +msgstr "" #: lib/action.php:341 lib/action.php:418 -#, fuzzy msgid "Login with OpenID" -msgstr "無此OpenID" +msgstr "" #: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -#, fuzzy msgid "Help me!" -msgstr "求救" +msgstr "" #: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -#, fuzzy msgid "Site notice" -msgstr "新訊息" +msgstr "" #: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -#, fuzzy msgid "Page notice" -msgstr "新訊息" +msgstr "" #: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" @@ -5123,9 +5055,8 @@ msgstr "" #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 -#, fuzzy msgid "Block this user" -msgstr "無此使用者" +msgstr "" #: lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 @@ -5143,9 +5074,8 @@ msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 -#, fuzzy msgid " a new account." -msgstr "新增帳號" +msgstr "" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 #: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 @@ -5154,9 +5084,8 @@ msgid "Published" msgstr "" #: lib/favorform.php:114 lib/favorform.php:140 -#, fuzzy msgid "Favor this notice" -msgstr "無此通知" +msgstr "" #: lib/feedlist.php:64 msgid "Export data" @@ -5191,14 +5120,12 @@ msgstr "" #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 -#, fuzzy msgid "Description" -msgstr "所有訂閱" +msgstr "" #: lib/groupeditform.php:153 lib/groupeditform.php:168 -#, fuzzy msgid "Describe the group or topic in 140 chars" -msgstr "請在140個字以內描述你自己與你的興趣" +msgstr "" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 @@ -5220,9 +5147,8 @@ msgid "Edit %s group properties" msgstr "" #: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy msgid "Logo" -msgstr "登出" +msgstr "" #: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format @@ -5243,28 +5169,24 @@ msgid "Tags in %s group's notices" msgstr "" #: lib/htmloutputter.php:104 -#, fuzzy msgid "This page is not available in a " -msgstr "個人首頁位址錯誤" +msgstr "" #: lib/joinform.php:114 -#, fuzzy msgid "Join" -msgstr "登入" +msgstr "" #: lib/leaveform.php:114 msgid "Leave" msgstr "" #: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -#, fuzzy msgid "Login with a username and password" -msgstr "使用者名稱或密碼無效" +msgstr "" #: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -#, fuzzy msgid "Sign up for a new account" -msgstr "新增帳號" +msgstr "" #: lib/logingroupnav.php:82 msgid "Login or register with OpenID" @@ -5278,9 +5200,9 @@ msgid "" msgstr "" #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format msgid "%1$s is now listening to " -msgstr "現在%1$s在%2$s成為你的粉絲囉" +msgstr "" #: lib/mail.php:254 lib/mail.php:253 #, php-format @@ -5310,9 +5232,9 @@ msgid "%1$s (%2$s) is wondering what you are up to " msgstr "" #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format msgid "%1$s just added your notice from %2$s" -msgstr "現在%1$s在%2$s成為你的粉絲囉" +msgstr "" #: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 #: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 @@ -5324,15 +5246,13 @@ msgid "Send a direct notice" msgstr "" #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -#, fuzzy msgid "Send a notice" -msgstr "新訊息" +msgstr "" #: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 #: lib/noticeform.php:173 -#, fuzzy msgid "Available characters" -msgstr "6個以上字元" +msgstr "" #: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" @@ -5404,9 +5324,8 @@ msgid "Popular" msgstr "" #: lib/searchgroupnav.php:82 -#, fuzzy msgid "Notice" -msgstr "新訊息" +msgstr "" #: lib/searchgroupnav.php:85 msgid "Find groups on this site" @@ -5417,14 +5336,14 @@ msgid "Untitled section" msgstr "" #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format msgid "People %s subscribes to" -msgstr "無此訂閱" +msgstr "" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format msgid "People subscribed to %s" -msgstr "此帳號已註冊" +msgstr "" #: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format @@ -5456,9 +5375,8 @@ msgstr "" #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 -#, fuzzy msgid "Unblock this user" -msgstr "無此使用者" +msgstr "" #: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" @@ -5469,24 +5387,23 @@ msgid "Unsubscribe from this user" msgstr "" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 1.0)" -msgstr "發送給%s好友的訂閱" +msgstr "" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 2.0)" -msgstr "發送給%s好友的訂閱" +msgstr "" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Atom)" -msgstr "發送給%s好友的訂閱" +msgstr "" #: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy msgid "You and friends" -msgstr "%s與好友" +msgstr "" #: actions/avatarsettings.php:78 #, php-format @@ -5494,9 +5411,8 @@ msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "" #: actions/avatarsettings.php:373 -#, fuzzy msgid "Avatar deleted." -msgstr "更新個人圖像" +msgstr "" #: actions/block.php:129 actions/block.php:136 msgid "" @@ -5549,9 +5465,9 @@ msgid "Pick a square area of the image to be the logo." msgstr "" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format msgid "Microblog by %s group" -msgstr "&s的微型部落格" +msgstr "" #: actions/groupsearch.php:57 actions/groupsearch.php:52 #, php-format @@ -5575,16 +5491,16 @@ msgid "Only logged-in users can send direct messages." msgstr "" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%s\" on %s" -msgstr "搜尋 \"%s\"相關資料" +msgstr "" #: actions/openidlogin.php:66 -#, fuzzy, php-format +#, php-format msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " "before changing your settings." -msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更改設定。" +msgstr "" #: actions/public.php:125 actions/public.php:133 actions/public.php:151 msgid "Public Stream Feed (RSS 1.0)" @@ -5595,9 +5511,8 @@ msgid "Public Stream Feed (RSS 2.0)" msgstr "" #: actions/public.php:135 actions/public.php:143 actions/public.php:159 -#, fuzzy msgid "Public Stream Feed (Atom)" -msgstr "%s的公開內容" +msgstr "" #: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format @@ -5621,17 +5536,15 @@ msgid "Creative Commons Attribution 3.0" msgstr "" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 -#, fuzzy msgid "" " except this private data: password, email address, IM address, and phone " "number." -msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" +msgstr "" #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 -#, fuzzy msgid "Created" -msgstr "新增" +msgstr "" #: actions/showgroup.php:393 actions/showgroup.php:440 #: actions/showgroup.php:448 @@ -5645,14 +5558,13 @@ msgid "" msgstr "" #: actions/showstream.php:147 -#, fuzzy msgid "Your profile" -msgstr "無此通知" +msgstr "" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format msgid "%s's profile" -msgstr "無此通知" +msgstr "" #: actions/showstream.php:163 actions/showstream.php:128 #, php-format @@ -5676,15 +5588,13 @@ msgstr "" #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 -#, fuzzy msgid "Edit Avatar" -msgstr "個人圖像" +msgstr "" #: actions/showstream.php:316 actions/showstream.php:281 #: actions/showstream.php:366 -#, fuzzy msgid "Edit profile settings" -msgstr "線上即時通設定" +msgstr "" #: actions/showstream.php:317 actions/showstream.php:282 #: actions/showstream.php:367 @@ -5702,11 +5612,10 @@ msgid "" msgstr "" #: actions/smssettings.php:335 actions/smssettings.php:347 -#, fuzzy msgid "" "A confirmation code was sent to the phone number you added. Check your phone " "for the code and instructions on how to use it." -msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" +msgstr "" #: actions/twitapifavorites.php:171 lib/mail.php:556 #: actions/twitapifavorites.php:222 @@ -5735,9 +5644,8 @@ msgstr "" #: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 #: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -#, fuzzy msgid "No such user!" -msgstr "無此使用者" +msgstr "" #: actions/twittersettings.php:72 msgid "" @@ -5746,9 +5654,9 @@ msgid "" msgstr "" #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "無法取消信箱確認" +msgstr "" #: actions/userauthorization.php:86 actions/userauthorization.php:81 msgid "" @@ -5818,11 +5726,11 @@ msgid "Database error" msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format +#, php-format msgid "" "To use the %s Facebook Application you need to login with your username and " "password. Don't have a username yet? " -msgstr "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" +msgstr "" #: lib/feed.php:85 msgid "RSS 1.0" @@ -5863,7 +5771,7 @@ msgid "" msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format +#, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" "\n" @@ -5876,13 +5784,6 @@ msgid "" "----\n" "Change your email address or notification options at %8$s\n" msgstr "" -"現在%1$s在%2$s成為你的粉絲囉。\n" -"\n" -"\t%3$s\n" -"\n" -"\n" -"%4$s.\n" -"敬上。\n" #: lib/mail.php:466 #, php-format @@ -5988,48 +5889,42 @@ msgid "" msgstr "" #: actions/attachment.php:73 -#, fuzzy msgid "No such attachment." -msgstr "無此文件" +msgstr "" #: actions/block.php:149 -#, fuzzy msgid "Do not block this user from this group" -msgstr "無法連結到伺服器:%s" +msgstr "" #: actions/block.php:150 -#, fuzzy msgid "Block this user from this group" -msgstr "無此使用者" +msgstr "" #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format msgid "%s blocked profiles" -msgstr "無此通知" +msgstr "" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format msgid "%s blocked profiles, page %d" -msgstr "%s與好友" +msgstr "" #: actions/blockedfromgroup.php:108 msgid "A list of the users blocked from joining this group." msgstr "" #: actions/blockedfromgroup.php:281 -#, fuzzy msgid "Unblock user from group" -msgstr "無此使用者" +msgstr "" #: actions/conversation.php:99 -#, fuzzy msgid "Conversation" -msgstr "地點" +msgstr "" #: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy msgid "Do not delete this notice" -msgstr "無此通知" +msgstr "" #: actions/editgroup.php:214 actions/newgroup.php:164 #: actions/apigroupcreate.php:291 actions/editgroup.php:215 @@ -6041,16 +5936,16 @@ msgstr "" #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"" -msgstr "個人首頁連結%s無效" +msgstr "" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format msgid "Alias \"%s\" already in use. Try another one." -msgstr "此暱稱已有人使用。再試試看別的吧。" +msgstr "" #: actions/editgroup.php:233 actions/newgroup.php:183 #: actions/apigroupcreate.php:334 actions/editgroup.php:234 @@ -6060,9 +5955,8 @@ msgstr "" #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 -#, fuzzy msgid "Could not create aliases." -msgstr "無法存取個人圖像資料" +msgstr "" #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." @@ -6082,14 +5976,12 @@ msgid "" msgstr "" #: actions/file.php:34 -#, fuzzy msgid "No notice id" -msgstr "新訊息" +msgstr "" #: actions/file.php:38 -#, fuzzy msgid "No notice" -msgstr "新訊息" +msgstr "" #: actions/file.php:42 msgid "No attachments" @@ -6100,9 +5992,8 @@ msgid "No uploaded attachments" msgstr "" #: actions/finishopenidlogin.php:211 -#, fuzzy msgid "Not a valid invitation code." -msgstr "此信箱無效" +msgstr "" #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 @@ -6123,9 +6014,8 @@ msgstr "" #: actions/groupblock.php:136 actions/groupmembers.php:311 #: actions/groupmembers.php:314 -#, fuzzy msgid "Block user from group" -msgstr "無此使用者" +msgstr "" #: actions/groupblock.php:155 #, php-format @@ -6157,9 +6047,8 @@ msgstr "" #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 #: lib/designsettings.php:461 -#, fuzzy msgid "Couldn't update your design." -msgstr "無法更新使用者" +msgstr "" #: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 @@ -6187,9 +6076,8 @@ msgstr "" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 -#, fuzzy msgid "No results." -msgstr "無結果" +msgstr "" #: actions/groupsearch.php:82 #, php-format @@ -6290,9 +6178,8 @@ msgid "File upload stopped by extension." msgstr "" #: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy msgid "Couldn't save file." -msgstr "無法儲存個人資料" +msgstr "" #: actions/newnotice.php:246 scripts/maildaemon.php:101 msgid "Max notice size is 140 chars, including attachment URL." @@ -6393,11 +6280,10 @@ msgid "" msgstr "" #: actions/recoverpassword.php:152 -#, fuzzy msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." -msgstr "若忘記或遺失密碼,我們會寄新的密碼到你帳號中的信箱。" +msgstr "" #: actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -6408,9 +6294,8 @@ msgid "Password recover" msgstr "" #: actions/register.php:86 -#, fuzzy msgid "Sorry, invalid invitation code." -msgstr "確認碼發生錯誤" +msgstr "" #: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 msgid "Subscribe to a remote user" @@ -6438,9 +6323,9 @@ msgid "" msgstr "" #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format msgid "%s's favorite notices, page %d" -msgstr "無此通知" +msgstr "" #: actions/showfavorites.php:170 actions/showfavorites.php:205 msgid "" @@ -6501,9 +6386,8 @@ msgid "Admins" msgstr "" #: actions/shownotice.php:101 -#, fuzzy msgid "Not a local notice" -msgstr "無此使用者" +msgstr "" #: actions/showstream.php:72 #, php-format @@ -6571,9 +6455,9 @@ msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format msgid "%s is not listening to anyone." -msgstr "現在%1$s在%2$s成為你的粉絲囉" +msgstr "" #: actions/tag.php:77 actions/tag.php:86 #, php-format @@ -6595,29 +6479,27 @@ msgstr "" #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 -#, fuzzy msgid "Could not determine source user." -msgstr "無法更新使用者" +msgstr "" #: actions/twitapifriendships.php:215 msgid "Target user not specified." msgstr "" #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy msgid "Could not find target user." -msgstr "無法更新使用者" +msgstr "" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format msgid "%1$s / Updates mentioning %2$s" -msgstr "%1$s的狀態是%2$s" +msgstr "" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format msgid "Updates tagged with %1$s on %2$s!" -msgstr "&s的微型部落格" +msgstr "" #: actions/twittersettings.php:165 msgid "Import my Friends Timeline." @@ -6628,9 +6510,8 @@ msgid "License" msgstr "" #: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy msgid "Reject this subscription" -msgstr "所有訂閱" +msgstr "" #: actions/userdesignsettings.php:76 lib/designsettings.php:65 msgid "Profile design" @@ -6674,9 +6555,8 @@ msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" #: classes/Notice.php:139 classes/Notice.php:179 -#, fuzzy msgid "Problem saving notice. Too long." -msgstr "儲存使用者發生錯誤" +msgstr "" #: classes/User.php:319 classes/User.php:327 #, php-format @@ -6689,9 +6569,8 @@ msgid "Design" msgstr "" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy msgid "Design your profile" -msgstr "無此通知" +msgstr "" #: lib/action.php:712 lib/action.php:727 msgid "TOS" @@ -6722,9 +6601,8 @@ msgid "Change background image" msgstr "" #: lib/designsettings.php:105 -#, fuzzy msgid "Upload file" -msgstr "無此通知" +msgstr "" #: lib/designsettings.php:109 msgid "" @@ -6748,27 +6626,24 @@ msgid "Tile background image" msgstr "" #: lib/designsettings.php:170 -#, fuzzy msgid "Change colours" -msgstr "更改密碼" +msgstr "" #: lib/designsettings.php:178 msgid "Background" msgstr "" #: lib/designsettings.php:191 -#, fuzzy msgid "Content" -msgstr "連結" +msgstr "" #: lib/designsettings.php:204 msgid "Sidebar" msgstr "" #: lib/designsettings.php:230 -#, fuzzy msgid "Links" -msgstr "登入" +msgstr "" #: lib/designsettings.php:247 msgid "Use defaults" @@ -6800,14 +6675,13 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d" msgstr "" #: lib/groupnav.php:100 -#, fuzzy msgid "Blocked" -msgstr "無此使用者" +msgstr "" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format msgid "%s blocked users" -msgstr "無此使用者" +msgstr "" #: lib/groupnav.php:119 #, php-format @@ -6892,9 +6766,8 @@ msgid "Attach a file" msgstr "" #: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy msgid "in context" -msgstr "無內容" +msgstr "" #: lib/profileaction.php:177 msgid "User ID" @@ -6915,9 +6788,9 @@ msgid "People Tagcloud as tagged" msgstr "" #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format msgid "%s is not a valid color!" -msgstr "個人首頁位址錯誤" +msgstr "" #: lib/webcolor.php:123 #, php-format @@ -6926,9 +6799,8 @@ msgstr "" #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 -#, fuzzy msgid "No such page" -msgstr "無此通知" +msgstr "" #: actions/apidirectmessage.php:89 #, php-format @@ -6941,36 +6813,35 @@ msgid "That's too long. Max message size is %d chars." msgstr "" #: actions/apifriendshipsdestroy.php:109 -#, fuzzy msgid "Could not unfollow user: User not found." -msgstr "無法連結到伺服器:%s" +msgstr "" #: actions/apifriendshipsdestroy.php:120 msgid "You cannot unfollow yourself!" msgstr "" #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format msgid "Description is too long (max %d chars)." -msgstr "自我介紹過長(共140個字元)" +msgstr "" #: actions/apigroupjoin.php:110 msgid "You are already a member of that group." msgstr "" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format msgid "Could not join user %s to group %s." -msgstr "無法連結到伺服器:%s" +msgstr "" #: actions/apigroupleave.php:114 msgid "You are not a member of this group." msgstr "" #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %s to group %s." -msgstr "無法從 %s 建立OpenID" +msgstr "" #: actions/apigrouplist.php:95 #, php-format @@ -7015,9 +6886,9 @@ msgid "Post to " msgstr "" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format msgid "description is too long (max %d chars)." -msgstr "自我介紹過長(共140個字元)" +msgstr "" #: actions/favoritesrss.php:115 #, php-format @@ -7033,23 +6904,20 @@ msgid "You are not authorized." msgstr "" #: actions/finishremotesubscribe.php:109 -#, fuzzy msgid "Could not convert request token to access token." -msgstr "無法轉換請求標記以致無法存取標記" +msgstr "" #: actions/finishremotesubscribe.php:114 msgid "Remote service uses unknown version of OMB protocol." msgstr "" #: actions/getfile.php:75 -#, fuzzy msgid "No such file." -msgstr "無此通知" +msgstr "" #: actions/getfile.php:79 -#, fuzzy msgid "Cannot read file." -msgstr "無此通知" +msgstr "" #: actions/grouprss.php:133 #, php-format @@ -7057,9 +6925,8 @@ msgid "Updates from members of %1$s on %2$s!" msgstr "" #: actions/imsettings.php:89 -#, fuzzy msgid "IM is not available." -msgstr "個人首頁位址錯誤" +msgstr "" #: actions/login.php:259 #, php-format @@ -7074,9 +6941,9 @@ msgid "Updates with \"%s\"" msgstr "" #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "所有符合 \"%s\"的更新" +msgstr "" #: actions/oembed.php:157 msgid "content type " @@ -7092,19 +6959,18 @@ msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." msgstr "" #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format msgid "Describe yourself and your interests in %d chars" -msgstr "請在140個字以內描述你自己與你的興趣" +msgstr "" #: actions/profilesettings.php:125 actions/register.php:457 -#, fuzzy msgid "Describe yourself and your interests" -msgstr "請在140個字以內描述你自己與你的興趣" +msgstr "" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format msgid "Bio is too long (max %d chars)." -msgstr "自我介紹過長(共140個字元)" +msgstr "" #: actions/register.php:336 msgid "" @@ -7122,9 +6988,8 @@ msgid "That’s a local profile! Login to subscribe." msgstr "" #: actions/remotesubscribe.php:183 -#, fuzzy msgid "Couldn’t get a request token." -msgstr "無法取得轉換標記" +msgstr "" #: actions/replies.php:144 #, php-format @@ -7147,19 +7012,19 @@ msgid "Replies to %1$s on %2$s!" msgstr "" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "發送給%s好友的訂閱" +msgstr "" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "發送給%s好友的訂閱" +msgstr "" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "發送給%s好友的訂閱" +msgstr "" #: actions/showfavorites.php:211 #, php-format @@ -7170,18 +7035,17 @@ msgid "" msgstr "" #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format msgid "FOAF for %s group" -msgstr "無此通知" +msgstr "" #: actions/shownotice.php:90 msgid "Notice deleted." msgstr "" #: actions/smssettings.php:91 -#, fuzzy msgid "SMS is not available." -msgstr "個人首頁位址錯誤" +msgstr "" #: actions/tag.php:92 #, php-format @@ -7240,9 +7104,9 @@ msgid "Avatar URL ‘%s’ is not valid." msgstr "" #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format msgid "Can’t read avatar URL ‘%s’." -msgstr "無法讀取此%sURL的圖像" +msgstr "" #: actions/userauthorization.php:348 #, php-format @@ -7250,19 +7114,17 @@ msgid "Wrong image type for avatar URL ‘%s’." msgstr "" #: lib/action.php:435 -#, fuzzy msgid "Connect to services" -msgstr "無法連結到伺服器:%s" +msgstr "" #: lib/action.php:785 -#, fuzzy msgid "Site content license" -msgstr "新訊息" +msgstr "" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format msgid "Could not find a user with nickname %s" -msgstr "無法連結到伺服器:%s" +msgstr "" #: lib/command.php:92 msgid "It does not make a lot of sense to nudge yourself!" @@ -7293,9 +7155,8 @@ msgid "Reply to %s sent" msgstr "" #: lib/command.php:441 -#, fuzzy msgid "Error saving notice." -msgstr "新增訊息時發生錯誤" +msgstr "" #: lib/command.php:587 msgid "" @@ -7333,9 +7194,8 @@ msgid "" msgstr "" #: lib/common.php:191 -#, fuzzy msgid "No configuration file found. " -msgstr "無確認碼" +msgstr "" #: lib/common.php:192 msgid "I looked for configuration files in the following places: " @@ -7354,14 +7214,13 @@ msgid "Select tag to filter" msgstr "" #: lib/groupeditform.php:168 -#, fuzzy msgid "Describe the group or topic" -msgstr "請在140個字以內描述你自己與你的興趣" +msgstr "" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format msgid "Describe the group or topic in %d characters" -msgstr "請在140個字以內描述你自己與你的興趣" +msgstr "" #: lib/jabber.php:192 #, php-format @@ -7369,9 +7228,9 @@ msgid "notice id: %s" msgstr "" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "現在%1$s在%2$s成為你的粉絲囉" +msgstr "" #: lib/mail.php:556 #, php-format @@ -7427,16 +7286,5 @@ msgid "Could not determine file's mime-type!" msgstr "" #: lib/oauthstore.php:345 -#, fuzzy msgid "Duplicate notice" -msgstr "新訊息" - -#, fuzzy -#~ msgid "Delete my account" -#~ msgstr "新增帳號" - -#~ msgid "Couldn't confirm email." -#~ msgstr "無法確認信箱" - -#~ msgid "Email address" -#~ msgstr "電子信箱" +msgstr "" diff --git a/scripts/update_translations.php b/scripts/update_translations.php index f145c1f0b6..4f3ebb1a2d 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -43,8 +43,16 @@ $languages = get_all_languages(); foreach ($languages as $language) { $code = $language['lang']; - $file_url = 'http://status.net/pootle/' . $code . - '/statusnet/LC_MESSAGES/statusnet.po'; + + // Fetch updates from TranslateWiki... + $twcode = str_replace('_', '-', strtolower($code)); // pt_BR -> pt-br + $file_url = 'http://translatewiki.net/w/i.php?' . + http_build_query(array( + 'title' => 'Special:Translate', + 'task' => 'export-to-file', + 'group' => 'out-statusnet', + 'language' => $twcode)); + $lcdir = INSTALLDIR . '/locale/' . $code; $msgdir = "$lcdir/LC_MESSAGES"; $pofile = "$msgdir/statusnet.po"; @@ -72,7 +80,8 @@ foreach ($languages as $language) { if (sha1($new_file) != $existingSHA1 || !file_exists($mofile)) { echo "Updating ".$code."\n"; file_put_contents($pofile, $new_file); - system(sprintf('msgmerge -U %s %s', $pofile, $statusnet_pot)); + // --backup=off is workaround for Mac OS X fail + system(sprintf('msgmerge -U --backup=off %s %s', $pofile, $statusnet_pot)); system(sprintf('msgfmt -f -o %s %s', $mofile, $pofile)); } else { echo "Unchanged - ".$code."\n"; From 5aa9de3364328cfc26a305de34cdffefcd8688dc Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Tue, 3 Nov 2009 17:43:18 -0500 Subject: [PATCH 45/92] Added a Bitly URL Shortener. Unfortunately, it doesn't work, as bit.ly requires credentials to shorten URLs now, and we presently have no way to provide them. --- plugins/BitlyUrl/BitlyUrlPlugin.php | 61 +++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 plugins/BitlyUrl/BitlyUrlPlugin.php diff --git a/plugins/BitlyUrl/BitlyUrlPlugin.php b/plugins/BitlyUrl/BitlyUrlPlugin.php new file mode 100644 index 0000000000..478ef99d28 --- /dev/null +++ b/plugins/BitlyUrl/BitlyUrlPlugin.php @@ -0,0 +1,61 @@ +. + * + * @category Plugin + * @package StatusNet + * @author Craig Andrews + * @copyright 2009 Craig Andrews http://candrews.integralblue.com + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +class BitlyUrlPlugin extends Plugin +{ + function __construct() + { + parent::__construct(); + } + + function onInitializePlugin(){ + $this->registerUrlShortener( + 'bit.ly', + array(), + array('BitlyUrl',array('http://bit.ly/api?method=shorten&long_url=')) + ); + } +} + +class BitlyUrl extends ShortUrlApi +{ + protected function shorten_imp($url) { + $response = $this->http_get($url); + if(!$response){ + return $url; + }else{ + return current(json_decode($response)->results)->hashUrl; + } + } +} + From 70a950c79f23108843eb780d9564efe72766af61 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 3 Nov 2009 15:23:28 -0800 Subject: [PATCH 46/92] Bug 1817: undefined property in registration form http://status.net/trac/ticket/1817 --- actions/register.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/actions/register.php b/actions/register.php index a6c1a903aa..57f8e7bdf0 100644 --- a/actions/register.php +++ b/actions/register.php @@ -55,6 +55,12 @@ class RegisterAction extends Action var $registered = false; + /** + * Are we processing an invite? + */ + + var $invite = null; + /** * Prepare page to run * From df1ee6867e9774374b01784eb671bd16e6c58984 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 4 Nov 2009 09:12:34 +0000 Subject: [PATCH 47/92] Sync Realtime JavaScript with 0.9.x --- plugins/Realtime/realtimeupdate.js | 43 ++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 4cd68a816b..9371326fe6 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -7,6 +7,7 @@ RealtimeUpdate = { _replyurl: '', _favorurl: '', _deleteurl: '', + _updatecounter: 0, init: function(userid, replyurl, favorurl, deleteurl) { @@ -15,6 +16,8 @@ RealtimeUpdate = { RealtimeUpdate._favorurl = favorurl; RealtimeUpdate._deleteurl = deleteurl; + DT = document.title; + $(window).blur(function() { $('#notices_primary .notice').css({ 'border-top-color':$('#notices_primary .notice:last').css('border-top-color'), @@ -25,24 +28,33 @@ RealtimeUpdate = { 'border-top-color':'#AAAAAA', 'border-top-style':'solid' }); + + RealtimeUpdate._updatecounter = 0; + document.title = DT; + + return false; }); }, receive: function(data) { - id = data.id; + setTimeout(function() { + id = data.id; - // Don't add it if it already exists - // - if ($("#notice-"+id).length > 0) { - return; - } + // Don't add it if it already exists + if ($("#notice-"+id).length > 0) { + return; + } - var noticeItem = RealtimeUpdate.makeNoticeItem(data); - $("#notices_primary .notices").prepend(noticeItem); - $("#notices_primary .notice:first").css({display:"none"}); - $("#notices_primary .notice:first").fadeIn(1000); - NoticeReply(); + var noticeItem = RealtimeUpdate.makeNoticeItem(data); + $("#notices_primary .notices").prepend(noticeItem); + $("#notices_primary .notice:first").css({display:"none"}); + $("#notices_primary .notice:first").fadeIn(1000); + NoticeReply(); + + RealtimeUpdate._updatecounter += 1; + document.title = '('+RealtimeUpdate._updatecounter+') ' + DT; + }, 500); }, makeNoticeItem: function(data) @@ -125,14 +137,17 @@ RealtimeUpdate = { addPopup: function(url, timeline, iconurl) { - $('#content').prepend(''); + $('#notices_primary').css({'position':'relative'}); + $('#notices_primary').prepend(''); $('#realtime_timeline').css({ - 'margin':'0 0 18px 0', + 'margin':'0 0 11px 0', 'background':'transparent url('+ iconurl + ') no-repeat 0% 30%', 'padding':'0 0 0 20px', 'display':'block', - 'float':'right', + 'position':'absolute', + 'top':'-20px', + 'right':'0', 'border':'none', 'cursor':'pointer', 'color':$("a").css("color"), From cc0a6dce36f2d5b1ffe664c24fef8864b0065602 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 4 Nov 2009 09:19:39 +0000 Subject: [PATCH 48/92] Sync RealtimePlugin with 0.9.x --- plugins/Realtime/RealtimePlugin.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 0f0d0f9f42..0c7c1240c3 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -230,6 +230,7 @@ class RealtimePlugin extends Plugin } $action->showContentBlock(); + $action->showScripts(); $action->elementEnd('body'); return false; // No default processing } @@ -239,13 +240,13 @@ class RealtimePlugin extends Plugin // FIXME: this code should be abstracted to a neutral third // party, like Notice::asJson(). I'm not sure of the ethics // of refactoring from within a plugin, so I'm just abusing - // the TwitterApiAction method. Don't do this unless you're me! + // the ApiAction method. Don't do this unless you're me! - require_once(INSTALLDIR.'/lib/twitterapi.php'); + require_once(INSTALLDIR.'/lib/api.php'); - $act = new TwitterApiAction('/dev/null'); + $act = new ApiAction('/dev/null'); - $arr = $act->twitter_status_array($notice, true); + $arr = $act->twitterStatusArray($notice, true); $arr['url'] = $notice->bestUrl(); $arr['html'] = htmlspecialchars($notice->rendered); $arr['source'] = htmlspecialchars($arr['source']); From 1e7c4f773b229f06bbc096449bf80286cf3eec3e Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 4 Nov 2009 09:20:36 +0000 Subject: [PATCH 49/92] Script no longer neeed --- plugins/Realtime/jquery.getUrlParam.js | 72 -------------------------- 1 file changed, 72 deletions(-) delete mode 100644 plugins/Realtime/jquery.getUrlParam.js diff --git a/plugins/Realtime/jquery.getUrlParam.js b/plugins/Realtime/jquery.getUrlParam.js deleted file mode 100644 index e8f73eb478..0000000000 --- a/plugins/Realtime/jquery.getUrlParam.js +++ /dev/null @@ -1,72 +0,0 @@ -/* Copyright (c) 2006-2007 Mathias Bank (http://www.mathias-bank.de) - * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) - * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. - * - * Version 2.1 - * - * Thanks to - * Hinnerk Ruemenapf - http://hinnerk.ruemenapf.de/ for bug reporting and fixing. - * Tom Leonard for some improvements - * - */ -jQuery.fn.extend({ -/** -* Returns get parameters. -* -* If the desired param does not exist, null will be returned -* -* To get the document params: -* @example value = $(document).getUrlParam("paramName"); -* -* To get the params of a html-attribut (uses src attribute) -* @example value = $('#imgLink').getUrlParam("paramName"); -*/ - getUrlParam: function(strParamName){ - strParamName = escape(unescape(strParamName)); - - var returnVal = new Array(); - var qString = null; - - if ($(this).attr("nodeName")=="#document") { - //document-handler - - if (window.location.search.search(strParamName) > -1 ){ - - qString = window.location.search.substr(1,window.location.search.length).split("&"); - } - - } else if ($(this).attr("src")!="undefined") { - - var strHref = $(this).attr("src") - if ( strHref.indexOf("?") > -1 ){ - var strQueryString = strHref.substr(strHref.indexOf("?")+1); - qString = strQueryString.split("&"); - } - } else if ($(this).attr("href")!="undefined") { - - var strHref = $(this).attr("href") - if ( strHref.indexOf("?") > -1 ){ - var strQueryString = strHref.substr(strHref.indexOf("?")+1); - qString = strQueryString.split("&"); - } - } else { - return null; - } - - - if (qString==null) return null; - - - for (var i=0;i Date: Wed, 4 Nov 2009 09:24:14 +0000 Subject: [PATCH 50/92] Added script documentation --- plugins/Realtime/realtimeupdate.js | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 9371326fe6..e82b4dbfbb 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -1,5 +1,31 @@ -// add a notice encoded as JSON into the current timeline -// +/* + * StatusNet - a distributed open-source microblogging tool + * Copyright (C) 2008, StatusNet, Inc. + * + * Add a notice encoded as JSON into the current timeline + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + * @category Plugin + * @package StatusNet + * @author Evan Prodromou + * @author Sarven Capadisli + * @copyright 2009 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + // TODO: i18n RealtimeUpdate = { From b12caedb88d25180bdb86a798f2099ce132343c4 Mon Sep 17 00:00:00 2001 From: Shashi Date: Wed, 4 Nov 2009 18:41:17 +0530 Subject: [PATCH 51/92] Widgetized user profile rendering. --- actions/showstream.php | 259 +-------------------------------- lib/userprofile.php | 323 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 326 insertions(+), 256 deletions(-) create mode 100644 lib/userprofile.php diff --git a/actions/showstream.php b/actions/showstream.php index 4f48060378..663638c18a 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -33,6 +33,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { } require_once INSTALLDIR.'/lib/personalgroupnav.php'; +require_once INSTALLDIR.'/lib/userprofile.php'; require_once INSTALLDIR.'/lib/noticelist.php'; require_once INSTALLDIR.'/lib/profileminilist.php'; require_once INSTALLDIR.'/lib/groupminilist.php'; @@ -181,262 +182,8 @@ class ShowstreamAction extends ProfileAction function showProfile() { - $this->showProfileData(); - $this->showEntityActions(); - } - - function showProfileData() - { - if (Event::handle('StartProfilePageProfileSection', array(&$this, $this->profile))) { - - $this->elementStart('div', 'entity_profile vcard author'); - $this->element('h2', null, _('User profile')); - - if (Event::handle('StartProfilePageProfileElements', array(&$this, $this->profile))) { - - $this->showAvatar(); - $this->showNickname(); - $this->showFullName(); - $this->showLocation(); - $this->showHomepage(); - $this->showBio(); - $this->showProfileTags(); - - Event::handle('EndProfilePageProfileElements', array(&$this, $this->profile)); - } - - $this->elementEnd('div'); - Event::handle('EndProfilePageProfileSection', array(&$this, $this->profile)); - } - } - - function showAvatar() - { - if (Event::handle('StartProfilePageAvatar', array($this, $this->profile))) { - - $avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); - - $this->elementStart('dl', 'entity_depiction'); - $this->element('dt', null, _('Photo')); - $this->elementStart('dd'); - $this->element('img', array('src' => ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_PROFILE_SIZE), - 'class' => 'photo avatar', - 'width' => AVATAR_PROFILE_SIZE, - 'height' => AVATAR_PROFILE_SIZE, - 'alt' => $this->profile->nickname)); - $this->elementEnd('dd'); - - $user = User::staticGet('id', $this->profile->id); - - $cur = common_current_user(); - if ($cur && $cur->id == $user->id) { - $this->elementStart('dd'); - $this->element('a', array('href' => common_local_url('avatarsettings')), _('Edit Avatar')); - $this->elementEnd('dd'); - } - - $this->elementEnd('dl'); - - Event::handle('EndProfilePageAvatar', array($this, $this->profile)); - } - } - - function showNickname() - { - if (Event::handle('StartProfilePageNickname', array($this, $this->profile))) { - - $this->elementStart('dl', 'entity_nickname'); - $this->element('dt', null, _('Nickname')); - $this->elementStart('dd'); - $hasFN = ($this->profile->fullname) ? 'nickname url uid' : 'fn nickname url uid'; - $this->element('a', array('href' => $this->profile->profileurl, - 'rel' => 'me', 'class' => $hasFN), - $this->profile->nickname); - $this->elementEnd('dd'); - $this->elementEnd('dl'); - - Event::handle('EndProfilePageNickname', array($this, $this->profile)); - } - } - - function showFullName() - { - if (Event::handle('StartProfilePageFullName', array($this, $this->profile))) { - if ($this->profile->fullname) { - $this->elementStart('dl', 'entity_fn'); - $this->element('dt', null, _('Full name')); - $this->elementStart('dd'); - $this->element('span', 'fn', $this->profile->fullname); - $this->elementEnd('dd'); - $this->elementEnd('dl'); - } - Event::handle('EndProfilePageFullName', array($this, $this->profile)); - } - } - - function showLocation() - { - if (Event::handle('StartProfilePageLocation', array($this, $this->profile))) { - if ($this->profile->location) { - $this->elementStart('dl', 'entity_location'); - $this->element('dt', null, _('Location')); - $this->element('dd', 'label', $this->profile->location); - $this->elementEnd('dl'); - } - Event::handle('EndProfilePageLocation', array($this, $this->profile)); - } - } - - function showHomepage() - { - if (Event::handle('StartProfilePageHomepage', array($this, $this->profile))) { - if ($this->profile->homepage) { - $this->elementStart('dl', 'entity_url'); - $this->element('dt', null, _('URL')); - $this->elementStart('dd'); - $this->element('a', array('href' => $this->profile->homepage, - 'rel' => 'me', 'class' => 'url'), - $this->profile->homepage); - $this->elementEnd('dd'); - $this->elementEnd('dl'); - } - Event::handle('EndProfilePageHomepage', array($this, $this->profile)); - } - } - - function showBio() - { - if (Event::handle('StartProfilePageBio', array($this, $this->profile))) { - if ($this->profile->bio) { - $this->elementStart('dl', 'entity_note'); - $this->element('dt', null, _('Note')); - $this->element('dd', 'note', $this->profile->bio); - $this->elementEnd('dl'); - } - Event::handle('EndProfilePageBio', array($this, $this->profile)); - } - } - - function showProfileTags() - { - if (Event::handle('StartProfilePageProfileTags', array($this, $this->profile))) { - $tags = Profile_tag::getTags($this->profile->id, $this->profile->id); - - if (count($tags) > 0) { - $this->elementStart('dl', 'entity_tags'); - $this->element('dt', null, _('Tags')); - $this->elementStart('dd'); - $this->elementStart('ul', 'tags xoxo'); - foreach ($tags as $tag) { - $this->elementStart('li'); - // Avoid space by using raw output. - $pt = '#'; - $this->raw($pt); - $this->elementEnd('li'); - } - $this->elementEnd('ul'); - $this->elementEnd('dd'); - $this->elementEnd('dl'); - } - Event::handle('EndProfilePageProfileTags', array($this, $this->profile)); - } - } - - function showEntityActions() - { - if (Event::handle('StartProfilePageActionsSection', array(&$this, $this->profile))) { - - $cur = common_current_user(); - - $this->elementStart('div', 'entity_actions'); - $this->element('h2', null, _('User actions')); - $this->elementStart('ul'); - - if (Event::handle('StartProfilePageActionsElements', array(&$this, $this->profile))) { - if (empty($cur)) { // not logged in - $this->elementStart('li', 'entity_subscribe'); - $this->showRemoteSubscribeLink(); - $this->elementEnd('li'); - } else { - if ($cur->id == $this->profile->id) { // your own page - $this->elementStart('li', 'entity_edit'); - $this->element('a', array('href' => common_local_url('profilesettings'), - 'title' => _('Edit profile settings')), - _('Edit')); - $this->elementEnd('li'); - } else { // someone else's page - - // subscribe/unsubscribe button - - $this->elementStart('li', 'entity_subscribe'); - - if ($cur->isSubscribed($this->profile)) { - $usf = new UnsubscribeForm($this, $this->profile); - $usf->show(); - } else { - $sf = new SubscribeForm($this, $this->profile); - $sf->show(); - } - $this->elementEnd('li'); - - if ($cur->mutuallySubscribed($this->user)) { - - // message - - $this->elementStart('li', 'entity_send-a-message'); - $this->element('a', array('href' => common_local_url('newmessage', array('to' => $this->user->id)), - 'title' => _('Send a direct message to this user')), - _('Message')); - $this->elementEnd('li'); - - // nudge - - if ($this->user->email && $this->user->emailnotifynudge) { - $this->elementStart('li', 'entity_nudge'); - $nf = new NudgeForm($this, $this->user); - $nf->show(); - $this->elementEnd('li'); - } - } - - // block/unblock - - $blocked = $cur->hasBlocked($this->profile); - $this->elementStart('li', 'entity_block'); - if ($blocked) { - $ubf = new UnblockForm($this, $this->profile, - array('action' => 'showstream', - 'nickname' => $this->profile->nickname)); - $ubf->show(); - } else { - $bf = new BlockForm($this, $this->profile, - array('action' => 'showstream', - 'nickname' => $this->profile->nickname)); - $bf->show(); - } - $this->elementEnd('li'); - } - } - - Event::handle('EndProfilePageActionsElements', array(&$this, $this->profile)); - } - - $this->elementEnd('ul'); - $this->elementEnd('div'); - - Event::handle('EndProfilePageActionsSection', array(&$this, $this->profile)); - } - } - - function showRemoteSubscribeLink() - { - $url = common_local_url('remotesubscribe', - array('nickname' => $this->profile->nickname)); - $this->element('a', array('href' => $url, - 'class' => 'entity_remote_subscribe'), - _('Subscribe')); + $profile = new UserProfile($this, $this->user, $this->profile); + $profile->show(); } function showEmptyListMessage() diff --git a/lib/userprofile.php b/lib/userprofile.php new file mode 100644 index 0000000000..ca1b38c8b1 --- /dev/null +++ b/lib/userprofile.php @@ -0,0 +1,323 @@ +. + * + * @category Action + * @package StatusNet + * @author Evan Prodromou + * @author Sarven Capadisli + * @copyright 2008 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { + exit(1); +} + +require_once INSTALLDIR.'/lib/widget.php'; + +/** + * Profile of a user + * + * Shows profile information about a particular user + * + * @category Output + * @package StatusNet + * @author Evan Prodromou + * @author Sarven Capadisli + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + * + * @see HTMLOutputter + */ + +class UserProfile extends Widget +{ + var $user = null; + var $profile = null; + + function __construct($action=null, $user=null, $profile=null) + { + parent::__construct($action); + $this->user = $user; + $this->profile = $profile; + } + + function show() + { + $this->showProfileData(); + $this->showEntityActions(); + } + + function showProfileData() + { + if (Event::handle('StartProfilePageProfileSection', array(&$this, $this->profile))) { + + $this->out->elementStart('div', 'entity_profile vcard author'); + $this->out->element('h2', null, _('User profile')); + + if (Event::handle('StartProfilePageProfileElements', array(&$this, $this->profile))) { + + $this->showAvatar(); + $this->showNickname(); + $this->showFullName(); + $this->showLocation(); + $this->showHomepage(); + $this->showBio(); + $this->showProfileTags(); + + Event::handle('EndProfilePageProfileElements', array(&$this, $this->profile)); + } + + $this->out->elementEnd('div'); + Event::handle('EndProfilePageProfileSection', array(&$this, $this->profile)); + } + } + + function showAvatar() + { + if (Event::handle('StartProfilePageAvatar', array($this, $this->profile))) { + + $avatar = $this->profile->getAvatar(AVATAR_PROFILE_SIZE); + + $this->out->elementStart('dl', 'entity_depiction'); + $this->out->element('dt', null, _('Photo')); + $this->out->elementStart('dd'); + $this->out->element('img', array('src' => ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_PROFILE_SIZE), + 'class' => 'photo avatar', + 'width' => AVATAR_PROFILE_SIZE, + 'height' => AVATAR_PROFILE_SIZE, + 'alt' => $this->profile->nickname)); + $this->out->elementEnd('dd'); + + $user = User::staticGet('id', $this->profile->id); + + $cur = common_current_user(); + if ($cur && $cur->id == $user->id) { + $this->out->elementStart('dd'); + $this->out->element('a', array('href' => common_local_url('avatarsettings')), _('Edit Avatar')); + $this->out->elementEnd('dd'); + } + + $this->out->elementEnd('dl'); + + Event::handle('EndProfilePageAvatar', array($this, $this->profile)); + } + } + + function showNickname() + { + if (Event::handle('StartProfilePageNickname', array($this, $this->profile))) { + + $this->out->elementStart('dl', 'entity_nickname'); + $this->out->element('dt', null, _('Nickname')); + $this->out->elementStart('dd'); + $hasFN = ($this->profile->fullname) ? 'nickname url uid' : 'fn nickname url uid'; + $this->out->element('a', array('href' => $this->profile->profileurl, + 'rel' => 'me', 'class' => $hasFN), + $this->profile->nickname); + $this->out->elementEnd('dd'); + $this->out->elementEnd('dl'); + + Event::handle('EndProfilePageNickname', array($this, $this->profile)); + } + } + + function showFullName() + { + if (Event::handle('StartProfilePageFullName', array($this, $this->profile))) { + if ($this->profile->fullname) { + $this->out->elementStart('dl', 'entity_fn'); + $this->out->element('dt', null, _('Full name')); + $this->out->elementStart('dd'); + $this->out->element('span', 'fn', $this->profile->fullname); + $this->out->elementEnd('dd'); + $this->out->elementEnd('dl'); + } + Event::handle('EndProfilePageFullName', array($this, $this->profile)); + } + } + + function showLocation() + { + if (Event::handle('StartProfilePageLocation', array($this, $this->profile))) { + if ($this->profile->location) { + $this->out->elementStart('dl', 'entity_location'); + $this->out->element('dt', null, _('Location')); + $this->out->element('dd', 'label', $this->profile->location); + $this->out->elementEnd('dl'); + } + Event::handle('EndProfilePageLocation', array($this, $this->profile)); + } + } + + function showHomepage() + { + if (Event::handle('StartProfilePageHomepage', array($this, $this->profile))) { + if ($this->profile->homepage) { + $this->out->elementStart('dl', 'entity_url'); + $this->out->element('dt', null, _('URL')); + $this->out->elementStart('dd'); + $this->out->element('a', array('href' => $this->profile->homepage, + 'rel' => 'me', 'class' => 'url'), + $this->profile->homepage); + $this->out->elementEnd('dd'); + $this->out->elementEnd('dl'); + } + Event::handle('EndProfilePageHomepage', array($this, $this->profile)); + } + } + + function showBio() + { + if (Event::handle('StartProfilePageBio', array($this, $this->profile))) { + if ($this->profile->bio) { + $this->out->elementStart('dl', 'entity_note'); + $this->out->element('dt', null, _('Note')); + $this->out->element('dd', 'note', $this->profile->bio); + $this->out->elementEnd('dl'); + } + Event::handle('EndProfilePageBio', array($this, $this->profile)); + } + } + + function showProfileTags() + { + if (Event::handle('StartProfilePageProfileTags', array($this, $this->profile))) { + $tags = Profile_tag::getTags($this->profile->id, $this->profile->id); + + if (count($tags) > 0) { + $this->out->elementStart('dl', 'entity_tags'); + $this->out->element('dt', null, _('Tags')); + $this->out->elementStart('dd'); + $this->out->elementStart('ul', 'tags xoxo'); + foreach ($tags as $tag) { + $this->out->elementStart('li'); + // Avoid space by using raw output. + $pt = '#'; + $this->out->raw($pt); + $this->out->elementEnd('li'); + } + $this->out->elementEnd('ul'); + $this->out->elementEnd('dd'); + $this->out->elementEnd('dl'); + } + Event::handle('EndProfilePageProfileTags', array($this, $this->profile)); + } + } + + function showEntityActions() + { + if (Event::handle('StartProfilePageActionsSection', array(&$this, $this->profile))) { + + $cur = common_current_user(); + + $this->out->elementStart('div', 'entity_actions'); + $this->out->element('h2', null, _('User actions')); + $this->out->elementStart('ul'); + + if (Event::handle('StartProfilePageActionsElements', array(&$this, $this->profile))) { + if (empty($cur)) { // not logged in + $this->out->elementStart('li', 'entity_subscribe'); + $this->showRemoteSubscribeLink(); + $this->out->elementEnd('li'); + } else { + if ($cur->id == $this->profile->id) { // your own page + $this->out->elementStart('li', 'entity_edit'); + $this->out->element('a', array('href' => common_local_url('profilesettings'), + 'title' => _('Edit profile settings')), + _('Edit')); + $this->out->elementEnd('li'); + } else { // someone else's page + + // subscribe/unsubscribe button + + $this->out->elementStart('li', 'entity_subscribe'); + + if ($cur->isSubscribed($this->profile)) { + $usf = new UnsubscribeForm($this->out, $this->profile); + $usf->show(); + } else { + $sf = new SubscribeForm($this->out, $this->profile); + $sf->show(); + } + $this->out->elementEnd('li'); + + if ($cur->mutuallySubscribed($this->user)) { + + // message + + $this->out->elementStart('li', 'entity_send-a-message'); + $this->out->element('a', array('href' => common_local_url('newmessage', array('to' => $this->user->id)), + 'title' => _('Send a direct message to this user')), + _('Message')); + $this->out->elementEnd('li'); + + // nudge + + if ($this->user->email && $this->user->emailnotifynudge) { + $this->out->elementStart('li', 'entity_nudge'); + $nf = new NudgeForm($this->out, $this->user); + $nf->show(); + $this->out->elementEnd('li'); + } + } + + // block/unblock + + $blocked = $cur->hasBlocked($this->profile); + $this->out->elementStart('li', 'entity_block'); + if ($blocked) { + $ubf = new UnblockForm($this->out, $this->profile, + array('action' => 'showstream', + 'nickname' => $this->profile->nickname)); + $ubf->show(); + } else { + $bf = new BlockForm($this->out, $this->profile, + array('action' => 'showstream', + 'nickname' => $this->profile->nickname)); + $bf->show(); + } + $this->out->elementEnd('li'); + } + } + + Event::handle('EndProfilePageActionsElements', array(&$this, $this->profile)); + } + + $this->out->elementEnd('ul'); + $this->out->elementEnd('div'); + + Event::handle('EndProfilePageActionsSection', array(&$this, $this->profile)); + } + } + + function showRemoteSubscribeLink() + { + $url = common_local_url('remotesubscribe', + array('nickname' => $this->profile->nickname)); + $this->out->element('a', array('href' => $url, + 'class' => 'entity_remote_subscribe'), + _('Subscribe')); + } +} From a82df5fae8b5d71d4545f27e7aa6cc561160922a Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 4 Nov 2009 13:06:55 -0500 Subject: [PATCH 52/92] Added a CheckPassword event --- EVENTS.txt | 5 +++++ lib/util.php | 13 +++++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index a8a77390f6..7be611c710 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -474,3 +474,8 @@ StartPublicXRDS: Start XRDS output (right after the opening XRDS tag) EndPublicXRDS: End XRDS output (right before the closing XRDS tag) - $action: the current action - &$xrdsoutputter - XRDSOutputter object to write to + +CheckPassword: Check a username/password +- $nickname: The nickname to check +- $password: The password to check +- &$authenticated: set to true to indicate authentication succeeded. diff --git a/lib/util.php b/lib/util.php index bf7282858a..46aa7f9012 100644 --- a/lib/util.php +++ b/lib/util.php @@ -127,8 +127,17 @@ function common_check_user($nickname, $password) if (is_null($user) || $user === false) { return false; } else { - if (0 == strcmp(common_munge_password($password, $user->id), - $user->password)) { + $authenticated = false; + Event::handle('CheckPassword', array($nickname, $password, &$authenticated)); + if(! $authenticated){ + //no handler asserted the user, so check ourselves + if (0 == strcmp(common_munge_password($password, $user->id), + $user->password)) { + //internal checking passed + $authenticated = true; + } + } + if($authenticated){ return $user; } else { return false; From c403f7fa442d7f8eacb4e2288429c271450d57d2 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 4 Nov 2009 13:39:56 -0500 Subject: [PATCH 53/92] Added Net_LDAP2 to extlib, and add a skeleton LDAP plugin --- extlib/Net/LDAP2.php | 1791 ++++++++++++++++++++ extlib/Net/LDAP2/Entry.php | 1055 ++++++++++++ extlib/Net/LDAP2/Filter.php | 514 ++++++ extlib/Net/LDAP2/LDIF.php | 922 ++++++++++ extlib/Net/LDAP2/RootDSE.php | 240 +++ extlib/Net/LDAP2/Schema.php | 516 ++++++ extlib/Net/LDAP2/SchemaCache.interface.php | 59 + extlib/Net/LDAP2/Search.php | 614 +++++++ extlib/Net/LDAP2/SimpleFileSchemaCache.php | 97 ++ extlib/Net/LDAP2/Util.php | 572 +++++++ install.php | 8 + plugins/Ldap/LdapPlugin.php | 45 + 12 files changed, 6433 insertions(+) create mode 100644 extlib/Net/LDAP2.php create mode 100644 extlib/Net/LDAP2/Entry.php create mode 100644 extlib/Net/LDAP2/Filter.php create mode 100644 extlib/Net/LDAP2/LDIF.php create mode 100644 extlib/Net/LDAP2/RootDSE.php create mode 100644 extlib/Net/LDAP2/Schema.php create mode 100644 extlib/Net/LDAP2/SchemaCache.interface.php create mode 100644 extlib/Net/LDAP2/Search.php create mode 100644 extlib/Net/LDAP2/SimpleFileSchemaCache.php create mode 100644 extlib/Net/LDAP2/Util.php create mode 100644 plugins/Ldap/LdapPlugin.php diff --git a/extlib/Net/LDAP2.php b/extlib/Net/LDAP2.php new file mode 100644 index 0000000000..26f5e75600 --- /dev/null +++ b/extlib/Net/LDAP2.php @@ -0,0 +1,1791 @@ + +* @author Jan Wagner +* @author Del +* @author Benedikt Hallinger +* @copyright 2003-2007 Tarjej Huse, Jan Wagner, Del Elson, Benedikt Hallinger +* @license http://www.gnu.org/licenses/lgpl-3.0.txt LGPLv3 +* @version SVN: $Id: LDAP2.php 286788 2009-08-04 06:05:49Z beni $ +* @link http://pear.php.net/package/Net_LDAP2/ +*/ + +/** +* Package includes. +*/ +require_once 'PEAR.php'; +require_once 'Net/LDAP2/RootDSE.php'; +require_once 'Net/LDAP2/Schema.php'; +require_once 'Net/LDAP2/Entry.php'; +require_once 'Net/LDAP2/Search.php'; +require_once 'Net/LDAP2/Util.php'; +require_once 'Net/LDAP2/Filter.php'; +require_once 'Net/LDAP2/LDIF.php'; +require_once 'Net/LDAP2/SchemaCache.interface.php'; +require_once 'Net/LDAP2/SimpleFileSchemaCache.php'; + +/** +* Error constants for errors that are not LDAP errors. +*/ +define('NET_LDAP2_ERROR', 1000); + +/** +* Net_LDAP2 Version +*/ +define('NET_LDAP2_VERSION', '2.0.7'); + +/** +* Net_LDAP2 - manipulate LDAP servers the right way! +* +* @category Net +* @package Net_LDAP2 +* @author Tarjej Huse +* @author Jan Wagner +* @author Del +* @author Benedikt Hallinger +* @copyright 2003-2007 Tarjej Huse, Jan Wagner, Del Elson, Benedikt Hallinger +* @license http://www.gnu.org/copyleft/lesser.html LGPL +* @link http://pear.php.net/package/Net_LDAP2/ +*/ +class Net_LDAP2 extends PEAR +{ + /** + * Class configuration array + * + * host = the ldap host to connect to + * (may be an array of several hosts to try) + * port = the server port + * version = ldap version (defaults to v 3) + * starttls = when set, ldap_start_tls() is run after connecting. + * bindpw = no explanation needed + * binddn = the DN to bind as. + * basedn = ldap base + * options = hash of ldap options to set (opt => val) + * filter = default search filter + * scope = default search scope + * + * Newly added in 2.0.0RC4, for auto-reconnect: + * auto_reconnect = if set to true then the class will automatically + * attempt to reconnect to the LDAP server in certain + * failure conditionswhen attempting a search, or other + * LDAP operation. Defaults to false. Note that if you + * set this to true, calls to search() may block + * indefinitely if there is a catastrophic server failure. + * min_backoff = minimum reconnection delay period (in seconds). + * current_backoff = initial reconnection delay period (in seconds). + * max_backoff = maximum reconnection delay period (in seconds). + * + * @access protected + * @var array + */ + protected $_config = array('host' => 'localhost', + 'port' => 389, + 'version' => 3, + 'starttls' => false, + 'binddn' => '', + 'bindpw' => '', + 'basedn' => '', + 'options' => array(), + 'filter' => '(objectClass=*)', + 'scope' => 'sub', + 'auto_reconnect' => false, + 'min_backoff' => 1, + 'current_backoff' => 1, + 'max_backoff' => 32); + + /** + * List of hosts we try to establish a connection to + * + * @access protected + * @var array + */ + protected $_host_list = array(); + + /** + * List of hosts that are known to be down. + * + * @access protected + * @var array + */ + protected $_down_host_list = array(); + + /** + * LDAP resource link. + * + * @access protected + * @var resource + */ + protected $_link = false; + + /** + * Net_LDAP2_Schema object + * + * This gets set and returned by {@link schema()} + * + * @access protected + * @var object Net_LDAP2_Schema + */ + protected $_schema = null; + + /** + * Schema cacher function callback + * + * @see registerSchemaCache() + * @var string + */ + protected $_schema_cache = null; + + /** + * Cache for attribute encoding checks + * + * @access protected + * @var array Hash with attribute names as key and boolean value + * to determine whether they should be utf8 encoded or not. + */ + protected $_schemaAttrs = array(); + + /** + * Cache for rootDSE objects + * + * Hash with requested rootDSE attr names as key and rootDSE object as value + * + * Since the RootDSE object itself may request a rootDSE object, + * {@link rootDse()} caches successful requests. + * Internally, Net_LDAP2 needs several lookups to this object, so + * caching increases performance significally. + * + * @access protected + * @var array + */ + protected $_rootDSE_cache = array(); + + /** + * Returns the Net_LDAP2 Release version, may be called statically + * + * @static + * @return string Net_LDAP2 version + */ + public static function getVersion() + { + return NET_LDAP2_VERSION; + } + + /** + * Configure Net_LDAP2, connect and bind + * + * Use this method as starting point of using Net_LDAP2 + * to establish a connection to your LDAP server. + * + * Static function that returns either an error object or the new Net_LDAP2 + * object. Something like a factory. Takes a config array with the needed + * parameters. + * + * @param array $config Configuration array + * + * @access public + * @return Net_LDAP2_Error|Net_LDAP2 Net_LDAP2_Error or Net_LDAP2 object + */ + public static function &connect($config = array()) + { + $ldap_check = self::checkLDAPExtension(); + if (self::iserror($ldap_check)) { + return $ldap_check; + } + + @$obj = new Net_LDAP2($config); + + // todo? better errorhandling for setConfig()? + + // connect and bind with credentials in config + $err = $obj->bind(); + if (self::isError($err)) { + return $err; + } + + return $obj; + } + + /** + * Net_LDAP2 constructor + * + * Sets the config array + * + * Please note that the usual way of getting Net_LDAP2 to work is + * to call something like: + * $ldap = Net_LDAP2::connect($ldap_config); + * + * @param array $config Configuration array + * + * @access protected + * @return void + * @see $_config + */ + public function __construct($config = array()) + { + $this->PEAR('Net_LDAP2_Error'); + $this->setConfig($config); + } + + /** + * Sets the internal configuration array + * + * @param array $config Configuration array + * + * @access protected + * @return void + */ + protected function setConfig($config) + { + // + // Parameter check -- probably should raise an error here if config + // is not an array. + // + if (! is_array($config)) { + return; + } + + foreach ($config as $k => $v) { + if (isset($this->_config[$k])) { + $this->_config[$k] = $v; + } else { + // map old (Net_LDAP2) parms to new ones + switch($k) { + case "dn": + $this->_config["binddn"] = $v; + break; + case "password": + $this->_config["bindpw"] = $v; + break; + case "tls": + $this->_config["starttls"] = $v; + break; + case "base": + $this->_config["basedn"] = $v; + break; + } + } + } + + // + // Ensure the host list is an array. + // + if (is_array($this->_config['host'])) { + $this->_host_list = $this->_config['host']; + } else { + if (strlen($this->_config['host']) > 0) { + $this->_host_list = array($this->_config['host']); + } else { + $this->_host_list = array(); + // ^ this will cause an error in performConnect(), + // so the user is notified about the failure + } + } + + // + // Reset the down host list, which seems like a sensible thing to do + // if the config is being reset for some reason. + // + $this->_down_host_list = array(); + } + + /** + * Bind or rebind to the ldap-server + * + * This function binds with the given dn and password to the server. In case + * no connection has been made yet, it will be started and startTLS issued + * if appropiate. + * + * The internal bind configuration is not being updated, so if you call + * bind() without parameters, you can rebind with the credentials + * provided at first connecting to the server. + * + * @param string $dn Distinguished name for binding + * @param string $password Password for binding + * + * @access public + * @return Net_LDAP2_Error|true Net_LDAP2_Error object or true + */ + public function bind($dn = null, $password = null) + { + // fetch current bind credentials + if (is_null($dn)) { + $dn = $this->_config["binddn"]; + } + if (is_null($password)) { + $password = $this->_config["bindpw"]; + } + + // Connect first, if we haven't so far. + // This will also bind us to the server. + if ($this->_link === false) { + // store old credentials so we can revert them later + // then overwrite config with new bind credentials + $olddn = $this->_config["binddn"]; + $oldpw = $this->_config["bindpw"]; + + // overwrite bind credentials in config + // so performConnect() knows about them + $this->_config["binddn"] = $dn; + $this->_config["bindpw"] = $password; + + // try to connect with provided credentials + $msg = $this->performConnect(); + + // reset to previous config + $this->_config["binddn"] = $olddn; + $this->_config["bindpw"] = $oldpw; + + // see if bind worked + if (self::isError($msg)) { + return $msg; + } + } else { + // do the requested bind as we are + // asked to bind manually + if (is_null($dn)) { + // anonymous bind + $msg = @ldap_bind($this->_link); + } else { + // privileged bind + $msg = @ldap_bind($this->_link, $dn, $password); + } + if (false === $msg) { + return PEAR::raiseError("Bind failed: " . + @ldap_error($this->_link), + @ldap_errno($this->_link)); + } + } + return true; + } + + /** + * Connect to the ldap-server + * + * This function connects to the LDAP server specified in + * the configuration, binds and set up the LDAP protocol as needed. + * + * @access protected + * @return Net_LDAP2_Error|true Net_LDAP2_Error object or true + */ + protected function performConnect() + { + // Note: Connecting is briefly described in RFC1777. + // Basicly it works like this: + // 1. set up TCP connection + // 2. secure that connection if neccessary + // 3a. setLDAPVersion to tell server which version we want to speak + // 3b. perform bind + // 3c. setLDAPVersion to tell server which version we want to speak + // together with a test for supported versions + // 4. set additional protocol options + + // Return true if we are already connected. + if ($this->_link !== false) { + return true; + } + + // Connnect to the LDAP server if we are not connected. Note that + // with some LDAP clients, ldapperformConnect returns a link value even + // if no connection is made. We need to do at least one anonymous + // bind to ensure that a connection is actually valid. + // + // Ref: http://www.php.net/manual/en/function.ldap-connect.php + + // Default error message in case all connection attempts + // fail but no message is set + $current_error = new PEAR_Error('Unknown connection error'); + + // Catch empty $_host_list arrays. + if (!is_array($this->_host_list) || count($this->_host_list) == 0) { + $current_error = PEAR::raiseError('No Servers configured! Please '. + 'pass in an array of servers to Net_LDAP2'); + return $current_error; + } + + // Cycle through the host list. + foreach ($this->_host_list as $host) { + + // Ensure we have a valid string for host name + if (is_array($host)) { + $current_error = PEAR::raiseError('No Servers configured! '. + 'Please pass in an one dimensional array of servers to '. + 'Net_LDAP2! (multidimensional array detected!)'); + continue; + } + + // Skip this host if it is known to be down. + if (in_array($host, $this->_down_host_list)) { + continue; + } + + // Record the host that we are actually connecting to in case + // we need it later. + $this->_config['host'] = $host; + + // Attempt a connection. + $this->_link = @ldap_connect($host, $this->_config['port']); + if (false === $this->_link) { + $current_error = PEAR::raiseError('Could not connect to ' . + $host . ':' . $this->_config['port']); + $this->_down_host_list[] = $host; + continue; + } + + // If we're supposed to use TLS, do so before we try to bind, + // as some strict servers only allow binding via secure connections + if ($this->_config["starttls"] === true) { + if (self::isError($msg = $this->startTLS())) { + $current_error = $msg; + $this->_link = false; + $this->_down_host_list[] = $host; + continue; + } + } + + // Try to set the configured LDAP version on the connection if LDAP + // server needs that before binding (eg OpenLDAP). + // This could be necessary since rfc-1777 states that the protocol version + // has to be set at the bind request. + // We use force here which means that the test in the rootDSE is skipped; + // this is neccessary, because some strict LDAP servers only allow to + // read the LDAP rootDSE (which tells us the supported protocol versions) + // with authenticated clients. + // This may fail in which case we try again after binding. + // In this case, most probably the bind() or setLDAPVersion()-call + // below will also fail, providing error messages. + $version_set = false; + $ignored_err = $this->setLDAPVersion(0, true); + if (!self::isError($ignored_err)) { + $version_set = true; + } + + // Attempt to bind to the server. If we have credentials configured, + // we try to use them, otherwise its an anonymous bind. + // As stated by RFC-1777, the bind request should be the first + // operation to be performed after the connection is established. + // This may give an protocol error if the server does not support + // V2 binds and the above call to setLDAPVersion() failed. + // In case the above call failed, we try an V2 bind here and set the + // version afterwards (with checking to the rootDSE). + $msg = $this->bind(); + if (self::isError($msg)) { + // The bind failed, discard link and save error msg. + // Then record the host as down and try next one + if ($msg->getCode() == 0x02 && !$version_set) { + // provide a finer grained error message + // if protocol error arieses because of invalid version + $msg = new Net_LDAP2_Error($msg->getMessage(). + " (could not set LDAP protocol version to ". + $this->_config['version'].")", + $msg->getCode()); + } + $this->_link = false; + $current_error = $msg; + $this->_down_host_list[] = $host; + continue; + } + + // Set desired LDAP version if not successfully set before. + // Here, a check against the rootDSE is performed, so we get a + // error message if the server does not support the version. + // The rootDSE entry should tell us which LDAP versions are + // supported. However, some strict LDAP servers only allow + // bound suers to read the rootDSE. + if (!$version_set) { + if (self::isError($msg = $this->setLDAPVersion())) { + $current_error = $msg; + $this->_link = false; + $this->_down_host_list[] = $host; + continue; + } + } + + // Set LDAP parameters, now we know we have a valid connection. + if (isset($this->_config['options']) && + is_array($this->_config['options']) && + count($this->_config['options'])) { + foreach ($this->_config['options'] as $opt => $val) { + $err = $this->setOption($opt, $val); + if (self::isError($err)) { + $current_error = $err; + $this->_link = false; + $this->_down_host_list[] = $host; + continue 2; + } + } + } + + // At this stage we have connected, bound, and set up options, + // so we have a known good LDAP server. Time to go home. + return true; + } + + + // All connection attempts have failed, return the last error. + return $current_error; + } + + /** + * Reconnect to the ldap-server. + * + * In case the connection to the LDAP + * service has dropped out for some reason, this function will reconnect, + * and re-bind if a bind has been attempted in the past. It is probably + * most useful when the server list provided to the new() or connect() + * function is an array rather than a single host name, because in that + * case it will be able to connect to a failover or secondary server in + * case the primary server goes down. + * + * This doesn't return anything, it just tries to re-establish + * the current connection. It will sleep for the current backoff + * period (seconds) before attempting the connect, and if the + * connection fails it will double the backoff period, but not + * try again. If you want to ensure a reconnection during a + * transient period of server downtime then you need to call this + * function in a loop. + * + * @access protected + * @return Net_LDAP2_Error|true Net_LDAP2_Error object or true + */ + protected function performReconnect() + { + + // Return true if we are already connected. + if ($this->_link !== false) { + return true; + } + + // Default error message in case all connection attempts + // fail but no message is set + $current_error = new PEAR_Error('Unknown connection error'); + + // Sleep for a backoff period in seconds. + sleep($this->_config['current_backoff']); + + // Retry all available connections. + $this->_down_host_list = array(); + $msg = $this->performConnect(); + + // Bail out if that fails. + if (self::isError($msg)) { + $this->_config['current_backoff'] = + $this->_config['current_backoff'] * 2; + if ($this->_config['current_backoff'] > $this->_config['max_backoff']) { + $this->_config['current_backoff'] = $this->_config['max_backoff']; + } + return $msg; + } + + // Now we should be able to safely (re-)bind. + $msg = $this->bind(); + if (self::isError($msg)) { + $this->_config['current_backoff'] = $this->_config['current_backoff'] * 2; + if ($this->_config['current_backoff'] > $this->_config['max_backoff']) { + $this->_config['current_backoff'] = $this->_config['max_backoff']; + } + + // _config['host'] should have had the last connected host stored in it + // by performConnect(). Since we are unable to bind to that host we can safely + // assume that it is down or has some other problem. + $this->_down_host_list[] = $this->_config['host']; + return $msg; + } + + // At this stage we have connected, bound, and set up options, + // so we have a known good LDAP server. Time to go home. + $this->_config['current_backoff'] = $this->_config['min_backoff']; + return true; + } + + /** + * Starts an encrypted session + * + * @access public + * @return Net_LDAP2_Error|true Net_LDAP2_Error object or true + */ + public function startTLS() + { + // Test to see if the server supports TLS first. + // This is done via testing the extensions offered by the server. + // The OID 1.3.6.1.4.1.1466.20037 tells us, if TLS is supported. + $rootDSE = $this->rootDse(); + if (self::isError($rootDSE)) { + return $this->raiseError("Unable to fetch rootDSE entry ". + "to see if TLS is supoported: ".$rootDSE->getMessage(), $rootDSE->getCode()); + } + + $supported_extensions = $rootDSE->getValue('supportedExtension'); + if (self::isError($supported_extensions)) { + return $this->raiseError("Unable to fetch rootDSE attribute 'supportedExtension' ". + "to see if TLS is supoported: ".$supported_extensions->getMessage(), $supported_extensions->getCode()); + } + + if (in_array('1.3.6.1.4.1.1466.20037', $supported_extensions)) { + if (false === @ldap_start_tls($this->_link)) { + return $this->raiseError("TLS not started: " . + @ldap_error($this->_link), + @ldap_errno($this->_link)); + } + return true; + } else { + return $this->raiseError("Server reports that it does not support TLS"); + } + } + + /** + * alias function of startTLS() for perl-ldap interface + * + * @return void + * @see startTLS() + */ + public function start_tls() + { + $args = func_get_args(); + return call_user_func_array(array( &$this, 'startTLS' ), $args); + } + + /** + * Close LDAP connection. + * + * Closes the connection. Use this when the session is over. + * + * @return void + */ + public function done() + { + $this->_Net_LDAP2(); + } + + /** + * Alias for {@link done()} + * + * @return void + * @see done() + */ + public function disconnect() + { + $this->done(); + } + + /** + * Destructor + * + * @access protected + */ + public function _Net_LDAP2() + { + @ldap_close($this->_link); + } + + /** + * Add a new entryobject to a directory. + * + * Use add to add a new Net_LDAP2_Entry object to the directory. + * This also links the entry to the connection used for the add, + * if it was a fresh entry ({@link Net_LDAP2_Entry::createFresh()}) + * + * @param Net_LDAP2_Entry &$entry Net_LDAP2_Entry + * + * @return Net_LDAP2_Error|true Net_LDAP2_Error object or true + */ + public function add(&$entry) + { + if (!$entry instanceof Net_LDAP2_Entry) { + return PEAR::raiseError('Parameter to Net_LDAP2::add() must be a Net_LDAP2_Entry object.'); + } + + // Continue attempting the add operation in a loop until we + // get a success, a definitive failure, or the world ends. + $foo = 0; + while (true) { + $link = $this->getLink(); + + if ($link === false) { + // We do not have a successful connection yet. The call to + // getLink() would have kept trying if we wanted one. Go + // home now. + return PEAR::raiseError("Could not add entry " . $entry->dn() . + " no valid LDAP connection could be found."); + } + + if (@ldap_add($link, $entry->dn(), $entry->getValues())) { + // entry successfully added, we should update its $ldap reference + // in case it is not set so far (fresh entry) + if (!$entry->getLDAP() instanceof Net_LDAP2) { + $entry->setLDAP($this); + } + // store, that the entry is present inside the directory + $entry->markAsNew(false); + return true; + } else { + // We have a failure. What type? We may be able to reconnect + // and try again. + $error_code = @ldap_errno($link); + $error_name = $this->errorMessage($error_code); + + if (($error_name === 'LDAP_OPERATIONS_ERROR') && + ($this->_config['auto_reconnect'])) { + + // The server has become disconnected before trying the + // operation. We should try again, possibly with a different + // server. + $this->_link = false; + $this->performReconnect(); + } else { + // Errors other than the above catched are just passed + // back to the user so he may react upon them. + return PEAR::raiseError("Could not add entry " . $entry->dn() . " " . + $error_name, + $error_code); + } + } + } + } + + /** + * Delete an entry from the directory + * + * The object may either be a string representing the dn or a Net_LDAP2_Entry + * object. When the boolean paramter recursive is set, all subentries of the + * entry will be deleted as well. + * + * @param string|Net_LDAP2_Entry $dn DN-string or Net_LDAP2_Entry + * @param boolean $recursive Should we delete all children recursive as well? + * + * @access public + * @return Net_LDAP2_Error|true Net_LDAP2_Error object or true + */ + public function delete($dn, $recursive = false) + { + if ($dn instanceof Net_LDAP2_Entry) { + $dn = $dn->dn(); + } + if (false === is_string($dn)) { + return PEAR::raiseError("Parameter is not a string nor an entry object!"); + } + // Recursive delete searches for children and calls delete for them + if ($recursive) { + $result = @ldap_list($this->_link, $dn, '(objectClass=*)', array(null), 0, 0); + if (@ldap_count_entries($this->_link, $result)) { + $subentry = @ldap_first_entry($this->_link, $result); + $this->delete(@ldap_get_dn($this->_link, $subentry), true); + while ($subentry = @ldap_next_entry($this->_link, $subentry)) { + $this->delete(@ldap_get_dn($this->_link, $subentry), true); + } + } + } + + // Continue attempting the delete operation in a loop until we + // get a success, a definitive failure, or the world ends. + while (true) { + $link = $this->getLink(); + + if ($link === false) { + // We do not have a successful connection yet. The call to + // getLink() would have kept trying if we wanted one. Go + // home now. + return PEAR::raiseError("Could not add entry " . $dn . + " no valid LDAP connection could be found."); + } + + if (@ldap_delete($link, $dn)) { + // entry successfully deleted. + return true; + } else { + // We have a failure. What type? + // We may be able to reconnect and try again. + $error_code = @ldap_errno($link); + $error_name = $this->errorMessage($error_code); + + if (($this->errorMessage($error_code) === 'LDAP_OPERATIONS_ERROR') && + ($this->_config['auto_reconnect'])) { + // The server has become disconnected before trying the + // operation. We should try again, possibly with a + // different server. + $this->_link = false; + $this->performReconnect(); + + } elseif ($error_code == 66) { + // Subentries present, server refused to delete. + // Deleting subentries is the clients responsibility, but + // since the user may not know of the subentries, we do not + // force that here but instead notify the developer so he + // may take actions himself. + return PEAR::raiseError("Could not delete entry $dn because of subentries. Use the recursive parameter to delete them."); + + } else { + // Errors other than the above catched are just passed + // back to the user so he may react upon them. + return PEAR::raiseError("Could not delete entry " . $dn . " " . + $error_name, + $error_code); + } + } + } + } + + /** + * Modify an ldapentry directly on the server + * + * This one takes the DN or a Net_LDAP2_Entry object and an array of actions. + * This array should be something like this: + * + * array('add' => array('attribute1' => array('val1', 'val2'), + * 'attribute2' => array('val1')), + * 'delete' => array('attribute1'), + * 'replace' => array('attribute1' => array('val1')), + * 'changes' => array('add' => ..., + * 'replace' => ..., + * 'delete' => array('attribute1', 'attribute2' => array('val1'))) + * + * The changes array is there so the order of operations can be influenced + * (the operations are done in order of appearance). + * The order of execution is as following: + * 1. adds from 'add' array + * 2. deletes from 'delete' array + * 3. replaces from 'replace' array + * 4. changes (add, replace, delete) in order of appearance + * All subarrays (add, replace, delete, changes) may be given at the same time. + * + * The function calls the corresponding functions of an Net_LDAP2_Entry + * object. A detailed description of array structures can be found there. + * + * Unlike the modification methods provided by the Net_LDAP2_Entry object, + * this method will instantly carry out an update() after each operation, + * thus modifying "directly" on the server. + * + * @param string|Net_LDAP2_Entry $entry DN-string or Net_LDAP2_Entry + * @param array $parms Array of changes + * + * @access public + * @return Net_LDAP2_Error|true Net_LDAP2_Error object or true + */ + public function modify($entry, $parms = array()) + { + if (is_string($entry)) { + $entry = $this->getEntry($entry); + if (self::isError($entry)) { + return $entry; + } + } + if (!$entry instanceof Net_LDAP2_Entry) { + return PEAR::raiseError("Parameter is not a string nor an entry object!"); + } + + // Perform changes mentioned separately + foreach (array('add', 'delete', 'replace') as $action) { + if (isset($parms[$action])) { + $msg = $entry->$action($parms[$action]); + if (self::isError($msg)) { + return $msg; + } + $entry->setLDAP($this); + + // Because the @ldap functions are called inside Net_LDAP2_Entry::update(), + // we have to trap the error codes issued from that if we want to support + // reconnection. + while (true) { + $msg = $entry->update(); + + if (self::isError($msg)) { + // We have a failure. What type? We may be able to reconnect + // and try again. + $error_code = $msg->getCode(); + $error_name = $this->errorMessage($error_code); + + if (($this->errorMessage($error_code) === 'LDAP_OPERATIONS_ERROR') && + ($this->_config['auto_reconnect'])) { + + // The server has become disconnected before trying the + // operation. We should try again, possibly with a different + // server. + $this->_link = false; + $this->performReconnect(); + + } else { + + // Errors other than the above catched are just passed + // back to the user so he may react upon them. + return PEAR::raiseError("Could not modify entry: ".$msg->getMessage()); + } + } else { + // modification succeedet, evaluate next change + break; + } + } + } + } + + // perform combined changes in 'changes' array + if (isset($parms['changes']) && is_array($parms['changes'])) { + foreach ($parms['changes'] as $action => $value) { + + // Because the @ldap functions are called inside Net_LDAP2_Entry::update, + // we have to trap the error codes issued from that if we want to support + // reconnection. + while (true) { + $msg = $this->modify($entry, array($action => $value)); + + if (self::isError($msg)) { + // We have a failure. What type? We may be able to reconnect + // and try again. + $error_code = $msg->getCode(); + $error_name = $this->errorMessage($error_code); + + if (($this->errorMessage($error_code) === 'LDAP_OPERATIONS_ERROR') && + ($this->_config['auto_reconnect'])) { + + // The server has become disconnected before trying the + // operation. We should try again, possibly with a different + // server. + $this->_link = false; + $this->performReconnect(); + + } else { + // Errors other than the above catched are just passed + // back to the user so he may react upon them. + return $msg; + } + } else { + // modification succeedet, evaluate next change + break; + } + } + } + } + + return true; + } + + /** + * Run a ldap search query + * + * Search is used to query the ldap-database. + * $base and $filter may be ommitted. The one from config will + * then be used. $base is either a DN-string or an Net_LDAP2_Entry + * object in which case its DN willb e used. + * + * Params may contain: + * + * scope: The scope which will be used for searching + * base - Just one entry + * sub - The whole tree + * one - Immediately below $base + * sizelimit: Limit the number of entries returned (default: 0 = unlimited), + * timelimit: Limit the time spent for searching (default: 0 = unlimited), + * attrsonly: If true, the search will only return the attribute names, + * attributes: Array of attribute names, which the entry should contain. + * It is good practice to limit this to just the ones you need. + * [NOT IMPLEMENTED] + * deref: By default aliases are dereferenced to locate the base object for the search, but not when + * searching subordinates of the base object. This may be changed by specifying one of the + * following values: + * + * never - Do not dereference aliases in searching or in locating the base object of the search. + * search - Dereference aliases in subordinates of the base object in searching, but not in + * locating the base object of the search. + * find + * always + * + * Please note, that you cannot override server side limitations to sizelimit + * and timelimit: You can always only lower a given limit. + * + * @param string|Net_LDAP2_Entry $base LDAP searchbase + * @param string|Net_LDAP2_Filter $filter LDAP search filter or a Net_LDAP2_Filter object + * @param array $params Array of options + * + * @access public + * @return Net_LDAP2_Search|Net_LDAP2_Error Net_LDAP2_Search object or Net_LDAP2_Error object + * @todo implement search controls (sorting etc) + */ + public function search($base = null, $filter = null, $params = array()) + { + if (is_null($base)) { + $base = $this->_config['basedn']; + } + if ($base instanceof Net_LDAP2_Entry) { + $base = $base->dn(); // fetch DN of entry, making searchbase relative to the entry + } + if (is_null($filter)) { + $filter = $this->_config['filter']; + } + if ($filter instanceof Net_LDAP2_Filter) { + $filter = $filter->asString(); // convert Net_LDAP2_Filter to string representation + } + if (PEAR::isError($filter)) { + return $filter; + } + if (PEAR::isError($base)) { + return $base; + } + + /* setting searchparameters */ + (isset($params['sizelimit'])) ? $sizelimit = $params['sizelimit'] : $sizelimit = 0; + (isset($params['timelimit'])) ? $timelimit = $params['timelimit'] : $timelimit = 0; + (isset($params['attrsonly'])) ? $attrsonly = $params['attrsonly'] : $attrsonly = 0; + (isset($params['attributes'])) ? $attributes = $params['attributes'] : $attributes = array(); + + // Ensure $attributes to be an array in case only one + // attribute name was given as string + if (!is_array($attributes)) { + $attributes = array($attributes); + } + + // reorganize the $attributes array index keys + // sometimes there are problems with not consecutive indexes + $attributes = array_values($attributes); + + // scoping makes searches faster! + $scope = (isset($params['scope']) ? $params['scope'] : $this->_config['scope']); + + switch ($scope) { + case 'one': + $search_function = 'ldap_list'; + break; + case 'base': + $search_function = 'ldap_read'; + break; + default: + $search_function = 'ldap_search'; + } + + // Continue attempting the search operation until we get a success + // or a definitive failure. + while (true) { + $link = $this->getLink(); + $search = @call_user_func($search_function, + $link, + $base, + $filter, + $attributes, + $attrsonly, + $sizelimit, + $timelimit); + + if ($err = @ldap_errno($link)) { + if ($err == 32) { + // Errorcode 32 = no such object, i.e. a nullresult. + return $obj = new Net_LDAP2_Search ($search, $this, $attributes); + } elseif ($err == 4) { + // Errorcode 4 = sizelimit exeeded. + return $obj = new Net_LDAP2_Search ($search, $this, $attributes); + } elseif ($err == 87) { + // bad search filter + return $this->raiseError($this->errorMessage($err) . "($filter)", $err); + } elseif (($err == 1) && ($this->_config['auto_reconnect'])) { + // Errorcode 1 = LDAP_OPERATIONS_ERROR but we can try a reconnect. + $this->_link = false; + $this->performReconnect(); + } else { + $msg = "\nParameters:\nBase: $base\nFilter: $filter\nScope: $scope"; + return $this->raiseError($this->errorMessage($err) . $msg, $err); + } + } else { + return $obj = new Net_LDAP2_Search($search, $this, $attributes); + } + } + } + + /** + * Set an LDAP option + * + * @param string $option Option to set + * @param mixed $value Value to set Option to + * + * @access public + * @return Net_LDAP2_Error|true Net_LDAP2_Error object or true + */ + public function setOption($option, $value) + { + if ($this->_link) { + if (defined($option)) { + if (@ldap_set_option($this->_link, constant($option), $value)) { + return true; + } else { + $err = @ldap_errno($this->_link); + if ($err) { + $msg = @ldap_err2str($err); + } else { + $err = NET_LDAP2_ERROR; + $msg = $this->errorMessage($err); + } + return $this->raiseError($msg, $err); + } + } else { + return $this->raiseError("Unkown Option requested"); + } + } else { + return $this->raiseError("Could not set LDAP option: No LDAP connection"); + } + } + + /** + * Get an LDAP option value + * + * @param string $option Option to get + * + * @access public + * @return Net_LDAP2_Error|string Net_LDAP2_Error or option value + */ + public function getOption($option) + { + if ($this->_link) { + if (defined($option)) { + if (@ldap_get_option($this->_link, constant($option), $value)) { + return $value; + } else { + $err = @ldap_errno($this->_link); + if ($err) { + $msg = @ldap_err2str($err); + } else { + $err = NET_LDAP2_ERROR; + $msg = $this->errorMessage($err); + } + return $this->raiseError($msg, $err); + } + } else { + $this->raiseError("Unkown Option requested"); + } + } else { + $this->raiseError("No LDAP connection"); + } + } + + /** + * Get the LDAP_PROTOCOL_VERSION that is used on the connection. + * + * A lot of ldap functionality is defined by what protocol version the ldap server speaks. + * This might be 2 or 3. + * + * @return int + */ + public function getLDAPVersion() + { + if ($this->_link) { + $version = $this->getOption("LDAP_OPT_PROTOCOL_VERSION"); + } else { + $version = $this->_config['version']; + } + return $version; + } + + /** + * Set the LDAP_PROTOCOL_VERSION that is used on the connection. + * + * @param int $version LDAP-version that should be used + * @param boolean $force If set to true, the check against the rootDSE will be skipped + * + * @return Net_LDAP2_Error|true Net_LDAP2_Error object or true + * @todo Checking via the rootDSE takes much time - why? fetching and instanciation is quick! + */ + public function setLDAPVersion($version = 0, $force = false) + { + if (!$version) { + $version = $this->_config['version']; + } + + // + // Check to see if the server supports this version first. + // + // Todo: Why is this so horribly slow? + // $this->rootDse() is very fast, as well as Net_LDAP2_RootDSE::fetch() + // seems like a problem at copiyng the object inside PHP?? + // Additionally, this is not always reproducable... + // + if (!$force) { + $rootDSE = $this->rootDse(); + if ($rootDSE instanceof Net_LDAP2_Error) { + return $rootDSE; + } else { + $supported_versions = $rootDSE->getValue('supportedLDAPVersion'); + if (is_string($supported_versions)) { + $supported_versions = array($supported_versions); + } + $check_ok = in_array($version, $supported_versions); + } + } + + if ($force || $check_ok) { + return $this->setOption("LDAP_OPT_PROTOCOL_VERSION", $version); + } else { + return $this->raiseError("LDAP Server does not support protocol version " . $version); + } + } + + + /** + * Tells if a DN does exist in the directory + * + * @param string|Net_LDAP2_Entry $dn The DN of the object to test + * + * @return boolean|Net_LDAP2_Error + */ + public function dnExists($dn) + { + if (PEAR::isError($dn)) { + return $dn; + } + if ($dn instanceof Net_LDAP2_Entry) { + $dn = $dn->dn(); + } + if (false === is_string($dn)) { + return PEAR::raiseError('Parameter $dn is not a string nor an entry object!'); + } + + // make dn relative to parent + $base = Net_LDAP2_Util::ldap_explode_dn($dn, array('casefold' => 'none', 'reverse' => false, 'onlyvalues' => false)); + if (self::isError($base)) { + return $base; + } + $entry_rdn = array_shift($base); + if (is_array($entry_rdn)) { + // maybe the dn consist of a multivalued RDN, we must build the dn in this case + // because the $entry_rdn is an array! + $filter_dn = Net_LDAP2_Util::canonical_dn($entry_rdn); + } + $base = Net_LDAP2_Util::canonical_dn($base); + + $result = @ldap_list($this->_link, $base, $entry_rdn, array(), 1, 1); + if (@ldap_count_entries($this->_link, $result)) { + return true; + } + if (ldap_errno($this->_link) == 32) { + return false; + } + if (ldap_errno($this->_link) != 0) { + return PEAR::raiseError(ldap_error($this->_link), ldap_errno($this->_link)); + } + return false; + } + + + /** + * Get a specific entry based on the DN + * + * @param string $dn DN of the entry that should be fetched + * @param array $attr Array of Attributes to select. If ommitted, all attributes are fetched. + * + * @return Net_LDAP2_Entry|Net_LDAP2_Error Reference to a Net_LDAP2_Entry object or Net_LDAP2_Error object + * @todo Maybe check against the shema should be done to be sure the attribute type exists + */ + public function &getEntry($dn, $attr = array()) + { + if (!is_array($attr)) { + $attr = array($attr); + } + $result = $this->search($dn, '(objectClass=*)', + array('scope' => 'base', 'attributes' => $attr)); + if (self::isError($result)) { + return $result; + } elseif ($result->count() == 0) { + return PEAR::raiseError('Could not fetch entry '.$dn.': no entry found'); + } + $entry = $result->shiftEntry(); + if (false == $entry) { + return PEAR::raiseError('Could not fetch entry (error retrieving entry from search result)'); + } + return $entry; + } + + /** + * Rename or move an entry + * + * This method will instantly carry out an update() after the move, + * so the entry is moved instantly. + * You can pass an optional Net_LDAP2 object. In this case, a cross directory + * move will be performed which deletes the entry in the source (THIS) directory + * and adds it in the directory $target_ldap. + * A cross directory move will switch the Entrys internal LDAP reference so + * updates to the entry will go to the new directory. + * + * Note that if you want to do a cross directory move, you need to + * pass an Net_LDAP2_Entry object, otherwise the attributes will be empty. + * + * @param string|Net_LDAP2_Entry $entry Entry DN or Entry object + * @param string $newdn New location + * @param Net_LDAP2 $target_ldap (optional) Target directory for cross server move; should be passed via reference + * + * @return Net_LDAP2_Error|true + */ + public function move($entry, $newdn, $target_ldap = null) + { + if (is_string($entry)) { + $entry_o = $this->getEntry($entry); + } else { + $entry_o =& $entry; + } + if (!$entry_o instanceof Net_LDAP2_Entry) { + return PEAR::raiseError('Parameter $entry is expected to be a Net_LDAP2_Entry object! (If DN was passed, conversion failed)'); + } + if (null !== $target_ldap && !$target_ldap instanceof Net_LDAP2) { + return PEAR::raiseError('Parameter $target_ldap is expected to be a Net_LDAP2 object!'); + } + + if ($target_ldap && $target_ldap !== $this) { + // cross directory move + if (is_string($entry)) { + return PEAR::raiseError('Unable to perform cross directory move: operation requires a Net_LDAP2_Entry object'); + } + if ($target_ldap->dnExists($newdn)) { + return PEAR::raiseError('Unable to perform cross directory move: entry does exist in target directory'); + } + $entry_o->dn($newdn); + $res = $target_ldap->add($entry_o); + if (self::isError($res)) { + return PEAR::raiseError('Unable to perform cross directory move: '.$res->getMessage().' in target directory'); + } + $res = $this->delete($entry_o->currentDN()); + if (self::isError($res)) { + $res2 = $target_ldap->delete($entry_o); // undo add + if (self::isError($res2)) { + $add_error_string = 'Additionally, the deletion (undo add) of $entry in target directory failed.'; + } + return PEAR::raiseError('Unable to perform cross directory move: '.$res->getMessage().' in source directory. '.$add_error_string); + } + $entry_o->setLDAP($target_ldap); + return true; + } else { + // local move + $entry_o->dn($newdn); + $entry_o->setLDAP($this); + return $entry_o->update(); + } + } + + /** + * Copy an entry to a new location + * + * The entry will be immediately copied. + * Please note that only attributes you have + * selected will be copied. + * + * @param Net_LDAP2_Entry &$entry Entry object + * @param string $newdn New FQF-DN of the entry + * + * @return Net_LDAP2_Error|Net_LDAP2_Entry Error Message or reference to the copied entry + */ + public function ©(&$entry, $newdn) + { + if (!$entry instanceof Net_LDAP2_Entry) { + return PEAR::raiseError('Parameter $entry is expected to be a Net_LDAP2_Entry object!'); + } + + $newentry = Net_LDAP2_Entry::createFresh($newdn, $entry->getValues()); + $result = $this->add($newentry); + + if ($result instanceof Net_LDAP2_Error) { + return $result; + } else { + return $newentry; + } + } + + + /** + * Returns the string for an ldap errorcode. + * + * Made to be able to make better errorhandling + * Function based on DB::errorMessage() + * Tip: The best description of the errorcodes is found here: + * http://www.directory-info.com/LDAP2/LDAPErrorCodes.html + * + * @param int $errorcode Error code + * + * @return string The errorstring for the error. + */ + public function errorMessage($errorcode) + { + $errorMessages = array( + 0x00 => "LDAP_SUCCESS", + 0x01 => "LDAP_OPERATIONS_ERROR", + 0x02 => "LDAP_PROTOCOL_ERROR", + 0x03 => "LDAP_TIMELIMIT_EXCEEDED", + 0x04 => "LDAP_SIZELIMIT_EXCEEDED", + 0x05 => "LDAP_COMPARE_FALSE", + 0x06 => "LDAP_COMPARE_TRUE", + 0x07 => "LDAP_AUTH_METHOD_NOT_SUPPORTED", + 0x08 => "LDAP_STRONG_AUTH_REQUIRED", + 0x09 => "LDAP_PARTIAL_RESULTS", + 0x0a => "LDAP_REFERRAL", + 0x0b => "LDAP_ADMINLIMIT_EXCEEDED", + 0x0c => "LDAP_UNAVAILABLE_CRITICAL_EXTENSION", + 0x0d => "LDAP_CONFIDENTIALITY_REQUIRED", + 0x0e => "LDAP_SASL_BIND_INPROGRESS", + 0x10 => "LDAP_NO_SUCH_ATTRIBUTE", + 0x11 => "LDAP_UNDEFINED_TYPE", + 0x12 => "LDAP_INAPPROPRIATE_MATCHING", + 0x13 => "LDAP_CONSTRAINT_VIOLATION", + 0x14 => "LDAP_TYPE_OR_VALUE_EXISTS", + 0x15 => "LDAP_INVALID_SYNTAX", + 0x20 => "LDAP_NO_SUCH_OBJECT", + 0x21 => "LDAP_ALIAS_PROBLEM", + 0x22 => "LDAP_INVALID_DN_SYNTAX", + 0x23 => "LDAP_IS_LEAF", + 0x24 => "LDAP_ALIAS_DEREF_PROBLEM", + 0x30 => "LDAP_INAPPROPRIATE_AUTH", + 0x31 => "LDAP_INVALID_CREDENTIALS", + 0x32 => "LDAP_INSUFFICIENT_ACCESS", + 0x33 => "LDAP_BUSY", + 0x34 => "LDAP_UNAVAILABLE", + 0x35 => "LDAP_UNWILLING_TO_PERFORM", + 0x36 => "LDAP_LOOP_DETECT", + 0x3C => "LDAP_SORT_CONTROL_MISSING", + 0x3D => "LDAP_INDEX_RANGE_ERROR", + 0x40 => "LDAP_NAMING_VIOLATION", + 0x41 => "LDAP_OBJECT_CLASS_VIOLATION", + 0x42 => "LDAP_NOT_ALLOWED_ON_NONLEAF", + 0x43 => "LDAP_NOT_ALLOWED_ON_RDN", + 0x44 => "LDAP_ALREADY_EXISTS", + 0x45 => "LDAP_NO_OBJECT_CLASS_MODS", + 0x46 => "LDAP_RESULTS_TOO_LARGE", + 0x47 => "LDAP_AFFECTS_MULTIPLE_DSAS", + 0x50 => "LDAP_OTHER", + 0x51 => "LDAP_SERVER_DOWN", + 0x52 => "LDAP_LOCAL_ERROR", + 0x53 => "LDAP_ENCODING_ERROR", + 0x54 => "LDAP_DECODING_ERROR", + 0x55 => "LDAP_TIMEOUT", + 0x56 => "LDAP_AUTH_UNKNOWN", + 0x57 => "LDAP_FILTER_ERROR", + 0x58 => "LDAP_USER_CANCELLED", + 0x59 => "LDAP_PARAM_ERROR", + 0x5a => "LDAP_NO_MEMORY", + 0x5b => "LDAP_CONNECT_ERROR", + 0x5c => "LDAP_NOT_SUPPORTED", + 0x5d => "LDAP_CONTROL_NOT_FOUND", + 0x5e => "LDAP_NO_RESULTS_RETURNED", + 0x5f => "LDAP_MORE_RESULTS_TO_RETURN", + 0x60 => "LDAP_CLIENT_LOOP", + 0x61 => "LDAP_REFERRAL_LIMIT_EXCEEDED", + 1000 => "Unknown Net_LDAP2 Error" + ); + + return isset($errorMessages[$errorcode]) ? + $errorMessages[$errorcode] : + $errorMessages[NET_LDAP2_ERROR] . ' (' . $errorcode . ')'; + } + + /** + * Gets a rootDSE object + * + * This either fetches a fresh rootDSE object or returns it from + * the internal cache for performance reasons, if possible. + * + * @param array $attrs Array of attributes to search for + * + * @access public + * @return Net_LDAP2_Error|Net_LDAP2_RootDSE Net_LDAP2_Error or Net_LDAP2_RootDSE object + */ + public function &rootDse($attrs = null) + { + if ($attrs !== null && !is_array($attrs)) { + return PEAR::raiseError('Parameter $attr is expected to be an array!'); + } + + $attrs_signature = serialize($attrs); + + // see if we need to fetch a fresh object, or if we already + // requested this object with the same attributes + if (true || !array_key_exists($attrs_signature, $this->_rootDSE_cache)) { + $rootdse =& Net_LDAP2_RootDSE::fetch($this, $attrs); + if ($rootdse instanceof Net_LDAP2_Error) { + return $rootdse; + } + + // search was ok, store rootDSE in cache + $this->_rootDSE_cache[$attrs_signature] = $rootdse; + } + return $this->_rootDSE_cache[$attrs_signature]; + } + + /** + * Alias function of rootDse() for perl-ldap interface + * + * @access public + * @see rootDse() + * @return Net_LDAP2_Error|Net_LDAP2_RootDSE + */ + public function &root_dse() + { + $args = func_get_args(); + return call_user_func_array(array(&$this, 'rootDse'), $args); + } + + /** + * Get a schema object + * + * @param string $dn (optional) Subschema entry dn + * + * @access public + * @return Net_LDAP2_Schema|Net_LDAP2_Error Net_LDAP2_Schema or Net_LDAP2_Error object + */ + public function &schema($dn = null) + { + // Schema caching by Knut-Olav Hoven + // If a schema caching object is registered, we use that to fetch + // a schema object. + // See registerSchemaCache() for more info on this. + if ($this->_schema === null) { + if ($this->_schema_cache) { + $cached_schema = $this->_schema_cache->loadSchema(); + if ($cached_schema instanceof Net_LDAP2_Error) { + return $cached_schema; // route error to client + } else { + if ($cached_schema instanceof Net_LDAP2_Schema) { + $this->_schema = $cached_schema; + } + } + } + } + + // Fetch schema, if not tried before and no cached version available. + // If we are already fetching the schema, we will skip fetching. + if ($this->_schema === null) { + // store a temporary error message so subsequent calls to schema() can + // detect, that we are fetching the schema already. + // Otherwise we will get an infinite loop at Net_LDAP2_Schema::fetch() + $this->_schema = new Net_LDAP2_Error('Schema not initialized'); + $this->_schema = Net_LDAP2_Schema::fetch($this, $dn); + + // If schema caching is active, advise the cache to store the schema + if ($this->_schema_cache) { + $caching_result = $this->_schema_cache->storeSchema($this->_schema); + if ($caching_result instanceof Net_LDAP2_Error) { + return $caching_result; // route error to client + } + } + } + return $this->_schema; + } + + /** + * Enable/disable persistent schema caching + * + * Sometimes it might be useful to allow your scripts to cache + * the schema information on disk, so the schema is not fetched + * every time the script runs which could make your scripts run + * faster. + * + * This method allows you to register a custom object that + * implements your schema cache. Please see the SchemaCache interface + * (SchemaCache.interface.php) for informations on how to implement this. + * To unregister the cache, pass null as $cache parameter. + * + * For ease of use, Net_LDAP2 provides a simple file based cache + * which is used in the example below. You may use this, for example, + * to store the schema in a linux tmpfs which results in the schema + * beeing cached inside the RAM which allows nearly instant access. + * + * // Create the simple file cache object that comes along with Net_LDAP2 + * $mySchemaCache_cfg = array( + * 'path' => '/tmp/Net_LDAP2_Schema.cache', + * 'max_age' => 86400 // max age is 24 hours (in seconds) + * ); + * $mySchemaCache = new Net_LDAP2_SimpleFileSchemaCache($mySchemaCache_cfg); + * $ldap = new Net_LDAP2::connect(...); + * $ldap->registerSchemaCache($mySchemaCache); // enable caching + * // now each call to $ldap->schema() will get the schema from disk! + * + * + * @param Net_LDAP2_SchemaCache|null $cache Object implementing the Net_LDAP2_SchemaCache interface + * + * @return true|Net_LDAP2_Error + */ + public function registerSchemaCache($cache) { + if (is_null($cache) + || (is_object($cache) && in_array('Net_LDAP2_SchemaCache', class_implements($cache))) ) { + $this->_schema_cache = $cache; + return true; + } else { + return new Net_LDAP2_Error('Custom schema caching object is either no '. + 'valid object or does not implement the Net_LDAP2_SchemaCache interface!'); + } + } + + + /** + * Checks if phps ldap-extension is loaded + * + * If it is not loaded, it tries to load it manually using PHPs dl(). + * It knows both windows-dll and *nix-so. + * + * @static + * @return Net_LDAP2_Error|true + */ + public static function checkLDAPExtension() + { + if (!extension_loaded('ldap') && !@dl('ldap.' . PHP_SHLIB_SUFFIX)) { + return new Net_LDAP2_Error("It seems that you do not have the ldap-extension installed. Please install it before using the Net_LDAP2 package."); + } else { + return true; + } + } + + /** + * Encodes given attributes to UTF8 if needed by schema + * + * This function takes attributes in an array and then checks against the schema if they need + * UTF8 encoding. If that is so, they will be encoded. An encoded array will be returned and + * can be used for adding or modifying. + * + * $attributes is expected to be an array with keys describing + * the attribute names and the values as the value of this attribute: + * $attributes = array('cn' => 'foo', 'attr2' => array('mv1', 'mv2')); + * + * @param array $attributes Array of attributes + * + * @access public + * @return array|Net_LDAP2_Error Array of UTF8 encoded attributes or Error + */ + public function utf8Encode($attributes) + { + return $this->utf8($attributes, 'utf8_encode'); + } + + /** + * Decodes the given attribute values if needed by schema + * + * $attributes is expected to be an array with keys describing + * the attribute names and the values as the value of this attribute: + * $attributes = array('cn' => 'foo', 'attr2' => array('mv1', 'mv2')); + * + * @param array $attributes Array of attributes + * + * @access public + * @see utf8Encode() + * @return array|Net_LDAP2_Error Array with decoded attribute values or Error + */ + public function utf8Decode($attributes) + { + return $this->utf8($attributes, 'utf8_decode'); + } + + /** + * Encodes or decodes attribute values if needed + * + * @param array $attributes Array of attributes + * @param array $function Function to apply to attribute values + * + * @access protected + * @return array|Net_LDAP2_Error Array of attributes with function applied to values or Error + */ + protected function utf8($attributes, $function) + { + if (!is_array($attributes) || array_key_exists(0, $attributes)) { + return PEAR::raiseError('Parameter $attributes is expected to be an associative array'); + } + + if (!$this->_schema) { + $this->_schema = $this->schema(); + } + + if (!$this->_link || self::isError($this->_schema) || !function_exists($function)) { + return $attributes; + } + + if (is_array($attributes) && count($attributes) > 0) { + + foreach ($attributes as $k => $v) { + + if (!isset($this->_schemaAttrs[$k])) { + + $attr = $this->_schema->get('attribute', $k); + if (self::isError($attr)) { + continue; + } + + if (false !== strpos($attr['syntax'], '1.3.6.1.4.1.1466.115.121.1.15')) { + $encode = true; + } else { + $encode = false; + } + $this->_schemaAttrs[$k] = $encode; + + } else { + $encode = $this->_schemaAttrs[$k]; + } + + if ($encode) { + if (is_array($v)) { + foreach ($v as $ak => $av) { + $v[$ak] = call_user_func($function, $av); + } + } else { + $v = call_user_func($function, $v); + } + } + $attributes[$k] = $v; + } + } + return $attributes; + } + + /** + * Get the LDAP link resource. It will loop attempting to + * re-establish the connection if the connection attempt fails and + * auto_reconnect has been turned on (see the _config array documentation). + * + * @access public + * @return resource LDAP link + */ + public function &getLink() + { + if ($this->_config['auto_reconnect']) { + while (true) { + // + // Return the link handle if we are already connected. Otherwise + // try to reconnect. + // + if ($this->_link !== false) { + return $this->_link; + } else { + $this->performReconnect(); + } + } + } + return $this->_link; + } +} + +/** +* Net_LDAP2_Error implements a class for reporting portable LDAP error messages. +* +* @category Net +* @package Net_LDAP2 +* @author Tarjej Huse +* @license http://www.gnu.org/copyleft/lesser.html LGPL +* @link http://pear.php.net/package/Net_LDAP22/ +*/ +class Net_LDAP2_Error extends PEAR_Error +{ + /** + * Net_LDAP2_Error constructor. + * + * @param string $message String with error message. + * @param integer $code Net_LDAP2 error code + * @param integer $mode what "error mode" to operate in + * @param mixed $level what error level to use for $mode & PEAR_ERROR_TRIGGER + * @param mixed $debuginfo additional debug info, such as the last query + * + * @access public + * @see PEAR_Error + */ + public function __construct($message = 'Net_LDAP2_Error', $code = NET_LDAP2_ERROR, $mode = PEAR_ERROR_RETURN, + $level = E_USER_NOTICE, $debuginfo = null) + { + if (is_int($code)) { + $this->PEAR_Error($message . ': ' . Net_LDAP2::errorMessage($code), $code, $mode, $level, $debuginfo); + } else { + $this->PEAR_Error("$message: $code", NET_LDAP2_ERROR, $mode, $level, $debuginfo); + } + } +} + +?> diff --git a/extlib/Net/LDAP2/Entry.php b/extlib/Net/LDAP2/Entry.php new file mode 100644 index 0000000000..66de966780 --- /dev/null +++ b/extlib/Net/LDAP2/Entry.php @@ -0,0 +1,1055 @@ + +* @author Tarjej Huse +* @author Benedikt Hallinger +* @copyright 2009 Tarjej Huse, Jan Wagner, Benedikt Hallinger +* @license http://www.gnu.org/licenses/lgpl-3.0.txt LGPLv3 +* @version SVN: $Id: Entry.php 286787 2009-08-04 06:03:12Z beni $ +* @link http://pear.php.net/package/Net_LDAP2/ +*/ + +/** +* Includes +*/ +require_once 'PEAR.php'; +require_once 'Util.php'; + +/** +* Object representation of a directory entry +* +* This class represents a directory entry. You can add, delete, replace +* attributes and their values, rename the entry, delete the entry. +* +* @category Net +* @package Net_LDAP2 +* @author Jan Wagner +* @author Tarjej Huse +* @author Benedikt Hallinger +* @license http://www.gnu.org/copyleft/lesser.html LGPL +* @link http://pear.php.net/package/Net_LDAP2/ +*/ +class Net_LDAP2_Entry extends PEAR +{ + /** + * Entry ressource identifier + * + * @access protected + * @var ressource + */ + protected $_entry = null; + + /** + * LDAP ressource identifier + * + * @access protected + * @var ressource + */ + protected $_link = null; + + /** + * Net_LDAP2 object + * + * This object will be used for updating and schema checking + * + * @access protected + * @var object Net_LDAP2 + */ + protected $_ldap = null; + + /** + * Distinguished name of the entry + * + * @access protected + * @var string + */ + protected $_dn = null; + + /** + * Attributes + * + * @access protected + * @var array + */ + protected $_attributes = array(); + + /** + * Original attributes before any modification + * + * @access protected + * @var array + */ + protected $_original = array(); + + + /** + * Map of attribute names + * + * @access protected + * @var array + */ + protected $_map = array(); + + + /** + * Is this a new entry? + * + * @access protected + * @var boolean + */ + protected $_new = true; + + /** + * New distinguished name + * + * @access protected + * @var string + */ + protected $_newdn = null; + + /** + * Shall the entry be deleted? + * + * @access protected + * @var boolean + */ + protected $_delete = false; + + /** + * Map with changes to the entry + * + * @access protected + * @var array + */ + protected $_changes = array("add" => array(), + "delete" => array(), + "replace" => array() + ); + /** + * Internal Constructor + * + * Constructor of the entry. Sets up the distinguished name and the entries + * attributes. + * You should not call this method manually! Use {@link Net_LDAP2_Entry::createFresh()} + * or {@link Net_LDAP2_Entry::createConnected()} instead! + * + * @param Net_LDAP2|ressource|array &$ldap Net_LDAP2 object, ldap-link ressource or array of attributes + * @param string|ressource $entry Either a DN or a LDAP-Entry ressource + * + * @access protected + * @return none + */ + protected function __construct(&$ldap, $entry = null) + { + $this->PEAR('Net_LDAP2_Error'); + + // set up entry resource or DN + if (is_resource($entry)) { + $this->_entry = &$entry; + } else { + $this->_dn = $entry; + } + + // set up LDAP link + if ($ldap instanceof Net_LDAP2) { + $this->_ldap = &$ldap; + $this->_link = $ldap->getLink(); + } elseif (is_resource($ldap)) { + $this->_link = $ldap; + } elseif (is_array($ldap)) { + // Special case: here $ldap is an array of attributes, + // this means, we have no link. This is a "virtual" entry. + // We just set up the attributes so one can work with the object + // as expected, but an update() fails unless setLDAP() is called. + $this->setAttributes($ldap); + } + + // if this is an entry existing in the directory, + // then set up as old and fetch attrs + if (is_resource($this->_entry) && is_resource($this->_link)) { + $this->_new = false; + $this->_dn = @ldap_get_dn($this->_link, $this->_entry); + $this->setAttributes(); // fetch attributes from server + } + } + + /** + * Creates a fresh entry that may be added to the directory later on + * + * Use this method, if you want to initialize a fresh entry. + * + * The method should be called statically: $entry = Net_LDAP2_Entry::createFresh(); + * You should put a 'objectClass' attribute into the $attrs so the directory server + * knows which object you want to create. However, you may omit this in case you + * don't want to add this entry to a directory server. + * + * The attributes parameter is as following: + * + * $attrs = array( 'attribute1' => array('value1', 'value2'), + * 'attribute2' => 'single value' + * ); + * + * + * @param string $dn DN of the Entry + * @param array $attrs Attributes of the entry + * + * @static + * @return Net_LDAP2_Entry|Net_LDAP2_Error + */ + public static function createFresh($dn, $attrs = array()) + { + if (!is_array($attrs)) { + return PEAR::raiseError("Unable to create fresh entry: Parameter \$attrs needs to be an array!"); + } + + $entry = new Net_LDAP2_Entry($attrs, $dn); + return $entry; + } + + /** + * Creates a Net_LDAP2_Entry object out of an ldap entry resource + * + * Use this method, if you want to initialize an entry object that is + * already present in some directory and that you have read manually. + * + * Please note, that if you want to create an entry object that represents + * some already existing entry, you should use {@link createExisting()}. + * + * The method should be called statically: $entry = Net_LDAP2_Entry::createConnected(); + * + * @param Net_LDAP2 $ldap Net_LDA2 object + * @param resource $entry PHP LDAP entry resource + * + * @static + * @return Net_LDAP2_Entry|Net_LDAP2_Error + */ + public static function createConnected($ldap, $entry) + { + if (!$ldap instanceof Net_LDAP2) { + return PEAR::raiseError("Unable to create connected entry: Parameter \$ldap needs to be a Net_LDAP2 object!"); + } + if (!is_resource($entry)) { + return PEAR::raiseError("Unable to create connected entry: Parameter \$entry needs to be a ldap entry resource!"); + } + + $entry = new Net_LDAP2_Entry($ldap, $entry); + return $entry; + } + + /** + * Creates an Net_LDAP2_Entry object that is considered already existing + * + * Use this method, if you want to modify an already existing entry + * without fetching it first. + * In most cases however, it is better to fetch the entry via Net_LDAP2->getEntry()! + * + * Please note that you should take care if you construct entries manually with this + * because you may get weird synchronisation problems. + * The attributes and values as well as the entry itself are considered existent + * which may produce errors if you try to modify an entry which doesn't really exist + * or if you try to overwrite some attribute with an value already present. + * + * This method is equal to calling createFresh() and after that markAsNew(FALSE). + * + * The method should be called statically: $entry = Net_LDAP2_Entry::createExisting(); + * + * The attributes parameter is as following: + * + * $attrs = array( 'attribute1' => array('value1', 'value2'), + * 'attribute2' => 'single value' + * ); + * + * + * @param string $dn DN of the Entry + * @param array $attrs Attributes of the entry + * + * @static + * @return Net_LDAP2_Entry|Net_LDAP2_Error + */ + public static function createExisting($dn, $attrs = array()) + { + if (!is_array($attrs)) { + return PEAR::raiseError("Unable to create entry object: Parameter \$attrs needs to be an array!"); + } + + $entry = Net_LDAP2_Entry::createFresh($dn, $attrs); + if ($entry instanceof Net_LDAP2_Error) { + return $entry; + } else { + $entry->markAsNew(false); + return $entry; + } + } + + /** + * Get or set the distinguished name of the entry + * + * If called without an argument the current (or the new DN if set) DN gets returned. + * If you provide an DN, this entry is moved to the new location specified if a DN existed. + * If the DN was not set, the DN gets initialized. Call {@link update()} to actually create + * the new Entry in the directory. + * To fetch the current active DN after setting a new DN but before an update(), you can use + * {@link currentDN()} to retrieve the DN that is currently active. + * + * Please note that special characters (eg german umlauts) should be encoded using utf8_encode(). + * You may use {@link Net_LDAP2_Util::canonical_dn()} for properly encoding of the DN. + * + * @param string $dn New distinguished name + * + * @access public + * @return string|true Distinguished name (or true if a new DN was provided) + */ + public function dn($dn = null) + { + if (false == is_null($dn)) { + if (is_null($this->_dn)) { + $this->_dn = $dn; + } else { + $this->_newdn = $dn; + } + return true; + } + return (isset($this->_newdn) ? $this->_newdn : $this->currentDN()); + } + + /** + * Renames or moves the entry + * + * This is just a convinience alias to {@link dn()} + * to make your code more meaningful. + * + * @param string $newdn The new DN + * + * @return true + */ + public function move($newdn) + { + return $this->dn($newdn); + } + + /** + * Sets the internal attributes array + * + * This fetches the values for the attributes from the server. + * The attribute Syntax will be checked so binary attributes will be returned + * as binary values. + * + * Attributes may be passed directly via the $attributes parameter to setup this + * entry manually. This overrides attribute fetching from the server. + * + * @param array $attributes Attributes to set for this entry + * + * @access protected + * @return void + */ + protected function setAttributes($attributes = null) + { + /* + * fetch attributes from the server + */ + if (is_null($attributes) && is_resource($this->_entry) && is_resource($this->_link)) { + // fetch schema + if ($this->_ldap instanceof Net_LDAP2) { + $schema =& $this->_ldap->schema(); + } + // fetch attributes + $attributes = array(); + do { + if (empty($attr)) { + $ber = null; + $attr = @ldap_first_attribute($this->_link, $this->_entry, $ber); + } else { + $attr = @ldap_next_attribute($this->_link, $this->_entry, $ber); + } + if ($attr) { + $func = 'ldap_get_values'; // standard function to fetch value + + // Try to get binary values as binary data + if ($schema instanceof Net_LDAP2_Schema) { + if ($schema->isBinary($attr)) { + $func = 'ldap_get_values_len'; + } + } + // fetch attribute value (needs error checking?) + $attributes[$attr] = $func($this->_link, $this->_entry, $attr); + } + } while ($attr); + } + + /* + * set attribute data directly, if passed + */ + if (is_array($attributes) && count($attributes) > 0) { + if (isset($attributes["count"]) && is_numeric($attributes["count"])) { + unset($attributes["count"]); + } + foreach ($attributes as $k => $v) { + // attribute names should not be numeric + if (is_numeric($k)) { + continue; + } + // map generic attribute name to real one + $this->_map[strtolower($k)] = $k; + // attribute values should be in an array + if (false == is_array($v)) { + $v = array($v); + } + // remove the value count (comes from ldap server) + if (isset($v["count"])) { + unset($v["count"]); + } + $this->_attributes[$k] = $v; + } + } + + // save a copy for later use + $this->_original = $this->_attributes; + } + + /** + * Get the values of all attributes in a hash + * + * The returned hash has the form + * array('attributename' => 'single value', + * 'attributename' => array('value1', value2', value3')) + * + * @access public + * @return array Hash of all attributes with their values + */ + public function getValues() + { + $attrs = array(); + foreach ($this->_attributes as $attr => $value) { + $attrs[$attr] = $this->getValue($attr); + } + return $attrs; + } + + /** + * Get the value of a specific attribute + * + * The first parameter is the name of the attribute + * The second parameter influences the way the value is returned: + * 'single': only the first value is returned as string + * 'all': all values including the value count are returned in an + * array + * 'default': in all other cases an attribute value with a single value is + * returned as string, if it has multiple values it is returned + * as an array (without value count) + * + * @param string $attr Attribute name + * @param string $option Option + * + * @access public + * @return string|array|PEAR_Error string, array or PEAR_Error + */ + public function getValue($attr, $option = null) + { + $attr = $this->getAttrName($attr); + + if (false == array_key_exists($attr, $this->_attributes)) { + return PEAR::raiseError("Unknown attribute ($attr) requested"); + } + + $value = $this->_attributes[$attr]; + + if ($option == "single" || (count($value) == 1 && $option != 'all')) { + $value = array_shift($value); + } + + return $value; + } + + /** + * Alias function of getValue for perl-ldap interface + * + * @see getValue() + * @return string|array|PEAR_Error + */ + public function get_value() + { + $args = func_get_args(); + return call_user_func_array(array( &$this, 'getValue' ), $args); + } + + /** + * Returns an array of attributes names + * + * @access public + * @return array Array of attribute names + */ + public function attributes() + { + return array_keys($this->_attributes); + } + + /** + * Returns whether an attribute exists or not + * + * @param string $attr Attribute name + * + * @access public + * @return boolean + */ + public function exists($attr) + { + $attr = $this->getAttrName($attr); + return array_key_exists($attr, $this->_attributes); + } + + /** + * Adds a new attribute or a new value to an existing attribute + * + * The paramter has to be an array of the form: + * array('attributename' => 'single value', + * 'attributename' => array('value1', 'value2)) + * When the attribute already exists the values will be added, else the + * attribute will be created. These changes are local to the entry and do + * not affect the entry on the server until update() is called. + * + * Note, that you can add values of attributes that you haven't selected, but if + * you do so, {@link getValue()} and {@link getValues()} will only return the + * values you added, _NOT_ all values present on the server. To avoid this, just refetch + * the entry after calling {@link update()} or select the attribute. + * + * @param array $attr Attributes to add + * + * @access public + * @return true|Net_LDAP2_Error + */ + public function add($attr = array()) + { + if (false == is_array($attr)) { + return PEAR::raiseError("Parameter must be an array"); + } + foreach ($attr as $k => $v) { + $k = $this->getAttrName($k); + if (false == is_array($v)) { + // Do not add empty values + if ($v == null) { + continue; + } else { + $v = array($v); + } + } + // add new values to existing attribute or add new attribute + if ($this->exists($k)) { + $this->_attributes[$k] = array_unique(array_merge($this->_attributes[$k], $v)); + } else { + $this->_map[strtolower($k)] = $k; + $this->_attributes[$k] = $v; + } + // save changes for update() + if (empty($this->_changes["add"][$k])) { + $this->_changes["add"][$k] = array(); + } + $this->_changes["add"][$k] = array_unique(array_merge($this->_changes["add"][$k], $v)); + } + $return = true; + return $return; + } + + /** + * Deletes an whole attribute or a value or the whole entry + * + * The parameter can be one of the following: + * + * "attributename" - The attribute as a whole will be deleted + * array("attributename1", "attributename2) - All given attributes will be + * deleted + * array("attributename" => "value") - The value will be deleted + * array("attributename" => array("value1", "value2") - The given values + * will be deleted + * If $attr is null or omitted , then the whole Entry will be deleted! + * + * These changes are local to the entry and do + * not affect the entry on the server until {@link update()} is called. + * + * Please note that you must select the attribute (at $ldap->search() for example) + * to be able to delete values of it, Otherwise {@link update()} will silently fail + * and remove nothing. + * + * @param string|array $attr Attributes to delete (NULL or missing to delete whole entry) + * + * @access public + * @return true + */ + public function delete($attr = null) + { + if (is_null($attr)) { + $this->_delete = true; + return true; + } + if (is_string($attr)) { + $attr = array($attr); + } + // Make the assumption that attribute names cannot be numeric, + // therefore this has to be a simple list of attribute names to delete + if (is_numeric(key($attr))) { + foreach ($attr as $name) { + if (is_array($name)) { + // someone mixed modes (list mode but specific values given!) + $del_attr_name = array_search($name, $attr); + $this->delete(array($del_attr_name => $name)); + } else { + // mark for update() if this attr was not marked before + $name = $this->getAttrName($name); + if ($this->exists($name)) { + $this->_changes["delete"][$name] = null; + unset($this->_attributes[$name]); + } + } + } + } else { + // Here we have a hash with "attributename" => "value to delete" + foreach ($attr as $name => $values) { + if (is_int($name)) { + // someone mixed modes and gave us just an attribute name + $this->delete($values); + } else { + // mark for update() if this attr was not marked before; + // this time it must consider the selected values also + $name = $this->getAttrName($name); + if ($this->exists($name)) { + if (false == is_array($values)) { + $values = array($values); + } + // save values to be deleted + if (empty($this->_changes["delete"][$name])) { + $this->_changes["delete"][$name] = array(); + } + $this->_changes["delete"][$name] = + array_unique(array_merge($this->_changes["delete"][$name], $values)); + foreach ($values as $value) { + // find the key for the value that should be deleted + $key = array_search($value, $this->_attributes[$name]); + if (false !== $key) { + // delete the value + unset($this->_attributes[$name][$key]); + } + } + } + } + } + } + $return = true; + return $return; + } + + /** + * Replaces attributes or its values + * + * The parameter has to an array of the following form: + * array("attributename" => "single value", + * "attribute2name" => array("value1", "value2"), + * "deleteme1" => null, + * "deleteme2" => "") + * If the attribute does not yet exist it will be added instead (see also $force). + * If the attribue value is null, the attribute will de deleted. + * + * These changes are local to the entry and do + * not affect the entry on the server until {@link update()} is called. + * + * In some cases you are not allowed to read the attributes value (for + * example the ActiveDirectory attribute unicodePwd) but are allowed to + * replace the value. In this case replace() would assume that the attribute + * is not in the directory yet and tries to add it which will result in an + * LDAP_TYPE_OR_VALUE_EXISTS error. + * To force replace mode instead of add, you can set $force to true. + * + * @param array $attr Attributes to replace + * @param bool $force Force replacing mode in case we can't read the attr value but are allowed to replace it + * + * @access public + * @return true|Net_LDAP2_Error + */ + public function replace($attr = array(), $force = false) + { + if (false == is_array($attr)) { + return PEAR::raiseError("Parameter must be an array"); + } + foreach ($attr as $k => $v) { + $k = $this->getAttrName($k); + if (false == is_array($v)) { + // delete attributes with empty values; treat ints as string + if (is_int($v)) { + $v = "$v"; + } + if ($v == null) { + $this->delete($k); + continue; + } else { + $v = array($v); + } + } + // existing attributes will get replaced + if ($this->exists($k) || $force) { + $this->_changes["replace"][$k] = $v; + $this->_attributes[$k] = $v; + } else { + // new ones just get added + $this->add(array($k => $v)); + } + } + $return = true; + return $return; + } + + /** + * Update the entry on the directory server + * + * This will evaluate all changes made so far and send them + * to the directory server. + * Please note, that if you make changes to objectclasses wich + * have mandatory attributes set, update() will currently fail. + * Remove the entry from the server and readd it as new in such cases. + * This also will deal with problems with setting structural object classes. + * + * @param Net_LDAP2 $ldap If passed, a call to setLDAP() is issued prior update, thus switching the LDAP-server. This is for perl-ldap interface compliance + * + * @access public + * @return true|Net_LDAP2_Error + * @todo Entry rename with a DN containing special characters needs testing! + */ + public function update($ldap = null) + { + if ($ldap) { + $msg = $this->setLDAP($ldap); + if (Net_LDAP2::isError($msg)) { + return PEAR::raiseError('You passed an invalid $ldap variable to update()'); + } + } + + // ensure we have a valid LDAP object + $ldap =& $this->getLDAP(); + if (!$ldap instanceof Net_LDAP2) { + return PEAR::raiseError("The entries LDAP object is not valid"); + } + + // Get and check link + $link = $ldap->getLink(); + if (!is_resource($link)) { + return PEAR::raiseError("Could not update entry: internal LDAP link is invalid"); + } + + /* + * Delete the entry + */ + if (true === $this->_delete) { + return $ldap->delete($this); + } + + /* + * New entry + */ + if (true === $this->_new) { + $msg = $ldap->add($this); + if (Net_LDAP2::isError($msg)) { + return $msg; + } + $this->_new = false; + $this->_changes['add'] = array(); + $this->_changes['delete'] = array(); + $this->_changes['replace'] = array(); + $this->_original = $this->_attributes; + + $return = true; + return $return; + } + + /* + * Rename/move entry + */ + if (false == is_null($this->_newdn)) { + if ($ldap->getLDAPVersion() !== 3) { + return PEAR::raiseError("Renaming/Moving an entry is only supported in LDAPv3"); + } + // make dn relative to parent (needed for ldap rename) + $parent = Net_LDAP2_Util::ldap_explode_dn($this->_newdn, array('casefolding' => 'none', 'reverse' => false, 'onlyvalues' => false)); + if (Net_LDAP2::isError($parent)) { + return $parent; + } + $child = array_shift($parent); + // maybe the dn consist of a multivalued RDN, we must build the dn in this case + // because the $child-RDN is an array! + if (is_array($child)) { + $child = Net_LDAP2_Util::canonical_dn($child); + } + $parent = Net_LDAP2_Util::canonical_dn($parent); + + // rename/move + if (false == @ldap_rename($link, $this->_dn, $child, $parent, true)) { + return PEAR::raiseError("Entry not renamed: " . + @ldap_error($link), @ldap_errno($link)); + } + // reflect changes to local copy + $this->_dn = $this->_newdn; + $this->_newdn = null; + } + + /* + * Carry out modifications to the entry + */ + // ADD + foreach ($this->_changes["add"] as $attr => $value) { + // if attribute exists, add new values + if ($this->exists($attr)) { + if (false === @ldap_mod_add($link, $this->dn(), array($attr => $value))) { + return PEAR::raiseError("Could not add new values to attribute $attr: " . + @ldap_error($link), @ldap_errno($link)); + } + } else { + // new attribute + if (false === @ldap_modify($link, $this->dn(), array($attr => $value))) { + return PEAR::raiseError("Could not add new attribute $attr: " . + @ldap_error($link), @ldap_errno($link)); + } + } + // all went well here, I guess + unset($this->_changes["add"][$attr]); + } + + // DELETE + foreach ($this->_changes["delete"] as $attr => $value) { + // In LDAPv3 you need to specify the old values for deleting + if (is_null($value) && $ldap->getLDAPVersion() === 3) { + $value = $this->_original[$attr]; + } + if (false === @ldap_mod_del($link, $this->dn(), array($attr => $value))) { + return PEAR::raiseError("Could not delete attribute $attr: " . + @ldap_error($link), @ldap_errno($link)); + } + unset($this->_changes["delete"][$attr]); + } + + // REPLACE + foreach ($this->_changes["replace"] as $attr => $value) { + if (false === @ldap_modify($link, $this->dn(), array($attr => $value))) { + return PEAR::raiseError("Could not replace attribute $attr values: " . + @ldap_error($link), @ldap_errno($link)); + } + unset($this->_changes["replace"][$attr]); + } + + // all went well, so _original (server) becomes _attributes (local copy) + $this->_original = $this->_attributes; + + $return = true; + return $return; + } + + /** + * Returns the right attribute name + * + * @param string $attr Name of attribute + * + * @access protected + * @return string The right name of the attribute + */ + protected function getAttrName($attr) + { + $name = strtolower($attr); + if (array_key_exists($name, $this->_map)) { + $attr = $this->_map[$name]; + } + return $attr; + } + + /** + * Returns a reference to the LDAP-Object of this entry + * + * @access public + * @return Net_LDAP2|Net_LDAP2_Error Reference to the Net_LDAP2 Object (the connection) or Net_LDAP2_Error + */ + public function &getLDAP() + { + if (!$this->_ldap instanceof Net_LDAP2) { + $err = new PEAR_Error('LDAP is not a valid Net_LDAP2 object'); + return $err; + } else { + return $this->_ldap; + } + } + + /** + * Sets a reference to the LDAP-Object of this entry + * + * After setting a Net_LDAP2 object, calling update() will use that object for + * updating directory contents. Use this to dynamicly switch directorys. + * + * @param Net_LDAP2 &$ldap Net_LDAP2 object that this entry should be connected to + * + * @access public + * @return true|Net_LDAP2_Error + */ + public function setLDAP(&$ldap) + { + if (!$ldap instanceof Net_LDAP2) { + return PEAR::raiseError("LDAP is not a valid Net_LDAP2 object"); + } else { + $this->_ldap =& $ldap; + return true; + } + } + + /** + * Marks the entry as new/existing. + * + * If an Entry is marked as new, it will be added to the directory + * when calling {@link update()}. + * If the entry is marked as old ($mark = false), then the entry is + * assumed to be present in the directory server wich results in + * modification when calling {@link update()}. + * + * @param boolean $mark Value to set, defaults to "true" + * + * @return void + */ + public function markAsNew($mark = true) + { + $this->_new = ($mark)? true : false; + } + + /** + * Applies a regular expression onto a single- or multivalued attribute (like preg_match()) + * + * This method behaves like PHPs preg_match() but with some exceptions. + * If you want to retrieve match information, then you MUST pass the + * $matches parameter via reference! otherwise you will get no matches. + * Since it is possible to have multi valued attributes the $matches + * array will have a additionally numerical dimension (one for each value): + * + * $matches = array( + * 0 => array (usual preg_match() returnarray), + * 1 => array (usual preg_match() returnarray) + * ) + * + * Please note, that $matches will be initialized to an empty array inside. + * + * Usage example: + * + * $result = $entry->preg_match('/089(\d+)/', 'telephoneNumber', &$matches); + * if ( $result === true ){ + * echo "First match: ".$matches[0][1]; // Match of value 1, content of first bracket + * } else { + * if ( Net_LDAP2::isError($result) ) { + * echo "Error: ".$result->getMessage(); + * } else { + * echo "No match found."; + * } + * } + * + * + * Please note that it is important to test for an Net_LDAP2_Error, because objects are + * evaluating to true by default, thus if an error occured, and you only check using "==" then + * you get misleading results. Use the "identical" (===) operator to test for matches to + * avoid this as shown above. + * + * @param string $regex The regular expression + * @param string $attr_name The attribute to search in + * @param array $matches (optional, PASS BY REFERENCE!) Array to store matches in + * + * @return boolean|Net_LDAP2_Error TRUE, if we had a match in one of the values, otherwise false. Net_LDAP2_Error in case something went wrong + */ + public function pregMatch($regex, $attr_name, $matches = array()) + { + $matches = array(); + + // fetch attribute values + $attr = $this->getValue($attr_name, 'all'); + if (Net_LDAP2::isError($attr)) { + return $attr; + } else { + unset($attr['count']); + } + + // perform preg_match() on all values + $match = false; + foreach ($attr as $thisvalue) { + $matches_int = array(); + if (preg_match($regex, $thisvalue, $matches_int)) { + $match = true; + array_push($matches, $matches_int); // store matches in reference + } + } + return $match; + } + + /** + * Alias of {@link pregMatch()} for compatibility to Net_LDAP 1 + * + * @see pregMatch() + * @return boolean|Net_LDAP2_Error + */ + public function preg_match() + { + $args = func_get_args(); + return call_user_func_array(array( &$this, 'pregMatch' ), $args); + } + + /** + * Tells if the entry is consiedered as new (not present in the server) + * + * Please note, that this doesn't tell you if the entry is present on the server. + * Use {@link Net_LDAP2::dnExists()} to see if an entry is already there. + * + * @return boolean + */ + public function isNew() + { + return $this->_new; + } + + + /** + * Is this entry going to be deleted once update() is called? + * + * @return boolean + */ + public function willBeDeleted() + { + return $this->_delete; + } + + /** + * Is this entry going to be moved once update() is called? + * + * @return boolean + */ + public function willBeMoved() + { + return ($this->dn() !== $this->currentDN()); + } + + /** + * Returns always the original DN + * + * If an entry will be moved but {@link update()} was not called, + * {@link dn()} will return the new DN. This method however, returns + * always the current active DN. + * + * @return string + */ + public function currentDN() + { + return $this->_dn; + } + + /** + * Returns the attribute changes to be carried out once update() is called + * + * @return array + */ + public function getChanges() + { + return $this->_changes; + } +} +?> diff --git a/extlib/Net/LDAP2/Filter.php b/extlib/Net/LDAP2/Filter.php new file mode 100644 index 0000000000..0723edab2b --- /dev/null +++ b/extlib/Net/LDAP2/Filter.php @@ -0,0 +1,514 @@ + +* @copyright 2009 Benedikt Hallinger +* @license http://www.gnu.org/licenses/lgpl-3.0.txt LGPLv3 +* @version SVN: $Id: Filter.php 289978 2009-10-27 09:56:41Z beni $ +* @link http://pear.php.net/package/Net_LDAP2/ +*/ + +/** +* Includes +*/ +require_once 'PEAR.php'; +require_once 'Util.php'; + +/** +* Object representation of a part of a LDAP filter. +* +* This Class is not completely compatible to the PERL interface! +* +* The purpose of this class is, that users can easily build LDAP filters +* without having to worry about right escaping etc. +* A Filter is built using several independent filter objects +* which are combined afterwards. This object works in two +* modes, depending how the object is created. +* If the object is created using the {@link create()} method, then this is a leaf-object. +* If the object is created using the {@link combine()} method, then this is a container object. +* +* LDAP filters are defined in RFC-2254 and can be found under +* {@link http://www.ietf.org/rfc/rfc2254.txt} +* +* Here a quick copy&paste example: +* +* $filter0 = Net_LDAP2_Filter::create('stars', 'equals', '***'); +* $filter_not0 = Net_LDAP2_Filter::combine('not', $filter0); +* +* $filter1 = Net_LDAP2_Filter::create('gn', 'begins', 'bar'); +* $filter2 = Net_LDAP2_Filter::create('gn', 'ends', 'baz'); +* $filter_comp = Net_LDAP2_Filter::combine('or',array($filter_not0, $filter1, $filter2)); +* +* echo $filter_comp->asString(); +* // This will output: (|(!(stars=\0x5c0x2a\0x5c0x2a\0x5c0x2a))(gn=bar*)(gn=*baz)) +* // The stars in $filter0 are treaten as real stars unless you disable escaping. +* +* +* @category Net +* @package Net_LDAP2 +* @author Benedikt Hallinger +* @license http://www.gnu.org/copyleft/lesser.html LGPL +* @link http://pear.php.net/package/Net_LDAP2/ +*/ +class Net_LDAP2_Filter extends PEAR +{ + /** + * Storage for combination of filters + * + * This variable holds a array of filter objects + * that should be combined by this filter object. + * + * @access protected + * @var array + */ + protected $_subfilters = array(); + + /** + * Match of this filter + * + * If this is a leaf filter, then a matching rule is stored, + * if it is a container, then it is a logical operator + * + * @access protected + * @var string + */ + protected $_match; + + /** + * Single filter + * + * If we operate in leaf filter mode, + * then the constructing method stores + * the filter representation here + * + * @acces private + * @var string + */ + protected $_filter; + + /** + * Create a new Net_LDAP2_Filter object and parse $filter. + * + * This is for PERL Net::LDAP interface. + * Construction of Net_LDAP2_Filter objects should happen through either + * {@link create()} or {@link combine()} which give you more control. + * However, you may use the perl iterface if you already have generated filters. + * + * @param string $filter LDAP filter string + * + * @see parse() + */ + public function __construct($filter = false) + { + // The optional parameter must remain here, because otherwise create() crashes + if (false !== $filter) { + $filter_o = self::parse($filter); + if (PEAR::isError($filter_o)) { + $this->_filter = $filter_o; // assign error, so asString() can report it + } else { + $this->_filter = $filter_o->asString(); + } + } + } + + /** + * Constructor of a new part of a LDAP filter. + * + * The following matching rules exists: + * - equals: One of the attributes values is exactly $value + * Please note that case sensitiviness is depends on the + * attributes syntax configured in the server. + * - begins: One of the attributes values must begin with $value + * - ends: One of the attributes values must end with $value + * - contains: One of the attributes values must contain $value + * - present | any: The attribute can contain any value but must be existent + * - greater: The attributes value is greater than $value + * - less: The attributes value is less than $value + * - greaterOrEqual: The attributes value is greater or equal than $value + * - lessOrEqual: The attributes value is less or equal than $value + * - approx: One of the attributes values is similar to $value + * + * If $escape is set to true (default) then $value will be escaped + * properly. If it is set to false then $value will be treaten as raw filter value string. + * You should escape yourself using {@link Net_LDAP2_Util::escape_filter_value()}! + * + * Examples: + * + * // This will find entries that contain an attribute "sn" that ends with "foobar": + * $filter = new Net_LDAP2_Filter('sn', 'ends', 'foobar'); + * + * // This will find entries that contain an attribute "sn" that has any value set: + * $filter = new Net_LDAP2_Filter('sn', 'any'); + * + * + * @param string $attr_name Name of the attribute the filter should apply to + * @param string $match Matching rule (equals, begins, ends, contains, greater, less, greaterOrEqual, lessOrEqual, approx, any) + * @param string $value (optional) if given, then this is used as a filter + * @param boolean $escape Should $value be escaped? (default: yes, see {@link Net_LDAP2_Util::escape_filter_value()} for detailed information) + * + * @return Net_LDAP2_Filter|Net_LDAP2_Error + */ + public static function &create($attr_name, $match, $value = '', $escape = true) + { + $leaf_filter = new Net_LDAP2_Filter(); + if ($escape) { + $array = Net_LDAP2_Util::escape_filter_value(array($value)); + $value = $array[0]; + } + switch (strtolower($match)) { + case 'equals': + $leaf_filter->_filter = '(' . $attr_name . '=' . $value . ')'; + break; + case 'begins': + $leaf_filter->_filter = '(' . $attr_name . '=' . $value . '*)'; + break; + case 'ends': + $leaf_filter->_filter = '(' . $attr_name . '=*' . $value . ')'; + break; + case 'contains': + $leaf_filter->_filter = '(' . $attr_name . '=*' . $value . '*)'; + break; + case 'greater': + $leaf_filter->_filter = '(' . $attr_name . '>' . $value . ')'; + break; + case 'less': + $leaf_filter->_filter = '(' . $attr_name . '<' . $value . ')'; + break; + case 'greaterorequal': + case '>=': + $leaf_filter->_filter = '(' . $attr_name . '>=' . $value . ')'; + break; + case 'lessorequal': + case '<=': + $leaf_filter->_filter = '(' . $attr_name . '<=' . $value . ')'; + break; + case 'approx': + case '~=': + $leaf_filter->_filter = '(' . $attr_name . '~=' . $value . ')'; + break; + case 'any': + case 'present': // alias that may improve user code readability + $leaf_filter->_filter = '(' . $attr_name . '=*)'; + break; + default: + return PEAR::raiseError('Net_LDAP2_Filter create error: matching rule "' . $match . '" not known!'); + } + return $leaf_filter; + } + + /** + * Combine two or more filter objects using a logical operator + * + * This static method combines two or more filter objects and returns one single + * filter object that contains all the others. + * Call this method statically: $filter = Net_LDAP2_Filter('or', array($filter1, $filter2)) + * If the array contains filter strings instead of filter objects, we will try to parse them. + * + * @param string $log_op The locicall operator. May be "and", "or", "not" or the subsequent logical equivalents "&", "|", "!" + * @param array|Net_LDAP2_Filter $filters array with Net_LDAP2_Filter objects + * + * @return Net_LDAP2_Filter|Net_LDAP2_Error + * @static + */ + public static function &combine($log_op, $filters) + { + if (PEAR::isError($filters)) { + return $filters; + } + + // substitude named operators to logical operators + if ($log_op == 'and') $log_op = '&'; + if ($log_op == 'or') $log_op = '|'; + if ($log_op == 'not') $log_op = '!'; + + // tests for sane operation + if ($log_op == '!') { + // Not-combination, here we only accept one filter object or filter string + if ($filters instanceof Net_LDAP2_Filter) { + $filters = array($filters); // force array + } elseif (is_string($filters)) { + $filter_o = self::parse($filters); + if (PEAR::isError($filter_o)) { + $err = PEAR::raiseError('Net_LDAP2_Filter combine error: '.$filter_o->getMessage()); + return $err; + } else { + $filters = array($filter_o); + } + } elseif (is_array($filters)) { + $err = PEAR::raiseError('Net_LDAP2_Filter combine error: operator is "not" but $filter is an array!'); + return $err; + } else { + $err = PEAR::raiseError('Net_LDAP2_Filter combine error: operator is "not" but $filter is not a valid Net_LDAP2_Filter nor a filter string!'); + return $err; + } + } elseif ($log_op == '&' || $log_op == '|') { + if (!is_array($filters) || count($filters) < 2) { + $err = PEAR::raiseError('Net_LDAP2_Filter combine error: parameter $filters is not an array or contains less than two Net_LDAP2_Filter objects!'); + return $err; + } + } else { + $err = PEAR::raiseError('Net_LDAP2_Filter combine error: logical operator is not known!'); + return $err; + } + + $combined_filter = new Net_LDAP2_Filter(); + foreach ($filters as $key => $testfilter) { // check for errors + if (PEAR::isError($testfilter)) { + return $testfilter; + } elseif (is_string($testfilter)) { + // string found, try to parse into an filter object + $filter_o = self::parse($testfilter); + if (PEAR::isError($filter_o)) { + return $filter_o; + } else { + $filters[$key] = $filter_o; + } + } elseif (!$testfilter instanceof Net_LDAP2_Filter) { + $err = PEAR::raiseError('Net_LDAP2_Filter combine error: invalid object passed in array $filters!'); + return $err; + } + } + + $combined_filter->_subfilters = $filters; + $combined_filter->_match = $log_op; + return $combined_filter; + } + + /** + * Parse FILTER into a Net_LDAP2_Filter object + * + * This parses an filter string into Net_LDAP2_Filter objects. + * + * @param string $FILTER The filter string + * + * @access static + * @return Net_LDAP2_Filter|Net_LDAP2_Error + * @todo Leaf-mode: Do we need to escape at all? what about *-chars?check for the need of encoding values, tackle problems (see code comments) + */ + public static function parse($FILTER) + { + if (preg_match('/^\((.+?)\)$/', $FILTER, $matches)) { + if (in_array(substr($matches[1], 0, 1), array('!', '|', '&'))) { + // Subfilter processing: pass subfilters to parse() and combine + // the objects using the logical operator detected + // we have now something like "&(...)(...)(...)" but at least one part ("!(...)"). + // Each subfilter could be an arbitary complex subfilter. + + // extract logical operator and filter arguments + $log_op = substr($matches[1], 0, 1); + $remaining_component = substr($matches[1], 1); + + // split $remaining_component into individual subfilters + // we cannot use split() for this, because we do not know the + // complexiness of the subfilter. Thus, we look trough the filter + // string and just recognize ending filters at the first level. + // We record the index number of the char and use that information + // later to split the string. + $sub_index_pos = array(); + $prev_char = ''; // previous character looked at + $level = 0; // denotes the current bracket level we are, + // >1 is too deep, 1 is ok, 0 is outside any + // subcomponent + for ($curpos = 0; $curpos < strlen($remaining_component); $curpos++) { + $cur_char = substr($remaining_component, $curpos, 1); + + // rise/lower bracket level + if ($cur_char == '(' && $prev_char != '\\') { + $level++; + } elseif ($cur_char == ')' && $prev_char != '\\') { + $level--; + } + + if ($cur_char == '(' && $prev_char == ')' && $level == 1) { + array_push($sub_index_pos, $curpos); // mark the position for splitting + } + $prev_char = $cur_char; + } + + // now perform the splits. To get also the last part, we + // need to add the "END" index to the split array + array_push($sub_index_pos, strlen($remaining_component)); + $subfilters = array(); + $oldpos = 0; + foreach ($sub_index_pos as $s_pos) { + $str_part = substr($remaining_component, $oldpos, $s_pos - $oldpos); + array_push($subfilters, $str_part); + $oldpos = $s_pos; + } + + // some error checking... + if (count($subfilters) == 1) { + // only one subfilter found + } elseif (count($subfilters) > 1) { + // several subfilters found + if ($log_op == "!") { + return PEAR::raiseError("Filter parsing error: invalid filter syntax - NOT operator detected but several arguments given!"); + } + } else { + // this should not happen unless the user specified a wrong filter + return PEAR::raiseError("Filter parsing error: invalid filter syntax - got operator '$log_op' but no argument!"); + } + + // Now parse the subfilters into objects and combine them using the operator + $subfilters_o = array(); + foreach ($subfilters as $s_s) { + $o = self::parse($s_s); + if (PEAR::isError($o)) { + return $o; + } else { + array_push($subfilters_o, self::parse($s_s)); + } + } + + $filter_o = self::combine($log_op, $subfilters_o); + return $filter_o; + + } else { + // This is one leaf filter component, do some syntax checks, then escape and build filter_o + // $matches[1] should be now something like "foo=bar" + + // detect multiple leaf components + // [TODO] Maybe this will make problems with filters containing brackets inside the value + if (stristr($matches[1], ')(')) { + return PEAR::raiseError("Filter parsing error: invalid filter syntax - multiple leaf components detected!"); + } else { + $filter_parts = preg_split('/(?|<|>=|<=)/', $matches[1], 2, PREG_SPLIT_DELIM_CAPTURE); + if (count($filter_parts) != 3) { + return PEAR::raiseError("Filter parsing error: invalid filter syntax - unknown matching rule used"); + } else { + $filter_o = new Net_LDAP2_Filter(); + // [TODO]: Do we need to escape at all? what about *-chars user provide and that should remain special? + // I think, those prevent escaping! We need to check against PERL Net::LDAP! + // $value_arr = Net_LDAP2_Util::escape_filter_value(array($filter_parts[2])); + // $value = $value_arr[0]; + $value = $filter_parts[2]; + $filter_o->_filter = '('.$filter_parts[0].$filter_parts[1].$value.')'; + return $filter_o; + } + } + } + } else { + // ERROR: Filter components must be enclosed in round brackets + return PEAR::raiseError("Filter parsing error: invalid filter syntax - filter components must be enclosed in round brackets"); + } + } + + /** + * Get the string representation of this filter + * + * This method runs through all filter objects and creates + * the string representation of the filter. If this + * filter object is a leaf filter, then it will return + * the string representation of this filter. + * + * @return string|Net_LDAP2_Error + */ + public function asString() + { + if ($this->isLeaf()) { + $return = $this->_filter; + } else { + $return = ''; + foreach ($this->_subfilters as $filter) { + $return = $return.$filter->asString(); + } + $return = '(' . $this->_match . $return . ')'; + } + return $return; + } + + /** + * Alias for perl interface as_string() + * + * @see asString() + * @return string|Net_LDAP2_Error + */ + public function as_string() + { + return $this->asString(); + } + + /** + * Print the text representation of the filter to FH, or the currently selected output handle if FH is not given + * + * This method is only for compatibility to the perl interface. + * However, the original method was called "print" but due to PHP language restrictions, + * we can't have a print() method. + * + * @param resource $FH (optional) A filehandle resource + * + * @return true|Net_LDAP2_Error + */ + public function printMe($FH = false) + { + if (!is_resource($FH)) { + if (PEAR::isError($FH)) { + return $FH; + } + $filter_str = $this->asString(); + if (PEAR::isError($filter_str)) { + return $filter_str; + } else { + print($filter_str); + } + } else { + $filter_str = $this->asString(); + if (PEAR::isError($filter_str)) { + return $filter_str; + } else { + $res = @fwrite($FH, $this->asString()); + if ($res == false) { + return PEAR::raiseError("Unable to write filter string to filehandle \$FH!"); + } + } + } + return true; + } + + /** + * This can be used to escape a string to provide a valid LDAP-Filter. + * + * LDAP will only recognise certain characters as the + * character istself if they are properly escaped. This is + * what this method does. + * The method can be called statically, so you can use it outside + * for your own purposes (eg for escaping only parts of strings) + * + * In fact, this is just a shorthand to {@link Net_LDAP2_Util::escape_filter_value()}. + * For upward compatibiliy reasons you are strongly encouraged to use the escape + * methods provided by the Net_LDAP2_Util class. + * + * @param string $value Any string who should be escaped + * + * @static + * @return string The string $string, but escaped + * @deprecated Do not use this method anymore, instead use Net_LDAP2_Util::escape_filter_value() directly + */ + public static function escape($value) + { + $return = Net_LDAP2_Util::escape_filter_value(array($value)); + return $return[0]; + } + + /** + * Is this a container or a leaf filter object? + * + * @access protected + * @return boolean + */ + protected function isLeaf() + { + if (count($this->_subfilters) > 0) { + return false; // Container! + } else { + return true; // Leaf! + } + } +} +?> diff --git a/extlib/Net/LDAP2/LDIF.php b/extlib/Net/LDAP2/LDIF.php new file mode 100644 index 0000000000..34f3e75dd5 --- /dev/null +++ b/extlib/Net/LDAP2/LDIF.php @@ -0,0 +1,922 @@ + +* @copyright 2009 Benedikt Hallinger +* @license http://www.gnu.org/licenses/lgpl-3.0.txt LGPLv3 +* @version SVN: $Id: LDIF.php 286718 2009-08-03 07:30:49Z beni $ +* @link http://pear.php.net/package/Net_LDAP2/ +*/ + +/** +* Includes +*/ +require_once 'PEAR.php'; +require_once 'Net/LDAP2.php'; +require_once 'Net/LDAP2/Entry.php'; +require_once 'Net/LDAP2/Util.php'; + +/** +* LDIF capabilitys for Net_LDAP2, closely taken from PERLs Net::LDAP +* +* It provides a means to convert between Net_LDAP2_Entry objects and LDAP entries +* represented in LDIF format files. Reading and writing are supported and may +* manipulate single entries or lists of entries. +* +* Usage example: +* +* // Read and parse an ldif-file into Net_LDAP2_Entry objects +* // and print out the DNs. Store the entries for later use. +* require 'Net/LDAP2/LDIF.php'; +* $options = array( +* 'onerror' => 'die' +* ); +* $entries = array(); +* $ldif = new Net_LDAP2_LDIF('test.ldif', 'r', $options); +* do { +* $entry = $ldif->read_entry(); +* $dn = $entry->dn(); +* echo " done building entry: $dn\n"; +* array_push($entries, $entry); +* } while (!$ldif->eof()); +* $ldif->done(); +* +* +* // write those entries to another file +* $ldif = new Net_LDAP2_LDIF('test.out.ldif', 'w', $options); +* $ldif->write_entry($entries); +* $ldif->done(); +* +* +* @category Net +* @package Net_LDAP2 +* @author Benedikt Hallinger +* @license http://www.gnu.org/copyleft/lesser.html LGPL +* @link http://pear.php.net/package/Net_LDAP22/ +* @see http://www.ietf.org/rfc/rfc2849.txt +* @todo Error handling should be PEARified +* @todo LDAPv3 controls are not implemented yet +*/ +class Net_LDAP2_LDIF extends PEAR +{ + /** + * Options + * + * @access protected + * @var array + */ + protected $_options = array('encode' => 'base64', + 'onerror' => null, + 'change' => 0, + 'lowercase' => 0, + 'sort' => 0, + 'version' => null, + 'wrap' => 78, + 'raw' => '' + ); + + /** + * Errorcache + * + * @access protected + * @var array + */ + protected $_error = array('error' => null, + 'line' => 0 + ); + + /** + * Filehandle for read/write + * + * @access protected + * @var array + */ + protected $_FH = null; + + /** + * Says, if we opened the filehandle ourselves + * + * @access protected + * @var array + */ + protected $_FH_opened = false; + + /** + * Linecounter for input file handle + * + * @access protected + * @var array + */ + protected $_input_line = 0; + + /** + * counter for processed entries + * + * @access protected + * @var int + */ + protected $_entrynum = 0; + + /** + * Mode we are working in + * + * Either 'r', 'a' or 'w' + * + * @access protected + * @var string + */ + protected $_mode = false; + + /** + * Tells, if the LDIF version string was already written + * + * @access protected + * @var boolean + */ + protected $_version_written = false; + + /** + * Cache for lines that have build the current entry + * + * @access protected + * @var boolean + */ + protected $_lines_cur = array(); + + /** + * Cache for lines that will build the next entry + * + * @access protected + * @var boolean + */ + protected $_lines_next = array(); + + /** + * Open LDIF file for reading or for writing + * + * new (FILE): + * Open the file read-only. FILE may be the name of a file + * or an already open filehandle. + * If the file doesn't exist, it will be created if in write mode. + * + * new (FILE, MODE, OPTIONS): + * Open the file with the given MODE (see PHPs fopen()), eg "w" or "a". + * FILE may be the name of a file or an already open filehandle. + * PERLs Net_LDAP2 "FILE|" mode does not work curently. + * + * OPTIONS is an associative array and may contain: + * encode => 'none' | 'canonical' | 'base64' + * Some DN values in LDIF cannot be written verbatim and have to be encoded in some way: + * 'none' No encoding. + * 'canonical' See "canonical_dn()" in Net::LDAP::Util. + * 'base64' Use base64. (default, this differs from the Perl interface. + * The perl default is "none"!) + * + * onerror => 'die' | 'warn' | NULL + * Specify what happens when an error is detected. + * 'die' Net_LDAP2_LDIF will croak with an appropriate message. + * 'warn' Net_LDAP2_LDIF will warn (echo) with an appropriate message. + * NULL Net_LDAP2_LDIF will not warn (default), use error(). + * + * change => 1 + * Write entry changes to the LDIF file instead of the entries itself. I.e. write LDAP + * operations acting on the entries to the file instead of the entries contents. + * This writes the changes usually carried out by an update() to the LDIF file. + * + * lowercase => 1 + * Convert attribute names to lowercase when writing. + * + * sort => 1 + * Sort attribute names when writing entries according to the rule: + * objectclass first then all other attributes alphabetically sorted by attribute name + * + * version => '1' + * Set the LDIF version to write to the resulting LDIF file. + * According to RFC 2849 currently the only legal value for this option is 1. + * When this option is set Net_LDAP2_LDIF tries to adhere more strictly to + * the LDIF specification in RFC2489 in a few places. + * The default is NULL meaning no version information is written to the LDIF file. + * + * wrap => 78 + * Number of columns where output line wrapping shall occur. + * Default is 78. Setting it to 40 or lower inhibits wrapping. + * + * raw => REGEX + * Use REGEX to denote the names of attributes that are to be + * considered binary in search results if writing entries. + * Example: raw => "/(?i:^jpegPhoto|;binary)/i" + * + * @param string|ressource $file Filename or filehandle + * @param string $mode Mode to open filename + * @param array $options Options like described above + */ + public function __construct($file, $mode = 'r', $options = array()) + { + $this->PEAR('Net_LDAP2_Error'); // default error class + + // First, parse options + // todo: maybe implement further checks on possible values + foreach ($options as $option => $value) { + if (!array_key_exists($option, $this->_options)) { + $this->dropError('Net_LDAP2_LDIF error: option '.$option.' not known!'); + return; + } else { + $this->_options[$option] = strtolower($value); + } + } + + // setup LDIF class + $this->version($this->_options['version']); + + // setup file mode + if (!preg_match('/^[rwa]\+?$/', $mode)) { + $this->dropError('Net_LDAP2_LDIF error: file mode '.$mode.' not supported!'); + } else { + $this->_mode = $mode; + + // setup filehandle + if (is_resource($file)) { + // TODO: checks on mode possible? + $this->_FH =& $file; + } else { + $imode = substr($this->_mode, 0, 1); + if ($imode == 'r') { + if (!file_exists($file)) { + $this->dropError('Unable to open '.$file.' for read: file not found'); + $this->_mode = false; + } + if (!is_readable($file)) { + $this->dropError('Unable to open '.$file.' for read: permission denied'); + $this->_mode = false; + } + } + + if (($imode == 'w' || $imode == 'a')) { + if (file_exists($file)) { + if (!is_writable($file)) { + $this->dropError('Unable to open '.$file.' for write: permission denied'); + $this->_mode = false; + } + } else { + if (!@touch($file)) { + $this->dropError('Unable to create '.$file.' for write: permission denied'); + $this->_mode = false; + } + } + } + + if ($this->_mode) { + $this->_FH = @fopen($file, $this->_mode); + if (false === $this->_FH) { + // Fallback; should never be reached if tests above are good enough! + $this->dropError('Net_LDAP2_LDIF error: Could not open file '.$file); + } else { + $this->_FH_opened = true; + } + } + } + } + } + + /** + * Read one entry from the file and return it as a Net::LDAP::Entry object. + * + * @return Net_LDAP2_Entry + */ + public function read_entry() + { + // read fresh lines, set them as current lines and create the entry + $attrs = $this->next_lines(true); + if (count($attrs) > 0) { + $this->_lines_cur = $attrs; + } + return $this->current_entry(); + } + + /** + * Returns true when the end of the file is reached. + * + * @return boolean + */ + public function eof() + { + return feof($this->_FH); + } + + /** + * Write the entry or entries to the LDIF file. + * + * If you want to build an LDIF file containing several entries AND + * you want to call write_entry() several times, you must open the filehandle + * in append mode ("a"), otherwise you will always get the last entry only. + * + * @param Net_LDAP2_Entry|array $entries Entry or array of entries + * + * @return void + * @todo implement operations on whole entries (adding a whole entry) + */ + public function write_entry($entries) + { + if (!is_array($entries)) { + $entries = array($entries); + } + + foreach ($entries as $entry) { + $this->_entrynum++; + if (!$entry instanceof Net_LDAP2_Entry) { + $this->dropError('Net_LDAP2_LDIF error: entry '.$this->_entrynum.' is not an Net_LDAP2_Entry object'); + } else { + if ($this->_options['change']) { + // LDIF change mode + // fetch change information from entry + $entry_attrs_changes = $entry->getChanges(); + $num_of_changes = count($entry_attrs_changes['add']) + + count($entry_attrs_changes['replace']) + + count($entry_attrs_changes['delete']); + + $is_changed = ($num_of_changes > 0 || $entry->willBeDeleted() || $entry->willBeMoved()); + + // write version if not done yet + // also write DN of entry + if ($is_changed) { + if (!$this->_version_written) { + $this->write_version(); + } + $this->writeDN($entry->currentDN()); + } + + // process changes + // TODO: consider DN add! + if ($entry->willBeDeleted()) { + $this->writeLine("changetype: delete".PHP_EOL); + } elseif ($entry->willBeMoved()) { + $this->writeLine("changetype: modrdn".PHP_EOL); + $olddn = Net_LDAP2_Util::ldap_explode_dn($entry->currentDN(), array('casefold' => 'none')); // maybe gives a bug if using multivalued RDNs + $oldrdn = array_shift($olddn); + $oldparent = implode(',', $olddn); + $newdn = Net_LDAP2_Util::ldap_explode_dn($entry->dn(), array('casefold' => 'none')); // maybe gives a bug if using multivalued RDNs + $rdn = array_shift($newdn); + $parent = implode(',', $newdn); + $this->writeLine("newrdn: ".$rdn.PHP_EOL); + $this->writeLine("deleteoldrdn: 1".PHP_EOL); + if ($parent !== $oldparent) { + $this->writeLine("newsuperior: ".$parent.PHP_EOL); + } + // TODO: What if the entry has attribute changes as well? + // I think we should check for that and make a dummy + // entry with the changes that is written to the LDIF file + } elseif ($num_of_changes > 0) { + // write attribute change data + $this->writeLine("changetype: modify".PHP_EOL); + foreach ($entry_attrs_changes as $changetype => $entry_attrs) { + foreach ($entry_attrs as $attr_name => $attr_values) { + $this->writeLine("$changetype: $attr_name".PHP_EOL); + if ($attr_values !== null) $this->writeAttribute($attr_name, $attr_values, $changetype); + $this->writeLine("-".PHP_EOL); + } + } + } + + // finish this entrys data if we had changes + if ($is_changed) { + $this->finishEntry(); + } + } else { + // LDIF-content mode + // fetch attributes for further processing + $entry_attrs = $entry->getValues(); + + // sort and put objectclass-attrs to first position + if ($this->_options['sort']) { + ksort($entry_attrs); + if (array_key_exists('objectclass', $entry_attrs)) { + $oc = $entry_attrs['objectclass']; + unset($entry_attrs['objectclass']); + $entry_attrs = array_merge(array('objectclass' => $oc), $entry_attrs); + } + } + + // write data + if (!$this->_version_written) { + $this->write_version(); + } + $this->writeDN($entry->dn()); + foreach ($entry_attrs as $attr_name => $attr_values) { + $this->writeAttribute($attr_name, $attr_values); + } + $this->finishEntry(); + } + } + } + } + + /** + * Write version to LDIF + * + * If the object's version is defined, this method allows to explicitely write the version before an entry is written. + * If not called explicitely, it gets called automatically when writing the first entry. + * + * @return void + */ + public function write_version() + { + $this->_version_written = true; + if (!is_null($this->version())) { + return $this->writeLine('version: '.$this->version().PHP_EOL, 'Net_LDAP2_LDIF error: unable to write version'); + } + } + + /** + * Get or set LDIF version + * + * If called without arguments it returns the version of the LDIF file or NULL if no version has been set. + * If called with an argument it sets the LDIF version to VERSION. + * According to RFC 2849 currently the only legal value for VERSION is 1. + * + * @param int $version (optional) LDIF version to set + * + * @return int + */ + public function version($version = null) + { + if ($version !== null) { + if ($version != 1) { + $this->dropError('Net_LDAP2_LDIF error: illegal LDIF version set'); + } else { + $this->_options['version'] = $version; + } + } + return $this->_options['version']; + } + + /** + * Returns the file handle the Net_LDAP2_LDIF object reads from or writes to. + * + * You can, for example, use this to fetch the content of the LDIF file yourself + * + * @return null|resource + */ + public function &handle() + { + if (!is_resource($this->_FH)) { + $this->dropError('Net_LDAP2_LDIF error: invalid file resource'); + $null = null; + return $null; + } else { + return $this->_FH; + } + } + + /** + * Clean up + * + * This method signals that the LDIF object is no longer needed. + * You can use this to free up some memory and close the file handle. + * The file handle is only closed, if it was opened from Net_LDAP2_LDIF. + * + * @return void + */ + public function done() + { + // close FH if we opened it + if ($this->_FH_opened) { + fclose($this->handle()); + } + + // free variables + foreach (get_object_vars($this) as $name => $value) { + unset($this->$name); + } + } + + /** + * Returns last error message if error was found. + * + * Example: + * + * $ldif->someAction(); + * if ($ldif->error()) { + * echo "Error: ".$ldif->error()." at input line: ".$ldif->error_lines(); + * } + * + * + * @param boolean $as_string If set to true, only the message is returned + * + * @return false|Net_LDAP2_Error + */ + public function error($as_string = false) + { + if (Net_LDAP2::isError($this->_error['error'])) { + return ($as_string)? $this->_error['error']->getMessage() : $this->_error['error']; + } else { + return false; + } + } + + /** + * Returns lines that resulted in error. + * + * Perl returns an array of faulty lines in list context, + * but we always just return an int because of PHPs language. + * + * @return int + */ + public function error_lines() + { + return $this->_error['line']; + } + + /** + * Returns the current Net::LDAP::Entry object. + * + * @return Net_LDAP2_Entry|false + */ + public function current_entry() + { + return $this->parseLines($this->current_lines()); + } + + /** + * Parse LDIF lines of one entry into an Net_LDAP2_Entry object + * + * @param array $lines LDIF lines for one entry + * + * @return Net_LDAP2_Entry|false Net_LDAP2_Entry object for those lines + * @todo what about file inclusions and urls? "jpegphoto:< file:///usr/local/directory/photos/fiona.jpg" + */ + public function parseLines($lines) + { + // parse lines into an array of attributes and build the entry + $attributes = array(); + $dn = false; + foreach ($lines as $line) { + if (preg_match('/^(\w+)(:|::|:<)\s(.+)$/', $line, $matches)) { + $attr =& $matches[1]; + $delim =& $matches[2]; + $data =& $matches[3]; + + if ($delim == ':') { + // normal data + $attributes[$attr][] = $data; + } elseif ($delim == '::') { + // base64 data + $attributes[$attr][] = base64_decode($data); + } elseif ($delim == ':<') { + // file inclusion + // TODO: Is this the job of the LDAP-client or the server? + $this->dropError('File inclusions are currently not supported'); + //$attributes[$attr][] = ...; + } else { + // since the pattern above, the delimeter cannot be something else. + $this->dropError('Net_LDAP2_LDIF parsing error: invalid syntax at parsing entry line: '.$line); + continue; + } + + if (strtolower($attr) == 'dn') { + // DN line detected + $dn = $attributes[$attr][0]; // save possibly decoded DN + unset($attributes[$attr]); // remove wrongly added "dn: " attribute + } + } else { + // line not in "attr: value" format -> ignore + // maybe we should rise an error here, but this should be covered by + // next_lines() already. A problem arises, if users try to feed data of + // several entries to this method - the resulting entry will + // get wrong attributes. However, this is already mentioned in the + // methods documentation above. + } + } + + if (false === $dn) { + $this->dropError('Net_LDAP2_LDIF parsing error: unable to detect DN for entry'); + return false; + } else { + $newentry = Net_LDAP2_Entry::createFresh($dn, $attributes); + return $newentry; + } + } + + /** + * Returns the lines that generated the current Net::LDAP::Entry object. + * + * Note that this returns an empty array if no lines have been read so far. + * + * @return array Array of lines + */ + public function current_lines() + { + return $this->_lines_cur; + } + + /** + * Returns the lines that will generate the next Net::LDAP::Entry object. + * + * If you set $force to TRUE then you can iterate over the lines that build + * up entries manually. Otherwise, iterating is done using {@link read_entry()}. + * Force will move the file pointer forward, thus returning the next entries lines. + * + * Wrapped lines will be unwrapped. Comments are stripped. + * + * @param boolean $force Set this to true if you want to iterate over the lines manually + * + * @return array + */ + public function next_lines($force = false) + { + // if we already have those lines, just return them, otherwise read + if (count($this->_lines_next) == 0 || $force) { + $this->_lines_next = array(); // empty in case something was left (if used $force) + $entry_done = false; + $fh = &$this->handle(); + $commentmode = false; // if we are in an comment, for wrapping purposes + $datalines_read = 0; // how many lines with data we have read + + while (!$entry_done && !$this->eof()) { + $this->_input_line++; + // Read line. Remove line endings, we want only data; + // this is okay since ending spaces should be encoded + $data = rtrim(fgets($fh)); + if ($data === false) { + // error only, if EOF not reached after fgets() call + if (!$this->eof()) { + $this->dropError('Net_LDAP2_LDIF error: error reading from file at input line '.$this->_input_line, $this->_input_line); + } + break; + } else { + if (count($this->_lines_next) > 0 && preg_match('/^$/', $data)) { + // Entry is finished if we have an empty line after we had data + $entry_done = true; + + // Look ahead if the next EOF is nearby. Comments and empty + // lines at the file end may cause problems otherwise + $current_pos = ftell($fh); + $data = fgets($fh); + while (!feof($fh)) { + if (preg_match('/^\s*$/', $data) || preg_match('/^#/', $data)) { + // only empty lines or comments, continue to seek + // TODO: Known bug: Wrappings for comments are okay but are treaten as + // error, since we do not honor comment mode here. + // This should be a very theoretically case, however + // i am willing to fix this if really necessary. + $this->_input_line++; + $current_pos = ftell($fh); + $data = fgets($fh); + } else { + // Data found if non emtpy line and not a comment!! + // Rewind to position prior last read and stop lookahead + fseek($fh, $current_pos); + break; + } + } + // now we have either the file pointer at the beginning of + // a new data position or at the end of file causing feof() to return true + + } else { + // build lines + if (preg_match('/^version:\s(.+)$/', $data, $match)) { + // version statement, set version + $this->version($match[1]); + } elseif (preg_match('/^\w+::?\s.+$/', $data)) { + // normal attribute: add line + $commentmode = false; + $this->_lines_next[] = trim($data); + $datalines_read++; + } elseif (preg_match('/^\s(.+)$/', $data, $matches)) { + // wrapped data: unwrap if not in comment mode + if (!$commentmode) { + if ($datalines_read == 0) { + // first line of entry: wrapped data is illegal + $this->dropError('Net_LDAP2_LDIF error: illegal wrapping at input line '.$this->_input_line, $this->_input_line); + } else { + $last = array_pop($this->_lines_next); + $last = $last.trim($matches[1]); + $this->_lines_next[] = $last; + $datalines_read++; + } + } + } elseif (preg_match('/^#/', $data)) { + // LDIF comments + $commentmode = true; + } elseif (preg_match('/^\s*$/', $data)) { + // empty line but we had no data for this + // entry, so just ignore this line + $commentmode = false; + } else { + $this->dropError('Net_LDAP2_LDIF error: invalid syntax at input line '.$this->_input_line, $this->_input_line); + continue; + } + + } + } + } + } + return $this->_lines_next; + } + + /** + * Convert an attribute and value to LDIF string representation + * + * It honors correct encoding of values according to RFC 2849. + * Line wrapping will occur at the configured maximum but only if + * the value is greater than 40 chars. + * + * @param string $attr_name Name of the attribute + * @param string $attr_value Value of the attribute + * + * @access protected + * @return string LDIF string for that attribute and value + */ + protected function convertAttribute($attr_name, $attr_value) + { + // Handle empty attribute or process + if (strlen($attr_value) == 0) { + $attr_value = " "; + } else { + $base64 = false; + // ASCII-chars that are NOT safe for the + // start and for being inside the value. + // These are the int values of those chars. + $unsafe_init = array(0, 10, 13, 32, 58, 60); + $unsafe = array(0, 10, 13); + + // Test for illegal init char + $init_ord = ord(substr($attr_value, 0, 1)); + if ($init_ord > 127 || in_array($init_ord, $unsafe_init)) { + $base64 = true; + } + + // Test for illegal content char + for ($i = 0; $i < strlen($attr_value); $i++) { + $char_ord = ord(substr($attr_value, $i, 1)); + if ($char_ord > 127 || in_array($char_ord, $unsafe)) { + $base64 = true; + } + } + + // Test for ending space + if (substr($attr_value, -1) == ' ') { + $base64 = true; + } + + // If converting is needed, do it + // Either we have some special chars or a matching "raw" regex + if ($base64 || ($this->_options['raw'] && preg_match($this->_options['raw'], $attr_name))) { + $attr_name .= ':'; + $attr_value = base64_encode($attr_value); + } + + // Lowercase attr names if requested + if ($this->_options['lowercase']) $attr_name = strtolower($attr_name); + + // Handle line wrapping + if ($this->_options['wrap'] > 40 && strlen($attr_value) > $this->_options['wrap']) { + $attr_value = wordwrap($attr_value, $this->_options['wrap'], PHP_EOL." ", true); + } + } + + return $attr_name.': '.$attr_value; + } + + /** + * Convert an entries DN to LDIF string representation + * + * It honors correct encoding of values according to RFC 2849. + * + * @param string $dn UTF8-Encoded DN + * + * @access protected + * @return string LDIF string for that DN + * @todo I am not sure, if the UTF8 stuff is correctly handled right now + */ + protected function convertDN($dn) + { + $base64 = false; + // ASCII-chars that are NOT safe for the + // start and for being inside the dn. + // These are the int values of those chars. + $unsafe_init = array(0, 10, 13, 32, 58, 60); + $unsafe = array(0, 10, 13); + + // Test for illegal init char + $init_ord = ord(substr($dn, 0, 1)); + if ($init_ord >= 127 || in_array($init_ord, $unsafe_init)) { + $base64 = true; + } + + // Test for illegal content char + for ($i = 0; $i < strlen($dn); $i++) { + $char = substr($dn, $i, 1); + if (ord($char) >= 127 || in_array($init_ord, $unsafe)) { + $base64 = true; + } + } + + // Test for ending space + if (substr($dn, -1) == ' ') { + $base64 = true; + } + + // if converting is needed, do it + return ($base64)? 'dn:: '.base64_encode($dn) : 'dn: '.$dn; + } + + /** + * Writes an attribute to the filehandle + * + * @param string $attr_name Name of the attribute + * @param string|array $attr_values Single attribute value or array with attribute values + * + * @access protected + * @return void + */ + protected function writeAttribute($attr_name, $attr_values) + { + // write out attribute content + if (!is_array($attr_values)) { + $attr_values = array($attr_values); + } + foreach ($attr_values as $attr_val) { + $line = $this->convertAttribute($attr_name, $attr_val).PHP_EOL; + $this->writeLine($line, 'Net_LDAP2_LDIF error: unable to write attribute '.$attr_name.' of entry '.$this->_entrynum); + } + } + + /** + * Writes a DN to the filehandle + * + * @param string $dn DN to write + * + * @access protected + * @return void + */ + protected function writeDN($dn) + { + // prepare DN + if ($this->_options['encode'] == 'base64') { + $dn = $this->convertDN($dn).PHP_EOL; + } elseif ($this->_options['encode'] == 'canonical') { + $dn = Net_LDAP2_Util::canonical_dn($dn, array('casefold' => 'none')).PHP_EOL; + } else { + $dn = $dn.PHP_EOL; + } + $this->writeLine($dn, 'Net_LDAP2_LDIF error: unable to write DN of entry '.$this->_entrynum); + } + + /** + * Finishes an LDIF entry + * + * @access protected + * @return void + */ + protected function finishEntry() + { + $this->writeLine(PHP_EOL, 'Net_LDAP2_LDIF error: unable to close entry '.$this->_entrynum); + } + + /** + * Just write an arbitary line to the filehandle + * + * @param string $line Content to write + * @param string $error If error occurs, drop this message + * + * @access protected + * @return true|false + */ + protected function writeLine($line, $error = 'Net_LDAP2_LDIF error: unable to write to filehandle') + { + if (is_resource($this->handle()) && fwrite($this->handle(), $line, strlen($line)) === false) { + $this->dropError($error); + return false; + } else { + return true; + } + } + + /** + * Optionally raises an error and pushes the error on the error cache + * + * @param string $msg Errortext + * @param int $line Line in the LDIF that caused the error + * + * @access protected + * @return void + */ + protected function dropError($msg, $line = null) + { + $this->_error['error'] = new Net_LDAP2_Error($msg); + if ($line !== null) $this->_error['line'] = $line; + + if ($this->_options['onerror'] == 'die') { + die($msg.PHP_EOL); + } elseif ($this->_options['onerror'] == 'warn') { + echo $msg.PHP_EOL; + } + } +} +?> diff --git a/extlib/Net/LDAP2/RootDSE.php b/extlib/Net/LDAP2/RootDSE.php new file mode 100644 index 0000000000..8dc81fd4f1 --- /dev/null +++ b/extlib/Net/LDAP2/RootDSE.php @@ -0,0 +1,240 @@ + +* @copyright 2009 Jan Wagner +* @license http://www.gnu.org/licenses/lgpl-3.0.txt LGPLv3 +* @version SVN: $Id: RootDSE.php 286718 2009-08-03 07:30:49Z beni $ +* @link http://pear.php.net/package/Net_LDAP2/ +*/ + +/** +* Includes +*/ +require_once 'PEAR.php'; + +/** +* Getting the rootDSE entry of a LDAP server +* +* @category Net +* @package Net_LDAP2 +* @author Jan Wagner +* @license http://www.gnu.org/copyleft/lesser.html LGPL +* @link http://pear.php.net/package/Net_LDAP22/ +*/ +class Net_LDAP2_RootDSE extends PEAR +{ + /** + * @access protected + * @var object Net_LDAP2_Entry + **/ + protected $_entry; + + /** + * Class constructor + * + * @param Net_LDAP2_Entry &$entry Net_LDAP2_Entry object of the RootDSE + */ + protected function __construct(&$entry) + { + $this->_entry = $entry; + } + + /** + * Fetches a RootDSE object from an LDAP connection + * + * @param Net_LDAP2 $ldap Directory from which the RootDSE should be fetched + * @param array $attrs Array of attributes to search for + * + * @access static + * @return Net_LDAP2_RootDSE|Net_LDAP2_Error + */ + public static function fetch($ldap, $attrs = null) + { + if (!$ldap instanceof Net_LDAP2) { + return PEAR::raiseError("Unable to fetch Schema: Parameter \$ldap must be a Net_LDAP2 object!"); + } + + if (is_array($attrs) && count($attrs) > 0 ) { + $attributes = $attrs; + } else { + $attributes = array('vendorName', + 'vendorVersion', + 'namingContexts', + 'altServer', + 'supportedExtension', + 'supportedControl', + 'supportedSASLMechanisms', + 'supportedLDAPVersion', + 'subschemaSubentry' ); + } + $result = $ldap->search('', '(objectClass=*)', array('attributes' => $attributes, 'scope' => 'base')); + if (self::isError($result)) { + return $result; + } + $entry = $result->shiftEntry(); + if (false === $entry) { + return PEAR::raiseError('Could not fetch RootDSE entry'); + } + $ret = new Net_LDAP2_RootDSE($entry); + return $ret; + } + + /** + * Gets the requested attribute value + * + * Same usuage as {@link Net_LDAP2_Entry::getValue()} + * + * @param string $attr Attribute name + * @param array $options Array of options + * + * @access public + * @return mixed Net_LDAP2_Error object or attribute values + * @see Net_LDAP2_Entry::get_value() + */ + public function getValue($attr = '', $options = '') + { + return $this->_entry->get_value($attr, $options); + } + + /** + * Alias function of getValue() for perl-ldap interface + * + * @see getValue() + * @return mixed + */ + public function get_value() + { + $args = func_get_args(); + return call_user_func_array(array( &$this, 'getValue' ), $args); + } + + /** + * Determines if the extension is supported + * + * @param array $oids Array of oids to check + * + * @access public + * @return boolean + */ + public function supportedExtension($oids) + { + return $this->checkAttr($oids, 'supportedExtension'); + } + + /** + * Alias function of supportedExtension() for perl-ldap interface + * + * @see supportedExtension() + * @return boolean + */ + public function supported_extension() + { + $args = func_get_args(); + return call_user_func_array(array( &$this, 'supportedExtension'), $args); + } + + /** + * Determines if the version is supported + * + * @param array $versions Versions to check + * + * @access public + * @return boolean + */ + public function supportedVersion($versions) + { + return $this->checkAttr($versions, 'supportedLDAPVersion'); + } + + /** + * Alias function of supportedVersion() for perl-ldap interface + * + * @see supportedVersion() + * @return boolean + */ + public function supported_version() + { + $args = func_get_args(); + return call_user_func_array(array(&$this, 'supportedVersion'), $args); + } + + /** + * Determines if the control is supported + * + * @param array $oids Control oids to check + * + * @access public + * @return boolean + */ + public function supportedControl($oids) + { + return $this->checkAttr($oids, 'supportedControl'); + } + + /** + * Alias function of supportedControl() for perl-ldap interface + * + * @see supportedControl() + * @return boolean + */ + public function supported_control() + { + $args = func_get_args(); + return call_user_func_array(array(&$this, 'supportedControl' ), $args); + } + + /** + * Determines if the sasl mechanism is supported + * + * @param array $mechlist SASL mechanisms to check + * + * @access public + * @return boolean + */ + public function supportedSASLMechanism($mechlist) + { + return $this->checkAttr($mechlist, 'supportedSASLMechanisms'); + } + + /** + * Alias function of supportedSASLMechanism() for perl-ldap interface + * + * @see supportedSASLMechanism() + * @return boolean + */ + public function supported_sasl_mechanism() + { + $args = func_get_args(); + return call_user_func_array(array(&$this, 'supportedSASLMechanism'), $args); + } + + /** + * Checks for existance of value in attribute + * + * @param array $values values to check + * @param string $attr attribute name + * + * @access protected + * @return boolean + */ + protected function checkAttr($values, $attr) + { + if (!is_array($values)) $values = array($values); + + foreach ($values as $value) { + if (!@in_array($value, $this->get_value($attr, 'all'))) { + return false; + } + } + return true; + } +} + +?> diff --git a/extlib/Net/LDAP2/Schema.php b/extlib/Net/LDAP2/Schema.php new file mode 100644 index 0000000000..b590eabc51 --- /dev/null +++ b/extlib/Net/LDAP2/Schema.php @@ -0,0 +1,516 @@ + +* @author Benedikt Hallinger +* @copyright 2009 Jan Wagner, Benedikt Hallinger +* @license http://www.gnu.org/licenses/lgpl-3.0.txt LGPLv3 +* @version SVN: $Id: Schema.php 286718 2009-08-03 07:30:49Z beni $ +* @link http://pear.php.net/package/Net_LDAP2/ +* @todo see the comment at the end of the file +*/ + +/** +* Includes +*/ +require_once 'PEAR.php'; + +/** +* Syntax definitions +* +* Please don't forget to add binary attributes to isBinary() below +* to support proper value fetching from Net_LDAP2_Entry +*/ +define('NET_LDAP2_SYNTAX_BOOLEAN', '1.3.6.1.4.1.1466.115.121.1.7'); +define('NET_LDAP2_SYNTAX_DIRECTORY_STRING', '1.3.6.1.4.1.1466.115.121.1.15'); +define('NET_LDAP2_SYNTAX_DISTINGUISHED_NAME', '1.3.6.1.4.1.1466.115.121.1.12'); +define('NET_LDAP2_SYNTAX_INTEGER', '1.3.6.1.4.1.1466.115.121.1.27'); +define('NET_LDAP2_SYNTAX_JPEG', '1.3.6.1.4.1.1466.115.121.1.28'); +define('NET_LDAP2_SYNTAX_NUMERIC_STRING', '1.3.6.1.4.1.1466.115.121.1.36'); +define('NET_LDAP2_SYNTAX_OID', '1.3.6.1.4.1.1466.115.121.1.38'); +define('NET_LDAP2_SYNTAX_OCTET_STRING', '1.3.6.1.4.1.1466.115.121.1.40'); + +/** +* Load an LDAP Schema and provide information +* +* This class takes a Subschema entry, parses this information +* and makes it available in an array. Most of the code has been +* inspired by perl-ldap( http://perl-ldap.sourceforge.net). +* You will find portions of their implementation in here. +* +* @category Net +* @package Net_LDAP2 +* @author Jan Wagner +* @author Benedikt Hallinger +* @license http://www.gnu.org/copyleft/lesser.html LGPL +* @link http://pear.php.net/package/Net_LDAP22/ +*/ +class Net_LDAP2_Schema extends PEAR +{ + /** + * Map of entry types to ldap attributes of subschema entry + * + * @access public + * @var array + */ + public $types = array( + 'attribute' => 'attributeTypes', + 'ditcontentrule' => 'dITContentRules', + 'ditstructurerule' => 'dITStructureRules', + 'matchingrule' => 'matchingRules', + 'matchingruleuse' => 'matchingRuleUse', + 'nameform' => 'nameForms', + 'objectclass' => 'objectClasses', + 'syntax' => 'ldapSyntaxes' + ); + + /** + * Array of entries belonging to this type + * + * @access protected + * @var array + */ + protected $_attributeTypes = array(); + protected $_matchingRules = array(); + protected $_matchingRuleUse = array(); + protected $_ldapSyntaxes = array(); + protected $_objectClasses = array(); + protected $_dITContentRules = array(); + protected $_dITStructureRules = array(); + protected $_nameForms = array(); + + + /** + * hash of all fetched oids + * + * @access protected + * @var array + */ + protected $_oids = array(); + + /** + * Tells if the schema is initialized + * + * @access protected + * @var boolean + * @see parse(), get() + */ + protected $_initialized = false; + + + /** + * Constructor of the class + * + * @access protected + */ + protected function __construct() + { + $this->PEAR('Net_LDAP2_Error'); // default error class + } + + /** + * Fetch the Schema from an LDAP connection + * + * @param Net_LDAP2 $ldap LDAP connection + * @param string $dn (optional) Subschema entry dn + * + * @access public + * @return Net_LDAP2_Schema|NET_LDAP2_Error + */ + public function fetch($ldap, $dn = null) + { + if (!$ldap instanceof Net_LDAP2) { + return PEAR::raiseError("Unable to fetch Schema: Parameter \$ldap must be a Net_LDAP2 object!"); + } + + $schema_o = new Net_LDAP2_Schema(); + + if (is_null($dn)) { + // get the subschema entry via root dse + $dse = $ldap->rootDSE(array('subschemaSubentry')); + if (false == Net_LDAP2::isError($dse)) { + $base = $dse->getValue('subschemaSubentry', 'single'); + if (!Net_LDAP2::isError($base)) { + $dn = $base; + } + } + } + + // Support for buggy LDAP servers (e.g. Siemens DirX 6.x) that incorrectly + // call this entry subSchemaSubentry instead of subschemaSubentry. + // Note the correct case/spelling as per RFC 2251. + if (is_null($dn)) { + // get the subschema entry via root dse + $dse = $ldap->rootDSE(array('subSchemaSubentry')); + if (false == Net_LDAP2::isError($dse)) { + $base = $dse->getValue('subSchemaSubentry', 'single'); + if (!Net_LDAP2::isError($base)) { + $dn = $base; + } + } + } + + // Final fallback case where there is no subschemaSubentry attribute + // in the root DSE (this is a bug for an LDAP v3 server so report this + // to your LDAP vendor if you get this far). + if (is_null($dn)) { + $dn = 'cn=Subschema'; + } + + // fetch the subschema entry + $result = $ldap->search($dn, '(objectClass=*)', + array('attributes' => array_values($schema_o->types), + 'scope' => 'base')); + if (Net_LDAP2::isError($result)) { + return $result; + } + + $entry = $result->shiftEntry(); + if (!$entry instanceof Net_LDAP2_Entry) { + return PEAR::raiseError('Could not fetch Subschema entry'); + } + + $schema_o->parse($entry); + return $schema_o; + } + + /** + * Return a hash of entries for the given type + * + * Returns a hash of entry for th givene type. Types may be: + * objectclasses, attributes, ditcontentrules, ditstructurerules, matchingrules, + * matchingruleuses, nameforms, syntaxes + * + * @param string $type Type to fetch + * + * @access public + * @return array|Net_LDAP2_Error Array or Net_LDAP2_Error + */ + public function &getAll($type) + { + $map = array('objectclasses' => &$this->_objectClasses, + 'attributes' => &$this->_attributeTypes, + 'ditcontentrules' => &$this->_dITContentRules, + 'ditstructurerules' => &$this->_dITStructureRules, + 'matchingrules' => &$this->_matchingRules, + 'matchingruleuses' => &$this->_matchingRuleUse, + 'nameforms' => &$this->_nameForms, + 'syntaxes' => &$this->_ldapSyntaxes ); + + $key = strtolower($type); + $ret = ((key_exists($key, $map)) ? $map[$key] : PEAR::raiseError("Unknown type $type")); + return $ret; + } + + /** + * Return a specific entry + * + * @param string $type Type of name + * @param string $name Name or OID to fetch + * + * @access public + * @return mixed Entry or Net_LDAP2_Error + */ + public function &get($type, $name) + { + if ($this->_initialized) { + $type = strtolower($type); + if (false == key_exists($type, $this->types)) { + return PEAR::raiseError("No such type $type"); + } + + $name = strtolower($name); + $type_var = &$this->{'_' . $this->types[$type]}; + + if (key_exists($name, $type_var)) { + return $type_var[$name]; + } elseif (key_exists($name, $this->_oids) && $this->_oids[$name]['type'] == $type) { + return $this->_oids[$name]; + } else { + return PEAR::raiseError("Could not find $type $name"); + } + } else { + $return = null; + return $return; + } + } + + + /** + * Fetches attributes that MAY be present in the given objectclass + * + * @param string $oc Name or OID of objectclass + * + * @access public + * @return array|Net_LDAP2_Error Array with attributes or Net_LDAP2_Error + */ + public function may($oc) + { + return $this->_getAttr($oc, 'may'); + } + + /** + * Fetches attributes that MUST be present in the given objectclass + * + * @param string $oc Name or OID of objectclass + * + * @access public + * @return array|Net_LDAP2_Error Array with attributes or Net_LDAP2_Error + */ + public function must($oc) + { + return $this->_getAttr($oc, 'must'); + } + + /** + * Fetches the given attribute from the given objectclass + * + * @param string $oc Name or OID of objectclass + * @param string $attr Name of attribute to fetch + * + * @access protected + * @return array|Net_LDAP2_Error The attribute or Net_LDAP2_Error + */ + protected function _getAttr($oc, $attr) + { + $oc = strtolower($oc); + if (key_exists($oc, $this->_objectClasses) && key_exists($attr, $this->_objectClasses[$oc])) { + return $this->_objectClasses[$oc][$attr]; + } elseif (key_exists($oc, $this->_oids) && + $this->_oids[$oc]['type'] == 'objectclass' && + key_exists($attr, $this->_oids[$oc])) { + return $this->_oids[$oc][$attr]; + } else { + return PEAR::raiseError("Could not find $attr attributes for $oc "); + } + } + + /** + * Returns the name(s) of the immediate superclass(es) + * + * @param string $oc Name or OID of objectclass + * + * @access public + * @return array|Net_LDAP2_Error Array of names or Net_LDAP2_Error + */ + public function superclass($oc) + { + $o = $this->get('objectclass', $oc); + if (Net_LDAP2::isError($o)) { + return $o; + } + return (key_exists('sup', $o) ? $o['sup'] : array()); + } + + /** + * Parses the schema of the given Subschema entry + * + * @param Net_LDAP2_Entry &$entry Subschema entry + * + * @access public + * @return void + */ + public function parse(&$entry) + { + foreach ($this->types as $type => $attr) { + // initialize map type to entry + $type_var = '_' . $attr; + $this->{$type_var} = array(); + + // get values for this type + if ($entry->exists($attr)) { + $values = $entry->getValue($attr); + if (is_array($values)) { + foreach ($values as $value) { + + unset($schema_entry); // this was a real mess without it + + // get the schema entry + $schema_entry = $this->_parse_entry($value); + + // set the type + $schema_entry['type'] = $type; + + // save a ref in $_oids + $this->_oids[$schema_entry['oid']] = &$schema_entry; + + // save refs for all names in type map + $names = $schema_entry['aliases']; + array_push($names, $schema_entry['name']); + foreach ($names as $name) { + $this->{$type_var}[strtolower($name)] = &$schema_entry; + } + } + } + } + } + $this->_initialized = true; + } + + /** + * Parses an attribute value into a schema entry + * + * @param string $value Attribute value + * + * @access protected + * @return array|false Schema entry array or false + */ + protected function &_parse_entry($value) + { + // tokens that have no value associated + $noValue = array('single-value', + 'obsolete', + 'collective', + 'no-user-modification', + 'abstract', + 'structural', + 'auxiliary'); + + // tokens that can have multiple values + $multiValue = array('must', 'may', 'sup'); + + $schema_entry = array('aliases' => array()); // initilization + + $tokens = $this->_tokenize($value); // get an array of tokens + + // remove surrounding brackets + if ($tokens[0] == '(') array_shift($tokens); + if ($tokens[count($tokens) - 1] == ')') array_pop($tokens); // -1 doesnt work on arrays :-( + + $schema_entry['oid'] = array_shift($tokens); // first token is the oid + + // cycle over the tokens until none are left + while (count($tokens) > 0) { + $token = strtolower(array_shift($tokens)); + if (in_array($token, $noValue)) { + $schema_entry[$token] = 1; // single value token + } else { + // this one follows a string or a list if it is multivalued + if (($schema_entry[$token] = array_shift($tokens)) == '(') { + // this creates the list of values and cycles through the tokens + // until the end of the list is reached ')' + $schema_entry[$token] = array(); + while ($tmp = array_shift($tokens)) { + if ($tmp == ')') break; + if ($tmp != '$') array_push($schema_entry[$token], $tmp); + } + } + // create a array if the value should be multivalued but was not + if (in_array($token, $multiValue) && !is_array($schema_entry[$token])) { + $schema_entry[$token] = array($schema_entry[$token]); + } + } + } + // get max length from syntax + if (key_exists('syntax', $schema_entry)) { + if (preg_match('/{(\d+)}/', $schema_entry['syntax'], $matches)) { + $schema_entry['max_length'] = $matches[1]; + } + } + // force a name + if (empty($schema_entry['name'])) { + $schema_entry['name'] = $schema_entry['oid']; + } + // make one name the default and put the other ones into aliases + if (is_array($schema_entry['name'])) { + $aliases = $schema_entry['name']; + $schema_entry['name'] = array_shift($aliases); + $schema_entry['aliases'] = $aliases; + } + return $schema_entry; + } + + /** + * Tokenizes the given value into an array of tokens + * + * @param string $value String to parse + * + * @access protected + * @return array Array of tokens + */ + protected function _tokenize($value) + { + $tokens = array(); // array of tokens + $matches = array(); // matches[0] full pattern match, [1,2,3] subpatterns + + // this one is taken from perl-ldap, modified for php + $pattern = "/\s* (?:([()]) | ([^'\s()]+) | '((?:[^']+|'[^\s)])*)') \s*/x"; + + /** + * This one matches one big pattern wherin only one of the three subpatterns matched + * We are interested in the subpatterns that matched. If it matched its value will be + * non-empty and so it is a token. Tokens may be round brackets, a string, or a string + * enclosed by ' + */ + preg_match_all($pattern, $value, $matches); + + for ($i = 0; $i < count($matches[0]); $i++) { // number of tokens (full pattern match) + for ($j = 1; $j < 4; $j++) { // each subpattern + if (null != trim($matches[$j][$i])) { // pattern match in this subpattern + $tokens[$i] = trim($matches[$j][$i]); // this is the token + } + } + } + return $tokens; + } + + /** + * Returns wether a attribute syntax is binary or not + * + * This method gets used by Net_LDAP2_Entry to decide which + * PHP function needs to be used to fetch the value in the + * proper format (e.g. binary or string) + * + * @param string $attribute The name of the attribute (eg.: 'sn') + * + * @access public + * @return boolean + */ + public function isBinary($attribute) + { + $return = false; // default to false + + // This list contains all syntax that should be treaten as + // containing binary values + // The Syntax Definitons go into constants at the top of this page + $syntax_binary = array( + NET_LDAP2_SYNTAX_OCTET_STRING, + NET_LDAP2_SYNTAX_JPEG + ); + + // Check Syntax + $attr_s = $this->get('attribute', $attribute); + if (Net_LDAP2::isError($attr_s)) { + // Attribute not found in schema + $return = false; // consider attr not binary + } elseif (isset($attr_s['syntax']) && in_array($attr_s['syntax'], $syntax_binary)) { + // Syntax is defined as binary in schema + $return = true; + } else { + // Syntax not defined as binary, or not found + // if attribute is a subtype, check superior attribute syntaxes + if (isset($attr_s['sup'])) { + foreach ($attr_s['sup'] as $superattr) { + $return = $this->isBinary($superattr); + if ($return) { + break; // stop checking parents since we are binary + } + } + } + } + + return $return; + } + + // [TODO] add method that allows us to see to which objectclasses a certain attribute belongs to + // it should return the result structured, e.g. sorted in "may" and "must". Optionally it should + // be able to return it just "flat", e.g. array_merge()d. + // We could use get_all() to achieve this easily, i think +} +?> diff --git a/extlib/Net/LDAP2/SchemaCache.interface.php b/extlib/Net/LDAP2/SchemaCache.interface.php new file mode 100644 index 0000000000..e0c3094c4c --- /dev/null +++ b/extlib/Net/LDAP2/SchemaCache.interface.php @@ -0,0 +1,59 @@ + +* @copyright 2009 Benedikt Hallinger +* @license http://www.gnu.org/licenses/lgpl-3.0.txt LGPLv3 +* @version SVN: $Id: SchemaCache.interface.php 286718 2009-08-03 07:30:49Z beni $ +* @link http://pear.php.net/package/Net_LDAP2/ +*/ + +/** +* Interface describing a custom schema cache object +* +* To implement a custom schema cache, one must implement this interface and +* pass the instanciated object to Net_LDAP2s registerSchemaCache() method. +*/ +interface Net_LDAP2_SchemaCache +{ + /** + * Return the schema object from the cache + * + * Net_LDAP2 will consider anything returned invalid, except + * a valid Net_LDAP2_Schema object. + * In case you return a Net_LDAP2_Error, this error will be routed + * to the return of the $ldap->schema() call. + * If you return something else, Net_LDAP2 will + * fetch a fresh Schema object from the LDAP server. + * + * You may want to implement a cache aging mechanism here too. + * + * @return Net_LDAP2_Schema|Net_LDAP2_Error|false + */ + public function loadSchema(); + + /** + * Store a schema object in the cache + * + * This method will be called, if Net_LDAP2 has fetched a fresh + * schema object from LDAP and wants to init or refresh the cache. + * + * In case of errors you may return a Net_LDAP2_Error which will + * be routet to the client. + * Note that doing this prevents, that the schema object fetched from LDAP + * will be given back to the client, so only return errors if storing + * of the cache is something crucial (e.g. for doing something else with it). + * Normaly you dont want to give back errors in which case Net_LDAP2 needs to + * fetch the schema once per script run and instead use the error + * returned from loadSchema(). + * + * @return true|Net_LDAP2_Error + */ + public function storeSchema($schema); +} diff --git a/extlib/Net/LDAP2/Search.php b/extlib/Net/LDAP2/Search.php new file mode 100644 index 0000000000..de4fde122c --- /dev/null +++ b/extlib/Net/LDAP2/Search.php @@ -0,0 +1,614 @@ + +* @author Benedikt Hallinger +* @copyright 2009 Tarjej Huse, Benedikt Hallinger +* @license http://www.gnu.org/licenses/lgpl-3.0.txt LGPLv3 +* @version SVN: $Id: Search.php 286718 2009-08-03 07:30:49Z beni $ +* @link http://pear.php.net/package/Net_LDAP2/ +*/ + +/** +* Includes +*/ +require_once 'PEAR.php'; + +/** +* Result set of an LDAP search +* +* @category Net +* @package Net_LDAP2 +* @author Tarjej Huse +* @author Benedikt Hallinger +* @license http://www.gnu.org/copyleft/lesser.html LGPL +* @link http://pear.php.net/package/Net_LDAP22/ +*/ +class Net_LDAP2_Search extends PEAR implements Iterator +{ + /** + * Search result identifier + * + * @access protected + * @var resource + */ + protected $_search; + + /** + * LDAP resource link + * + * @access protected + * @var resource + */ + protected $_link; + + /** + * Net_LDAP2 object + * + * A reference of the Net_LDAP2 object for passing to Net_LDAP2_Entry + * + * @access protected + * @var object Net_LDAP2 + */ + protected $_ldap; + + /** + * Result entry identifier + * + * @access protected + * @var resource + */ + protected $_entry = null; + + /** + * The errorcode the search got + * + * Some errorcodes might be of interest, but might not be best handled as errors. + * examples: 4 - LDAP_SIZELIMIT_EXCEEDED - indicates a huge search. + * Incomplete results are returned. If you just want to check if there's anything in the search. + * than this is a point to handle. + * 32 - no such object - search here returns a count of 0. + * + * @access protected + * @var int + */ + protected $_errorCode = 0; // if not set - sucess! + + /** + * Cache for all entries already fetched from iterator interface + * + * @access protected + * @var array + */ + protected $_iteratorCache = array(); + + /** + * What attributes we searched for + * + * The $attributes array contains the names of the searched attributes and gets + * passed from $Net_LDAP2->search() so the Net_LDAP2_Search object can tell + * what attributes was searched for ({@link searchedAttrs()) + * + * This variable gets set from the constructor and returned + * from {@link searchedAttrs()} + * + * @access protected + * @var array + */ + protected $_searchedAttrs = array(); + + /** + * Cache variable for storing entries fetched internally + * + * This currently is only used by {@link pop_entry()} + * + * @access protected + * @var array + */ + protected $_entry_cache = false; + + /** + * Constructor + * + * @param resource &$search Search result identifier + * @param Net_LDAP2|resource &$ldap Net_LDAP2 object or just a LDAP-Link resource + * @param array $attributes (optional) Array with searched attribute names. (see {@link $_searchedAttrs}) + * + * @access public + */ + public function __construct(&$search, &$ldap, $attributes = array()) + { + $this->PEAR('Net_LDAP2_Error'); + + $this->setSearch($search); + + if ($ldap instanceof Net_LDAP2) { + $this->_ldap =& $ldap; + $this->setLink($this->_ldap->getLink()); + } else { + $this->setLink($ldap); + } + + $this->_errorCode = @ldap_errno($this->_link); + + if (is_array($attributes) && !empty($attributes)) { + $this->_searchedAttrs = $attributes; + } + } + + /** + * Returns an array of entry objects + * + * @return array Array of entry objects. + */ + public function entries() + { + $entries = array(); + + while ($entry = $this->shiftEntry()) { + $entries[] = $entry; + } + + return $entries; + } + + /** + * Get the next entry in the searchresult. + * + * This will return a valid Net_LDAP2_Entry object or false, so + * you can use this method to easily iterate over the entries inside + * a while loop. + * + * @return Net_LDAP2_Entry|false Reference to Net_LDAP2_Entry object or false + */ + public function &shiftEntry() + { + if ($this->count() == 0 ) { + $false = false; + return $false; + } + + if (is_null($this->_entry)) { + $this->_entry = @ldap_first_entry($this->_link, $this->_search); + $entry = Net_LDAP2_Entry::createConnected($this->_ldap, $this->_entry); + if ($entry instanceof Net_LDAP2_Error) $entry = false; + } else { + if (!$this->_entry = @ldap_next_entry($this->_link, $this->_entry)) { + $false = false; + return $false; + } + $entry = Net_LDAP2_Entry::createConnected($this->_ldap, $this->_entry); + if ($entry instanceof Net_LDAP2_Error) $entry = false; + } + return $entry; + } + + /** + * Alias function of shiftEntry() for perl-ldap interface + * + * @see shiftEntry() + * @return Net_LDAP2_Entry|false + */ + public function shift_entry() + { + $args = func_get_args(); + return call_user_func_array(array( &$this, 'shiftEntry' ), $args); + } + + /** + * Retrieve the next entry in the searchresult, but starting from last entry + * + * This is the opposite to {@link shiftEntry()} and is also very useful + * to be used inside a while loop. + * + * @return Net_LDAP2_Entry|false + */ + public function popEntry() + { + if (false === $this->_entry_cache) { + // fetch entries into cache if not done so far + $this->_entry_cache = $this->entries(); + } + + $return = array_pop($this->_entry_cache); + return (null === $return)? false : $return; + } + + /** + * Alias function of popEntry() for perl-ldap interface + * + * @see popEntry() + * @return Net_LDAP2_Entry|false + */ + public function pop_entry() + { + $args = func_get_args(); + return call_user_func_array(array( &$this, 'popEntry' ), $args); + } + + /** + * Return entries sorted as array + * + * This returns a array with sorted entries and the values. + * Sorting is done with PHPs {@link array_multisort()}. + * This method relies on {@link as_struct()} to fetch the raw data of the entries. + * + * Please note that attribute names are case sensitive! + * + * Usage example: + * + * // to sort entries first by location, then by surename, but descending: + * $entries = $search->sorted_as_struct(array('locality','sn'), SORT_DESC); + * + * + * @param array $attrs Array of attribute names to sort; order from left to right. + * @param int $order Ordering direction, either constant SORT_ASC or SORT_DESC + * + * @return array|Net_LDAP2_Error Array with sorted entries or error + * @todo what about server side sorting as specified in http://www.ietf.org/rfc/rfc2891.txt? + */ + public function sorted_as_struct($attrs = array('cn'), $order = SORT_ASC) + { + /* + * Old Code, suitable and fast for single valued sorting + * This code should be used if we know that single valued sorting is desired, + * but we need some method to get that knowledge... + */ + /* + $attrs = array_reverse($attrs); + foreach ($attrs as $attribute) { + if (!ldap_sort($this->_link, $this->_search, $attribute)){ + $this->raiseError("Sorting failed for Attribute " . $attribute); + } + } + + $results = ldap_get_entries($this->_link, $this->_search); + + unset($results['count']); //for tidier output + if ($order) { + return array_reverse($results); + } else { + return $results; + }*/ + + /* + * New code: complete "client side" sorting + */ + // first some parameterchecks + if (!is_array($attrs)) { + return PEAR::raiseError("Sorting failed: Parameterlist must be an array!"); + } + if ($order != SORT_ASC && $order != SORT_DESC) { + return PEAR::raiseError("Sorting failed: sorting direction not understood! (neither constant SORT_ASC nor SORT_DESC)"); + } + + // fetch the entries data + $entries = $this->as_struct(); + + // now sort each entries attribute values + // this is neccessary because later we can only sort by one value, + // so we need the highest or lowest attribute now, depending on the + // selected ordering for that specific attribute + foreach ($entries as $dn => $entry) { + foreach ($entry as $attr_name => $attr_values) { + sort($entries[$dn][$attr_name]); + if ($order == SORT_DESC) { + array_reverse($entries[$dn][$attr_name]); + } + } + } + + // reformat entrys array for later use with array_multisort() + $to_sort = array(); // <- will be a numeric array similar to ldap_get_entries + foreach ($entries as $dn => $entry_attr) { + $row = array(); + $row['dn'] = $dn; + foreach ($entry_attr as $attr_name => $attr_values) { + $row[$attr_name] = $attr_values; + } + $to_sort[] = $row; + } + + // Build columns for array_multisort() + // each requested attribute is one row + $columns = array(); + foreach ($attrs as $attr_name) { + foreach ($to_sort as $key => $row) { + $columns[$attr_name][$key] =& $to_sort[$key][$attr_name][0]; + } + } + + // sort the colums with array_multisort, if there is something + // to sort and if we have requested sort columns + if (!empty($to_sort) && !empty($columns)) { + $sort_params = ''; + foreach ($attrs as $attr_name) { + $sort_params .= '$columns[\''.$attr_name.'\'], '.$order.', '; + } + eval("array_multisort($sort_params \$to_sort);"); // perform sorting + } + + return $to_sort; + } + + /** + * Return entries sorted as objects + * + * This returns a array with sorted Net_LDAP2_Entry objects. + * The sorting is actually done with {@link sorted_as_struct()}. + * + * Please note that attribute names are case sensitive! + * Also note, that it is (depending on server capabilitys) possible to let + * the server sort your results. This happens through search controls + * and is described in detail at {@link http://www.ietf.org/rfc/rfc2891.txt} + * + * Usage example: + * + * // to sort entries first by location, then by surename, but descending: + * $entries = $search->sorted(array('locality','sn'), SORT_DESC); + * + * + * @param array $attrs Array of sort attributes to sort; order from left to right. + * @param int $order Ordering direction, either constant SORT_ASC or SORT_DESC + * + * @return array|Net_LDAP2_Error Array with sorted Net_LDAP2_Entries or error + * @todo Entry object construction could be faster. Maybe we could use one of the factorys instead of fetching the entry again + */ + public function sorted($attrs = array('cn'), $order = SORT_ASC) + { + $return = array(); + $sorted = $this->sorted_as_struct($attrs, $order); + if (PEAR::isError($sorted)) { + return $sorted; + } + foreach ($sorted as $key => $row) { + $entry = $this->_ldap->getEntry($row['dn'], $this->searchedAttrs()); + if (!PEAR::isError($entry)) { + array_push($return, $entry); + } else { + return $entry; + } + } + return $return; + } + + /** + * Return entries as array + * + * This method returns the entries and the selected attributes values as + * array. + * The first array level contains all found entries where the keys are the + * DNs of the entries. The second level arrays contian the entries attributes + * such that the keys is the lowercased name of the attribute and the values + * are stored in another indexed array. Note that the attribute values are stored + * in an array even if there is no or just one value. + * + * The array has the following structure: + * + * $return = array( + * 'cn=foo,dc=example,dc=com' => array( + * 'sn' => array('foo'), + * 'multival' => array('val1', 'val2', 'valN') + * ) + * 'cn=bar,dc=example,dc=com' => array( + * 'sn' => array('bar'), + * 'multival' => array('val1', 'valN') + * ) + * ) + * + * + * @return array associative result array as described above + */ + public function as_struct() + { + $return = array(); + $entries = $this->entries(); + foreach ($entries as $entry) { + $attrs = array(); + $entry_attributes = $entry->attributes(); + foreach ($entry_attributes as $attr_name) { + $attr_values = $entry->getValue($attr_name, 'all'); + if (!is_array($attr_values)) { + $attr_values = array($attr_values); + } + $attrs[$attr_name] = $attr_values; + } + $return[$entry->dn()] = $attrs; + } + return $return; + } + + /** + * Set the search objects resource link + * + * @param resource &$search Search result identifier + * + * @access public + * @return void + */ + public function setSearch(&$search) + { + $this->_search = $search; + } + + /** + * Set the ldap ressource link + * + * @param resource &$link Link identifier + * + * @access public + * @return void + */ + public function setLink(&$link) + { + $this->_link = $link; + } + + /** + * Returns the number of entries in the searchresult + * + * @return int Number of entries in search. + */ + public function count() + { + // this catches the situation where OL returned errno 32 = no such object! + if (!$this->_search) { + return 0; + } + return @ldap_count_entries($this->_link, $this->_search); + } + + /** + * Get the errorcode the object got in its search. + * + * @return int The ldap error number. + */ + public function getErrorCode() + { + return $this->_errorCode; + } + + /** + * Destructor + * + * @access protected + */ + public function _Net_LDAP2_Search() + { + @ldap_free_result($this->_search); + } + + /** + * Closes search result + * + * @return void + */ + public function done() + { + $this->_Net_LDAP2_Search(); + } + + /** + * Return the attribute names this search selected + * + * @return array + * @see $_searchedAttrs + * @access protected + */ + protected function searchedAttrs() + { + return $this->_searchedAttrs; + } + + /** + * Tells if this search exceeds a sizelimit + * + * @return boolean + */ + public function sizeLimitExceeded() + { + return ($this->getErrorCode() == 4); + } + + + /* + * SPL Iterator interface methods. + * This interface allows to use Net_LDAP2_Search + * objects directly inside a foreach loop! + */ + /** + * SPL Iterator interface: Return the current element. + * + * The SPL Iterator interface allows you to fetch entries inside + * a foreach() loop: foreach ($search as $dn => $entry) { ... + * + * Of course, you may call {@link current()}, {@link key()}, {@link next()}, + * {@link rewind()} and {@link valid()} yourself. + * + * If the search throwed an error, it returns false. + * False is also returned, if the end is reached + * In case no call to next() was made, we will issue one, + * thus returning the first entry. + * + * @return Net_LDAP2_Entry|false + */ + public function current() + { + if (count($this->_iteratorCache) == 0) { + $this->next(); + reset($this->_iteratorCache); + } + $entry = current($this->_iteratorCache); + return ($entry instanceof Net_LDAP2_Entry)? $entry : false; + } + + /** + * SPL Iterator interface: Return the identifying key (DN) of the current entry. + * + * @see current() + * @return string|false DN of the current entry; false in case no entry is returned by current() + */ + public function key() + { + $entry = $this->current(); + return ($entry instanceof Net_LDAP2_Entry)? $entry->dn() :false; + } + + /** + * SPL Iterator interface: Move forward to next entry. + * + * After a call to {@link next()}, {@link current()} will return + * the next entry in the result set. + * + * @see current() + * @return void + */ + public function next() + { + // fetch next entry. + // if we have no entrys anymore, we add false (which is + // returned by shiftEntry()) so current() will complain. + if (count($this->_iteratorCache) - 1 <= $this->count()) { + $this->_iteratorCache[] = $this->shiftEntry(); + } + + // move on array pointer to current element. + // even if we have added all entries, this will + // ensure proper operation in case we rewind() + next($this->_iteratorCache); + } + + /** + * SPL Iterator interface: Check if there is a current element after calls to {@link rewind()} or {@link next()}. + * + * Used to check if we've iterated to the end of the collection. + * + * @see current() + * @return boolean FALSE if there's nothing more to iterate over + */ + public function valid() + { + return ($this->current() instanceof Net_LDAP2_Entry); + } + + /** + * SPL Iterator interface: Rewind the Iterator to the first element. + * + * After rewinding, {@link current()} will return the first entry in the result set. + * + * @see current() + * @return void + */ + public function rewind() + { + reset($this->_iteratorCache); + } +} + +?> diff --git a/extlib/Net/LDAP2/SimpleFileSchemaCache.php b/extlib/Net/LDAP2/SimpleFileSchemaCache.php new file mode 100644 index 0000000000..8019654ac8 --- /dev/null +++ b/extlib/Net/LDAP2/SimpleFileSchemaCache.php @@ -0,0 +1,97 @@ + +* @copyright 2009 Benedikt Hallinger +* @license http://www.gnu.org/licenses/lgpl-3.0.txt LGPLv3 +* @version SVN: $Id: SimpleFileSchemaCache.php 286718 2009-08-03 07:30:49Z beni $ +* @link http://pear.php.net/package/Net_LDAP2/ +*/ + +/** +* A simple file based schema cacher with cache aging. +* +* Once the cache is too old, the loadSchema() method will return false, so +* Net_LDAP2 will fetch a fresh object from the LDAP server that will +* overwrite the current (outdated) old cache. +*/ +class Net_LDAP2_SimpleFileSchemaCache implements Net_LDAP2_SchemaCache +{ + /** + * Internal config of this cache + * + * @see Net_LDAP2_SimpleFileSchemaCache() + * @var array + */ + protected $config = array( + 'path' => '/tmp/Net_LDAP_Schema.cache', + 'max_age' => 1200 + ); + + /** + * Initialize the simple cache + * + * Config is as following: + * path Complete path to the cache file. + * max_age Maximum age of cache in seconds, 0 means "endlessly". + * + * @param array $cfg Config array + */ + public function Net_LDAP2_SimpleFileSchemaCache($cfg) + { + foreach ($cfg as $key => $value) { + if (array_key_exists($key, $this->config)) { + if (gettype($this->config[$key]) != gettype($value)) { + $this->getCore()->dropFatalError(__CLASS__.": Could not set config! Key $key does not match type ".gettype($this->config[$key])."!"); + } + $this->config[$key] = $value; + } else { + $this->getCore()->dropFatalError(__CLASS__.": Could not set config! Key $key is not defined!"); + } + } + } + + /** + * Return the schema object from the cache + * + * If file is existent and cache has not expired yet, + * then the cache is deserialized and returned. + * + * @return Net_LDAP2_Schema|Net_LDAP2_Error|false + */ + public function loadSchema() + { + $return = false; // Net_LDAP2 will load schema from LDAP + if (file_exists($this->config['path'])) { + $cache_maxage = filemtime($this->config['path']) + $this->config['max_age']; + if (time() <= $cache_maxage || $this->config['max_age'] == 0) { + $return = unserialize(file_get_contents($this->config['path'])); + } + } + return $return; + } + + /** + * Store a schema object in the cache + * + * This method will be called, if Net_LDAP2 has fetched a fresh + * schema object from LDAP and wants to init or refresh the cache. + * + * To invalidate the cache and cause Net_LDAP2 to refresh the cache, + * you can call this method with null or false as value. + * The next call to $ldap->schema() will then refresh the caches object. + * + * @param mixed $schema The object that should be cached + * @return true|Net_LDAP2_Error|false + */ + public function storeSchema($schema) { + file_put_contents($this->config['path'], serialize($schema)); + return true; + } +} diff --git a/extlib/Net/LDAP2/Util.php b/extlib/Net/LDAP2/Util.php new file mode 100644 index 0000000000..48b03f9f99 --- /dev/null +++ b/extlib/Net/LDAP2/Util.php @@ -0,0 +1,572 @@ + +* @copyright 2009 Benedikt Hallinger +* @license http://www.gnu.org/licenses/lgpl-3.0.txt LGPLv3 +* @version SVN: $Id: Util.php 286718 2009-08-03 07:30:49Z beni $ +* @link http://pear.php.net/package/Net_LDAP2/ +*/ + +/** +* Includes +*/ +require_once 'PEAR.php'; + +/** +* Utility Class for Net_LDAP2 +* +* This class servers some functionality to the other classes of Net_LDAP2 but most of +* the methods can be used separately as well. +* +* @category Net +* @package Net_LDAP2 +* @author Benedikt Hallinger +* @license http://www.gnu.org/copyleft/lesser.html LGPL +* @link http://pear.php.net/package/Net_LDAP22/ +*/ +class Net_LDAP2_Util extends PEAR +{ + /** + * Constructor + * + * @access public + */ + public function __construct() + { + // We do nothing here, since all methods can be called statically. + // In Net_LDAP <= 0.7, we needed a instance of Util, because + // it was possible to do utf8 encoding and decoding, but this + // has been moved to the LDAP class. The constructor remains only + // here to document the downward compatibility of creating an instance. + } + + /** + * Explodes the given DN into its elements + * + * {@link http://www.ietf.org/rfc/rfc2253.txt RFC 2253} says, a Distinguished Name is a sequence + * of Relative Distinguished Names (RDNs), which themselves + * are sets of Attributes. For each RDN a array is constructed where the RDN part is stored. + * + * For example, the DN 'OU=Sales+CN=J. Smith,DC=example,DC=net' is exploded to: + * array( [0] => array([0] => 'OU=Sales', [1] => 'CN=J. Smith'), [2] => 'DC=example', [3] => 'DC=net' ) + * + * [NOT IMPLEMENTED] DNs might also contain values, which are the bytes of the BER encoding of + * the X.500 AttributeValue rather than some LDAP string syntax. These values are hex-encoded + * and prefixed with a #. To distinguish such BER values, ldap_explode_dn uses references to + * the actual values, e.g. '1.3.6.1.4.1.1466.0=#04024869,DC=example,DC=com' is exploded to: + * [ { '1.3.6.1.4.1.1466.0' => "\004\002Hi" }, { 'DC' => 'example' }, { 'DC' => 'com' } ]; + * See {@link http://www.vijaymukhi.com/vmis/berldap.htm} for more information on BER. + * + * It also performs the following operations on the given DN: + * - Unescape "\" followed by ",", "+", """, "\", "<", ">", ";", "#", "=", " ", or a hexpair + * and strings beginning with "#". + * - Removes the leading 'OID.' characters if the type is an OID instead of a name. + * - If an RDN contains multiple parts, the parts are re-ordered so that the attribute type names are in alphabetical order. + * + * OPTIONS is a list of name/value pairs, valid options are: + * casefold Controls case folding of attribute types names. + * Attribute values are not affected by this option. + * The default is to uppercase. Valid values are: + * lower Lowercase attribute types names. + * upper Uppercase attribute type names. This is the default. + * none Do not change attribute type names. + * reverse If TRUE, the RDN sequence is reversed. + * onlyvalues If TRUE, then only attributes values are returned ('foo' instead of 'cn=foo') + * + + * @param string $dn The DN that should be exploded + * @param array $options Options to use + * + * @static + * @return array Parts of the exploded DN + * @todo implement BER + */ + public static function ldap_explode_dn($dn, $options = array('casefold' => 'upper')) + { + if (!isset($options['onlyvalues'])) $options['onlyvalues'] = false; + if (!isset($options['reverse'])) $options['reverse'] = false; + if (!isset($options['casefold'])) $options['casefold'] = 'upper'; + + // Escaping of DN and stripping of "OID." + $dn = self::canonical_dn($dn, array('casefold' => $options['casefold'])); + + // splitting the DN + $dn_array = preg_split('/(?<=[^\\\\]),/', $dn); + + // clear wrong splitting (possibly we have split too much) + // /!\ Not clear, if this is neccessary here + //$dn_array = self::correct_dn_splitting($dn_array, ','); + + // construct subarrays for multivalued RDNs and unescape DN value + // also convert to output format and apply casefolding + foreach ($dn_array as $key => $value) { + $value_u = self::unescape_dn_value($value); + $rdns = self::split_rdn_multival($value_u[0]); + if (count($rdns) > 1) { + // MV RDN! + foreach ($rdns as $subrdn_k => $subrdn_v) { + // Casefolding + if ($options['casefold'] == 'upper') $subrdn_v = preg_replace("/^(\w+=)/e", "''.strtoupper('\\1').''", $subrdn_v); + if ($options['casefold'] == 'lower') $subrdn_v = preg_replace("/^(\w+=)/e", "''.strtolower('\\1').''", $subrdn_v); + + if ($options['onlyvalues']) { + preg_match('/(.+?)(?", ";", "#", "=" with a special meaning in RFC 2252 + * are preceeded by ba backslash. Control characters with an ASCII code < 32 are represented as \hexpair. + * Finally all leading and trailing spaces are converted to sequences of \20. + * + * @param array $values An array containing the DN values that should be escaped + * + * @static + * @return array The array $values, but escaped + */ + public static function escape_dn_value($values = array()) + { + // Parameter validation + if (!is_array($values)) { + $values = array($values); + } + + foreach ($values as $key => $val) { + // Escaping of filter meta characters + $val = str_replace('\\', '\\\\', $val); + $val = str_replace(',', '\,', $val); + $val = str_replace('+', '\+', $val); + $val = str_replace('"', '\"', $val); + $val = str_replace('<', '\<', $val); + $val = str_replace('>', '\>', $val); + $val = str_replace(';', '\;', $val); + $val = str_replace('#', '\#', $val); + $val = str_replace('=', '\=', $val); + + // ASCII < 32 escaping + $val = self::asc2hex32($val); + + // Convert all leading and trailing spaces to sequences of \20. + if (preg_match('/^(\s*)(.+?)(\s*)$/', $val, $matches)) { + $val = $matches[2]; + for ($i = 0; $i < strlen($matches[1]); $i++) { + $val = '\20'.$val; + } + for ($i = 0; $i < strlen($matches[3]); $i++) { + $val = $val.'\20'; + } + } + + if (null === $val) $val = '\0'; // apply escaped "null" if string is empty + + $values[$key] = $val; + } + + return $values; + } + + /** + * Undoes the conversion done by escape_dn_value(). + * + * Any escape sequence starting with a baskslash - hexpair or special character - + * will be transformed back to the corresponding character. + * + * @param array $values Array of DN Values + * + * @return array Same as $values, but unescaped + * @static + */ + public static function unescape_dn_value($values = array()) + { + // Parameter validation + if (!is_array($values)) { + $values = array($values); + } + + foreach ($values as $key => $val) { + // strip slashes from special chars + $val = str_replace('\\\\', '\\', $val); + $val = str_replace('\,', ',', $val); + $val = str_replace('\+', '+', $val); + $val = str_replace('\"', '"', $val); + $val = str_replace('\<', '<', $val); + $val = str_replace('\>', '>', $val); + $val = str_replace('\;', ';', $val); + $val = str_replace('\#', '#', $val); + $val = str_replace('\=', '=', $val); + + // Translate hex code into ascii + $values[$key] = self::hex2asc($val); + } + + return $values; + } + + /** + * Returns the given DN in a canonical form + * + * Returns false if DN is not a valid Distinguished Name. + * DN can either be a string or an array + * as returned by ldap_explode_dn, which is useful when constructing a DN. + * The DN array may have be indexed (each array value is a OCL=VALUE pair) + * or associative (array key is OCL and value is VALUE). + * + * It performs the following operations on the given DN: + * - Removes the leading 'OID.' characters if the type is an OID instead of a name. + * - Escapes all RFC 2253 special characters (",", "+", """, "\", "<", ">", ";", "#", "="), slashes ("/"), and any other character where the ASCII code is < 32 as \hexpair. + * - Converts all leading and trailing spaces in values to be \20. + * - If an RDN contains multiple parts, the parts are re-ordered so that the attribute type names are in alphabetical order. + * + * OPTIONS is a list of name/value pairs, valid options are: + * casefold Controls case folding of attribute type names. + * Attribute values are not affected by this option. The default is to uppercase. + * Valid values are: + * lower Lowercase attribute type names. + * upper Uppercase attribute type names. This is the default. + * none Do not change attribute type names. + * [NOT IMPLEMENTED] mbcescape If TRUE, characters that are encoded as a multi-octet UTF-8 sequence will be escaped as \(hexpair){2,*}. + * reverse If TRUE, the RDN sequence is reversed. + * separator Separator to use between RDNs. Defaults to comma (','). + * + * Note: The empty string "" is a valid DN, so be sure not to do a "$can_dn == false" test, + * because an empty string evaluates to false. Use the "===" operator instead. + * + * @param array|string $dn The DN + * @param array $options Options to use + * + * @static + * @return false|string The canonical DN or FALSE + * @todo implement option mbcescape + */ + public static function canonical_dn($dn, $options = array('casefold' => 'upper', 'separator' => ',')) + { + if ($dn === '') return $dn; // empty DN is valid! + + // options check + if (!isset($options['reverse'])) { + $options['reverse'] = false; + } else { + $options['reverse'] = true; + } + if (!isset($options['casefold'])) $options['casefold'] = 'upper'; + if (!isset($options['separator'])) $options['separator'] = ','; + + + if (!is_array($dn)) { + // It is not clear to me if the perl implementation splits by the user defined + // separator or if it just uses this separator to construct the new DN + $dn = preg_split('/(?<=[^\\\\])'.$options['separator'].'/', $dn); + + // clear wrong splitting (possibly we have split too much) + $dn = self::correct_dn_splitting($dn, $options['separator']); + } else { + // Is array, check, if the array is indexed or associative + $assoc = false; + foreach ($dn as $dn_key => $dn_part) { + if (!is_int($dn_key)) { + $assoc = true; + } + } + // convert to indexed, if associative array detected + if ($assoc) { + $newdn = array(); + foreach ($dn as $dn_key => $dn_part) { + if (is_array($dn_part)) { + ksort($dn_part, SORT_STRING); // we assume here, that the rdn parts are also associative + $newdn[] = $dn_part; // copy array as-is, so we can resolve it later + } else { + $newdn[] = $dn_key.'='.$dn_part; + } + } + $dn =& $newdn; + } + } + + // Escaping and casefolding + foreach ($dn as $pos => $dnval) { + if (is_array($dnval)) { + // subarray detected, this means very surely, that we had + // a multivalued dn part, which must be resolved + $dnval_new = ''; + foreach ($dnval as $subkey => $subval) { + // build RDN part + if (!is_int($subkey)) { + $subval = $subkey.'='.$subval; + } + $subval_processed = self::canonical_dn($subval); + if (false === $subval_processed) return false; + $dnval_new .= $subval_processed.'+'; + } + $dn[$pos] = substr($dnval_new, 0, -1); // store RDN part, strip last plus + } else { + // try to split multivalued RDNS into array + $rdns = self::split_rdn_multival($dnval); + if (count($rdns) > 1) { + // Multivalued RDN was detected! + // The RDN value is expected to be correctly split by split_rdn_multival(). + // It's time to sort the RDN and build the DN! + $rdn_string = ''; + sort($rdns, SORT_STRING); // Sort RDN keys alphabetically + foreach ($rdns as $rdn) { + $subval_processed = self::canonical_dn($rdn); + if (false === $subval_processed) return false; + $rdn_string .= $subval_processed.'+'; + } + + $dn[$pos] = substr($rdn_string, 0, -1); // store RDN part, strip last plus + + } else { + // no multivalued RDN! + // split at first unescaped "=" + $dn_comp = preg_split('/(?<=[^\\\\])=/', $rdns[0], 2); + $ocl = ltrim($dn_comp[0]); // trim left whitespaces 'cause of "cn=foo, l=bar" syntax (whitespace after comma) + $val = $dn_comp[1]; + + // strip 'OID.', otherwise apply casefolding and escaping + if (substr(strtolower($ocl), 0, 4) == 'oid.') { + $ocl = substr($ocl, 4); + } else { + if ($options['casefold'] == 'upper') $ocl = strtoupper($ocl); + if ($options['casefold'] == 'lower') $ocl = strtolower($ocl); + $ocl = self::escape_dn_value(array($ocl)); + $ocl = $ocl[0]; + } + + // escaping of dn-value + $val = self::escape_dn_value(array($val)); + $val = str_replace('/', '\/', $val[0]); + + $dn[$pos] = $ocl.'='.$val; + } + } + } + + if ($options['reverse']) $dn = array_reverse($dn); + return implode($options['separator'], $dn); + } + + /** + * Escapes the given VALUES according to RFC 2254 so that they can be safely used in LDAP filters. + * + * Any control characters with an ACII code < 32 as well as the characters with special meaning in + * LDAP filters "*", "(", ")", and "\" (the backslash) are converted into the representation of a + * backslash followed by two hex digits representing the hexadecimal value of the character. + * + * @param array $values Array of values to escape + * + * @static + * @return array Array $values, but escaped + */ + public static function escape_filter_value($values = array()) + { + // Parameter validation + if (!is_array($values)) { + $values = array($values); + } + + foreach ($values as $key => $val) { + // Escaping of filter meta characters + $val = str_replace('\\', '\5c', $val); + $val = str_replace('*', '\2a', $val); + $val = str_replace('(', '\28', $val); + $val = str_replace(')', '\29', $val); + + // ASCII < 32 escaping + $val = self::asc2hex32($val); + + if (null === $val) $val = '\0'; // apply escaped "null" if string is empty + + $values[$key] = $val; + } + + return $values; + } + + /** + * Undoes the conversion done by {@link escape_filter_value()}. + * + * Converts any sequences of a backslash followed by two hex digits into the corresponding character. + * + * @param array $values Array of values to escape + * + * @static + * @return array Array $values, but unescaped + */ + public static function unescape_filter_value($values = array()) + { + // Parameter validation + if (!is_array($values)) { + $values = array($values); + } + + foreach ($values as $key => $value) { + // Translate hex code into ascii + $values[$key] = self::hex2asc($value); + } + + return $values; + } + + /** + * Converts all ASCII chars < 32 to "\HEX" + * + * @param string $string String to convert + * + * @static + * @return string + */ + public static function asc2hex32($string) + { + for ($i = 0; $i < strlen($string); $i++) { + $char = substr($string, $i, 1); + if (ord($char) < 32) { + $hex = dechex(ord($char)); + if (strlen($hex) == 1) $hex = '0'.$hex; + $string = str_replace($char, '\\'.$hex, $string); + } + } + return $string; + } + + /** + * Converts all Hex expressions ("\HEX") to their original ASCII characters + * + * @param string $string String to convert + * + * @static + * @author beni@php.net, heavily based on work from DavidSmith@byu.net + * @return string + */ + public static function hex2asc($string) + { + $string = preg_replace("/\\\([0-9A-Fa-f]{2})/e", "''.chr(hexdec('\\1')).''", $string); + return $string; + } + + /** + * Split an multivalued RDN value into an Array + * + * A RDN can contain multiple values, spearated by a plus sign. + * This function returns each separate ocl=value pair of the RDN part. + * + * If no multivalued RDN is detected, an array containing only + * the original rdn part is returned. + * + * For example, the multivalued RDN 'OU=Sales+CN=J. Smith' is exploded to: + * array([0] => 'OU=Sales', [1] => 'CN=J. Smith') + * + * The method trys to be smart if it encounters unescaped "+" characters, but may fail, + * so ensure escaped "+"es in attr names and attr values. + * + * [BUG] If you have a multivalued RDN with unescaped plus characters + * and there is a unescaped plus sign at the end of an value followed by an + * attribute name containing an unescaped plus, then you will get wrong splitting: + * $rdn = 'OU=Sales+C+N=J. Smith'; + * returns: + * array('OU=Sales+C', 'N=J. Smith'); + * The "C+" is treaten as value of the first pair instead as attr name of the second pair. + * To prevent this, escape correctly. + * + * @param string $rdn Part of an (multivalued) escaped RDN (eg. ou=foo OR ou=foo+cn=bar) + * + * @static + * @return array Array with the components of the multivalued RDN or Error + */ + public static function split_rdn_multival($rdn) + { + $rdns = preg_split('/(? $dn_value) { + $dn_value = $dn[$key]; // refresh value (foreach caches!) + // if the dn_value is not in attr=value format, then we had an + // unescaped separator character inside the attr name or the value. + // We assume, that it was the attribute value. + // [TODO] To solve this, we might ask the schema. Keep in mind, that UTIL class + // must remain independent from the other classes or connections. + if (!preg_match('/.+(? diff --git a/install.php b/install.php index d34e92dab4..e7f7cf3187 100644 --- a/install.php +++ b/install.php @@ -130,6 +130,14 @@ $external_libraries=array( 'include'=>'Net/URL/Mapper.php', 'check_class'=>'Net_URL_Mapper' ), + array( + 'name'=>'Net_LDAP2', + 'pear'=>'Net_LDAP2', + 'url'=>'http://pear.php.net/package/Net_LDAP2', + 'deb'=>'php-net-ldap2', + 'include'=>'Net/LDAP2.php', + 'check_class'=>'Net_LDAP2' + ), array( 'name'=>'Net_Socket', 'pear'=>'Net_Socket', diff --git a/plugins/Ldap/LdapPlugin.php b/plugins/Ldap/LdapPlugin.php new file mode 100644 index 0000000000..8ebe15b803 --- /dev/null +++ b/plugins/Ldap/LdapPlugin.php @@ -0,0 +1,45 @@ +. + * + * @category Plugin + * @package StatusNet + * @author Craig Andrews + * @copyright 2009 Craig Andrews http://candrews.integralblue.com + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { + exit(1); +} + +class LdapPlugin extends Plugin +{ + function __construct() + { + parent::__construct(); + } + + function onCheckPassword($nickname, $password, &$authenticated) + { + + } +} From 4f461bc5c383d4febfe07cd5d526fc6ba5218d31 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 4 Nov 2009 19:03:05 +0000 Subject: [PATCH 54/92] Updated identica badge - contributed by Will Daniels http://identi.ca/wdaniels --- js/identica-badge.js | 163 +++++++++++++++++++++++++++++++------------ 1 file changed, 118 insertions(+), 45 deletions(-) diff --git a/js/identica-badge.js b/js/identica-badge.js index 49c42b70cd..8276f22a1d 100644 --- a/js/identica-badge.js +++ b/js/identica-badge.js @@ -1,8 +1,71 @@ // identica badge -- updated to work with the native API, 12-4-2008 // Modified to point to Identi.ca, 2-20-2009 by Zach +// Modified for XHTML, 27-9-2009 by Will Daniels +// (see http://willdaniels.co.uk/blog/tech-stuff/26-identica-badge-xhtml) // copyright Kent Brewster 2008 // see http://kentbrewster.com/identica-badge for info -( function() { + +function createHTMLElement(tagName) { + if(document.createElementNS) + var elem = document.createElementNS("http://www.w3.org/1999/xhtml", tagName); + else + var elem = document.createElement(tagName); + + return elem; +} + +function isNumeric(value) { + if (value == null || !value.toString().match(/^[-]?\d*\.?\d*$/)) return false; + return true; +} + +function markupPost(raw, server) { + var start = 0; var p = createHTMLElement('p'); + + raw.replace(/((http|https):\/\/|\!|@|#)(([\w_]+)?[^\s]*)/g, + function(sub, type, scheme, url, word, offset, full) + { + if(!scheme && !word) return; // just punctuation + var label = ''; var href = ''; + var pretext = full.substr(start, offset - start); + + moniker = word.split('_'); // behaviour with underscores differs + if(type == '#') moniker = moniker.join(''); + else word = moniker = moniker[0].toLowerCase(); + + switch(type) { + case 'http://': case 'https://': // html links + href = scheme + '://' + url; break; + case '@': // link users + href = 'http://' + server + '/' + moniker; break; + case '!': // link groups + href = 'http://' + server + '/group/' + moniker; break; + case '#': // link tags + href = 'http://' + server + '/tag/' + moniker; break; + default: // bad call (just reset position for text) + start = offset; + } + if(scheme) { // only urls will have scheme + label = sub; start = offset + sub.length; + } else { + label = word; pretext += type; + start = offset + word.length + type.length; + } + p.appendChild(document.createTextNode(pretext)); + + var link = createHTMLElement('a'); + link.appendChild(document.createTextNode(label)); + link.href = href; link.target = '_statusnet'; + p.appendChild(link); + }); + + if(start != raw.length) { + endtext = raw.substr(start); + p.appendChild(document.createTextNode(endtext)); + } + return p; +} +(function() { var trueName = ''; for (var i = 0; i < 16; i++) { trueName += String.fromCharCode(Math.floor(Math.random() * 26) + 97); @@ -13,7 +76,7 @@ return { runFunction : [], init : function(target) { - var theScripts = document.getElementsByTagName('SCRIPT'); + var theScripts = document.getElementsByTagName('script'); for (var i = 0; i < theScripts.length; i++) { if (theScripts[i].src.match(target)) { $.a = {}; @@ -66,9 +129,17 @@ "server" : "identi.ca" }; for (var k in $.d) { if ($.a[k] === undefined) { $.a[k] = $.d[k]; } } + // fix inout units + if(isNumeric($.a.width)) { + $.a.innerWidth = ($.a.width - 22) + 'px'; $.a.width += 'px'; + } else { + $.a.innerWidth = 'auto'; + } + if(isNumeric($.a.height)) $.a.height += 'px'; }, - buildPresentation : function () { - var ns = document.createElement('style'); + buildPresentation : function () { + var setZoom = ''; if(navigator.appName == 'Microsoft Internet Explorer') setZoom = 'zoom:1;'; + var ns = createHTMLElement('style'); document.getElementsByTagName('head')[0].appendChild(ns); if (!window.createPopup) { ns.appendChild(document.createTextNode('')); @@ -76,36 +147,37 @@ } var s = document.styleSheets[document.styleSheets.length - 1]; var rules = { - "" : "{zoom:1;margin:0;padding:0;width:" + $.a.width + "px;background:" + $.a.background + ";border:" + $.a.border + ";font:13px/1.2em tahoma, veranda, arial, helvetica, clean, sans-serif;*font-size:small;*font:x-small;}", + "" : "{margin:0px;padding:0px;width:" + $.a.width + ";background:" + $.a.background + ";border:" + $.a.border + ";font:87%/1.2em tahoma, veranda, arial, helvetica, clean, sans-serif;}", "a" : "{cursor:pointer;text-decoration:none;}", "a:hover" : "{text-decoration:underline;}", - "cite" : "{font-weight:bold;margin:0 0 0 4px;padding:0;display:block;font-style:normal;line-height:" + ($.a.thumbnailSize/2) + "px;}", - "cite a" : "{color:#C15D42;}", - "date":"{font-size:87%;margin:0 0 0 4px;padding:0;display:block;font-style:normal;line-height:" + ($.a.thumbnailSize/2) + "px;}", - "date:after" : "{clear:both; content:\".\"; display:block; height:0; visibility:hidden; }", - "date a" : "{color:#676;}", - "h3" : "{margin:0;padding:" + $.a.padding + "px;font-weight:bold;background:" + $.a.headerBackground + " url('http://" + $.a.server + "/favicon.ico') " + $.a.padding + "px 50% no-repeat;text-indent:" + ($.a.padding + 16) + "px;}", + ".cite" : "{" + setZoom + "font-weight:bold;margin:0px 0px 0px 4px;padding:0px;display:block;font-style:normal;line-height:" + ($.a.thumbnailSize/2) + "px;vertical-align:middle;}", + ".cite a" : "{color:#C15D42;}", + ".date":"{margin:0px 0px 0px 4px;padding:0px;display:block;font-style:normal;line-height:" + ($.a.thumbnailSize/2) + "px;vertical-align:middle;}", + ".date:after" : "{clear:both;content:\".\"; display:block;height:0px;visibility:hidden;}", + ".date a" : "{color:#676;}", + "h3" : "{margin:0px;padding:" + $.a.padding + "px;font-weight:bold;background:" + $.a.headerBackground + " url('http://" + $.a.server + "/favicon.ico') " + $.a.padding + "px 50% no-repeat;padding-left:" + ($.a.padding + 20) + "px;}", "h3.loading" : "{background-image:url('http://l.yimg.com/us.yimg.com/i/us/my/mw/anim_loading_sm.gif');}", "h3 a" : "{font-size:92%; color:" + $.a.headerColor + ";}", - "h4" : "{font-weight:normal; background:" + $.a.headerBackground + ";text-align:right;margin:0;padding:" + $.a.padding + "px;}", + "h4" : "{font-weight:normal;background:" + $.a.headerBackground + ";text-align:right;margin:0px;padding:" + $.a.padding + "px;}", "h4 a" : "{font-size:92%; color:" + $.a.headerColor + ";}", - "img":"{float:left; height:" + $.a.thumbnailSize + "px;width:" + $.a.thumbnailSize + "px;border:" + $.a.thumbnailBorder + ";margin-right:" + $.a.padding + "px;}", - "p" : "{margin:0; padding:0;width:" + ($.a.width - 22) + "px;overflow:hidden;font-size:87%;}", + "img":"{float:left;height:" + $.a.thumbnailSize + "px;width:" + $.a.thumbnailSize + "px;border:" + $.a.thumbnailBorder + ";margin-right:" + $.a.padding + "px;}", + "p" : "{margin:2px 0px 0px 0px;padding:0px;width:" + $.a.innerWidth + ";overflow:hidden;line-height:normal;}", "p a" : "{color:#C15D42;}", - "ul":"{margin:0; padding:0; height:" + $.a.height + "px;width:" + $.a.width + "px;overflow:auto;}", - "ul li":"{background:" + $.a.evenBackground + ";margin:0;padding:" + $.a.padding + "px;list-style:none;width:" + ($.a.width - 22) + "px;overflow:hidden;border-bottom:1px solid #D8E2D7;}", + "ul":"{margin:0px; padding:0px; height:" + $.a.height + ";width:" + $.a.innerWidth + ";overflow:auto;}", + "ul li":"{background:" + $.a.evenBackground + ";margin:0px;padding:" + $.a.padding + "px;list-style:none;width:auto;overflow:hidden;border-bottom:1px solid #D8E2D7;}", "ul li:hover":"{background:#f3f8ea;}" }; var ieRules = ""; // brute-force each and every style rule here to !important // sometimes you have to take off and nuke the site from orbit; it's the only way to be sure for (var z in rules) { - var selector = '.' + trueName + ' ' + z; + if(z.charAt(0)=='.') var selector = '.' + trueName + '-' + z.substring(1); + else var selector = '.' + trueName + ' ' + z; var rule = rules[z]; if (typeof rule === 'string') { var important = rule.replace(/;/gi, '!important;'); if (!window.createPopup) { - var theRule = document.createTextNode(selector + important); + var theRule = document.createTextNode(selector + important + '\n'); ns.appendChild(theRule); } else { ieRules += selector + important; @@ -115,17 +187,17 @@ if (window.createPopup) { s.cssText = ieRules; } }, buildStructure : function() { - $.s = document.createElement('DIV'); + $.s = createHTMLElement('div'); $.s.className = trueName; - $.s.h = document.createElement('H3'); - $.s.h.a = document.createElement('A'); + $.s.h = createHTMLElement('h3'); + $.s.h.a = createHTMLElement('a'); $.s.h.a.target = '_statusnet'; $.s.h.appendChild($.s.h.a); $.s.appendChild($.s.h); - $.s.r = document.createElement('UL'); + $.s.r = createHTMLElement('ul'); $.s.appendChild($.s.r); - $.s.f = document.createElement('H4'); - var a = document.createElement('A'); + $.s.f = createHTMLElement('h4'); + var a = createHTMLElement('a'); a.innerHTML = 'get this'; a.target = '_blank'; a.href = 'http://identi.ca/doc/badge'; @@ -139,7 +211,7 @@ var id = trueName + '.f.runFunction[' + n + ']'; $.f.runFunction[n] = function(r) { delete($.f.runFunction[n]); - var a = document.createElement('A'); + var a = createHTMLElement('a'); a.rel = $.a.user; a.rev = r.name; a.id = r.screen_name; @@ -178,10 +250,11 @@ } } r = $.f.sortArray(r, "status_id", true); - $.s.h.className = ''; + $.s.h.className = ''; // for IE6 + $.s.h.removeAttribute('class'); for (var i = 0; i < r.length; i++) { - var li = document.createElement('LI'); - var icon = document.createElement('A'); + var li = createHTMLElement('li'); + var icon = createHTMLElement('a'); if (r[i] && r[i].url) { icon.href = r[i].url; icon.target = '_statusnet'; @@ -192,17 +265,19 @@ icon.title = 'Visit ' + r[i].screen_name + ' at http://' + $.a.server + '/' + r[i].screen_name; } - var img = document.createElement('IMG'); + var img = createHTMLElement('img'); + img.alt = 'profile image for ' + r[i].screen_name; img.src = r[i].profile_image_url; icon.appendChild(img); - li.appendChild(icon); + li.appendChild(icon); - var user = document.createElement('CITE'); - var a = document.createElement('A'); + var user = createHTMLElement('span'); + user.className = trueName + '-cite'; + var a = createHTMLElement('a'); a.rel = r[i].id; a.rev = r[i].name; a.id = r[i].screen_name; - a.innerHTML = r[i].name; + a.innerHTML = r[i].name; a.href = 'http://' + $.a.server + '/' + r[i].screen_name; a.onclick = function() { $.f.changeUserTo(this); @@ -210,16 +285,17 @@ }; user.appendChild(a); li.appendChild(user); - var updated = document.createElement('DATE'); + var updated = createHTMLElement('span'); + updated.className = trueName + '-date'; if (r[i].status && r[i].status.created_at) { - var date_link = document.createElement('A'); + var date_link = createHTMLElement('a'); date_link.innerHTML = r[i].status.created_at.split(/\+/)[0]; date_link.href = 'http://' + $.a.server + '/notice/' + r[i].status.id; date_link.target = '_statusnet'; updated.appendChild(date_link); if (r[i].status.in_reply_to_status_id) { updated.appendChild(document.createTextNode(' in reply to ')); - var in_reply_to = document.createElement('A'); + var in_reply_to = createHTMLElement('a'); in_reply_to.innerHTML = r[i].status.in_reply_to_status_id; in_reply_to.href = 'http://' + $.a.server + '/notice/' + r[i].status.in_reply_to_status_id; in_reply_to.target = '_statusnet'; @@ -229,20 +305,16 @@ updated.innerHTML = 'has not updated yet'; } li.appendChild(updated); - var p = document.createElement('P'); + var p = createHTMLElement('p'); if (r[i].status && r[i].status.text) { var raw = r[i].status.text; - var cooked = raw; - cooked = cooked.replace(/http:\/\/([^ ]+)/g, "http://$1"); - cooked = cooked.replace(/@([\w*]+)/g, '@$1'); - cooked = cooked.replace(/#([\w*]+)/g, '#$1'); - p.innerHTML = cooked; + p = markupPost(raw, $.a.server); } li.appendChild(p); - var a = p.getElementsByTagName('A'); + var a = p.getElementsByTagName('a'); for (var j = 0; j < a.length; j++) { if (a[j].className == 'changeUserTo') { - a[j].className = ''; + a[j].removeAttribute('class'); a[j].href = 'http://' + $.a.server + '/' + a[j].innerHTML; a[j].rel = a[j].innerHTML; a[j].onclick = function() { @@ -269,7 +341,7 @@ return r; }, runScript : function(url, id) { - var s = document.createElement('script'); + var s = createHTMLElement('script'); s.id = id; s.type ='text/javascript'; s.src = url; @@ -292,3 +364,4 @@ } } )(); + From 527427d3e0752a371b1b6421dabec5cc1c7e19ad Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 4 Nov 2009 21:00:26 -0800 Subject: [PATCH 55/92] Implement update avatar via API (/api/account/update_profile_image.format) --- actions/apiaccountupdateprofileimage.php | 145 +++++++++++++++++++++++ actions/apistatusesupdate.php | 2 +- extlib/MIME/Type.php | 2 +- lib/imagefile.php | 2 +- lib/router.php | 3 + 5 files changed, 151 insertions(+), 3 deletions(-) create mode 100644 actions/apiaccountupdateprofileimage.php diff --git a/actions/apiaccountupdateprofileimage.php b/actions/apiaccountupdateprofileimage.php new file mode 100644 index 0000000000..416fee45ac --- /dev/null +++ b/actions/apiaccountupdateprofileimage.php @@ -0,0 +1,145 @@ +. + * + * @category API + * @package StatusNet + * @author Zach Copley + * @copyright 2009 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +require_once INSTALLDIR . '/lib/apiauth.php'; + +/** + * Updates the authenticating user's profile image. Note that this API method + * expects raw multipart data, not a URL to an image. + * + * @category API + * @package StatusNet + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +class ApiAccountUpdateProfileImageAction extends ApiAuthAction +{ + + /** + * Take arguments for running + * + * @param array $args $_REQUEST args + * + * @return boolean success flag + * + */ + + function prepare($args) + { + parent::prepare($args); + + $this->user = $this->auth_user; + + return true; + } + + /** + * Handle the request + * + * Check whether the credentials are valid and output the result + * + * @param array $args $_REQUEST data (unused) + * + * @return void + */ + + function handle($args) + { + parent::handle($args); + + if ($_SERVER['REQUEST_METHOD'] != 'POST') { + $this->clientError( + _('This method requires a POST.'), + 400, $this->format + ); + return; + } + + if (empty($this->user)) { + $this->clientError(_('No such user!'), 404, $this->format); + return; + } + + // Workaround for PHP returning empty $_FILES when POST length > PHP settings + + if (empty($_FILES) && ($_SERVER['CONTENT_LENGTH'] > 0)) { + common_debug('content-length = ' . $_SERVER['CONTENT_LENGTH']); + $this->clientError(_('Unable to handle that much POST data!')); + return; + } + + try { + $imagefile = ImageFile::fromUpload('image'); + } catch (Exception $e) { + $this->clientError($e->getMessage(), 400, $this->format); + return; + } + + $filename = Avatar::filename( + $user->id, + image_type_to_extension($imagefile->type), + null, + 'tmp'.common_timestamp() + ); + + $filepath = Avatar::path($filename); + + move_uploaded_file($imagefile->filepath, $filepath); + + $profile = $this->user->getProfile(); + + if (empty($profile)) { + $this->clientError(_('User has no profile.')); + return; + } + + $profile->setOriginal($filename); + + common_broadcast_profile($profile); + + $twitter_user = $this->twitterUserArray($this->user->getProfile(), true); + + if ($this->format == 'xml') { + $this->initDocument('xml'); + $this->showTwitterXmlUser($twitter_user); + $this->endDocument('xml'); + } elseif ($this->format == 'json') { + $this->initDocument('json'); + $this->showJsonObjects($twitter_user); + $this->endDocument('json'); + } + } + +} diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index b9c0832a4e..82fe5a537e 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -128,7 +128,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction // Workaround for PHP returning empty $_FILES when POST length > PHP settings - if (empty($_POST) && ($_SERVER['CONTENT_LENGTH'] > 0)) { + if (empty($_FILES) && ($_SERVER['CONTENT_LENGTH'] > 0)) { $this->clientError(_('Unable to handle that much POST data!')); return; } diff --git a/extlib/MIME/Type.php b/extlib/MIME/Type.php index c335f8d92d..e0e9c9ee6e 100644 --- a/extlib/MIME/Type.php +++ b/extlib/MIME/Type.php @@ -513,7 +513,7 @@ class MIME_Type return PEAR::raiseError("Can't find file command \"{$fileCmd}\""); } - $cmd->pushCommand($fileCmd, "-bi " . escapeshellarg($file)); + $cmd->pushCommand($fileCmd, "-bI " . escapeshellarg($file)); $res = $cmd->execute(); unset($cmd); diff --git a/lib/imagefile.php b/lib/imagefile.php index cd2f87e6bd..cf1668f203 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -72,7 +72,7 @@ class ImageFile break; case UPLOAD_ERR_INI_SIZE: case UPLOAD_ERR_FORM_SIZE: - throw new Exception(sprintf(_('That file is too big. The maximum file size is %d.'), + throw new Exception(sprintf(_('That file is too big. The maximum file size is %s.'), ImageFile::maxFileSize())); return; case UPLOAD_ERR_PARTIAL: diff --git a/lib/router.php b/lib/router.php index 0ddda473c0..eb931e5b07 100644 --- a/lib/router.php +++ b/lib/router.php @@ -428,6 +428,9 @@ class Router $m->connect('api/account/verify_credentials.:format', array('action' => 'ApiAccountVerifyCredentials')); + $m->connect('api/account/update_profile_image.:format', + array('action' => 'ApiAccountUpdateProfileImage')); + // special case where verify_credentials is called w/out a format $m->connect('api/account/verify_credentials', From f28795656f9250707b2180c93fe9946d5066017b Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 4 Nov 2009 21:08:47 -0800 Subject: [PATCH 56/92] Remove ugly debugging statements --- actions/apifriendshipsexists.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/actions/apifriendshipsexists.php b/actions/apifriendshipsexists.php index ae50c512c8..2910f7eadc 100644 --- a/actions/apifriendshipsexists.php +++ b/actions/apifriendshipsexists.php @@ -69,16 +69,7 @@ class ApiFriendshipsExistsAction extends ApiAction $user_a_id = $this->trimmed('user_a'); $user_b_id = $this->trimmed('user_b'); - common_debug("user_a = " . $user_a_id); - common_debug("user_b = " . $user_b_id); - - $this->user_a = $this->getTargetUser($user_a_id); - - if (empty($this->user_a)) { - common_debug('gargargra'); - } - $this->user_b = $this->getTargetUser($user_b_id); return true; From fbeae998840fb58ac2fbb8779f14eb2abe74cd08 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 4 Nov 2009 21:33:59 -0800 Subject: [PATCH 57/92] Allow all API calls, even if the site is configured as private. The API Actions will decide whether something requires auth or a redirect. --- index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/index.php b/index.php index 3acdba3754..577b491ed0 100644 --- a/index.php +++ b/index.php @@ -239,6 +239,7 @@ function main() if (!$user && common_config('site', 'private') && !isLoginAction($action) && !preg_match('/rss$/', $action) + && !preg_match('/^Api/', $action) ) { common_redirect(common_local_url('login')); return; From 40bf174c0175df2d2de604f6887b90760faab74e Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 5 Nov 2009 05:59:46 +0000 Subject: [PATCH 58/92] Revert a OS X-specific change to PEAR MIME_Type that I accidentally commited. --- extlib/MIME/Type.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extlib/MIME/Type.php b/extlib/MIME/Type.php index e0e9c9ee6e..c335f8d92d 100644 --- a/extlib/MIME/Type.php +++ b/extlib/MIME/Type.php @@ -513,7 +513,7 @@ class MIME_Type return PEAR::raiseError("Can't find file command \"{$fileCmd}\""); } - $cmd->pushCommand($fileCmd, "-bI " . escapeshellarg($file)); + $cmd->pushCommand($fileCmd, "-bi " . escapeshellarg($file)); $res = $cmd->execute(); unset($cmd); From 1ef1f59fe8ec8c3fd012838cfe0d20051287c2d6 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 4 Nov 2009 22:03:41 -0800 Subject: [PATCH 59/92] Fix for Ticket #1957 - API methods are not accessible when site is private (0.8->0.9 regression) --- actions/apifriendshipsexists.php | 4 +- actions/apigrouplistall.php | 4 +- actions/apigroupmembership.php | 4 +- actions/apigroupshow.php | 4 +- actions/apihelptest.php | 4 +- actions/apistatusesshow.php | 4 +- actions/apistatusnetversion.php | 4 +- actions/apitimelinefriends.php | 2 +- actions/apitimelinegroup.php | 4 +- actions/apitimelinepublic.php | 4 +- actions/apitimelinetag.php | 4 +- actions/apiusershow.php | 4 +- lib/apiauth.php | 1 + lib/apibareauth.php | 2 + lib/apiprivateauth.php | 82 ++++++++++++++++++++++++++++++++ 15 files changed, 108 insertions(+), 23 deletions(-) create mode 100644 lib/apiprivateauth.php diff --git a/actions/apifriendshipsexists.php b/actions/apifriendshipsexists.php index 2910f7eadc..c040b9f6ad 100644 --- a/actions/apifriendshipsexists.php +++ b/actions/apifriendshipsexists.php @@ -33,7 +33,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * Tests for the existence of friendship between two users. Will return true if @@ -48,7 +48,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiFriendshipsExistsAction extends ApiAction +class ApiFriendshipsExistsAction extends ApiPrivateAuthAction { var $user_a = null; var $user_b = null; diff --git a/actions/apigrouplistall.php b/actions/apigrouplistall.php index 89469f36f4..c597839a88 100644 --- a/actions/apigrouplistall.php +++ b/actions/apigrouplistall.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * Returns of the lastest 20 groups for the site @@ -49,7 +49,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiGroupListAllAction extends ApiAction +class ApiGroupListAllAction extends ApiPrivateAuthAction { var $groups = null; diff --git a/actions/apigroupmembership.php b/actions/apigroupmembership.php index b31e47b398..d221a64183 100644 --- a/actions/apigroupmembership.php +++ b/actions/apigroupmembership.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * List 20 newest members of the group specified by name or ID. @@ -49,7 +49,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiGroupMembershipAction extends ApiAction +class ApiGroupMembershipAction extends ApiPrivateAuthAction { var $group = null; var $profiles = null; diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php index 2bdb22bc41..b745ff92f6 100644 --- a/actions/apigroupshow.php +++ b/actions/apigroupshow.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * Outputs detailed information about the group specified by ID @@ -49,7 +49,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiGroupShowAction extends ApiAction +class ApiGroupShowAction extends ApiPrivateAuthAction { var $group = null; diff --git a/actions/apihelptest.php b/actions/apihelptest.php index e4ef55f2e3..f2c459e6fd 100644 --- a/actions/apihelptest.php +++ b/actions/apihelptest.php @@ -32,7 +32,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * Returns the string "ok" in the requested format with a 200 OK HTTP status code. @@ -45,7 +45,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiHelpTestAction extends ApiAction +class ApiHelpTestAction extends ApiPrivateAuthAction { /** diff --git a/actions/apistatusesshow.php b/actions/apistatusesshow.php index 3be22ca597..e26c009c44 100644 --- a/actions/apistatusesshow.php +++ b/actions/apistatusesshow.php @@ -37,7 +37,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * Returns the notice specified by id as a Twitter-style status and inline user @@ -55,7 +55,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiStatusesShowAction extends ApiAction +class ApiStatusesShowAction extends ApiPrivateAuthAction { var $notice_id = null; diff --git a/actions/apistatusnetversion.php b/actions/apistatusnetversion.php index e73ab983be..bbf891a899 100644 --- a/actions/apistatusnetversion.php +++ b/actions/apistatusnetversion.php @@ -32,7 +32,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * Returns a version number for this version of StatusNet, which @@ -48,7 +48,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiStatusnetVersionAction extends ApiAction +class ApiStatusnetVersionAction extends ApiPrivateAuthAction { /** * Take arguments for running diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php index 1ea35866e2..66dd3f2b29 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinefriends.php @@ -72,7 +72,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction function prepare($args) { parent::prepare($args); - + common_debug("api friends_timeline"); $this->user = $this->getTargetUser($this->arg('id')); if (empty($this->user)) { diff --git a/actions/apitimelinegroup.php b/actions/apitimelinegroup.php index 5d05429185..f25f6ba513 100644 --- a/actions/apitimelinegroup.php +++ b/actions/apitimelinegroup.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * Returns the most recent notices (default 20) posted to the group specified by ID @@ -49,7 +49,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiTimelineGroupAction extends ApiAction +class ApiTimelineGroupAction extends ApiPrivateAuthAction { var $group = null; diff --git a/actions/apitimelinepublic.php b/actions/apitimelinepublic.php index 58e2677348..7a85042592 100644 --- a/actions/apitimelinepublic.php +++ b/actions/apitimelinepublic.php @@ -37,7 +37,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * Returns the most recent notices (default 20) posted by everybody @@ -55,7 +55,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiTimelinePublicAction extends ApiAction +class ApiTimelinePublicAction extends ApiPrivateAuthAction { var $notices = null; diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php index a274daac00..452593c116 100644 --- a/actions/apitimelinetag.php +++ b/actions/apitimelinetag.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * Returns the 20 most recent notices tagged by a given tag @@ -49,7 +49,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiTimelineTagAction extends ApiAction +class ApiTimelineTagAction extends ApiPrivateAuthAction { var $notices = null; diff --git a/actions/apiusershow.php b/actions/apiusershow.php index b3a939b431..aa7aec5a41 100644 --- a/actions/apiusershow.php +++ b/actions/apiusershow.php @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/api.php'; +require_once INSTALLDIR . '/lib/apiprivateauth.php'; /** * Ouputs information for a user, specified by ID or screen name. @@ -50,7 +50,7 @@ require_once INSTALLDIR . '/lib/api.php'; * @link http://status.net/ */ -class ApiUserShowAction extends ApiAction +class ApiUserShowAction extends ApiPrivateAuthAction { /** * Take arguments for running diff --git a/lib/apiauth.php b/lib/apiauth.php index 2f2e44a264..2a33770132 100644 --- a/lib/apiauth.php +++ b/lib/apiauth.php @@ -66,6 +66,7 @@ class ApiAuthAction extends ApiAction function prepare($args) { + common_debug('ApiAction::prepare()'); parent::prepare($args); if ($this->requiresAuth()) { diff --git a/lib/apibareauth.php b/lib/apibareauth.php index 2d29c1ddd6..a127a5bf3c 100644 --- a/lib/apibareauth.php +++ b/lib/apibareauth.php @@ -74,6 +74,8 @@ class ApiBareAuthAction extends ApiAuthAction function prepare($args) { + common_debug("ApiBareAuthAction::prepare()"); + parent::prepare($args); return true; } diff --git a/lib/apiprivateauth.php b/lib/apiprivateauth.php new file mode 100644 index 0000000000..5d00330053 --- /dev/null +++ b/lib/apiprivateauth.php @@ -0,0 +1,82 @@ +. + * + * @category API + * @package StatusNet + * @author Adrian Lang + * @author Brenda Wallace + * @author Craig Andrews + * @author Dan Moore + * @author Evan Prodromou + * @author mEDI + * @author Sarven Capadisli + * @author Zach Copley + * @copyright 2009 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET')) { + exit(1); +} + +require_once INSTALLDIR.'/lib/apiauth.php'; + +/** + * Actions extending this class will require auth only if a site is private + * + * @category API + * @package StatusNet + * @author Adrian Lang + * @author Brenda Wallace + * @author Craig Andrews + * @author Dan Moore + * @author Evan Prodromou + * @author mEDI + * @author Sarven Capadisli + * @author Zach Copley + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +class ApiPrivateAuthAction extends ApiAuthAction +{ + + /** + * Does this API resource require authentication? + * + * @return boolean true or false + */ + + function requiresAuth() + { + // If the site is "private", all API methods except statusnet/config + // need authentication + + if (common_config('site', 'private')) { + return true; + } + + return false; + } + +} From 2fc01dc7d150e138d2b70e34d8aa816781dfdd36 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 4 Nov 2009 22:12:01 -0800 Subject: [PATCH 60/92] Remove debugging statements --- lib/apiauth.php | 1 - lib/apibareauth.php | 2 -- 2 files changed, 3 deletions(-) diff --git a/lib/apiauth.php b/lib/apiauth.php index 2a33770132..2f2e44a264 100644 --- a/lib/apiauth.php +++ b/lib/apiauth.php @@ -66,7 +66,6 @@ class ApiAuthAction extends ApiAction function prepare($args) { - common_debug('ApiAction::prepare()'); parent::prepare($args); if ($this->requiresAuth()) { diff --git a/lib/apibareauth.php b/lib/apibareauth.php index a127a5bf3c..2d29c1ddd6 100644 --- a/lib/apibareauth.php +++ b/lib/apibareauth.php @@ -74,8 +74,6 @@ class ApiBareAuthAction extends ApiAuthAction function prepare($args) { - common_debug("ApiBareAuthAction::prepare()"); - parent::prepare($args); return true; } From 2bb93438a1664aa13a5a23b8600a7579a6eaa4c5 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 4 Nov 2009 08:36:27 -0800 Subject: [PATCH 61/92] Error page fix: use class static accessor correctly, suppress notices if we don't have the error code listed --- lib/error.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/error.php b/lib/error.php index 6a9b76be11..3162cfe656 100644 --- a/lib/error.php +++ b/lib/error.php @@ -70,7 +70,7 @@ class ErrorAction extends Action */ function extraHeaders() { - $status_string = $this->status[$this->code]; + $status_string = @self::$status[$this->code]; header('HTTP/1.1 '.$this->code.' '.$status_string); } @@ -92,7 +92,7 @@ class ErrorAction extends Action function title() { - return self::$status[$this->code]; + return @self::$status[$this->code]; } function isReadOnly($args) From 73e45bbfd99f0aafc1b22ab4dbbfc4e4329fc254 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Thu, 5 Nov 2009 13:59:19 -0500 Subject: [PATCH 62/92] Made the ldap plugin work, and add a readme --- plugins/Ldap/LdapPlugin.php | 9 ++- plugins/Ldap/README | 16 ++++++ plugins/Ldap/ldap.php | 106 ++++++++++++++++++++++++++++++++++++ 3 files changed, 130 insertions(+), 1 deletion(-) create mode 100644 plugins/Ldap/README create mode 100644 plugins/Ldap/ldap.php diff --git a/plugins/Ldap/LdapPlugin.php b/plugins/Ldap/LdapPlugin.php index 8ebe15b803..ec2b7977da 100644 --- a/plugins/Ldap/LdapPlugin.php +++ b/plugins/Ldap/LdapPlugin.php @@ -31,8 +31,12 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +require_once INSTALLDIR.'/plugins/Ldap/ldap.php'; + class LdapPlugin extends Plugin { + private $config = array(); + function __construct() { parent::__construct(); @@ -40,6 +44,9 @@ class LdapPlugin extends Plugin function onCheckPassword($nickname, $password, &$authenticated) { - + if(ldap_check_password($nickname, $password)){ + $authenticated = true; + return false; + } } } diff --git a/plugins/Ldap/README b/plugins/Ldap/README new file mode 100644 index 0000000000..8a5095a5df --- /dev/null +++ b/plugins/Ldap/README @@ -0,0 +1,16 @@ +The LDAP plugin allows for StatusNet to handle authentication, authorization, and user information through LDAP. + +Installation +============ +Add configuration entries to config.php. These entries are: + +The following are documented at http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php +$config['ldap']['binddn'] +$config['ldap']['bindpw'] +$config['ldap']['basedn'] +$config['ldap']['host'] + +$config['ldap']['nickname_attribute'] Set this to the name of the ldap attribute that holds the username. For example, on Microsoft's Active Directory, this should be set to 'sAMAccountName' + +Finally, add "addPlugin('ldap');" to the bottom of your config.php + diff --git a/plugins/Ldap/ldap.php b/plugins/Ldap/ldap.php new file mode 100644 index 0000000000..fcb84610a6 --- /dev/null +++ b/plugins/Ldap/ldap.php @@ -0,0 +1,106 @@ +. + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } + +require_once 'Net/LDAP2.php'; + +function ldap_get_config(){ + static $config = null; + if($config == null){ + $config = array(); + $keys = array('host','port','version','starttls','binddn','bindpw','basedn','options','scope'); + foreach($keys as $key){ + $value = common_config('ldap', $key); + if($value!==false){ + $config[$key]=$value; + } + } + } + return $config; +} + +function ldap_get_connection($config = null){ + if($config == null){ + static $ldap = null; + if($ldap!=null){ + return $ldap; + } + $config = ldap_get_config(); + } + $ldap = Net_LDAP2::connect($config); + if (PEAR::isError($ldap)) { + common_log(LOG_WARNING, 'Could not connect to LDAP server: '.$ldap->getMessage()); + return false; + }else{ + return $ldap; + } +} + +function ldap_check_password($username, $password){ + $ldap = ldap_get_connection(); + if(!$ldap){ + return false; + } + $dn = ldap_get_user_dn($username); + if(!$dn){ + return false; + }else{ + $config = ldap_get_config(); + $config['binddn']=$dn; + $config['bindpw']=$password; + if(ldap_get_connection($config)){ + return true; + }else{ + return false; + } + } +} + +/** + * get an LDAP user's DN given the user's username + * + * @param string $username + * @return string DN + */ +function ldap_get_user_dn($username){ + $ldap = ldap_get_connection(); + $filter = Net_LDAP2_Filter::create(common_config('ldap','nickname_attribute'), 'equals', $username); + $options = array( + 'scope' => 'sub', + 'attributes' => array() + ); + $search = $ldap->search(null,$filter,$options); + + if (PEAR::isError($search)) { + common_log(LOG_WARNING, 'Error while getting DN for user: '.$search->getMessage()); + return false; + } + + if($search->count()==0){ + return false; + }else if($search->count()==1){ + $entry = $search->shiftEntry(); + return $entry->dn(); + }else{ + common_log(LOG_WARNING, 'Found ' . $search->count() . ' ldap user with the username: ' . $username); + return false; + } +} + From 9f15febf88769493aa834cab5b916cb46298842a Mon Sep 17 00:00:00 2001 From: Eric Helgeson Date: Thu, 5 Nov 2009 16:38:35 -0500 Subject: [PATCH 63/92] Re added NICKNAME_FMT constant to router.php. Usefull for non-OMB (behind the firewall) users to allow different nicknames. --- lib/router.php | 54 +++++++++++++++++++++++++------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/lib/router.php b/lib/router.php index eb931e5b07..db9fdb4704 100644 --- a/lib/router.php +++ b/lib/router.php @@ -122,7 +122,7 @@ class Router // exceptional $m->connect('main/remote', array('action' => 'remotesubscribe')); - $m->connect('main/remote?nickname=:nickname', array('action' => 'remotesubscribe'), array('nickname' => '[A-Za-z0-9_-]+')); + $m->connect('main/remote?nickname=:nickname', array('action' => 'remotesubscribe'), array('nickname' => '['.NICKNAME_FMT.']+')); foreach (Router::$bare as $action) { $m->connect('index.php?action=' . $action, array('action' => $action)); @@ -166,10 +166,10 @@ class Router $m->connect('notice/new', array('action' => 'newnotice')); $m->connect('notice/new?replyto=:replyto', array('action' => 'newnotice'), - array('replyto' => '[A-Za-z0-9_-]+')); + array('replyto' => '['.NICKNAME_FMT.']+')); $m->connect('notice/new?replyto=:replyto&inreplyto=:inreplyto', array('action' => 'newnotice'), - array('replyto' => '[A-Za-z0-9_-]+'), + array('replyto' => '['.NICKNAME_FMT.']+'), array('inreplyto' => '[0-9]+')); $m->connect('notice/:notice/file', @@ -193,7 +193,7 @@ class Router array('id' => '[0-9]+')); $m->connect('message/new', array('action' => 'newmessage')); - $m->connect('message/new?to=:to', array('action' => 'newmessage'), array('to' => '[A-Za-z0-9_-]+')); + $m->connect('message/new?to=:to', array('action' => 'newmessage'), array('to' => '['.NICKNAME_FMT.']+')); $m->connect('message/:message', array('action' => 'showmessage'), array('message' => '[0-9]+')); @@ -277,7 +277,7 @@ class Router $m->connect('api/statuses/friends_timeline/:id.:format', array('action' => 'ApiTimelineFriends', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json|rss|atom)')); $m->connect('api/statuses/home_timeline.:format', array('action' => 'ApiTimelineFriends', @@ -285,7 +285,7 @@ class Router $m->connect('api/statuses/home_timeline/:id.:format', array('action' => 'ApiTimelineFriends', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json|rss|atom)')); $m->connect('api/statuses/user_timeline.:format', @@ -294,7 +294,7 @@ class Router $m->connect('api/statuses/user_timeline/:id.:format', array('action' => 'ApiTimelineUser', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json|rss|atom)')); $m->connect('api/statuses/mentions.:format', @@ -303,7 +303,7 @@ class Router $m->connect('api/statuses/mentions/:id.:format', array('action' => 'ApiTimelineMentions', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json|rss|atom)')); $m->connect('api/statuses/replies.:format', @@ -312,7 +312,7 @@ class Router $m->connect('api/statuses/replies/:id.:format', array('action' => 'ApiTimelineMentions', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json|rss|atom)')); $m->connect('api/statuses/friends.:format', @@ -321,7 +321,7 @@ class Router $m->connect('api/statuses/friends/:id.:format', array('action' => 'ApiUserFriends', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json)')); $m->connect('api/statuses/followers.:format', @@ -330,7 +330,7 @@ class Router $m->connect('api/statuses/followers/:id.:format', array('action' => 'ApiUserFollowers', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json)')); $m->connect('api/statuses/show.:format', @@ -359,7 +359,7 @@ class Router $m->connect('api/users/show/:id.:format', array('action' => 'ApiUserShow', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json)')); // direct messages @@ -397,12 +397,12 @@ class Router $m->connect('api/friendships/create/:id.:format', array('action' => 'ApiFriendshipsCreate', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json)')); $m->connect('api/friendships/destroy/:id.:format', array('action' => 'ApiFriendshipsDestroy', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json)')); // Social graph @@ -447,28 +447,28 @@ class Router $m->connect('api/favorites/:id.:format', array('action' => 'ApiTimelineFavorites', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xmljson|rss|atom)')); $m->connect('api/favorites/create/:id.:format', array('action' => 'ApiFavoriteCreate', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json)')); $m->connect('api/favorites/destroy/:id.:format', array('action' => 'ApiFavoriteDestroy', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json)')); // blocks $m->connect('api/blocks/create/:id.:format', array('action' => 'ApiBlockCreate', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json)')); $m->connect('api/blocks/destroy/:id.:format', array('action' => 'ApiBlockDestroy', - 'id' => '[a-zA-Z0-9]+', + 'id' => '['.NICKNAME_FMT.']+', 'format' => '(xml|json)')); // help @@ -584,14 +584,14 @@ class Router 'replies', 'inbox', 'outbox', 'microsummary') as $a) { $m->connect(':nickname/'.$a, array('action' => $a), - array('nickname' => '[a-zA-Z0-9]{1,64}')); + array('nickname' => '['.NICKNAME_FMT.']{1,64}')); } foreach (array('subscriptions', 'subscribers') as $a) { $m->connect(':nickname/'.$a.'/:tag', array('action' => $a), array('tag' => '[a-zA-Z0-9]+', - 'nickname' => '[a-zA-Z0-9]{1,64}')); + 'nickname' => '['.NICKNAME_FMT.']{1,64}')); } foreach (array('rss', 'groups') as $a) { @@ -603,31 +603,31 @@ class Router foreach (array('all', 'replies', 'favorites') as $a) { $m->connect(':nickname/'.$a.'/rss', array('action' => $a.'rss'), - array('nickname' => '[a-zA-Z0-9]{1,64}')); + array('nickname' => '['.NICKNAME_FMT.']{1,64}')); } $m->connect(':nickname/favorites', array('action' => 'showfavorites'), - array('nickname' => '[a-zA-Z0-9]{1,64}')); + array('nickname' => '['.NICKNAME_FMT.']{1,64}')); $m->connect(':nickname/avatar/:size', array('action' => 'avatarbynickname'), array('size' => '(original|96|48|24)', - 'nickname' => '[a-zA-Z0-9]{1,64}')); + 'nickname' => '['.NICKNAME_FMT.']{1,64}')); $m->connect(':nickname/tag/:tag/rss', array('action' => 'userrss'), - array('nickname' => '[a-zA-Z0-9]{1,64}'), + array('nickname' => '['.NICKNAME_FMT.']{1,64}'), array('tag' => '[a-zA-Z0-9]+')); $m->connect(':nickname/tag/:tag', array('action' => 'showstream'), - array('nickname' => '[a-zA-Z0-9]{1,64}'), + array('nickname' => '['.NICKNAME_FMT.']{1,64}'), array('tag' => '[a-zA-Z0-9]+')); $m->connect(':nickname', array('action' => 'showstream'), - array('nickname' => '[a-zA-Z0-9]{1,64}')); + array('nickname' => '['.NICKNAME_FMT.']{1,64}')); Event::handle('RouterInitialized', array($m)); } From 1845c8c77305e6b3bb64e07aeda4614ccbd09cb2 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Thu, 5 Nov 2009 16:39:57 -0500 Subject: [PATCH 64/92] Added an AutoRegister event LDAP plugin can do autoregistration --- EVENTS.txt | 4 ++++ index.php | 1 + lib/util.php | 45 ++++++++++++++++++++++++++----------- plugins/Ldap/LdapPlugin.php | 37 ++++++++++++++++++++++++++++++ plugins/Ldap/README | 7 ++++++ plugins/Ldap/ldap.php | 34 +++++++++++++++------------- 6 files changed, 99 insertions(+), 29 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index 7be611c710..c52f0e3128 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -479,3 +479,7 @@ CheckPassword: Check a username/password - $nickname: The nickname to check - $password: The password to check - &$authenticated: set to true to indicate authentication succeeded. + +AutoRegister: Register a new user with the given nickname. Should insert a new User and Profile into the database. +- $nickname: The nickname to register + diff --git a/index.php b/index.php index 577b491ed0..b1e4f651e4 100644 --- a/index.php +++ b/index.php @@ -68,6 +68,7 @@ function getPath($req) */ function handleError($error) { +//error_log(print_r($error,1)); if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) { return; } diff --git a/lib/util.php b/lib/util.php index 46aa7f9012..a4865c46c1 100644 --- a/lib/util.php +++ b/lib/util.php @@ -119,22 +119,41 @@ function common_munge_password($password, $id) // check if a username exists and has matching password function common_check_user($nickname, $password) { - // NEVER allow blank passwords, even if they match the DB - if (mb_strlen($password) == 0) { - return false; - } + $authenticated = false; + $eventResult = Event::handle('CheckPassword', array($nickname, $password, &$authenticated)); $user = User::staticGet('nickname', $nickname); if (is_null($user) || $user === false) { - return false; + //user does not exist + if($authenticated){ + //a handler said these are valid credentials, so see if a plugin wants to auto register the user + if(Event::handle('AutoRegister', array($nickname))){ + //no handler registered the user + return false; + }else{ + $user = User::staticGet('nickname', $nickname); + if (is_null($user) || $user === false) { + common_log(LOG_WARNING, "A plugin handled the AutoRegister event, but did not actually register the user, nickname: $nickname"); + return false; + }else{ + return $user; + } + } + }else{ + //no handler indicated the credentials were valid, and we know their not valid because the user isn't in the database + return false; + } } else { - $authenticated = false; - Event::handle('CheckPassword', array($nickname, $password, &$authenticated)); - if(! $authenticated){ - //no handler asserted the user, so check ourselves - if (0 == strcmp(common_munge_password($password, $user->id), - $user->password)) { - //internal checking passed - $authenticated = true; + if($eventResult && ! $authenticated){ + //no handler was authoritative + if (mb_strlen($password) == 0) { + // NEVER allow blank passwords, even if they match the DB + return false; + }else{ + if (0 == strcmp(common_munge_password($password, $user->id), + $user->password)) { + //internal checking passed + $authenticated = true; + } } } if($authenticated){ diff --git a/plugins/Ldap/LdapPlugin.php b/plugins/Ldap/LdapPlugin.php index ec2b7977da..8c2d45b859 100644 --- a/plugins/Ldap/LdapPlugin.php +++ b/plugins/Ldap/LdapPlugin.php @@ -46,6 +46,43 @@ class LdapPlugin extends Plugin { if(ldap_check_password($nickname, $password)){ $authenticated = true; + //stop handling of other events, because we have an answer + return false; + } + if(common_config('ldap','authoritative')){ + //a false return stops handler processing + return false; + } + } + + function onAutoRegister($nickname) + { + $user = User::staticGet('nickname', $nickname); + if (! is_null($user) && $user !== false) { + common_log(LOG_WARNING, "An attempt was made to autoregister an existing user with nickname: $nickname"); + return; + } + + $attributes=array(); + $config_attributes = array('nickname','email','fullname','homepage','location'); + foreach($config_attributes as $config_attribute){ + $value = common_config('ldap', $config_attribute.'_attribute'); + if($value!==false){ + array_push($attributes,$value); + } + } + $entry = ldap_get_user($nickname,$attributes); + if($entry){ + $registration_data = array(); + foreach($config_attributes as $config_attribute){ + $value = common_config('ldap', $config_attribute.'_attribute'); + if($value!==false){ + $registration_data[$config_attribute]=$entry->getValue($value,'single'); + } + } + //error_log(print_r($registration_data,1)); + $user = User::register($registration_data); + //prevent other handlers from running, as we have registered the user return false; } } diff --git a/plugins/Ldap/README b/plugins/Ldap/README index 8a5095a5df..617738e0ba 100644 --- a/plugins/Ldap/README +++ b/plugins/Ldap/README @@ -11,6 +11,13 @@ $config['ldap']['basedn'] $config['ldap']['host'] $config['ldap']['nickname_attribute'] Set this to the name of the ldap attribute that holds the username. For example, on Microsoft's Active Directory, this should be set to 'sAMAccountName' +$config['ldap']['nickname_email'] Set this to the name of the ldap attribute that holds the user's email address. For example, on Microsoft's Active Directory, this should be set to 'mail' +$config['ldap']['nickname_fullname'] Set this to the name of the ldap attribute that holds the user's full name. For example, on Microsoft's Active Directory, this should be set to 'displayName' +$config['ldap']['nickname_homepage'] Set this to the name of the ldap attribute that holds the the url of the user's home page. +$config['ldap']['nickname_location'] Set this to the name of the ldap attribute that holds the user's location. + +$config['ldap']['authoritative'] Set to true if LDAP's responses are authoritative (meaning if LDAP fails, do check the any other plugins or the internal password database) +$config['ldap']['autoregister'] Set to true if users should be automatically created when they attempt to login Finally, add "addPlugin('ldap');" to the bottom of your config.php diff --git a/plugins/Ldap/ldap.php b/plugins/Ldap/ldap.php index fcb84610a6..d92a058fb9 100644 --- a/plugins/Ldap/ldap.php +++ b/plugins/Ldap/ldap.php @@ -38,19 +38,20 @@ function ldap_get_config(){ function ldap_get_connection($config = null){ if($config == null){ - static $ldap = null; - if($ldap!=null){ - return $ldap; - } $config = ldap_get_config(); } - $ldap = Net_LDAP2::connect($config); - if (PEAR::isError($ldap)) { - common_log(LOG_WARNING, 'Could not connect to LDAP server: '.$ldap->getMessage()); + + //cannot use Net_LDAP2::connect() as StatusNet uses + //PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'handleError'); + //PEAR handling can be overridden on instance objects, so we do that. + $ldap = new Net_LDAP2($config); + $ldap->setErrorHandling(PEAR_ERROR_RETURN); + $err=$ldap->bind(); + if (Net_LDAP2::isError($err)) { + common_log(LOG_WARNING, 'Could not connect to LDAP server: '.$err->getMessage()); return false; - }else{ - return $ldap; } + return $ldap; } function ldap_check_password($username, $password){ @@ -58,12 +59,12 @@ function ldap_check_password($username, $password){ if(!$ldap){ return false; } - $dn = ldap_get_user_dn($username); - if(!$dn){ + $entry = ldap_get_user($username); + if(!$entry){ return false; }else{ $config = ldap_get_config(); - $config['binddn']=$dn; + $config['binddn']=$entry->dn(); $config['bindpw']=$password; if(ldap_get_connection($config)){ return true; @@ -74,17 +75,18 @@ function ldap_check_password($username, $password){ } /** - * get an LDAP user's DN given the user's username + * get an LDAP entry for a user with a given username * * @param string $username + * $param array $attributes LDAP attributes to retrieve * @return string DN */ -function ldap_get_user_dn($username){ +function ldap_get_user($username,$attributes=array()){ $ldap = ldap_get_connection(); $filter = Net_LDAP2_Filter::create(common_config('ldap','nickname_attribute'), 'equals', $username); $options = array( 'scope' => 'sub', - 'attributes' => array() + 'attributes' => $attributes ); $search = $ldap->search(null,$filter,$options); @@ -97,7 +99,7 @@ function ldap_get_user_dn($username){ return false; }else if($search->count()==1){ $entry = $search->shiftEntry(); - return $entry->dn(); + return $entry; }else{ common_log(LOG_WARNING, 'Found ' . $search->count() . ' ldap user with the username: ' . $username); return false; From 1bace8547b0fa3db316ad79e4948869a654b7140 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Thu, 5 Nov 2009 16:53:43 -0500 Subject: [PATCH 65/92] Store the canonical forms of the email address and nickname --- plugins/Ldap/LdapPlugin.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/plugins/Ldap/LdapPlugin.php b/plugins/Ldap/LdapPlugin.php index 8c2d45b859..cabd3c8282 100644 --- a/plugins/Ldap/LdapPlugin.php +++ b/plugins/Ldap/LdapPlugin.php @@ -77,7 +77,13 @@ class LdapPlugin extends Plugin foreach($config_attributes as $config_attribute){ $value = common_config('ldap', $config_attribute.'_attribute'); if($value!==false){ - $registration_data[$config_attribute]=$entry->getValue($value,'single'); + if($config_attribute=='email'){ + $registration_data[$config_attribute]=common_canonical_email($entry->getValue($value,'single')); + }else if($config_attribute=='nickname'){ + $registration_data[$config_attribute]=common_canonical_nickname($entry->getValue($value,'single')); + }else{ + $registration_data[$config_attribute]=$entry->getValue($value,'single'); + } } } //error_log(print_r($registration_data,1)); From 4a8189ac7d37698e23101a1472d76336665b67b3 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 5 Nov 2009 17:18:16 -0500 Subject: [PATCH 66/92] update version number --- lib/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common.php b/lib/common.php index 016b04481d..7af376d1b4 100644 --- a/lib/common.php +++ b/lib/common.php @@ -19,7 +19,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -define('STATUSNET_VERSION', '0.8.2rc2'); +define('STATUSNET_VERSION', '0.8.2'); define('LACONICA_VERSION', STATUSNET_VERSION); // compatibility define('STATUSNET_CODENAME', 'Life and How to Live It'); From d6ddb84132d7b9510ba82064c67f2a39822dab49 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Thu, 5 Nov 2009 23:27:18 -0500 Subject: [PATCH 67/92] Add ChangePassword event --- EVENTS.txt | 6 ++++++ actions/passwordsettings.php | 33 +++++++++++++++++++++------------ plugins/Ldap/LdapPlugin.php | 12 +++++++++++- 3 files changed, 38 insertions(+), 13 deletions(-) diff --git a/EVENTS.txt b/EVENTS.txt index c52f0e3128..201ce7dfe5 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -483,3 +483,9 @@ CheckPassword: Check a username/password AutoRegister: Register a new user with the given nickname. Should insert a new User and Profile into the database. - $nickname: The nickname to register +ChangePassword: Handle a password change request +- $nickname: user's nickname +- $oldpassword: the user's old password +- $newpassword: the desired new password +- &$errormsg: set this to an error message if the password could not be changed. If the password was changed, leave this as false + diff --git a/actions/passwordsettings.php b/actions/passwordsettings.php index cd4beac3f2..87eb45a7d0 100644 --- a/actions/passwordsettings.php +++ b/actions/passwordsettings.php @@ -164,23 +164,32 @@ class PasswordsettingsAction extends AccountSettingsAction $this->showForm(_('Incorrect old password')); return; } + }else{ + $oldpassword = null; } - $original = clone($user); + $errormsg = false; + if(! Event::handle('ChangePassword', array($user->nickname, $oldpassword, $newpassword, &$errormsg))){ + //no handler changed the password, so change the password internally + $original = clone($user); - $user->password = common_munge_password($newpassword, $user->id); + $user->password = common_munge_password($newpassword, $user->id); - $val = $user->validate(); - if ($val !== true) { - $this->showForm(_('Error saving user; invalid.')); - return; + $val = $user->validate(); + if ($val !== true) { + $this->showForm(_('Error saving user; invalid.')); + return; + } + + if (!$user->update($original)) { + $this->serverError(_('Can\'t save new password.')); + return; + } } - if (!$user->update($original)) { - $this->serverError(_('Can\'t save new password.')); - return; - } - - $this->showForm(_('Password saved.'), true); + if($errormsg === false) + $this->showForm(_('Password saved.'), true); + else + $this->showForm($errormsg); } } diff --git a/plugins/Ldap/LdapPlugin.php b/plugins/Ldap/LdapPlugin.php index cabd3c8282..755562f54b 100644 --- a/plugins/Ldap/LdapPlugin.php +++ b/plugins/Ldap/LdapPlugin.php @@ -86,10 +86,20 @@ class LdapPlugin extends Plugin } } } - //error_log(print_r($registration_data,1)); + //set the database saved password to a random string. + $registration_data['password']=common_good_rand(16); $user = User::register($registration_data); //prevent other handlers from running, as we have registered the user return false; } } + + function onChangePassword($nickname,$oldpassword,$newpassword,&$errormsg) + { + //TODO implement this + $errormsg = _('Sorry, changing LDAP passwords is not supported at this time'); + + //return false, indicating that the event has been handled + return false; + } } From 9c80f141e22094da9949b206f2607265b3f7e9ac Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Thu, 5 Nov 2009 23:51:30 -0500 Subject: [PATCH 68/92] Fixed autocomplete returning bogus results --- plugins/Autocomplete/autocomplete.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/plugins/Autocomplete/autocomplete.php b/plugins/Autocomplete/autocomplete.php index aa57b3915f..379390ffdf 100644 --- a/plugins/Autocomplete/autocomplete.php +++ b/plugins/Autocomplete/autocomplete.php @@ -98,11 +98,10 @@ class AutocompleteAction extends Action $user = new User(); $user->limit($limit); $user->whereAdd('nickname like \'' . trim($user->escape($q), '\'') . '%\''); - $user->find(); - while($user->fetch()) { - $profile = Profile::staticGet($user->id); - $user->profile=$profile; - $this->users[]=$user; + if($user->find()){ + while($user->fetch()) { + $this->users[]=clone($user); + } } } if(substr($q,0,1)=='!'){ @@ -111,9 +110,10 @@ class AutocompleteAction extends Action $group = new User_group(); $group->limit($limit); $group->whereAdd('nickname like \'' . trim($group->escape($q), '\'') . '%\''); - $group->find(); - while($group->fetch()) { - $this->groups[]=$group; + if($group->find()){ + while($group->fetch()) { + $this->groups[]=clone($group); + } } } return true; @@ -124,7 +124,8 @@ class AutocompleteAction extends Action parent::handle($args); $results = array(); foreach($this->users as $user){ - $results[]=array('nickname' => $user->nickname, 'fullname'=> $user->profile->fullname, 'type'=>'user'); + $profile = $user->getProfile(); + $results[]=array('nickname' => $user->nickname, 'fullname'=> $profile->fullname, 'type'=>'user'); } foreach($this->groups as $group){ $results[]=array('nickname' => $group->nickname, 'fullname'=> $group->fullname, 'type'=>'group'); From ea18b235de4f967a53d86f796696c9e1ca29c40b Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Fri, 6 Nov 2009 10:47:21 +0100 Subject: [PATCH 69/92] Using proper characters for quotes for bookmarklet --- doc-src/bookmarklet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc-src/bookmarklet b/doc-src/bookmarklet index 6ce23bd0b6..bab0ad445f 100644 --- a/doc-src/bookmarklet +++ b/doc-src/bookmarklet @@ -2,4 +2,4 @@ A bookmarklet is a small piece of javascript code used as a bookmark. This one w Drag-and-drop the following link to your bookmarks bar or right-click it and add it to your browser favorites to keep it handy. -Post to %%site.name%% +Post to %%site.name%% From 7ce49e4bcfd76ce7620d376b6e2f93ef2c122ee1 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Fri, 6 Nov 2009 11:30:41 +0100 Subject: [PATCH 70/92] Removed .uid from group profiles in a list --- lib/grouplist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/grouplist.php b/lib/grouplist.php index b41c5b5f84..47aabddcd6 100644 --- a/lib/grouplist.php +++ b/lib/grouplist.php @@ -105,7 +105,7 @@ class GroupList extends Widget 'alt' => ($this->group->fullname) ? $this->group->fullname : $this->group->nickname)); - $hasFN = ($this->group->fullname) ? 'nickname url uid' : 'fn org nickname url uid'; + $hasFN = ($this->group->fullname) ? 'nickname url' : 'fn org nickname url'; $this->out->elementStart('span', $hasFN); $this->out->raw($this->highlight($this->group->nickname)); $this->out->elementEnd('span'); From e909d0a63928dc48e0574347077fd966a0286b93 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 6 Nov 2009 11:51:28 +0100 Subject: [PATCH 71/92] Add Icelandic to the language support list so the localization can actually be used :) --- lib/language.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/language.php b/lib/language.php index 7dcb808c96..ea2a00c8a9 100644 --- a/lib/language.php +++ b/lib/language.php @@ -114,6 +114,7 @@ function get_all_languages() { 'fr-fr' => array('q' => 1, 'lang' => 'fr', 'name' => 'French', 'direction' => 'ltr'), 'ga' => array('q' => 0.5, 'lang' => 'ga', 'name' => 'Galician', 'direction' => 'ltr'), 'he' => array('q' => 0.5, 'lang' => 'he', 'name' => 'Hebrew', 'direction' => 'rtl'), + 'is' => array('q' => 0.1, 'lang' => 'is', 'name' => 'Icelandic', 'direction' => 'ltr'), 'it' => array('q' => 1, 'lang' => 'it', 'name' => 'Italian', 'direction' => 'ltr'), 'jp' => array('q' => 0.5, 'lang' => 'ja', 'name' => 'Japanese', 'direction' => 'ltr'), 'ko' => array('q' => 0.9, 'lang' => 'ko', 'name' => 'Korean', 'direction' => 'ltr'), From 793a4ef4d56b5299a41aa1870d26d8c11cf78271 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 6 Nov 2009 12:15:08 +0100 Subject: [PATCH 72/92] kill tabs --- lib/language.php | 70 ++++++++++++++++++++++++------------------------ 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/lib/language.php b/lib/language.php index ea2a00c8a9..bec5620fd1 100644 --- a/lib/language.php +++ b/lib/language.php @@ -100,39 +100,39 @@ function get_nice_language_list() * @return array mapping of language codes to language info */ function get_all_languages() { - return array( - 'bg' => array('q' => 0.8, 'lang' => 'bg', 'name' => 'Bulgarian', 'direction' => 'ltr'), - 'ca' => array('q' => 0.5, 'lang' => 'ca', 'name' => 'Catalan', 'direction' => 'ltr'), - 'cs' => array('q' => 0.5, 'lang' => 'cs', 'name' => 'Czech', 'direction' => 'ltr'), - 'de' => array('q' => 0.8, 'lang' => 'de', 'name' => 'German', 'direction' => 'ltr'), - 'el' => array('q' => 0.1, 'lang' => 'el', 'name' => 'Greek', 'direction' => 'ltr'), - 'en-us' => array('q' => 1, 'lang' => 'en', 'name' => 'English (US)', 'direction' => 'ltr'), - 'en-gb' => array('q' => 1, 'lang' => 'en_GB', 'name' => 'English (British)', 'direction' => 'ltr'), - 'en' => array('q' => 1, 'lang' => 'en', 'name' => 'English (US)', 'direction' => 'ltr'), - 'es' => array('q' => 1, 'lang' => 'es', 'name' => 'Spanish', 'direction' => 'ltr'), - 'fi' => array('q' => 1, 'lang' => 'fi', 'name' => 'Finnish', 'direction' => 'ltr'), - 'fr-fr' => array('q' => 1, 'lang' => 'fr', 'name' => 'French', 'direction' => 'ltr'), - 'ga' => array('q' => 0.5, 'lang' => 'ga', 'name' => 'Galician', 'direction' => 'ltr'), - 'he' => array('q' => 0.5, 'lang' => 'he', 'name' => 'Hebrew', 'direction' => 'rtl'), - 'is' => array('q' => 0.1, 'lang' => 'is', 'name' => 'Icelandic', 'direction' => 'ltr'), - 'it' => array('q' => 1, 'lang' => 'it', 'name' => 'Italian', 'direction' => 'ltr'), - 'jp' => array('q' => 0.5, 'lang' => 'ja', 'name' => 'Japanese', 'direction' => 'ltr'), - 'ko' => array('q' => 0.9, 'lang' => 'ko', 'name' => 'Korean', 'direction' => 'ltr'), - 'mk' => array('q' => 0.5, 'lang' => 'mk', 'name' => 'Macedonian', 'direction' => 'ltr'), - 'nb' => array('q' => 0.1, 'lang' => 'nb', 'name' => 'Norwegian (Bokmål)', 'direction' => 'ltr'), - 'no' => array('q' => 0.1, 'lang' => 'nb', 'name' => 'Norwegian (Bokmål)', 'direction' => 'ltr'), - 'nn' => array('q' => 1, 'lang' => 'nn', 'name' => 'Norwegian (Nynorsk)', 'direction' => 'ltr'), - 'nl' => array('q' => 0.5, 'lang' => 'nl', 'name' => 'Dutch', 'direction' => 'ltr'), - 'pl' => array('q' => 0.5, 'lang' => 'pl', 'name' => 'Polish', 'direction' => 'ltr'), - 'pt' => array('q' => 0.1, 'lang' => 'pt', 'name' => 'Portuguese', 'direction' => 'ltr'), - 'pt-br' => array('q' => 0.9, 'lang' => 'pt_BR', 'name' => 'Portuguese Brazil', 'direction' => 'ltr'), - 'ru' => array('q' => 0.9, 'lang' => 'ru', 'name' => 'Russian', 'direction' => 'ltr'), - 'sv' => array('q' => 0.8, 'lang' => 'sv', 'name' => 'Swedish', 'direction' => 'ltr'), - 'te' => array('q' => 0.3, 'lang' => 'te', 'name' => 'Telugu', 'direction' => 'ltr'), - 'tr' => array('q' => 0.5, 'lang' => 'tr', 'name' => 'Turkish', 'direction' => 'ltr'), - 'uk' => array('q' => 1, 'lang' => 'uk', 'name' => 'Ukrainian', 'direction' => 'ltr'), - 'vi' => array('q' => 0.8, 'lang' => 'vi', 'name' => 'Vietnamese', 'direction' => 'ltr'), - 'zh-cn' => array('q' => 0.9, 'lang' => 'zh_CN', 'name' => 'Chinese (Simplified)', 'direction' => 'ltr'), - 'zh-hant' => array('q' => 0.2, 'lang' => 'zh_TW', 'name' => 'Chinese (Taiwanese)', 'direction' => 'ltr'), - ); + return array( + 'bg' => array('q' => 0.8, 'lang' => 'bg', 'name' => 'Bulgarian', 'direction' => 'ltr'), + 'ca' => array('q' => 0.5, 'lang' => 'ca', 'name' => 'Catalan', 'direction' => 'ltr'), + 'cs' => array('q' => 0.5, 'lang' => 'cs', 'name' => 'Czech', 'direction' => 'ltr'), + 'de' => array('q' => 0.8, 'lang' => 'de', 'name' => 'German', 'direction' => 'ltr'), + 'el' => array('q' => 0.1, 'lang' => 'el', 'name' => 'Greek', 'direction' => 'ltr'), + 'en-us' => array('q' => 1, 'lang' => 'en', 'name' => 'English (US)', 'direction' => 'ltr'), + 'en-gb' => array('q' => 1, 'lang' => 'en_GB', 'name' => 'English (British)', 'direction' => 'ltr'), + 'en' => array('q' => 1, 'lang' => 'en', 'name' => 'English (US)', 'direction' => 'ltr'), + 'es' => array('q' => 1, 'lang' => 'es', 'name' => 'Spanish', 'direction' => 'ltr'), + 'fi' => array('q' => 1, 'lang' => 'fi', 'name' => 'Finnish', 'direction' => 'ltr'), + 'fr-fr' => array('q' => 1, 'lang' => 'fr', 'name' => 'French', 'direction' => 'ltr'), + 'ga' => array('q' => 0.5, 'lang' => 'ga', 'name' => 'Galician', 'direction' => 'ltr'), + 'he' => array('q' => 0.5, 'lang' => 'he', 'name' => 'Hebrew', 'direction' => 'rtl'), + 'is' => array('q' => 0.1, 'lang' => 'is', 'name' => 'Icelandic', 'direction' => 'ltr'), + 'it' => array('q' => 1, 'lang' => 'it', 'name' => 'Italian', 'direction' => 'ltr'), + 'jp' => array('q' => 0.5, 'lang' => 'ja', 'name' => 'Japanese', 'direction' => 'ltr'), + 'ko' => array('q' => 0.9, 'lang' => 'ko', 'name' => 'Korean', 'direction' => 'ltr'), + 'mk' => array('q' => 0.5, 'lang' => 'mk', 'name' => 'Macedonian', 'direction' => 'ltr'), + 'nb' => array('q' => 0.1, 'lang' => 'nb', 'name' => 'Norwegian (Bokmål)', 'direction' => 'ltr'), + 'no' => array('q' => 0.1, 'lang' => 'nb', 'name' => 'Norwegian (Bokmål)', 'direction' => 'ltr'), + 'nn' => array('q' => 1, 'lang' => 'nn', 'name' => 'Norwegian (Nynorsk)', 'direction' => 'ltr'), + 'nl' => array('q' => 0.5, 'lang' => 'nl', 'name' => 'Dutch', 'direction' => 'ltr'), + 'pl' => array('q' => 0.5, 'lang' => 'pl', 'name' => 'Polish', 'direction' => 'ltr'), + 'pt' => array('q' => 0.1, 'lang' => 'pt', 'name' => 'Portuguese', 'direction' => 'ltr'), + 'pt-br' => array('q' => 0.9, 'lang' => 'pt_BR', 'name' => 'Portuguese Brazil', 'direction' => 'ltr'), + 'ru' => array('q' => 0.9, 'lang' => 'ru', 'name' => 'Russian', 'direction' => 'ltr'), + 'sv' => array('q' => 0.8, 'lang' => 'sv', 'name' => 'Swedish', 'direction' => 'ltr'), + 'te' => array('q' => 0.3, 'lang' => 'te', 'name' => 'Telugu', 'direction' => 'ltr'), + 'tr' => array('q' => 0.5, 'lang' => 'tr', 'name' => 'Turkish', 'direction' => 'ltr'), + 'uk' => array('q' => 1, 'lang' => 'uk', 'name' => 'Ukrainian', 'direction' => 'ltr'), + 'vi' => array('q' => 0.8, 'lang' => 'vi', 'name' => 'Vietnamese', 'direction' => 'ltr'), + 'zh-cn' => array('q' => 0.9, 'lang' => 'zh_CN', 'name' => 'Chinese (Simplified)', 'direction' => 'ltr'), + 'zh-hant' => array('q' => 0.2, 'lang' => 'zh_TW', 'name' => 'Chinese (Taiwanese)', 'direction' => 'ltr'), + ); } From 85647719a3ed78a9b2c88e1c33f2f3bd995df03e Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Fri, 6 Nov 2009 12:51:28 +0100 Subject: [PATCH 73/92] Updated styles for profile list re: commit 3c4ac05cde5a97594d3b0fa7e3f5dbbaf45e4c64 --- lib/profilelist.php | 3 ++- theme/base/css/display.css | 25 ++++++++++++++----------- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/lib/profilelist.php b/lib/profilelist.php index 5f536e0f4d..697713f8fd 100644 --- a/lib/profilelist.php +++ b/lib/profilelist.php @@ -182,7 +182,8 @@ class ProfileListItem extends Widget { $avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE); $this->out->elementStart('a', array('href' => $this->profile->profileurl, - 'class' => 'url')); + 'class' => 'url', + 'rel' => 'contact')); $this->out->element('img', array('src' => ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_STREAM_SIZE), 'class' => 'photo avatar', 'width' => AVATAR_STREAM_SIZE, diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 878662c562..09d92be7b5 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -592,11 +592,11 @@ margin-left:0; font-size:1.1em; font-weight:bold; } -.entity_profile .entity_fn dd:before { +.entity_profile .fn:before { content: "("; font-weight:normal; } -.entity_profile .entity_fn dd:after { +.entity_profile .fn:after { content: ")"; font-weight:normal; } @@ -782,18 +782,21 @@ display:none; .profiles { list-style-type:none; } -.profile .entity_profile .entity_location { +.profile .entity_profile .url[rel=contact] { +margin-left:0; +display:inline; +} + +.profile .entity_profile .fn, +.profile .entity_profile .location { +margin-left:11px; +margin-bottom:4px; width:auto; clear:none; -margin-left:11px; } -.profile .entity_profile dl, -.profile .entity_profile dd { -display:inline; -float:none; -} -.profile .entity_profile .entity_note, -.profile .entity_profile .entity_url, + +.profile .entity_profile .note, +.profile .entity_profile .url, .profile .entity_profile .entity_tags, .profile .entity_profile .form_subscription_edit { margin-left:59px; From 4eea7f55ef9cfb856516f1667b88abfce277878b Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Fri, 6 Nov 2009 13:32:04 +0100 Subject: [PATCH 74/92] Check if it is empty instead of '' --- lib/profilelist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/profilelist.php b/lib/profilelist.php index 697713f8fd..bbb722701b 100644 --- a/lib/profilelist.php +++ b/lib/profilelist.php @@ -191,7 +191,7 @@ class ProfileListItem extends Widget 'alt' => ($this->profile->fullname) ? $this->profile->fullname : $this->profile->nickname)); - $hasFN = ($this->profile->fullname !== '') ? 'nickname' : 'fn nickname'; + $hasFN = (!empty($this->profile->fullname)) ? 'nickname' : 'fn nickname'; $this->out->elementStart('span', $hasFN); $this->out->raw($this->highlight($this->profile->nickname)); $this->out->elementEnd('span'); From febcdcb6a09afac4e82218d6971378d5302cd0b6 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Fri, 6 Nov 2009 13:35:21 +0100 Subject: [PATCH 75/92] Updated styles for profile list fn and nickname --- theme/base/css/display.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 09d92be7b5..f9ed80aa9a 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -600,6 +600,10 @@ font-weight:normal; content: ")"; font-weight:normal; } +.entity_profile .nickname:after, +.entity_profile .nickname:before { +content:""; +} .entity_profile dt, .entity_profile h2 { display:none; @@ -782,6 +786,7 @@ display:none; .profiles { list-style-type:none; } +.profile .entity_profile .fn.nickname, .profile .entity_profile .url[rel=contact] { margin-left:0; display:inline; From b932bd6addcf00bec1d9f6a37f3f222a90a726be Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 6 Nov 2009 14:31:39 +0100 Subject: [PATCH 76/92] console.php terminal script provides interactive PHP console in StatusNet environment, handy for testing! Uses readline for line input editing if available; falls back to bash+readline if not native, and takes fgets() in worst case. Currently a bit awkward in that each input line is parsed separately, so loops and function defs have to be squished to one line. --- scripts/console.php | 153 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100755 scripts/console.php diff --git a/scripts/console.php b/scripts/console.php new file mode 100755 index 0000000000..e65529a8d2 --- /dev/null +++ b/scripts/console.php @@ -0,0 +1,153 @@ +#!/usr/bin/env php +. + */ + +# Abort if called from a web server + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$helptext = << + * + * @param string $prompt + * @return mixed string on success, false on fail or EOF + */ +function readline_emulation($prompt) +{ + if(file_exists(trim(shell_exec('which bash')))) { + $encPrompt = escapeshellarg($prompt); + $command = "read -er -p $encPrompt && echo \"\$REPLY\""; + $encCommand = escapeshellarg($command); + $metaCommand = "bash -c $encCommand"; + + // passthru passes our STDIN and TTY to the child... + // We can pull the returned string via output buffering. + ob_start(); + $retval = false; + passthru($metaCommand, $retval); + $line = ob_get_contents(); + ob_end_clean(); + + if ($retval == 0) { + return $line; + } elseif ($retval == 127) { + // Couldn't execute bash even though we thought we saw it. + // Shell probably spit out an error message, sorry :( + // Fall through to fgets()... + } else { + // EOF/ctrl+D + return false; + } + } + + // Fallback... we'll have no editing controls, EWWW + if (feof(STDIN)) { + return false; + } + print $prompt; + return fgets(STDIN); +} + +function console_help() +{ + print "Welcome to StatusNet's interactive PHP console!\n"; + print "Type some PHP code and it'll run!\n"; + print "\n"; + print "Note that PHP is cranky and you can easily kill your session.\n"; +} + + +$prompt = common_config('site', 'name') . '> '; +while (!feof(STDIN)) { + $line = read_input_line($prompt); + if ($line === false) { + print "\n"; + break; + } elseif ($line !== '') { + try { + if ($line == 'exit') { + break; + } elseif ($line == 'help') { + console_help(); + continue; + } + + // Let's do this + $result = eval($line); + if ($result === false) { + // parse error + } elseif ($result === null) { + // no return + } else { + // return value from eval'd code + var_export($result); + } + } catch(Exception $e) { + print get_class($e) . ": " . $e->getMessage() . "\n"; + } + } + print "\n"; +} + +if (CONSOLE_READLINE && CONSOLE_INTERACTIVE) { + @readline_write_history(CONSOLE_HISTORY); +} From 00ec0293522f4c00b3ef169aaf8c3da2055cab6e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 6 Nov 2009 15:03:03 +0100 Subject: [PATCH 77/92] console.php: fix up the help and include a handy cut-n-paste'able example --- scripts/console.php | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/scripts/console.php b/scripts/console.php index e65529a8d2..f1b089a7cd 100755 --- a/scripts/console.php +++ b/scripts/console.php @@ -110,12 +110,21 @@ function readline_emulation($prompt) function console_help() { print "Welcome to StatusNet's interactive PHP console!\n"; - print "Type some PHP code and it'll run!\n"; + print "Type some PHP code and it'll execute...\n"; print "\n"; - print "Note that PHP is cranky and you can easily kill your session.\n"; + print "Hint: return a value of any time to output it via var_export():\n"; + print " \$profile = new Profile();\n"; + print " \$profile->find();\n"; + print " \$profile->fetch();\n"; + print " return \$profile;\n"; + print "\n"; + print "Note that PHP is cranky and you can easily kill your session by mistyping.\n"; + print "\n"; + print "Type ctrl+D or enter 'exit' to exit.\n"; } +print "StatusNet interactive PHP console... type ctrl+D or enter 'exit' to exit.\n"; $prompt = common_config('site', 'name') . '> '; while (!feof(STDIN)) { $line = read_input_line($prompt); @@ -124,14 +133,14 @@ while (!feof(STDIN)) { break; } elseif ($line !== '') { try { - if ($line == 'exit') { + if (trim($line) == 'exit') { break; - } elseif ($line == 'help') { + } elseif (trim($line) == 'help') { console_help(); continue; } - // Let's do this + // Let's do this! $result = eval($line); if ($result === false) { // parse error From 1c724613946d0cc5521b89507aa78dd3e69d5f52 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Fri, 6 Nov 2009 15:03:35 +0100 Subject: [PATCH 78/92] Removed dl "stuff" --- lib/grouplist.php | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/lib/grouplist.php b/lib/grouplist.php index 47aabddcd6..39a9b2d948 100644 --- a/lib/grouplist.php +++ b/lib/grouplist.php @@ -97,7 +97,7 @@ class GroupList extends Widget $this->out->elementStart('a', array('href' => $this->group->homeUrl(), 'class' => 'url', - 'rel' => 'group')); + 'rel' => 'contact group')); $this->out->element('img', array('src' => $logo, 'class' => 'photo avatar', 'width' => AVATAR_STREAM_SIZE, @@ -112,41 +112,24 @@ class GroupList extends Widget $this->out->elementEnd('a'); if ($this->group->fullname) { - $this->out->elementStart('dl', 'entity_fn'); - $this->out->element('dt', null, 'Full name'); - $this->out->elementStart('dd'); $this->out->elementStart('span', 'fn org'); $this->out->raw($this->highlight($this->group->fullname)); $this->out->elementEnd('span'); - $this->out->elementEnd('dd'); - $this->out->elementEnd('dl'); } if ($this->group->location) { - $this->out->elementStart('dl', 'entity_location'); - $this->out->element('dt', null, _('Location')); - $this->out->elementStart('dd', 'label'); + $this->out->elementStart('span', 'label'); $this->out->raw($this->highlight($this->group->location)); - $this->out->elementEnd('dd'); - $this->out->elementEnd('dl'); } if ($this->group->homepage) { - $this->out->elementStart('dl', 'entity_url'); - $this->out->element('dt', null, _('URL')); - $this->out->elementStart('dd'); $this->out->elementStart('a', array('href' => $this->group->homepage, 'class' => 'url')); $this->out->raw($this->highlight($this->group->homepage)); $this->out->elementEnd('a'); - $this->out->elementEnd('dd'); - $this->out->elementEnd('dl'); } if ($this->group->description) { - $this->out->elementStart('dl', 'entity_note'); - $this->out->element('dt', null, _('Note')); - $this->out->elementStart('dd', 'note'); + $this->out->elementStart('p', 'note'); $this->out->raw($this->highlight($this->group->description)); - $this->out->elementEnd('dd'); - $this->out->elementEnd('dl'); + $this->out->elementEnd('p'); } # If we're on a list with an owner (subscriptions or subscribers)... From 920edc625853aea9cba48dac69b697338ecafb7b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 6 Nov 2009 15:04:23 +0100 Subject: [PATCH 79/92] typo :P --- scripts/console.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/console.php b/scripts/console.php index f1b089a7cd..41dd43f281 100755 --- a/scripts/console.php +++ b/scripts/console.php @@ -112,7 +112,7 @@ function console_help() print "Welcome to StatusNet's interactive PHP console!\n"; print "Type some PHP code and it'll execute...\n"; print "\n"; - print "Hint: return a value of any time to output it via var_export():\n"; + print "Hint: return a value of any type to output it via var_export():\n"; print " \$profile = new Profile();\n"; print " \$profile->find();\n"; print " \$profile->fetch();\n"; From 972dc020f4690161f8be2599399e73a040ebebb6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 6 Nov 2009 15:21:01 +0100 Subject: [PATCH 80/92] Localisation updates from translatewiki.net (2009-11-06) --- locale/bg/LC_MESSAGES/statusnet.po | 2229 +-------- locale/ca/LC_MESSAGES/statusnet.po | 2034 ++------ locale/cs/LC_MESSAGES/statusnet.po | 4371 +---------------- locale/de/LC_MESSAGES/statusnet.po | 2345 ++------- locale/el/LC_MESSAGES/statusnet.po | 5772 +--------------------- locale/en_GB/LC_MESSAGES/statusnet.po | 1935 +------- locale/es/LC_MESSAGES/statusnet.po | 2047 ++------ locale/fi/LC_MESSAGES/statusnet.po | 2053 ++------ locale/fr/LC_MESSAGES/statusnet.po | 2163 ++------- locale/ga/LC_MESSAGES/statusnet.po | 2674 ++--------- locale/he/LC_MESSAGES/statusnet.po | 4278 +---------------- locale/is/LC_MESSAGES/statusnet.po | 2343 +++++---- locale/it/LC_MESSAGES/statusnet.po | 2000 ++------ locale/ja/LC_MESSAGES/statusnet.po | 3968 +--------------- locale/ko/LC_MESSAGES/statusnet.po | 1883 +------- locale/mk/LC_MESSAGES/statusnet.po | 4408 +---------------- locale/nb/LC_MESSAGES/statusnet.po | 5421 +-------------------- locale/nl/LC_MESSAGES/statusnet.po | 3034 ++---------- locale/nn/LC_MESSAGES/statusnet.po | 1934 +------- locale/pl/LC_MESSAGES/statusnet.po | 1794 ++----- locale/pt/LC_MESSAGES/statusnet.po | 5665 +--------------------- locale/pt_BR/LC_MESSAGES/statusnet.po | 2230 ++------- locale/ru/LC_MESSAGES/statusnet.po | 2073 ++------ locale/statusnet.po | 4 +- locale/sv/LC_MESSAGES/statusnet.po | 2834 +---------- locale/te/LC_MESSAGES/statusnet.po | 4543 +----------------- locale/tr/LC_MESSAGES/statusnet.po | 4513 +----------------- locale/uk/LC_MESSAGES/statusnet.po | 2009 +------- locale/vi/LC_MESSAGES/statusnet.po | 2786 ++--------- locale/zh_CN/LC_MESSAGES/statusnet.po | 4055 ++++++---------- locale/zh_TW/LC_MESSAGES/statusnet.po | 6339 +++---------------------- 31 files changed, 9999 insertions(+), 85738 deletions(-) diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index d388328dac..3de4477824 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,14 +10,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:57:20+0000\n" +"PO-Revision-Date: 2009-11-06 12:22:53+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: out-statusnet\n" @@ -31,8 +30,7 @@ msgstr " Търсене на \"%s\" в потока" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." +msgid " except this private data: password, email address, IM address, phone number." msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." #: ../actions/showstream.php:400 ../lib/stream.php:109 @@ -55,60 +53,8 @@ msgstr "%1$s ви кани да ползвате заедно %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s ви кани да се присъедините към %2$s (%3$s).\n" -"\n" -"%2$s е услуга за микроблогване, чрез която лесно поддържате връзка с хората, " -"които познавате или които са ви интересни.\n" -"\n" -"Също така можете да публикувате кратки новини за себе си, свои размисли и да " -"ги обсъждате в мрежата с хора, които ви познават. Това също е и добър начин " -"за запознаване с нови хора, които споделят интересите ви.\n" -"\n" -"%1$s ви казва:\n" -"\n" -"%4$s\n" -"\n" -"Можете да видите профила на %1$s в %2$s тук:\n" -"\n" -"%5$s\n" -"\n" -"Ако искате да опитате услугата на сайта, проследете препратката по-долу, за " -"да приемете поканата.\n" -"\n" -"%6$s\n" -"\n" -"Ако не желаете, пропуснете това писмо. Благодарим ви за търпението и " -"отделеното време.\n" -"\n" -"Искрено ваши, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s ви кани да се присъедините към %2$s (%3$s).\n\n%2$s е услуга за микроблогване, чрез която лесно поддържате връзка с хората, които познавате или които са ви интересни.\n\nСъщо така можете да публикувате кратки новини за себе си, свои размисли и да ги обсъждате в мрежата с хора, които ви познават. Това също е и добър начин за запознаване с нови хора, които споделят интересите ви.\n\n%1$s ви казва:\n\n%4$s\n\nМожете да видите профила на %1$s в %2$s тук:\n\n%5$s\n\nАко искате да опитате услугата на сайта, проследете препратката по-долу, за да приемете поканата.\n\n%6$s\n\nАко не желаете, пропуснете това писмо. Благодарим ви за търпението и отделеното време.\n\nИскрено ваши, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -118,20 +64,8 @@ msgstr "%1$s вече получава бележките ви в %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s вече получава бележките ви в %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"С уважение,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s вече получава бележките ви в %2$s.\n\n %3$s\n\nС уважение,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -197,32 +131,16 @@ msgstr "Състояние на %s" msgid "%s timeline" msgstr "Поток на %s" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "" - #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Трябва да получите веднага електронно писмо с указания за потвърждаване " -"адреса на е-пощата ви.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Трябва да получите веднага електронно писмо с указания за потвърждаване адреса на е-пощата ви.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -245,9 +163,7 @@ msgstr "От 1 до 64 малки букви или цифри, без пунк #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"От 1 до 64 малки букви или цифри, без пунктоация и интервали. Задължително " -"поле." +msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали. Задължително поле." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -268,31 +184,17 @@ msgstr "6 или повече знака. Задължително поле." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения " -"от %s, трябва да го одобрите." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения от %s, трябва да го одобрите." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"На адреса на е-поща, който сте въвели, беше изпратен код за потвърждение. " -"Проверете кутията (или папката за спам) за кода и указанията за използването " -"му." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "На адреса на е-поща, който сте въвели, беше изпратен код за потвърждение. Проверете кутията (или папката за спам) за кода и указанията за използването му." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. " -"Проверете съобщенията (или папката за спам) за кода и указанията за " -"използването му." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "На телефонния номер, който сте въвели, беше изпратен код за потвърждение. Проверете съобщенията (или папката за спам) за кода и указанията за използването му." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -472,11 +374,8 @@ msgstr "Автоматично влизане занапред. Да не се #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Автоматично абониране за всеки, който се абонира за мен (подходящо за " -"ботове)." +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Автоматично абониране за всеки, който се абонира за мен (подходящо за ботове)." #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -495,21 +394,13 @@ msgstr "Аватарът е обновен." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Oчаква се потвърждение на този адрес. Проверете акаунта си в Jabber/GTalk за " -"съобщение с инструкции. (Добавихте ли %s в списъка си там?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Oчаква се потвърждение на този адрес. Проверете акаунта си в Jabber/GTalk за съобщение с инструкции. (Добавихте ли %s в списъка си там?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Очаква се потвърждение за този адрес. Проверете кутията си (или папката за " -"спам) за съобщение с указания." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Очаква се потвърждение за този адрес. Проверете кутията си (или папката за спам) за съобщение с указания." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -646,36 +537,8 @@ msgstr "Кодът за потвърждение не е открит." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Поздравления, %s! И добре дошли в %%%%site.name%%%%! от тук можете да...\n" -"\n" -"* Отидете в [профила си](%s) и да публикувате първата си бележка.\n" -"* Добавите [адрес в Jabber/GTalk](%%%%action.imsettings%%%%), за да " -"изпращате бележки от програмата си за моментни съобщения.\n" -"* [Търсите хора](%%%%action.peoplesearch%%%%), които познавате или с които " -"споделяте общи интереси. \n" -"* Обновите [настройките на профила(%%%%action.profilesettings%%%%) си, за да " -"кажете повече за себе си на другите. \n" -"* Прочетете наличната [документация](%%%%doc.help%%%%) на сайта, за да се " -"запознаете с възможностите му. \n" -"\n" -"Благодарим, че се включихте в сайта и дано ползването на услугата ви носи " -"само приятни мигове!" +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Поздравления, %s! И добре дошли в %%%%site.name%%%%! от тук можете да...\n\n* Отидете в [профила си](%s) и да публикувате първата си бележка.\n* Добавите [адрес в Jabber/GTalk](%%%%action.imsettings%%%%), за да изпращате бележки от програмата си за моментни съобщения.\n* [Търсите хора](%%%%action.peoplesearch%%%%), които познавате или с които споделяте общи интереси. \n* Обновите [настройките на профила(%%%%action.profilesettings%%%%) си, за да кажете повече за себе си на другите. \n* Прочетете наличната [документация](%%%%doc.help%%%%) на сайта, за да се запознаете с възможностите му. \n\nБлагодарим, че се включихте в сайта и дано ползването на услугата ви носи само приятни мигове!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -797,11 +660,6 @@ msgstr "Грешка при добавяне на нов абонамент." msgid "Couldn't save profile." msgstr "Грешка при запазване на профила." -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 @@ -874,12 +732,6 @@ msgstr "Текущ потвърден адрес на е-поща." msgid "Currently" msgstr "В момента" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" - #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format @@ -1082,12 +934,8 @@ msgid "Find people on this site" msgstr "Търсене на хора в сайта" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"За по-голяма сигурност, моля въведете отново потребителското си име и парола " -"при промяна на настройките." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "За по-голяма сигурност, моля въведете отново потребителското си име и парола при промяна на настройките." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1172,28 +1020,16 @@ msgstr "IM настройки" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си " -"име и парола." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си име и парола." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Ако искате да добавите OpenID към сметката си, въведете го в кутийката " -"отдолу и натиснете \"Добавяне\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Ако искате да добавите OpenID към сметката си, въведете го в кутийката отдолу и натиснете \"Добавяне\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Ако сте забравили или загубили паролата си, може да получите нова на е-" -"пощата, въведена в профила ви." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Ако сте забравили или загубили паролата си, може да получите нова на е-пощата, въведена в профила ви." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1223,12 +1059,8 @@ msgstr "Грешно име или парола." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"На е-пощата, с която сте регистрирани са изпратени инструкции за " -"възстановяване на паролата." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "На е-пощата, с която сте регистрирани са изпратени инструкции за възстановяване на паролата." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1324,14 +1156,8 @@ msgstr "Покани за нови потребители" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Ползва [StatusNet](http://status.net/) версия %s, система за микроблогване, " -"достъпна под [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Ползва [StatusNet](http://status.net/) версия %s, система за микроблогване, достъпна под [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1341,12 +1167,8 @@ msgstr "Този Jabber ID принадлежи на друг потребите #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber или GTalk адрес, като \"UserName@example.org\". Първо се уверете, че " -"сте добавили %s в списъка си с приятели в IM или GTalk клиента си." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber или GTalk адрес, като \"UserName@example.org\". Първо се уверете, че сте добавили %s в списъка си с приятели в IM или GTalk клиента си." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1413,13 +1235,8 @@ msgstr "Влизане с [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " -"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1464,12 +1281,8 @@ msgstr "Микроблог на %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Мобилен оператор за SMS. Ако знаете оператор, поддържащ SMS от е-поща, който " -"не фигурира тук, пишете ни на адрес %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Мобилен оператор за SMS. Ако знаете оператор, поддържащ SMS от е-поща, който не фигурира тук, пишете ни на адрес %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1565,9 +1378,7 @@ msgstr "Опитайте друг псевдоним, този вече е за #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние " -"между тях." +msgstr "Псевдонимът може да съдържа само малки букви, числа и никакво разстояние между тях." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -2093,13 +1904,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Телефонен номер — с код, без пунктоация и без интервали." #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " -"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Проверете тези детайли и се уверете, че искате да се абонирате за бележките на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2282,12 +2088,8 @@ msgid "Remove OpenID" msgstr "Премахване на OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Премахването на единствения OpenID ще направи влизането в системата " -"невъзможно. За да го изтриете, първо добавете друг OpenID." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Премахването на единствения OpenID ще направи влизането в системата невъзможно. За да го изтриете, първо добавете друг OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2383,21 +2185,13 @@ msgstr "Търсене в емисията на потока" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Търсене на бележки в %%site.name%% по съдържанието им. Отделяйте фразите за " -"търсене (трябва да са по-дълги от 3 символа) с интервали." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Търсене на бележки в %%site.name%% по съдържанието им. Отделяйте фразите за търсене (трябва да са по-дълги от 3 символа) с интервали." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Търсене на хора в %%site.name%% по техните име, място или интереси. " -"Отделяйте фразите за " +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Търсене на хора в %%site.name%% по техните име, място или интереси. Отделяйте фразите за " #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2432,12 +2226,8 @@ msgstr "Изпращане на бележките по Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Получаване на бележки в SMS. Имайте предвид, че може да има допълнителни " -"такси от оператора." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Получаване на бележки в SMS. Имайте предвид, че може да има допълнителни такси от оператора." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 @@ -2674,23 +2464,13 @@ msgstr "Адресът е премахнат." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Абонаментът е одобрен, но не е зададен callback URL. За да завършите " -"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Абонаментът е одобрен, но не е зададен callback URL. За да завършите одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " -"абонамента, проверете инструкциите на сайта." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно абонамента, проверете инструкциите на сайта." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2716,8 +2496,7 @@ msgstr "Няма хора, чийто бележки четете." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +msgid "These people are already users and you were automatically subscribed to them:" msgstr "Тези хора са потребители тук и автоматично сте абонирани за тях:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 @@ -2725,24 +2504,14 @@ msgid "This confirmation code is too old. Please start again." msgstr "Кодът за потвърждение е твърде стар. Започнете процеса отново." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Формата би трябвало да се изпрати автоматично. Ако това не се случи, за да " -"преминете към OpenID доставчика си натиснете бутона за изпращане." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Формата би трябвало да се изпрати автоматично. Ако това не се случи, за да преминете към OpenID доставчика си натиснете бутона за изпращане." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"За първи път влизате в системата като %s, затова трябва да присъединим " -"OpenID към локалния ви профил. Можете да създадете нова сметка или да " -"използвате съществуваща, ако имате такава." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "За първи път влизате в системата като %s, затова трябва да присъединим OpenID към локалния ви профил. Можете да създадете нова сметка или да използвате съществуваща, ако имате такава." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2791,15 +2560,8 @@ msgstr "Не е избран часови пояс" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"За да се абонирате, можете да [влезете](%%action.login%%) или да " -"[регистрирате](%%action.register%%) нова сметка. Ако имате сметка на друга, " -"[подобна услуга за микроблогване](%%doc.openmublog%%), въведете адреса на " -"профила си в нея по-долу." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "За да се абонирате, можете да [влезете](%%action.login%%) или да [регистрирате](%%action.register%%) нова сметка. Ако имате сметка на друга, [подобна услуга за микроблогване](%%doc.openmublog%%), въведете адреса на профила си в нея по-долу." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2853,12 +2615,8 @@ msgid "Unknown version of OMB protocol." msgstr "Непозната версия на протокола OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Освен ако не е указано друго, съдържанието на този сайт принадлежи на " -"създателите му и е достъпно под " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Освен ако не е указано друго, съдържанието на този сайт принадлежи на създателите му и е достъпно под " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2919,16 +2677,8 @@ msgid "Upload" msgstr "Качване" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Качете нов \"аватар\" (потребителско изображение) тук. Не можете да го " -"промените по-късно, затова се уверете, че е поне приблизително квадратен. " -"Трябва да е с лиценз като самия сайт. Използвайте картинка, която ви " -"принадлежи и искате да споделите." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Качете нов \"аватар\" (потребителско изображение) тук. Не можете да го промените по-късно, затова се уверете, че е поне приблизително квадратен. Трябва да е с лиценз като самия сайт. Използвайте картинка, която ви принадлежи и искате да споделите." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2936,11 +2686,8 @@ msgstr "Качване на нова снимка за профила" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Използвайте това поле, за да поканите приятели и колеги да използват " -"услугата на сайта." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Използвайте това поле, за да поканите приятели и колеги да използват услугата на сайта." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -3033,9 +2780,7 @@ msgid "You already have this OpenID!" msgstr "Вече използвате този OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 @@ -3068,27 +2813,18 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Можете да премахнете OpenID от сметката си, като натиснете бутона " -"\"Премахване\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Можете да премахнете OpenID от сметката си, като натиснете бутона \"Премахване\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%" -"%). Въведете адреса си в настройките по-долу." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%%). Въведете адреса си в настройките по-долу." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." +msgid "You can update your personal profile info here so people know more about you." msgstr "Можете да обновите личния си профил, за да знаят хората повече за вас." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 @@ -3111,19 +2847,6 @@ msgstr "Не можете да се регистрате, ако не сте с msgid "You did not send us that profile" msgstr "Не сте ни изпратили този профил" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 #: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 @@ -3138,12 +2861,8 @@ msgstr "За да каните хора в %s, трябва да сте влез #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Ще ви уведомим при приемане на покана и записване в сайта. Благодарим ви за " -"увеличаването на общността тук!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Ще ви уведомим при приемане на покана и записване в сайта. Благодарим ви за увеличаването на общността тук!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3161,12 +2880,8 @@ msgstr "Псевдонимът ви на този сървър или е-пощ #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и " -"същ акаунт. От тук се управляват съответните OpenID." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и същ акаунт. От тук се управляват съответните OpenID." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3362,12 +3077,8 @@ msgstr "Това е входящата ви кутия с лични съобщ #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s използва %2$s (%3$s) и ви кани да се присъедините.\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s използва %2$s (%3$s) и ви кани да се присъедините.\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3409,11 +3120,8 @@ msgstr "Не може да изпращате съобщения до този #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Не може да изпращате съобщения до себе си. По-добре си го кажете на себе си " -"тихичко." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Не може да изпращате съобщения до себе си. По-добре си го кажете на себе си тихичко." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3463,8 +3171,7 @@ msgstr "Това е изходящата ви кутия с лични съоб #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " msgstr "Търсене на хора в %%site.name%% по име, местоположение или интереси. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3488,14 +3195,6 @@ msgstr "Потребител без съответстващ профил" msgid "This confirmation code is too old. " msgstr "Кодът ви за потвърждение е твърде стар. " -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - #: actions/recoverpassword.php:169 actions/recoverpassword.php:188 msgid "Your nickname on this server, " msgstr "Псевдонимът ви на този сървър, " @@ -3516,20 +3215,9 @@ msgstr "Паролата трябва да е 6 или повече знака." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." msgstr "Поздравления, %s! И добре дошли в %%%%site.name%%%%. " -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - #: actions/showfavorites.php:61 actions/showfavorites.php:145 #: actions/showfavorites.php:147 #, php-format @@ -3615,9 +3303,7 @@ msgstr "Получателят не е открит" #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" -"Не може да изпращате преки съобщения до хора, които не са в списъка ви с " -"приятели." +msgstr "Не може да изпращате преки съобщения до хора, които не са в списъка ви с приятели." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3644,19 +3330,12 @@ msgstr "%s отбеляза бележката ви като любима" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s току-що отбеляза като любима бележката ви от %2$s.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s току-що отбеляза като любима бележката ви от %2$s.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " -"там." +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и там." #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3703,12 +3382,8 @@ msgstr "Абониране за приятелите ми от Twitter тук" #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Потребителското име може да съдържа само цифри, малки и главни букви и добна " -"черта. Може да е най-много 15 знака." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Потребителското име може да съдържа само цифри, малки и главни букви и добна черта. Може да е най-много 15 знака." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3762,18 +3437,6 @@ msgstr "Грешка при записване настройките за Twitt msgid "Twitter preferences saved." msgstr "Настройките за Twitter са запазени." -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" @@ -3842,8 +3505,7 @@ msgstr "Относно: %s" #: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" -"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." +msgstr "Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 #: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 @@ -3922,13 +3584,6 @@ msgstr "Грешка при обновяване на бележката с но msgid "User without matching profile in system." msgstr "Потребител без съответстващ профил в системата." -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" @@ -3936,12 +3591,8 @@ msgstr "Ново лично съобщение от %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) ви изпрати лично съобщение:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) ви изпрати лично съобщение:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4065,12 +3716,6 @@ msgstr "Имаше проблем със сесията ви в сайта. Мо msgid "Pick a square area of the image to be your avatar" msgstr "Изберете квадратна област от изображението за аватар" -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -4115,7 +3760,7 @@ msgid "Failed to save block information." msgstr "Грешка при записване данните за блокирането." #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format, fuzzy msgid "The address \"%s\" has been " msgstr "Адресът е премахнат." @@ -4127,18 +3772,6 @@ msgstr "Ще изтриете напълно бележката. " msgid "Add to favorites" msgstr "Добавяне към любимите" -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 #: actions/grouplogo.php:70 actions/newgroup.php:65 @@ -4175,17 +3808,10 @@ msgstr "Няма такава група." msgid "You must be an admin to edit the group" msgstr "За да редактирате групата, трябва да сте й администратор." -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "" -"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние " -"между тях." +msgstr "Псевдонимът може да съдържа само малки букви, числа и никакво разстояние между тях." #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -4216,11 +3842,6 @@ msgstr "Нов адрес на е-поща за публикщуване в %s" msgid "Send me email when someone " msgstr "Изпращане на писмо при ново лично съобщение." -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -4229,23 +3850,7 @@ msgstr "Тази е-поща вече се използва от друг пот #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения " -"от %s, трябва да го одобрите." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" +msgstr "На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения от %s, трябва да го одобрите." #: actions/facebookhome.php:218 actions/facebookhome.php:223 #: actions/facebookhome.php:217 @@ -4290,22 +3895,16 @@ msgstr "Изпратени са покани до следните хора:" #: actions/facebookinvite.php:96 actions/facebookinvite.php:102 #: actions/facebookinvite.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You have been invited to %s" msgstr "\"Побутване\" от %s" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "Емисия с приятелите на %s" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - #: actions/facebookinvite.php:130 actions/facebookinvite.php:143 #: actions/facebookinvite.php:142 #, php-format @@ -4342,11 +3941,6 @@ msgstr "Прeдставка" msgid "A string to prefix notices with." msgstr "Представка за добавяне към бележките." -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 msgid "Sync preferences" msgstr "Синхронизиране на настройките" @@ -4383,11 +3977,6 @@ msgstr "Избрани потребители" msgid "Featured users, page %d" msgstr "Избрани потребители, страница %d" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - #: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Потребителят е забранил да се абонирате за него." @@ -4416,16 +4005,6 @@ msgstr "Лотого е обновено." msgid "Failed updating logo." msgstr "Неуспешно обновяване на логото." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - #: actions/groupmembers.php:111 msgid "A list of the users in this group." msgstr "Списък с потребителите в тази група." @@ -4441,11 +4020,6 @@ msgstr "Групи" msgid "Groups, page %d" msgstr "Групи, страница %d" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" @@ -4453,8 +4027,7 @@ msgstr "Създаване на нова група" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +msgid "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Търсене на групи в %%site.name%% по име, местоположение или описание." #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4476,7 +4049,7 @@ msgid "Send me replies through Jabber/GTalk " msgstr "Изпращане на бележките по Jabber/GTalk " #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Няма код за потвърждение." @@ -4489,7 +4062,7 @@ msgid "You are already a member of that group" msgstr "Вече членувате в тази група." #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "Грешка при проследяване — потребителят не е намерен." @@ -4498,10 +4071,6 @@ msgstr "Грешка при проследяване — потребителя msgid "%s joined group %s" msgstr "%s се присъедини към групата %s" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - #: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "За напуснете група, трябва да сте влезли." @@ -4530,25 +4099,10 @@ msgstr "Грешка при обновяване записа на потреб #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "Грешка при проследяване — потребителят не е намерен." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - #: actions/newgroup.php:53 msgid "New group" msgstr "Нова група" @@ -4589,11 +4143,6 @@ msgstr "Бележки" msgid "Ajax Error" msgstr "Грешка в Ajax" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Побутването е изпратено" @@ -4649,36 +4198,18 @@ msgid "Password change" msgstr "Паролата е записана." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "Това не е правилен адрес на е-поща." -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - #: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Данни на профила" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - #: actions/profilesettings.php:144 #, fuzzy msgid "Automatically subscribe to whoever " -msgstr "" -"Автоматично абониране за всеки, който се абонира за мен (подходящо за " -"ботове)." +msgstr "Автоматично абониране за всеки, който се абонира за мен (подходящо за ботове)." #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 @@ -4703,42 +4234,16 @@ msgstr "Общ поток, страница %d" msgid "Could not retrieve public stream." msgstr "Грешка при изтегляне на общия поток" -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Емисия на общия поток" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -4774,14 +4279,6 @@ msgstr "освен тези лични данни: парола, е-поща, м msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " msgstr "Поздравления, %s! И добре дошли в %%%%site.name%%%%. " -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" - #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 #, php-format @@ -4793,32 +4290,11 @@ msgstr "Отговори на %s, страница %d" msgid "%s favorite notices, page %d" msgstr "Любими бележки на %s, страница %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Профил на групата" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4831,13 +4307,8 @@ msgstr "" msgid "Note" msgstr "Бележки" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "Емисия с бележки на %s" @@ -4848,27 +4319,11 @@ msgstr "Емисия с бележки на %s" msgid "Members" msgstr "Членове" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - #: actions/showgroup.php:370 actions/showgroup.php:350 #: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Всички членове" -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient " @@ -4919,13 +4374,6 @@ msgstr "Всички абонати" msgid "All groups" msgstr "Всички групи" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -4965,22 +4413,17 @@ msgid "Subscribed" msgstr "Абониране" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "Абонати" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Това са хората, които четат бележките на %s." #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "Това са хората, които четат бележките на %s." @@ -5000,7 +4443,7 @@ msgid "These are the people whose notices " msgstr "Хора, чийто бележки %s чете." #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "Това са хората, които четат бележките на %s." @@ -5014,11 +4457,6 @@ msgstr "Jabber" msgid "Notices tagged with %s, page %d" msgstr "Бележки с етикет %s, страница %d" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -5030,7 +4468,7 @@ msgid "No id argument." msgstr "Няма такъв документ." #: actions/tagother.php:65 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Tag %s" msgstr "Етикети" @@ -5039,48 +4477,23 @@ msgstr "Етикети" msgid "Tag user" msgstr "Етикети" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Грешка при запазване на етикетите." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - #: actions/tagrss.php:35 msgid "No such tag." msgstr "Няма такъв етикет." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" msgstr "Бележки с етикет %s" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" - #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." @@ -5089,9 +4502,7 @@ msgstr "Не е открито." #: actions/twittersettings.php:71 #, fuzzy msgid "Add your Twitter account to automatically send " -msgstr "" -"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " -"там." +msgstr "Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и там." #: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" @@ -5106,12 +4517,8 @@ msgstr "Парола за Twitter" msgid "Twitter Friends" msgstr "Приятели от Twitter" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " msgstr "Грешка при извличане данните на профила \"%s\" от Twitter." @@ -5153,11 +4560,8 @@ msgstr "Грешка при записване на бележката. Непо #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " -"отново след няколко минути." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте отново след няколко минути." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5179,7 +4583,7 @@ msgid "Other options" msgstr "Други настройки" #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s - %s" msgstr "%s (%s)" @@ -5187,14 +4591,6 @@ msgstr "%s (%s)" msgid "Untitled page" msgstr "Неозаглавена страница" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - #: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Търсене за хора или бележки" @@ -5237,10 +4633,6 @@ msgstr "Помощ" msgid "Site notice" msgstr "Нова бележка" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5279,11 +4671,6 @@ msgstr "Блокиране" msgid "Disfavor this notice" msgstr "%s любими бележки" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -5322,11 +4709,6 @@ msgstr "Етикет" msgid "Choose a tag to narrow list" msgstr "Изберете етикет за конкретизиране" -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - #: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Адрес на страница, блог или профил в друг сайт на групата" @@ -5342,19 +4724,13 @@ msgstr "Опишете групата или темата й в до 140 бук #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" -"Къде се намира групата — град, община, държава и т.н. (ако е приложимо)" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Къде се намира групата — град, община, държава и т.н. (ако е приложимо)" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Група" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - #: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" @@ -5409,15 +4785,11 @@ msgstr "Вход или записване с OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Здрасти, %s!\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Здрасти, %s!\n\n" #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s вече получава бележките ви в %2$s." @@ -5433,12 +4805,8 @@ msgstr "Лична страница: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Биография: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Биография: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5451,7 +4819,7 @@ msgid "%1$s (%2$s) is wondering what you are up to " msgstr "%1$s (%2$s) се чуди с какво се занимавате напоследък " #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" msgstr "%1$s току-що отбеляза като любима бележката ви от %2$s." @@ -5525,10 +4893,6 @@ msgstr "(няма)" msgid "Public" msgstr "Общ поток" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "" - #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" @@ -5606,17 +4970,17 @@ msgid "Unsubscribe from this user" msgstr "Отписване от този потребител" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Емисия с приятелите на %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Емисия с приятелите на %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Емисия с приятелите на %s" @@ -5626,7 +4990,7 @@ msgid "You and friends" msgstr "%s и приятели" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Можете да качите личен аватар тук." @@ -5635,18 +4999,9 @@ msgstr "Можете да качите личен аватар тук." msgid "Avatar deleted." msgstr "Аватарът е обновен." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо." #: actions/deletenotice.php:127 actions/deletenotice.php:157 @@ -5659,29 +5014,9 @@ msgstr "Имаше проблем със сесията ви в сайта. Мо msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Изпращане на писмо при ново лично съобщение." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "Може да качите лого за групата ви." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5690,28 +5025,14 @@ msgid "Pick a square area of the image to be the logo." msgstr "Изберете квадратна област от изображението за аватар" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Микроблог на %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Търсене на хора в %%site.name%% по техните име, място или интереси. " -"Отделяйте фразите за " - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Търсене на хора в %%site.name%% по техните име, място или интереси. Отделяйте фразите за " #: actions/newmessage.php:102 #, fuzzy @@ -5719,18 +5040,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Грешка при изпращане на прякото съобщение" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr " Търсене на \"%s\" в потока" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"За по-голяма сигурност, моля въведете отново потребителското си име и парола " -"при промяна на настройките." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "За по-голяма сигурност, моля въведете отново потребителското си име и парола при промяна на настройките." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5747,32 +5064,9 @@ msgstr "Емисия на общия поток" msgid "Public Stream Feed (Atom)" msgstr "Емисия на общия поток" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +msgid " except this private data: password, email address, IM address, and phone number." msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." #: actions/showgroup.php:378 actions/showgroup.php:424 @@ -5781,44 +5075,33 @@ msgstr " освен тези лични данни: парола, е-поща, msgid "Created" msgstr "Създаване" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Профил на групата" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Профил на " #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Емисия с бележки на %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Емисия с бележки на %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Емисия с бележки на %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Изходяща кутия за %s" @@ -5834,48 +5117,10 @@ msgstr "Аватар" msgid "Edit profile settings" msgstr "Настройки на профила" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. " -"Проверете съобщенията (или папката за спам) за кода и указанията за " -"използването му." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "На телефонния номер, който сте въвели, беше изпратен код за потвърждение. Проверете съобщенията (или папката за спам) за кода и указанията за използването му." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5892,27 +5137,18 @@ msgstr "Няма такъв потребител" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " -"там." +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и там." #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Грешка при извличане данните на профила \"%s\" от Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " -"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Проверете тези детайли и се уверете, че искате да се абонирате за бележките на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5921,12 +5157,8 @@ msgstr "Търсене за хора или бележки" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " -"отново след няколко минути." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте отново след няколко минути." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5938,220 +5170,21 @@ msgstr "Свързване към моментни съобщения, SMS, Twit msgid "Badge" msgstr "Побутване" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си " -"име и парола." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си име и парола." #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s вече получава бележките ви в %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"С уважение,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s вече получава бележките ви в %2$s.\n\n %3$s\n\nС уважение,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Търсене" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6168,12 +5201,12 @@ msgid "Block this user from this group" msgstr "Списък с потребителите в тази група." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Потребителски профил" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s и приятели, страница %d" @@ -6197,56 +5230,26 @@ msgstr "Код за потвърждение" msgid "Do not delete this notice" msgstr "Грешка при изтриване на бележката." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Неправилен етикет: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Опитайте друг псевдоним, този вече е зает." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Грешка при отбелязване като любима." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6257,14 +5260,6 @@ msgstr "Нова бележка" msgid "No notice" msgstr "Нова бележка" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6276,10 +5271,6 @@ msgstr "Неправилен псевдоним." msgid "No group specified." msgstr "Не е указан профил." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6296,18 +5287,6 @@ msgstr "Не членувате в тази група." msgid "Block user from group" msgstr "Блокиране на потребителя" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6318,12 +5297,6 @@ msgstr "За да създавате група, трябва да сте вле msgid "Group design" msgstr "Групи" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6351,234 +5324,41 @@ msgstr "Настройките са запазени." msgid "Make user an admin of the group" msgstr "За да редактирате групата, трябва да сте й администратор." -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Няма резултати" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Потребителят ви е блокирал." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Съобщение" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Грешка при запазване на профила." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и " -"същ акаунт. От тук се управляват съответните OpenID." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и същ акаунт. От тук се управляват съответните OpenID." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Настройки на профила" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Ако сте забравили или загубили паролата си, може да получите нова на е-" -"пощата, въведена в профила ви." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Ако сте забравили или загубили паролата си, може да получите нова на е-пощата, въведена в профила ви." #: actions/recoverpassword.php:158 #, fuzzy @@ -6600,172 +5380,54 @@ msgstr "Грешка в кода за потвърждение." msgid "Subscribe to a remote user" msgstr "Абониране за този потребител" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "Любими бележки на %s, страница %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Емисия с бележки на %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Емисия с бележки на %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Емисия с бележки на %s" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Няма такъв потребител" #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Бележки с етикет %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Емисия с бележки на %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s вече получава бележките ви в %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Емисия с бележки на %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Емисия с бележки на %s" @@ -6796,20 +5458,16 @@ msgid "Could not find target user." msgstr "Не са открити бележки." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Реплики на %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -6825,127 +5483,41 @@ msgstr "Абонаменти на %s" msgid "Profile design" msgstr "Настройки на профила" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Не членувате в тази група." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблем при записване на бележката." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Съобщение до %1$s в %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Потребителски профил" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Профил" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Качване" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Смяна на паролата" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6961,127 +5533,21 @@ msgstr "Търсене" msgid "Links" msgstr "Списък" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Блокиране" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Блокиране на потребителя" #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "Добавяне или редактиране логото на %s" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7097,26 +5563,11 @@ msgstr "Потребител" msgid "Search help" msgstr "Търсене" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "Адресът на личната страница не е правилен URL." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7124,12 +5575,12 @@ msgid "No such page" msgstr "Няма такъв етикет." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Преки съобщения до %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Твърде дълго. Може да е най-много 140 знака." @@ -7138,12 +5589,8 @@ msgstr "Твърде дълго. Може да е най-много 140 знак msgid "Could not unfollow user: User not found." msgstr "Грешка при проследяване — потребителят не е намерен." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Автобиографията е твърде дълга (до 140 символа)." @@ -7153,7 +5600,7 @@ msgid "You are already a member of that group." msgstr "Вече членувате в тази група." #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Грешка при проследяване — потребителят не е намерен." @@ -7163,44 +5610,31 @@ msgid "You are not a member of this group." msgstr "Не членувате в тази група." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Грешка при проследяване — потребителят не е намерен." #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "Групи на %s" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "Групи, в които участва %s" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Търсене на групи в сайта" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -7212,12 +5646,12 @@ msgid "Post to " msgstr "Снимка" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Автобиографията е твърде дълга (до 140 символа)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -7252,7 +5686,7 @@ msgid "Cannot read file." msgstr "Няма такава бележка." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -7262,39 +5696,17 @@ msgid "IM is not available." msgstr "Страницата не е достъпна във вида медия, който приемате" #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " -"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Всички бележки, намерени с \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Опишете себе си и интересите си в до 140 букви" @@ -7304,76 +5716,47 @@ msgid "Describe yourself and your interests" msgstr "Опишете себе си и интересите си в до 140 букви" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Автобиографията е твърде дълга (до 140 символа)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Неправилен адрес на профил (няма YADIS документ)." -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Не е получен token за одобрение." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Емисия с бележки на %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Съобщение до %1$s в %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Емисия с любимите бележки на %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Емисия с любимите бележки на %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Емисия с любимите бележки на %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Емисия с бележки на %s" @@ -7388,77 +5771,32 @@ msgid "SMS is not available." msgstr "Страницата не е достъпна във вида медия, който приемате" #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Емисия с бележки на %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " -"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Проверете тези детайли и се уверете, че искате да се абонирате за бележките на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Абонаментът е одобрен, но не е зададен callback URL. За да завършите " -"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Абонаментът е одобрен, но не е зададен callback URL. За да завършите одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " -"абонамента, проверете инструкциите на сайта." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно абонамента, проверете инструкциите на сайта." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Грешка при четене адреса на аватара '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Грешен вид изображение за '%s'" @@ -7473,37 +5811,27 @@ msgid "Site content license" msgstr "Лиценз на програмата StatusNet" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Грешка при обновяване на потребител с потвърден email адрес." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Побутването е изпратено" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" -"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." +msgstr "Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" -"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." +msgstr "Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Отговаряне на тази бележка" @@ -7512,54 +5840,11 @@ msgstr "Отговаряне на тази бележка" msgid "Error saving notice." msgstr "Проблем при записване на бележката." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Няма код за потвърждение." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7576,70 +5861,25 @@ msgid "Describe the group or topic" msgstr "Опишете групата или темата й в до 140 букви" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Опишете групата или темата й в до 140 букви" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Емисия с бележки на %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s отбеляза бележката ви като любима" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " от " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7649,3 +5889,4 @@ msgstr "Грешка при изтриване на любима бележка. #, fuzzy msgid "Duplicate notice" msgstr "Изтриване на бележката" + diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 958fa9cfc2..e7beb525d6 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -8,14 +8,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:57:25+0000\n" +"PO-Revision-Date: 2009-11-06 12:22:57+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: out-statusnet\n" @@ -29,11 +28,8 @@ msgstr "Cerca \"%s\" al flux" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"excepte les següents dades privades: contrasenya, adreça de correu " -"electrònic, adreça de missatgeria instantània, número de telèfon." +msgid " except this private data: password, email address, IM address, phone number." +msgstr "excepte les següents dades privades: contrasenya, adreça de correu electrònic, adreça de missatgeria instantània, número de telèfon." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -55,60 +51,8 @@ msgstr "%1$s t'ha convidat us ha convidat a unir-te al grup %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s us ha convidat a unir-vos a %2$s (%3$s).\n" -"\n" -"%2$s és un servei de micro-blogging que us permetrà estar al dia amb gent " -"que conegueu i gent que us interessi.\n" -"\n" -"Podeu també compartir notícies sobre vosaltres mateixos, el que penseu, o la " -"vostra vida a la xarxa amb gent que conegueu. És també força bo per conèixer " -"nova gent amb qui compartir els vostres interessos.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s us ha convidat a unir-vos a %2$s (%3$s).\n\n%2$s és un servei de micro-blogging que us permetrà estar al dia amb gent que conegueu i gent que us interessi.\n\nPodeu també compartir notícies sobre vosaltres mateixos, el que penseu, o la vostra vida a la xarxa amb gent que conegueu. És també força bo per conèixer nova gent amb qui compartir els vostres interessos.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -118,20 +62,8 @@ msgstr "%1$s ara està escoltant els teus avisos a %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s ara està escoltant els teus avisos a %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentament,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s ara està escoltant els teus avisos a %2$s.\n\n %3$s\n\nAtentament,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -207,22 +139,14 @@ msgstr "%s notificacions de tots!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb " -"instruccions sobre com confirmar la teva direcció de correu electrònic.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb instruccions sobre com confirmar la teva direcció de correu electrònic.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" -"site.broughtbyurl%%)." +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -232,8 +156,7 @@ msgstr "**%%site.name%%** és un servei de microblogging." #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -". Els col·laboradors han de ser citats pel seu nom complet o sobrenom. " +msgstr ". Els col·laboradors han de ser citats pel seu nom complet o sobrenom. " #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -241,14 +164,12 @@ msgstr "" #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 lletres en minúscula o números, sense signes de puntuació o espais" +msgstr "1-64 lletres en minúscula o números, sense signes de puntuació o espais" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 lletres en minúscula o números, sense puntuacions ni espais. Requerit." +msgstr "1-64 lletres en minúscula o números, sense puntuacions ni espais. Requerit." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -269,31 +190,17 @@ msgstr "6 o més caràcters. Requerit." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que " -"has afegit. Has d'acceptar que %s et pugui enviar missatges." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que has afegit. Has d'acceptar que %s et pugui enviar missatges." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"S'ha enviat un codi de confirmació al correu electrònic que has afegit. " -"Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest " -"codi i les instruccions per utilitzar-lo." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "S'ha enviat un codi de confirmació al correu electrònic que has afegit. Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les instruccions per utilitzar-lo." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa " -"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les " -"instruccions per utilitzar-lo." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les instruccions per utilitzar-lo." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -468,18 +375,13 @@ msgstr "Autoritzar subscripció" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Iniciar sessió automàticament en el futur; no utilitzar en ordinadors " -"compartits!" +msgstr "Iniciar sessió automàticament en el futur; no utilitzar en ordinadors compartits!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Automàticament subscriure's a qualsevol que ho estigui a tu mateix (ideal " -"per no-humans)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Automàticament subscriure's a qualsevol que ho estigui a tu mateix (ideal per no-humans)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -498,22 +400,13 @@ msgstr "Avatar actualitzat." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"A l'espera d'una confirmació per a aquesta adreça. Busca al teu compte " -"Jabber/GTalk un missatge amb més instruccions. (Has afegit a %s a la teva " -"llista d'amics?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "A l'espera d'una confirmació per a aquesta adreça. Busca al teu compte Jabber/GTalk un missatge amb més instruccions. (Has afegit a %s a la teva llista d'amics?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Esperant a confirmar aquesta direcció. Revisa la teva safata d'entrada (i la " -"carpeta de spam!) per al missatge amb les instruccions." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Esperant a confirmar aquesta direcció. Revisa la teva safata d'entrada (i la carpeta de spam!) per al missatge amb les instruccions." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -650,34 +543,8 @@ msgstr "Codi de confirmació no trobat. " #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, podries...\n" -"\n" -"* Anar al teu [teu perfil](%s) i publicar el teu primer missatge.\n" -"* Afegir una [direcció Jabber/GTalk](%%%%action.imsettings%%%%) i així poder " -"publicar les notificacions a través de missatgeria instantània.\n" -"* [Buscar gent](%%%%action.peoplesearch%%%%) que puguis conèixer o que " -"comparteixi els teus interessos. \n" -"* Actualitzar les [preferències del teu perfil](%%%%action.profilesettings%%%" -"%) per explicar als demés més sobre tu. * Llegir els [documents de la xarxa]" -"(%%%%doc.help%%%%) per conèixer les característiques del nostre servei. \n" -"\n" -"Gràcies per registrar-te i esperem que gaudeixis d'aquest servei." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, podries...\n\n* Anar al teu [teu perfil](%s) i publicar el teu primer missatge.\n* Afegir una [direcció Jabber/GTalk](%%%%action.imsettings%%%%) i així poder publicar les notificacions a través de missatgeria instantània.\n* [Buscar gent](%%%%action.peoplesearch%%%%) que puguis conèixer o que comparteixi els teus interessos. \n* Actualitzar les [preferències del teu perfil](%%%%action.profilesettings%%%%) per explicar als demés més sobre tu. * Llegir els [documents de la xarxa](%%%%doc.help%%%%) per conèixer les característiques del nostre servei. \n\nGràcies per registrar-te i esperem que gaudeixis d'aquest servei." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -709,8 +576,7 @@ msgstr "No s'ha pogut crear el formulari OpenID: %s" #: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "" -"No pots subscriure't de nou a aquest usuari: %s ja està a la teva llista." +msgstr "No pots subscriure't de nou a aquest usuari: %s ja està a la teva llista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 @@ -1085,12 +951,8 @@ msgid "Find people on this site" msgstr "Trobar gent en aquest lloc" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i " -"contrasenya abans de canviar la teva configuració." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i contrasenya abans de canviar la teva configuració." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1175,28 +1037,16 @@ msgstr "Configuració de missatgeria instantània" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Si ja tens un compte, inicia una sessió amb el teu nom d'usuari i " -"contrasenya per a connectar-lo al teu OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Si ja tens un compte, inicia una sessió amb el teu nom d'usuari i contrasenya per a connectar-lo al teu OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Si vols afegir un compte OpenID, introdueix-lo en el camp de sota i clica " -"\"Afegir\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Si vols afegir un compte OpenID, introdueix-lo en el camp de sota i clica \"Afegir\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova " -"que t'enviarem al correu electrònic que tinguis posat al teu compte." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova que t'enviarem al correu electrònic que tinguis posat al teu compte." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1226,12 +1076,8 @@ msgstr "Nom d'usuari o contrasenya incorrectes." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"S'han enviat instruccions per a recuperar la teva contrasenya a l'adreça de " -"correu electrònic registrada." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "S'han enviat instruccions per a recuperar la teva contrasenya a l'adreça de correu electrònic registrada." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1327,14 +1173,8 @@ msgstr "Invitar nous usuaris" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Utilitza el software de microblogging [StatusNet](http://status.net), versió " -"%s, disponible sota la [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Utilitza el software de microblogging [StatusNet](http://status.net), versió %s, disponible sota la [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1344,13 +1184,8 @@ msgstr "Aquest Jabber ID ja està sent utilitzat per un altre usuari." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Adreça Jabber o GTalk, per exemple \"NomUsuari@exemple.org\". Primer, " -"assegura't d'afegir a %s a la teva llista d'amics en el teu client de " -"missatgeria instantània o a GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Adreça Jabber o GTalk, per exemple \"NomUsuari@exemple.org\". Primer, assegura't d'afegir a %s a la teva llista d'amics en el teu client de missatgeria instantània o a GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1417,14 +1252,8 @@ msgstr "Inici de sessió amb un compte [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no " -"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " -"[OpenID] (%%action.openidlogin%%)." +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova [OpenID] (%%action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1469,13 +1298,8 @@ msgstr "Microblog de %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Capacitat per al teu telèfon mòbil. Si vostè coneix una companyia que " -"accepti SMS a través del correu electrònic, però no està a la llista, " -"envia'ns un correu electrònic per fer-nos-ho saber %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Capacitat per al teu telèfon mòbil. Si vostè coneix una companyia que accepti SMS a través del correu electrònic, però no està a la llista, envia'ns un correu electrònic per fer-nos-ho saber %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1571,9 +1395,7 @@ msgstr "Aquest sobrenom ja existeix. Prova un altre. " #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"El sobrenom ha de tenir només lletres minúscules i números i no pot tenir " -"espais." +msgstr "El sobrenom ha de tenir només lletres minúscules i números i no pot tenir espais." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -2099,14 +1921,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de telèfon, no puntuació ni espais, en l'àrea del codi" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Si us plau, revisa aquestes dades per a estar segur que desitges " -"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " -"avisos de ningú, clica \"Cancel·lar\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Si us plau, revisa aquestes dades per a estar segur que desitges subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als avisos de ningú, clica \"Cancel·lar\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2289,12 +2105,8 @@ msgid "Remove OpenID" msgstr "Eliminar OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Si elimines el teu únic OpenID no podràs tornar a entrar! Si necessites " -"eliminar-lo, afegeix un altre abans." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Si elimines el teu únic OpenID no podràs tornar a entrar! Si necessites eliminar-lo, afegeix un altre abans." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2390,21 +2202,13 @@ msgstr "Feed del flux de cerca" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Troba avisos a %%site.name%% per contingut. Separa els termes de cerca amb " -"espais; han de ser majors a 3 caràcters." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Troba avisos a %%site.name%% per contingut. Separa els termes de cerca amb espais; han de ser majors a 3 caràcters." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes " -"de cerca amb espais; han de ser majors a 3 caràcters." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes de cerca amb espais; han de ser majors a 3 caràcters." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2425,15 +2229,12 @@ msgstr "Enviar" #: actions/emailsettings.php:132 actions/smssettings.php:145 #: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." -msgstr "" -"Enviar correu electrònic a aquesta direcció per publicar noves notificacions." +msgstr "Enviar correu electrònic a aquesta direcció per publicar noves notificacions." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 #: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." -msgstr "" -"Envia'm notificacions quan algú nou se'm subscrigui, al meu correu " -"electrònic." +msgstr "Envia'm notificacions quan algú nou se'm subscrigui, al meu correu electrònic." #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 @@ -2442,19 +2243,13 @@ msgstr "Enviar-me avisos per Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Enviar-me avisos a través de SMS; puc entendre que això repercutirà en una " -"exorbitant càrrega del meu transport." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Enviar-me avisos a través de SMS; puc entendre que això repercutirà en una exorbitant càrrega del meu transport." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic " -"subscrita." +msgstr "Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic subscrita." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2686,24 +2481,13 @@ msgstr "L'adreça ha estat eliminada." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. " -"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " -"El teu identificador de subscripció és:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. Llegeix de nou les instruccions per a saber com autoritzar la subscripció. El teu identificador de subscripció és:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix " -"de nou les instruccions per a saber com rebutjar la subscripció completament." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix de nou les instruccions per a saber com rebutjar la subscripció completament." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2729,34 +2513,22 @@ msgstr "Aquestes són les persones que escoltes." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Aquestes persona ja són usuaris i tu estàs subscrit automàticament a ells:" +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Aquestes persona ja són usuaris i tu estàs subscrit automàticament a ells:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Aquest codi de confirmació és massa vell. Si us plau comença de nou." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Aquest formulari s'hauria d'enviar automàticament. En cas contrari, clica el " -"botó d'enviament per a anar al teu proveïdor d'OpenID." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Aquest formulari s'hauria d'enviar automàticament. En cas contrari, clica el botó d'enviament per a anar al teu proveïdor d'OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Aquesta és la primera vegada que accedeixes a %s. Per tant, hem de connectar " -"el teu OpenID a un compte local. Pots crear-ne un de nou o connectar-te amb " -"el teu, si el tens." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Aquesta és la primera vegada que accedeixes a %s. Per tant, hem de connectar el teu OpenID a un compte local. Pots crear-ne un de nou o connectar-te amb el teu, si el tens." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2805,15 +2577,8 @@ msgstr "Franja horària no seleccionada." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Per a subscriure't, pots [iniciar una sessió](%%action.login%%), o " -"[registrar](%%action.register%%) un nou compte. Si ja tens un en un [servei " -"de microblogging compatible](%%doc.openmublog%%), escriu l'URL del teu " -"perfil a sota." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Per a subscriure't, pots [iniciar una sessió](%%action.login%%), o [registrar](%%action.register%%) un nou compte. Si ja tens un en un [servei de microblogging compatible](%%doc.openmublog%%), escriu l'URL del teu perfil a sota." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2867,12 +2632,8 @@ msgid "Unknown version of OMB protocol." msgstr "Versió desconeguda del protocol OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Tret que s'especifiqui el contrari, el contingut d'aquest web és propietat " -"dels seus col·laboradors i està disponible sota la" +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Tret que s'especifiqui el contrari, el contingut d'aquest web és propietat dels seus col·laboradors i està disponible sota la" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2933,16 +2694,8 @@ msgid "Upload" msgstr "Pujar" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Puja un nou \"avatar\" (imatge d'usuari) aquí. No pots editar la imatge una " -"vegada carregada, per tant assegura't que sigui més o menys quadrada. A més, " -"ha d'estar sota la llicència del lloc web. Utilitza una foto que sigui teva " -"i que vulguis compartir." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Puja un nou \"avatar\" (imatge d'usuari) aquí. No pots editar la imatge una vegada carregada, per tant assegura't que sigui més o menys quadrada. A més, ha d'estar sota la llicència del lloc web. Utilitza una foto que sigui teva i que vulguis compartir." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2950,19 +2703,15 @@ msgstr "Carregar una nova imatge per al perfil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Utilitza aquest formulari per convidar els teus amics i col·legues perquè " -"utilitzin aquest servei." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Utilitza aquest formulari per convidar els teus amics i col·legues perquè utilitzin aquest servei." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenyes" +msgstr "Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenyes" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -3048,12 +2797,8 @@ msgid "You already have this OpenID!" msgstr "Ja tens aquest OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, " -"no ho podràs desfer." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, no ho podràs desfer." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3082,33 +2827,22 @@ msgstr "Pots crear un nou compte i començar a enviar avisos." #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"Pots rebre missatges SMS a través del teu coreu electrònic des de %%site.name" -"%%." +msgstr "Pots rebre missatges SMS a través del teu coreu electrònic des de %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." msgstr "Pots eliminar un OpenID del teu compte clicant el botó \"Eliminar\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Pots enviar i rebre avisos via [missatges instantanis](%%doc.im%%) de Jabber/" -"GTalk. Configura la teva adreça i opcions a sota." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Pots enviar i rebre avisos via [missatges instantanis](%%doc.im%%) de Jabber/GTalk. Configura la teva adreça i opcions a sota." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Pots actualitzar la informació del teu perfil personal per a que la gent " -"sàpiga més sobre tu." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Pots actualitzar la informació del teu perfil personal per a que la gent sàpiga més sobre tu." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3132,24 +2866,8 @@ msgstr "No ens vas enviar aquest perfil" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Tens una nova direcció per publicar a %1$s.\n" -"\n" -"Envia un correu electrònic a %2$s per publicar un nou missatge.\n" -"\n" -"Més instruccions per al correu electrònic a %3$s.\n" -"\n" -"Sincerament teus,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Tens una nova direcció per publicar a %1$s.\n\nEnvia un correu electrònic a %2$s per publicar un nou missatge.\n\nMés instruccions per al correu electrònic a %3$s.\n\nSincerament teus,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3161,18 +2879,12 @@ msgstr "No pots eliminar l'estatus d'un altre usuari." #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "" -"Has d'estar dins del servei per poder convidar altres usuaris a utilitzar-lo " -"%s" +msgstr "Has d'estar dins del servei per poder convidar altres usuaris a utilitzar-lo %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Seràs avisat quan les teves invitacions siguin acceptades i els teus " -"convidats es registrin al lloc. Gràcies per fer créixer la comunitat." +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Seràs avisat quan les teves invitacions siguin acceptades i els teus convidats es registrin al lloc. Gràcies per fer créixer la comunitat." #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3186,18 +2898,12 @@ msgstr "El teu URL OpenID" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "" -"El teu nom d'usuari en aquest servidor, o la teva adreça de correu " -"electrònic registrada." +msgstr "El teu nom d'usuari en aquest servidor, o la teva adreça de correu electrònic registrada." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix " -"compte d'usuari. Administra els teus OpenID associats aquí." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix compte d'usuari. Administra els teus OpenID associats aquí." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3320,9 +3026,7 @@ msgstr "« Posterior" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " -"us plau." +msgstr "Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si us plau." #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" @@ -3340,8 +3044,7 @@ msgstr "Favorit" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Envia'm un correu electrònic quan algú afegeixi una nota meva com a favorit." +msgstr "Envia'm un correu electrònic quan algú afegeixi una nota meva com a favorit." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 @@ -3392,18 +3095,12 @@ msgstr "Safata d'entrada per %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Aquesta és la teva safata d'entrada, que et mostrarà els teus missatges " -"privats." +msgstr "Aquesta és la teva safata d'entrada, que et mostrarà els teus missatges privats." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s t'ha convidat a participar a %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s t'ha convidat a participar a %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3445,8 +3142,7 @@ msgstr "No pots enviar un missatge a aquest usuari." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3493,14 +3189,11 @@ msgstr "Safata de sortida per %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Aquesta és la teva safata de sortida, que et mostrarà els missatges privats " -"que has enviat." +msgstr "Aquesta és la teva safata de sortida, que et mostrarà els missatges privats que has enviat." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " msgstr "Cercar gent a %%site.name%% pel seu nom, localització, o interessos. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3552,17 +3245,12 @@ msgstr "La contrasenya hauria de ser d'entre 6 a més caràcters." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, potser " -"vols..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, potser vols..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " -msgstr "" -"(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb " +msgstr "(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb " #: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 #, php-format @@ -3681,19 +3369,12 @@ msgstr "%s ha afegit la teva nota com a favorita" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s acaba d'afegir la teva nota des de %2$s com a favorita.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s acaba d'afegir la teva nota des de %2$s com a favorita.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes " -"a Twitter, " +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes a Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3740,12 +3421,8 @@ msgstr "Subscriure'm als meus amics de Twitter aquí." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"El nom d'usuari sols pot contenir números, lletres en majúscules i " -"minúscules, i guions baixos (_). 15 caràcters màxim." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "El nom d'usuari sols pot contenir números, lletres en majúscules i minúscules, i guions baixos (_). 15 caràcters màxim." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3960,12 +3637,8 @@ msgstr "L'usuari no té cap perfil que coincideixi en aquest sistema." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Tens una nova direcció per publicar a %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Tens una nova direcció per publicar a %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3974,12 +3647,8 @@ msgstr "Nou missatge privat de %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) t'ha enviat un nou missatge privat:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) t'ha enviat un nou missatge privat:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4100,9 +3769,7 @@ msgstr "Ha ocorregut un error amb la teva sessió. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 #: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" -msgstr "" -"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " -"avatar." +msgstr "Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu avatar." #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 @@ -4220,9 +3887,7 @@ msgstr "Utilitza aquest formulari per editar el grup." #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 msgid "Nickname must have only lowercase letters " -msgstr "" -"El sobrenom ha de tenir només lletres minúscules i números i no pot tenir " -"espais. " +msgstr "El sobrenom ha de tenir només lletres minúscules i números i no pot tenir espais. " #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -4261,9 +3926,7 @@ msgstr "L'adreça de correu electrònic ja pertany " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que " -"has afegit. " +msgstr "S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que has afegit. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" @@ -4349,8 +4012,7 @@ msgstr "No s'ha pogut eliminar l'usuari de Facebook." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" -msgstr "" -"Ha ocorregut un problema al guardar les preferències de sincronització!" +msgstr "Ha ocorregut un problema al guardar les preferències de sincronització!" #: actions/facebooksettings.php:67 msgid "Sync preferences saved." @@ -4358,9 +4020,7 @@ msgstr "Preferències de sincronització guardades." #: actions/facebooksettings.php:90 msgid "Automatically update my Facebook status with my notices." -msgstr "" -"Actualitzar automàticament el meu estat a Facebook amb les meves " -"notificacions." +msgstr "Actualitzar automàticament el meu estat a Facebook amb les meves notificacions." #: actions/facebooksettings.php:97 msgid "Send \"@\" replies to Facebook." @@ -4484,8 +4144,7 @@ msgstr "Crear nou grup" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +msgid "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Troba grups a %%site.name%% per nom, ubicació o descripció. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4530,9 +4189,7 @@ msgstr "%s s'ha pogut afegir al grup %s" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "" -"Les safates d'entrada han d'estar activades per entrar a formar part dels " -"grups." +msgstr "Les safates d'entrada han d'estar activades per entrar a formar part dels grups." #: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -4617,11 +4274,8 @@ msgid "Ajax Error" msgstr "Ajax Error" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Aquest usuari no permet reclamacions o no ha confirmar encara cap correu " -"electrònic." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Aquest usuari no permet reclamacions o no ha confirmar encara cap correu electrònic." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4663,8 +4317,7 @@ msgstr "Servei d'auto-escurçament a utilitzar." #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." -msgstr "" -"El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)." +msgstr "El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)." #: actions/passwordsettings.php:69 msgid "Change your password." @@ -4696,11 +4349,8 @@ msgstr "Informació del perfil" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat " -"por espais" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat por espais" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4731,12 +4381,8 @@ msgstr "No s'ha pogut recuperar la conversa pública." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" -"wiki/Microblogging) " +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4767,8 +4413,7 @@ msgstr "Amb aquest formulari pots crear " #: actions/register.php:368 msgid "1-64 lowercase letters or numbers, " -msgstr "" -"1-64 lletres en minúscula o números, sense signes de puntuació o espais, " +msgstr "1-64 lletres en minúscula o números, sense signes de puntuació o espais, " #: actions/register.php:382 actions/register.php:386 msgid "Used only for updates, announcements, " @@ -4884,12 +4529,8 @@ msgstr "Tots els membres" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" -"(http://ca.wikipedia.org/wiki/Microblogging)" +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging)" #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4941,12 +4582,8 @@ msgstr "Tots els grups" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" -"ca.wikipedia.org/wiki/Microblogging) " +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4958,8 +4595,7 @@ msgstr "Enviar-me avisos per SMS; " #: actions/smssettings.php:335 msgid "A confirmation code was sent to the phone number you added. " -msgstr "" -"El codi de confirmació s'ha enviat al número de telèfon que tens afegit. " +msgstr "El codi de confirmació s'ha enviat al número de telèfon que tens afegit. " #: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" @@ -5052,23 +4688,16 @@ msgid "Tag user" msgstr "Etiqueta usuari" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Etiquetes per aquest usuari (lletres, números,, -, ., i _), comes o separat " -"per espais" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Etiquetes per aquest usuari (lletres, números,, -, ., i _), comes o separat per espais" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Només pots etiquetar gent a la que estiguis subscrit o que s'hagin subscrit " -"a tu." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Només pots etiquetar gent a la que estiguis subscrit o que s'hagin subscrit a tu." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5076,9 +4705,7 @@ msgstr "No s'han pogut guardar les etiquetes." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Utilitza aquest formulari per afegir etiquetes als teus subscriptors i " -"subscripcions." +msgstr "Utilitza aquest formulari per afegir etiquetes als teus subscriptors i subscripcions." #: actions/tagrss.php:35 msgid "No such tag." @@ -5164,11 +4791,8 @@ msgstr "Problema al guardar la notificació. Usuari desconegut." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " -"minuts." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Masses notificacions massa ràpid; pren un respir i publica de nou en uns minuts." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5347,10 +4971,8 @@ msgstr "Descriu el grup amb 140 caràcters" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" -"Localització del grup, si n'hi ha, com \"Ciutat, Estat (o Regió), País\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Localització del grup, si n'hi ha, com \"Ciutat, Estat (o Regió), País\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" @@ -5413,12 +5035,8 @@ msgstr "Accedir o registrar-se amb OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Ei, %s.\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Ei, %s.\n\n" #: lib/mail.php:236 #, php-format @@ -5437,12 +5055,8 @@ msgstr "Pàgina personal: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Biografia: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Biografia: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5610,17 +5224,17 @@ msgid "Unsubscribe from this user" msgstr "Deixar d'estar subscrit des d'aquest usuari" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed per a amics de %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed per a amics de %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Feed per a amics de %s" @@ -5630,7 +5244,7 @@ msgid "You and friends" msgstr "%s i amics" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Pots pujar el teu avatar personal." @@ -5639,89 +5253,40 @@ msgstr "Pots pujar el teu avatar personal." msgid "Avatar deleted." msgstr "Avatar actualitzat." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, " -"no ho podràs desfer." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, no ho podràs desfer." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " -"us plau." +msgstr "Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si us plau." #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "Pots pujar una imatge de logo per al grup." #: actions/grouplogo.php:367 actions/grouplogo.php:362 #, fuzzy msgid "Pick a square area of the image to be the logo." -msgstr "" -"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " -"avatar." +msgstr "Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu avatar." #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Microblog de %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes " -"de cerca amb espais; han de ser majors a 3 caràcters." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes de cerca amb espais; han de ser majors a 3 caràcters." #: actions/newmessage.php:102 #, fuzzy @@ -5729,18 +5294,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Error al enviar el missatge directe." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "Cerca \"%s\" al flux" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i " -"contrasenya abans de canviar la teva configuració." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i contrasenya abans de canviar la teva configuració." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5757,35 +5318,10 @@ msgstr "Feed del flux públic" msgid "Public Stream Feed (Atom)" msgstr "Feed del flux públic" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"excepte les següents dades privades: contrasenya, adreça de correu " -"electrònic, adreça de missatgeria instantània, número de telèfon." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "excepte les següents dades privades: contrasenya, adreça de correu electrònic, adreça de missatgeria instantània, número de telèfon." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5793,44 +5329,33 @@ msgstr "" msgid "Created" msgstr "Crear" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Perfil del grup" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "perfil" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Feed d'avisos de %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Feed d'avisos de %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Feed d'avisos de %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Safata de sortida per %s" @@ -5846,48 +5371,10 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Configuració del perfil" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa " -"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les " -"instruccions per utilitzar-lo." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les instruccions per utilitzar-lo." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5904,28 +5391,18 @@ msgstr "Aquest usuari no existeix" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes " -"a Twitter, " +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes a Twitter, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "No es pot recuperar la informació del compte per \"%s\" de Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Si us plau, revisa aquestes dades per a estar segur que desitges " -"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " -"avisos de ningú, clica \"Cancel·lar\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Si us plau, revisa aquestes dades per a estar segur que desitges subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als avisos de ningú, clica \"Cancel·lar\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5934,12 +5411,8 @@ msgstr "Cercar gent o text" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " -"minuts." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Masses notificacions massa ràpid; pren un respir i publica de nou en uns minuts." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5951,218 +5424,21 @@ msgstr "Connectar a missatgeria instantània, SMS, Twitter" msgid "Badge" msgstr "Reclamar" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " msgstr "Per utilitzar la Aplicació de Facebook %s necessites haver accedit " -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s ara està escoltant els teus avisos a %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentament,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s ara està escoltant els teus avisos a %2$s.\n\n %3$s\n\nAtentament,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Cercar" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6179,12 +5455,12 @@ msgid "Block this user from this group" msgstr "La llista dels usuaris d'aquest grup." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Perfil de l'usuari" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s i amics, pàgina %d" @@ -6208,56 +5484,26 @@ msgstr "Codi de confirmació" msgid "Do not delete this notice" msgstr "No es pot esborrar la notificació." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Etiqueta no vàlida: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Aquest sobrenom ja existeix. Prova un altre. " -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "No es pot crear favorit." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6268,14 +5514,6 @@ msgstr "Nou avís" msgid "No notice" msgstr "Nou avís" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6287,10 +5525,6 @@ msgstr "Sobrenom no vàlid." msgid "No group specified." msgstr "No s'ha especificat perfil." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6307,18 +5541,6 @@ msgstr "No ets membre d'aquest grup." msgid "Block user from group" msgstr "Usuari bloquejat." -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6329,12 +5551,6 @@ msgstr "Has d'haver entrat per crear un grup." msgid "Group design" msgstr "Grups" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6367,232 +5583,46 @@ msgstr "Has de ser admin per editar aquest grup" msgid "Make Admin" msgstr "Admin" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Cap resultat" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Un usuari t'ha bloquejat." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Missatge" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "No s'ha pogut guardar el perfil." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix " -"compte d'usuari. Administra els teus OpenID associats aquí." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix compte d'usuari. Administra els teus OpenID associats aquí." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Configuració del perfil" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" -"wiki/Microblogging) " - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging) " #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova " -"que t'enviarem al correu electrònic que tinguis posat al teu compte." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova que t'enviarem al correu electrònic que tinguis posat al teu compte." #: actions/recoverpassword.php:158 #, fuzzy @@ -6614,87 +5644,30 @@ msgstr "Error amb el codi de confirmació." msgid "Subscribe to a remote user" msgstr "Subscriure's a aquest usuari" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "%s notificacions favorites, pàgina %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed d'avisos del grup %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed d'avisos del grup %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Feed d'avisos del grup %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" -"(http://ca.wikipedia.org/wiki/Microblogging)" +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging)" #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6707,84 +5680,33 @@ msgid "Not a local notice" msgstr "No existeix aquest usuari." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Aviso etiquetats amb %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Feed d'avisos del grup %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" -"ca.wikipedia.org/wiki/Microblogging) " - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging) " #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s ara està escoltant " #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed d'avisos de %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Feed d'avisos de %s" @@ -6815,20 +5737,16 @@ msgid "Could not find target user." msgstr "No es pot trobar cap estatus." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Notificacions contestant a %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -6844,127 +5762,41 @@ msgstr "%s subscripcions" msgid "Profile design" msgstr "Configuració del perfil" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "No ets membre d'aquest grup." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problema en guardar l'avís." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Missatge per a %1$s a %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Perfil de l'usuari" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Perfil" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Pujar" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Canviar la teva contrasenya" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6980,127 +5812,21 @@ msgstr "Cercar" msgid "Links" msgstr "Inici de sessió" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Bloquejar" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Usuari bloquejat." #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "Afegir o editar logo %s" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7116,26 +5842,11 @@ msgstr "Usuari" msgid "Search help" msgstr "Cercar" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "La pàgina personal no és un URL vàlid." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7143,12 +5854,12 @@ msgid "No such page" msgstr "No existeix aquesta etiqueta." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Missatges directes a %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "És massa llarg. Màxim del missatge és 140 caràcters." @@ -7157,12 +5868,8 @@ msgstr "És massa llarg. Màxim del missatge és 140 caràcters." msgid "Could not unfollow user: User not found." msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "la descripció és massa llarga (màx. 140 caràcters)." @@ -7172,7 +5879,7 @@ msgid "You are already a member of that group." msgstr "Ja ets membre d'aquest grup" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "No s'ha pogut afegir l'usuari %s al grup %s" @@ -7182,44 +5889,31 @@ msgid "You are not a member of this group." msgstr "No ets membre d'aquest grup." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "%s grups" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "%s grups són membres de" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Accions del grup" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Massa llarg. La longitud màxima és de 140 caràcters." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -7231,12 +5925,12 @@ msgid "Post to " msgstr "Foto" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "la descripció és massa llarga (màx. 140 caràcters)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" @@ -7271,7 +5965,7 @@ msgid "Cannot read file." msgstr "Hem perdut el nostre arxiu." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" @@ -7281,40 +5975,17 @@ msgid "IM is not available." msgstr "Aquesta pàgina no està disponible en " #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no " -"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " -"[OpenID] (%%action.openidlogin%%)." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova [OpenID] (%%action.openidlogin%%)." #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" " -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters" @@ -7324,20 +5995,13 @@ msgid "Describe yourself and your interests" msgstr "Explica'ns alguna cosa sobre tu " #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "La biografia és massa llarga (màx. 140 caràcters)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "URL de perfil no vàlid (cap document YADIS)." #: actions/remotesubscribe.php:176 @@ -7350,51 +6014,33 @@ msgstr "Aquest és un perfil local! Entra per subscriure-t'hi." msgid "Couldn’t get a request token." msgstr "No s'ha pogut obtenir un senyal de petició." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Feed d'avisos del grup %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Missatge per a %1$s a %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed per favorits de %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed per favorits de %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Feed per favorits de %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "%s grup" @@ -7409,79 +6055,32 @@ msgid "SMS is not available." msgstr "Aquesta pàgina no està disponible en " #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed d'avisos de %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Si us plau, revisa aquestes dades per a estar segur que desitges " -"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " -"avisos de ningú, clica \"Cancel·lar\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Si us plau, revisa aquestes dades per a estar segur que desitges subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als avisos de ningú, clica \"Cancel·lar\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. " -"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " -"El teu identificador de subscripció és:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. Llegeix de nou les instruccions per a saber com autoritzar la subscripció. El teu identificador de subscripció és:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix " -"de nou les instruccions per a saber com rebutjar la subscripció completament." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix de nou les instruccions per a saber com rebutjar la subscripció completament." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "No es pot llegir l'URL de l'avatar '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipus d'imatge incorrecte per a '%s'" @@ -7496,35 +6095,27 @@ msgid "Site content license" msgstr "Llicència del programari StatusNet" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Reclamació enviada" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "respondre a aquesta nota" @@ -7533,54 +6124,11 @@ msgstr "respondre a aquesta nota" msgid "Error saving notice." msgstr "Problema en guardar l'avís." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Cap codi de confirmació." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7597,70 +6145,25 @@ msgid "Describe the group or topic" msgstr "Descriu el grup amb 140 caràcters" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Descriu el grup amb 140 caràcters" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Feed d'avisos de %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s ha afegit la teva nota com a favorita" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " de " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7670,3 +6173,4 @@ msgstr "No pots eliminar favorits." #, fuzzy msgid "Duplicate notice" msgstr "Eliminar nota." + diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 51cfca0517..860ec15949 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -8,82 +8,34 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:57:31+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:02+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid " Search Stream for \"%s\"" msgstr " Hledej \"%s\" ve Streamu" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní " -"číslo." +msgid " except this private data: password, email address, IM address, phone number." +msgstr " až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní číslo." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " msgstr " od " -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" - #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 #, php-format @@ -92,27 +44,8 @@ msgstr "%1 od teď naslouchá tvým sdělením v %2" #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1 naslouchá vašim sdělením na %s. \n" -"\n" -"\t%3\n" -"\n" -"S úctou váš,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1 naslouchá vašim sdělením na %s. \n\n %3\n\nS úctou váš,\n%4$s.\n" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -121,13 +54,6 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "%1 statusů na %2" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "" - #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format @@ -149,52 +75,11 @@ msgstr "Veřejný \"Stream\"" msgid "%s and friends" msgstr "%s a přátelé" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" - #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -214,11 +99,6 @@ msgstr "Přispěvatelá by měly být zmíněny přezdívkou nebo celým jménem msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" - #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" @@ -230,110 +110,11 @@ msgstr "6 a více znaků" msgid "6 or more characters, and don't forget it!" msgstr "6 a více znaků, a nezapomeňte" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -msgid "6 or more characters. Required." -msgstr "" - #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro " -"posílání zpráv." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "" +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro posílání zpráv." #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 @@ -364,11 +145,6 @@ msgstr "Přidat" msgid "Add OpenID" msgstr "Přidej OpenID" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "" - #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 @@ -378,11 +154,6 @@ msgstr "" msgid "Address" msgstr "Adresa" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "" - #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" @@ -414,12 +185,6 @@ msgstr "Již přihlášen" msgid "Already subscribed!." msgstr "Již přihlášeno" -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "" - #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 @@ -433,13 +198,6 @@ msgstr "Autorizovaný odběr" msgid "Automatically login in the future; not for shared computers!" msgstr "Příště automaticky přihlásit; ne pro počítače, které používá " -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" - #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 @@ -457,24 +215,8 @@ msgstr "Obrázek nahrán" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Čakám na potvrzení této adresy. Zkontrolujte zprávy na vašem Jabber/GTalk " -"účtu. (Přidal jste si %s do vašich kontaktů?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Čakám na potvrzení této adresy. Zkontrolujte zprávy na vašem Jabber/GTalk účtu. (Přidal jste si %s do vašich kontaktů?)" #: ../lib/util.php:1318 lib/util.php:1452 #, fuzzy @@ -498,11 +240,6 @@ msgstr "O mě" msgid "Bio is too long (max 140 chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "" - #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format @@ -536,37 +273,16 @@ msgstr "Nelze dolozit zákaznický objekt OpenID" msgid "Cannot normalize that Jabber ID" msgstr "Nelze normalizovat JabberID" -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "" - #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Změnit" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" - #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "Změnit heslo" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "" - #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 #: actions/profilesettings.php:182 actions/recoverpassword.php:187 @@ -594,36 +310,11 @@ msgstr "Potvrď adresu" msgid "Confirmation cancelled." msgstr "Potvrď zrušení" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "" - #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Potvrzující kód nebyl nalezen" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -647,21 +338,6 @@ msgstr "Kontakt" msgid "Could not create OpenID form: %s" msgstr "Nelze vytvořit OpenID z: %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "" - #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format @@ -678,19 +354,6 @@ msgstr "Nelze uložin informace o obrázku" msgid "Could not save new profile info" msgstr "Nelze uložit nové informace do profilu" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "" - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" - #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." @@ -711,11 +374,6 @@ msgstr "Nelze smazat potvrzení emailu" msgid "Couldn't delete subscription." msgstr "Nelze smazat odebírání" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" - #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." @@ -744,22 +402,6 @@ msgstr "Nelze vložit odebírání" msgid "Couldn't save profile." msgstr "Nelze uložit profil" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "" - #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -807,38 +449,16 @@ msgstr "Pro toto OpenID již uživatel existuje" msgid "Current confirmed Jabber/GTalk address." msgstr "Potvrzené Jabber/GTalk adresy" -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "" - #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "Nyní" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" - #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Chyba v DB při vkládání odpovědi: %s" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" - #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -855,16 +475,6 @@ msgstr "Popiš sebe a své zájmy ve 140 znacích" msgid "Email" msgstr "Email" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "" - #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." @@ -874,27 +484,12 @@ msgstr "Emailová adresa již existuje" msgid "Email address confirmation" msgstr "Potvrzení emailové adresy" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "" - #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Zadej přezdívku nebo emailovou adresu" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" @@ -1001,37 +596,19 @@ msgstr "Nahrávání obrázku selhalo." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 #: actions/allrss.php:110 actions/allrss.php:118 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s" msgstr "Feed přítel uživatele: %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 #: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for replies to %s" msgstr "Feed odpovědí na %s" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +msgid "For security reasons, please re-enter your user name and password before changing your settings." msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo." #: ../actions/profilesettings.php:44 ../actions/register.php:164 @@ -1094,17 +671,6 @@ msgstr "Moje stránky" msgid "Homepage is not a valid URL." msgstr "Stránka není platnou URL." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" - #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -1117,40 +683,12 @@ msgstr "IM nastavení" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte " -"účet s OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte účet s OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Pokud chcete přidat OpenID k vašemu účtu, zadejte OpenID do pole níže a " -"klikněte na \"Přidat\"." - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Pokud chcete přidat OpenID k vašemu účtu, zadejte OpenID do pole níže a klikněte na \"Přidat\"." #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 @@ -1166,12 +704,8 @@ msgstr "Neplatné jméno nebo heslo" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Návod jak obnovit heslo byl odeslát na vaší emailovou adresu zaregistrovanou " -"u vašeho účtu." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Návod jak obnovit heslo byl odeslát na vaší emailovou adresu zaregistrovanou u vašeho účtu." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1179,12 +713,6 @@ msgstr "" msgid "Invalid avatar URL '%s'" msgstr "Neplatná adresa obrázku '%s'" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "" - #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format @@ -1243,38 +771,11 @@ msgstr "Neplatná velikost" msgid "Invalid username or password." msgstr "Neplatné jméno nebo heslo" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Běží na [StatusNet](http://status.net/) mikroblogovací program, verze %s, " -"dostupná pod [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Běží na [StatusNet](http://status.net/) mikroblogovací program, verze %s, dostupná pod [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1284,24 +785,8 @@ msgstr "Jabber ID již patří jinému uživateli" #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber nebo GTalk adresy, například \"jmeno@neco.cz\". Neprve se ujistěte že " -"jste přidal %s do vašeho seznamu kontaktů." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber nebo GTalk adresy, například \"jmeno@neco.cz\". Neprve se ujistěte že jste přidal %s do vašeho seznamu kontaktů." #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -1356,44 +841,20 @@ msgstr "Přihlaste se pomocí [OpenID](%%doc.openid%%) účtu." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? " -"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" -"action.openidlogin%%)." +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? [Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Odhlásit" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Ztracené nebo zapomenuté heslo?" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -1405,14 +866,6 @@ msgstr "Členem od" msgid "Microblog by %s" msgstr "Mikroblog od %s" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" - #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 @@ -1421,25 +874,6 @@ msgstr "" msgid "My text and files are available under " msgstr "Mé texty a soubory jsou k dispozici pod" -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -1524,14 +958,6 @@ msgstr "Přezdívka uživatele, kterého chcete sledovat" msgid "Nickname or email" msgstr "Přezdívka nebo email" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" - #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." @@ -1543,16 +969,6 @@ msgstr "Žádné Jabber ID." msgid "No authorization request!" msgstr "Žádné potvrení!" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -1567,23 +983,10 @@ msgstr "Žádný potvrzující kód." msgid "No content!" msgstr "Žádný obsah!" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "Žádné id" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -1605,11 +1008,6 @@ msgstr "Žádná přezdívka." msgid "No pending confirmation to cancel." msgstr "Nečeká žádné potvrzení na zrušení." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - #: ../actions/finishremotesubscribe.php:72 #: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." @@ -1638,21 +1036,6 @@ msgstr "Žádné výsledky." msgid "No size." msgstr "Žádná velikost" -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1718,12 +1101,6 @@ msgstr "Žádné takové odebírání" msgid "No such user." msgstr "Žádný takový uživatel." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "Nikdo k zobrazení!" @@ -1733,21 +1110,6 @@ msgstr "Nikdo k zobrazení!" msgid "Not a recovery code." msgstr "Není obnovujícím kódem" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 -msgid "Not a supported data format." -msgstr "" - #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1758,12 +1120,6 @@ msgstr "Není platným Jabber ID" msgid "Not a valid OpenID." msgstr "Není platným OpenID." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." @@ -1813,12 +1169,6 @@ msgstr "Neautorizován." msgid "Not expecting this response!" msgstr "Nečekaná odpověď." -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -msgid "Not found" -msgstr "" - #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 #: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 @@ -1843,15 +1193,10 @@ msgstr "Nepřihlášen" msgid "Not subscribed!." msgstr "Nepřihlášen!" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s" msgstr "Feed sdělení pro %s" @@ -1868,14 +1213,6 @@ msgstr "Sdělení nemá profil" msgid "Notices" msgstr "Sdělení" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1943,11 +1280,6 @@ msgstr "OpenID odstraněno" msgid "OpenID settings" msgstr "Nastavení OpenID" -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -2002,16 +1334,6 @@ msgstr "Heslo uloženo" msgid "Passwords don't match." msgstr "Hesla nesouhlasí" -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" @@ -2022,25 +1344,9 @@ msgstr "Hledání lidí" msgid "Personal" msgstr "Osobní" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " -"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " -"klikněte na \"Zrušit\"" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, klikněte na \"Zrušit\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2069,12 +1375,6 @@ msgstr "Nastavení" msgid "Preferences saved." msgstr "Nastavení uloženo" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" @@ -2123,22 +1423,6 @@ msgstr "Veřejný Stream Feed" msgid "Public timeline" msgstr "Veřejné zprávy" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -2167,18 +1451,6 @@ msgstr "Obnovyt kód pro neznámého uživatele" msgid "Register" msgstr "Registrovat" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 -msgid "Registration successful" -msgstr "" - #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -2224,12 +1496,8 @@ msgid "Remove OpenID" msgstr "Odstranit OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Odstranění jediného OpenID, bude mít za následek nemožnost dalšího " -"přihlášení, nejprve přidejte jiné OpenID" +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Odstranění jediného OpenID, bude mít za následek nemožnost dalšího přihlášení, nejprve přidejte jiné OpenID" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2258,38 +1526,12 @@ msgstr "Reset" msgid "Reset password" msgstr "Resetovat heslo" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Stejné jako heslo výše" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -msgid "Same as password above. Required." -msgstr "" - #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -2326,26 +1568,13 @@ msgstr "Hledat ve Stream Feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Hledej sdělení na %%site.name%% podle obsahu. Minimální délka musí být " -"alespoň 3 znaky" +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Hledej sdělení na %%site.name%% podle obsahu. Minimální délka musí být alespoň 3 znaky" #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " -"Minimální délka musí být alespoň 3 znaky" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. Minimální délka musí být alespoň 3 znaky" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -2356,35 +1585,11 @@ msgstr "" msgid "Send" msgstr "Odeslat" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Zasílat oznámení pomocí Jabber/GTalk" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -2396,10 +1601,6 @@ msgstr "Nastavení" msgid "Settings saved." msgstr "Nastavení uloženo" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -2411,16 +1612,6 @@ msgstr "Někdo jiný již má toto OpenID" msgid "Something weird happened." msgstr "Něco zvláštního se stalo" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -2485,22 +1676,6 @@ msgstr "Odběry" msgid "System error uploading file." msgstr "Chyba systému při nahrávání souboru" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -msgid "Tags" -msgstr "" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "" - #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 #: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" @@ -2521,11 +1696,6 @@ msgstr "Adresa již byla potvrzena" msgid "That confirmation code is not for you!" msgstr "Tento potvrzující kód vám nepatří!" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" - #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." @@ -2536,33 +1706,11 @@ msgstr "Soubor je příliš velký" msgid "That is already your Jabber ID." msgstr "Toto je již vaše Jabber" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" - #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Toto není váš Jabber" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" - #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -2571,16 +1719,6 @@ msgstr "" msgid "That is the wrong IM address." msgstr "Toto je špatná IM adresa" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -2591,12 +1729,6 @@ msgstr "" msgid "That's too long. Max notice size is 140 chars." msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" - #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format @@ -2615,24 +1747,13 @@ msgstr "Adresa byla odstraněna" #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v " -"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " -"je:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru je:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v " -"nápovědě jak správně postupovat při zamítání odběru" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v nápovědě jak správně postupovat při zamítání odběru" #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2656,97 +1777,29 @@ msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" msgid "These are the people whose notices you listen to." msgstr "Toto jsou lidé, jejiž sdělením nasloucháte" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" - #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Tento potvrzující kód je příliš starý Prosím zkuste znovu" #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Tento formulář by se měl odeslat sám, pokud ne tak klikněte na tlašítko pro " -"přechod k vašemu OpenID poskytovately." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Tento formulář by se měl odeslat sám, pokud ne tak klikněte na tlašítko pro přechod k vašemu OpenID poskytovately." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Toto je poprvé co jste se přihlásil na %s proto musíme propojit vaše OpenID " -"k našemu účtu. Můžete buď vytvořit nový účet, nebo propojit OpenID k vašemu " -"již existujícímu účtu, pokud již takový máte." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -msgid "This method requires a POST." -msgstr "" +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Toto je poprvé co jste se přihlásil na %s proto musíme propojit vaše OpenID k našemu účtu. Můžete buď vytvořit nový účet, nebo propojit OpenID k vašemu již existujícímu účtu, pokud již takový máte." #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Tato stránka není k dispozici v typu média která přijímáte." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Pro odebírání, se musíte [přihlásit](%%action.login%%), nebo [registrovat](%%" -"action.register%%) nový účet. Pokud již máte účet na [kompatibilních " -"mikroblozích](%%doc.openmublog%%), vložte níže asdresu " - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 -msgid "Two user ids or screen_names must be supplied." -msgstr "" +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Pro odebírání, se musíte [přihlásit](%%action.login%%), nebo [registrovat](%%action.register%%) nový účet. Pokud již máte účet na [kompatibilních mikroblozích](%%doc.openmublog%%), vložte níže asdresu " #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2783,23 +1836,14 @@ msgstr "Nečekaná forma submission." msgid "Unexpected password reset." msgstr "Nečekané resetování hesla." -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "Neznámá verze OMB protokolu." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Pokud není uvedeno jinak, obsah těchto stránek chráněn autorským právem, " -"patří přispěvatelů a je k dipozici pod" +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Pokud není uvedeno jinak, obsah těchto stránek chráněn autorským právem, patří přispěvatelů a je k dipozici pod" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2825,33 +1869,6 @@ msgstr "Nepodporovaná verze OMB." msgid "Unsupported image file format." msgstr "Nepodporovaný formát obrázku." -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -2860,24 +1877,8 @@ msgid "Upload" msgstr "Upload" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Zde nahrajte nový obrázek k vašemu profilu. Po tom co nahrajete obrázek ho " -"již nemůžete editovat, proto se ujistěte že jde víceméně o čtverec." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Zde nahrajte nový obrázek k vašemu profilu. Po tom co nahrajete obrázek ho již nemůžete editovat, proto se ujistěte že jde víceméně o čtverec." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2919,16 +1920,6 @@ msgstr "Uživatel nemá profil." msgid "User nickname" msgstr "Přezdívka" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" - #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -2955,41 +1946,16 @@ msgstr "Neplatný typ obrázku pro '%s'" msgid "Wrong size image at '%s'" msgstr "Neplatná velikost obrázku '%s'" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "" - #: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "Již máte toto OpenID!" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "Již jste přihlášen" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" - #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "Zde můžeze změnit heslo." @@ -2998,36 +1964,20 @@ msgstr "Zde můžeze změnit heslo." msgid "You can create a new account to start posting notices." msgstr "Můžete vytvožit nový účet a začít posílat oznámení." -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" - #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Můžete odstranit OpenID z vašeho účtu, kliknutím na tlačítko \"Odebrat\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Můžete odstranit OpenID z vašeho účtu, kliknutím na tlačítko \"Odebrat\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Můžete odesílat nebo přijámat sdělení pomocí Jabber/GTalk [zpráv](%%doc.im%" -"%).Zadejte svou adresu níže." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Můžete odesílat nebo přijámat sdělení pomocí Jabber/GTalk [zpráv](%%doc.im%%).Zadejte svou adresu níže." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Zde můžete aktualizovat informace o vašem profilu, aby se lidé o vás mohli " -"více dozvědět." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Zde můžete aktualizovat informace o vašem profilu, aby se lidé o vás mohli více dozvědět." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3049,38 +1999,6 @@ msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." msgid "You did not send us that profile" msgstr "Neodeslal jste nám profil" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Byl jste identifikován. Zadejte nové heslo" @@ -3097,12 +2015,8 @@ msgstr "Vaše přezdívka na tomto servu, nebo váš email zadaný při registra #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. " -"Zde může spravovat vaše OpenID" +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. Zde může spravovat vaše OpenID" #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3158,11 +2072,6 @@ msgstr "asi před rokem" msgid "about an hour ago" msgstr "asi před hodinou" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "" - #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 @@ -3180,766 +2089,18 @@ msgstr "odpověď" msgid "same as password above" msgstr "stejné jako heslo výše" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - #: ../lib/util.php:1309 lib/util.php:1443 #, fuzzy msgid "« After" msgstr "« Novější" -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -msgid "Password must be 6 or more characters." -msgstr "" - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" - -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "" - -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" - #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s a přátelé" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" - #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -3948,51 +2109,6 @@ msgstr "" msgid "Avatar settings" msgstr "Nastavení" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -4000,75 +2116,21 @@ msgstr "" msgid "Lost our file." msgstr "Žádné takové oznámení." -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" - #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Žádný takový uživatel." -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Již jste přihlášen" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format, fuzzy msgid "The address \"%s\" has been " msgstr "Adresa byla odstraněna" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "" - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" - #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -4092,20 +2154,6 @@ msgstr "Žádná přezdívka." msgid "No such group" msgstr "Žádné takové oznámení." -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -4128,23 +2176,10 @@ msgid "Options saved." msgstr "Nastavení uloženo" #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "Chyba v ověřovacím kódu" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -4153,28 +2188,7 @@ msgstr "Emailová adresa již existuje" #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro " -"posílání zpráv." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" +msgstr "Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro posílání zpráv." #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -4182,13 +2196,6 @@ msgstr "" msgid "No notice content!" msgstr "Žádný obsah!" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -4205,84 +2212,32 @@ msgstr "« Novější" msgid "Before" msgstr "Starší »" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" - #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "Feed přítel uživatele: %s" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "Nelze aktualizovat uživatele" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" - #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "Nastavení uloženo" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" - #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "Profil" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "Nastavení" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "" - #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -4292,48 +2247,10 @@ msgid "Popular notices" msgstr "Žádné takové oznámení." #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" msgstr "Žádné takové oznámení." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -4346,36 +2263,6 @@ msgstr "Obrázek nahrán" msgid "Failed updating logo." msgstr "Nahrávání obrázku selhalo." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -4383,64 +2270,35 @@ msgid "Create a new group" msgstr "Vytvořit nový účet" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " -"Minimální délka musí být alespoň 3 znaky" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. Minimální délka musí být alespoň 3 znaky" #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Hledání lidí" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" - -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Zasílat oznámení pomocí Jabber/GTalk" #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Žádný potvrzující kód." -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" - #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Již jste přihlášen" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "Nelze přesměrovat na server: %s" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" - #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -4454,44 +2312,12 @@ msgstr "Žádné takové oznámení." msgid "You are not a member of that group." msgstr "Neodeslal jste nám profil" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "" - #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "Nelze vytvořit OpenID z: %s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" - #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -4509,35 +2335,12 @@ msgstr "Nelze vytvořit odebírat" msgid "That's too long. " msgstr "Soubor je příliš velký" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" - #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Sdělení" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" - #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -4553,24 +2356,11 @@ msgstr "Odstranit OpenID" msgid "Other Settings" msgstr "Nastavení" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "Hledat" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" - #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -4589,39 +2379,19 @@ msgid "Password change" msgstr "Heslo uloženo" #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "Není platnou mailovou adresou." -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Neznámý profil" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "" - #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" msgstr "Neplatná adresa '%s'" @@ -4633,51 +2403,20 @@ msgstr "Nelze uložit profil" #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "Veřejné zprávy" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" - -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Veřejný Stream Feed" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -4706,60 +2445,20 @@ msgstr "Místo. Město, stát." #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "" -"až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní číslo." - -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" +msgstr "až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní číslo." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "Odpovědi na %s" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "" - -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Žádné takové oznámení." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4772,13 +2471,8 @@ msgstr "" msgid "Note" msgstr "Sdělení" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "Feed sdělení pro %s" @@ -4790,36 +2484,6 @@ msgstr "Feed sdělení pro %s" msgid "Members" msgstr "Členem od" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "" - -#: actions/showstream.php:73 actions/showstream.php:78 -#, php-format -msgid "%s, page %d" -msgstr "" - #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -4832,43 +2496,11 @@ msgstr "Profil" msgid "User profile" msgstr "Uživatel nemá profil." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -msgid "User actions" -msgstr "" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 -msgid "Send a direct message to this user" -msgstr "" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 -msgid "Message" -msgstr "" - #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Odběratelé" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -4884,10 +2516,6 @@ msgstr "Zasílat oznámení pomocí Jabber/GTalk" msgid "A confirmation code was sent to the phone number you added. " msgstr "Tento potvrzující kód vám nepatří!" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" - #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4909,32 +2537,27 @@ msgid "Subscribed" msgstr "Odebírat" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "Odběratelé" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "Všechny odběry" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "Všechny odběry" @@ -4944,7 +2567,7 @@ msgid "These are the people whose notices " msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" @@ -4955,15 +2578,10 @@ msgid "Jabber" msgstr "Žádné Jabber ID." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "Mikroblog od %s" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -4974,89 +2592,34 @@ msgstr "Nepřihlášen" msgid "No id argument." msgstr "Žádný takový dokument." -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Nelze uložin informace o obrázku" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "Žádné takové oznámení." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" msgstr "Mikroblog od %s" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" - #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Žádný požadavek nebyl nalezen!" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "" - #: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Nové heslo" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "" - -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " msgstr "Nelze smazat potvrzení emailu" @@ -5080,91 +2643,22 @@ msgstr "Vzdálený profil s nesouhlasícím profilem" msgid "Unsubscribed" msgstr "Odhlásit" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" - #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Problém při ukládání sdělení" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Nahrávání obrázku selhalo." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "" - -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" - #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "O nás" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -5185,10 +2679,6 @@ msgstr "Nápověda" msgid "Site notice" msgstr "Nové sdělení" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5199,39 +2689,12 @@ msgstr "Nové sdělení" msgid "Secondary site navigation" msgstr "Odběry" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Žádný takový uživatel." -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "" - -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "" - -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -5250,33 +2713,6 @@ msgstr "Veřejné" msgid "Favor this notice" msgstr "Žádné takové oznámení." -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" - -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" - -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "" - -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -5296,46 +2732,14 @@ msgstr "Popiš sebe a své zájmy ve 140 znacích" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Místo. Město, stát." -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" - #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Odhlásit" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" - #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -5361,63 +2765,26 @@ msgstr "Neplatné jméno nebo heslo" msgid "Sign up for a new account" msgstr "Vytvořit nový účet" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" - #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1 od teď naslouchá tvým sdělením v %2" #: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Location: %s\n" msgstr "Umístění %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Homepage: %s\n" msgstr "Moje stránky: %s\n" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "" - -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" msgstr "%1 od teď naslouchá tvým sdělením v %2" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "" - #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -5434,68 +2801,16 @@ msgstr "6 a více znaků" msgid "in reply to" msgstr "odpověd na ..." -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "" - #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "odpověď" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "" - -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" - -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "" - #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Veřejné" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "" - -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "" - -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -5506,35 +2821,16 @@ msgstr "Hledání lidí" msgid "Notice" msgstr "Sdělení" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "" - -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" - #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People %s subscribes to" msgstr "Vzdálený odběr" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "Vzdálený odběr" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -5546,40 +2842,24 @@ msgstr "Uživatel nemá profil." msgid "Subscribe to this user" msgstr "Odběr autorizován" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "" - -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "" - #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Žádný takový uživatel." -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "" - #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed přítel uživatele: %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed přítel uživatele: %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Feed přítel uživatele: %s" @@ -5588,104 +2868,29 @@ msgstr "Feed přítel uživatele: %s" msgid "You and friends" msgstr "%s a přátelé" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" - #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Obrázek nahrán" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Mikroblog od %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " -"Minimální délka musí být alespoň 3 znaky" - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. Minimální délka musí být alespoň 3 znaky" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr " Hledej \"%s\" ve Streamu" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 @@ -5703,35 +2908,10 @@ msgstr "Veřejný Stream Feed" msgid "Public Stream Feed (Atom)" msgstr "Veřejný Stream Feed" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní " -"číslo." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr " až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní číslo." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5739,47 +2919,31 @@ msgstr "" msgid "Created" msgstr "Vytvořit" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Žádné takové oznámení." #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Profil" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Feed sdělení pro %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Feed sdělení pro %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Feed sdělení pro %s" -#: actions/showstream.php:182 actions/showstream.php:147 -#, php-format -msgid "FOAF for %s" -msgstr "" - #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -5792,46 +2956,11 @@ msgstr "Obrázek" msgid "Edit profile settings" msgstr "Nastavené Profilu" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." msgstr "Tento potvrzující kód vám nepatří!" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -5845,260 +2974,31 @@ msgstr "" msgid "No such user!" msgstr "Žádný takový uživatel." -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" - #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Nelze smazat potvrzení emailu" #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " -"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " -"klikněte na \"Zrušit\"" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, klikněte na \"Zrušit\"" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte " -"účet s OpenID." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte účet s OpenID." #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1 naslouchá vašim sdělením na %s. \n" -"\n" -"\t%3\n" -"\n" -"S úctou váš,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1 naslouchá vašim sdělením na %s. \n\n %3\n\nS úctou váš,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Hledat" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6115,19 +3015,15 @@ msgid "Block this user from this group" msgstr "Žádný takový uživatel." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Uživatel nemá profil." #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s a přátelé" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -6143,56 +3039,26 @@ msgstr "Umístění" msgid "Do not delete this notice" msgstr "Žádné takové oznámení." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Neplatná adresa '%s'" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Přezdívku již někdo používá. Zkuste jinou" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Nelze uložin informace o obrázku" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6203,28 +3069,11 @@ msgstr "Nové sdělení" msgid "No notice" msgstr "Nové sdělení" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "Není platnou přezdívkou." -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6241,32 +3090,6 @@ msgstr "Neodeslal jste nám profil" msgid "Block user from group" msgstr "Žádný takový uživatel." -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6275,250 +3098,42 @@ msgstr "" msgid "Couldn't update your design." msgstr "Nelze aktualizovat uživatele" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "Nastavení uloženo" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Žádné výsledky." -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Uživatel nemá profil." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Nelze uložit profil" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. " -"Zde může spravovat vaše OpenID" - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. Zde může spravovat vaše OpenID" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Nastavené Profilu" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Pokud jste zapomněl nebo stratil heslo, můžete si nechat zaslat nové na vaší " -"emailovou adresu uloženou u vašeho účtu." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Pokud jste zapomněl nebo stratil heslo, můžete si nechat zaslat nové na vaší emailovou adresu uloženou u vašeho účtu." #: actions/recoverpassword.php:158 #, fuzzy @@ -6540,217 +3155,74 @@ msgstr "Chyba v ověřovacím kódu" msgid "Subscribe to a remote user" msgstr "Odběr autorizován" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "Žádné takové oznámení." -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed sdělení pro %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed sdělení pro %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Feed sdělení pro %s" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Žádný takový uživatel." -#: actions/showstream.php:72 -#, php-format -msgid " tagged %s" -msgstr "" - #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Feed sdělení pro %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1 od teď naslouchá tvým sdělením v %2" #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed sdělení pro %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Feed sdělení pro %s" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "Nelze aktualizovat uživatele" -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Nelze aktualizovat uživatele" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1 statusů na %2" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Mikroblog od %s" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -6761,127 +3233,36 @@ msgstr "Všechny odběry" msgid "Profile design" msgstr "Nastavené Profilu" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Neodeslal jste nám profil" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problém při ukládání sdělení" -#: classes/User.php:319 classes/User.php:327 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Uživatel nemá profil." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profil" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Upload" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Změnit heslo" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6897,174 +3278,39 @@ msgstr "Hledat" msgid "Links" msgstr "Přihlásit" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Žádný takový uživatel." #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Žádný takový uživatel." -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "Žádný obsah!" -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "Hledat" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "Stránka není platnou URL." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "Žádné takové oznámení." -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" @@ -7073,12 +3319,8 @@ msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" msgid "Could not unfollow user: User not found." msgstr "Nelze přesměrovat na server: %s" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" @@ -7088,7 +3330,7 @@ msgid "You are already a member of that group." msgstr "Již jste přihlášen" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Nelze přesměrovat na server: %s" @@ -7098,63 +3340,26 @@ msgid "You are not a member of this group." msgstr "Neodeslal jste nám profil" #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Nelze vytvořit OpenID z: %s" -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "Nepodporovaný formát obrázku." -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - #: actions/finishremotesubscribe.php:80 #, fuzzy msgid "User being listened to does not exist." @@ -7185,51 +3390,23 @@ msgstr "Žádné takové oznámení." msgid "Cannot read file." msgstr "Žádné takové oznámení." -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "Tato stránka není k dispozici v typu média která přijímáte." #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? " -"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" -"action.openidlogin%%)." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? [Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%action.openidlogin%%)." #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Všechny položky obsahující \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Popiš sebe a své zájmy ve 140 znacích" @@ -7239,76 +3416,47 @@ msgid "Describe yourself and your interests" msgstr "Popiš sebe a své zájmy ve 140 znacích" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Není platnou adresou profilu (není YADIS dokumentem)." -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Nelze získat řetězec požadavku." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Feed sdělení pro %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Odpovědi na %s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed přítel uživatele: %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed přítel uživatele: %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Feed přítel uživatele: %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Feed sdělení pro %s" @@ -7323,79 +3471,32 @@ msgid "SMS is not available." msgstr "Tato stránka není k dispozici v typu média která přijímáte." #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed sdělení pro %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " -"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " -"klikněte na \"Zrušit\"" +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, klikněte na \"Zrušit\"" #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v " -"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " -"je:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru je:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v " -"nápovědě jak správně postupovat při zamítání odběru" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v nápovědě jak správně postupovat při zamítání odběru" #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Nelze přečíst adresu obrázku '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Neplatný typ obrázku pro '%s'" @@ -7410,35 +3511,12 @@ msgid "Site content license" msgstr "Nové sdělení" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Nelze přesměrovat na server: %s" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Odpovědi na %s" @@ -7447,137 +3525,38 @@ msgstr "Odpovědi na %s" msgid "Error saving notice." msgstr "Problém při ukládání sdělení" -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Žádný potvrzující kód." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "Popiš sebe a své zájmy ve 140 znacích" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Popiš sebe a své zájmy ve 140 znacích" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Feed sdělení pro %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%1 od teď naslouchá tvým sdělením v %2" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " od " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" - #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Nové sdělení" + diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 873ec5babc..d63660b843 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -9,14 +9,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:57:37+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:04+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: out-statusnet\n" @@ -30,11 +29,8 @@ msgstr "Suche im Stream nach „%s“" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, " -"Telefonnummer." +msgid " except this private data: password, email address, IM address, phone number." +msgstr "außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, Telefonnummer." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -56,59 +52,8 @@ msgstr "%1$s hat Dich eingeladen, auch bei %2$s mitzumachen." #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s hat Dich eingeladen, auch bei %2$s mitzumachen. (%3$s).\n" -"\n" -"%2$s ist ein Microblogging-Service der Dich über Deine Freunde auf dem " -"Laufenden hält und Deine Freunde über Dich informiert. \n" -"\n" -"Du kannst Neuigkeiten über Dich und Deine Gedanken verbreiten. Lerne neue " -"Leute mit ähnlichen Interessen kennen. \n" -"\n" -"%1$s sagte:\n" -"\n" -"%4$s\n" -"\n" -"Du kannst die Profilseite von %1$s bei %2$s hier finden:\n" -"\n" -"%5$s\n" -"\n" -"Wenn Du den Service ausprobieren möchtest klicke den Link unten an, um die " -"Einladung anzunehmen.\n" -"\n" -"%6$s\n" -"\n" -"Wenn nicht, ignoriere diese Nachricht. Danke für Deine Geduld und Deine " -"Zeit\n" -"\n" -"Schöne Grüße von %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s hat Dich eingeladen, auch bei %2$s mitzumachen. (%3$s).\n\n%2$s ist ein Microblogging-Service der Dich über Deine Freunde auf dem Laufenden hält und Deine Freunde über Dich informiert. \n\nDu kannst Neuigkeiten über Dich und Deine Gedanken verbreiten. Lerne neue Leute mit ähnlichen Interessen kennen. \n\n%1$s sagte:\n\n%4$s\n\nDu kannst die Profilseite von %1$s bei %2$s hier finden:\n\n%5$s\n\nWenn Du den Service ausprobieren möchtest klicke den Link unten an, um die Einladung anzunehmen.\n\n%6$s\n\nWenn nicht, ignoriere diese Nachricht. Danke für Deine Geduld und Deine Zeit\n\nSchöne Grüße von %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -118,20 +63,8 @@ msgstr "%1$s hat deine Nachrichten auf %2$s abonniert." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s hat deine Nachrichten auf %2$s abonniert.\n" -"\n" -"\t%3$s\n" -"\n" -"Gruß,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s hat deine Nachrichten auf %2$s abonniert.\n\n %3$s\n\nGruß,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -207,22 +140,14 @@ msgstr "%s Nachrichten von allen!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Sie sollten in Kürze eine E-Mail mit der Anleitung zur Überprüfung Ihrer " -"Mailadresse erhalten.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Sie sollten in Kürze eine E-Mail mit der Anleitung zur Überprüfung Ihrer Mailadresse erhalten.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" -"site.broughtbyurl%%)." +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -232,9 +157,7 @@ msgstr "**%%site.name%%** ist ein Microbloggingdienst." #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -"Lizenz. Die ursprünglichen Autoren sollten mit ihrem vollen Namen oder " -"Nutzernamen genannt werden." +msgstr "Lizenz. Die ursprünglichen Autoren sollten mit ihrem vollen Namen oder Nutzernamen genannt werden." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -247,9 +170,7 @@ msgstr "1-64 Kleinbuchstaben oder Ziffern, keine Sonder- oder Leerzeichen" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 kleingeschriebene Buchstaben oder Zahlen, keine Satz- oder Leerzeichen. " -"Pflicht." +msgstr "1-64 kleingeschriebene Buchstaben oder Zahlen, keine Satz- oder Leerzeichen. Pflicht." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -270,31 +191,17 @@ msgstr "6 oder mehr Buchstaben. Pflicht." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Ein Bestätigungscode wurde an die IM Adresse geschickt, die du hinzugefügt " -"hast. Du musst zulassen, dass %s dir Nachrichten schicken darf." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Ein Bestätigungscode wurde an die IM Adresse geschickt, die du hinzugefügt hast. Du musst zulassen, dass %s dir Nachrichten schicken darf." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Ein Bestätigungscode wurde an die angegebene E-Mail Adresse geschickt. " -"Überprüfen Sie Ihren Posteingang (auch den Spamordner!) für den Code und " -"Anweisungen, wie dieser benutzt wird." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Ein Bestätigungscode wurde an die angegebene E-Mail Adresse geschickt. Überprüfen Sie Ihren Posteingang (auch den Spamordner!) für den Code und Anweisungen, wie dieser benutzt wird." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer " -"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf " -"den Code und die Anweisungen, um ihn zu benutzen." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf den Code und die Anweisungen, um ihn zu benutzen." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -419,9 +326,7 @@ msgstr "Adresse" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 #: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" -msgstr "" -"Addressen von Freunden, die Du einladen möchtest. (Jeweils eine Addresse pro " -"Zeile)" +msgstr "Addressen von Freunden, die Du einladen möchtest. (Jeweils eine Addresse pro Zeile)" #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 @@ -476,11 +381,8 @@ msgstr "Automatisch anmelden; nicht bei gemeinsam genutzten PCs einsetzen!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-" -"Menschen)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-Menschen)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -499,22 +401,13 @@ msgstr "Avatar aktualisiert." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Warte auf Bestätigung dieser Adresse. Eine Nachricht mit weiteren Anweisung " -"sollte in deinem Jabber/GTalk Konto eingehen. (Hast du %s zu deiner " -"Freundeliste hinzugefügt?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Warte auf Bestätigung dieser Adresse. Eine Nachricht mit weiteren Anweisung sollte in deinem Jabber/GTalk Konto eingehen. (Hast du %s zu deiner Freundeliste hinzugefügt?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Warte auf die Bestätigung dieser Adresse. Prüfe Deinen Nachrichteneingang " -"(auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Warte auf die Bestätigung dieser Adresse. Prüfe Deinen Nachrichteneingang (auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -651,37 +544,8 @@ msgstr "Bestätigungscode nicht gefunden." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Hallo %s, herzlich willkommen auf %%%%site.name%%%%.\n" -"\n" -"Danke für deine Anmeldung, wir hoffen das dir der Service gefällt.\n" -"\n" -"Als nächstes möchtest du eventuell ...\n" -"\n" -"* zu [deinem Profil gehen](%s) und deine erste Nachricht schreiben\n" -"* deine [Jabber/GTalk Adresse](%%%%action.imsettings%%%%) eintragen damit du " -"Nachrichten über diese Dienste schreiben kannst.\n" -"* [Leute suchen](%%%%action.peoplesearch%%%%) die du kennst oder die " -"gleichen Interessen wie du haben.\n" -"* deine [Profildaten ergänzen](%%%%action.profilesettings%%%%) um mehr über " -"dich zu veröffentlichen\n" -"* die [Dokumentation](%%%%doc.help%%%%) lesen um mehr über weitere Features " -"zu erfahren" +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Hallo %s, herzlich willkommen auf %%%%site.name%%%%.\n\nDanke für deine Anmeldung, wir hoffen das dir der Service gefällt.\n\nAls nächstes möchtest du eventuell …\n\n* zu [deinem Profil gehen](%s) und deine erste Nachricht schreiben\n* deine [Jabber/GTalk Adresse](%%%%action.imsettings%%%%) eintragen damit du Nachrichten über diese Dienste schreiben kannst.\n* [Leute suchen](%%%%action.peoplesearch%%%%) die du kennst oder die gleichen Interessen wie du haben.\n* deine [Profildaten ergänzen](%%%%action.profilesettings%%%%) um mehr über dich zu veröffentlichen\n* die [Dokumentation](%%%%doc.help%%%%) lesen um mehr über weitere Features zu erfahren" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -1088,12 +952,8 @@ msgid "Find people on this site" msgstr "Finde Leute auf dieser Seite" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort " -"ein, bevor die Änderungen an ihren Einstellungen übernommen werden." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort ein, bevor die Änderungen an ihren Einstellungen übernommen werden." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1153,8 +1013,7 @@ msgstr "Homepage" #: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/register.php:211 msgid "Homepage is not a valid URL." -msgstr "" -"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." +msgstr "Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 #: actions/emailsettings.php:173 actions/emailsettings.php:178 @@ -1179,29 +1038,16 @@ msgstr "IM Einstellungen" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Wenn du schon ein Konto hast, dann melde dich mit Nutzernamen und Passwort " -"an, um deine OpenID zu verknüpfen." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Wenn du schon ein Konto hast, dann melde dich mit Nutzernamen und Passwort an, um deine OpenID zu verknüpfen." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Wenn du deinem Konto eine OpenID hinzufügen möchtest, dann trage sie hier " -"ein und klicke auf „Hinzufügen“." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Wenn du deinem Konto eine OpenID hinzufügen möchtest, dann trage sie hier ein und klicke auf „Hinzufügen“." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-" -"Mail-Adresse, die in deinem Benutzerkonto eingetragen ist, ein neues " -"zusenden lassen." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-Mail-Adresse, die in deinem Benutzerkonto eingetragen ist, ein neues zusenden lassen." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1231,12 +1077,8 @@ msgstr "Falscher Benutzername oder Passwort." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Anweisungen für die Wiederherstellung deines Passworts wurden an deine " -"hinterlegte E-Mail-Adresse geschickt." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Anweisungen für die Wiederherstellung deines Passworts wurden an deine hinterlegte E-Mail-Adresse geschickt." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1332,14 +1174,8 @@ msgstr "Lade neue Leute ein" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -" Es wird mit der Microbloggingsoftware [StatusNet](http://status.net/) " -"(Version %s) betrieben, die unter der [GNU Affero General Public License]" -"(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr " Es wird mit der Microbloggingsoftware [StatusNet](http://status.net/) (Version %s) betrieben, die unter der [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1349,13 +1185,8 @@ msgstr "Diese Jabber ID wird bereits von einem anderen Benutzer verwendet." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber- oder GoogleTalk-Adresse, z.B. \"UserName@example.org\". Aber " -"versichere dich zuerst, dass du %s in deine Kontaktliste in deinem IM " -"Programm oder GTalk aufgenommen hast." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber- oder GoogleTalk-Adresse, z.B. \"UserName@example.org\". Aber versichere dich zuerst, dass du %s in deine Kontaktliste in deinem IM Programm oder GTalk aufgenommen hast." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1422,14 +1253,8 @@ msgstr "Mit [OpenID](%%doc.openid%%)-Konto anmelden." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? " -"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit " -"[OpenID](%%action.openidlogin%%)." +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? [Registriere](%%action.register%%) ein neues Konto oder versuche es mit [OpenID](%%action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1452,9 +1277,7 @@ msgstr "Passwort vergessen?" #: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "" -"Neue E-Mail-Adresse für Postings aktivieren; die alte wird automatisch " -"deaktiviert." +msgstr "Neue E-Mail-Adresse für Postings aktivieren; die alte wird automatisch deaktiviert." #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 @@ -1476,13 +1299,8 @@ msgstr "Microblog von %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Netzbetreiber deines Telefons. Falls du einen Betreiber kennst, der SMS-via-" -"Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter %" -"s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Netzbetreiber deines Telefons. Falls du einen Betreiber kennst, der SMS-via-Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1578,9 +1396,7 @@ msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. " -"Leerzeichen sind nicht erlaubt." +msgstr "Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. Leerzeichen sind nicht erlaubt." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -2019,9 +1835,7 @@ msgstr "OpenID-Einstellungen" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 #: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." -msgstr "" -"Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht " -"anfügen." +msgstr "Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht anfügen." #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 @@ -2108,14 +1922,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " -"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " -"„Abbrechen“." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf „Abbrechen“." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2298,12 +2106,8 @@ msgid "Remove OpenID" msgstr "Entferne OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Wenn du deine einzige OpenID entfernst, kannst du dich nicht mehr anmelden! " -"Falls du sie also entfernen musst, füge zuerst eine neue OpenID hinzu." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Wenn du deine einzige OpenID entfernst, kannst du dich nicht mehr anmelden! Falls du sie also entfernen musst, füge zuerst eine neue OpenID hinzu." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2399,23 +2203,13 @@ msgstr "Stream-Feed suchen" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Dursuche den Inhalt der Nachrichten auf %%site.name%%. Trenne mehrere " -"Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 " -"Zeichen bestehen." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Dursuche den Inhalt der Nachrichten auf %%site.name%%. Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 Zeichen bestehen." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. " -"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " -"mindestens 3 Zeichen bestehen." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 Zeichen bestehen." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2450,19 +2244,13 @@ msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Schicke mir Nachrichten per SMS; ich weiss, dass mir dadurch hohe Kosten bei " -"meinem Netzbetreiber entstehen können." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Schicke mir Nachrichten per SMS; ich weiss, dass mir dadurch hohe Kosten bei meinem Netzbetreiber entstehen können." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/" -"GTalk." +msgstr "Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/GTalk." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2668,15 +2456,13 @@ msgstr "Diese Telefonnummer wird bereits von einem anderen Benutzer verwendet." #: actions/twitapistatuses.php:251 lib/facebookaction.php:477 #: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." -msgstr "" -"Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." +msgstr "Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 #: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 #: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." -msgstr "" -"Das war zu lang. Die Länge einer Nachricht ist auf 255 Zeichen beschränkt." +msgstr "Das war zu lang. Die Länge einer Nachricht ist auf 255 Zeichen beschränkt." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 @@ -2696,25 +2482,13 @@ msgstr "Die Adresse wurde entfernt." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL " -"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " -"bestätigt werden. Dein Abonnement-Token ist:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements bestätigt werden. Dein Abonnement-Token ist:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " -"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " -"vollständig abgelehnt werden. Dein Abonnement-Token ist:" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements vollständig abgelehnt werden. Dein Abonnement-Token ist:" #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2740,35 +2514,22 @@ msgstr "Dies sind die Leute, deren Nachrichten du liest." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Diese Leute sind bereits registrierte Benutzer und Du hast Sie automatisch " -"abonniert." +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Diese Leute sind bereits registrierte Benutzer und Du hast Sie automatisch abonniert." #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Der Bestätigungscode ist zu alt. Bitte fange nochmal von vorne an." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Dieses Formular sollte automatisch übermittelt werden. Wenn nicht, dann " -"klicke auf „Senden“, um zu deinem OpenID-Anbieter zu gelangen." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Dieses Formular sollte automatisch übermittelt werden. Wenn nicht, dann klicke auf „Senden“, um zu deinem OpenID-Anbieter zu gelangen." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Dies ist das erste Mal, dass du dich bei %s anmeldest. Deshalb müssen wir " -"deine OpenID mit einem lokalen Konto verbinden. Du kannst entweder ein neues " -"Konto erstellen oder mit einem vorhandenen Konto anmelden." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Dies ist das erste Mal, dass du dich bei %s anmeldest. Deshalb müssen wir deine OpenID mit einem lokalen Konto verbinden. Du kannst entweder ein neues Konto erstellen oder mit einem vorhandenen Konto anmelden." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2817,15 +2578,8 @@ msgstr "Keine Zeitzone ausgewählt." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Für ein Abonnement kannst du dich entweder [anmelden](%%action.login%%) oder " -"ein neues Konto [registrieren](%%action.register%%). Wenn du schon ein Konto " -"auf einer [kompatiblen Microbloggingsite](%%doc.openmublog%%) hast, dann gib " -"deine Profil-URL unten an." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Für ein Abonnement kannst du dich entweder [anmelden](%%action.login%%) oder ein neues Konto [registrieren](%%action.register%%). Wenn du schon ein Konto auf einer [kompatiblen Microbloggingsite](%%doc.openmublog%%) hast, dann gib deine Profil-URL unten an." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2839,8 +2593,7 @@ msgstr "Zwei IDs oder Benutzernamen müssen angegeben werden." #: actions/register.php:444 actions/profilesettings.php:117 #: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" -msgstr "" -"URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen Site" +msgstr "URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen Site" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 #: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 @@ -2880,12 +2633,8 @@ msgid "Unknown version of OMB protocol." msgstr "Unbekannte OMB-Protokollversion." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Wenn nicht anders angegeben unterstehen die Inhalte dieser Site dem " -"Urheberrecht der Autoren und sind unter der" +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Wenn nicht anders angegeben unterstehen die Inhalte dieser Site dem Urheberrecht der Autoren und sind unter der" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2946,17 +2695,8 @@ msgid "Upload" msgstr "Hochladen" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Hier kannst du einen neuen „Avatar“ (Nutzerbild) hochladen. Du kannst das " -"Bild nach dem Hochladen nicht mehr verändern, also stell bitte sicher, dass " -"es halbwegs quadratisch ist. Es muss auch unter der Lizenz der Site zur " -"Verfügung gestellt werden. Nutze also ein Bild, das dir gehört und das du " -"auch weitergeben möchtest." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Hier kannst du einen neuen „Avatar“ (Nutzerbild) hochladen. Du kannst das Bild nach dem Hochladen nicht mehr verändern, also stell bitte sicher, dass es halbwegs quadratisch ist. Es muss auch unter der Lizenz der Site zur Verfügung gestellt werden. Nutze also ein Bild, das dir gehört und das du auch weitergeben möchtest." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2964,8 +2704,7 @@ msgstr "Neues Bild für dein Profil hochladen" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +msgid "Use this form to invite your friends and colleagues to use this service." msgstr "Lade deine Freunde und Kollegen ein diesen Dienst zu nutzen." #: ../actions/register.php:159 ../actions/register.php:162 @@ -2973,9 +2712,7 @@ msgstr "Lade deine Freunde und Kollegen ein diesen Dienst zu nutzen." #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Wird nur für Updates, wichtige Mitteilungen und zur " -"Passwortwiederherstellung verwendet" +msgstr "Wird nur für Updates, wichtige Mitteilungen und zur Passwortwiederherstellung verwendet" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -3061,12 +2798,8 @@ msgid "You already have this OpenID!" msgstr "Diese OpenID hast du schon angegeben!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion " -"ist irreversibel." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion ist irreversibel." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3098,30 +2831,19 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kannst SMS per E-Mail empfangen von %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Du kannst eine OpenID aus deinem Konto entfernen, indem du auf „Entfernen“ " -"klickst." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Du kannst eine OpenID aus deinem Konto entfernen, indem du auf „Entfernen“ klickst." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und " -"senden. Stelle deine Adresse und Einstellungen unten ein." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und senden. Stelle deine Adresse und Einstellungen unten ein." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Du kannst dein Profil auf den neusten Stand bringen, damit andere Leute mehr " -"über dich erfahren können." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Du kannst dein Profil auf den neusten Stand bringen, damit andere Leute mehr über dich erfahren können." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3136,8 +2858,7 @@ msgstr "Du kannst ein lokales Abonnement erstellen!" #: actions/finishopenidlogin.php:43 actions/register.php:149 #: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." -msgstr "" -"Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." +msgstr "Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 #: actions/updateprofile.php:67 actions/updateprofile.php:69 @@ -3146,24 +2867,8 @@ msgstr "Dieses Profil hast du uns nicht geschickt" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n" -"\n" -"Schicke eine E-Mail an %2$s um eine neue Nachricht hinzuzufügen.\n" -"\n" -"Weitere E-Mail-Anweisungen unter %3$s.\n" -"\n" -"Viele Grüße,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n\nSchicke eine E-Mail an %2$s um eine neue Nachricht hinzuzufügen.\n\nWeitere E-Mail-Anweisungen unter %3$s.\n\nViele Grüße,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3179,13 +2884,8 @@ msgstr "Du musst angemeldet sein, um andere Benutzer zu %s einzuladen" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Du wirst benachrichtigt, wenn deine Einladungen angenommen wurden und sich " -"die Empfänger auf der Seite registriert haben. Danke, dass du uns hilfst zu " -"wachsen!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Du wirst benachrichtigt, wenn deine Einladungen angenommen wurden und sich die Empfänger auf der Seite registriert haben. Danke, dass du uns hilfst zu wachsen!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3203,12 +2903,8 @@ msgstr "Dein Benutzername oder E-Mail-Adresse auf diesem Server." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben " -"Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3330,12 +3026,10 @@ msgstr "Früher" #: actions/register.php:159 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 -#, fuzzy msgid "There was a problem with your session token. Try again, please." msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." #: actions/disfavor.php:55 actions/disfavor.php:81 -#, fuzzy msgid "This notice is not a favorite!" msgstr "Diese Nachricht ist kein Favorit!" @@ -3345,28 +3039,22 @@ msgid "Could not delete favorite." msgstr "Konnte Favoriten nicht löschen." #: actions/disfavor.php:72 lib/favorform.php:140 -#, fuzzy msgid "Favor" msgstr "Zu Favoriten hinzufügen" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 -#, fuzzy msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert." +msgstr "Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 -#, fuzzy msgid "Send me email when someone sends me a private message." -msgstr "" -"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." +msgstr "Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 #: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 #: actions/favor.php:79 -#, fuzzy msgid "This notice is already a favorite!" msgstr "Diese Nachricht ist bereits ein Favorit!" @@ -3387,55 +3075,46 @@ msgstr "Aus Favoriten entfernen" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 #: actions/favoritesrss.php:110 -#, fuzzy, php-format +#, php-format msgid "%s favorite notices" msgstr "%ss Favoriten" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 #: actions/favoritesrss.php:114 -#, fuzzy, php-format +#, php-format msgid "Feed of favorite notices of %s" msgstr "Feed von %ss Favoriten" #: actions/inbox.php:28 actions/inbox.php:59 -#, fuzzy, php-format +#, php-format msgid "Inbox for %s - page %d" msgstr "Posteingang von %s - Seite %d" #: actions/inbox.php:30 actions/inbox.php:62 -#, fuzzy, php-format +#, php-format msgid "Inbox for %s" msgstr "Posteingang von %s" #: actions/inbox.php:53 actions/inbox.php:115 #, fuzzy msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Das hier ist dein Posteingang, der deine eingehenden privaten Nachrichten " -"enthält." +msgstr "Das hier ist dein Posteingang, der deine eingehenden privaten Nachrichten enthält." #: actions/invite.php:178 actions/invite.php:213 -#, fuzzy, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s hat dich zu %2$s (%3$s) eingeladen.\n" -"\n" +#, php-format +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s hat dich zu %2$s (%3$s) eingeladen.\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 -#, fuzzy msgid "Automatically login in the future; " msgstr "In Zukunft automatisch anmelden; " #: actions/login.php:122 actions/login.php:264 -#, fuzzy msgid "For security reasons, please re-enter your " -msgstr "Aus Sicherheitsgründen, bitte erneutes Eingeben des " +msgstr "Aus Sicherheitsgründen, bitte erneut eingeben " #: actions/login.php:126 actions/login.php:268 -#, fuzzy msgid "Login with your username and password. " msgstr "Anmelden mit deinem Benutzernamen und Passwort. " @@ -3443,9 +3122,8 @@ msgstr "Anmelden mit deinem Benutzernamen und Passwort. " #: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:145 -#, fuzzy msgid "That's too long. Max message size is 140 chars." -msgstr "Das ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." +msgstr "Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." #: actions/newmessage.php:65 actions/newmessage.php:128 #: actions/newmessage.php:155 actions/newmessage.php:158 @@ -3467,11 +3145,8 @@ msgstr "Du kannst diesem Benutzer keine Nachricht schicken." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -#, fuzzy -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach leise." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach leise." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3485,55 +3160,46 @@ msgid "New message" msgstr "Neue Nachricht" #: actions/noticesearch.php:95 actions/noticesearch.php:146 -#, fuzzy msgid "Notice without matching profile" msgstr "Nachricht ohne entsprechendes Profil" #: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, fuzzy, php-format +#, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" -"Mit [OpenID](%%doc.openid%%) kannst du dich auf mehreren Seiten anmelden " +msgstr "Mit [OpenID](%%doc.openid%%) kannst du dich auf mehreren Seiten anmelden " #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " msgstr "Wenn du deinem Konto eine OpenID hinzufügen möchtest, " #: actions/openidsettings.php:74 -#, fuzzy msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" -"Das Entfernen deiner einzigen OpenID würde die Anmeldung unmöglich machen!" +msgstr "Das Entfernen deiner einzigen OpenID würde die Anmeldung unmöglich machen!" #: actions/openidsettings.php:87 actions/openidsettings.php:143 -#, fuzzy msgid "You can remove an OpenID from your account " msgstr "Du kannst eine OpenID von deinem Konto entfernen " #: actions/outbox.php:28 actions/outbox.php:58 -#, fuzzy, php-format +#, php-format msgid "Outbox for %s - page %d" msgstr "Postausgang von %s - Seite %d" #: actions/outbox.php:30 actions/outbox.php:61 -#, fuzzy, php-format +#, php-format msgid "Outbox for %s" msgstr "Postausgang von %s" #: actions/outbox.php:53 actions/outbox.php:116 -#, fuzzy msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten." +msgstr "Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Suche nach Leuten auf %%site.name%% nach Name, Ort oder Interessen." +#, php-format +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "Suche nach Leuten auf %%site.name%% nach Name, Ort oder Interessen. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 -#, fuzzy msgid "You can update your personal profile info here " msgstr "Du kannst dein persönliches Profil hier aktualisieren " @@ -3547,7 +3213,6 @@ msgstr "Du kannst dein persönliches Profil hier aktualisieren " #: actions/remotesubscribe.php:364 actions/userauthorization.php:215 #: actions/userrss.php:103 actions/grouplogo.php:178 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -#, fuzzy msgid "User without matching profile" msgstr "Benutzer ohne passendes Profil" @@ -3556,22 +3221,18 @@ msgid "This confirmation code is too old. " msgstr "Dieser Bestätigungscode ist zu alt. " #: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -#, fuzzy msgid "If you've forgotten or lost your" msgstr "Keine Erinnerung mehr an dein" #: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -#, fuzzy msgid "You've been identified. Enter a " msgstr "Du wurdest identifiziert. Eingabe eines " #: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -#, fuzzy msgid "Your nickname on this server, " msgstr "Dein Benutzername auf diesem Server, " #: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -#, fuzzy msgid "Instructions for recovering your password " msgstr "Anweisungen zur Passwort-Wiederherstellung " @@ -3587,26 +3248,21 @@ msgstr "Das Passwort muss aus 6 oder mehr Zeichen bestehen." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Gratuliere, %s! Und willkommen auf %%%%site.name%%%%. Jetzt möchtest du " -"vielleicht..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Gratuliere, %s! Und willkommen auf %%%%site.name%%%%. Jetzt möchtest du vielleicht …" #: actions/register.php:227 -#, fuzzy msgid "(You should receive a message by email momentarily, with " msgstr "(Du solltest jeden Moment eine E-Mail erhalten mit " #: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, fuzzy, php-format +#, php-format msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Zum Abonnieren bitte [anmelden](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 #: actions/showfavorites.php:147 -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s" msgstr "Feed der Favoriten von %s" @@ -3614,37 +3270,33 @@ msgstr "Feed der Favoriten von %s" #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 #: actions/showfavorites.php:179 actions/showfavorites.php:209 #: actions/showfavorites.php:132 -#, fuzzy msgid "Could not retrieve favorite notices." msgstr "Konnte Favoriten nicht abrufen." #: actions/showmessage.php:33 actions/showmessage.php:81 -#, fuzzy msgid "No such message." msgstr "Keine derartige Nachricht." #: actions/showmessage.php:42 actions/showmessage.php:98 -#, fuzzy msgid "Only the sender and recipient may read this message." -msgstr "Nur der Absender und Empfänger können diese Nachricht lesen." +msgstr "Nur der Absender und der Empfänger können diese Nachricht lesen." #: actions/showmessage.php:61 actions/showmessage.php:108 -#, fuzzy, php-format +#, php-format msgid "Message to %1$s on %2$s" msgstr "Nachricht an %1$s auf %2$s" #: actions/showmessage.php:66 actions/showmessage.php:113 -#, fuzzy, php-format +#, php-format msgid "Message from %1$s on %2$s" msgstr "Nachricht von %1$s auf %2$s" #: actions/showstream.php:154 -#, fuzzy msgid "Send a message" msgstr "Eine Nachricht verschicken" #: actions/smssettings.php:312 actions/smssettings.php:464 -#, fuzzy, php-format +#, php-format msgid "Mobile carrier for your phone. " msgstr "Mobilfunkanbieter deines Telefons. " @@ -3692,25 +3344,22 @@ msgstr "Empfänger nicht gefunden." #: actions/twitapidirect_messages.php:153 #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -#, fuzzy msgid "Can't send direct messages to users who aren't your friend." -msgstr "" -"Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen " -"du nicht befreundet bist." +msgstr "Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen du nicht befreundet bist." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 #: actions/apitimelinefavorites.php:107 -#, fuzzy, php-format +#, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoriten von %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 #: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 #: actions/apitimelinefavorites.php:119 -#, fuzzy, php-format +#, php-format msgid "%s updates favorited by %s / %s." -msgstr "%s Updates in den Favoriten von %s / %s." +msgstr "%s Aktualisieurng in den Favoriten von %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 @@ -3722,40 +3371,32 @@ msgstr "%s hat deine Nachricht als Favorit gespeichert" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 -#, fuzzy, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s hat soeben deine Nachricht von %2$s zu seinen Favoriten hinzugefügt.\n" -"\n" +#, php-format +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s hat soeben deine Nachricht von %2$s zu seinen Favoriten hinzugefügt.\n\n" #: actions/twittersettings.php:27 -#, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter " -"zu übermitteln, " +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter zu übermitteln, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 msgid "Twitter settings" -msgstr "Twitter Einstellungen" +msgstr "Twitter-Einstellungen" #: actions/twittersettings.php:48 actions/twittersettings.php:105 #: actions/twittersettings.php:106 msgid "Twitter Account" -msgstr "Twitter Konto" +msgstr "Twitter-Konto" #: actions/twittersettings.php:56 actions/twittersettings.php:113 #: actions/twittersettings.php:114 msgid "Current verified Twitter account." -msgstr "Derzeit bestätigter Twitter Account." +msgstr "Derzeit bestätigtes Twitter-Konto." #: actions/twittersettings.php:63 msgid "Twitter Username" -msgstr "Twitter Benutzername" +msgstr "Twitter-Benutzername" #: actions/twittersettings.php:65 actions/twittersettings.php:123 #: actions/twittersettings.php:126 @@ -3764,7 +3405,7 @@ msgstr "Keine Leerzeichen, bitte." #: actions/twittersettings.php:67 msgid "Twitter Password" -msgstr "Twitter Passwort" +msgstr "Twitter-Passwort" #: actions/twittersettings.php:72 actions/twittersettings.php:139 #: actions/twittersettings.php:142 @@ -3773,64 +3414,56 @@ msgstr "Sende meine Nachrichten automatisch an Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 #: actions/twittersettings.php:149 -#, fuzzy msgid "Send local \"@\" replies to Twitter." -msgstr "Sende lokale \"@\" Antworten an Twitter." +msgstr "Sende lokale „@“-Antworten an Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 #: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." -msgstr "Hier meine Twitter Freunde abonnieren." +msgstr "Hier meine Twitter-Freunde abonnieren." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -#, fuzzy -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Der Benutzername darf nur Zahlen, Groß- und Kleinbuchstaben und Unterstriche " -"(_) enthalten. Maximal 15 Zeichen." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Der Benutzername darf nur Zahlen, Groß- und Kleinbuchstaben und Unterstriche (_) enthalten. Maximal 15 Zeichen." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 -#, fuzzy msgid "Could not verify your Twitter credentials!" -msgstr "Das Überprüfen deiner Twitter Berechtigungen war nicht erfolgreich!" +msgstr "Das Überprüfen deiner Twitter-Berechtigungen war nicht erfolgreich!" #: actions/twittersettings.php:137 -#, fuzzy, php-format +#, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" -"Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden." +msgstr "Es konnten keine Kontoinformationen zu „%s“ von Twitter empfangen werden." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 #: actions/twittersettings.php:352 actions/twittersettings.php:372 #: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" -msgstr "Konnte Twitter Einstellungen nicht speichern!" +msgstr "Konnte Twitter-Einstellungen nicht speichern!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 #: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." -msgstr "Twitter Einstellungen gespeichert." +msgstr "Twitter-Einstellungen gespeichert." #: actions/twittersettings.php:192 actions/twittersettings.php:395 #: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." -msgstr "Das ist nicht dein Twitter Konto." +msgstr "Das ist nicht dein Twitter-Konto." #: actions/twittersettings.php:200 actions/twittersettings.php:208 #: actions/twittersettings.php:403 actions/twittersettings.php:407 #: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." -msgstr "Konnte Twitter Benutzer nicht entfernen." +msgstr "Konnte Twitter-Benutzer nicht entfernen." #: actions/twittersettings.php:212 actions/twittersettings.php:407 #: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." -msgstr "Twitter Account entfernt." +msgstr "Twitter-Konto entfernt." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 @@ -3839,46 +3472,39 @@ msgstr "Twitter Account entfernt." #: actions/twittersettings.php:452 actions/twittersettings.php:463 #: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." -msgstr "Konnte Twitter Einstellungen nicht speichern." +msgstr "Konnte Twitter-Einstellungen nicht speichern." #: actions/twittersettings.php:245 actions/twittersettings.php:461 #: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." -msgstr "Twitter Einstellungen gespeichert." +msgstr "Twitter-Einstellungen gespeichert." #: actions/userauthorization.php:84 actions/userauthorization.php:86 -#, fuzzy msgid "Please check these details to make sure " msgstr "Bitte überprüfe die Details um sicherzustellen, dass " #: actions/userauthorization.php:324 actions/userauthorization.php:340 -#, fuzzy msgid "The subscription has been authorized, but no " msgstr "Das Abonnement wurde genehmigt, aber kein " #: actions/userauthorization.php:334 actions/userauthorization.php:351 -#, fuzzy msgid "The subscription has been rejected, but no " msgstr "Das Abonnement wurde abgelehnt, aber kein " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 #: lib/channel.php:138 lib/channel.php:158 -#, fuzzy msgid "Command results" -msgstr "Befehl Ausgabe" +msgstr "Befehl-Ergebnisse" #: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -#, fuzzy msgid "Command complete" msgstr "Befehl ausgeführt" #: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -#, fuzzy msgid "Command failed" msgstr "Befehl fehlgeschlagen" #: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -#, fuzzy msgid "Sorry, this command is not yet implemented." msgstr "Leider ist dieser Befehl noch nicht implementiert." @@ -3891,13 +3517,11 @@ msgstr "Abonnements: %1$s\n" #: classes/Command.php:276 lib/command.php:145 lib/command.php:276 #: lib/command.php:138 lib/command.php:269 lib/command.php:168 #: lib/command.php:416 lib/command.php:471 -#, fuzzy msgid "User has no last notice" msgstr "Benutzer hat keine letzte Nachricht" #: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 #: lib/command.php:159 lib/command.php:190 -#, fuzzy msgid "Notice marked as fave." msgstr "Nachricht als Favorit markiert." @@ -3915,7 +3539,7 @@ msgstr "Vollständiger Name: %s" #: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 #: lib/command.php:188 lib/command.php:321 -#, fuzzy, php-format +#, php-format msgid "Location: %s" msgstr "Standort: %s" @@ -3951,9 +3575,8 @@ msgstr "Fehler beim Senden der Nachricht" #: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 #: lib/command.php:293 lib/command.php:495 -#, fuzzy msgid "Specify the name of the user to subscribe to" -msgstr "Gib den Namen des Benutzers den du abonnieren möchtest an" +msgstr "Gib den Namen des Benutzers an, den du abonnieren möchtest" #: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 #: lib/command.php:300 lib/command.php:502 @@ -3963,13 +3586,12 @@ msgstr "%s abonniert" #: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 #: lib/command.php:321 lib/command.php:523 -#, fuzzy msgid "Specify the name of the user to unsubscribe from" msgstr "Gib den Namen des Benutzers ein, den du nicht mehr abonnieren möchtest" #: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 #: lib/command.php:328 lib/command.php:530 -#, fuzzy, php-format +#, php-format msgid "Unsubscribed from %s" msgstr "%s nicht mehr abonniert" @@ -3977,7 +3599,6 @@ msgstr "%s nicht mehr abonniert" #: classes/Command.php:376 lib/command.php:353 lib/command.php:376 #: lib/command.php:346 lib/command.php:369 lib/command.php:548 #: lib/command.php:571 -#, fuzzy msgid "Command not yet implemented." msgstr "Befehl noch nicht implementiert." @@ -4021,13 +3642,9 @@ msgid "User without matching profile in system." msgstr "Benutzer ohne entsprechendes Profil im System." #: lib/mail.php:147 lib/mail.php:289 -#, fuzzy, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n" -"\n" +#, php-format, fuzzy +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -4036,12 +3653,8 @@ msgstr "Neue private Nachricht von %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) hat dir einen private Nachricht geschickt:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) hat dir einen private Nachricht geschickt:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 #, fuzzy @@ -4061,7 +3674,7 @@ msgstr "Favoriten" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: actions/favoritesrss.php:110 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices" msgstr "%ss favorisierte Nachrichten" @@ -4096,7 +3709,7 @@ msgstr "Twitter" #: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 msgid "Twitter integration options" -msgstr "Twitter Integrationseinstellungen" +msgstr "Twitter-Integrationseinstellungen" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 #: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 @@ -4113,7 +3726,7 @@ msgstr "Konnte Nachricht nicht parsen." #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s und Freunde, Seite %d" @@ -4126,7 +3739,7 @@ msgstr "Du kannst dein persönliches Avatar hochladen." #: actions/avatarsettings.php:194 actions/grouplogo.php:256 #: actions/grouplogo.php:251 msgid "Avatar settings" -msgstr "Avatar Einstellungen" +msgstr "Avatar-Einstellungen" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 @@ -4167,8 +3780,7 @@ msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." #: actions/avatarsettings.php:308 #, fuzzy msgid "Pick a square area of the image to be your avatar" -msgstr "" -"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" +msgstr "Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 @@ -4222,9 +3834,9 @@ msgid "Failed to save block information." msgstr "Konnte Blockierungsdaten nicht speichern." #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format msgid "The address \"%s\" has been " -msgstr "Die Adresse \"%s\" wurde " +msgstr "Die Adresse „%s“ wurde " #: actions/deletenotice.php:73 #, fuzzy @@ -4312,14 +3924,13 @@ msgid "Options saved." msgstr "Einstellungen gespeichert." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "Warte auf die Bestätigung dieser Adresse. " #: actions/emailsettings.php:139 actions/smssettings.php:150 -#, fuzzy msgid "Make a new email address for posting to; " -msgstr "Neue E-Mailadresse um Nachrichten auf %s hinzuzufügen; " +msgstr "Neue E-Mail-Adresse um Nachrichten auf %s hinzuzufügen; " #: actions/emailsettings.php:157 msgid "Send me email when someone " @@ -4331,15 +3942,12 @@ msgid "Allow friends to nudge me and send me an email." msgstr "Erlaube Freunden mich zu stupsen und mir E-Mails zu senden." #: actions/emailsettings.php:321 -#, fuzzy msgid "That email address already belongs " -msgstr "Diese E-Mailadresse gehört " +msgstr "Diese E-Mail-Adresse gehört " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Ein Bestätigungscode wurde an die E-Mailadresse geschickt, die du " -"hinzugefügt hast." +msgstr "Ein Bestätigungscode wurde an die E-Mail-Adresse geschickt, die du hinzugefügt hast. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 #, fuzzy @@ -4347,14 +3955,14 @@ msgid "Server error - couldn't get user!" msgstr "Serverfehler - Benutzer nicht gefunden!" #: actions/facebookhome.php:196 -#, fuzzy, php-format +#, php-format, fuzzy msgid "If you would like the %s app to automatically update " msgstr "Wenn du automatische Aktualisierungen der Anwendung %s möchtest " #: actions/facebookhome.php:213 actions/facebooksettings.php:137 #, php-format msgid "Allow %s to update my Facebook status" -msgstr "Erlaube %s meinen Facebook Status zu aktualisieren" +msgstr "Erlaube %s meinen Facebook-Status zu aktualisieren" #: actions/facebookhome.php:218 actions/facebookhome.php:223 #: actions/facebookhome.php:217 @@ -4391,7 +3999,7 @@ msgid "Before" msgstr "Vorher" #: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Thanks for inviting your friends to use %s" msgstr "Danke, dass du deine Freunde zu %s einlädst" @@ -4402,13 +4010,13 @@ msgstr "Einladung(en) an folgende Personen geschickt:" #: actions/facebookinvite.php:96 actions/facebookinvite.php:102 #: actions/facebookinvite.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You have been invited to %s" msgstr "Du wurdest von %s angestupst" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "Lade deine Freunde ein %s zu nutzen" @@ -4426,13 +4034,12 @@ msgstr "Einladungen versenden" #: actions/facebookremove.php:56 msgid "Couldn't remove Facebook user." -msgstr "Konnte Facebook Benutzer nicht entfernen." +msgstr "Konnte Facebook-Benutzer nicht entfernen." #: actions/facebooksettings.php:65 #, fuzzy msgid "There was a problem saving your sync preferences!" -msgstr "" -"Es gab ein Problem beim Speichern deiner Synchronisationseinstellungen." +msgstr "Es gab ein Problem beim Speichern deiner Synchronisationseinstellungen." #: actions/facebooksettings.php:67 #, fuzzy @@ -4440,20 +4047,16 @@ msgid "Sync preferences saved." msgstr "Synchronisationseinstellungen gespeichert." #: actions/facebooksettings.php:90 -#, fuzzy msgid "Automatically update my Facebook status with my notices." -msgstr "" -"Meinen Facebook Status automatisch über meine Nachrichten aktualisieren." +msgstr "Meinen Facebook-Status automatisch über meine Nachrichten aktualisieren." #: actions/facebooksettings.php:97 -#, fuzzy msgid "Send \"@\" replies to Facebook." -msgstr "Schicke \"@\" Antworten an Facebook." +msgstr "Schicke „@“-Antworten an Facebook." #: actions/facebooksettings.php:106 -#, fuzzy msgid "Prefix" -msgstr "Prefix" +msgstr "Präfix" #: actions/facebooksettings.php:108 #, fuzzy @@ -4499,12 +4102,12 @@ msgid "Featured users" msgstr "Featured Benutzer" #: actions/featured.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Featured users, page %d" msgstr "Featured Benutzer, Seite %d" #: actions/featured.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A selection of some of the great users on %s" msgstr "Eine Auswahl der tollen Benutzer auf %s" @@ -4565,7 +4168,7 @@ msgid "Groups, page %d" msgstr "Gruppen, Seite %d" #: actions/groups.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% Gruppen - finde und tausche dich aus mit " @@ -4575,11 +4178,9 @@ msgid "Create a new group" msgstr "Neue Gruppe erstellen" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Suche nach Gruppen auf %%site.name%% nach Name, Ort oder Beschreibung. " +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Suche nach Gruppen auf %%site.name%% nach Name, Ort oder Beschreibung. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy @@ -4594,7 +4195,7 @@ msgstr "Du kannst Nachrichten senden und empfangen über " #: actions/imsettings.php:120 #, php-format msgid "Jabber or GTalk address, " -msgstr "Jabber oder GTalk Adressen, " +msgstr "Jabber- oder GTalk-Adressen, " #: actions/imsettings.php:147 #, fuzzy @@ -4602,7 +4203,7 @@ msgid "Send me replies through Jabber/GTalk " msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Es wurde ein Bestätigungscode gesendet " @@ -4616,7 +4217,7 @@ msgid "You are already a member of that group" msgstr "Du bist bereits Mitglied dieser Gruppe" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" @@ -4650,8 +4251,7 @@ msgstr "Du bist kein Mitglied dieser Gruppe." #: actions/leavegroup.php:100 #, fuzzy msgid "You may not leave a group while you are its administrator." -msgstr "" -"Du kannst eine Gruppe nicht verlassen solange du der Administrator bist." +msgstr "Du kannst eine Gruppe nicht verlassen solange du der Administrator bist." #: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 @@ -4661,7 +4261,7 @@ msgstr "Konnte Mitgliedseintrag nicht finden." #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" @@ -4721,14 +4321,11 @@ msgstr "Nachricht hinzugefügt" #: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 #: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" -msgstr "Ajax Fehler" +msgstr "Ajax-Fehler" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Dieser Benutzer erlaubt keine Stupser oder hat seine E-Mailadresse noch " -"nicht bestätigt." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Dieser Benutzer erlaubt keine Stupser oder hat seine E-Mail-Adresse noch nicht bestätigt." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4739,9 +4336,8 @@ msgid "Nudge sent!" msgstr "Stups gesendet!" #: actions/openidlogin.php:97 actions/openidlogin.php:106 -#, fuzzy msgid "OpenID login" -msgstr "OpenID Anmeldung" +msgstr "OpenID-Anmeldung" #: actions/openidsettings.php:128 #, fuzzy @@ -4759,7 +4355,7 @@ msgstr "Verwalte zahlreiche andere Einstellungen." #: actions/othersettings.php:93 msgid "URL Auto-shortening" -msgstr "URL Auto-Verkürzung" +msgstr "URL-Auto-Verkürzung" #: actions/othersettings.php:112 msgid "Service" @@ -4768,12 +4364,12 @@ msgstr "Dienst" #: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." -msgstr "URL Auto-Kürzungs Dienst." +msgstr "URL-Auto-Kürzungs-Dienst." #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." -msgstr "URL Auto-Kürzungs Dienst ist zu lange (max. 50 Zeichen)" +msgstr "URL-Auto-Kürzungs-Dienst ist zu lange (max. 50 Zeichen)" #: actions/passwordsettings.php:69 #, fuzzy @@ -4787,7 +4383,7 @@ msgid "Password change" msgstr "Passwort gespeichert" #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "Ungültiger Tag: %s" @@ -4799,7 +4395,7 @@ msgstr "Benutzer die sich selbst mit %s getagged haben - Seite %d" #: actions/peopletag.php:91 #, php-format msgid "These are users who have tagged themselves \"%s\" " -msgstr "Benutzer die sich selbst mit \"%s\" getagged haben " +msgstr "Benutzer die sich selbst mit „%s“ getagged haben " #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy @@ -4808,11 +4404,8 @@ msgstr "Profilinformation" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder " -"Leerzeichen getrennt" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder Leerzeichen getrennt" #: actions/profilesettings.php:144 #, fuzzy @@ -4824,7 +4417,7 @@ msgstr "Abonniere automatisch alle Kontakte, die mich abonnieren " #: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" -msgstr "Ungültiger Tag: \"%s\"" +msgstr "Ungültiger Tag: „%s“" #: actions/profilesettings.php:311 actions/profilesettings.php:310 #: actions/profilesettings.php:336 @@ -4833,7 +4426,7 @@ msgstr "Konnte Tags nicht speichern." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "Öffentliche Zeitleiste, Seite %d" @@ -4844,12 +4437,8 @@ msgstr "Konnte öffentlichen Stream nicht abrufen." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/" -"Mikro-blogging) Dienst " +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " #: actions/publictagcloud.php:57 #, fuzzy @@ -4877,9 +4466,8 @@ msgid "You can't register if you don't " msgstr "Du kannst dich nicht registrieren, wenn du nicht " #: actions/register.php:286 -#, fuzzy msgid "With this form you can create " -msgstr "Dieses Formular hilft die beim Erstellen von " +msgstr "Dieses Formular hilft dir beim Erstellen von " #: actions/register.php:368 #, fuzzy @@ -4887,9 +4475,8 @@ msgid "1-64 lowercase letters or numbers, " msgstr "1-64 Kleinbuchstaben oder Ziffern, " #: actions/register.php:382 actions/register.php:386 -#, fuzzy msgid "Used only for updates, announcements, " -msgstr "Verwendet nur für Updates und wichtige Mitteilungen, " +msgstr "Verwendet nur für Aktualisierungen und wichtige Mitteilungen, " #: actions/register.php:398 #, fuzzy @@ -4912,7 +4499,7 @@ msgid " except this private data: password, " msgstr " außer folgende private Daten: Passwort, " #: actions/register.php:471 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " msgstr "Gratuliere, %s! Und willkommen auf %%%%site.name%%%%. " @@ -4928,12 +4515,12 @@ msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "Antworten an %s, Seite %d" #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s favorite notices, page %d" msgstr "%ss favorisierte Nachrichten, Seite %d" @@ -4983,7 +4570,7 @@ msgid "Group actions" msgstr "Gruppenaktionen" #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "Nachrichtenfeed der Gruppe %s" @@ -5011,13 +4598,9 @@ msgid "All members" msgstr "Alle Mitglieder" #: actions/showgroup.php:378 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] " -"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " +#, php-format +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [mikro-blogging-Dienst](http://de.wikipedia.org/wiki/Mikro-blogging) " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -5074,13 +4657,9 @@ msgid "All groups" msgstr "Alle Gruppen" #: actions/showstream.php:542 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de." -"wikipedia.org/wiki/Mikro-blogging) Dienst " +#, php-format +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** hat ein Konto auf %%%%site.name%%%%, einem [mikro-blogging-Dienst](http://de.wikipedia.org/wiki/Mikro-blogging) " #: actions/smssettings.php:128 #, fuzzy @@ -5095,9 +4674,7 @@ msgstr "Schicke mir Nachrichten per SMS; " #: actions/smssettings.php:335 #, fuzzy msgid "A confirmation code was sent to the phone number you added. " -msgstr "" -"Ein Bestätigungscode wurde an die Telefonnummer gesendet, die du hinzugefügt " -"hast. " +msgstr "Ein Bestätigungscode wurde an die Telefonnummer gesendet, die du hinzugefügt hast. " #: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy @@ -5124,12 +4701,12 @@ msgid "Subscribed" msgstr "Abonniert" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "%s Abonnenten" #: actions/subscribers.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers, page %d" msgstr "%s Abonnenten, Seite %d" @@ -5139,17 +4716,17 @@ msgid "These are the people who listen to " msgstr "Folgende Leute lesen " #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "Folgende Leute " #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "%s Abonnements" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "%s Abonnements, Seite %d" @@ -5159,7 +4736,7 @@ msgid "These are the people whose notices " msgstr "Dies sind die Leute, deren Nachrichten " #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "Dies sind die Leute, deren " @@ -5169,14 +4746,14 @@ msgid "Jabber" msgstr "Jabber" #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "Nachrichten, die mit %s getagt sind, Seite %d" #: actions/tag.php:66 actions/tag.php:73 -#, fuzzy, php-format +#, php-format msgid "Messages tagged \"%s\", most recent first" -msgstr "Nachrichten getagt mit \"%s\", neueste zuerst" +msgstr "Nachrichten getagt mit „%s“, neueste zuerst" #: actions/tagother.php:33 #, fuzzy @@ -5189,7 +4766,7 @@ msgid "No id argument." msgstr "Kein id Argument." #: actions/tagother.php:65 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Tag %s" msgstr "Tag %s" @@ -5199,12 +4776,8 @@ msgid "Tag user" msgstr "Benutzer taggen" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Tags für diesen Benutzer (Buchstaben, Nummer, -, ., und _), durch Komma oder " -"Leerzeichen getrennt" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Tags für diesen Benutzer (Buchstaben, Nummer, -, ., und _), durch Komma oder Leerzeichen getrennt" #: actions/tagother.php:164 #, fuzzy @@ -5212,11 +4785,8 @@ msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert " -"haben." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert haben." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5225,9 +4795,7 @@ msgstr "Konnte Tags nicht speichern." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Benutze dieses Formular, um Tags zu deinen Abonnenten oder Abonnements " -"hinzuzufügen." +msgstr "Benutze dieses Formular, um Tags zu deinen Abonnenten oder Abonnements hinzuzufügen." #: actions/tagrss.php:35 #, fuzzy @@ -5235,7 +4803,7 @@ msgid "No such tag." msgstr "Tag nicht vorhanden." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" msgstr "Microblog getaggt mit %s" @@ -5256,22 +4824,21 @@ msgid "Not found." msgstr "Nicht gefunden." #: actions/twittersettings.php:71 -#, fuzzy msgid "Add your Twitter account to automatically send " -msgstr "Füge dein Twitter Konto hinzu zum automatischen Versenden von " +msgstr "Füge dein Twitter-Konto hinzu zum automatischen Versenden von " #: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" -msgstr "Twitter Benutzername" +msgstr "Twitter-Benutzername" #: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" -msgstr "Twitter Passwort" +msgstr "Twitter-Passwort" #: actions/twittersettings.php:228 actions/twittersettings.php:232 #: actions/twittersettings.php:248 msgid "Twitter Friends" -msgstr "Twitter Freunde" +msgstr "Twitter-Freunde" #: actions/twittersettings.php:327 #, fuzzy @@ -5279,7 +4846,7 @@ msgid "Username must have only numbers, " msgstr "Für den Benutzernamen gelten nur Nummern, " #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " msgstr "Konnte Kontoinformationen nicht abrufen " @@ -5322,17 +4889,13 @@ msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " -"ein paar Minuten ab." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in ein paar Minuten ab." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 msgid "You are banned from posting notices on this site." -msgstr "" -"Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." +msgstr "Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy @@ -5352,7 +4915,7 @@ msgid "Other options" msgstr "Sonstige Optionen" #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s - %s" msgstr "%s (%s)" @@ -5434,9 +4997,8 @@ msgstr "Unternavigation" #: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 #: lib/action.php:749 lib/action.php:770 lib/action.php:764 -#, fuzzy msgid "StatusNet software license" -msgstr "StatusNet Software Lizenz" +msgstr "StatusNet-Software-Lizenz" #: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 #, fuzzy @@ -5535,8 +5097,7 @@ msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Ort der Gruppe, optional, z.B. \"Stadt, Gebiet (oder Region), Land\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5549,7 +5110,7 @@ msgid "Admin" msgstr "Admin" #: lib/groupnav.php:101 lib/groupnav.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Edit %s group properties" msgstr "%s Gruppeneinstellungen bearbeiten" @@ -5559,7 +5120,7 @@ msgid "Logo" msgstr "Logo" #: lib/groupnav.php:107 lib/groupnav.php:113 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s logo" msgstr "%s Logo hinzufügen oder bearbeiten" @@ -5572,7 +5133,7 @@ msgid "Groups with most posts" msgstr "Gruppen mit den meisten Beiträgen" #: lib/grouptagcloudsection.php:56 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Tags in %s group's notices" msgstr "Tags in den Nachrichten der Gruppe %s" @@ -5606,37 +5167,29 @@ msgid "Login or register with OpenID" msgstr "Anmelden oder registrieren mit OpenID" #: lib/mail.php:175 -#, fuzzy, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Hallo, %s.\n" -"\n" +#, php-format, fuzzy +msgid "Hey, %s.\n\n" +msgstr "Hallo, %s.\n\n" #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s liest ab sofort " #: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Location: %s\n" msgstr "Standort: %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Homepage: %s\n" msgstr "Homepage: %s\n" #: lib/mail.php:258 lib/mail.php:257 -#, fuzzy, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Biografie: %s\n" -"\n" +#, php-format, fuzzy +msgid "Bio: %s\n\n" +msgstr "Biografie: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5644,12 +5197,12 @@ msgid "You've been nudged by %s" msgstr "Du wurdest von %s angestupst" #: lib/mail.php:465 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s (%2$s) is wondering what you are up to " msgstr "%s$s (%2$s) fragt sich was du so machst " #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" msgstr "%1$s hat deine Nachrichten von %2$s hinzugefügt" @@ -5722,7 +5275,7 @@ msgid "Send a nudge to this user" msgstr "Sende diesem Benutzer einen Stupser" #: lib/personaltagcloudsection.php:56 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Tags in %s's notices" msgstr "Tags in %ss Nachrichten" @@ -5767,23 +5320,23 @@ msgid "Untitled section" msgstr "Abschnitt ohne Titel" #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People %s subscribes to" msgstr "Leute, die %s abonniert hat" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "Leute, die %s abonniert haben" #: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of" msgstr "Gruppen zu denen %s gehört" #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein dir auf %s beizutreten" @@ -5820,17 +5373,17 @@ msgid "Unsubscribe from this user" msgstr "Lösche dein Abonnement von diesem Benutzer" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed der Freunde von %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed der Freunde von %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Feed der Freunde von %s" @@ -5840,7 +5393,7 @@ msgid "You and friends" msgstr "%s und Freunde" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Du kannst dein persönliches Avatar hochladen." @@ -5849,21 +5402,10 @@ msgstr "Du kannst dein persönliches Avatar hochladen." msgid "Avatar deleted." msgstr "Avatar aktualisiert." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion " -"ist irreversibel." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion ist irreversibel." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5873,64 +5415,27 @@ msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" -"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" +msgstr "Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "Du kannst ein Logo für Deine Gruppe hochladen." #: actions/grouplogo.php:367 actions/grouplogo.php:362 #, fuzzy msgid "Pick a square area of the image to be the logo." -msgstr "" -"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" +msgstr "Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Microblog von %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. " -"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " -"mindestens 3 Zeichen bestehen." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 Zeichen bestehen." #: actions/newmessage.php:102 #, fuzzy @@ -5938,18 +5443,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Fehler beim Senden der Nachricht" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "Suche im Stream nach \"%s\"" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort " -"ein, bevor die Änderungen an ihren Einstellungen übernommen werden." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort ein, bevor die Änderungen an ihren Einstellungen übernommen werden." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5966,35 +5467,10 @@ msgstr "Feed des öffentlichen Streams" msgid "Public Stream Feed (Atom)" msgstr "Feed des öffentlichen Streams" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, " -"Telefonnummer." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, Telefonnummer." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -6002,44 +5478,33 @@ msgstr "" msgid "Created" msgstr "Erstellen" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Gruppenprofil" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "s Profil" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Feed der Nachrichten von %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Feed der Nachrichten von %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Feed der Nachrichten von %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Postausgang von %s" @@ -6055,48 +5520,10 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Profil Einstellungen" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer " -"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf " -"den Code und die Anweisungen, um ihn zu benutzen." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf den Code und die Anweisungen, um ihn zu benutzen." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -6113,29 +5540,18 @@ msgstr "Kein solcher Benutzer" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter " -"zu übermitteln, " +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter zu übermitteln, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" -"Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden." +msgstr "Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " -"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " -"\"Abbrechen\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf \"Abbrechen\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -6144,12 +5560,8 @@ msgstr "Suche nach Leuten oder Text" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " -"ein paar Minuten ab." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in ein paar Minuten ab." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -6161,218 +5573,21 @@ msgstr "Verbinde zu IM, SMS, Twitter" msgid "Badge" msgstr "Stups" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " msgstr "Um die %s Facebookanwendung zu benutzen, musst du dich anmelden " -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s hat deine Nachrichten auf %2$s abonniert.\n" -"\n" -"\t%3$s\n" -"\n" -"Gruß,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s hat deine Nachrichten auf %2$s abonniert.\n\n %3$s\n\nGruß,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Suchen" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6389,12 +5604,12 @@ msgid "Block this user from this group" msgstr "Liste der Benutzer in dieser Gruppe." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Benutzerprofil" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s und Freunde, Seite %d" @@ -6418,56 +5633,26 @@ msgstr "Bestätigungscode" msgid "Do not delete this notice" msgstr "Die Nachricht konnte nicht gelöscht werden." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Ungültiger Tag: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Konnte keinen Favoriten erstellen." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6478,14 +5663,6 @@ msgstr "Neue Nachricht" msgid "No notice" msgstr "Neue Nachricht" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6497,10 +5674,6 @@ msgstr "Ungültiger Nutzername." msgid "No group specified." msgstr "Kein Profil angegeben." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6517,18 +5690,6 @@ msgstr "Du bist kein Mitglied dieser Gruppe." msgid "Block user from group" msgstr "Benutzer blockieren" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6539,12 +5700,6 @@ msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." msgid "Group design" msgstr "Gruppen" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6577,233 +5732,46 @@ msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" msgid "Make Admin" msgstr "Admin" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Keine Ergebnisse" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Dieser Benutzer hat dich blockiert." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Nachricht" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Konnte Profil nicht speichern." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben " -"Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profil Einstellungen" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/" -"Mikro-blogging) Dienst " - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-" -"Mail Adresse, die in deinem Account eingetragen ist, ein neues zusenden " -"lassen." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-Mail Adresse, die in deinem Account eingetragen ist, ein neues zusenden lassen." #: actions/recoverpassword.php:158 #, fuzzy @@ -6825,87 +5793,30 @@ msgstr "Fehler beim Bestätigungscode." msgid "Subscribe to a remote user" msgstr "Abonniere diesen Benutzer" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "%ss favorisierte Nachrichten, Seite %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Nachrichtenfeed der Gruppe %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Nachrichtenfeed der Gruppe %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Nachrichtenfeed der Gruppe %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] " -"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] (http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6918,84 +5829,33 @@ msgid "Not a local notice" msgstr "Kein lokaler Benutzer." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Nachrichten, die mit %s getagt sind" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Nachrichtenfeed der Gruppe %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de." -"wikipedia.org/wiki/Mikro-blogging) Dienst " - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s liest ab sofort " #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed der Nachrichten von %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Feed der Nachrichten von %s" @@ -7026,20 +5886,16 @@ msgid "Could not find target user." msgstr "Konnte keine Statusmeldungen finden." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s Antworten an %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates von %1$s auf %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -7055,127 +5911,41 @@ msgstr "%s Abonnements" msgid "Profile design" msgstr "Profil Einstellungen" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Du bist kein Mitglied dieser Gruppe." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problem bei Speichern der Nachricht." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Nachricht an %1$s auf %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Benutzerprofil" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profil" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Hochladen" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Ändere dein Passwort" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -7191,127 +5961,21 @@ msgstr "Suchen" msgid "Links" msgstr "Liste" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Blockieren" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Benutzer blockieren" #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "%s Logo hinzufügen oder bearbeiten" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7327,26 +5991,10 @@ msgstr "Benutzer" msgid "Search help" msgstr "Suchen" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" -msgstr "" -"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" +msgstr "Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 @@ -7355,12 +6003,12 @@ msgid "No such page" msgstr "Tag nicht vorhanden." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Direkte Nachricht an %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Das ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." @@ -7369,12 +6017,8 @@ msgstr "Das ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." msgid "Could not unfollow user: User not found." msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." @@ -7384,7 +6028,7 @@ msgid "You are already a member of that group." msgstr "Du bist bereits Mitglied dieser Gruppe" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" @@ -7394,44 +6038,30 @@ msgid "You are not a member of this group." msgstr "Du bist kein Mitglied dieser Gruppe." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "%s Gruppen" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "Gruppen zu denen %s gehört" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Gruppenaktionen" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." -msgstr "" -"Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" +msgstr "Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy @@ -7444,12 +6074,12 @@ msgid "Post to " msgstr "Foto" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Updates von %1$s auf %2$s!" @@ -7484,7 +6114,7 @@ msgid "Cannot read file." msgstr "Daten verloren." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Updates von %1$s auf %2$s!" @@ -7494,40 +6124,17 @@ msgid "IM is not available." msgstr "Diese Seite liegt in nicht verfügbar in einem " #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? " -"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit " -"[OpenID](%%action.openidlogin%%)." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? [Registriere](%%action.register%%) ein neues Konto oder versuche es mit [OpenID](%%action.openidlogin%%)." #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Alle Aktualisierungen, die den Suchbegriff \"%s\" enthalten" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Beschreibe dich selbst in 140 Zeichen" @@ -7537,20 +6144,13 @@ msgid "Describe yourself and your interests" msgstr "Beschreibe dich selbst und deine " #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Die Biografie ist zu lang (max. 140 Zeichen)" -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Ungültige Profil-URL (kein YADIS-Dokument)." #: actions/remotesubscribe.php:176 @@ -7563,51 +6163,33 @@ msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." msgid "Couldn’t get a request token." msgstr "Konnte keinen Anfrage-Token bekommen." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Nachrichtenfeed der Gruppe %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Nachricht an %1$s auf %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed der Favoriten von %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed der Favoriten von %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Feed der Favoriten von %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "%s Gruppe" @@ -7622,80 +6204,32 @@ msgid "SMS is not available." msgstr "Diese Seite liegt in nicht verfügbar in einem " #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed der Nachrichten von %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " -"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " -"\"Abbrechen\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf \"Abbrechen\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL " -"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " -"bestätigt werden. Dein Abonnement-Token ist:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements bestätigt werden. Dein Abonnement-Token ist:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " -"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " -"vollständig abgelehnt werden. Dein Abonnement-Token ist:" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements vollständig abgelehnt werden. Dein Abonnement-Token ist:" #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Konnte Avatar-URL nicht öffnen '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Falscher Bildtyp für '%s'" @@ -7710,35 +6244,27 @@ msgid "Site content license" msgstr "StatusNet Software Lizenz" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Die bestätigte Emailadresse konnte nicht gespeichert werden." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Stups abgeschickt" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Auf diese Nachricht antworten" @@ -7747,54 +6273,11 @@ msgstr "Auf diese Nachricht antworten" msgid "Error saving notice." msgstr "Problem bei Speichern der Nachricht." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Kein Bestätigungs-Code." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7811,70 +6294,25 @@ msgid "Describe the group or topic" msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Feed der Nachrichten von %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s hat deine Nachricht als Favorit gespeichert" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "von" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7884,3 +6322,4 @@ msgstr "Konnte Favoriten nicht löschen." #, fuzzy msgid "Duplicate notice" msgstr "Notiz löschen" + diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 641ebc5e56..3751720a54 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -8,14 +8,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:57:42+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:08+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: out-statusnet\n" @@ -29,92 +28,14 @@ msgstr "Αναζήτηση ροής για \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, " -"διεύθυνση IM, τηλεφωνικό νούμερο." +msgid " except this private data: password, email address, IM address, phone number." +msgstr "εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, διεύθυνση IM, τηλεφωνικό νούμερο." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " msgstr "από" -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" - -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "" - -#: ../lib/mail.php:126 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "" - #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 #: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 @@ -143,14 +64,6 @@ msgstr "Δημόσια ροή %s" msgid "%s and friends" msgstr "%s και οι φίλοι του/της" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "" - #: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" @@ -161,47 +74,26 @@ msgstr "Κατάσταση του/της %s" #: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 #: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s timeline" msgstr "Χρονοδιάγραμμα του χρήστη %s" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "" - #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Σύντομα θα λάβετε μέσω ηλεκτρονικού ταχυδρομείου ένα μήνυμα με οδηγίες για " -"την επιβεβαίωση της ηλεκτρονικής σας διεύθυνσης.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Σύντομα θα λάβετε μέσω ηλεκτρονικού ταχυδρομείου ένα μήνυμα με οδηγίες για την επιβεβαίωση της ηλεκτρονικής σας διεύθυνσης.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 -#, fuzzy, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " -"έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " +#, php-format, fuzzy +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 -#, fuzzy, php-format +#, php-format, fuzzy msgid "**%%site.name%%** is a microblogging service. " -msgstr "" -"Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " - -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "" +msgstr "Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -235,31 +127,17 @@ msgstr "6 ή περισσότεροι χαρακτήρες. Απαραίτητο #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση IM που προσθέσατε. " -"Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. " +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση IM που προσθέσατε. Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. " #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση email που " -"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " -"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση email που προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που " -"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " -"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -440,46 +318,20 @@ msgstr "Αυτόματη σύνδεση στο μέλλον. ΟΧΙ για κο #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 #, fuzzy -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση " -"κυρίως από λογισμικό και όχι ανθρώπους)" - -#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 -#: actions/profilesettings.php:34 actions/avatarsettings.php:65 -#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 -#: actions/avatarsettings.php:67 actions/showgroup.php:211 -#: actions/showgroup.php:216 actions/showgroup.php:221 -#: lib/accountsettingsaction.php:111 -msgid "Avatar" -msgstr "" - -#: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 -msgid "Avatar updated." -msgstr "" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση κυρίως από λογισμικό και όχι ανθρώπους)" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 -#, fuzzy, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το Jabber/GTalk " -"λογαριασμό σου για μήνυμα με περαιτέρω οδηγίες. (Πρόσθεσες το χρήστη %s στη " -"λίστα φίλων?)" +#, php-format, fuzzy +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το Jabber/GTalk λογαριασμό σου για μήνυμα με περαιτέρω οδηγίες. (Πρόσθεσες το χρήστη %s στη λίστα φίλων?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 #, fuzzy -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το mail σου (και το " -"φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. " +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το mail σου (και το φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. " #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -514,12 +366,6 @@ msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστ msgid "Can't delete this notice." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "" - #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 @@ -558,11 +404,6 @@ msgstr "Αδυναμία κανονικοποίησης αυτής της email msgid "Change" msgstr "Αλλαγή" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" - #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" @@ -605,11 +446,6 @@ msgstr "Επιβεβαίωση διεύθυνσης" msgid "Confirmation cancelled." msgstr "Η επιβεβαίωση ακυρώθηκε." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "" - #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." @@ -617,38 +453,9 @@ msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 -#, fuzzy, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Συγχαρητήρια, %s! και καλωσήρθες στο %%%%site.name%%%%. Από εδώ μπορείς " -"να...\n" -"\n" -"* Πας στο [your profile](%s) και να στείλεις το πρώτο σου μήνυμα.\n" -"* Προσθέσεις ένα [Jabber/GTalk address](%%%%action.imsettings%%%%) ώστε να " -"δέχεσε μηνύματα στο instant messager σου.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) που μπορεί να ξέρεις ή " -"που έχουν τα ίδια ενδιαφέροντα με σένα. \n" -"* Ενημερώσεις το προφίλ σου [profile settings](%%%%action.profilesettings%%%" -"%) για να μάθουν οι άλλοι περισσότερα για σένα. \n" -"* Διαβάσεις τα [online docs](%%%%doc.help%%%%) για λειτουργίες που μπορεί να " -"μην έχεις μάθει ακόμα. \n" -"\n" -"Ευχαριστούμε που εγγράφηκες και ευχόμαστε να περάσεις καλά με την υπηρεσία " -"μας." +#, php-format, fuzzy +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Συγχαρητήρια, %s! και καλωσήρθες στο %%%%site.name%%%%. Από εδώ μπορείς να...\n\n* Πας στο [your profile](%s) και να στείλεις το πρώτο σου μήνυμα.\n* Προσθέσεις ένα [Jabber/GTalk address](%%%%action.imsettings%%%%) ώστε να δέχεσε μηνύματα στο instant messager σου.\n* [Search for people](%%%%action.peoplesearch%%%%) που μπορεί να ξέρεις ή που έχουν τα ίδια ενδιαφέροντα με σένα. \n* Ενημερώσεις το προφίλ σου [profile settings](%%%%action.profilesettings%%%%) για να μάθουν οι άλλοι περισσότερα για σένα. \n* Διαβάσεις τα [online docs](%%%%doc.help%%%%) για λειτουργίες που μπορεί να μην έχεις μάθει ακόμα. \n\nΕυχαριστούμε που εγγράφηκες και ευχόμαστε να περάσεις καλά με την υπηρεσία μας." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -680,8 +487,7 @@ msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s " #: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "" -"Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." +msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 @@ -743,11 +549,6 @@ msgstr "Απέτυχε η διαγραφή συνδρομής." msgid "Couldn't find any statuses." msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "" - #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 @@ -845,10 +646,6 @@ msgstr "Τρέχων επιβεβαιωμένο, μέσω SMS, νούμερο κ msgid "Current confirmed email address." msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση." -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "" - #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 #: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format @@ -918,114 +715,11 @@ msgstr "Διευθύνσεις email" msgid "Enter a nickname or email address." msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "" - -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "" - -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "" - -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "" - -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "" - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "" - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "" - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 -msgid "Error saving user; invalid." -msgstr "" - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -msgid "Error setting user." -msgstr "" - -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "" - -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "" - -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "" - -#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 -msgid "Existing nickname" -msgstr "" - #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 #: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Συχνές ερωτήσεις" -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -msgid "Failed updating avatar." -msgstr "" - #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 #: actions/allrss.php:110 actions/allrss.php:118 @@ -1040,29 +734,9 @@ msgstr "Ροή φίλων του/της %s" msgid "Feed for replies to %s" msgstr "Ροή απαντήσεων προς τον/την %s" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό " -"σας, πριν αλλάξετε τις ρυθμίσεις σας." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό σας, πριν αλλάξετε τις ρυθμίσεις σας." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1147,28 +821,16 @@ msgstr "Ρυθμίσεις ΙΜ" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για " -"να τον συνδέσετε στο OpenID σας." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για να τον συνδέσετε στο OpenID σας." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Εάν θέλετε να προσθέσετε ένα OpenID στον λογαριασμό σας, πληκτρολογήστε τον " -"από κάτω και πατήστε \"Προσθήκη\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Εάν θέλετε να προσθέσετε ένα OpenID στον λογαριασμό σας, πληκτρολογήστε τον από κάτω και πατήστε \"Προσθήκη\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί " -"καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1198,137 +860,8 @@ msgstr "Λάθος όνομα χρήστη ή κωδικός" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Οδηγίες για την ανάκτηση του κωδικού σας έχουν σταλεί στην διεύθυνση email " -"που έχετε καταχωρίσει στον λογαριασμό σας." - -#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 actions/updateprofile.php:120 -#, php-format -msgid "Invalid avatar URL '%s'" -msgstr "" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "" - -#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 actions/updateprofile.php:104 -#, php-format -msgid "Invalid homepage '%s'" -msgstr "" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "" - -#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 actions/updateprofile.php:93 -#, php-format -msgid "Invalid profile URL '%s'." -msgstr "" - -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "" - -#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 -#: actions/avatarbynickname.php:69 -msgid "Invalid size." -msgstr "" - -#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 -#: ../actions/register.php:111 actions/finishopenidlogin.php:241 -#: actions/register.php:103 actions/register.php:121 -#: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 actions/finishopenidlogin.php:284 -#: actions/finishopenidlogin.php:307 actions/register.php:230 -#: actions/register.php:251 actions/register.php:237 actions/register.php:258 -msgid "Invalid username or password." -msgstr "" - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "" - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Οδηγίες για την ανάκτηση του κωδικού σας έχουν σταλεί στην διεύθυνση email που έχετε καταχωρίσει στον λογαριασμό σας." #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -1383,100 +916,30 @@ msgstr "Συνδεθείτε με έναν λογαριασμό [OpenID](%%doc.o #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη " -"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " -"δοκιμάστε το [OpenID](%%action.openidlogin%%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή δοκιμάστε το [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Αποσύνδεση" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Χάσατε ή ξεχάσατε τον κωδικό σας;" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Μέλος από" -#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 -#: actions/userrss.php:93 -#, php-format -msgid "Microblog by %s" -msgstr "" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 -msgid "My text and files are available under " -msgstr "" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Νέο ψευδώνυμο" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "" - #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 @@ -1485,11 +948,6 @@ msgstr "" msgid "New password" msgstr "Νέος κωδικός" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "" - #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 #: actions/profilesettings.php:74 actions/register.php:165 @@ -1551,415 +1009,6 @@ msgstr "Το ψευδώνυμο του χρήστη που θέλετε να π msgid "Nickname or email" msgstr "Ψευδώνυμο ή email" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" - -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "" - -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "" - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "" - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "" - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "" - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "" - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "" - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "" - -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "" - -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "" - -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "" - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "" - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "" - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "" - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "" - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "" - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "" - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 -msgid "Not a supported data format." -msgstr "" - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "" - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 -msgid "Not a valid email address." -msgstr "" - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 -msgid "Not a valid nickname." -msgstr "" - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "" - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "" - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "" - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -msgid "Not found" -msgstr "" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "" - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "" - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "" - #: ../actions/openidsettings.php:144 actions/openidsettings.php:153 #: actions/openidsettings.php:231 msgid "OpenID removed." @@ -1970,16 +1019,6 @@ msgstr "Το OpenID αφαιρέθηκε." msgid "OpenID settings" msgstr "Ρυθμίσεις OpenID" -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "" - #: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 #: ../actions/register.php:153 ../lib/settingsaction.php:93 #: actions/finishopenidlogin.php:96 actions/login.php:102 @@ -2005,14 +1044,6 @@ msgstr "Ο κωδικός και η επιβεβαίωση του δεν ταυ msgid "Password must be 6 chars or more." msgstr "Ο κωδικός πρέπει να είναι 6 χαρακτήρες ή περισσότεροι." -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "" - #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 @@ -2029,48 +1060,11 @@ msgstr "Ο κωδικός αποθηκεύτηκε." msgid "Passwords don't match." msgstr "Οι κωδικοί δεν ταυτίζονται." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "" - #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Προσωπικά" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" - #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 #: actions/imsettings.php:68 actions/smssettings.php:94 @@ -2093,1844 +1087,13 @@ msgstr "Προτιμήσεις" msgid "Preferences saved." msgstr "Οι προτιμήσεις αποθηκεύτηκαν" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "" - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 -msgid "Register" -msgstr "" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 -msgid "Registration successful" -msgstr "" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -msgid "Remember me" -msgstr "" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -msgid "Same as password above. Required." -msgstr "" - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "" - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "" - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "" - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "" - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -msgid "Subscribe" -msgstr "" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "" - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -msgid "Tags" -msgstr "" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "" - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "" - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "" - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "" - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "" - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "" - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "" - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "" - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "" - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "" - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "" - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "" - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "" - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "" - -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -msgid "This method requires a POST." -msgstr "" - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 -msgid "Two user ids or screen_names must be supplied." -msgstr "" - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -msgid "Unexpected form submission." -msgstr "" - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "" - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "" - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "" - -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" - -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 -msgid "User has no profile." -msgstr "" - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "" - -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" - -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "" - -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "" - -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "" - -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "" - -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "" - -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" - -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "" - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "" - -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" - -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" - -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "" - -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 -msgid "You can't register if you don't agree to the license." -msgstr "" - -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "" - -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "" - -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" - -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 -msgid "a few seconds ago" -msgstr "" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 -#, php-format -msgid "about %d days ago" -msgstr "" - -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 -#, php-format -msgid "about %d hours ago" -msgstr "" - -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 -#, php-format -msgid "about %d minutes ago" -msgstr "" - -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 -#, php-format -msgid "about %d months ago" -msgstr "" - -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 -msgid "about a day ago" -msgstr "" - -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 -msgid "about a minute ago" -msgstr "" - -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 -msgid "about a month ago" -msgstr "" - -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 -msgid "about a year ago" -msgstr "" - -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 -msgid "about an hour ago" -msgstr "" - -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "" - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "" - -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -msgid "Password must be 6 or more characters." -msgstr "" - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" - -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "" - -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" - #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s και οι φίλοι του/της" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" - #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -3939,51 +1102,6 @@ msgstr "" msgid "Avatar settings" msgstr "Ρυθμίσεις OpenID" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -3991,73 +1109,6 @@ msgstr "" msgid "Lost our file." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" - -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "" - -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "" - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " -msgstr "" - -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "" - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" - #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -4081,20 +1132,6 @@ msgstr "Νέο ψευδώνυμο" msgid "No such group" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -4111,309 +1148,44 @@ msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστ msgid "Could not update group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "" - -#: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format -msgid "Awaiting confirmation on this address. " -msgstr "" - -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " msgstr "Η διεύθυνση email υπάρχει ήδη." -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "" - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" - -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "" - -#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 -#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 -#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 -#: lib/action.php:1070 -msgid "Before" -msgstr "" - -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" - #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "Ροή φίλων του/της %s" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "" - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" - #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "Οι προτιμήσεις αποθηκεύτηκαν" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" - -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "" - -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "Προτιμήσεις" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "" - -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "" - -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "" - -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Αποσύνδεση" -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "" - -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Δημιουργία νέου λογαριασμού" -#: actions/groupsearch.php:57 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "" - -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" - -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "" - #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" - -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "" - -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "" - -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" - #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -4422,48 +1194,6 @@ msgstr "" msgid "No such group." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "" - -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "" - -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" -msgstr "" - -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" - #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -4476,69 +1206,16 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "Could not set group membership." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "" - -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" - -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "" - -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" - #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Ρυθμίσεις OpenID" -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "" - #: actions/othersettings.php:60 #, fuzzy msgid "Other Settings" msgstr "Ρυθμίσεις OpenID" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - -#: actions/othersettings.php:112 -msgid "Service" -msgstr "" - -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" - #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -4556,189 +1233,18 @@ msgstr "Αλλαγή κωδικού" msgid "Password change" msgstr "Ο κωδικός αποθηκεύτηκε." -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format -msgid "Not a valid people tag: %s" -msgstr "" - -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "" - -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "" - -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" -msgstr "" - #: actions/profilesettings.php:311 actions/profilesettings.php:310 #: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" -msgstr "" - -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" - -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "" - -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "" - -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "" - -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "" - -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "" - -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "" - -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "" - -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr "" - -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" - -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" -msgstr "" - -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "" - -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 -msgid "Note" -msgstr "" - -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" -msgstr "" - #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 #: actions/showgroup.php:430 actions/showgroup.php:381 @@ -4747,36 +1253,6 @@ msgstr "" msgid "Members" msgstr "Μέλος από" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "" - -#: actions/showstream.php:73 actions/showstream.php:78 -#, php-format -msgid "%s, page %d" -msgstr "" - #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -4789,197 +1265,21 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "User profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -msgid "User actions" -msgstr "" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 -msgid "Send a direct message to this user" -msgstr "" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 -msgid "Message" -msgstr "" - -#: actions/showstream.php:451 lib/profileaction.php:157 -msgid "All subscribers" -msgstr "" - -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "" - -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "" - -#: actions/smssettings.php:335 -msgid "A confirmation code was sent to the phone number you added. " -msgstr "" - -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" - -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "" - #: actions/subedit.php:83 #, fuzzy msgid "Could not save subscription." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "" - -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "" - -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "" - -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "" - -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "" - #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: actions/subscriptions.php:54 -#, php-format -msgid "%s subscriptions, page %d" -msgstr "" - -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "" - -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "" - -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "" - -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "" - -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "" - -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "" - -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "" - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "" - -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" - -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "" - -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" - #: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Όνομα χρήστη στο Twitter" @@ -4997,219 +1297,27 @@ msgstr "Φίλοι στο Twitter" msgid "Username must have only numbers, " msgstr "Το όνομα χρήστη πρέπει να έχει μόνο νούμερα," -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "" - -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "" - -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" - -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "" - -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "" - -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" - -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "" - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "" - -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" - #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Περί" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Δημιουργία νέου λογαριασμού" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "" - #: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Βοήθεια" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "" - -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "" - -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "" - -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "" - -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "" - -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "" - -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Δημιουργία νέου λογαριασμού" -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "" - -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "" - -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" - -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" - -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "" - -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "" - #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 msgid "Description" @@ -5221,8 +1329,7 @@ msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \"Πόλη, Περιοχή, Χώρα)" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5255,11 +1362,6 @@ msgstr "Ομάδες με τα περισσότερα μέλη" msgid "Groups with most posts" msgstr "Ομάδες με τις περισσότερες δημοσιεύσεις" -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" - #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -5289,114 +1391,35 @@ msgstr "Σύνδεση ή δημιουργία λογαριασμού με OpenI #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Γεια σου, %s.\n" -"\n" - -#: lib/mail.php:236 -#, php-format -msgid "%1$s is now listening to " -msgstr "" +msgid "Hey, %s.\n\n" +msgstr "Γεια σου, %s.\n\n" #: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Location: %s\n" msgstr "Τοποθεσία: %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Homepage: %s\n" msgstr "Αρχική σελίδα: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Βιογραφικό: %s\n" -"\n" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "" - -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - -#: lib/mail.php:555 -#, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "" +msgid "Bio: %s\n\n" +msgstr "Βιογραφικό: %s\n\n" #: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 #: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Από" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "" - -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "" - #: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 #: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 ή περισσότεροι χαρακτήρες" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "" - -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "" - -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "" - -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "" - -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" - -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - #: lib/profilelist.php:182 lib/profilelist.php:180 #: lib/subscriptionlist.php:126 #, fuzzy @@ -5436,31 +1459,12 @@ msgstr "Βρες ομάδες στο site" msgid "Untitled section" msgstr "Ενότητα χωρίς τίτλο" -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" -msgstr "" - -#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format -msgid "People subscribed to %s" -msgstr "" - -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "" - #: lib/subscribeform.php:115 lib/subscribeform.php:139 #: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" @@ -5474,31 +1478,18 @@ msgstr "Κανένα" msgid "Top posters" msgstr "Κορυφαίοι δημοσιευτές" -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "" - #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Ροή φίλων του/της %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Ροή φίλων του/της %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Ροή φίλων του/της %s" @@ -5507,148 +1498,30 @@ msgstr "Ροή φίλων του/της %s" msgid "You and friends" msgstr "%s και οι φίλοι του/της" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" - #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Ρυθμίσεις OpenID" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - -#: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format -msgid "Microblog by %s group" -msgstr "" - -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" - #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "Αναζήτηση ροής για \"%s\"" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό " -"σας, πριν αλλάξετε τις ρυθμίσεις σας." - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" -msgstr "" - -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό σας, πριν αλλάξετε τις ρυθμίσεις σας." #: actions/public.php:135 actions/public.php:143 actions/public.php:159 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Δημόσια ροή %s" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, " -"διεύθυνση IM, τηλεφωνικό νούμερο." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, διεύθυνση IM, τηλεφωνικό νούμερο." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5656,100 +1529,26 @@ msgstr "" msgid "Created" msgstr "Δημιουργία" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/showstream.php:163 actions/showstream.php:128 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:170 actions/showstream.php:135 -#, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "" - -#: actions/showstream.php:177 actions/showstream.php:142 -#, php-format -msgid "Notice feed for %s (Atom)" -msgstr "" - -#: actions/showstream.php:182 actions/showstream.php:147 -#, php-format -msgid "FOAF for %s" -msgstr "" - -#: actions/showstream.php:237 actions/showstream.php:202 -#: actions/showstream.php:234 -msgid "Edit Avatar" -msgstr "" - #: actions/showstream.php:316 actions/showstream.php:281 #: actions/showstream.php:366 #, fuzzy msgid "Edit profile settings" msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που " -"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " -"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5764,279 +1563,21 @@ msgstr "" msgid "No such user!" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για " -"να τον συνδέσετε στο OpenID σας." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" -msgstr "" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -msgid "No such attachment." -msgstr "" - -#: actions/block.php:149 -msgid "Do not block this user from this group" -msgstr "" - -#: actions/block.php:150 -msgid "Block this user from this group" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για να τον συνδέσετε στο OpenID σας." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s και οι φίλοι του/της" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - -#: actions/blockedfromgroup.php:281 -msgid "Unblock user from group" -msgstr "" - #: actions/conversation.php:99 #, fuzzy msgid "Conversation" @@ -6047,56 +1588,19 @@ msgstr "Τοποθεσία" msgid "Do not delete this notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - -#: actions/editgroup.php:223 actions/newgroup.php:173 -#: actions/apigroupcreate.php:312 actions/editgroup.php:224 -#: actions/newgroup.php:168 -#, php-format -msgid "Invalid alias: \"%s\"" -msgstr "" - #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6107,66 +1611,6 @@ msgstr "Μήνυμα" msgid "No notice" msgstr "Μήνυμα" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -msgid "Not a valid invitation code." -msgstr "" - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -msgid "User is already blocked from group." -msgstr "" - -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "" - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" -msgstr "" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6175,887 +1619,149 @@ msgstr "" msgid "Couldn't update your design." msgstr "Απέτυχε η ενημέρωση του χρήστη." -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "Οι προτιμήσεις αποθηκεύτηκαν" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - #: actions/groupmembers.php:470 actions/groupmembers.php:473 #, fuzzy msgid "Make Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." -msgstr "" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." -msgstr "" - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Απέτυχε η αποθήκευση του προφίλ." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" -msgstr "" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί " -"καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." - -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." #: actions/recoverpassword.php:188 #, fuzzy msgid "Password recover" msgstr "Ο κωδικός αποθηκεύτηκε." -#: actions/register.php:86 -msgid "Sorry, invalid invitation code." -msgstr "" - #: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 #, fuzzy msgid "Subscribe to a remote user" msgstr "Γίνε συνδρομητής αυτού του χρήστη" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "%s και οι φίλοι του/της" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy msgid "Admins" msgstr "Διαχειριστής" -#: actions/shownotice.php:101 -msgid "Not a local notice" -msgstr "" - -#: actions/showstream.php:72 -#, php-format -msgid " tagged %s" -msgstr "" - -#: actions/showstream.php:121 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format -msgid "%s is not listening to anyone." -msgstr "" - -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" - -#: actions/tag.php:91 actions/tag.php:98 -#, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "Απέτυχε η ενημέρωση του χρήστη." -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "" - -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" -msgstr "" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, php-format -msgid "%s is not a member of any group." -msgstr "" - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -msgid "Problem saving notice. Too long." -msgstr "" - -#: classes/User.php:319 classes/User.php:327 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Αλλάξτε τον κωδικό σας" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "Σύνδεση" -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "" - #: lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "Σύνδεση" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -msgid "Blocked" -msgstr "" - -#: lib/groupnav.php:101 -#, php-format -msgid "%s blocked users" -msgstr "" - #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -msgid "in context" -msgstr "" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" -msgstr "" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "" - #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: actions/apigroupjoin.php:110 -msgid "You are already a member of that group." -msgstr "" - #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" -#: actions/apigroupleave.php:114 -msgid "You are not a member of this group." -msgstr "" - #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "Ομάδες χρηστών" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "Ομάδες με τα περισσότερα μέλη" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Βρες ομάδες στο site" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 -#, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." -msgstr "" - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." -msgstr "" - #: actions/finishremotesubscribe.php:109 #, fuzzy msgid "Could not convert request token to access token." msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/getfile.php:75 #, fuzzy msgid "No such file." @@ -7066,51 +1772,23 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "Cannot read file." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη " -"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " -"δοκιμάστε το [OpenID](%%action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή δοκιμάστε το [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" @@ -7120,330 +1798,72 @@ msgid "Describe yourself and your interests" msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "" - -#: actions/repliesrss.php:72 -#, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "" - #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Ροή φίλων του/της %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Ροή φίλων του/της %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Ροή φίλων του/της %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/shownotice.php:90 -msgid "Notice deleted." -msgstr "" - #: actions/smssettings.php:91 #, fuzzy msgid "SMS is not available." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." -#: actions/tag.php:92 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - -#: actions/userauthorization.php:343 -#, php-format -msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:348 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - #: lib/action.php:435 #, fuzzy msgid "Connect to services" msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" -#: lib/action.php:785 -msgid "Site content license" -msgstr "" - #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:439 -#, php-format -msgid "Reply to %s sent" -msgstr "" - -#: lib/command.php:441 -msgid "Error saving notice." -msgstr "" - -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "" - -#: lib/mail.php:554 -#, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "από" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" - #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Διαγραφή μηνύματος" + diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 301080951e..bed732a7a2 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -9,14 +9,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:57:52+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:10+0000\n" "Language-Team: British English\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: out-statusnet\n" @@ -30,11 +29,8 @@ msgstr " Search Stream for \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" except this private data: password, e-mail address, IM address, phone " -"number." +msgid " except this private data: password, email address, IM address, phone number." +msgstr " except this private data: password, e-mail address, IM address, phone number." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -56,60 +52,8 @@ msgstr "%1$s has invited you to join them on %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -119,20 +63,8 @@ msgstr "%1$s is now listening to your notices on %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -208,22 +140,14 @@ msgstr "%s updates from everyone!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(You should receive a message by e-mail momentarily, with instructions on " -"how to confirm your e-mail address.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(You should receive a message by e-mail momentarily, with instructions on how to confirm your e-mail address.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%)." +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -267,29 +191,17 @@ msgstr "6 or more characters. Required." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"A confirmation code was sent to the e-mail address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "A confirmation code was sent to the e-mail address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -469,10 +381,8 @@ msgstr "Automatically login in the future; not for shared computers!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Automatically subscribe to whoever subscribes to me (best for non-humans)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -490,22 +400,14 @@ msgstr "Avatar updated." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 -#, fuzzy, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +#, php-format, fuzzy +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -642,36 +544,8 @@ msgstr "Confirmation code not found." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -1078,12 +952,8 @@ msgid "Find people on this site" msgstr "Find people on this site" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "For security reasons, please re-enter your user name and password before changing your settings." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1168,28 +1038,16 @@ msgstr "I.M. Settings" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "If you already have an account, login with your username and password to connect it to your OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"e-mail address you have stored in your account." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "If you've forgotten or lost your password, you can get a new one sent to the e-mail address you have stored in your account." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1219,12 +1077,8 @@ msgstr "Incorrect username or password." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Instructions for recovering your password have been sent to the e-mail " -"address registered to your account." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Instructions for recovering your password have been sent to the e-mail address registered to your account." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1320,14 +1174,8 @@ msgstr "Invite new users" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public Licence](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public Licence](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1337,12 +1185,8 @@ msgstr "Jabber ID already belongs to another user." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1409,14 +1253,8 @@ msgstr "Login with an [OpenID](%%doc.openid%%) account." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1460,13 +1298,9 @@ msgstr "Microblog by %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 -#, fuzzy, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over e-" -"mail but isn't listed here, send e-mail to let us know at %s." +#, php-format, fuzzy +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Mobile carrier for your phone. If you know a carrier that accepts SMS over e-mail but isn't listed here, send e-mail to let us know at %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -2089,14 +1923,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Phone number, no punctuation or spaces, with area code" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2279,12 +2107,8 @@ msgid "Remove OpenID" msgstr "Remove OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2380,21 +2204,13 @@ msgstr "Search Stream Feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2431,18 +2247,13 @@ msgstr "Send me notices through Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 #, fuzzy -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "Send me replies through Jabber/GTalk from people I'm not subscribed to." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2674,25 +2485,13 @@ msgstr "The address was removed." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"The subscription has been authorised, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorise the " -"subscription. Your subscription token is:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "The subscription has been authorised, but no callback URL was passed. Check with the site's instructions for details on how to authorise the subscription. Your subscription token is:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2718,34 +2517,22 @@ msgstr "These are the people whose notices you listen to." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"These people are already users and you were automatically subscribed to them:" +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "These people are already users and you were automatically subscribed to them:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "This confirmation code is too old. Please start again." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2794,14 +2581,8 @@ msgstr "Timezone not selected." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2855,12 +2636,8 @@ msgid "Unknown version of OMB protocol." msgstr "Unknown version of OMB protocol." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2921,16 +2698,8 @@ msgid "Upload" msgstr "Upload" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site licence, also. Use a picture that belongs to you and that you want to " -"share." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site licence, also. Use a picture that belongs to you and that you want to share." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2938,10 +2707,8 @@ msgstr "Upload a new profile image" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Use this form to invite your friends and colleagues to use this service." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Use this form to invite your friends and colleagues to use this service." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -3034,12 +2801,8 @@ msgid "You already have this OpenID!" msgstr "You already have this OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "You are about to permanently delete a notice. Once this is done, it cannot be undone." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3071,29 +2834,19 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "You can receive SMS messages through e-mail from %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "You can remove an OpenID from your account by clicking the button marked \"Remove\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"You can update your personal profile info here so people know more about you." +msgid "You can update your personal profile info here so people know more about you." +msgstr "You can update your personal profile info here so people know more about you." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3117,24 +2870,8 @@ msgstr "You did not send us that profile" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"You have a new posting address on %1$s.\n" -"\n" -"Send e-mail to %2$s to post new messages.\n" -"\n" -"More e-mail instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "You have a new posting address on %1$s.\n\nSend e-mail to %2$s to post new messages.\n\nMore e-mail instructions at %3$s.\n\nFaithfully yours,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3150,12 +2887,8 @@ msgstr "You must be logged in to invite other users to use %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3173,12 +2906,8 @@ msgstr "Your nickname on this server, or your registered e-mail address." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3374,12 +3103,8 @@ msgstr "This is your inbox, which lists your incoming private messages." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s has invited you to join them on %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3421,10 +3146,8 @@ msgstr "You can't send a message to this user." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Don't send a message to yourself; just say it to yourself quietly instead." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Don't send a message to yourself; just say it to yourself quietly instead." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3474,10 +3197,8 @@ msgstr "This is your outbox, which lists private messages you have sent." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Search for people on %%site.name%% by their name, location, or interests. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "Search for people on %%site.name%% by their name, location, or interests. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3528,12 +3249,8 @@ msgstr "Password must be 6 or more characters." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to…" +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to…" #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3580,7 +3297,7 @@ msgid "Send a message" msgstr "Send a message" #: actions/smssettings.php:312 actions/smssettings.php:464 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Mobile carrier for your phone. " msgstr "Mobile carrier for your phone. " @@ -3656,18 +3373,12 @@ msgstr "%s added your notice as a favourite" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s just added your notice from %2$s as one of their favourites.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s just added your notice from %2$s as one of their favourites.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Add your Twitter account to automatically send your notices to Twitter, " +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Add your Twitter account to automatically send your notices to Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3714,12 +3425,8 @@ msgstr "Subscribe to my Twitter friends here." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3934,12 +3641,8 @@ msgstr "User without matching profile in system." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"You have a new posting address on %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "You have a new posting address on %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3948,12 +3651,8 @@ msgstr "New private message from %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) sent you a private message:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) sent you a private message:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4449,10 +4148,8 @@ msgstr "Create a new group" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Search for groups on %%site.name%% by their name, location, or description. " +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Search for groups on %%site.name%% by their name, location, or description. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" @@ -4581,10 +4278,8 @@ msgid "Ajax Error" msgstr "Ajax Error" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"This user doesn't allow nudges or hasn't confirmed or set his e-mail yet." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "This user doesn't allow nudges or hasn't confirmed or set his e-mail yet." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4658,10 +4353,8 @@ msgstr "Profile information" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4692,12 +4385,8 @@ msgstr "Could not retrieve public stream." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4844,12 +4533,8 @@ msgstr "All members" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4901,12 +4586,8 @@ msgstr "All groups" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -5012,22 +4693,16 @@ msgid "Tag user" msgstr "Tag user" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"You can only tag people you are subscribed to or who are subscribed to you." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "You can only tag people you are subscribed to or who are subscribed to you." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5121,10 +4796,8 @@ msgstr "Problem saving notice. Unknown user." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Too many notices too fast; take a breather and post again in a few minutes." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Too many notices too fast; take a breather and post again in a few minutes." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5303,10 +4976,8 @@ msgstr "Describe the group or topic in 140 chars" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Location for the group, if any, like \"City, State (or Region), Country\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" @@ -5369,12 +5040,8 @@ msgstr "Login or register with OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Hey, %s.\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Hey, %s.\n\n" #: lib/mail.php:236 #, php-format @@ -5393,12 +5060,8 @@ msgstr "Homepage: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Bio: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Bio: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5566,17 +5229,17 @@ msgid "Unsubscribe from this user" msgstr "Unsubscribe from this user" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed for friends of %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed for friends of %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Feed for friends of %s" @@ -5586,7 +5249,7 @@ msgid "You and friends" msgstr "%s and friends" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "You can upload your personal avatar." @@ -5595,21 +5258,10 @@ msgstr "You can upload your personal avatar." msgid "Avatar deleted." msgstr "Avatar updated." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "You are about to permanently delete a notice. Once this is done, it cannot be undone." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5621,29 +5273,9 @@ msgstr "There was a problem with your session token. Try again, please." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Send me e-mail when someone sends me a private message." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "You can upload a logo image for your group." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5652,28 +5284,14 @@ msgid "Pick a square area of the image to be the logo." msgstr "Pick a square area of the image to be your avatar" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Microblog by %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." #: actions/newmessage.php:102 #, fuzzy @@ -5681,18 +5299,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Error sending direct message." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr " Search Stream for \"%s\"" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "For security reasons, please re-enter your user name and password before changing your settings." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5709,35 +5323,10 @@ msgstr "Public Stream Feed" msgid "Public Stream Feed (Atom)" msgstr "Public Stream Feed" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" except this private data: password, e-mail address, IM address, phone " -"number." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr " except this private data: password, e-mail address, IM address, phone number." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5745,44 +5334,33 @@ msgstr "" msgid "Created" msgstr "Create" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Group profile" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "'s profile" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Notice feed for %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Notice feed for %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Notice feed for %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Outbox for %s" @@ -5798,47 +5376,10 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Profile settings" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5855,27 +5396,18 @@ msgstr "No such user" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Add your Twitter account to automatically send your notices to Twitter, " +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Add your Twitter account to automatically send your notices to Twitter, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Unable to retrieve account information for \"%s\" from Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5884,11 +5416,8 @@ msgstr "Search for people or text" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Too many notices too fast; take a breather and post again in a few minutes." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Too many notices too fast; take a breather and post again in a few minutes." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5900,218 +5429,21 @@ msgstr "Connect to IM, SMS, Twitter" msgid "Badge" msgstr "Nudge" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " msgstr "To use the %s Facebook Application you need to login " -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Search" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6128,12 +5460,12 @@ msgid "Block this user from this group" msgstr "A list of the users in this group." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "User profile" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s and friends, page %d" @@ -6157,56 +5489,26 @@ msgstr "Confirmation code" msgid "Do not delete this notice" msgstr "Can't delete this notice." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Invalid tag: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Nickname already in use. Try another one." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Could not create favourite." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6217,14 +5519,6 @@ msgstr "New notice" msgid "No notice" msgstr "New notice" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6236,10 +5530,6 @@ msgstr "Not a valid nickname." msgid "No group specified." msgstr "No profile specified." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6256,18 +5546,6 @@ msgstr "You are not a member of that group." msgid "Block user from group" msgstr "Block user" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6278,12 +5556,6 @@ msgstr "You must be logged in to create a group." msgid "Group design" msgstr "Groups" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6316,232 +5588,46 @@ msgstr "You must be an admin to edit the group" msgid "Make Admin" msgstr "Admin" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "No results" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "User has blocked you." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Message" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Couldn't save profile." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profile settings" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"e-mail address you have stored in your account." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "If you've forgotten or lost your password, you can get a new one sent to the e-mail address you have stored in your account." #: actions/recoverpassword.php:158 #, fuzzy @@ -6563,87 +5649,30 @@ msgstr "Error with confirmation code." msgid "Subscribe to a remote user" msgstr "Subscribe to this user" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "%s favourite notices, page %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Notice feed for %s group" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Notice feed for %s group" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Notice feed for %s group" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6656,84 +5685,33 @@ msgid "Not a local notice" msgstr "Not a local user." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Notices tagged with %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Notice feed for %s group" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s is now listening to " #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Notice feed for %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Notice feed for %s" @@ -6764,20 +5742,16 @@ msgid "Could not find target user." msgstr "Couldn't find any statuses." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Updates replying to %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -6793,127 +5767,41 @@ msgstr "%s subscriptions" msgid "Profile design" msgstr "Profile settings" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "You are not a member of that group." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problem saving notice." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Message to %1$s on %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "User profile" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profile" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Upload" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Change your password" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6929,127 +5817,21 @@ msgstr "Search" msgid "Links" msgstr "Login" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Block" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Block user" #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "Add or edit %s logo" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7065,26 +5847,11 @@ msgstr "User" msgid "Search help" msgstr "Search" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "Homepage is not a valid URL." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7092,12 +5859,12 @@ msgid "No such page" msgstr "No such tag." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Direct messages to %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "That's too long. Max message size is 140 chars." @@ -7106,12 +5873,8 @@ msgstr "That's too long. Max message size is 140 chars." msgid "Could not unfollow user: User not found." msgstr "Could not follow user: User not found." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "description is too long (max 140 chars)." @@ -7121,7 +5884,7 @@ msgid "You are already a member of that group." msgstr "You are already a member of that group" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Could not join user %s to group %s" @@ -7131,44 +5894,31 @@ msgid "You are not a member of this group." msgstr "You are not a member of that group." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Could not remove user %s to group %s" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "%s groups" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "Groups %s is a member of" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Group actions" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "That's too long. Max notice size is 140 chars." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -7180,12 +5930,12 @@ msgid "Post to " msgstr "Photo" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "description is too long (max 140 chars)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" @@ -7220,7 +5970,7 @@ msgid "Cannot read file." msgstr "Lost our file." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" @@ -7230,40 +5980,17 @@ msgid "IM is not available." msgstr "This page is not available in a " #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "All updates matching search term \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Describe yourself and your interests in 140 chars" @@ -7273,20 +6000,13 @@ msgid "Describe yourself and your interests" msgstr "Describe yourself and your " #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Bio is too long (max 140 chars)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Not a valid profile URL (no YADIS document)." #: actions/remotesubscribe.php:176 @@ -7299,51 +6019,33 @@ msgstr "That's a local profile! Login to subscribe." msgid "Couldn’t get a request token." msgstr "Couldn't get a request token." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Notice feed for %s group" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Message to %1$s on %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed for favourites of %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed for favourites of %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Feed for favourites of %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "%s group" @@ -7358,80 +6060,32 @@ msgid "SMS is not available." msgstr "This page is not available in a " #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Notice feed for %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"The subscription has been authorised, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorise the " -"subscription. Your subscription token is:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "The subscription has been authorised, but no callback URL was passed. Check with the site's instructions for details on how to authorise the subscription. Your subscription token is:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Can't read avatar URL '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Wrong image type for '%s'" @@ -7446,35 +6100,27 @@ msgid "Site content license" msgstr "StatusNet software licence" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Couldn't update user with confirmed e-mail address." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Nudge sent" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Message too long - maximum is 140 characters, you sent %d" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Message too long - maximum is 140 characters, you sent %d" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Reply to this notice" @@ -7483,54 +6129,11 @@ msgstr "Reply to this notice" msgid "Error saving notice." msgstr "Problem saving notice." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "No confirmation code." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7547,70 +6150,25 @@ msgid "Describe the group or topic" msgstr "Describe the group or topic in 140 chars" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Describe the group or topic in 140 chars" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Notice feed for %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s added your notice as a favourite" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "from" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7620,3 +6178,4 @@ msgstr "Could not delete favourite." #, fuzzy msgid "Duplicate notice" msgstr "Delete notice" + diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index c205d67104..0b5343b199 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -8,14 +8,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:58:01+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:12+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: out-statusnet\n" @@ -29,11 +28,8 @@ msgstr "Busca \"%s\" en la Corriente" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"excepto los siguientes datos privados: contraseña, dirección de correo " -"electrónico, dirección de mensajería instantánea, número de teléfono." +msgid " except this private data: password, email address, IM address, phone number." +msgstr "excepto los siguientes datos privados: contraseña, dirección de correo electrónico, dirección de mensajería instantánea, número de teléfono." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -54,61 +50,9 @@ msgstr "%1$s te ha invitado a que te unas con el/ellos en %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 -#, fuzzy, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s te ha invitado a unirte a ellos en %2$s (%3$s).\n" -"\n" -"%2$s es un servicio de microblogueo que te permite estar al tanto de la " -"gente que conoces y que te interesa.\n" -"\n" -"Puedes compartir noticias sobre tí mismo, tus pensamientos, o tu vida en " -"línea con gente que te conoce. También es bueno para conocer gente que " -"comparta tus intereses.\n" -"\n" -"%1$s dijo:\n" -"\n" -"%4$s\n" -"\n" -"Puedes ver el perfil de %1$s en %2$s aquí:\n" -"\n" -"%5$s\n" -"\n" -"Si quieres inscribirte y probar el servicio, haz click en enlace debajo para " -"aceptar la invitación.\n" -"\n" -"%6$s\n" -"\n" -"Si no deseas inscribirte puedes ignorar este mensaje. Gracias por tu " -"paciencia y tiempo.\n" -"\n" -"Sinceramente, %2$s\n" +#, php-format, fuzzy +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s te ha invitado a unirte a ellos en %2$s (%3$s).\n\n%2$s es un servicio de microblogueo que te permite estar al tanto de la gente que conoces y que te interesa.\n\nPuedes compartir noticias sobre tí mismo, tus pensamientos, o tu vida en línea con gente que te conoce. También es bueno para conocer gente que comparta tus intereses.\n\n%1$s dijo:\n\n%4$s\n\nPuedes ver el perfil de %1$s en %2$s aquí:\n\n%5$s\n\nSi quieres inscribirte y probar el servicio, haz click en enlace debajo para aceptar la invitación.\n\n%6$s\n\nSi no deseas inscribirte puedes ignorar este mensaje. Gracias por tu paciencia y tiempo.\n\nSinceramente, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -118,20 +62,8 @@ msgstr "%1$s ahora está escuchando tus avisos en %2$s" #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"\t%1$s ahora está escuchando tus avisos en %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentamente,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr " %1$s ahora está escuchando tus avisos en %2$s.\n\n %3$s\n\nAtentamente,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -207,22 +139,14 @@ msgstr "¡Actualizaciones de todos en %s!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Deberías recibir un mensaje por correo eléctronico en unos momentos, con " -"instrucciones sobre cómo confirmar tu dirección de correo.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Deberías recibir un mensaje por correo eléctronico en unos momentos, con instrucciones sobre cómo confirmar tu dirección de correo.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" -"site.broughtbyurl%%)." +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -240,15 +164,12 @@ msgstr ". Los colaboradores deben ser citados por su nombre completo o apodo." #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 letras en minúscula o números, sin signos de puntuación o espacios" +msgstr "1-64 letras en minúscula o números, sin signos de puntuación o espacios" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 letras en minúscula o números, sin signos de puntuación o espacios. " -"Requerido." +msgstr "1-64 letras en minúscula o números, sin signos de puntuación o espacios. Requerido." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -269,32 +190,17 @@ msgstr "6 o más caracters. Requerido." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Un código de confirmación fue enviado a la dirección de mensajería " -"instantánea que agregaste. Debes aprobar a %s para que pueda enviarte " -"mensajes." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Un código de confirmación fue enviado a la dirección de mensajería instantánea que agregaste. Debes aprobar a %s para que pueda enviarte mensajes." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Un código de confirmación fue enviado al correo electrónico que agregaste. " -"Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las " -"instrucciones sobre cómo usarlo." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Un código de confirmación fue enviado al correo electrónico que agregaste. Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las instrucciones sobre cómo usarlo." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Un código de confirmación fue enviado al número de teléfono que agregaste. " -"Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las " -"instrucciones sobre cómo usarlo." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Un código de confirmación fue enviado al número de teléfono que agregaste. Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las instrucciones sobre cómo usarlo." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -469,18 +375,13 @@ msgstr "Autorizar la suscripción" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Iniciar sesión automáticamente en el futuro. ¡No usar en ordenadores " -"compartidos! " +msgstr "Iniciar sesión automáticamente en el futuro. ¡No usar en ordenadores compartidos! " #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor " -"para no-humanos)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor para no-humanos)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -499,22 +400,13 @@ msgstr "Avatar actualizado" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"A la espera de una confirmación para esta dirección. Busca en tu cuenta " -"Jabber/GTalk un mensaje con más instrucciones. (¿Has añadido a %s a tu lista " -"de amigos?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "A la espera de una confirmación para esta dirección. Busca en tu cuenta Jabber/GTalk un mensaje con más instrucciones. (¿Has añadido a %s a tu lista de amigos?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Esperando confirmación de esta dirección. Revisa tu bandeja de entrada (¡y " -"la de spam!) por un mensaje con las instrucciones." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Esperando confirmación de esta dirección. Revisa tu bandeja de entrada (¡y la de spam!) por un mensaje con las instrucciones." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -652,36 +544,8 @@ msgstr "Código de confirmación no encontrado." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%. Desde aquí, " -"puedes...\n" -"\n" -"* Ir a [tu perfil](%s) y enviar tu primer mensaje.\n" -"* Agregar una [cuenta Jabber/Gtalk](%%%%action.imsettings%%%%) para enviar " -"avisos por mensajes instantáneos.\n" -"* [Buscar personas](%%%%action.peoplesearch%%%%) que podrías conoces o que " -"comparte tus intereses.\n" -"* Actualizar tus [opciones de perfil](%%%%action.profilesettings%%%%) para " -"contar más sobre tí.\n" -"* Leer la [documentación en línea](%%%%doc.help%%%%) para encontrar " -"características pasadas por alto.\n" -"\n" -"Gracias por suscribirte y esperamos que disfrutes el uso de este servicio." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%. Desde aquí, puedes...\n\n* Ir a [tu perfil](%s) y enviar tu primer mensaje.\n* Agregar una [cuenta Jabber/Gtalk](%%%%action.imsettings%%%%) para enviar avisos por mensajes instantáneos.\n* [Buscar personas](%%%%action.peoplesearch%%%%) que podrías conoces o que comparte tus intereses.\n* Actualizar tus [opciones de perfil](%%%%action.profilesettings%%%%) para contar más sobre tí.\n* Leer la [documentación en línea](%%%%doc.help%%%%) para encontrar características pasadas por alto.\n\nGracias por suscribirte y esperamos que disfrutes el uso de este servicio." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -749,8 +613,7 @@ msgstr "No se pudo suscribir." #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "" -"No se pudo actualizar el usuario con la dirección de correo confirmada." +msgstr "No se pudo actualizar el usuario con la dirección de correo confirmada." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 @@ -1090,12 +953,8 @@ msgid "Find people on this site" msgstr "Encontrar gente en este sitio" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Por razones de seguridad, por favor vuelve a escribir tu nombre de usuario y " -"contraseña antes de cambiar tu configuración." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Por razones de seguridad, por favor vuelve a escribir tu nombre de usuario y contraseña antes de cambiar tu configuración." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1180,28 +1039,16 @@ msgstr "Configuración de mensajería instantánea" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Si ya tienes una cuenta, ingresa con tu nombre de usuario y contraseña para " -"conectarla con tu OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Si ya tienes una cuenta, ingresa con tu nombre de usuario y contraseña para conectarla con tu OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Si quieres agregar una cuenta OpenID, ponla en el campo de abajo y haz clic " -"en \"Añadir\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Si quieres agregar una cuenta OpenID, ponla en el campo de abajo y haz clic en \"Añadir\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Si has olvidado o perdido tu contraseña, puedes obtener una nueva enviada a " -"la dirección de correo electrónico que almacenaste en tu cuenta." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Si has olvidado o perdido tu contraseña, puedes obtener una nueva enviada a la dirección de correo electrónico que almacenaste en tu cuenta." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1231,12 +1078,8 @@ msgstr "Nombre de usuario o contraseña incorrectos." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Se enviaron instrucciones para recuperar tu contraseña a la dirección de " -"correo registrada." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Se enviaron instrucciones para recuperar tu contraseña a la dirección de correo registrada." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1332,14 +1175,8 @@ msgstr "Invitar nuevos usuarios:" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Usa el software de microblogueo [StatusNet](http://status.net), versión %s, " -"disponible bajo la [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Usa el software de microblogueo [StatusNet](http://status.net), versión %s, disponible bajo la [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1349,13 +1186,8 @@ msgstr "El Jabber ID ya pertenece a otro usuario." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Dirección Jabber o GTalk, por ejemplo \"NombreUsuario@ejemplo.org\". " -"Primero, asegúrate de agregar a %s a tu lista de amigos en tu cliente de " -"mensajería instantánea o en GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Dirección Jabber o GTalk, por ejemplo \"NombreUsuario@ejemplo.org\". Primero, asegúrate de agregar a %s a tu lista de amigos en tu cliente de mensajería instantánea o en GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1422,14 +1254,8 @@ msgstr "Inicio de sesión con una cuenta [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Inicia una sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea]" -"(%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action." -"openidlogin%%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Inicia una sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea](%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1474,13 +1300,8 @@ msgstr "Microblog por %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Operador móvil para tu teléfono. Si conoces un operador móvil que acepte SMS " -"sobre correo electrónico pero no está listado aquí, envíanos un correo para " -"informarnos al %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Operador móvil para tu teléfono. Si conoces un operador móvil que acepte SMS sobre correo electrónico pero no está listado aquí, envíanos un correo para informarnos al %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1576,9 +1397,7 @@ msgstr "El apodo ya existe. Prueba otro." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"El apodo debe tener solamente letras minúsculas y números y no puede tener " -"espacios. " +msgstr "El apodo debe tener solamente letras minúsculas y números y no puede tener espacios. " #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -2104,14 +1923,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número telefónico, sin puntuación ni espacios, incluya código de área" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Por favor revisa estos detalles para asegurar que deseas suscribirte a los " -"avisos de este usuario. Si no pediste esta suscripción, haz clic en " -"\"Cancelar\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Por favor revisa estos detalles para asegurar que deseas suscribirte a los avisos de este usuario. Si no pediste esta suscripción, haz clic en \"Cancelar\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2294,12 +2107,8 @@ msgid "Remove OpenID" msgstr "Eliminar OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"¡Si eliminas tu único OpenID no podrás volver a entrar! Si necesitas " -"eliminarlo, agrega otro antes." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "¡Si eliminas tu único OpenID no podrás volver a entrar! Si necesitas eliminarlo, agrega otro antes." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2395,21 +2204,13 @@ msgstr "Feed del flujo de búsqueda" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Buscar avisos en %%site.name%% por contenido. Separa los términos de " -"búsqueda con espacios; deben tener una longitud mínima de 3 caracteres." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Buscar avisos en %%site.name%% por contenido. Separa los términos de búsqueda con espacios; deben tener una longitud mínima de 3 caracteres." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa " -"los términos con espacios; deben tener una longitud mínima de 3 caracteres." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa los términos con espacios; deben tener una longitud mínima de 3 caracteres." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2444,18 +2245,13 @@ msgstr "Enviarme avisos por Jabber/GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Enviarme avisos por SMS; Yo acepto que puede incurrir en grandes cobros por " -"mi operador móvil" +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Enviarme avisos por SMS; Yo acepto que puede incurrir en grandes cobros por mi operador móvil" #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Envirame respuestas por medio de Jabber/GTalk de gente a la cual no sigo." +msgstr "Envirame respuestas por medio de Jabber/GTalk de gente a la cual no sigo." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2687,25 +2483,13 @@ msgstr "La dirección fue eliminada." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Se ha autorizado la suscripción, pero no se ha enviado un URL de retorno. " -"Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu " -"identificador de suscripción es:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Se ha autorizado la suscripción, pero no se ha enviado un URL de retorno. Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu identificador de suscripción es:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Se ha rechazado la suscripción, pero no se ha enviado un URL de retorno. Lee " -"de nuevo las instrucciones para saber cómo rechazar la suscripción " -"completamente." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Se ha rechazado la suscripción, pero no se ha enviado un URL de retorno. Lee de nuevo las instrucciones para saber cómo rechazar la suscripción completamente." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2731,35 +2515,22 @@ msgstr "Estas son las personas que escuchas sus avisos." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Estas personas ya son usuarios y fuiste suscripto automáticamente a ellos:" +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Estas personas ya son usuarios y fuiste suscripto automáticamente a ellos:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." -msgstr "" -"Este código de confirmación es demasiado viejo. Por favor empieza de nuevo." +msgstr "Este código de confirmación es demasiado viejo. Por favor empieza de nuevo." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Este formulario debería enviarse automáticamente. En caso contrario, haz " -"clic en el botón de envío para ir a tu proveedor de OpenID." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Este formulario debería enviarse automáticamente. En caso contrario, haz clic en el botón de envío para ir a tu proveedor de OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Esta es la primera vez que accedes a %s por lo que debemos conectar tu " -"OpenID a una cuenta local. Puedes crear una nueva o conectarte con la tuya, " -"si la tienes." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Esta es la primera vez que accedes a %s por lo que debemos conectar tu OpenID a una cuenta local. Puedes crear una nueva o conectarte con la tuya, si la tienes." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2808,15 +2579,8 @@ msgstr "Zona horaria no seleccionada" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Para suscribirte, puedes [iniciar una sesión](%%action.login%%), o " -"[registrar](%%action.register%%) una cuenta nueva. Si ya tienes una en un " -"[servicio de microblogueo compatible](%%doc.openmublog%%), escribe el URL de " -"tu perfil debajo." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Para suscribirte, puedes [iniciar una sesión](%%action.login%%), o [registrar](%%action.register%%) una cuenta nueva. Si ya tienes una en un [servicio de microblogueo compatible](%%doc.openmublog%%), escribe el URL de tu perfil debajo." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2870,12 +2634,8 @@ msgid "Unknown version of OMB protocol." msgstr "Versión desconocida del protocolo OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"A menos que se especifique lo contrario, el contenido de este sitio es " -"propiedad de sus colaboradores y está disponible bajo la" +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "A menos que se especifique lo contrario, el contenido de este sitio es propiedad de sus colaboradores y está disponible bajo la" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2936,16 +2696,8 @@ msgid "Upload" msgstr "Cargar" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Carga un nuevo \"avatar\" (imagen de usuario) aquí. No puedes editar la " -"imagen una vez cargada, por lo que antes debes asegurarte que sea más o " -"menos cuadrada. Además, debe estar bajo la misma licencia del sitio. Usa una " -"foto que te pertenezca y que quieras compartir." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Carga un nuevo \"avatar\" (imagen de usuario) aquí. No puedes editar la imagen una vez cargada, por lo que antes debes asegurarte que sea más o menos cuadrada. Además, debe estar bajo la misma licencia del sitio. Usa una foto que te pertenezca y que quieras compartir." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2953,18 +2705,15 @@ msgstr "Cargar una nueva imagen de perfil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Usa este formulario para invitar a tus amigos y colegas a usar este servicio." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Usa este formulario para invitar a tus amigos y colegas a usar este servicio." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Se usa sólo para actualizaciones, anuncios y recuperación de contraseñas" +msgstr "Se usa sólo para actualizaciones, anuncios y recuperación de contraseñas" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -3050,12 +2799,8 @@ msgid "You already have this OpenID!" msgstr "¡Ya tienes este OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Estás a punto de eliminar permanentemente un aviso. Si lo hace, no se podrá " -"deshacer" +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Estás a punto de eliminar permanentemente un aviso. Si lo hace, no se podrá deshacer" #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3084,34 +2829,22 @@ msgstr "Puedes crear una nueva cuenta y empezar a enviar avisos." #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"Puedes recibir mensajes SMS por correo electrónico desde %%site.name%%." +msgstr "Puedes recibir mensajes SMS por correo electrónico desde %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Puedes eliminar un OpenID de tu cuenta haciendo clic en el botón \"Eliminar" -"\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Puedes eliminar un OpenID de tu cuenta haciendo clic en el botón \"Eliminar\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Puedes enviar y recibir avisos vía [mensajes instantáneos](%%doc.im%%) de " -"Jabber/GTalk. Configura tu dirección y opciones abajo." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Puedes enviar y recibir avisos vía [mensajes instantáneos](%%doc.im%%) de Jabber/GTalk. Configura tu dirección y opciones abajo." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Puedes actualizar la información de tu perfil personal para que la gente " -"sepa más sobre ti." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Puedes actualizar la información de tu perfil personal para que la gente sepa más sobre ti." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3135,24 +2868,8 @@ msgstr "No nos enviaste ese perfil" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"You have a new posting address on %1$s.\n" -"\n" -"Enviar correo a %2$s para publicar nuevos mensajes. \n" -"\n" -"Más instrucciones de correo en %3$s.\n" -"\n" -"Attentamente, \n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "You have a new posting address on %1$s.\n\nEnviar correo a %2$s para publicar nuevos mensajes. \n\nMás instrucciones de correo en %3$s.\n\nAttentamente, \n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3168,12 +2885,8 @@ msgstr "Debes estar conectado para invitar otros usuarios a usar %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Recibirás un mensaje cuando tus invitados acepten tu invitacion y se " -"registren en el sitio. ¡Gracias por extender la comunidad! " +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Recibirás un mensaje cuando tus invitados acepten tu invitacion y se registren en el sitio. ¡Gracias por extender la comunidad! " #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3187,18 +2900,12 @@ msgstr "El URL de tu OpenID" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "" -"Tu nombre de usuario en este servidor, o la dirección de correo electrónico " -"registrada." +msgstr "Tu nombre de usuario en este servidor, o la dirección de correo electrónico registrada." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) te permite ingresar a muchos sitios con la misma " -"cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) te permite ingresar a muchos sitios con la misma cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3322,8 +3029,7 @@ msgstr "« Después" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." +msgstr "Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" @@ -3341,14 +3047,12 @@ msgstr "Aceptar" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Enviarme un correo electrónico cuando alguien agrega mi aviso a favoritos." +msgstr "Enviarme un correo electrónico cuando alguien agrega mi aviso a favoritos." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." -msgstr "" -"Enviarme un correo electrónico cuando alguien me envía un mensaje privado." +msgstr "Enviarme un correo electrónico cuando alguien me envía un mensaje privado." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 #: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 @@ -3394,17 +3098,12 @@ msgstr "Bandeja de entrada para %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Ésta es tu bandeja de entrada, incluye lista de mensajes privados entrantes." +msgstr "Ésta es tu bandeja de entrada, incluye lista de mensajes privados entrantes." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s te invitó a unirte a ellos en %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s te invitó a unirte a ellos en %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3446,8 +3145,7 @@ msgstr "No puedes enviar mensaje a este usuario." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No te auto envíes un mensaje; dícetelo a ti mismo." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3494,13 +3192,11 @@ msgstr "Bandeja de salida para %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Ésta es tu bandeja de salida, incluye la lista de mensajes privados enviados." +msgstr "Ésta es tu bandeja de salida, incluye la lista de mensajes privados enviados." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " msgstr "Buscar personas en %%site.name%% por nombre, lugar o intereses." #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3552,12 +3248,8 @@ msgstr "Cotrnaseña debe tener 6 o más caracteres." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%. Desde aquí, quizás " -"quieras..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "¡Felicitaciones, %s! Y bienvenido a %%%%site.name%%%%. Desde aquí, quizás quieras..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3680,18 +3372,12 @@ msgstr "%s agregó tu aviso a favoritos" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s recién agregó tu aviso desde %2$s como uno de sus favoritos. \n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s recién agregó tu aviso desde %2$s como uno de sus favoritos. \n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Agregar tu cuenta Twitter para enviar automáticamente tus avisos a Twitter, " +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Agregar tu cuenta Twitter para enviar automáticamente tus avisos a Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3738,12 +3424,8 @@ msgstr "Suscribir a mis amigos Twitter aquí." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Nombre de usuario sólo debe tener números, letras en mayúscula y minúscula, " -"y subrayadas (_). Máx. 15 caracteres." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Nombre de usuario sólo debe tener números, letras en mayúscula y minúscula, y subrayadas (_). Máx. 15 caracteres." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3958,12 +3640,8 @@ msgstr "Usuario sin perfil equivalente en sistema." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Tienes nueva dirección para publicar en %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Tienes nueva dirección para publicar en %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3972,12 +3650,8 @@ msgstr "Nuevo mensaje privado de %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) te envió un mensaje privado:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) te envió un mensaje privado:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4046,7 +3720,7 @@ msgstr "No se pudo analizar sintácticamente mensaje." #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s y amigos, página %d" @@ -4154,7 +3828,7 @@ msgid "Failed to save block information." msgstr "No se guardó información de bloqueo." #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format, fuzzy msgid "The address \"%s\" has been " msgstr "La dirección \"%s\" fue " @@ -4244,7 +3918,7 @@ msgid "Options saved." msgstr "Se guardó configuración de Opciones." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "Esperando confirmación de esta dirección." @@ -4269,9 +3943,7 @@ msgstr "La dirección de correo electrónico ya existe." #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Un código de confirmación fue enviado a la dirección de correo electrónico " -"que agreaste. " +msgstr "Un código de confirmación fue enviado a la dirección de correo electrónico que agreaste. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" @@ -4339,7 +4011,7 @@ msgstr "Te invitaron a %s" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "Invita a tus amigos a usar %s" @@ -4409,7 +4081,7 @@ msgid "Popular notices" msgstr "Avisos populares" #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" msgstr "Avisos populares, página %d" @@ -4501,9 +4173,8 @@ msgid "Create a new group" msgstr "Crear un grupo nuevo" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Buscar grupos en %%site.name%% por nombre, lugar o descripción." #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4526,7 +4197,7 @@ msgid "Send me replies through Jabber/GTalk " msgstr "Enviarme avisos a través de Jabber/GTalk" #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Se envió un código de confirmación." @@ -4540,7 +4211,7 @@ msgid "You are already a member of that group" msgstr "Ya eres miembro de ese grupo" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "No se puede unir usuario %s a grupo %s" @@ -4582,7 +4253,7 @@ msgstr "No se pudo encontrar registro de miembro" #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "No se pudo eliminar a usuario %s de grupo %s" @@ -4643,11 +4314,8 @@ msgid "Ajax Error" msgstr "Error de Ajax" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Este usuario no permite zumbidos o todavía no confirma o configura su correo " -"electrónico." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Este usuario no permite zumbidos o todavía no confirma o configura su correo electrónico." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4709,7 +4377,7 @@ msgid "Password change" msgstr "Cambio de contraseña " #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "No es un tag de personas válido: %s" @@ -4730,8 +4398,7 @@ msgstr "Información de perfil " #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "Tags para ti (letras, números, -, ., y _), coma - o espacio - separado" #: actions/profilesettings.php:144 @@ -4742,7 +4409,7 @@ msgstr "Suscribirse automáticamente a quien quiera " #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" msgstr "Tag no válido: '%s' " @@ -4754,7 +4421,7 @@ msgstr "No se pudo guardar tags." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "Línea de tiempo pública, página %d" @@ -4765,12 +4432,8 @@ msgstr "No se pudo acceder a corriente pública." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) " +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/publictagcloud.php:57 #, fuzzy @@ -4846,7 +4509,7 @@ msgstr "¡Es un perfil local! Ingresa para suscribirte" #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "Respuestas a %s, página %d" @@ -4900,7 +4563,7 @@ msgid "Group actions" msgstr "Acciones del grupo" #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "Feed de avisos de grupo %s" @@ -4928,12 +4591,8 @@ msgstr "Todos los miembros" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4989,12 +4648,8 @@ msgstr "Todos los grupos" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/smssettings.php:128 #, fuzzy @@ -5009,8 +4664,7 @@ msgstr "Enviarme avisos por SMS;" #: actions/smssettings.php:335 #, fuzzy msgid "A confirmation code was sent to the phone number you added. " -msgstr "" -"Se envió un código de confirmación al número de teléfono que agregaste." +msgstr "Se envió un código de confirmación al número de teléfono que agregaste." #: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy @@ -5038,7 +4692,7 @@ msgid "Subscribed" msgstr "Suscrito" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "Suscriptores %s" @@ -5063,7 +4717,7 @@ msgid "%s subscriptions" msgstr "Suscripciones %s" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "%s suscripciones, página %d" @@ -5073,7 +4727,7 @@ msgid "These are the people whose notices " msgstr "Estas son las personas cuyos avisos" #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "Estas son las personas cuyos" @@ -5084,7 +4738,7 @@ msgid "Jabber" msgstr "Jabber " #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "Avisos marcados con %s, página %d" @@ -5112,22 +4766,16 @@ msgid "Tag user" msgstr "Usuario de tag" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Tags de este usuario (letras, números, -, ., y _), coma- o espacio- separado" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Tags de este usuario (letras, números, -, ., y _), coma- o espacio- separado" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Sólo puedes marcar a las personas a quienes estás suscrito o que están " -"suscritas a ti." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Sólo puedes marcar a las personas a quienes estás suscrito o que están suscritas a ti." #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy @@ -5136,8 +4784,7 @@ msgstr "No se pudo guardar tags." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Usar este formulario para agregar tags a tus suscriptores o suscripciones." +msgstr "Usar este formulario para agregar tags a tus suscriptores o suscripciones." #: actions/tagrss.php:35 msgid "No such tag." @@ -5186,7 +4833,7 @@ msgid "Username must have only numbers, " msgstr "Nombre de usuario sólo debe tener números, " #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " msgstr "No se pudo acceder a información de cuenta" @@ -5228,11 +4875,8 @@ msgstr "Hubo problemas al guardar el aviso. Usuario desconocido." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " -"minutos." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Demasiados avisos demasiado rápido; para y publicar nuevamente en unos minutos." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5255,7 +4899,7 @@ msgid "Other options" msgstr "Otras opciones" #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s - %s" msgstr "%s - %s" @@ -5428,10 +5072,8 @@ msgstr "Describir al grupo o tema en 140 caracteres" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" -"Lugar del grupo, si existe, por ejemplo \"Ciudad, Estado (o Región), País\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Lugar del grupo, si existe, por ejemplo \"Ciudad, Estado (o Región), País\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" @@ -5500,36 +5142,28 @@ msgstr "Ingresar o registrar con OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Hola, %s.\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Hola, %s.\n\n" #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s ahora está escuchando " #: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Location: %s\n" msgstr "Lugar: %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Homepage: %s\n" msgstr "Página de inicio: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Bio: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Bio: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5542,7 +5176,7 @@ msgid "%1$s (%2$s) is wondering what you are up to " msgstr "%1$s (%2$s) quiere saber qué estás haciendo" #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" msgstr "%1$s recién agregó tu aviso de %2$s" @@ -5650,7 +5284,7 @@ msgid "Untitled section" msgstr "Sección sin título" #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People %s subscribes to" msgstr "Personas a las que %s está suscrito" @@ -5703,17 +5337,17 @@ msgid "Unsubscribe from this user" msgstr "Desuscribirse de este usuario" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed de los amigos de %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed de los amigos de %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Feed de los amigos de %s" @@ -5723,7 +5357,7 @@ msgid "You and friends" msgstr "%s y amigos" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Puedes cargar tu avatar personal." @@ -5732,57 +5366,24 @@ msgstr "Puedes cargar tu avatar personal." msgid "Avatar deleted." msgstr "Avatar actualizado" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Estás a punto de eliminar permanentemente un aviso. Si lo hace, no se podrá " -"deshacer" +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Estás a punto de eliminar permanentemente un aviso. Si lo hace, no se podrá deshacer" #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." +msgstr "Hubo un problema con tu clave de sesión. Por favor, intenta nuevamente." #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" -"Enviarme un correo electrónico cuando alguien me envía un mensaje privado." - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" +msgstr "Enviarme un correo electrónico cuando alguien me envía un mensaje privado." #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "Puedes cargar una imagen de logo para tu grupo." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5791,28 +5392,14 @@ msgid "Pick a square area of the image to be the logo." msgstr "Elige un área cuadrada de la imagen para que sea tu avatar" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Microblog por %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa " -"los términos con espacios; deben tener una longitud mínima de 3 caracteres." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa los términos con espacios; deben tener una longitud mínima de 3 caracteres." #: actions/newmessage.php:102 #, fuzzy @@ -5820,18 +5407,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Error al enviar mensaje directo." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "Busca \"%s\" en la Corriente" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Por razones de seguridad, por favor vuelve a escribir tu nombre de usuario y " -"contraseña antes de cambiar tu configuración." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Por razones de seguridad, por favor vuelve a escribir tu nombre de usuario y contraseña antes de cambiar tu configuración." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5848,35 +5431,10 @@ msgstr "Feed del flujo público" msgid "Public Stream Feed (Atom)" msgstr "Feed del flujo público" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"excepto los siguientes datos privados: contraseña, dirección de correo " -"electrónico, dirección de mensajería instantánea, número de teléfono." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "excepto los siguientes datos privados: contraseña, dirección de correo electrónico, dirección de mensajería instantánea, número de teléfono." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5884,44 +5442,33 @@ msgstr "" msgid "Created" msgstr "Crear" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Perfil de grupo" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Perfil de" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Feed de avisos de %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Feed de avisos de %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Feed de avisos de %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Bandeja de salida para %s" @@ -5937,48 +5484,10 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Configuración del perfil" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Un código de confirmación fue enviado al número de teléfono que agregaste. " -"Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las " -"instrucciones sobre cómo usarlo." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Un código de confirmación fue enviado al número de teléfono que agregaste. Revisa tu bandeja de entrada (¡y la de spam!) para encontrar el código y las instrucciones sobre cómo usarlo." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5995,27 +5504,18 @@ msgstr "No existe el usuario." #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Agregar tu cuenta Twitter para enviar automáticamente tus avisos a Twitter, " +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Agregar tu cuenta Twitter para enviar automáticamente tus avisos a Twitter, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "No se pudo obtener tu información de cuenta para \"%s% desde Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Por favor revisa estos detalles para asegurar que deseas suscribirte a los " -"avisos de este usuario. Si no pediste esta suscripción, haz clic en " -"\"Cancelar\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Por favor revisa estos detalles para asegurar que deseas suscribirte a los avisos de este usuario. Si no pediste esta suscripción, haz clic en \"Cancelar\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -6024,12 +5524,8 @@ msgstr "Buscar personas o texto" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " -"minutos." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Demasiados avisos demasiado rápido; para y publicar nuevamente en unos minutos." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -6041,218 +5537,21 @@ msgstr "Conectarse a IM, SMS, Twitter" msgid "Badge" msgstr "Zumbido " -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " msgstr "Para usar la Aplicación de Facebook %s debes ingresar" -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"\t%1$s ahora está escuchando tus avisos en %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentamente,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr " %1$s ahora está escuchando tus avisos en %2$s.\n\n %3$s\n\nAtentamente,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Buscar" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6269,12 +5568,12 @@ msgid "Block this user from this group" msgstr "Lista de los usuarios en este grupo." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Perfil de usuario" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s y amigos, página %d" @@ -6298,56 +5597,26 @@ msgstr "Código de confirmación" msgid "Do not delete this notice" msgstr "No se puede eliminar este aviso." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Tag no válido: '%s' " #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "El apodo ya existe. Prueba otro." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "No se pudo crear favorito." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6358,14 +5627,6 @@ msgstr "Nuevo aviso" msgid "No notice" msgstr "Nuevo aviso" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6377,10 +5638,6 @@ msgstr "Apodo no válido" msgid "No group specified." msgstr "No se especificó perfil." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6397,18 +5654,6 @@ msgstr "No eres miembro de ese grupo" msgid "Block user from group" msgstr "Bloquear usuario." -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6419,12 +5664,6 @@ msgstr "Debes estar conectado para crear un grupo" msgid "Group design" msgstr "Grupos" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6457,232 +5696,46 @@ msgstr "Debes ser un admin para editar el grupo" msgid "Make Admin" msgstr "Admin" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Ningún resultado" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "El usuario te ha bloqueado." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Mensaje" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "No se pudo guardar el perfil." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) te permite ingresar a muchos sitios con la misma " -"cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) te permite ingresar a muchos sitios con la misma cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Configuración del perfil" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) " - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Si has olvidado o perdido tu contraseña, puedes obtener una nueva enviada a " -"la dirección de correo electrónico que almacenaste en tu cuenta." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Si has olvidado o perdido tu contraseña, puedes obtener una nueva enviada a la dirección de correo electrónico que almacenaste en tu cuenta." #: actions/recoverpassword.php:158 #, fuzzy @@ -6704,87 +5757,30 @@ msgstr "Error con el código de confirmación." msgid "Subscribe to a remote user" msgstr "Suscribirse a este usuario" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "%s avisos favoritos, página %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed de avisos de grupo %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed de avisos de grupo %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Feed de avisos de grupo %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-" -"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6797,84 +5793,33 @@ msgid "Not a local notice" msgstr "No es usuario local." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Avisos marcados con %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Feed de avisos de grupo %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging) " - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s ahora está escuchando " #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed de avisos de %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Feed de avisos de %s" @@ -6905,20 +5850,16 @@ msgid "Could not find target user." msgstr "No se pudo encontrar ningún estado." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Actualizaciones en respuesta a %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -6934,127 +5875,41 @@ msgstr "Suscripciones %s" msgid "Profile design" msgstr "Configuración del perfil" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "No eres miembro de ese grupo" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Hubo un problema al guardar el aviso." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Mensaje a %1$s en %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Perfil de usuario" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Perfil" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Cargar" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Cambia tu contraseña" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -7070,127 +5925,21 @@ msgstr "Buscar" msgid "Links" msgstr "Inicio de sesión" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Bloquear" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Bloquear usuario." #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "Agregar o editar el logo de %s" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7206,26 +5955,11 @@ msgstr "Usuario" msgid "Search help" msgstr "Buscar" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "La página de inicio no es un URL válido." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7233,12 +5967,12 @@ msgid "No such page" msgstr "No existe ese tag." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Mensajes directos a %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Demasiado largo. Máximo 140 caracteres. " @@ -7247,12 +5981,8 @@ msgstr "Demasiado largo. Máximo 140 caracteres. " msgid "Could not unfollow user: User not found." msgstr "No puede seguir al usuario. Usuario no encontrado" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Descripción es demasiado larga (máx. 140 caracteres)." @@ -7262,7 +5992,7 @@ msgid "You are already a member of that group." msgstr "Ya eres miembro de ese grupo" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "No se puede unir usuario %s a grupo %s" @@ -7272,44 +6002,31 @@ msgid "You are not a member of this group." msgstr "No eres miembro de ese grupo" #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "No se pudo eliminar a usuario %s de grupo %s" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "Grupos %s" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "%s es miembro de los grupos" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Acciones del grupo" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Demasiado largo. La longitud máxima es de 140 caracteres. " -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -7321,12 +6038,12 @@ msgid "Post to " msgstr "Foto" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Descripción es demasiado larga (máx. 140 caracteres)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" @@ -7361,7 +6078,7 @@ msgid "Cannot read file." msgstr "Se perdió nuestro archivo" #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" @@ -7371,40 +6088,17 @@ msgid "IM is not available." msgstr "Esta página no está disponible en un " #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Inicia una sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea]" -"(%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action." -"openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Inicia una sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea](%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action.openidlogin%%). " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" @@ -7414,20 +6108,13 @@ msgid "Describe yourself and your interests" msgstr "Descríbete y cuenta de tus " #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "La biografía es demasiado larga (máx. 140 caracteres)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "URL de perfil no válido (ningún documento YADIS)." #: actions/remotesubscribe.php:176 @@ -7440,51 +6127,33 @@ msgstr "¡Es un perfil local! Ingresa para suscribirte" msgid "Couldn’t get a request token." msgstr "No se pudo obtener la señal de petición." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Feed de avisos de grupo %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Mensaje a %1$s en %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed para favoritos de %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed para favoritos de %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Feed para favoritos de %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Grupo %s" @@ -7499,80 +6168,32 @@ msgid "SMS is not available." msgstr "Esta página no está disponible en un " #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed de avisos de %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Por favor revisa estos detalles para asegurar que deseas suscribirte a los " -"avisos de este usuario. Si no pediste esta suscripción, haz clic en " -"\"Cancelar\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Por favor revisa estos detalles para asegurar que deseas suscribirte a los avisos de este usuario. Si no pediste esta suscripción, haz clic en \"Cancelar\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Se ha autorizado la suscripción, pero no se ha enviado un URL de retorno. " -"Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu " -"identificador de suscripción es:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Se ha autorizado la suscripción, pero no se ha enviado un URL de retorno. Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu identificador de suscripción es:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Se ha rechazado la suscripción, pero no se ha enviado un URL de retorno. Lee " -"de nuevo las instrucciones para saber cómo rechazar la suscripción " -"completamente." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Se ha rechazado la suscripción, pero no se ha enviado un URL de retorno. Lee de nuevo las instrucciones para saber cómo rechazar la suscripción completamente." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "No se puede leer el URL del avatar '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo de imagen incorrecto para '%s'" @@ -7587,36 +6208,27 @@ msgid "Site content license" msgstr "Licencia de software de StatusNet" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" -msgstr "" -"No se pudo actualizar el usuario con la dirección de correo confirmada." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "No se pudo actualizar el usuario con la dirección de correo confirmada." #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Se envió zumbido" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Responder este aviso." @@ -7625,54 +6237,11 @@ msgstr "Responder este aviso." msgid "Error saving notice." msgstr "Hubo un problema al guardar el aviso." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Ningún código de confirmación." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7689,70 +6258,25 @@ msgid "Describe the group or topic" msgstr "Describir al grupo o tema en 140 caracteres" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Describir al grupo o tema en 140 caracteres" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Feed de avisos de %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s agregó tu aviso a favoritos" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "desde" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7762,3 +6286,4 @@ msgstr "No se pudo borrar favorito." #, fuzzy msgid "Duplicate notice" msgstr "Borrar aviso" + diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 52a92a3052..cbc078d317 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -1,5 +1,8 @@ # Translation of StatusNet to Finnish # +# Author@translatewiki.net: Crt +# Author@translatewiki.net: Jaakko +# Author@translatewiki.net: Nike # -- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER @@ -8,14 +11,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:58:07+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:14+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: out-statusnet\n" @@ -29,11 +31,8 @@ msgstr " Hakusyöte haulle \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, " -"puhelinnumero." +msgid " except this private data: password, email address, IM address, phone number." +msgstr " poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, puhelinnumero." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -55,59 +54,8 @@ msgstr "%1$s on kutsunut sinut liittymään palveluun %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s on kutsunut sinut %2$s (%3$s) mikroblogipalveluun.\n" -"\n" -"%2$s mikroblogipalvelu auttaa sinua pysymään ajantasalla tuttujen ja " -"kiinnostavien ihmisten kanssa.\n" -"\n" -"Voit myös jakaa uutisia itsestäsi ja ajatuksiasi verkossa ihmisten, jotka " -"tuntevat sinut, kanssa. Se on myös kätevä tapa tutustua uusiin ihmisiin " -"jotka ovat kiinnostuneet samanlaisista asioista, kuin sinä.\n" -"\n" -"%1$s sanoi:\n" -"\n" -"%4$s\n" -"Voit nähdä henkilön %1$s profiilisivun %2$s-palvelussa täältä:\n" -"\n" -"%5$s\n" -"\n" -"Jos haluat kokeilla palvelua, klikkaa alla olevaa linkkiä hyväksyäksesi " -"kutsun.\n" -"\n" -"%6$s\n" -"\n" -"Jos et halua osallistua, voit jättää tämän viestin huomioimatta. Kiitoksia " -"kärsivällisyydestä ja ajastasi.\n" -"\n" -"Terveisin, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s on kutsunut sinut %2$s (%3$s) mikroblogipalveluun.\n\n%2$s mikroblogipalvelu auttaa sinua pysymään ajantasalla tuttujen ja kiinnostavien ihmisten kanssa.\n\nVoit myös jakaa uutisia itsestäsi ja ajatuksiasi verkossa ihmisten, jotka tuntevat sinut, kanssa. Se on myös kätevä tapa tutustua uusiin ihmisiin jotka ovat kiinnostuneet samanlaisista asioista, kuin sinä.\n\n%1$s sanoi:\n\n%4$s\nVoit nähdä henkilön %1$s profiilisivun %2$s-palvelussa täältä:\n\n%5$s\n\nJos haluat kokeilla palvelua, klikkaa alla olevaa linkkiä hyväksyäksesi kutsun.\n\n%6$s\n\nJos et halua osallistua, voit jättää tämän viestin huomioimatta. Kiitoksia kärsivällisyydestä ja ajastasi.\n\nTerveisin, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -117,28 +65,15 @@ msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s seuraa nyt päivityksiäsi palvelussa %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Terveisin,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s.\n\n %3$s\n\nTerveisin,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 #: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" -"%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin." +msgstr "%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin." #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -207,22 +142,14 @@ msgstr "%s päivitykset kaikilta!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Saat pian sähköpostiisi viestin, jonka ohjeita seuraamalla voit vahvistaa " -"sähköpostiosoitteesi.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Saat pian sähköpostiisi viestin, jonka ohjeita seuraamalla voit vahvistaa sähköpostiosoitteesi.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" -"site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -232,9 +159,7 @@ msgstr "**%%site.name%%** on mikroblogipalvelu. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -". Tunnustus osallistujille tulee antaa joko koko nimelle tai " -"käyttäjätunnukselle." +msgstr ". Tunnustus osallistujille tulee antaa joko koko nimelle tai käyttäjätunnukselle." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -242,16 +167,12 @@ msgstr "" #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " -"välilyöntejä" +msgstr "1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai välilyöntejä" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " -"välilyöntejä. Pakollinen." +msgstr "1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai välilyöntejä. Pakollinen." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -272,30 +193,17 @@ msgstr "6 tai useampia merkkejä. Pakollinen." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Vahvistuskoodi lähetettiin antamaasi pikaviestinosoitteeseen. Sinun täytyy " -"antaa osoitteelle %s oikeus lähettää viestejä sinulle." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Vahvistuskoodi lähetettiin antamaasi pikaviestinosoitteeseen. Sinun täytyy antaa osoitteelle %s oikeus lähettää viestejä sinulle." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Vahvistuskoodi on lähetetty sähköpostiosoitteeseesi. Katso " -"sähköpostilaatikostasi (ja roskapostilaatikostasi!) vahvistuskoodisi ja " -"miten sitä käytetään. " +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Vahvistuskoodi on lähetetty sähköpostiosoitteeseesi. Katso sähköpostilaatikostasi (ja roskapostilaatikostasi!) vahvistuskoodisi ja miten sitä käytetään. " #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi " -"vahvistuskoodisi ja miten sitä käytetään. " +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi vahvistuskoodisi ja miten sitä käytetään. " #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -470,18 +378,13 @@ msgstr "Valtuuta tilaus" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Kirjaudu sisään automaattisesti tulevaisuudessa; ei tietokoneille joilla " -"useampi käyttäjä!" +msgstr "Kirjaudu sisään automaattisesti tulevaisuudessa; ei tietokoneille joilla useampi käyttäjä!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin " -"ihmiskäyttäjille)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin ihmiskäyttäjille)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -500,23 +403,13 @@ msgstr "Kuva päivitetty." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Odotetaan vahvistusta tälle osoitteelle. Katso Jabber/GTalk " -"käyttäjätililtäsi viesti, jossa on lisäohjeet. (Lisäsitkö %s:n " -"ystävälistaasi?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Odotetaan vahvistusta tälle osoitteelle. Katso Jabber/GTalk käyttäjätililtäsi viesti, jossa on lisäohjeet. (Lisäsitkö %s:n ystävälistaasi?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Odotetaan vahvistusta tälle sähköpostiosoitteelle. Katso " -"sähköpostilaatikostasi (ja roskapostikansiosta!) viesti, jossa on " -"lisäohjeita. " +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Odotetaan vahvistusta tälle sähköpostiosoitteelle. Katso sähköpostilaatikostasi (ja roskapostikansiosta!) viesti, jossa on lisäohjeita. " #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -653,36 +546,8 @@ msgstr "Vahvistuskoodia ei löytynyt." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Onnittelut, %s! Tervetuloa palveluun %%%%site.name%%%%. Täältä voit " -"jatkaa...\n" -"\n" -"* [Profiiliisi](%s) ja lähettää ensimmäisen päivityksesi.\n" -"* Lisäämään [Jabber/GTalk osoitteen](%%%%action.imsettings%%%%), jotta saat " -"lähetettyä päivitykset pikaviestimen kautta.\n" -"* [Hakemaan ihmisiä](%%%%action.peoplesearch%%%%), jotka tunnet tai joilla " -"on samanlaisia kiinnostuksen kohteita. \n" -"* Päivittämään [profiiliasi](%%%%action.profilesettings%%%%), jotta muut " -"tietävät enemmän sinusta.\n" -"* Lukemaan [ohjeista](%%%%doc.help%%%%) muista ominaisuuksista, joista et " -"vielä tiedä. \n" -"\n" -"Kiitokset rekisteröitymisestäsi ja toivomme että pidät palvelustamme." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Onnittelut, %s! Tervetuloa palveluun %%%%site.name%%%%. Täältä voit jatkaa...\n\n* [Profiiliisi](%s) ja lähettää ensimmäisen päivityksesi.\n* Lisäämään [Jabber/GTalk osoitteen](%%%%action.imsettings%%%%), jotta saat lähetettyä päivitykset pikaviestimen kautta.\n* [Hakemaan ihmisiä](%%%%action.peoplesearch%%%%), jotka tunnet tai joilla on samanlaisia kiinnostuksen kohteita. \n* Päivittämään [profiiliasi](%%%%action.profilesettings%%%%), jotta muut tietävät enemmän sinusta.\n* Lukemaan [ohjeista](%%%%doc.help%%%%) muista ominaisuuksista, joista et vielä tiedä. \n\nKiitokset rekisteröitymisestäsi ja toivomme että pidät palvelustamme." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -860,9 +725,7 @@ msgstr "Luo uusi käyttäjätili" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." -msgstr "" -"Yritettiin luoda uusi käyttäjätili OpenID tunnukselle, jolla on jo " -"käyttäjätili." +msgstr "Yritettiin luoda uusi käyttäjätili OpenID tunnukselle, jolla on jo käyttäjätili." #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 @@ -1091,12 +954,8 @@ msgid "Find people on this site" msgstr "Hae ihmisiä tältä sivustolta" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen " -"asetuksiesi muuttamista." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen asetuksiesi muuttamista." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1181,28 +1040,16 @@ msgstr "Pikaviestiasetukset" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Jos sinulla on jo käyttäjätunnus, kirjaudu sisään käyttäjätunnuksella ja " -"salasanalla yhdistääksesi OpenID-tunnuksesi siihen." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Jos sinulla on jo käyttäjätunnus, kirjaudu sisään käyttäjätunnuksella ja salasanalla yhdistääksesi OpenID-tunnuksesi siihen." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Jos haluat lisätä OpenID-tunnuksen käyttäjätunnukseesi, syötä se alla " -"olevaan laatikkoon ja paina \"Lisää\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Jos haluat lisätä OpenID-tunnuksen käyttäjätunnukseesi, syötä se alla olevaan laatikkoon ja paina \"Lisää\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Jos olet unohtanut tai hukannut salasanasi, voit saada uuden sähköpostiisi, " -"jonka olet tallettanut käyttäjätunnuksellesi." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Jos olet unohtanut tai hukannut salasanasi, voit saada uuden sähköpostiisi, jonka olet tallettanut käyttäjätunnuksellesi." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1232,12 +1079,8 @@ msgstr "Väärä käyttäjätunnus tai salasana" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Ohjeet salasanan palauttamiseksi on lähetetty sähköpostiisiosoitteeseen, " -"joka on rekisteröity käyttäjätunnuksellesi." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Ohjeet salasanan palauttamiseksi on lähetetty sähköpostiisiosoitteeseen, joka on rekisteröity käyttäjätunnuksellesi." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1333,14 +1176,8 @@ msgstr "Kutsu uusia käyttäjiä" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Sivusto käyttää [StatusNet](http://status.net/) mikroblogausohjelmistoa, " -"versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" -"www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Sivusto käyttää [StatusNet](http://status.net/) mikroblogausohjelmistoa, versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1350,13 +1187,8 @@ msgstr "Jabber ID kuuluu jo toiselle käyttäjälle." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber ja GTalk -osoite, esimerkiksi \"käyttäjätunnus@esimerkki.org\". " -"Varmista että olet lisännyt %s kaverilistaasi pikaviestiohjelmassasi tai " -"GTalkissa." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber ja GTalk -osoite, esimerkiksi \"käyttäjätunnus@esimerkki.org\". Varmista että olet lisännyt %s kaverilistaasi pikaviestiohjelmassasi tai GTalkissa." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1423,14 +1255,8 @@ msgstr "Kirjaudu sisään [OpenID](%%doc.openid%%)-tunnuksella" #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Kirjaud sisään käyttäjätunnuksella ja salasanalla. Ei vielä " -"käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " -"kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Kirjaud sisään käyttäjätunnuksella ja salasanalla. Ei vielä käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1453,9 +1279,7 @@ msgstr "Oletko hukannut tai unohtanut salasanasi?" #: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "" -"Tee uusi sähköpostiosoite johon lähettää päivityksiä; tämä poistaa vanhan " -"osoitteen" +msgstr "Tee uusi sähköpostiosoite johon lähettää päivityksiä; tämä poistaa vanhan osoitteen" #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 @@ -1477,13 +1301,8 @@ msgstr "Käyttäjän %s mikroblogi" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Matkapuhelinoperaattorisi. Jos tiedät operaattorin, joka ottaa vastaan SMS " -"viestilähetyksiä sähköpostilla, mutta ei ole listattu tänne, lähetä " -"sähköpostia meille osoitteeseen %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Matkapuhelinoperaattorisi. Jos tiedät operaattorin, joka ottaa vastaan SMS viestilähetyksiä sähköpostilla, mutta ei ole listattu tänne, lähetä sähköpostia meille osoitteeseen %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1491,9 +1310,7 @@ msgstr "" #: actions/register.php:430 actions/finishopenidlogin.php:106 #: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " -msgstr "" -"Minun tekstini ja tiedostoni ovat käytettävissä seuraavan lisenssin " -"mukaisesti " +msgstr "Minun tekstini ja tiedostoni ovat käytettävissä seuraavan lisenssin mukaisesti " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 @@ -1535,8 +1352,7 @@ msgstr "Uusi salasana" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "" -"Uusi salasana tallennettiin onnistuneesti. Olet nyt kirjautunut sisään." +msgstr "Uusi salasana tallennettiin onnistuneesti. Olet nyt kirjautunut sisään." #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1582,9 +1398,7 @@ msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Käyttäjätunnuksessa voi olla ainoastaan pieniä kirjaimia ja numeroita ilman " -"välilyöntiä." +msgstr "Käyttäjätunnuksessa voi olla ainoastaan pieniä kirjaimia ja numeroita ilman välilyöntiä." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1866,15 +1680,12 @@ msgstr "Tuo ei ole kelvollinen profiilin verkko-osoite (virheellinen palvelu)." #: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 #: actions/remotesubscribe.php:152 msgid "Not a valid profile URL (no XRDS defined)." -msgstr "" -"Tuo ei ole kelvollinen profiilin verkko-osoite (XRDS ei ollut määritelty)." +msgstr "Tuo ei ole kelvollinen profiilin verkko-osoite (XRDS ei ollut määritelty)." #: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 #: actions/remotesubscribe.php:143 msgid "Not a valid profile URL (no YADIS document)." -msgstr "" -"Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei " -"löytynyt)." +msgstr "Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei löytynyt)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 #: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 @@ -2113,14 +1924,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Puhelinnumero, ei välimerkkejä tai välilyöntejä, suuntanumerollinen" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " -"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " -"paina \"Peruuta\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, paina \"Peruuta\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2303,12 +2108,8 @@ msgid "Remove OpenID" msgstr "Poista OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Viimeisen OpenID-tunnuksen poistamisen jälkeen et voi enää kirjautua sisään " -"palveluun. Jos haluat poistaa sen, lisää ensin uusi OpenID-tunnus." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Viimeisen OpenID-tunnuksen poistamisen jälkeen et voi enää kirjautua sisään palveluun. Jos haluat poistaa sen, lisää ensin uusi OpenID-tunnus." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2404,22 +2205,13 @@ msgstr "Hakusyöte" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Hae päivityksiä palvelun %%site.name%% sisällöistä. Erota hakutermit " -"välilyönnillä; hakutermien pitää olla 3 tai useamman merkin pituisia." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Hae päivityksiä palvelun %%site.name%% sisällöistä. Erota hakutermit välilyönnillä; hakutermien pitää olla 3 tai useamman merkin pituisia." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Hae ihmisiä palvelun %%site.name%% käyttäjien nimistä, paikoista ja " -"kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää " -"olla 3 tai useamman merkin pituisia." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Hae ihmisiä palvelun %%site.name%% käyttäjien nimistä, paikoista ja kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää olla 3 tai useamman merkin pituisia." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2454,19 +2246,13 @@ msgstr "Lähetä minulle päivityksiä Jabberilla/GTalkilla." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Lähetä päivityksiä SMS:llä; Ymmärrän, että voin saada kohtuuttomia laskuja " -"tästä matkapuhelinoperaattoriltani." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Lähetä päivityksiä SMS:llä; Ymmärrän, että voin saada kohtuuttomia laskuja tästä matkapuhelinoperaattoriltani." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Lähetä Jabberilla/GTalkilla sellaistenkin ihmisten vastaukset, joita en ole " -"tilannut. " +msgstr "Lähetä Jabberilla/GTalkilla sellaistenkin ihmisten vastaukset, joita en ole tilannut. " #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2698,24 +2484,13 @@ msgstr "Osoite on poistettu." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole " -"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " -"Tilauskoodisi on:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. Tilauskoodisi on:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " -"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2741,36 +2516,22 @@ msgstr "Näiden ihmisten päivityksiä sinä seuraat." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Nämä ihmiset ovat jo käyttäjiä ja sinä olet automaattisesti tilannut heidän " -"päivityksensä:" +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Nämä ihmiset ovat jo käyttäjiä ja sinä olet automaattisesti tilannut heidän päivityksensä:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Vahvistuskoodi on liian vanha. Aloita uudelleen." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Lomakkeen pitäisi lähettää automaattisesti tiedot. Jos kuitenkaan näin ei " -"tapahdu, paina lähetä painiketta mennäksesi OpenID-palveluntajoajalle." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Lomakkeen pitäisi lähettää automaattisesti tiedot. Jos kuitenkaan näin ei tapahdu, paina lähetä painiketta mennäksesi OpenID-palveluntajoajalle." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Tämä on ensimmäinen kerta kun olet sisäänkirjautunut %s -palveluun, joten " -"OpenID-tunnuksesi pitää yhdistää johonkin tämän palvelun käyttäjätunnukseen. " -"Tätä varten voit luoda uuden käyttäjätunnuksen tai yhdistää OpenID-tunnuksen " -"olemassa olevaan käyttäjätunnukseen, jos sinulla sellainen jo on." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Tämä on ensimmäinen kerta kun olet sisäänkirjautunut %s -palveluun, joten OpenID-tunnuksesi pitää yhdistää johonkin tämän palvelun käyttäjätunnukseen. Tätä varten voit luoda uuden käyttäjätunnuksen tai yhdistää OpenID-tunnuksen olemassa olevaan käyttäjätunnukseen, jos sinulla sellainen jo on." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2819,15 +2580,8 @@ msgstr "Aikavyöhykettä ei ole valittu." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Tilataksesi päivitykset, voit [kirjautua sisään](%%action.login%%), tai " -"[rekisteröidä](%%action.register%%) uuden käyttäjätunnuksen. Jos sinulla on " -"jo käyttäjätunnus jossain [yhteensopivassa mikroblogauspalvelussa](%%doc." -"openmublog%%), syötä profiilisi URL-osoite alla olevaan kenttään." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Tilataksesi päivitykset, voit [kirjautua sisään](%%action.login%%), tai [rekisteröidä](%%action.register%%) uuden käyttäjätunnuksen. Jos sinulla on jo käyttäjätunnus jossain [yhteensopivassa mikroblogauspalvelussa](%%doc.openmublog%%), syötä profiilisi URL-osoite alla olevaan kenttään." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2881,12 +2635,8 @@ msgid "Unknown version of OMB protocol." msgstr "Tuntematon OMB-protokollan versio." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Ellei toisin ilmoitettu, tämän palvelun sisältöjen tekijänoikeudet kuuluvat " -"niiden kirjoittajille ja ovat saatavilla seuraavalla lisenssillä " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Ellei toisin ilmoitettu, tämän palvelun sisältöjen tekijänoikeudet kuuluvat niiden kirjoittajille ja ovat saatavilla seuraavalla lisenssillä " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2947,17 +2697,8 @@ msgid "Upload" msgstr "Lataa" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Lataa uusi käyttäjäkuva tästä. Et voi muokata kuvaa lataamisen jälkeen, " -"joten varmista sen olevan suurinpiirtein neliön muotoinen. Kuvan pitää olla " -"palvelun tekijänoikeuslisenssin mukainen. Sen täytyy myös olla sivuston " -"lisenssin alla saatavilla. Käytä sellaista kuvaa, joka kuulu sinulle ja " -"jonka haluat näkyvän muille." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Lataa uusi käyttäjäkuva tästä. Et voi muokata kuvaa lataamisen jälkeen, joten varmista sen olevan suurinpiirtein neliön muotoinen. Kuvan pitää olla palvelun tekijänoikeuslisenssin mukainen. Sen täytyy myös olla sivuston lisenssin alla saatavilla. Käytä sellaista kuvaa, joka kuulu sinulle ja jonka haluat näkyvän muille." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2965,20 +2706,15 @@ msgstr "Lataa uusi profiilikuva" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Käytä tätä lomaketta, jos haluat kutsua kavereita ja työkavereita käyttämään " -"tätä palvelua." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Käytä tätä lomaketta, jos haluat kutsua kavereita ja työkavereita käyttämään tätä palvelua." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Käytetään ainoastaan päivityksien lähettämiseen, ilmoitusasioihin ja " -"salasanan uudelleen käyttöönottoon." +msgstr "Käytetään ainoastaan päivityksien lähettämiseen, ilmoitusasioihin ja salasanan uudelleen käyttöönottoon." #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -3064,12 +2800,8 @@ msgid "You already have this OpenID!" msgstr "Sinulla on jo tämä OpenID-tunnus!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Olet poistamassa tämän päivityksen pysyvästi. Kun tämä on tehty, poistoa ei " -"voi enää perua." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Olet poistamassa tämän päivityksen pysyvästi. Kun tämä on tehty, poistoa ei voi enää perua." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3098,32 +2830,22 @@ msgstr "Voit luoda uuden käyttäjätunnuksen ja aloittaa päivityksien tekemise #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"Voit saada SMS viestit sähköpostin välityksellä %%site.name%% -palvelusta." +msgstr "Voit saada SMS viestit sähköpostin välityksellä %%site.name%% -palvelusta." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." msgstr "Voit poistaa OpenID-tunnuksen painamalla \"Poista\"-nappia." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Voit lähettää ja vastaanottaa päivityksiä Jabber/GTalk-[pikaviestintä](%%doc." -"im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. " +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Voit lähettää ja vastaanottaa päivityksiä Jabber/GTalk-[pikaviestintä](%%doc.im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. " #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Voit päivittää täällä henkilötietojasi, jotta muut saavat tietää sinusta " -"enemmän." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Voit päivittää täällä henkilötietojasi, jotta muut saavat tietää sinusta enemmän." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3147,24 +2869,8 @@ msgstr "Et lähettänyt profiilia" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Sinulla on uusi päivityksien lähetysosoite palvelussa %1$s.\n" -"\n" -"Lähetä sähköposti osoitteeseen %2$s tehdäksesi uuden päivityksen.\n" -"\n" -"Lisää sähköpostin käyttöohjeita voit lukea osoitteesta %3$s.\n" -"\n" -"Terveisin,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Sinulla on uusi päivityksien lähetysosoite palvelussa %1$s.\n\nLähetä sähköposti osoitteeseen %2$s tehdäksesi uuden päivityksen.\n\nLisää sähköpostin käyttöohjeita voit lukea osoitteesta %3$s.\n\nTerveisin,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3176,18 +2882,12 @@ msgstr "Et voi poistaa toisen käyttäjän päivitystä." #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "" -"Sinun täytyy olla kirjautuneena sisään kutsuaksesi uusia käyttäjiä palveluun " -"%s" +msgstr "Sinun täytyy olla kirjautuneena sisään kutsuaksesi uusia käyttäjiä palveluun %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Lähetämme sinulle ilmoituksen, kun joku kutsumistasi henkilöistä hyväksyy " -"kutsun ja rekisteröityy palveluun. Kiitoksia yhteisön kasvattamisesta!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Lähetämme sinulle ilmoituksen, kun joku kutsumistasi henkilöistä hyväksyy kutsun ja rekisteröityy palveluun. Kiitoksia yhteisön kasvattamisesta!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3201,17 +2901,12 @@ msgstr "OpenID URL-osoitteesi" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "" -"Käyttäjätunnuksesi tässä palvelussa tai rekisteröity sähköpostiosoitteesi." +msgstr "Käyttäjätunnuksesi tässä palvelussa tai rekisteröity sähköpostiosoitteesi." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) mahdollistaa kirjautumisen sisään useaan palveluun " -"yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) mahdollistaa kirjautumisen sisään useaan palveluun yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3334,9 +3029,7 @@ msgstr "« Myöhemmin" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " -"uudelleen." +msgstr "Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit uudelleen." #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" @@ -3409,12 +3102,8 @@ msgstr "Tämä on postilaatikkosi, jossa on sinulle saapuneet yksityisviestit." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s on kutsunut sinut liittymään palveluun %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s on kutsunut sinut liittymään palveluun %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3456,8 +3145,7 @@ msgstr "Et voi lähettää viestiä tälle käyttäjälle." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3478,8 +3166,7 @@ msgstr "Päivitys ilman vastaavaa profiilia" #: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" -"[OpenID](%%doc.openid%%) mahdollistaa sisäänkirjautumisen useaan palveluun " +msgstr "[OpenID](%%doc.openid%%) mahdollistaa sisäänkirjautumisen useaan palveluun " #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " @@ -3487,8 +3174,7 @@ msgstr "Jos haluat lisätä OpenID-tunnuksen käyttäjätiliisi, " #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" -"Et voisi enää kirjautua palveluun, jos poistaisit ainoan OpenID-tunnuksesi! " +msgstr "Et voisi enää kirjautua palveluun, jos poistaisit ainoan OpenID-tunnuksesi! " #: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " @@ -3510,11 +3196,8 @@ msgstr "Tämä on postilaatikkosi, jossa on lähettämäsi yksityisviestit." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Etsi ihmisiä palvelussa %%site.name%% heidän nimensä, paikkansa tai " -"kiinnostustensa perusteella. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "Etsi ihmisiä palvelussa %%site.name%% heidän nimensä, paikkansa tai kiinnostustensa perusteella. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3565,12 +3248,8 @@ msgstr "Salasanassa pitää olla 6 tai useampia merkkejä." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Onneksi olkoon, %s! tervetuloa %%%%site.name%%%% palveluun. Tästä haluat " -"ehkä jatkaa..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Onneksi olkoon, %s! tervetuloa %%%%site.name%%%% palveluun. Tästä haluat ehkä jatkaa..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3666,8 +3345,7 @@ msgstr "Vastaanottajaa ei löytynyt." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" -"Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri." +msgstr "Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3694,19 +3372,12 @@ msgstr "%s lisäsi päivityksesi suosikkeihinsa" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s lisäsi päivityksesi ajalta %2$s suosikkeihinsa.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s lisäsi päivityksesi ajalta %2$s suosikkeihinsa.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Lisää Twitter käyttäjätunnuksesi lähettääksesi päivitykset automaattisesti " -"myös Twitteriin, " +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Lisää Twitter käyttäjätunnuksesi lähettääksesi päivitykset automaattisesti myös Twitteriin, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3753,12 +3424,8 @@ msgstr "Tilaa kavereitteni Twitter päivitykset täällä." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Käyttäjätunnuksessa voi olla vain numeroita, isoja ja pieniä kirjaimia ja " -"alaviiva (_). 15 merkkiä maksimissaan." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Käyttäjätunnuksessa voi olla vain numeroita, isoja ja pieniä kirjaimia ja alaviiva (_). 15 merkkiä maksimissaan." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3973,12 +3640,8 @@ msgstr "Käyttäjälle ei löydy vastaavaa profiilia palvelussa." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Sinulla on uusi lähetysosoite palvelussa %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Sinulla on uusi lähetysosoite palvelussa %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3987,12 +3650,8 @@ msgstr "Uusi yksityisviesti käyttäjältä %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) lähetti sinulle yksityisviestin:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) lähetti sinulle yksityisviestin:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4488,10 +4147,8 @@ msgstr "Luo uusi ryhmä" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Hae %%site.name%% ryhmiä niiden nimen, paikan tai kuvauksen perusteella. " +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Hae %%site.name%% ryhmiä niiden nimen, paikan tai kuvauksen perusteella. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" @@ -4535,8 +4192,7 @@ msgstr "%s liittyi ryhmään %s" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "" -"Postilaatikkojen täytyy olla otettu käyttöön, jotta ryhmäominaisuus toimii." +msgstr "Postilaatikkojen täytyy olla otettu käyttöön, jotta ryhmäominaisuus toimii." #: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -4621,11 +4277,8 @@ msgid "Ajax Error" msgstr "Ajax-virhe" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Käyttäjä ei ole sallinut tönäisyjä tai ei ole vahvistanut " -"sähköpostiosoitettaan." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Käyttäjä ei ole sallinut tönäisyjä tai ei ole vahvistanut sähköpostiosoitettaan." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4699,11 +4352,8 @@ msgstr "Profiilitieto" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Kuvaa itseäsi henkilötageilla (sanoja joissa voi olla muita kirjaimia kuin " -"ääkköset, numeroita, -, ., ja _), pilkulla tai välilyönnillä erotettuna" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Kuvaa itseäsi henkilötageilla (sanoja joissa voi olla muita kirjaimia kuin ääkköset, numeroita, -, ., ja _), pilkulla tai välilyönnillä erotettuna" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4734,12 +4384,8 @@ msgstr "Julkista päivitysvirtaa ei saatu." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-" -"blogging)palvelu " +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-blogging)palvelu " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4803,8 +4449,7 @@ msgstr "(Sinun pitäisi saada viesti sähköpostilla " #: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." -msgstr "" -"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." +msgstr "Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 @@ -4887,12 +4532,8 @@ msgstr "Kaikki jäsenet" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4944,12 +4585,8 @@ msgstr "Kaikki ryhmät" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " -"[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -5054,23 +4691,16 @@ msgid "Tag user" msgstr "Tagaa käyttäjä" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Käyttäjän tagit (kirjaimet, numerot, -, ., ja _), pilkulla tai välilyönnillä " -"erotettuna" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Käyttäjän tagit (kirjaimet, numerot, -, ., ja _), pilkulla tai välilyönnillä erotettuna" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Voit tagata ainoastaan ihmisiä, joita tilaat tai jotka tilaavat sinun " -"päivityksiäsi." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Voit tagata ainoastaan ihmisiä, joita tilaat tai jotka tilaavat sinun päivityksiäsi." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5078,9 +4708,7 @@ msgstr "Tagien tallennus epäonnistui." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Käytä tätä lomaketta lisätäksesi tageja tilaajillesi ja käyttäjille jotka " -"tilaavat päivityksiäsi." +msgstr "Käytä tätä lomaketta lisätäksesi tageja tilaajillesi ja käyttäjille jotka tilaavat päivityksiäsi." #: actions/tagrss.php:35 msgid "No such tag." @@ -5166,11 +4794,8 @@ msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " -"päivityksien lähettämista muutaman minuutin päästä." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka päivityksien lähettämista muutaman minuutin päästä." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5349,11 +4974,8 @@ msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" -"Ryhmän paikka, jos sellainen on, kuten \"Kaupunki, Maakunta (tai Lääni), Maa" -"\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Ryhmän paikka, jos sellainen on, kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" @@ -5416,12 +5038,8 @@ msgstr "Kirjaudu sisään tai rekisteröidy OpenID-tunnuksella" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Hei, %s.\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Hei, %s.\n\n" #: lib/mail.php:236 #, php-format @@ -5440,12 +5058,8 @@ msgstr "Kotisivu: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Tietoja: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Tietoja: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5613,86 +5227,51 @@ msgid "Unsubscribe from this user" msgstr "Peruuta tämän käyttäjän tilaus" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Syöte käyttäjän %s kavereille" +msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Syöte käyttäjän %s kavereille" +msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Atom)" -msgstr "Syöte käyttäjän %s kavereille" +msgstr "Käyttäjän %s kavereiden syöte (Atom)" #: actions/all.php:112 actions/all.php:125 actions/all.php:165 -#, fuzzy msgid "You and friends" -msgstr "%s ja kaverit" +msgstr "Sinä ja kaverit" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "Voit ladata oman profiilikuvasi." +msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s." #: actions/avatarsettings.php:373 -#, fuzzy msgid "Avatar deleted." -msgstr "Kuva päivitetty." - -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +msgstr "Kuva poistettu." #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Olet poistamassa tämän päivityksen pysyvästi. Kun tämä on tehty, poistoa ei " -"voi enää perua." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Olet poistamassa tämän päivityksen pysyvästi. Kun tämä on tehty, poistoa ei voi enää perua." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit " -"uudelleen." +msgstr "Istuntosi avaimen kanssa oli ongelmia. Olisitko ystävällinen ja kokeilisit uudelleen." #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Lähetä sähköpostia, jos joku lähettää minulle yksityisviestin." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "Voit ladata ryhmälle logon." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5701,29 +5280,14 @@ msgid "Pick a square area of the image to be the logo." msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format msgid "Microblog by %s group" msgstr "Käyttäjän %s mikroblogi" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Hae ihmisiä palvelun %%site.name%% käyttäjien nimistä, paikoista ja " -"kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää " -"olla 3 tai useamman merkin pituisia." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Hae ihmisiä palvelun %%site.name%% käyttäjien nimistä, paikoista ja kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää olla 3 tai useamman merkin pituisia." #: actions/newmessage.php:102 #, fuzzy @@ -5731,18 +5295,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Tapahtui virhe suoran viestin lähetyksessä." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr " Hakusyöte haulle \"%s\"" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen " -"asetuksiesi muuttamista." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen asetuksiesi muuttamista." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5759,35 +5319,10 @@ msgstr "Julkinen syöte" msgid "Public Stream Feed (Atom)" msgstr "Julkinen syöte" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, " -"puhelinnumero." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr " poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, puhelinnumero." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5795,44 +5330,33 @@ msgstr "" msgid "Created" msgstr "Luo" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Ryhmän profiili" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "nimisen käyttäjän profiili" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Päivityksien syöte käyttäjälle %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Päivityksien syöte käyttäjälle %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Päivityksien syöte käyttäjälle %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Käyttäjän %s lähetetyt viestit" @@ -5848,47 +5372,10 @@ msgstr "Kuva" msgid "Edit profile settings" msgstr "Profiiliasetukset" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi " -"vahvistuskoodisi ja miten sitä käytetään. " - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi vahvistuskoodisi ja miten sitä käytetään. " #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5905,28 +5392,18 @@ msgstr "Tuota käyttäjää ei ole." #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Lisää Twitter käyttäjätunnuksesi lähettääksesi päivitykset automaattisesti " -"myös Twitteriin, " +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Lisää Twitter käyttäjätunnuksesi lähettääksesi päivitykset automaattisesti myös Twitteriin, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Ei pystytty hakemaan käyttäjän \"%s\" tietoja Twitteristä." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " -"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " -"paina \"Peruuta\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, paina \"Peruuta\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5935,12 +5412,8 @@ msgstr "Hae ihmisiä tai tekstiä" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " -"päivityksien lähettämista muutaman minuutin päästä." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka päivityksien lähettämista muutaman minuutin päästä." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5952,218 +5425,21 @@ msgstr "Yhdistä pikaviestimeen, SMS, Twitteriin" msgid "Badge" msgstr "Tönäise" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " msgstr "Käyttääksesi %s Facebook-sovellusta sinun pitää kirjautua sisään " -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s seuraa nyt päivityksiäsi palvelussa %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Terveisin,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s.\n\n %3$s\n\nTerveisin,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Haku" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6180,12 +5456,12 @@ msgid "Block this user from this group" msgstr "Lista ryhmän käyttäjistä." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Käyttäjän profiili" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s ja kaverit, sivu %d" @@ -6209,56 +5485,26 @@ msgstr "Vahvistuskoodi" msgid "Do not delete this notice" msgstr "Tätä päivitystä ei voi poistaa." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Virheellinen tagi: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Ei voitu lisätä suosikiksi." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6269,14 +5515,6 @@ msgstr "Uusi päivitys" msgid "No notice" msgstr "Uusi päivitys" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6288,10 +5526,6 @@ msgstr "Tuo ei ole kelvollinen tunnus." msgid "No group specified." msgstr "Profiilia ei ole määritelty." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6308,18 +5542,6 @@ msgstr "Sinä et kuulu tähän ryhmään." msgid "Block user from group" msgstr "Estä käyttäjä" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6330,12 +5552,6 @@ msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." msgid "Group design" msgstr "Ryhmät" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6368,232 +5584,46 @@ msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" msgid "Make Admin" msgstr "Ylläpito" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Ei hakutuloksia" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Käyttäjä on asettanut eston sinulle." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Viesti" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Ei voitu tallentaa profiilia." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) mahdollistaa kirjautumisen sisään useaan palveluun " -"yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) mahdollistaa kirjautumisen sisään useaan palveluun yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profiiliasetukset" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-" -"blogging)palvelu " - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-blogging)palvelu " #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Jos olet unohtanut tai hukannut salasanasi, voit saada uuden sähköpostiisi, " -"jonka olet tallettanut käyttäjätunnuksellesi." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Jos olet unohtanut tai hukannut salasanasi, voit saada uuden sähköpostiisi, jonka olet tallettanut käyttäjätunnuksellesi." #: actions/recoverpassword.php:158 #, fuzzy @@ -6615,87 +5645,30 @@ msgstr "Virhe vahvistuskoodin kanssa." msgid "Subscribe to a remote user" msgstr "Tilaa tämä käyttäjä" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "Käyttäjän %s suosikkipäivitykset, sivu %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Päivityssyöte ryhmälle %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Päivityssyöte ryhmälle %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Päivityssyöte ryhmälle %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" -"(http://en.wikipedia.org/wiki/Micro-blogging)" +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6708,84 +5681,33 @@ msgid "Not a local notice" msgstr "Käyttäjä ei ole rekisteröitynyt tähän palveluun." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Päivitykset joilla on tagi %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Päivityssyöte ryhmälle %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " -"[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s seuraa nyt käyttäjää" #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Päivityksien syöte käyttäjälle %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Päivityksien syöte käyttäjälle %s" @@ -6816,20 +5738,16 @@ msgid "Could not find target user." msgstr "Ei löytynyt yhtään päivitystä." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Vastaukset päivitykseen %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -6845,127 +5763,41 @@ msgstr "Käyttäjän %s tilaukset" msgid "Profile design" msgstr "Profiiliasetukset" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Sinä et kuulu tähän ryhmään." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Ongelma päivityksen tallentamisessa." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Käyttäjän profiili" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profiili" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Lataa" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Vaihda salasanasi" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6981,127 +5813,21 @@ msgstr "Haku" msgid "Links" msgstr "Kirjaudu sisään" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Estä" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Estä käyttäjä" #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "Lisää ryhmälle %s logo tai muokkaa sitä " -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7117,26 +5843,11 @@ msgstr "Käyttäjä" msgid "Search help" msgstr "Haku" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "Kotisivun verkko-osoite ei ole toimiva." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7144,12 +5855,12 @@ msgid "No such page" msgstr "Tuota tagia ei ole." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Suorat viestit käyttäjälle %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on 140 merkkiä." @@ -7158,12 +5869,8 @@ msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on 140 merkkiä." msgid "Could not unfollow user: User not found." msgstr "Ei voitu tilata käyttäjää: Käyttäjää ei löytynyt." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "kuvaus on liian pitkä (max 140 merkkiä)." @@ -7173,7 +5880,7 @@ msgid "You are already a member of that group." msgstr "Sinä kuulut jo tähän ryhmään " #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Käyttäjää %s ei voinut liittää ryhmään %s" @@ -7183,44 +5890,31 @@ msgid "You are not a member of this group." msgstr "Sinä et kuulu tähän ryhmään." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "Käyttäjän %s ryhmät" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "Ryhmät, joiden jäsen %s on" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Ryhmän toiminnot" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Päivitys on liian pitkä. Maksimipituus on 140 merkkiä." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -7232,12 +5926,12 @@ msgid "Post to " msgstr "Kuva" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "kuvaus on liian pitkä (max 140 merkkiä)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" @@ -7272,7 +5966,7 @@ msgid "Cannot read file." msgstr "Tiedosto hävisi." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" @@ -7282,40 +5976,17 @@ msgid "IM is not available." msgstr "Tämä sivu ei ole saatavilla " #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Kirjaud sisään käyttäjätunnuksella ja salasanalla. Ei vielä " -"käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " -"kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Kirjaud sisään käyttäjätunnuksella ja salasanalla. Ei vielä käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Kaikki päivitykset hakuehdolla \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Kuvaile itseäsi ja kiinnostuksiasi 140 merkillä" @@ -7325,80 +5996,52 @@ msgid "Describe yourself and your interests" msgstr "Kuvaile itseäsi ja" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" -"Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei " -"löytynyt)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei löytynyt)." #: actions/remotesubscribe.php:176 #, fuzzy msgid "That’s a local profile! Login to subscribe." -msgstr "" -"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." +msgstr "Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Ei saatu request tokenia." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Päivityssyöte ryhmälle %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Käyttäjän %s suosikkien syöte" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Käyttäjän %s suosikkien syöte" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Käyttäjän %s suosikkien syöte" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Ryhmä %s" @@ -7413,79 +6056,32 @@ msgid "SMS is not available." msgstr "Tämä sivu ei ole saatavilla " #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Päivityksien syöte käyttäjälle %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " -"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " -"paina \"Peruuta\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, paina \"Peruuta\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole " -"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " -"Tilauskoodisi on:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. Tilauskoodisi on:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " -"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Kuvan URL-osoitetta '%s' ei voi avata." #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Kuvan '%s' tyyppi on väärä" @@ -7500,35 +6096,27 @@ msgid "Site content license" msgstr "StatusNet-ohjelmiston lisenssi" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Tönäisy lähetetty" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Vastaa tähän päivitykseen" @@ -7537,54 +6125,11 @@ msgstr "Vastaa tähän päivitykseen" msgid "Error saving notice." msgstr "Ongelma päivityksen tallentamisessa." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Varmistuskoodia ei ole annettu." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7601,70 +6146,25 @@ msgid "Describe the group or topic" msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Päivityksien syöte käyttäjälle %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s lisäsi päivityksesi suosikkeihinsa" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " lähteestä " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7674,3 +6174,4 @@ msgstr "Ei voitu poistaa suosikkia." #, fuzzy msgid "Duplicate notice" msgstr "Poista päivitys" + diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 34d50c76a7..2967b594f9 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -21,14 +21,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:58:13+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:16+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: out-statusnet\n" @@ -43,11 +42,8 @@ msgstr " Flux de recherche pour « %s »" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"à l'exception de ces données personnelles : mot de passe, adresse e-mail, " -"adresse de messagerie instantanée, numéro de téléphone. " +msgid " except this private data: password, email address, IM address, phone number." +msgstr "à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. " #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -69,62 +65,8 @@ msgstr "%1$s vous invite à vous inscrire sur %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s vous invite à vous inscrire sur %2$s (%3$s).\n" -"\n" -"%2$s est un service de micro-blogging qui vous permet de rester en contact " -"avec des personnes que vous connaissez et des personnes qui vous " -"intéressent.\n" -"\n" -"Vous pouvez aussi partager des informations sur vous, vos idées, ou votre " -"vie en ligne avec les personnes qui vous connaissent. C'est également un " -"outil utile pour rencontrer de nouvelles personnes qui partagent vos " -"intérêts.\n" -"\n" -"%1$s dit:\n" -"\n" -"%4$s\n" -"\n" -"Vous pouvez voir le profil de %1$s sur %2$s ici:\n" -"\n" -"%5$s\n" -"\n" -"Si vous souhaitez essayez ce service, cliquez sur le lien ci-dessous pour " -"accepter l'invitation\n" -"\n" -"%6$s\n" -"\n" -"Sinon, vous pouvez ignorer ce message. Merci pour votre patience et votre " -"temps.\n" -"\n" -"Cordialement, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s vous invite à vous inscrire sur %2$s (%3$s).\n\n%2$s est un service de micro-blogging qui vous permet de rester en contact avec des personnes que vous connaissez et des personnes qui vous intéressent.\n\nVous pouvez aussi partager des informations sur vous, vos idées, ou votre vie en ligne avec les personnes qui vous connaissent. C'est également un outil utile pour rencontrer de nouvelles personnes qui partagent vos intérêts.\n\n%1$s dit:\n\n%4$s\n\nVous pouvez voir le profil de %1$s sur %2$s ici:\n\n%5$s\n\nSi vous souhaitez essayez ce service, cliquez sur le lien ci-dessous pour accepter l'invitation\n\n%6$s\n\nSinon, vous pouvez ignorer ce message. Merci pour votre patience et votre temps.\n\nCordialement, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -134,20 +76,8 @@ msgstr "%1$s suit maintenant vos statuts dans %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s suit maintenant vos statuts dans %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Cordialement,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s suit maintenant vos statuts dans %2$s.\n\n %3$s\n\nCordialement,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -223,22 +153,14 @@ msgstr "%s statuts " #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Vous recevrez bientôt un courriel contenant les instructions pour confirmer " -"votre adresse.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Vous recevrez bientôt un courriel contenant les instructions pour confirmer votre adresse.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** est un service de microblogging qui vous est proposé par " -"[%%site.broughtby%%](%%site.broughtbyurl%%)." +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** est un service de microblogging qui vous est proposé par [%%site.broughtby%%](%%site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -248,8 +170,7 @@ msgstr "**%%site.name%%** est un service de micro-blogging." #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -"Les utilisateurs doivent être désignés par leur nom complet ou leur pseudo." +msgstr "Les utilisateurs doivent être désignés par leur nom complet ou leur pseudo." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -262,8 +183,7 @@ msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces. Requis." +msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces. Requis." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -284,29 +204,17 @@ msgstr "6 caractères ou plus. Requis." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Un code de confirmation a été envoyé à votre adresse de messagerie " -"instantanée. Vous devez approuver %s pour recevoir des messages." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Un code de confirmation a été envoyé à votre adresse de messagerie instantanée. Vous devez approuver %s pour recevoir des messages." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Un code de confirmation a été envoyé à l'adresse courriel indiquée. Vérifiez " -"votre boîte de réception pour récupérer le code et les instructions." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Un code de confirmation a été envoyé à l'adresse courriel indiquée. Vérifiez votre boîte de réception pour récupérer le code et les instructions." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Un code de confirmation a été envoyé au numéro de téléphone indiqué. " -"Vérifiez votre boîte de réception pour récupérer le code et les instructions." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Un code de confirmation a été envoyé au numéro de téléphone indiqué. Vérifiez votre boîte de réception pour récupérer le code et les instructions." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -481,18 +389,13 @@ msgstr "Autoriser l'abonnement" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Ouvrir automatiquement ma session à l'avenir (déconseillé pour les " -"ordinateurs publics ou partagés)" +msgstr "Ouvrir automatiquement ma session à l'avenir (déconseillé pour les ordinateurs publics ou partagés)" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"M'abonner automatiquement à tous ceux qui s'abonnent à moi (recommandé pour " -"les utilisateurs non-humains)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "M'abonner automatiquement à tous ceux qui s'abonnent à moi (recommandé pour les utilisateurs non-humains)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -511,22 +414,13 @@ msgstr "Avatar mis à jour." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " -"Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à " -"votre liste de contacts ?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "En attente d'une confirmation pour cette adresse. Vérifiez votre compte Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à votre liste de contacts ?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " -"Jabber/GTalk pour recevoir de nouvelles instructions." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "En attente d'une confirmation pour cette adresse. Vérifiez votre compte Jabber/GTalk pour recevoir de nouvelles instructions." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -663,37 +557,8 @@ msgstr "Code de confirmation non trouvé." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Félicitations, %s! Bienvenue dans %%%%site.name%%%%. Vous pouvez " -"maintenant :\n" -"\n" -"* Visiter [votre profil](%s) et publier votre premier statut.\n" -"* Ajouter une adresse [Jabber/GTalk](%%%%action.imsettings%%%%) afin " -"d'envoyer et recevoir vos statuts par messagerie instantanée.\n" -"* [Chercher des personnes](%%%%action.peoplesearch%%%%) que vous pourriez " -"connaître ou qui partagent vos intêrets.\n" -"* Mettre votre [profil](%%%%action.profilesettings%%%%) à jour pour en dire " -"plus à votre sujet.\n" -"* Parcourir la [documentation](%%%%doc.help%%%%) en ligne pour en savoir " -"plus sur le fonctionnement du service.\n" -"\n" -"Merci pour votre inscription ! Nous vous souhaitons d'apprécier notre " -"service." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Félicitations, %s! Bienvenue dans %%%%site.name%%%%. Vous pouvez maintenant :\n\n* Visiter [votre profil](%s) et publier votre premier statut.\n* Ajouter une adresse [Jabber/GTalk](%%%%action.imsettings%%%%) afin d'envoyer et recevoir vos statuts par messagerie instantanée.\n* [Chercher des personnes](%%%%action.peoplesearch%%%%) que vous pourriez connaître ou qui partagent vos intêrets.\n* Mettre votre [profil](%%%%action.profilesettings%%%%) à jour pour en dire plus à votre sujet.\n* Parcourir la [documentation](%%%%doc.help%%%%) en ligne pour en savoir plus sur le fonctionnement du service.\n\nMerci pour votre inscription ! Nous vous souhaitons d'apprécier notre service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -760,8 +625,7 @@ msgstr "Impossible de s'abonner." #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "" -"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." +msgstr "Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 @@ -1101,12 +965,8 @@ msgid "Find people on this site" msgstr "Chercher des personnes sur ce site" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " -"votre mot de passe afin d'enregistrer vos préférences." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et votre mot de passe afin d'enregistrer vos préférences." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1191,28 +1051,16 @@ msgstr "Paramètres de messagerie instantanée" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Si vous avez déjà un compte, ouvrez une session avec votre identifiant et " -"votre mot de passe pour les relier à votre OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Si vous avez déjà un compte, ouvrez une session avec votre identifiant et votre mot de passe pour les relier à votre OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Pour ajouter un OpenID à votre compte, entrez-le dans le champ ci-dessous et " -"cliquez sur « Ajouter »." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Pour ajouter un OpenID à votre compte, entrez-le dans le champ ci-dessous et cliquez sur « Ajouter »." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un " -"nouveau à l'adresse courriel indiquée dans votre compte. " +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un nouveau à l'adresse courriel indiquée dans votre compte. " #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1242,12 +1090,8 @@ msgstr "Identifiant ou mot de passe incorrect." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Les instructions pour récupérer votre mot de passe ont été envoyées à " -"l'adresse courriel indiquée dans votre compte." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Les instructions pour récupérer votre mot de passe ont été envoyées à l'adresse courriel indiquée dans votre compte." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1343,14 +1187,8 @@ msgstr "Inviter de nouveaux utilisateurs" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), " -"version %s, disponible sous la licence [GNU Affero General Public License] " -"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), version %s, disponible sous la licence [GNU Affero General Public License] (http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1360,13 +1198,8 @@ msgstr "Identifiant Jabber déjà utilisé par un autre utilisateur." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Adresse Jabber ou GTalk (ex : nom@mondomaine.com). Assurez-vous d'ajouter %s " -"à votre liste d'amis dans votre logiciel de messagerie instantanée ou dans " -"GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Adresse Jabber ou GTalk (ex : nom@mondomaine.com). Assurez-vous d'ajouter %s à votre liste d'amis dans votre logiciel de messagerie instantanée ou dans GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1433,14 +1266,8 @@ msgstr "Ouvrir une session avec un compte [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez " -"un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%" -"action.openidlogin%%)." +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1485,13 +1312,8 @@ msgstr "Micro-blogging par %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Votre fournisseur de téléphonie mobile. Si vous connaissez un fournisseur " -"qui accepte la réception de SMS par courriel mais qui n'est pas listé ici, " -"écrivez-nous à %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Votre fournisseur de téléphonie mobile. Si vous connaissez un fournisseur qui accepte la réception de SMS par courriel mais qui n'est pas listé ici, écrivez-nous à %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1541,8 +1363,7 @@ msgstr "Nouveau mot de passe" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "" -"Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte." +msgstr "Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte." #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1588,9 +1409,7 @@ msgstr "Pseudo déjà utilisé. Essayez-en un autre." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Les pseudos ne peuvent contenir que des caractères minuscules et des " -"chiffres, sans espaces." +msgstr "Les pseudos ne peuvent contenir que des caractères minuscules et des chiffres, sans espaces." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -2113,24 +1932,16 @@ msgstr "Message personnel" #: ../actions/smssettings.php:69 actions/smssettings.php:69 #: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" -"Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" +msgstr "Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " -"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " -"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous abonner aux statuts de quelqu'un, cliquez \"Annuler\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" -"Publier un statut chaque fois que mon statut est modifié dans Jabber/GTalk" +msgstr "Publier un statut chaque fois que mon statut est modifié dans Jabber/GTalk" #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 @@ -2308,12 +2119,8 @@ msgid "Remove OpenID" msgstr "Retirer l'OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Vous ne pourrez plus ouvrir de session si vous retirez votre seul OpenID ! " -"Si vous avez besoin de le retirer, ajoutez d'abord un autre OpenID." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Vous ne pourrez plus ouvrir de session si vous retirez votre seul OpenID ! Si vous avez besoin de le retirer, ajoutez d'abord un autre OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2409,22 +2216,13 @@ msgstr "Rechercher dans le flux de recherche" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Recherchez les statuts %%site.name%% par leur contenu. Séparez les termes de " -"recherche par des espaces. Ils doivent contenir au moins 3 caractères." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Recherchez les statuts %%site.name%% par leur contenu. Séparez les termes de recherche par des espaces. Ils doivent contenir au moins 3 caractères." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " -"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " -"doivent contenir au moins 3 caractères." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils doivent contenir au moins 3 caractères." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2459,19 +2257,13 @@ msgstr "Envoyez-moi les statuts par Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Envoyez-moi les statuts par SMS ; je comprends que cela pourrait affecter ma " -"facture de téléphonie mobile." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Envoyez-moi les statuts par SMS ; je comprends que cela pourrait affecter ma facture de téléphonie mobile." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne " -"suis pas abonné." +msgstr "Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne suis pas abonné." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2703,25 +2495,13 @@ msgstr "L'adresse a été supprimée." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. " -"Vérifiez les instructions du site pour savoir comment compléter " -"l'autorisation de l'abonnement. Votre jeton d'abonnement est :" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment compléter l'autorisation de l'abonnement. Votre jeton d'abonnement est :" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez " -"les instructions du site pour savoir comment refuser pleinement " -"l'abonnement. " +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment refuser pleinement l'abonnement. " #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2747,8 +2527,7 @@ msgstr "Vous suivez les statuts de ces personnes. " #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +msgid "These people are already users and you were automatically subscribed to them:" msgstr "Vous avez été automatiquement abonné aux utilisateurs suivants :" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 @@ -2756,25 +2535,14 @@ msgid "This confirmation code is too old. Please start again." msgstr "Ce code de validation est périmé. Veuillez recommencer. " #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Ce formulaire devrait se transmettre automatiquement. Si ce n'est pas le " -"cas, cliquez sur le bouton de soumission pour accéder à votre fournisseur " -"OpenID." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Ce formulaire devrait se transmettre automatiquement. Si ce n'est pas le cas, cliquez sur le bouton de soumission pour accéder à votre fournisseur OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"C'est votre première ouverture de session dans %s, et nous devons relier " -"votre OpenID à un compte local. Vous pouvez soit créer un nouveau compte, " -"soit relier votre OpenID à un compte existant." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "C'est votre première ouverture de session dans %s, et nous devons relier votre OpenID à un compte local. Vous pouvez soit créer un nouveau compte, soit relier votre OpenID à un compte existant." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2806,8 +2574,7 @@ msgstr "Ce processus requiert un POST." #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" -msgstr "" -"Cette page n'est pas disponible dans un des formats que vous avez autorisés." +msgstr "Cette page n'est pas disponible dans un des formats que vous avez autorisés." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 @@ -2824,15 +2591,8 @@ msgstr "Aucun fuseau horaire n'a été choisi." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Pour vous abonner, vous devez [ouvrir une session](%%action.login%%), ou " -"[créer un nouveau compte](%%action.register%%). Si vous avez déjà un compte " -"sur un [site de micro-blogging compatible](%%doc.openmublog%%), entrez l'URL " -"de votre profil ci-dessous." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Pour vous abonner, vous devez [ouvrir une session](%%action.login%%), ou [créer un nouveau compte](%%action.register%%). Si vous avez déjà un compte sur un [site de micro-blogging compatible](%%doc.openmublog%%), entrez l'URL de votre profil ci-dessous." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2886,12 +2646,8 @@ msgid "Unknown version of OMB protocol." msgstr "Version inconnue du protocole OMB" #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Sauf précision contraire, les contenus de ce site sont la propriété de leurs " -"auteurs et sont disponibles sous" +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Sauf précision contraire, les contenus de ce site sont la propriété de leurs auteurs et sont disponibles sous" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2952,17 +2708,8 @@ msgid "Upload" msgstr "Transfert" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Ajoutez un nouvel « avatar » (votre image d'utilisateur). Vous ne pouvez " -"modifier l'image après l'envoi, alors faites en sorte qu'elle soit plus ou " -"moins carrée. Elle doit aussi être compatible avec la licence d'utilisation " -"du site ; utilisez de préférence une image qui vous appartient et que vous " -"voulez partager." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Ajoutez un nouvel « avatar » (votre image d'utilisateur). Vous ne pouvez modifier l'image après l'envoi, alors faites en sorte qu'elle soit plus ou moins carrée. Elle doit aussi être compatible avec la licence d'utilisation du site ; utilisez de préférence une image qui vous appartient et que vous voulez partager." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2970,20 +2717,15 @@ msgstr "Ajouter une nouvelle image pour le profil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Remplissez ce formulaire pour inviter vos amis et collègues à utiliser ce " -"service." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Remplissez ce formulaire pour inviter vos amis et collègues à utiliser ce service." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Utilisé uniquement pour les mises à jour de statut, les avertissements, et " -"la récupération de mot de passe" +msgstr "Utilisé uniquement pour les mises à jour de statut, les avertissements, et la récupération de mot de passe" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -3069,12 +2811,8 @@ msgid "You already have this OpenID!" msgstr "Vous utilisez déjà cet OpenID !" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Ce message va être définitivement supprimé. Il sera impossible de le " -"récupérer." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Ce message va être définitivement supprimé. Il sera impossible de le récupérer." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3103,36 +2841,22 @@ msgstr "Créez un nouveau compte pour commencer à envoyer des messages." #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"Vous pouvez recevoir des messages SMS par courriel en provenance de %%site." -"name%%." +msgstr "Vous pouvez recevoir des messages SMS par courriel en provenance de %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Vous pouvez retirer un OpenID de votre compte en cliquant sur le bouton « " -"Retirer »." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Vous pouvez retirer un OpenID de votre compte en cliquant sur le bouton « Retirer »." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée]" -"(%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-" -"dessous." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée](%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-dessous." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Vous pouvez mettre à jour les informations de votre profil pour qu'on en " -"sache plus à votre sujet." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Vous pouvez mettre à jour les informations de votre profil pour qu'on en sache plus à votre sujet." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3156,25 +2880,8 @@ msgstr "Vous n'avez pas envoyé ce profil" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Une nouvelle adresse vous a été attribuée pour publier vos statuts dans %1" -"$s.\n" -"\n" -"Écrivez à %2$s pour mettre à jour votre statut.\n" -"\n" -"Plus d'info : %3$s.\n" -"\n" -"Amicalement vôtre,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Une nouvelle adresse vous a été attribuée pour publier vos statuts dans %1$s.\n\nÉcrivez à %2$s pour mettre à jour votre statut.\n\nPlus d'info : %3$s.\n\nAmicalement vôtre,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3186,24 +2893,16 @@ msgstr "Vous ne pouvez pas supprimer le statut d'un autre utilisateur." #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "" -"Vous devez ouvrir une session pour inviter d'autres utilisateurs dans %s" +msgstr "Vous devez ouvrir une session pour inviter d'autres utilisateurs dans %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Un avertissement vous sera envoyé quand vos invités auront accepté votre " -"invitation et se seront inscrits sur le site. Merci de faire grandir notre " -"communauté !" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Un avertissement vous sera envoyé quand vos invités auront accepté votre invitation et se seront inscrits sur le site. Merci de faire grandir notre communauté !" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " -msgstr "" -"Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de " -"passe ci-dessous." +msgstr "Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de passe ci-dessous." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 #: actions/openidlogin.php:104 actions/openidlogin.php:113 @@ -3213,17 +2912,12 @@ msgstr "Votre URL OpenID" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "" -"Votre pseudo sur ce serveur, ou l'adresse courriel que vous avez enregistrée." +msgstr "Votre pseudo sur ce serveur, ou l'adresse courriel que vous avez enregistrée." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites " -"avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3346,9 +3040,7 @@ msgstr "« Après" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Un problème est survenu avec votre jeton de session. Veuillez essayer à " -"nouveau." +msgstr "Un problème est survenu avec votre jeton de session. Veuillez essayer à nouveau." #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" @@ -3366,9 +3058,7 @@ msgstr "Ajouter à mes favoris" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Envoyez-moi un courriel quand un utilisateur ajoute un de mes statuts à ses " -"favoris." +msgstr "Envoyez-moi un courriel quand un utilisateur ajoute un de mes statuts à ses favoris." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 @@ -3419,18 +3109,12 @@ msgstr "Boîte de réception de %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Cette boîte de réception regroupe les messages personnels qui vous sont " -"envoyés." +msgstr "Cette boîte de réception regroupe les messages personnels qui vous sont envoyés." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s vous invite à vous inscrire à %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s vous invite à vous inscrire à %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3472,10 +3156,8 @@ msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"N'envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "N'envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3499,14 +3181,11 @@ msgstr "[OpenID](%%doc.openid%%) permet de vous connecter à de nombreux sites " #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " -msgstr "" -"Si vous ne souhaitez pas ajouter un identifiant OpenID à votre compte, " +msgstr "Si vous ne souhaitez pas ajouter un identifiant OpenID à votre compte, " #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" -"C'est votre seul identifiant OpenID ; si vous le supprimez, vous ne pourrez " -"plus vous identifier !" +msgstr "C'est votre seul identifiant OpenID ; si vous le supprimez, vous ne pourrez plus vous identifier !" #: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " @@ -3524,16 +3203,12 @@ msgstr "Boîte d'envoi de %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Cette boîte d'envoi regroupe les messages personnels que vous avez envoyés." +msgstr "Cette boîte d'envoi regroupe les messages personnels que vous avez envoyés." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Recherchez des utilisateurs de %%site.name%% par nom, par emplacement, ou " -"par intérêts. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "Recherchez des utilisateurs de %%site.name%% par nom, par emplacement, ou par intérêts. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3584,12 +3259,8 @@ msgstr "Votre mot de passe doit contenir au moins 6 caractères." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. Plusieurs choix " -"s'offrent maintenant à vous :" +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. Plusieurs choix s'offrent maintenant à vous :" #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3619,9 +3290,7 @@ msgstr "Message introuvable." #: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." -msgstr "" -"Ce message personnel ne peut être lu que par son expéditeur et son " -"destinataire." +msgstr "Ce message personnel ne peut être lu que par son expéditeur et son destinataire." #: actions/showmessage.php:61 actions/showmessage.php:108 #, php-format @@ -3687,9 +3356,7 @@ msgstr "Destinataire non trouvé." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" -"Vous ne pouvez envoyer des messages personnels qu'aux utilisateurs inscrits " -"comme amis." +msgstr "Vous ne pouvez envoyer des messages personnels qu'aux utilisateurs inscrits comme amis." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3716,19 +3383,12 @@ msgstr "%s a ajouté un de vos messages à ses favoris" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s a ajouté à ses favoris un de vos statuts dans %2$s.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s a ajouté à ses favoris un de vos statuts dans %2$s.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Inscrivez votre compte Twitter pour transférer automatiquement vos statuts " -"vers Twitter, " +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Inscrivez votre compte Twitter pour transférer automatiquement vos statuts vers Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3771,18 +3431,12 @@ msgstr "Envoyer mes réponses locales \"@\" dans Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 #: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." -msgstr "" -"Je veux m'abonner à mes amis de Twitter qui ont enregistré un compte ici." +msgstr "Je veux m'abonner à mes amis de Twitter qui ont enregistré un compte ici." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"L'identifiant ne doit pas dépasser 15 caractères, et ne peut contenir que " -"des chiffres, des lettres minuscules ou majuscules, et des barres de " -"soulignement (_). " +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "L'identifiant ne doit pas dépasser 15 caractères, et ne peut contenir que des chiffres, des lettres minuscules ou majuscules, et des barres de soulignement (_). " #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3792,8 +3446,7 @@ msgstr "La vérification de vos informations de Twitter a échoué !" #: actions/twittersettings.php:137 #, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" -"Impossible de récupérer l'information du compte de \"%s\" dans Twitter." +msgstr "Impossible de récupérer l'information du compte de \"%s\" dans Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 @@ -3917,9 +3570,7 @@ msgstr "À propos : %s" #: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" -"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " -"entré %d." +msgstr "Message trop long ! La taille maximale est de 140 caractères ; vous en avez entré %d." #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 #: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 @@ -4000,12 +3651,8 @@ msgstr "Utilisateur sans profil correspondant dans le système." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Vous avez une nouvelle adresse pour publier vos statuts dans %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Vous avez une nouvelle adresse pour publier vos statuts dans %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -4014,12 +3661,8 @@ msgstr "Nouveau message personnel de %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) vous a envoyé un message personnel :\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) vous a envoyé un message personnel :\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4213,9 +3856,7 @@ msgstr "Modifier le groupe %s" #: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 #: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" -msgstr "" -"Les boîtes de réception doivent être activées pour que les groupes " -"fonctionnent " +msgstr "Les boîtes de réception doivent être activées pour que les groupes fonctionnent " #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 @@ -4308,8 +3949,7 @@ msgstr "Erreur du serveur - impossible d'accéder à cet utilisateur !" #: actions/facebookhome.php:196 #, php-format msgid "If you would like the %s app to automatically update " -msgstr "" -"Si vous souhaitez que l'application %s soit mise à jour automatiquement " +msgstr "Si vous souhaitez que l'application %s soit mise à jour automatiquement " #: actions/facebookhome.php:213 actions/facebooksettings.php:137 #, php-format @@ -4386,9 +4026,7 @@ msgstr "Impossible de retirer l'utilisateur Facebook." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" -msgstr "" -"Un problème est survenu lors de l'enregistrement de vos préférences de " -"synchronisation !" +msgstr "Un problème est survenu lors de l'enregistrement de vos préférences de synchronisation !" #: actions/facebooksettings.php:67 msgid "Sync preferences saved." @@ -4520,12 +4158,8 @@ msgstr "Créer un nouveau groupe" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Recherchez des groupes dans %%site.name%% par nom, par emplacement ou par " -"intérêts. Séparez les termes de recherches par des espaces. Ils doivent " -"contenir au moins 3 caractères." +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Recherchez des groupes dans %%site.name%% par nom, par emplacement ou par intérêts. Séparez les termes de recherches par des espaces. Ils doivent contenir au moins 3 caractères." #: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" @@ -4569,9 +4203,7 @@ msgstr "%s a rejoint le groupe %s" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "" -"Les boîtes de réception doivent être activées pour que les groupes " -"fonctionnent." +msgstr "Les boîtes de réception doivent être activées pour que les groupes fonctionnent." #: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -4590,8 +4222,7 @@ msgstr "Vous n'êtes pas membre de ce groupe." #: actions/leavegroup.php:100 msgid "You may not leave a group while you are its administrator." -msgstr "" -"Il est recommandé de ne pas quitter un groupe dont vous êtes administrateur." +msgstr "Il est recommandé de ne pas quitter un groupe dont vous êtes administrateur." #: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 @@ -4657,11 +4288,8 @@ msgid "Ajax Error" msgstr "Erreur Ajax" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Cet utilisateur n'accepte pas les clins d'œil ou n'a pas encore validé son " -"adresse courriel." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Cet utilisateur n'accepte pas les clins d'œil ou n'a pas encore validé son adresse courriel." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4735,10 +4363,8 @@ msgstr "Information de profil" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4769,12 +4395,8 @@ msgstr "Impossible de récupérer le flux public." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" -"wiki/Microblog) " +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) " #: actions/publictagcloud.php:57 #, fuzzy @@ -4931,12 +4553,8 @@ msgstr "Tous les membres" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." -"wikipedia.org/wiki/Microblog) %%%%site.name%%%%" +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4989,12 +4607,8 @@ msgstr "Tous les groupes" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" -"wiki/Microblog) %%%%site.name%%%%" +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -5007,8 +4621,7 @@ msgstr "M'envoyer les statuts par SMS ; " #: actions/smssettings.php:335 msgid "A confirmation code was sent to the phone number you added. " -msgstr "" -"Un code de confirmation vient d'être envoyé au numéro de téléphone indiqué. " +msgstr "Un code de confirmation vient d'être envoyé au numéro de téléphone indiqué. " #: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" @@ -5103,9 +4716,7 @@ msgid "Tag user" msgstr "Marquer l'utilisateur" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" msgstr "Marquer cet utilisateur (séparer par des espaces ou des virgules)" #: actions/tagother.php:164 @@ -5113,11 +4724,8 @@ msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) " -"ou qui sont abonnées à vous." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) ou qui sont abonnées à vous." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5125,8 +4733,7 @@ msgstr "Impossible d'enregistrer les marquages." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." +msgstr "Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." #: actions/tagrss.php:35 msgid "No such tag." @@ -5212,11 +4819,8 @@ msgstr "Erreur lors de l'enregistrement du statut. Utilisateur inconnu." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " -"quelques minutes." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans quelques minutes." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5397,8 +5001,7 @@ msgstr "Description du groupe ou du sujet (140 caractères maximum)" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Emplacement du groupe, s'il y a lieu \"Ville, État ou région, Pays\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5463,12 +5066,8 @@ msgstr "Ouvrir une session ou s'enregistrer avec OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Bonjour, %s.\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Bonjour, %s.\n\n" #: lib/mail.php:236 #, php-format @@ -5487,12 +5086,8 @@ msgstr "Site Web : %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Bio : %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Bio : %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5679,7 +5274,7 @@ msgid "You and friends" msgstr "Vous et vos amis" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Vous pouvez associer un « avatar » (image personnelle) à votre profil." @@ -5688,30 +5283,18 @@ msgid "Avatar deleted." msgstr "Avatar supprimé." #: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" -"Êtes-vous certain de vouloir bloquer cet utilisateur ? Après cela, il ne " -"sera plus abonné à votre compte, ne pourra plus s’y abonner de nouveau, et " -"vous ne serez pas informé des @-réponses de sa part." +msgid "Are you sure you want to block this user? Afterwards, they will be unsubscribed from you, unable to subscribe to you in the future, and you will not be notified of any @-replies from them." +msgstr "Êtes-vous certain de vouloir bloquer cet utilisateur ? Après cela, il ne sera plus abonné à votre compte, ne pourra plus s’y abonner de nouveau, et vous ne serez pas informé des @-réponses de sa part." #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Ce message va être définitivement supprimé. Il sera impossible de le " -"récupérer." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Ce message va être définitivement supprimé. Il sera impossible de le récupérer." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Un problème est survenu avec votre jeton de session. Veuillez essayer à " -"nouveau." +msgstr "Un problème est survenu avec votre jeton de session. Veuillez essayer à nouveau." #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy @@ -5720,31 +5303,17 @@ msgstr "Envoyez-moi un courriel quand quelqu'un m'envoie un message personnel." #: actions/facebookhome.php:193 actions/facebookhome.php:187 #, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" -"Si vous souhaitez que l’application %s mette automatiquement à jour votre " -"statut Facebook avec votre dernier message, vous devez lui donner ce droit." - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" +msgid "If you would like the %s app to automatically update your Facebook status with your latest notice, you need to give it permission." +msgstr "Si vous souhaitez que l’application %s mette automatiquement à jour votre statut Facebook avec votre dernier message, vous devez lui donner ce droit." #: actions/facebooksettings.php:124 #, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" -"Si vous souhaitez que %s mette automatiquement à jour votre statut Facebook " -"avec votre dernier message, vous devez lui donner ce droit." +msgid "If you would like %s to automatically update your Facebook status with your latest notice, you need to give it permission." +msgstr "Si vous souhaitez que %s mette automatiquement à jour votre statut Facebook avec votre dernier message, vous devez lui donner ce droit." #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "Choisissez un logo pour votre groupe." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5753,47 +5322,28 @@ msgid "Pick a square area of the image to be the logo." msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Micro-blogging par %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " -"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " -"doivent contenir au moins 3 caractères." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils doivent contenir au moins 3 caractères." #: actions/newmessage.php:102 msgid "Only logged-in users can send direct messages." msgstr "Seuls les utilisateurs connectés peuvent envoyer des messages directs." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr " Flux de recherche pour « %s »" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " -"votre mot de passe afin d'enregistrer vos préférences." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et votre mot de passe afin d'enregistrer vos préférences." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5812,25 +5362,8 @@ msgstr "Fil du flux public" #: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" -"Vous êtes sur %%site.name%% un service de [microblog] (http://fr.wikipedia." -"org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://status." -"net/). [Inscrivez-vous](%%action.register%%) pour partager des messages sur " -"vous avec vos amis, famille et collègues ! ([Plus d’informations](%%doc.help%" -"%))" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "Vous êtes sur %%site.name%% un service de [microblog] (http://fr.wikipedia.org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://status.net/). [Inscrivez-vous](%%action.register%%) pour partager des messages sur vous avec vos amis, famille et collègues ! ([Plus d’informations](%%doc.help%%))" #: actions/register.php:432 actions/register.php:479 actions/register.php:489 msgid "Creative Commons Attribution 3.0" @@ -5838,29 +5371,14 @@ msgstr "Creative Commons Paternité 3.0" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"à l'exception de ces données personnelles : mot de passe, adresse e-mail, " -"adresse de messagerie instantanée, numéro de téléphone. " +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. " #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 msgid "Created" msgstr "Créé" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 msgid "Your profile" msgstr "Votre profil" @@ -5871,91 +5389,50 @@ msgid "%s's profile" msgstr "Profil de %s" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Flux des statuts de %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Flux des statuts de %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Flux des statuts de %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Boîte d'envoi de %s" #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 -#, fuzzy msgid "Edit Avatar" -msgstr "Avatar" +msgstr "Modifier l'avatar" #: actions/showstream.php:316 actions/showstream.php:281 #: actions/showstream.php:366 -#, fuzzy msgid "Edit profile settings" -msgstr "Paramètres du profil" +msgstr "Modifier les paramètres du profil" #: actions/showstream.php:317 actions/showstream.php:282 #: actions/showstream.php:367 msgid "Edit" msgstr "Modifier" -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Un code de confirmation a été envoyé au numéro de téléphone indiqué. " -"Vérifiez votre boîte de réception pour récupérer le code et les instructions." +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Un code de confirmation a été envoyé au numéro de téléphone indiqué. Vérifiez votre boîte de réception pour récupérer le code et les instructions." #: actions/twitapifavorites.php:171 lib/mail.php:556 #: actions/twitapifavorites.php:222 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" -"%1$s vient de marquer votre message de %2$s comme un de ses favoris.\n" -"\n" -"Dans le cas où vous l’auriez oublié, vous pouvez lire le texte de votre " -"message ici :\n" -"\n" -"%3$s\n" -"\n" -"Vous pouvez consulter la liste des favoris de %1$s ici :\n" -"\n" -"%4$s\n" -"\n" -"Cordialement,\n" -"%5$s\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nIn case you forgot, you can see the text of your notice here:\n\n%3$s\n\nYou can see the list of %1$s's favorites here:\n\n%4$s\n\nFaithfully yours,\n%5$s\n" +msgstr "%1$s vient de marquer votre message de %2$s comme un de ses favoris.\n\nDans le cas où vous l’auriez oublié, vous pouvez lire le texte de votre message ici :\n\n%3$s\n\nVous pouvez consulter la liste des favoris de %1$s ici :\n\n%4$s\n\nCordialement,\n%5$s\n" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5971,29 +5448,18 @@ msgstr "Aucun utilisateur n'a été trouvé !" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Inscrivez votre compte Twitter pour transférer automatiquement vos statuts " -"vers Twitter, " +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Inscrivez votre compte Twitter pour transférer automatiquement vos statuts vers Twitter, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" -"Impossible de récupérer l'information du compte de \"%s\" dans Twitter." +msgstr "Impossible de récupérer l'information du compte de \"%s\" dans Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " -"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " -"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous abonner aux statuts de quelqu'un, cliquez \"Annuler\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -6002,12 +5468,8 @@ msgstr "Rechercher des personnes ou du texte" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " -"quelques minutes." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans quelques minutes." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -6021,54 +5483,16 @@ msgstr "Clin d'œil" #: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" -"Abonnements : %1$s\n" -"Abonnés : %2$s\n" -"Messages : %3$s" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +msgid "Subscriptions: %1$s\nSubscribers: %2$s\nNotices: %3$s" +msgstr "Abonnements : %1$s\nAbonnés : %2$s\nMessages : %3$s" #: lib/dberroraction.php:60 msgid "Database error" msgstr "Erreur de la base de données" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " msgstr "Vous devez ouvrir une session pour utiliser l'application Facebook %s" #: lib/feed.php:85 @@ -6083,10 +5507,6 @@ msgstr "RSS 2.0" msgid "Atom" msgstr "Atom" -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - #: lib/imagefile.php:75 #, php-format msgid "That file is too big. The maximum file size is %d." @@ -6094,121 +5514,13 @@ msgstr "Ce fichier est trop lourd. La taille maximale est %d." #: lib/mail.php:175 lib/mail.php:174 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" -"Bonjour %s.\n" -"\n" -"Quelqu’un vient d’utiliser cette adresse électronique sur %s.\n" -"\n" -"S’il s’agit bien de vous, et que vous souhaitez confirmer cette adresse, " -"utilisez le lien qui suit :\n" -"\n" -"%s\n" -"\n" -"Dans le cas contraire, il vous suffit d’ignorer ce message.\n" -"\n" -"Merci de votre attention,\n" -"%s\n" +msgid "Hey, %s.\n\nSomeone just entered this email address on %s.\n\nIf it was you, and you want to confirm your entry, use the URL below:\n\n %s\n\nIf not, just ignore this message.\n\nThanks for your time, \n%s\n" +msgstr "Bonjour %s.\n\nQuelqu’un vient d’utiliser cette adresse électronique sur %s.\n\nS’il s’agit bien de vous, et que vous souhaitez confirmer cette adresse, utilisez le lien qui suit :\n\n%s\n\nDans le cas contraire, il vous suffit d’ignorer ce message.\n\nMerci de votre attention,\n%s\n" #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s suit maintenant vos statuts dans %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Cordialement,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s suit maintenant vos statuts dans %2$s.\n\n %3$s\n\nCordialement,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 msgid "Search site" @@ -6216,35 +5528,7 @@ msgstr "Rechercher sur le site" #: lib/section.php:106 msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" +msgstr "Plus..." #: actions/attachment.php:73 msgid "No such attachment." @@ -6261,12 +5545,12 @@ msgid "Block this user from this group" msgstr "Liste des utilisateurs inscrits à ce groupe." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Profil de l'utilisateur" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s et ses amis - page %d" @@ -6286,60 +5570,29 @@ msgid "Conversation" msgstr "Code de confirmation" #: actions/deletenotice.php:115 actions/deletenotice.php:145 -#, fuzzy msgid "Do not delete this notice" -msgstr "Impossible de supprimer ce statut." - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgstr "Ne pas supprimer cet avis" #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Marquage invalide : \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Pseudo déjà utilisé. Essayez-en un autre." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Impossible de créer le favori." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6353,24 +5606,14 @@ msgstr "Aucun avis" msgid "No attachments" msgstr "Aucune pièce jointe" -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 -#, fuzzy msgid "Not a valid invitation code." -msgstr "Pseudo invalide." +msgstr "Code d'invitation invalide." #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 -#, fuzzy msgid "No group specified." -msgstr "Aucun profil n'a été spécifié." - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +msgstr "Aucun groupe n'a été spécifié." #: actions/groupblock.php:95 #, fuzzy @@ -6378,44 +5621,23 @@ msgid "User is already blocked from group." msgstr "Cet utilisateur vous a bloqué." #: actions/groupblock.php:100 -#, fuzzy msgid "User is not a member of group." -msgstr "Vous n'êtes pas membre de ce groupe." +msgstr "L'utilisateur n'est pas membre du groupe." #: actions/groupblock.php:136 actions/groupmembers.php:311 #: actions/groupmembers.php:314 -#, fuzzy msgid "Block user from group" -msgstr "Bloquer cet utilisateur" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +msgstr "Bloquer cet utilisateur du groupe" #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -#, fuzzy msgid "You must be logged in to edit a group." -msgstr "Vous devez ouvrir une session pour créer un groupe." +msgstr "Vous devez ouvrir une session pour modifier un groupe." #: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 #, fuzzy msgid "Group design" msgstr "Groupes" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6439,253 +5661,60 @@ msgid "Design preferences saved." msgstr "Préférences de synchronisation enregistrées." #: actions/groupmembers.php:438 actions/groupmembers.php:441 -#, fuzzy msgid "Make user an admin of the group" -msgstr "Seuls les administrateurs d'un groupe peuvent le modifier." +msgstr "Faire de cet utilisateur un administrateur du groupe" #: actions/groupmembers.php:470 actions/groupmembers.php:473 #, fuzzy msgid "Make Admin" msgstr "Administrer" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 -#, fuzzy msgid "No results." -msgstr "Aucun résultat " - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" +msgstr "Aucun résultat." #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Cet utilisateur vous a bloqué." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 -#, fuzzy msgid "Message sent" -msgstr "Message " - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" +msgstr "Message envoyé" #: actions/newnotice.php:230 scripts/maildaemon.php:85 -#, fuzzy msgid "Couldn't save file." -msgstr "Impossible d'enregistrer le profil." - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +msgstr "Impossible d'enregistrer le fichier." #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites " -"avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Paramètres du profil" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" -"wiki/Microblog) " - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) " #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un " -"nouveau à l'adresse courriel indiquée dans votre compte. " +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un nouveau à l'adresse courriel indiquée dans votre compte. " #: actions/recoverpassword.php:158 #, fuzzy msgid "You've been identified. Enter a new password below. " -msgstr "" -"Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de " -"passe ci-dessous." +msgstr "Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de passe ci-dessous." #: actions/recoverpassword.php:188 -#, fuzzy msgid "Password recover" -msgstr "Récupération de mot de passe demandée" +msgstr "Récupération de mot de passe" #: actions/register.php:86 #, fuzzy @@ -6697,92 +5726,34 @@ msgstr "Erreur dans le code de confirmation." msgid "Subscribe to a remote user" msgstr "S'abonner à cet utilisateur" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "Statuts favoris de %s - page %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fil des statuts du groupe %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fil des statuts du groupe %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Fil des statuts du groupe %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." -"wikipedia.org/wiki/Microblog) %%%%site.name%%%%" +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" #: actions/showgroup.php:474 actions/showgroup.php:482 -#, fuzzy msgid "Admins" -msgstr "Administrer" +msgstr "Administrateurs" #: actions/shownotice.php:101 #, fuzzy @@ -6790,94 +5761,41 @@ msgid "Not a local notice" msgstr "Ceci n'est pas un utilisateur local." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Statuts marqués avec %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Fil des statuts du groupe %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" -"wiki/Microblog) %%%%site.name%%%%" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format msgid "%s is not listening to anyone." -msgstr "%1$s suit actuellement " +msgstr "%s ne suit actuellement personne." #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Flux des statuts de %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Flux des statuts de %s" #: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -#, fuzzy msgid "This status is already a favorite!" msgstr "Ce statut a déjà été ajouté à vos favoris !" #: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -#, fuzzy msgid "That status is not a favorite!" msgstr "Ce statut n'est pas un favori !" @@ -6893,76 +5811,36 @@ msgid "Target user not specified." msgstr "Aucun destinataire n'a été spécifié." #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 -#, fuzzy msgid "Could not find target user." -msgstr "Aucun statut n'a été trouvé." +msgstr "Impossible de trouver l'utilisateur cible." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Réponses à %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 -#, fuzzy msgid "License" -msgstr "licence." +msgstr "Licence" #: actions/userauthorization.php:179 actions/userauthorization.php:212 -#, fuzzy msgid "Reject this subscription" -msgstr "Abonnements de %s" +msgstr "Rejeter cet souscription" #: actions/userdesignsettings.php:76 lib/designsettings.php:65 -#, fuzzy msgid "Profile design" -msgstr "Paramètres du profil" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" +msgstr "Conception de profile" #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format msgid "%s is not a member of any group." -msgstr "Vous n'êtes pas membre de ce groupe." - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" +msgstr "%s n'est pas membre d'aucun groupe." #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy @@ -6970,254 +5848,82 @@ msgid "Problem saving notice. Too long." msgstr "Problème lors de l'enregistrement du statut." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Message adressé à %1$s le %2$s" #: lib/accountsettingsaction.php:119 lib/groupnav.php:118 #: lib/accountsettingsaction.php:120 msgid "Design" -msgstr "" +msgstr "Conception" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -#, fuzzy msgid "Design your profile" -msgstr "Profil de l'utilisateur" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" +msgstr "Concevez votre profile" #: lib/attachmentlist.php:87 msgid "Attachments" -msgstr "" +msgstr "Pièces jointes" #: lib/attachmentlist.php:265 msgid "Author" -msgstr "" +msgstr "Auteur" #: lib/attachmentlist.php:278 -#, fuzzy msgid "Provider" -msgstr "Profil" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" +msgstr "Fournisseur" #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Transfert" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 -#, fuzzy msgid "Change colours" -msgstr "Modifier votre mot de passe" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" +msgstr "Modifier les couleurs" #: lib/designsettings.php:191 -#, fuzzy msgid "Content" -msgstr "Connecter" +msgstr "Contenu" #: lib/designsettings.php:204 -#, fuzzy msgid "Sidebar" -msgstr "Rechercher" +msgstr "Barre latérale" #: lib/designsettings.php:230 -#, fuzzy msgid "Links" -msgstr "Ouvrir une session" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" +msgstr "Liens" #: lib/groupnav.php:100 -#, fuzzy msgid "Blocked" -msgstr "Bloquer" +msgstr "Bloqué" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format msgid "%s blocked users" -msgstr "Bloquer cet utilisateur" +msgstr "%s utilisateurs bloqués" #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format msgid "Add or edit %s design" -msgstr "Ajouter ou modifier le logo de %s" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" +msgstr "Ajouter ou modifier la conception de %s" #: lib/noticelist.php:436 lib/noticelist.php:478 -#, fuzzy msgid "in context" -msgstr "Aucun contenu !" +msgstr "dans le contexte" #: lib/profileaction.php:177 -#, fuzzy msgid "User ID" -msgstr "Utilisateur" +msgstr "ID de l'utilisateur" #: lib/searchaction.php:156 lib/searchaction.php:162 -#, fuzzy msgid "Search help" -msgstr "Rechercher" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" +msgstr "Aide sur la recherche" #: lib/webcolor.php:82 -#, fuzzy, php-format -msgid "%s is not a valid color!" -msgstr "L'adresse du site personnel n'est pas un URL valide. " - -#: lib/webcolor.php:123 #, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" +msgid "%s is not a valid color!" +msgstr "&s n'est pas une couleur valide !" #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 @@ -7226,12 +5932,12 @@ msgid "No such page" msgstr "Aucun marquage trouvé." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Messages envoyés à %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." @@ -7240,12 +5946,8 @@ msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." msgid "Could not unfollow user: User not found." msgstr "Impossible de suivre l'utilisateur : Utilisateur non trouvé." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "la description est trop longue (140 caractères maximum)." @@ -7255,7 +5957,7 @@ msgid "You are already a member of that group." msgstr "Vous êtes déjà membre de ce groupe " #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Impossible d'inscrire l'utilisateur %s au groupe %s" @@ -7265,44 +5967,31 @@ msgid "You are not a member of this group." msgstr "Vous n'êtes pas membre de ce groupe." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Impossible de retirer l'utilisateur %s du groupe %s" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "Groupes de %s" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "Groupes de %s" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Actions du groupe" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -7314,12 +6003,12 @@ msgid "Post to " msgstr "Photo" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "la description est trop longue (140 caractères maximum)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" @@ -7349,12 +6038,11 @@ msgid "No such file." msgstr "Statut non trouvé. " #: actions/getfile.php:79 -#, fuzzy msgid "Cannot read file." -msgstr "Fichier perdu." +msgstr "Impossible de lire le fichier" #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" @@ -7364,40 +6052,17 @@ msgid "IM is not available." msgstr "Cette page n'est pas disponible dans " #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez " -"un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%" -"action.openidlogin%%)." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%action.openidlogin%%)." #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Statuts correspondant au(x) terme(s) \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Décrivez vos intérêts en 140 caractères" @@ -7407,20 +6072,13 @@ msgid "Describe yourself and your interests" msgstr "Décrivez qui vous êtes et vos " #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "La bio est trop longue (140 caractères maximum)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "URL de profil invalide (aucun document YADIS)." #: actions/remotesubscribe.php:176 @@ -7433,51 +6091,33 @@ msgstr "Ce profil est local ! Ouvrez une session pour vous abonner." msgid "Couldn’t get a request token." msgstr "Impossible d'obtenir le jeton de requête." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Fil des statuts du groupe %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Message adressé à %1$s le %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Fil des favoris de %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Fil des favoris de %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Fil des favoris de %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Groupe %s" @@ -7492,80 +6132,32 @@ msgid "SMS is not available." msgstr "Cette page n'est pas disponible dans " #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Flux des statuts de %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " -"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " -"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous abonner aux statuts de quelqu'un, cliquez \"Annuler\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. " -"Vérifiez les instructions du site pour savoir comment compléter " -"l'autorisation de l'abonnement. Votre jeton d'abonnement est :" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment compléter l'autorisation de l'abonnement. Votre jeton d'abonnement est :" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez " -"les instructions du site pour savoir comment refuser pleinement " -"l'abonnement. " - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment refuser pleinement l'abonnement. " #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Impossible de lire l'URL '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Format d'image invalide pour '%s'" @@ -7580,40 +6172,27 @@ msgid "Site content license" msgstr "Licence du logiciel StatusNet" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" -msgstr "" -"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Clin d'œil envoyé" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" -"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " -"entré %d." +msgstr "Message trop long ! La taille maximale est de 140 caractères ; vous en avez entré %d." #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" -"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " -"entré %d." +msgstr "Message trop long ! La taille maximale est de 140 caractères ; vous en avez entré %d." #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Répondre à ce statut" @@ -7622,54 +6201,11 @@ msgstr "Répondre à ce statut" msgid "Error saving notice." msgstr "Problème lors de l'enregistrement du statut." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Aucun code de confirmation." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7686,70 +6222,24 @@ msgid "Describe the group or topic" msgstr "Description du groupe ou du sujet (140 caractères maximum)" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Description du groupe ou du sujet (140 caractères maximum)" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Flux des statuts de %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s a ajouté un de vos messages à ses favoris" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 -#, fuzzy msgid "from" msgstr "de" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7759,3 +6249,4 @@ msgstr "Impossible de supprimer le favori." #, fuzzy msgid "Duplicate notice" msgstr "Supprimer ce statut" + diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 9a8340023c..6ac8c15738 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -7,14 +7,13 @@ # Francisco Diéguez , 2008. msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:58:19+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:18+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: out-statusnet\n" @@ -28,11 +27,8 @@ msgstr "Buscar \"%s\" na Liña de tempo" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" agás esta informción privada: contrasinal, dirección de correo electrónico, " -"dirección IM, número de teléfono." +msgid " except this private data: password, email address, IM address, phone number." +msgstr " agás esta informción privada: contrasinal, dirección de correo electrónico, dirección IM, número de teléfono." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -54,58 +50,8 @@ msgstr "%1$s invitoute a unirse a él en %2$s." #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s invitoute a unirte a el en %2$s (%3$s).\n" -"\n" -"%2$s é un servizo de microbloguexo que che permite manterte actualizado coa " -"xente que coñeces e xente na que tes interese.\n" -"\n" -"Tamén podes compartir novas contigo mesmo, ou pensamentos, ou vivir en liña " -"con xente que te coñece. Tamén está moi ben para coñecer xente que comparte " -"os mesmos intereses..\n" -"\n" -"%1$s dixo:\n" -"\n" -"%4$s\n" -"\n" -"Podes ollar a súa páxina de perfil %1$s's en %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"Se queres probar, fai clic na ligazón de abaixo para aceptar a invitación..\n" -"\n" -"%6$s\n" -"\n" -"Se non, pois ignora esta mensaxe. Pero aló ti, aquí se pasa moi ben.\n" -"\n" -"Saudiños, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s invitoute a unirte a el en %2$s (%3$s).\n\n%2$s é un servizo de microbloguexo que che permite manterte actualizado coa xente que coñeces e xente na que tes interese.\n\nTamén podes compartir novas contigo mesmo, ou pensamentos, ou vivir en liña con xente que te coñece. Tamén está moi ben para coñecer xente que comparte os mesmos intereses..\n\n%1$s dixo:\n\n%4$s\n\nPodes ollar a súa páxina de perfil %1$s's en %2$s here:\n\n%5$s\n\nSe queres probar, fai clic na ligazón de abaixo para aceptar a invitación..\n\n%6$s\n\nSe non, pois ignora esta mensaxe. Pero aló ti, aquí se pasa moi ben.\n\nSaudiños, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -115,20 +61,8 @@ msgstr "%1$s está a escoitar os teus chíos %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s está a escoitar os teus chíos en %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentamente todo seu,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s está a escoitar os teus chíos en %2$s.\n\n %3$s\n\nAtentamente todo seu,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -204,22 +138,14 @@ msgstr "%s chíos de calquera!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Deberías recibir unha mensaxe no teu email nun intre, coas instrucións de " -"como confirmar a túa dirección de correo.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Deberías recibir unha mensaxe no teu email nun intre, coas instrucións de como confirmar a túa dirección de correo.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -237,15 +163,12 @@ msgstr ". Os contribuíntes deben atribuiselles polo nome completo ou apodo." #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" +msgstr "De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"De 1 a 64 letras minúsculas ou números, nin espazos nin signos de " -"puntuación. Requerido." +msgstr "De 1 a 64 letras minúsculas ou números, nin espazos nin signos de puntuación. Requerido." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -266,31 +189,17 @@ msgstr "6 ou máis caracteres. Requerido." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"O código de confirmación foi embiado á dirección IM que engadiches. Deberías " -"engadir a %s como contacto para que che poida enviar mensaxes." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "O código de confirmación foi embiado á dirección IM que engadiches. Deberías engadir a %s como contacto para que che poida enviar mensaxes." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Enviouseche un código de confirmación á dirección de correo que engadiches. " -"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " -"debes seguir." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Enviouseche un código de confirmación á dirección de correo que engadiches. Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que debes seguir." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Enviouseche o código de confirmación ó número de teléfono que engadiches. " -"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " -"debes seguir." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Enviouseche o código de confirmación ó número de teléfono que engadiches. Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que debes seguir." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -470,11 +379,8 @@ msgstr "Endiante acceder automáticamente, coidado en equipos compartidos!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " -"non humáns)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Suscribirse automáticamente a calquera que se suscriba a min (o mellor para non humáns)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -493,22 +399,13 @@ msgstr "Avatar actualizado." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Agardando confirmación para esta dirección. Comproba a túa conta de Jabber/" -"GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches " -"a %s á túa lista de contactos?)" +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Agardando confirmación para esta dirección. Comproba a túa conta de Jabber/GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches a %s á túa lista de contactos?)" #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -645,35 +542,8 @@ msgstr "Confirmation code not found." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Noraboa, %s! e benvido a %%%%site.name%%%%. Dende aquí, podes...\n" -"\n" -"* Ír ó [teu perfil](%s) e enviar o teu primeiro chío.\n" -"* Engadir unha [conta de Jabber/Gtalk](%%%%action.imsettings%%%%) para " -"enviar os teus chíos a través de mensaxería instantánea.\n" -"* [Buscar xente ](%%%%action.peoplesearch%%%%) que poidas coñecer ou que " -"comparta os teus intereses. \n" -"* Actualizar as túas [preferencias no perfil](%%%%action.profilesettings%%%" -"%) para decirlle a outros máis sobre ti. \n" -"* Ler os [manuais en liña](%%%%doc.help%%%%) para ollar máis cousas que " -"podes facer aquí. \n" -"\n" -"Grazas por rexistrarte e esperamos que laretexes moito." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Noraboa, %s! e benvido a %%%%site.name%%%%. Dende aquí, podes...\n\n* Ír ó [teu perfil](%s) e enviar o teu primeiro chío.\n* Engadir unha [conta de Jabber/Gtalk](%%%%action.imsettings%%%%) para enviar os teus chíos a través de mensaxería instantánea.\n* [Buscar xente ](%%%%action.peoplesearch%%%%) que poidas coñecer ou que comparta os teus intereses. \n* Actualizar as túas [preferencias no perfil](%%%%action.profilesettings%%%%) para decirlle a outros máis sobre ti. \n* Ler os [manuais en liña](%%%%doc.help%%%%) para ollar máis cousas que podes facer aquí. \n\nGrazas por rexistrarte e esperamos que laretexes moito." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -1080,12 +950,8 @@ msgid "Find people on this site" msgstr "Atopar xente neste sitio" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Por razóns de seguranza, por favor re-insire o teu nome de usuario e " -"contrasinal antes de cambiar as túas preferenzas." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Por razóns de seguranza, por favor re-insire o teu nome de usuario e contrasinal antes de cambiar as túas preferenzas." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1170,28 +1036,16 @@ msgstr "Configuracións de IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co " -"teu OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co teu OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Se queres engadir un enderezo OpenID á tua conta, insirea na caixa de " -"embaixo e fai clic en \"Engadir\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Se queres engadir un enderezo OpenID á tua conta, insirea na caixa de embaixo e fai clic en \"Engadir\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no " -"enderezo de correo que configuraches na túa conta." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no enderezo de correo que configuraches na túa conta." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1221,12 +1075,8 @@ msgstr "Usuario ou contrasinal incorrectos." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"As instruccións para recuperar a túa contrasinal foron enviadas ó enderezo " -"de correo da túa conta." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "As instruccións para recuperar a túa contrasinal foron enviadas ó enderezo de correo da túa conta." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1322,14 +1172,8 @@ msgstr "Invitar a novos usuarios" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Correndo o software de microblogaxe [StatusNet](http://status.net/), versión " -"%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." -"fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Correndo o software de microblogaxe [StatusNet](http://status.net/), versión %s, dispoñible baixo licenza [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1339,13 +1183,8 @@ msgstr "O identificador de Jabber xa pertence a outro usuario." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Enderezo Jabber ou GTalk, coma \"NomeUsuario@Exemplo.org\". Primeiro, " -"asegurate de engadir %s á tua lista de contactos no teu cliente de IM ou no " -"GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Enderezo Jabber ou GTalk, coma \"NomeUsuario@Exemplo.org\". Primeiro, asegurate de engadir %s á tua lista de contactos no teu cliente de IM ou no GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1412,14 +1251,8 @@ msgstr "Acceder con unha conta [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" -"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" -"action.openidlogin%%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra](%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1464,12 +1297,8 @@ msgstr "Microblogue por %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Operadora móbil do teu teléfono. Se sabes se a operadora acepta SMS sobre " -"email e non está listada aquí, envianos unha mensaxe para incluilo en %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Operadora móbil do teu teléfono. Se sabes se a operadora acepta SMS sobre email e non está listada aquí, envianos unha mensaxe para incluilo en %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -2091,14 +1920,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de teléfono, sen puntuacións ou espazos, co código de área" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2281,12 +2104,8 @@ msgid "Remove OpenID" msgstr "Eliminar OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Eliminando o teu enderezo OpenID vaiche ser imposible acceder! Se queres " -"eliminalo, primeiro engade outro enderezo OpenID." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Eliminando o teu enderezo OpenID vaiche ser imposible acceder! Se queres eliminalo, primeiro engade outro enderezo OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2382,21 +2201,13 @@ msgstr "Procura no Fío" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Procurar chíos en %%site.name%% polos seus contidos. Separa os termos de " -"procura por espazos, deben ter 3 caracteres ou máis." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Procurar chíos en %%site.name%% polos seus contidos. Separa os termos de procura por espazos, deben ter 3 caracteres ou máis." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " -"Separa os termos por espazos; deben ter 3 caracteres ou máis." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. Separa os termos por espazos; deben ter 3 caracteres ou máis." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2431,18 +2242,13 @@ msgstr "Enviarme advertencias a través de Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme " -"grandes facturas." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme grandes facturas." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." +msgstr "Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2648,15 +2454,13 @@ msgstr "O número de teléfono xa pertence a outro usuario." #: actions/twitapistatuses.php:251 lib/facebookaction.php:477 #: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." -msgstr "" -"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." +msgstr "Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 #: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 #: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." -msgstr "" -"Iso é demasiado longo. O tamaño máximo para un chío é de 255 caracteres." +msgstr "Iso é demasiado longo. O tamaño máximo para un chío é de 255 caracteres." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 @@ -2676,25 +2480,13 @@ msgstr "Enderezo eliminado." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"A subscrición foi autorizada, pero ningunha URL de retorno foi " -"proporcionada. Comproba coas instruccións do sitio para máis detalles en " -"como autorizar subscricións. O teu token de subscrición é:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "A subscrición foi autorizada, pero ningunha URL de retorno foi proporcionada. Comproba coas instruccións do sitio para máis detalles en como autorizar subscricións. O teu token de subscrición é:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2720,8 +2512,7 @@ msgstr "Esa é a xente á que lle estas a escoitar os seus chíos" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +msgid "These people are already users and you were automatically subscribed to them:" msgstr "Esta xente xa é usuario e ti foches suscrito automaticamente a eles:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 @@ -2729,24 +2520,14 @@ msgid "This confirmation code is too old. Please start again." msgstr "Ese código de confirmación é demasiado antigo. Comeza de novo." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Este formulario debería enviarse automáticamente. Se non é así, fai clic no " -"botón de enviar para ir ó teu proveedro OpenID." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Este formulario debería enviarse automáticamente. Se non é así, fai clic no botón de enviar para ir ó teu proveedro OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Esta é a primeria vez que accedes a %s polo que debes conectar o teu " -"enderezo OpenID á conta local. Podes ademáis crear unha nova conta, ou " -"conectarte cunha existente, se xa tes unha." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Esta é a primeria vez que accedes a %s polo que debes conectar o teu enderezo OpenID á conta local. Podes ademáis crear unha nova conta, ou conectarte cunha existente, se xa tes unha." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2795,23 +2576,14 @@ msgstr "Fuso Horario non seleccionado" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Para subscribirse, podes [acceder](%%action.login%%), ou [rexistrar](%%" -"action.register%%) unha nova conta. Se xa tes unha conta nun [sitio de " -"microblogaxe compatíbel](%%doc.openmublog%%), insire a dirección do perfil " -"abaixo." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Para subscribirse, podes [acceder](%%action.login%%), ou [rexistrar](%%action.register%%) unha nova conta. Se xa tes unha conta nun [sitio de microblogaxe compatíbel](%%doc.openmublog%%), insire a dirección do perfil abaixo." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 #: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." -msgstr "" -"Dous identificadores de usuario ou nomes_en_pantalla deben ser " -"proporcionados." +msgstr "Dous identificadores de usuario ou nomes_en_pantalla deben ser proporcionados." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2859,12 +2631,8 @@ msgid "Unknown version of OMB protocol." msgstr "Versión de protocolo OMB descoñecida." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Aínda que especifiques outro, os contidos de este sitio teñen copyright " -"polos contribuidores e está dispoñible baixo " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Aínda que especifiques outro, os contidos de este sitio teñen copyright polos contribuidores e está dispoñible baixo " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2925,16 +2693,8 @@ msgid "Upload" msgstr "Subir" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Sube un novo \"avatar\" (imaxe de usuario) dende aquí. Non podes editar a " -"imaxe despois de subila, polo que asegurate de que é máis ou menos cadrado. " -"Debe estar baixo a licenza do sistio. Emprega unha imaxe que che pertenza e " -"que queiras compartir." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Sube un novo \"avatar\" (imaxe de usuario) dende aquí. Non podes editar a imaxe despois de subila, polo que asegurate de que é máis ou menos cadrado. Debe estar baixo a licenza do sistio. Emprega unha imaxe que che pertenza e que queiras compartir." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2942,19 +2702,15 @@ msgstr "Subir unha nova imaxe de usuario" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Emprega este formulario para invitar ós teus amigos e colegas a empregar " -"este servizo." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Emprega este formulario para invitar ós teus amigos e colegas a empregar este servizo." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Empregado só para actualizacións, novidades, e recuperación de contrasinais" +msgstr "Empregado só para actualizacións, novidades, e recuperación de contrasinais" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -3040,12 +2796,8 @@ msgid "You already have this OpenID!" msgstr "¡Xa tes esa OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " -"atrás... Quedas avisado!" +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta atrás... Quedas avisado!" #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3077,30 +2829,19 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Podes recibir mensaxes SMS a través do email dende %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Podes eliminar unha OpenID da túa conta facendo clic no botón marcado " -"\"Eliminar\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Podes eliminar unha OpenID da túa conta facendo clic no botón marcado \"Eliminar\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Podes enviar e recibir chíos a través de Jabber/GTalk [mensaxes instantáneos]" -"(%%doc.im%%). Configura a túa conta e configuracións abaixo." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Podes enviar e recibir chíos a través de Jabber/GTalk [mensaxes instantáneos](%%doc.im%%). Configura a túa conta e configuracións abaixo." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Podes actualizar a túa información do perfil persoal aquí para que a xente " -"che poida coñecer mellor." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Podes actualizar a túa información do perfil persoal aquí para que a xente che poida coñecer mellor." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3124,24 +2865,8 @@ msgstr "Non nos enviaches ese perfil" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Tes unha nova dirección de envio de mensaxes en %1$s.\n" -"\n" -"Envia unha mensaxe a %2$s para enviar novas mensaxes.\n" -"\n" -"Hai máis instruccións de envio en %3$s.\n" -"\n" -"Sempre teu...,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Tes unha nova dirección de envio de mensaxes en %1$s.\n\nEnvia unha mensaxe a %2$s para enviar novas mensaxes.\n\nHai máis instruccións de envio en %3$s.\n\nSempre teu...,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3157,12 +2882,8 @@ msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Notificaráseche cando os teus invitados acepten unha invitación e se " -"rexistren neste sitio. Grazas por facer crecer o gremio lareteiro!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Notificaráseche cando os teus invitados acepten unha invitación e se rexistren neste sitio. Grazas por facer crecer o gremio lareteiro!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3180,12 +2901,8 @@ msgstr "O teu alcume neste servidor, ou o teu enderezo rexistrado." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma " -"conta. Xestina os teus OpenIDs asociados dende aquí." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma conta. Xestina os teus OpenIDs asociados dende aquí." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3377,14 +3094,11 @@ msgstr "Band. Entrada para %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Esta é a túa bandexa de entrada, aquí móstranse as túas mensaxes privadas." +msgstr "Esta é a túa bandexa de entrada, aquí móstranse as túas mensaxes privadas." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" msgstr "Acabas de invitar a %1$s a unirse a %2$s (%3$s).\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 @@ -3405,8 +3119,7 @@ msgstr "Accede co teu nome de usuario e contrasinal." #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." -msgstr "" -"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." +msgstr "Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." #: actions/newmessage.php:65 actions/newmessage.php:128 #: actions/newmessage.php:155 actions/newmessage.php:158 @@ -3428,11 +3141,8 @@ msgstr "Non podes enviar mensaxes a este usurio." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Non te envies mensaxes a ti mesmo!! só fala contigo mesmo baixiño, senón " -"vante tomar por tolo." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Non te envies mensaxes a ti mesmo!! só fala contigo mesmo baixiño, senón vante tomar por tolo." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3478,15 +3188,12 @@ msgstr "Band. Saída para %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Esta é a túa band. saída, que mostra as mensaxes privadas que enviaches." +msgstr "Esta é a túa band. saída, que mostra as mensaxes privadas que enviaches." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3537,11 +3244,8 @@ msgstr "A contrasinal debe ter 6 caracteres ou máis." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3637,8 +3341,7 @@ msgstr "Usuario destinatario non atopado." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" -"Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo." +msgstr "Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3665,19 +3368,12 @@ msgstr "%s gustoulle o teu chío" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " -"Twitter." +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Engade a túa conta de Twitter para enviar automáticamente os teus chíos a Twitter." #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3724,12 +3420,8 @@ msgstr "Suscribirse ós meus amigos de Twitter aquí." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"O nome de usuario debe ter só letras, minúsculas e maiúsculas, e números, e " -"sen espazos." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "O nome de usuario debe ter só letras, minúsculas e maiúsculas, e números, e sen espazos." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3944,12 +3636,8 @@ msgstr "Usuario sen perfil coincidente no sistema." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Tes novas direccións de posteo en %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Tes novas direccións de posteo en %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3958,12 +3646,8 @@ msgstr "%s enviouche unha nova mensaxe privada" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) enviouche unha mensaxe privada:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) enviouche unha mensaxe privada:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4032,7 +3716,7 @@ msgstr "Non se puido analizaar a mensaxe." #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s e amigos" @@ -4049,28 +3733,6 @@ msgstr "Podes actualizar a túa información do perfil persoal aquí" msgid "Avatar settings" msgstr "Configuracións de Twitter" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - #: actions/avatarsettings.php:248 actions/deletenotice.php:133 #: actions/emailsettings.php:224 actions/grouplogo.php:307 #: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 @@ -4084,17 +3746,6 @@ msgstr "" msgid "There was a problem with your session token. " msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -4141,33 +3792,19 @@ msgid "Failed to save block information." msgstr "Erro ao gardar información de bloqueo." #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format, fuzzy msgid "The address \"%s\" has been " msgstr "Enderezo eliminado." #: actions/deletenotice.php:73 #, fuzzy msgid "You are about to permanently delete a notice. " -msgstr "" -"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " -"atrás... Quedas avisado!" +msgstr "Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta atrás... Quedas avisado!" #: actions/disfavor.php:94 msgid "Add to favorites" msgstr "Engadir a favoritos" -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 #: actions/grouplogo.php:70 actions/newgroup.php:65 @@ -4208,11 +3845,6 @@ msgstr "Non é o usuario" msgid "You must be an admin to edit the group" msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -4235,7 +3867,7 @@ msgid "Options saved." msgstr "Configuracións gardadas." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "Agardando a confirmación neste número de teléfono." @@ -4262,28 +3894,7 @@ msgstr "Este enderezo de correo xa pertence a outro usuario." #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"O código de confirmación foi embiado á dirección IM que engadiches. Deberías " -"engadir a %s como contacto para que che poida enviar mensaxes." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" +msgstr "O código de confirmación foi embiado á dirección IM que engadiches. Deberías engadir a %s como contacto para que che poida enviar mensaxes." #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -4291,13 +3902,6 @@ msgstr "" msgid "No notice content!" msgstr "Sen contido!" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -4314,11 +3918,6 @@ msgstr "« Despois" msgid "Before" msgstr "Antes »" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - #: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" @@ -4326,28 +3925,16 @@ msgstr "Invitación(s) enviada(s) á seguinte xente:" #: actions/facebookinvite.php:96 actions/facebookinvite.php:102 #: actions/facebookinvite.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You have been invited to %s" msgstr "%s douche un toque" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "Fonte para os amigos de %s" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - #: actions/facebookremove.php:56 msgid "Couldn't remove Facebook user." msgstr "Non se puido eliminar o usuario de Facebook." @@ -4377,15 +3964,6 @@ msgstr "Enviar respostas \"@\" locais a Twitter." msgid "Prefix" msgstr "Perfil" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" @@ -4403,7 +3981,7 @@ msgid "Popular notices" msgstr "Chíos populares" #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" msgstr "Chíos populares" @@ -4419,33 +3997,14 @@ msgid "Featured users" msgstr "Usuarios destacados" #: actions/featured.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Featured users, page %d" msgstr "Usuarios destacados" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - #: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Este usuario non che permite suscribirte a el." -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -4458,36 +4017,6 @@ msgstr "Avatar actualizado." msgid "Failed updating logo." msgstr "Acounteceu un fallo ó actualizar o avatar." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -4495,11 +4024,9 @@ msgid "Create a new group" msgstr "Crear nova conta" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy @@ -4511,18 +4038,13 @@ msgstr "Procurar xente." msgid "You can send and receive notices through " msgstr "Non podes enviar mensaxes a este usurio." -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Enviarme advertencias a través de Jabber/GTalk." #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Sen código de confirmación." @@ -4537,19 +4059,15 @@ msgid "You are already a member of that group" msgstr "Xa estas suscrito a estes usuarios:" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "Non podes seguir a este usuario: o Usuario non se atopa." #: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s joined group %s" msgstr "%s / Favoritos dende %s" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - #: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." @@ -4581,33 +4099,14 @@ msgstr "Non se puido actualizar o rexistro de usuario." #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - #: actions/microsummary.php:69 msgid "No current status" msgstr "Sen estado actual" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" - #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -4642,11 +4141,8 @@ msgid "Ajax Error" msgstr "Erro de Ajax" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Este usuario non permite toques, ou non confirmou ainda o seu correo " -"electrónico." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Este usuario non permite toques, ou non confirmou ainda o seu correo electrónico." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4714,11 +4210,9 @@ msgid "Users self-tagged with %s - page %d" msgstr "Usuarios auto-etiquetados como %s - páxina %d" #: actions/peopletag.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are users who have tagged themselves \"%s\" " -msgstr "" -"Estes son usuarios que se etiquetaron a sí mesmos como \"%s\" para mostrar " -"intereses comuns, características, aficións ou traballos." +msgstr "Estes son usuarios que se etiquetaron a sí mesmos como \"%s\" para mostrar intereses comuns, características, aficións ou traballos." #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy @@ -4727,18 +4221,13 @@ msgstr "Perfil descoñecido" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Etiquetas para o teu usuario (letras, números, -, ., e _), separados por " -"coma ou espazo" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Etiquetas para o teu usuario (letras, números, -, ., e _), separados por coma ou espazo" #: actions/profilesettings.php:144 #, fuzzy msgid "Automatically subscribe to whoever " -msgstr "" -"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " -"non humáns)" +msgstr "Suscribirse automáticamente a calquera que se suscriba a min (o mellor para non humáns)" #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 @@ -4754,7 +4243,7 @@ msgstr "Non se puideron gardar as etiquetas." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "Liña de tempo pública" @@ -4763,27 +4252,11 @@ msgstr "Liña de tempo pública" msgid "Could not retrieve public stream." msgstr "Non se pudo recuperar a liña de tempo publica." -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Sindicación do Fio Público" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - #: actions/register.php:139 actions/register.php:349 actions/register.php:79 #: actions/register.php:177 actions/register.php:394 actions/register.php:183 #: actions/register.php:398 @@ -4795,21 +4268,15 @@ msgstr "Desculpa, só se pode rexistrar a xente con invitación." msgid "You can't register if you don't " msgstr "Non podes rexistrarte se non estas de acordo coa licenza." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " -msgstr "" -"De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" +msgstr "De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" #: actions/register.php:382 actions/register.php:386 #, fuzzy msgid "Used only for updates, announcements, " -msgstr "" -"Empregado só para actualizacións, novidades, e recuperación de contrasinais" +msgstr "Empregado só para actualizacións, novidades, e recuperación de contrasinais" #: actions/register.php:398 #, fuzzy @@ -4829,15 +4296,12 @@ msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "" -" agás esta informción privada: contrasinal, dirección de correo electrónico, " -"dirección IM, número de teléfono." +msgstr " agás esta informción privada: contrasinal, dirección de correo electrónico, dirección IM, número de teléfono." #: actions/register.php:471 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" -"Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." +msgstr "Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." #: actions/register.php:495 #, fuzzy @@ -4850,42 +4314,21 @@ msgstr "Este é un perfil local! Rexístrate para suscribirte." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "Replies to %s" #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s favorite notices, page %d" msgstr "%s chíos favoritos" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Non existe o perfil." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4905,7 +4348,7 @@ msgid "Group actions" msgstr "Outras opcions" #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "Fonte de chíos para %s" @@ -4927,25 +4370,13 @@ msgstr "Membro dende" msgid "(None)" msgstr "(nada)" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient " msgstr "Só o emisor e destinatario poden ler esta mensaxe." #: actions/showstream.php:73 actions/showstream.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s, page %d" msgstr "Band. Entrada para %s - páxina %d" @@ -4961,12 +4392,6 @@ msgstr "Perfil" msgid "User profile" msgstr "O usuario non ten perfil." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy @@ -4995,13 +4420,6 @@ msgstr "Subscritores" msgid "All groups" msgstr "Tódalas etiquetas" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -5039,32 +4457,27 @@ msgid "Subscribed" msgstr "Suscrito" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "Subscritores" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Esa é a xente que escoita os chíos de %s." #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "Esa é a xente que escoita os chíos de %s." #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "Tódalas subscricións" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "Tódalas subscricións" @@ -5074,7 +4487,7 @@ msgid "These are the people whose notices " msgstr "Esta é a xente á que lle estas a escoitar os chíos %s." #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "Esa é a xente que escoita os chíos de %s." @@ -5084,15 +4497,10 @@ msgid "Jabber" msgstr "Jabber." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "Chíos tagueados con %s" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 msgid "Not logged in" msgstr "Non estás logueado." @@ -5102,7 +4510,7 @@ msgid "No id argument." msgstr "Non hai argumento id." #: actions/tagother.php:65 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Tag %s" msgstr "Tags" @@ -5112,12 +4520,8 @@ msgid "Tag user" msgstr "Tags" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Etiquetas para este usuario (letras, numeros, -, ., e _), separados por coma " -"ou espazo" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Etiquetas para este usuario (letras, numeros, -, ., e _), separados por coma ou espazo" #: actions/tagother.php:164 #, fuzzy @@ -5125,11 +4529,8 @@ msgid "There was a problem with your session token." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Só podes etiquetar xente á que estás suscrito ou aos que están suscritos a " -"ti." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Só podes etiquetar xente á que estás suscrito ou aos que están suscritos a ti." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5137,9 +4538,7 @@ msgstr "Non se poden gardar as etiquetas." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Usa este formulario para engadir etiquetas aos teus seguidores ou aos que " -"sigues." +msgstr "Usa este formulario para engadir etiquetas aos teus seguidores ou aos que sigues." #: actions/tagrss.php:35 msgid "No such tag." @@ -5168,9 +4567,7 @@ msgstr "Non atopado" #: actions/twittersettings.php:71 #, fuzzy msgid "Add your Twitter account to automatically send " -msgstr "" -"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " -"Twitter." +msgstr "Engade a túa conta de Twitter para enviar automáticamente os teus chíos a Twitter." #: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" @@ -5185,12 +4582,8 @@ msgstr "Contrasinal de Twitter" msgid "Twitter Friends" msgstr "Amigos de Twitter" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." @@ -5210,17 +4603,6 @@ msgstr "Non se atopou un perfil con ese ID." msgid "Unsubscribed" msgstr "De-suscribido" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" - #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." @@ -5228,11 +4610,8 @@ msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " -"duns minutos." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro duns minutos." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5255,26 +4634,10 @@ msgid "Other options" msgstr "Outras opcions" #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" - #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" @@ -5285,18 +4648,6 @@ msgstr "Sobre" msgid "Change your email, avatar, password, profile" msgstr "Cambiar contrasinal" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -5317,10 +4668,6 @@ msgstr "Axuda" msgid "Site notice" msgstr "Novo chío" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5331,20 +4678,11 @@ msgstr "Novo chío" msgid "Secondary site navigation" msgstr "Navegación de subscricións" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - #: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 #, fuzzy msgid "All " msgstr "Todos" -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy @@ -5361,11 +4699,6 @@ msgstr "Bloquear" msgid "Disfavor this notice" msgstr "%s chíos favoritos" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -5384,10 +4717,6 @@ msgstr "Público" msgid "Favor this notice" msgstr "%s chíos favoritos" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - #: lib/galleryaction.php:121 msgid "Filter tags" msgstr "Filtrar etiquetas" @@ -5430,46 +4759,14 @@ msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" - #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Sair" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" - #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -5495,57 +4792,35 @@ msgstr "Accede co teu nome de usuario e contrasinal." msgid "Sign up for a new account" msgstr "Crear nova conta" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" - #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s está a escoitar os teus chíos %2$s." #: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Location: %s\n" msgstr "Ubicación: %s" #: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Homepage: %s\n" msgstr "Páxina persoal: %s" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - #: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s douche un toque" #: lib/mail.php:465 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" -"%1$s (%2$s) enviouche unha mensaxe privada:\n" -"\n" +msgstr "%1$s (%2$s) enviouche unha mensaxe privada:\n\n" #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" -msgstr "" -"A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n" -"\n" +msgstr "A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n\n" #: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 #: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 @@ -5616,7 +4891,7 @@ msgid "Send a nudge to this user" msgstr "Non podes enviar mensaxes a este usurio." #: lib/personaltagcloudsection.php:56 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Tags in %s's notices" msgstr "O usuario non ten último chio." @@ -5657,32 +4932,21 @@ msgstr "Chíos" msgid "Find groups on this site" msgstr "Atopar xente neste sitio" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" - #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People %s subscribes to" msgstr "Suscrición remota" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "Suscrito a %s" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite friends and colleagues to join you on %s" -msgstr "" -"Emprega este formulario para invitar ós teus amigos e colegas a empregar " -"este servizo." +msgstr "Emprega este formulario para invitar ós teus amigos e colegas a empregar este servizo." #: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." @@ -5699,10 +4963,6 @@ msgstr "Suscrito a %s" msgid "None" msgstr "No" -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "" - #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy @@ -5719,17 +4979,17 @@ msgid "Unsubscribe from this user" msgstr "Desuscribir de %s" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Fonte para os amigos de %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Fonte para os amigos de %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Fonte para os amigos de %s" @@ -5739,7 +4999,7 @@ msgid "You and friends" msgstr "%s e amigos" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Podes actualizar a túa información do perfil persoal aquí" @@ -5749,23 +5009,13 @@ msgid "Avatar deleted." msgstr "Avatar actualizado." #: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" -"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " -"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " -"ser notificado de ningunha resposta-@ del." +msgid "Are you sure you want to block this user? Afterwards, they will be unsubscribed from you, unable to subscribe to you in the future, and you will not be notified of any @-replies from them." +msgstr "Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a ser notificado de ningunha resposta-@ del." #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " -"atrás... Quedas avisado!" +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta atrás... Quedas avisado!" #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5777,58 +5027,15 @@ msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Microblogue por %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " -"Separa os termos por espazos; deben ter 3 caracteres ou máis." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. Separa os termos por espazos; deben ter 3 caracteres ou máis." #: actions/newmessage.php:102 #, fuzzy @@ -5836,18 +5043,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Erro ó enviar a mensaxe directa." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "Buscar \"%s\" na Liña de tempo" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Por razóns de seguranza, por favor re-insire o teu nome de usuario e " -"contrasinal antes de cambiar as túas preferenzas." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Por razóns de seguranza, por favor re-insire o teu nome de usuario e contrasinal antes de cambiar as túas preferenzas." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5866,40 +5069,18 @@ msgstr "Sindicación do Fio Público" #: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" #: actions/register.php:286 actions/register.php:329 -#, fuzzy, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" -"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " -"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " -"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" +#, php-format, fuzzy +msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "Neste formulario podes crear unha conta de usuario. Logo poderás publicar chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" agás esta informción privada: contrasinal, dirección de correo electrónico, " -"dirección IM, número de teléfono." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr " agás esta informción privada: contrasinal, dirección de correo electrónico, dirección IM, número de teléfono." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5909,18 +5090,9 @@ msgstr "Crear" #: actions/showgroup.php:393 actions/showgroup.php:440 #: actions/showgroup.php:448 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. [Join now](%%%%action.register%%%%) to become part of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" #: actions/showstream.php:147 #, fuzzy @@ -5928,27 +5100,27 @@ msgid "Your profile" msgstr "Non existe o perfil." #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Non existe o perfil." #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Fonte de chíos para %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Fonte de chíos para %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Fonte de chíos para %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Band. Saída para %s" @@ -5964,64 +5136,22 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Configuración de perfil" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - #: actions/showstream.php:542 actions/showstream.php:388 #: actions/showstream.php:487 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Enviouseche o código de confirmación ó número de teléfono que engadiches. " -"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " -"debes seguir." +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Enviouseche o código de confirmación ó número de teléfono que engadiches. Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que debes seguir." #: actions/twitapifavorites.php:171 lib/mail.php:556 #: actions/twitapifavorites.php:222 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" -"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" -"\n" -"Se o olvidaches, podes velo texto do teu chío aquí:\n" -"\n" -"%3$s\n" -"\n" -"Podes vela lista de cíos favoritos de %1$s aquí:\n" -"\n" -"%4$s\n" -"\n" -"Fielmente teu,\n" -"%5$s\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nIn case you forgot, you can see the text of your notice here:\n\n%3$s\n\nYou can see the list of %1$s's favorites here:\n\n%4$s\n\nFaithfully yours,\n%5$s\n" +msgstr "%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n\nSe o olvidaches, podes velo texto do teu chío aquí:\n\n%3$s\n\nPodes vela lista de cíos favoritos de %1$s aquí:\n\n%4$s\n\nFielmente teu,\n%5$s\n" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -6038,356 +5168,68 @@ msgstr "Non é o usuario" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " -"Twitter, e suscribirte aos usuarios de twiter que teñas como amigos aqui." +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Engade a túa conta de Twitter para enviar automáticamente os teus chíos a Twitter, e suscribirte aos usuarios de twiter que teñas como amigos aqui." #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " -"duns minutos." - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro duns minutos." #: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" -"Suscripcións: %1$s\n" -"Suscriptores: %2$s\n" -"Chíos: %3$s" +msgid "Subscriptions: %1$s\nSubscribers: %2$s\nNotices: %3$s" +msgstr "Suscripcións: %1$s\nSuscriptores: %2$s\nChíos: %3$s" #: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" -"Comandos:\n" -"on - activar as notificacións\n" -"off - desactivar as notificacións\n" -"help - mostrar esta axuda\n" -"follow - suscribirse ao usuario\n" -"leave - de-suscribirse do usuario\n" -"d - mensaxe directa ao usuario\n" -"get - lelo último chío do usuario\n" -"whois - amosar informacion do usuario\n" -"fav - engadilo último chío do usuario como favorito\n" -"stats - amosalas túas estatísticas\n" -"stop - o mesmo que 'off'\n" -"quit - o mesmo que 'off'\n" -"sub - o mesmo que 'follow'\n" -"unsub - o mesmo que 'leave'\n" -"last - o mesmo que 'get'\n" -"on - non implementado por agora.\n" -"off - non implementado por agora.\n" -"nudge - non implementado por agora.\n" -"invite - non implementado por agora.\n" -"track - non implementado por agora.\n" -"untrack - non implementado por agora.\n" -"track off - non implementado por agora.\n" -"untrack all - non implementado por agora.\n" -"tracks - non implementado por agora.\n" -"tracking - non implementado por agora.\n" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +msgid "Commands:\non - turn on notifications\noff - turn off notifications\nhelp - show this help\nfollow - subscribe to user\nleave - unsubscribe from user\nd - direct message to user\nget - get last notice from user\nwhois - get profile info on user\nfav - add user's last notice as a 'fave'\nstats - get your stats\nstop - same as 'off'\nquit - same as 'off'\nsub - same as 'follow'\nunsub - same as 'leave'\nlast - same as 'get'\non - not yet implemented.\noff - not yet implemented.\nnudge - not yet implemented.\ninvite - not yet implemented.\ntrack - not yet implemented.\nuntrack - not yet implemented.\ntrack off - not yet implemented.\nuntrack all - not yet implemented.\ntracks - not yet implemented.\ntracking - not yet implemented.\n" +msgstr "Comandos:\non - activar as notificacións\noff - desactivar as notificacións\nhelp - mostrar esta axuda\nfollow - suscribirse ao usuario\nleave - de-suscribirse do usuario\nd - mensaxe directa ao usuario\nget - lelo último chío do usuario\nwhois - amosar informacion do usuario\nfav - engadilo último chío do usuario como favorito\nstats - amosalas túas estatísticas\nstop - o mesmo que 'off'\nquit - o mesmo que 'off'\nsub - o mesmo que 'follow'\nunsub - o mesmo que 'leave'\nlast - o mesmo que 'get'\non - non implementado por agora.\noff - non implementado por agora.\nnudge - non implementado por agora.\ninvite - non implementado por agora.\ntrack - non implementado por agora.\nuntrack - non implementado por agora.\ntrack off - non implementado por agora.\nuntrack all - non implementado por agora.\ntracks - non implementado por agora.\ntracking - non implementado por agora.\n" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co " -"teu OpenID." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co teu OpenID." #: lib/mail.php:175 lib/mail.php:174 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" -"Ei, %s.\n" -"\n" -"Alguén introduceu o teu correo electrónico en %s.\n" -"\n" -"Se foches ti, e queres confirmar a entrada, pincha na seguinte URL:\n" -"\n" -"\t%s\n" -"\n" -"Se non, simplemente ignora esta mensaxe.\n" -"\n" -"Grazas polo teu tempo, \n" -"%s\n" +msgid "Hey, %s.\n\nSomeone just entered this email address on %s.\n\nIf it was you, and you want to confirm your entry, use the URL below:\n\n %s\n\nIf not, just ignore this message.\n\nThanks for your time, \n%s\n" +msgstr "Ei, %s.\n\nAlguén introduceu o teu correo electrónico en %s.\n\nSe foches ti, e queres confirmar a entrada, pincha na seguinte URL:\n\n %s\n\nSe non, simplemente ignora esta mensaxe.\n\nGrazas polo teu tempo, \n%s\n" #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s está a escoitar os teus chíos en %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Atentamente todo seu,\n" -"%4$s.\n" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s está a escoitar os teus chíos en %2$s.\n\n %3$s\n\nAtentamente todo seu,\n%4$s.\n" #: lib/mail.php:466 #, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" -"%1$s (%2$s) preguntase que é de ti, e invítate a publicar algun chío.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" +msgid "%1$s (%2$s) is wondering what you are up to these days and is inviting you to post some news.\n\nSo let's hear from you :)\n\n%3$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%4$s\n" +msgstr "%1$s (%2$s) preguntase que é de ti, e invítate a publicar algun chío.\n\nSo let's hear from you :)\n\n%3$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%4$s\n" #: lib/mail.php:513 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" -"%1$s (%2$s) enviouche unha mensaxe privada:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +msgid "%1$s (%2$s) sent you a private message:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nYou can reply to their message here:\n\n%4$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%5$s\n" +msgstr "%1$s (%2$s) enviouche unha mensaxe privada:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nYou can reply to their message here:\n\n%4$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%5$s\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Buscar" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." msgstr "Ningún documento." -#: actions/block.php:149 -msgid "Do not block this user from this group" -msgstr "" - -#: actions/block.php:150 -msgid "Block this user from this group" -msgstr "" - -#: actions/blockedfromgroup.php:90 -#, php-format -msgid "%s blocked profiles" -msgstr "" - -#: actions/blockedfromgroup.php:93 -#, php-format -msgid "%s blocked profiles, page %d" -msgstr "" - -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -6403,56 +5245,26 @@ msgstr "Código de confirmación." msgid "Do not delete this notice" msgstr "Non se pode eliminar este chíos." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Etiqueta inválida: '%s'" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Non se puido crear o favorito." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6463,14 +5275,6 @@ msgstr "Novo chío" msgid "No notice" msgstr "Novo chío" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6482,10 +5286,6 @@ msgstr "Non é un alcume válido." msgid "No group specified." msgstr "Non se especificou ningún perfil." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6503,35 +5303,15 @@ msgid "Block user from group" msgstr "Bloquear usuario" #: actions/groupblock.php:155 -#, fuzzy, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" -"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " -"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " -"ser notificado de ningunha resposta-@ del." - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +#, php-format, fuzzy +msgid "Are you sure you want to block user \"%s\" from the group \"%s\"? They will be removed from the group, unable to post, and unable to subscribe to the group in the future." +msgstr "Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a ser notificado de ningunha resposta-@ del." #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6554,242 +5334,46 @@ msgstr "Non se puideron gardar os teus axustes de Twitter!" msgid "Design preferences saved." msgstr "Preferencias gardadas." -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Non se atoparon resultados" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "O usuario bloqueoute." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Non hai mensaxes de texto!" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Non se puido gardar o perfil." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma " -"conta. Xestina os teus OpenIDs asociados dende aquí." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma conta. Xestina os teus OpenIDs asociados dende aquí." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Configuración de perfil" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no " -"enderezo de correo que configuraches na túa conta." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no enderezo de correo que configuraches na túa conta." #: actions/recoverpassword.php:158 #, fuzzy @@ -6811,93 +5395,30 @@ msgstr "Acounteceu un erro co código de confirmación." msgid "Subscribe to a remote user" msgstr "Suscrito a %s" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "Chíos favoritos de %s" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de chíos para %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de chíos para %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Fonte de chíos para %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" #: actions/shownotice.php:101 #, fuzzy @@ -6905,86 +5426,33 @@ msgid "Not a local notice" msgstr "Non é usuario local." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Chíos tagueados con %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Fonte de chíos para %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" -"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" -"(http://status.net/). [Únete agora](%%action.register%%) para compartir " -"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s está a escoitar os teus chíos %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Fonte de chíos para %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Fonte de chíos para %s" @@ -7015,24 +5483,16 @@ msgid "Could not find target user." msgstr "Non se puido atopar ningún estado" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Chíos que respostan a %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -7043,127 +5503,41 @@ msgstr "Subscrición de autorización." msgid "Profile design" msgstr "Configuración de perfil" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "%1s non é unha orixe fiable." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Aconteceu un erro ó gardar o chío." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Mensaxe de %1$s en %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "O usuario non ten perfil." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Perfil" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Subir" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Cambiar contrasinal" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -7179,138 +5553,20 @@ msgstr "Buscar" msgid "Links" msgstr "Lista" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Bloquear" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Bloquear usuario" -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - #: lib/mail.php:556 -#, fuzzy, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" -"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" -"\n" -"Se o olvidaches, podes velo texto do teu chío aquí:\n" -"\n" -"%3$s\n" -"\n" -"Podes vela lista de cíos favoritos de %1$s aquí:\n" -"\n" -"%4$s\n" -"\n" -"Fielmente teu,\n" -"%5$s\n" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" +#, php-format, fuzzy +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" +msgstr "%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n\nSe o olvidaches, podes velo texto do teu chío aquí:\n\n%3$s\n\nPodes vela lista de cíos favoritos de %1$s aquí:\n\n%4$s\n\nFielmente teu,\n%5$s\n" #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy @@ -7327,26 +5583,11 @@ msgstr "Usuario" msgid "Search help" msgstr "Buscar" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "%1s non é unha orixe fiable." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7354,27 +5595,22 @@ msgid "No such page" msgstr "Non existe a etiqueta." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Mensaxes directas para %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." -msgstr "" -"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." +msgstr "Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "A localización é demasiado longa (max 255 car.)." @@ -7384,7 +5620,7 @@ msgid "You are already a member of that group." msgstr "Xa bloqueaches a este usuario." #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Non podes seguir a este usuario: o Usuario non se atopa." @@ -7394,44 +5630,15 @@ msgid "You are not a member of this group." msgstr "Non podes enviar mensaxes a este usurio." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Non podes seguir a este usuario: o Usuario non se atopa." -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." -msgstr "" -"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" +msgstr "Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy @@ -7444,12 +5651,12 @@ msgid "Post to " msgstr "Chíos dende SMS" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "A localización é demasiado longa (max 255 car.)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" @@ -7484,7 +5691,7 @@ msgid "Cannot read file." msgstr "Non se puido crear o favorito." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" @@ -7494,40 +5701,17 @@ msgid "IM is not available." msgstr "%1s non é unha orixe fiable." #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" -"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" -"action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra](%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Tódalas actualizacións que coinciden co termo de procura \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." @@ -7537,24 +5721,18 @@ msgid "Describe yourself and your interests" msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." #: actions/register.php:336 #, fuzzy -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" -"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " -"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " -"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" +msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. " +msgstr "Neste formulario podes crear unha conta de usuario. Logo poderás publicar chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Non é un enderezo de perfil válido (non ten documento YADIS)." #: actions/remotesubscribe.php:176 @@ -7567,54 +5745,31 @@ msgstr "Este é un perfil local! Rexístrate para suscribirte." msgid "Couldn’t get a request token." msgstr "Non se puido recoller o token de petición." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Fonte de chíos para %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Mensaxe de %1$s en %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Fonte para os favoritos de %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Fonte para os favoritos de %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Fonte para os favoritos de %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "" - #: actions/shownotice.php:90 #, fuzzy msgid "Notice deleted." @@ -7626,80 +5781,32 @@ msgid "SMS is not available." msgstr "Publicación de chíos por SMS desactivado!" #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Fonte de chíos para %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"A subscrición foi autorizada, pero ningunha URL de retorno foi " -"proporcionada. Comproba coas instruccións do sitio para máis detalles en " -"como autorizar subscricións. O teu token de subscrición é:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "A subscrición foi autorizada, pero ningunha URL de retorno foi proporcionada. Comproba coas instruccións do sitio para máis detalles en como autorizar subscricións. O teu token de subscrición é:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Non se pode ler a URL do avatar de '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo de imaxe incorrecto para '%s'" @@ -7714,35 +5821,27 @@ msgid "Site content license" msgstr "Atopar no contido dos chíos" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Toque enviado" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Replies to %s" @@ -7753,169 +5852,39 @@ msgstr "Aconteceu un erro ó gardar o chío." #: lib/command.php:587 #, fuzzy -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" -"Comandos:\n" -"on - activar as notificacións\n" -"off - desactivar as notificacións\n" -"help - mostrar esta axuda\n" -"follow - suscribirse ao usuario\n" -"leave - de-suscribirse do usuario\n" -"d - mensaxe directa ao usuario\n" -"get - lelo último chío do usuario\n" -"whois - amosar informacion do usuario\n" -"fav - engadilo último chío do usuario como favorito\n" -"stats - amosalas túas estatísticas\n" -"stop - o mesmo que 'off'\n" -"quit - o mesmo que 'off'\n" -"sub - o mesmo que 'follow'\n" -"unsub - o mesmo que 'leave'\n" -"last - o mesmo que 'get'\n" -"on - non implementado por agora.\n" -"off - non implementado por agora.\n" -"nudge - non implementado por agora.\n" -"invite - non implementado por agora.\n" -"track - non implementado por agora.\n" -"untrack - non implementado por agora.\n" -"track off - non implementado por agora.\n" -"untrack all - non implementado por agora.\n" -"tracks - non implementado por agora.\n" -"tracking - non implementado por agora.\n" +msgid "Commands:\non - turn on notifications\noff - turn off notifications\nhelp - show this help\nfollow - subscribe to user\nleave - unsubscribe from user\nd - direct message to user\nget - get last notice from user\nwhois - get profile info on user\nfav - add user's last notice as a 'fave'\nfav # - add notice with the given id as a 'fave'\nreply # - reply to notice with a given id\nreply - reply to the last notice from user\njoin - join group\ndrop - leave group\nstats - get your stats\nstop - same as 'off'\nquit - same as 'off'\nsub - same as 'follow'\nunsub - same as 'leave'\nlast - same as 'get'\non - not yet implemented.\noff - not yet implemented.\nnudge - remind a user to update.\ninvite - not yet implemented.\ntrack - not yet implemented.\nuntrack - not yet implemented.\ntrack off - not yet implemented.\nuntrack all - not yet implemented.\ntracks - not yet implemented.\ntracking - not yet implemented.\n" +msgstr "Comandos:\non - activar as notificacións\noff - desactivar as notificacións\nhelp - mostrar esta axuda\nfollow - suscribirse ao usuario\nleave - de-suscribirse do usuario\nd - mensaxe directa ao usuario\nget - lelo último chío do usuario\nwhois - amosar informacion do usuario\nfav - engadilo último chío do usuario como favorito\nstats - amosalas túas estatísticas\nstop - o mesmo que 'off'\nquit - o mesmo que 'off'\nsub - o mesmo que 'follow'\nunsub - o mesmo que 'leave'\nlast - o mesmo que 'get'\non - non implementado por agora.\noff - non implementado por agora.\nnudge - non implementado por agora.\ninvite - non implementado por agora.\ntrack - non implementado por agora.\nuntrack - non implementado por agora.\ntrack off - non implementado por agora.\nuntrack all - non implementado por agora.\ntracks - non implementado por agora.\ntracking - non implementado por agora.\n" #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Sen código de confirmación." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - #: lib/galleryaction.php:139 #, fuzzy msgid "Select tag to filter" msgstr "Selecciona unha operadora" -#: lib/groupeditform.php:168 -msgid "Describe the group or topic" -msgstr "" - -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" -msgstr "" - #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Fonte de chíos para %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s gustoulle o teu chío" #: lib/mail.php:556 -#, fuzzy, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" -"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" -"\n" -"Se o olvidaches, podes velo texto do teu chío aquí:\n" -"\n" -"%3$s\n" -"\n" -"Podes vela lista de cíos favoritos de %1$s aquí:\n" -"\n" -"%4$s\n" -"\n" -"Fielmente teu,\n" -"%5$s\n" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" +msgstr "%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n\nSe o olvidaches, podes velo texto do teu chío aquí:\n\n%3$s\n\nPodes vela lista de cíos favoritos de %1$s aquí:\n\n%4$s\n\nFielmente teu,\n%5$s\n" #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " dende " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7925,3 +5894,4 @@ msgstr "Non se puido eliminar o favorito." #, fuzzy msgid "Duplicate notice" msgstr "Eliminar chío" + diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 5594a17af9..4d797c5670 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -18,14 +18,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:58:24+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:25+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: out-statusnet\n" @@ -36,62 +35,6 @@ msgstr "" msgid " Search Stream for \"%s\"" msgstr "חיפוש ברצף אחרי \"%s\"" -#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 -#: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" - -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "" - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" - #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 #, php-format @@ -100,26 +43,8 @@ msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s מאזין כעת להודעות שלך ב %2$s. \n" -"\n" -"\t%3$s\n" -" שלך,\n" -" %4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s מאזין כעת להודעות שלך ב %2$s. \n\n %3$s\n שלך,\n %4$s.\n" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -128,13 +53,6 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "הסטטוס של %1$s ב-%2$s " -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "" - #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format @@ -156,52 +74,11 @@ msgstr "רצף ציבורי ב-%s" msgid "%s and friends" msgstr "%s וחברים" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" - #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" -"site.broughtbyurl%%)." +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -221,11 +98,6 @@ msgstr "תנו קרדיט מלא לכותבים בשמם המלא או בכינ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים." -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" - #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" @@ -245,102 +117,8 @@ msgstr " לפחות 6 אותיות. שדה חובה." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים " -"מידיים אליך." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "" +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים מידיים אליך." #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 @@ -371,11 +149,6 @@ msgstr "הוסף" msgid "Add OpenID" msgstr "הוסף OpenID" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "" - #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 @@ -385,11 +158,6 @@ msgstr "" msgid "Address" msgstr "כתבות" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "" - #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" @@ -421,12 +189,6 @@ msgstr "כבר מחובר." msgid "Already subscribed!." msgstr "כבר מנוי!" -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "" - #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 @@ -440,13 +202,6 @@ msgstr "אשר מנוי" msgid "Automatically login in the future; not for shared computers!" msgstr "בעתיד התחבר אוטומטית; לא לשימוש במחשבים ציבוריים!" -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" - #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 @@ -464,24 +219,8 @@ msgstr "התמונה עודכנה." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"מחכה לאישור כתובת זו. בדוק את חשבון ה-Jabber/GTalk שלך לקבלת מסר עם הוראות " -"נוספותץ (האם הוספת את %s לרשימת החברים שלך?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "מחכה לאישור כתובת זו. בדוק את חשבון ה-Jabber/GTalk שלך לקבלת מסר עם הוראות נוספותץ (האם הוספת את %s לרשימת החברים שלך?)" #: ../lib/util.php:1318 lib/util.php:1452 #, fuzzy @@ -505,11 +244,6 @@ msgstr "ביוגרפיה" msgid "Bio is too long (max 140 chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "" - #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format @@ -543,37 +277,16 @@ msgstr "לא ניתן להפעיל את אובייקט הלקוח של OpenID." msgid "Cannot normalize that Jabber ID" msgstr "לא ניתן לנרמל את זהות ה-Jabber הזה" -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "" - #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "שנה" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" - #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "שנה סיסמה" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "" - #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 #: actions/profilesettings.php:182 actions/recoverpassword.php:187 @@ -601,36 +314,11 @@ msgstr "אשר כתובת" msgid "Confirmation cancelled." msgstr "האישור בוטל." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "" - #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "קוד האישור לא נמצא." -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -654,21 +342,6 @@ msgstr "צור קשר" msgid "Could not create OpenID form: %s" msgstr "נכשלה יצירת OpenID מתוך: %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "" - #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format @@ -685,44 +358,15 @@ msgstr "שמירת מידע התמונה נכשל" msgid "Could not save new profile info" msgstr "שמירת מידע הפרופיל החדש נכשלה" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "" - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" - #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליחה." -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "" - #: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "מחיקת המנוי לא הצליחה." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" - #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." @@ -751,22 +395,6 @@ msgstr "הכנסת מנוי חדש נכשלה." msgid "Couldn't save profile." msgstr "שמירת הפרופיל נכשלה." -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "" - #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -814,38 +442,16 @@ msgstr "יצירת חשבון חדש עבור OpenID שכבר משוייך למ msgid "Current confirmed Jabber/GTalk address." msgstr "כתובת מאושרת נוכחית של Jabber/GTalk." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "" - #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "כרגע" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" - #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" - #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -853,55 +459,6 @@ msgstr "" msgid "Describe yourself and your interests in 140 chars" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" -#: ../actions/register.php:158 ../actions/register.php:161 -#: ../lib/settingsaction.php:87 actions/register.php:172 -#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 -#: actions/register.php:385 lib/accountsettingsaction.php:113 -#: actions/register.php:427 actions/register.php:431 actions/register.php:435 -#: lib/accountsettingsaction.php:117 -msgid "Email" -msgstr "" - -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "" - -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 -msgid "Email address already exists." -msgstr "" - -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "" - -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "" - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" @@ -1019,26 +576,8 @@ msgstr "הזנות החברים של %s" msgid "Feed for replies to %s" msgstr "הזנת התגובות ל-%s" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." +msgid "For security reasons, please re-enter your user name and password before changing your settings." msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסיסמה לפני שתשנה את ההגדרות." #: ../actions/profilesettings.php:44 ../actions/register.php:164 @@ -1101,17 +640,6 @@ msgstr "אתר בית" msgid "Homepage is not a valid URL." msgstr "לאתר הבית יש כתובת לא חוקית." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" - #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -1124,38 +652,12 @@ msgstr "הגדרות מסרים מידיים" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"אם אתה רוצה להוסיף OpenID לחשבון שלך, הכנס אותו לתיבה שלמטה ולחץ \"הוסף\"" - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "אם אתה רוצה להוסיף OpenID לחשבון שלך, הכנס אותו לתיבה שלמטה ולחץ \"הוסף\"" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 @@ -1169,25 +671,12 @@ msgstr "הסיסמה הישנה לא נכונה" msgid "Incorrect username or password." msgstr "שם משתמש או סיסמה לא נכונים." -#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 -#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" - #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "כתובת התמונה '%s' אינה חוקית" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "" - #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format @@ -1246,38 +735,11 @@ msgstr "גודל לא חוקי." msgid "Invalid username or password." msgstr "שם המשתמש או הסיסמה לא חוקיים" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"הוא פועל על תוכנת המיקרובלוג [](http://status.netלאקוניקה/) לאקוניקה, גירסה %" -"s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" -"licensing/licenses/agpl-3.0.html)" +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "הוא פועל על תוכנת המיקרובלוג [](http://status.netלאקוניקה/) לאקוניקה, גירסה %s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)" #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1287,12 +749,8 @@ msgstr "זיהוי ה-Jabber כבר שייך למשתמש אחר." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"כתובת Jabber או GTalk, כגון \"UserName@example.org\". הוסף את %s אל רשימת " -"החברים בתוכנת ההמסרים המידיים או GTalk שלך." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "כתובת Jabber או GTalk, כגון \"UserName@example.org\". הוסף את %s אל רשימת החברים בתוכנת ההמסרים המידיים או GTalk שלך." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1300,12 +758,6 @@ msgstr "" msgid "Language" msgstr "שפה" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" - #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 #: actions/profilesettings.php:117 actions/register.php:408 @@ -1359,43 +811,20 @@ msgstr "התחבר לחשבון [OpenID](%%doc.openid%%). " #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." -"register%%) לחשבון " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action.register%%) לחשבון " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "צא" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "שכחת או איבדת את הסיסמה?" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -1407,14 +836,6 @@ msgstr "חבר מאז" msgid "Microblog by %s" msgstr "מיקרובלוג מאת %s" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" - #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 @@ -1430,18 +851,6 @@ msgstr "הטקסטים והקבצים שלי מופצים תחת רשיון" msgid "New" msgstr "חדש" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -1521,11 +930,6 @@ msgstr "כינוי זה אסור." msgid "Nickname of the user you want to follow" msgstr "כינויו של המשתמש אחריו אתה רוצה לעקוב" -#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 -msgid "Nickname or email" -msgstr "" - #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 #: actions/deletenotice.php:116 actions/block.php:149 @@ -1545,16 +949,6 @@ msgstr "אין זיהוי Jabber כזה." msgid "No authorization request!" msgstr "לא התבקש אישור!" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -1569,23 +963,10 @@ msgstr "אין קוד אישור." msgid "No content!" msgstr "אין תוכן!" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "אין זיהוי." -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -1607,22 +988,11 @@ msgstr "אין כינוי" msgid "No pending confirmation to cancel." msgstr "אין אישור ממתין שניתן לבטל." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - #: ../actions/finishremotesubscribe.php:72 #: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." msgstr "השרת לא החזיר כתובת פרופיל" -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "" - #: ../actions/userauthorization.php:49 actions/userauthorization.php:55 #: actions/userauthorization.php:57 msgid "No request found!" @@ -1640,21 +1010,6 @@ msgstr "אין תוצאות" msgid "No size." msgstr "אין גודל." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1720,12 +1075,6 @@ msgstr "אין מנוי כזה" msgid "No such user." msgstr "אין משתמש כזה." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "אין את מי להציג!" @@ -1735,21 +1084,6 @@ msgstr "אין את מי להציג!" msgid "Not a recovery code." msgstr "זהו לא קוד אישור." -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 -msgid "Not a supported data format." -msgstr "" - #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1760,17 +1094,6 @@ msgstr "לא עומד בכללים לזיהוי Jabber" msgid "Not a valid OpenID." msgstr "לא עומד בכללים ל-OpenID." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 -msgid "Not a valid email address." -msgstr "" - #: ../actions/profilesettings.php:91 ../actions/register.php:71 #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 @@ -1845,11 +1168,6 @@ msgstr "לא מחובר." msgid "Not subscribed!." msgstr "לא מנוי!" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 @@ -1870,14 +1188,6 @@ msgstr "להודעה אין פרופיל" msgid "Notices" msgstr "הודעות" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1945,11 +1255,6 @@ msgstr "OpenID הוסר." msgid "OpenID settings" msgstr "הגדרות OpenID" -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -2024,24 +1329,9 @@ msgstr "חיפוש סיסמה" msgid "Personal" msgstr "אישי" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " -"להירשם, לחץ \"בטל\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה להירשם, לחץ \"בטל\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2070,12 +1360,6 @@ msgstr "העדפות" msgid "Preferences saved." msgstr "העדפות נשמרו." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" @@ -2123,22 +1407,6 @@ msgstr "הזנת זרם הציבורי" msgid "Public timeline" msgstr "קו זמן ציבורי" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -2167,18 +1435,6 @@ msgstr "קוד שיחזור למשתמש לא ידוע." msgid "Register" msgstr "הירשם" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 -msgid "Registration successful" -msgstr "" - #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -2224,12 +1480,8 @@ msgid "Remove OpenID" msgstr "הסר OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"הסרת ה-OpenID היחיד שלך תגרום לכך שלא תוכל להתחבר למערכת. אם אתה צריך להסיר " -"אותו, לפני כן הוסף OpenID אחר." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "הסרת ה-OpenID היחיד שלך תגרום לכך שלא תוכל להתחבר למערכת. אם אתה צריך להסיר אותו, לפני כן הוסף OpenID אחר." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2265,31 +1517,12 @@ msgstr "איפוס סיסמה" msgid "SMS" msgstr "סמס" -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "זהה לסיסמה למעלה" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -msgid "Same as password above. Required." -msgstr "" - #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -2325,26 +1558,13 @@ msgstr "הזנת זרם החיפושים" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"חפש הודעות ב-%%site.name%% לפי תוכנן. הפרד בעזרת רווחים בין הביטויים; עליהם " -"להיות בני לפחות 3 אותיות." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "חפש הודעות ב-%%site.name%% לפי תוכנן. הפרד בעזרת רווחים בין הביטויים; עליהם להיות בני לפחות 3 אותיות." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " -"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים בין הביטויים; עליהם להיות בני לפחות 3 אותיות." #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -2355,35 +1575,11 @@ msgstr "" msgid "Send" msgstr "שלח" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "שלח לי הודעות דרך Jabber/GTalk." -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -2395,10 +1591,6 @@ msgstr "הגדרות" msgid "Settings saved." msgstr "ההגדרות נשמרו." -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -2410,16 +1602,6 @@ msgstr "למישהו כבר יש את ה-OpenID הזה." msgid "Something weird happened." msgstr "קרה משהו מוזר." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -2484,17 +1666,6 @@ msgstr "הרשמות" msgid "System error uploading file." msgstr "שגיאת מערכת בהעלאת הקובץ." -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -msgid "Tags" -msgstr "" - #: ../lib/searchaction.php:104 lib/searchaction.php:104 #: lib/designsettings.php:217 msgid "Text" @@ -2520,11 +1691,6 @@ msgstr "כתובת זו כבר אושרה." msgid "That confirmation code is not for you!" msgstr "קוד האישור הזה אינו מיועד לך!" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" - #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." @@ -2535,33 +1701,11 @@ msgstr "קובץ זה גדול מידי." msgid "That is already your Jabber ID." msgstr "זהו כבר זיהוי ה-Jabber שלך." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" - #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "זהו לא זיהוי ה-Jabber שלך." -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" - #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -2570,16 +1714,6 @@ msgstr "" msgid "That is the wrong IM address." msgstr "זוהי כתובת מסרים מידיים שגויה." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -2590,12 +1724,6 @@ msgstr "" msgid "That's too long. Max notice size is 140 chars." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" - #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format @@ -2614,23 +1742,13 @@ msgstr "הכתובת הוסרה." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " -"כיצד לאשר מנוי. אסימון המנוי שלך הוא:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש כיצד לאשר מנוי. אסימון המנוי שלך הוא:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים " -"דחיית מנוי." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים דחיית מנוי." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2654,94 +1772,29 @@ msgstr "אלה האנשים ש%s מאזין להודעות שלהם." msgid "These are the people whose notices you listen to." msgstr "אלה האנשים שלהודעות שלהם אתה מאזין." -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" - #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "קוד אישור זה ישן מידי. אנא התחל מחדש." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." msgstr "טופס אמור לשלוח את עצמו אוטומטית. אם לא, " #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"זו ההתחברות הראשונה שלך אל %s לכן עליך להתחבר לחשבון מקומי של OpenID. אתה " -"יכול ליצור חשבון חדש, או להתחבר לחשבון קיים, אם יש לך." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -msgid "This method requires a POST." -msgstr "" +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "זו ההתחברות הראשונה שלך אל %s לכן עליך להתחבר לחשבון מקומי של OpenID. אתה יכול ליצור חשבון חדש, או להתחבר לחשבון קיים, אם יש לך." #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"כדי לעשות מנוי, עליך [להיכנס למערכת](%%action.login%%), או [להירשם](%%action." -"register%%) לחשבון חדשה. אם יש לך כבר חשבון [במערכת מיקרובלוג תואמת](%%doc." -"openmublog%%), הכנס את כתובת הפרופיל שלך למטה. " - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 -msgid "Two user ids or screen_names must be supplied." -msgstr "" +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "כדי לעשות מנוי, עליך [להיכנס למערכת](%%action.login%%), או [להירשם](%%action.register%%) לחשבון חדשה. אם יש לך כבר חשבון [במערכת מיקרובלוג תואמת](%%doc.openmublog%%), הכנס את כתובת הפרופיל שלך למטה. " #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2778,20 +1831,13 @@ msgstr "הגשת טופס לא צפויה." msgid "Unexpected password reset." msgstr "איפוס סיסמה לא צפוי." -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "גירסה לא מוכרת של פרוטוקול OMB" #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " msgstr "אם לא פורט אחרת, כל הזכויות על התוכן של אתר " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 @@ -2818,33 +1864,6 @@ msgstr "גירסה לא נתמכת של OMB" msgid "Unsupported image file format." msgstr "פורמט התמונה אינו נתמך." -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -2853,25 +1872,8 @@ msgid "Upload" msgstr "ההעלה" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"העלה תמונת משתמש כאן. לאחר העלאת התמונה לא תוכל לערוך אותה, לכן וודא שהיא " -"ריבועית (פחות או יותר). כמו כן, התמונה תפורסם תחת רשיון השימוש של האתר. " -"השתמש בתמונה ששייכת לך ושאתה מוכן לשתף. " - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "העלה תמונת משתמש כאן. לאחר העלאת התמונה לא תוכל לערוך אותה, לכן וודא שהיא ריבועית (פחות או יותר). כמו כן, התמונה תפורסם תחת רשיון השימוש של האתר. השתמש בתמונה ששייכת לך ושאתה מוכן לשתף. " #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2913,16 +1915,6 @@ msgstr "למשתמש אין פרופיל." msgid "User nickname" msgstr "כינוי משתמש" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" - #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -2963,27 +1955,11 @@ msgstr "כן" msgid "You already have this OpenID!" msgstr "כבר יש לך את ה-OpenID הזה!" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "כבר נכנסת למערכת!" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" - #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "אפשר לשנות את הסיסמה כאן. בחר סיסמה טובה!" @@ -2992,32 +1968,19 @@ msgstr "אפשר לשנות את הסיסמה כאן. בחר סיסמה טובה msgid "You can create a new account to start posting notices." msgstr "ניתן ליצור חשבון חדש ולהתחיל לפרסם הודעות." -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" - #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." msgstr "הסיר OpenID מחשבונך על ידי לחיצה על הכפתור המסומן \"הסר\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"אפשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר " -"את כתובתך והעדפותיך למטה." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "אפשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר את כתובתך והעדפותיך למטה." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." +msgid "You can update your personal profile info here so people know more about you." msgstr "עדכן את הפרופיל האישי שלך כאן, על מנת שאנשים יוכלו לדעת עליך יותר." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 @@ -3040,38 +2003,6 @@ msgstr "לא ניתן להירשם ללא הסכמה לרשיון" msgid "You did not send us that profile" msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "זוהית. הכנס סיסמה חדשה למטה." @@ -3081,19 +2012,10 @@ msgstr "זוהית. הכנס סיסמה חדשה למטה." msgid "Your OpenID URL" msgstr "כתובת ה-OpenID שלך" -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" - #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID " -"מכאן. [OpenID](%%doc.openid%%)" +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID מכאן. [OpenID](%%doc.openid%%)" #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3171,766 +2093,45 @@ msgstr "הגב" msgid "same as password above" msgstr "זהה לסיסמה למעלה" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - #: ../lib/util.php:1309 lib/util.php:1443 #, fuzzy msgid "« After" msgstr "<< אחרי" -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" - #: actions/newmessage.php:117 actions/newmessage.php:67 #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "הודעה חדשה" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -msgid "Password must be 6 or more characters." -msgstr "" - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" - #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 #: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "אודות: %s" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - #: lib/personal.php:65 lib/personalgroupnav.php:113 #: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "מועדפים" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" - #: lib/personal.php:66 lib/personalgroupnav.php:114 #: lib/personalgroupnav.php:115 msgid "User" msgstr "מתשמש" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" - #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 #: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 #: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "אל" -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" - #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s וחברים" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" - #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -3939,51 +2140,6 @@ msgstr "" msgid "Avatar settings" msgstr "הגדרות" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -3991,76 +2147,26 @@ msgstr "" msgid "Lost our file." msgstr "אין הודעה כזו." -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" - #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "אין משתמש כזה." -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "כבר נכנסת למערכת!" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format, fuzzy msgid "The address \"%s\" has been " msgstr "הכתובת הוסרה." -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "" - #: actions/disfavor.php:94 #, fuzzy msgid "Add to favorites" msgstr "מועדפים" -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" - #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -4084,20 +2190,6 @@ msgstr "אין כינוי" msgid "No such group" msgstr "אין הודעה כזו." -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -4120,23 +2212,10 @@ msgid "Options saved." msgstr "ההגדרות נשמרו." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "שגיאה באישור הקוד." -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -4145,28 +2224,7 @@ msgstr "כתובת זו כבר אושרה." #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים " -"מידיים אליך." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" +msgstr "קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים מידיים אליך." #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -4174,13 +2232,6 @@ msgstr "" msgid "No notice content!" msgstr "אין תוכן!" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -4197,84 +2248,32 @@ msgstr "<< אחרי" msgid "Before" msgstr "לפני >>" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" - #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "הזנות החברים של %s" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "עידכון המשתמש נכשל." -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" - #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "העדפות נשמרו." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" - #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "פרופיל" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "העדפות" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "" - #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -4284,48 +2283,10 @@ msgid "Popular notices" msgstr "אין הודעה כזו." #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" msgstr "אין הודעה כזו." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -4338,36 +2299,12 @@ msgstr "התמונה עודכנה." msgid "Failed updating logo." msgstr "עדכון התמונה נכשל." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 #: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 #: lib/subgroupnav.php:98 msgid "Groups" msgstr "קבוצות" -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -4375,64 +2312,35 @@ msgid "Create a new group" msgstr "צור חשבון חדש" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " -"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים בין הביטויים; עליהם להיות בני לפחות 3 אותיות." #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "חיפוש סיסמה" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" - -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "שלח לי הודעות דרך Jabber/GTalk." #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "אין קוד אישור." -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" - #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "כבר נכנסת למערכת!" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "נכשלה ההפניה לשרת: %s" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" - #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -4446,44 +2354,12 @@ msgstr "אין הודעה כזו." msgid "You are not a member of that group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "" - #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "נכשלה יצירת OpenID מתוך: %s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" - #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -4501,35 +2377,12 @@ msgstr "יצירת המנוי נכשלה." msgid "That's too long. " msgstr "קובץ זה גדול מידי." -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" - #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "הודעות" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" - #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -4545,24 +2398,11 @@ msgstr "הסר OpenID" msgid "Other Settings" msgstr "הגדרות" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "חיפוש" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" - #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -4581,39 +2421,19 @@ msgid "Password change" msgstr "הסיסמה נשמרה." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "לא עומד בכללים ל-OpenID." -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "פרופיל לא מוכר" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "" - #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" msgstr "כתובת אתר הבית '%s' אינה חוקית" @@ -4625,51 +2445,20 @@ msgstr "שמירת הפרופיל נכשלה." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "קו זמן ציבורי" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" - -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "הזנת זרם הציבורי" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "לא ניתן להירשם ללא הסכמה לרשיון" -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -4695,61 +2484,18 @@ msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אות msgid "Where you are, like \"City, " msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr "" - -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" - #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "תגובת עבור %s" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "" - -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "אין הודעה כזו." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4762,13 +2508,8 @@ msgstr "" msgid "Note" msgstr "הודעות" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "הזנת הודעות של %s" @@ -4780,36 +2521,6 @@ msgstr "הזנת הודעות של %s" msgid "Members" msgstr "חבר מאז" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "" - -#: actions/showstream.php:73 actions/showstream.php:78 -#, php-format -msgid "%s, page %d" -msgstr "" - #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -4822,22 +2533,6 @@ msgstr "פרופיל" msgid "User profile" msgstr "למשתמש אין פרופיל." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -msgid "User actions" -msgstr "" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 -msgid "Send a direct message to this user" -msgstr "" - #: actions/showstream.php:343 actions/showstream.php:308 #: actions/showstream.php:391 #, fuzzy @@ -4849,17 +2544,6 @@ msgstr "הודעה חדשה" msgid "All subscribers" msgstr "מנויים" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -4875,10 +2559,6 @@ msgstr "שלח לי הודעות דרך Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "קוד האישור הזה אינו מיועד לך!" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" - #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4900,32 +2580,27 @@ msgid "Subscribed" msgstr "הירשם כמנוי" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "מנויים" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "אלה האנשים במאזינים להודעות של %s." #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "אלה האנשים במאזינים להודעות של %s." #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "כל המנויים" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "כל המנויים" @@ -4935,7 +2610,7 @@ msgid "These are the people whose notices " msgstr "אלה האנשים ש%s מאזין להודעות שלהם." #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "אלה האנשים במאזינים להודעות של %s." @@ -4946,15 +2621,10 @@ msgid "Jabber" msgstr "אין זיהוי Jabber כזה." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "מיקרובלוג מאת %s" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -4965,92 +2635,32 @@ msgstr "לא מחובר." msgid "No id argument." msgstr "אין מסמך כזה." -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "שמירת מידע התמונה נכשל" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "אין הודעה כזו." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" msgstr "מיקרובלוג מאת %s" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" - #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "לא נמצא" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "" - #: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "סיסמה חדשה" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "" - -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "" - #: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." @@ -5071,91 +2681,22 @@ msgstr "אין פרופיל תואם לפרופיל המרוחק " msgid "Unsubscribed" msgstr "בטל מנוי" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" - #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "עדכון התמונה נכשל." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "" - -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" - #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "אודות" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -5176,10 +2717,6 @@ msgstr "עזרה" msgid "Site notice" msgstr "הודעה חדשה" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5190,39 +2727,12 @@ msgstr "הודעה חדשה" msgid "Secondary site navigation" msgstr "הרשמות" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "אין משתמש כזה." -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "" - -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "" - -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -5241,33 +2751,6 @@ msgstr "ציבורי" msgid "Favor this notice" msgstr "אין הודעה כזו." -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" - -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" - -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "" - -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -5287,46 +2770,14 @@ msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אות #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" - #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "צא" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" - #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -5352,63 +2803,16 @@ msgstr "שם המשתמש או הסיסמה לא חוקיים" msgid "Sign up for a new account" msgstr "צור חשבון חדש" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" - #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "" - -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" -msgstr "" - -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "" - -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "" - #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -5425,69 +2829,22 @@ msgstr "לפחות 6 אותיות" msgid "in reply to" msgstr "בתגובה ל..." -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "" - #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "הגב" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "" - #: lib/noticelist.php:474 actions/avatarsettings.php:148 #: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "מחק" -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" - -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "" - #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "ציבורי" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "" - -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "" - -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -5498,35 +2855,16 @@ msgstr "אנשים" msgid "Notice" msgstr "הודעות" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "" - -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" - #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People %s subscribes to" msgstr "הרשמה מרוחקת" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "הרשמה מרוחקת" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -5543,36 +2881,24 @@ msgstr "ההרשמה אושרה" msgid "None" msgstr "לא" -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "" - #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "אין משתמש כזה." -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "" - #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "הזנות החברים של %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "הזנות החברים של %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "הזנות החברים של %s" @@ -5581,104 +2907,29 @@ msgstr "הזנות החברים של %s" msgid "You and friends" msgstr "%s וחברים" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" - #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "התמונה עודכנה." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "מיקרובלוג מאת %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " -"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים בין הביטויים; עליהם להיות בני לפחות 3 אותיות." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "חיפוש ברצף אחרי \"%s\"" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסיסמה לפני שתשנה את ההגדרות." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 @@ -5696,80 +2947,37 @@ msgstr "הזנת זרם הציבורי" msgid "Public Stream Feed (Atom)" msgstr "הזנת זרם הציבורי" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - -#: actions/register.php:433 actions/register.php:480 actions/register.php:490 -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" - #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 #, fuzzy msgid "Created" msgstr "צור" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "אין הודעה כזו." #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "פרופיל" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "הזנת הודעות של %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "הזנת הודעות של %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "הזנת הודעות של %s" -#: actions/showstream.php:182 actions/showstream.php:147 -#, php-format -msgid "FOAF for %s" -msgstr "" - #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -5782,46 +2990,11 @@ msgstr "תמונה" msgid "Edit profile settings" msgstr "הגדרות הפרופיל" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." msgstr "קוד האישור הזה אינו מיועד לך!" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -5835,257 +3008,26 @@ msgstr "" msgid "No such user!" msgstr "אין משתמש כזה." -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" - #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " -"להירשם, לחץ \"בטל\"." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה להירשם, לחץ \"בטל\"." #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s מאזין כעת להודעות שלך ב %2$s. \n" -"\n" -"\t%3$s\n" -" שלך,\n" -" %4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s מאזין כעת להודעות שלך ב %2$s. \n\n %3$s\n שלך,\n %4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "חיפוש" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6102,19 +3044,15 @@ msgid "Block this user from this group" msgstr "אין משתמש כזה." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "למשתמש אין פרופיל." #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s וחברים" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -6130,56 +3068,26 @@ msgstr "מיקום" msgid "Do not delete this notice" msgstr "אין הודעה כזו." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "כתובת אתר הבית '%s' אינה חוקית" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "שמירת מידע התמונה נכשל" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6190,28 +3098,11 @@ msgstr "הודעה חדשה" msgid "No notice" msgstr "הודעה חדשה" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "שם משתמש לא חוקי." -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6228,33 +3119,11 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" msgid "Block user from group" msgstr "אין משתמש כזה." -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - #: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 #, fuzzy msgid "Group design" msgstr "קבוצות" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6263,249 +3132,43 @@ msgstr "" msgid "Couldn't update your design." msgstr "עידכון המשתמש נכשל." -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "העדפות נשמרו." -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "אין תוצאות" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "למשתמש אין פרופיל." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "הודעה חדשה" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "שמירת הפרופיל נכשלה." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID " -"מכאן. [OpenID](%%doc.openid%%)" - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID מכאן. [OpenID](%%doc.openid%%)" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "הגדרות הפרופיל" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - -#: actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - #: actions/recoverpassword.php:158 #, fuzzy msgid "You've been identified. Enter a new password below. " @@ -6526,217 +3189,74 @@ msgstr "שגיאה באישור הקוד." msgid "Subscribe to a remote user" msgstr "ההרשמה אושרה" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "אין הודעה כזו." -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "הזנת הודעות של %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "הזנת הודעות של %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "הזנת הודעות של %s" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "אין משתמש כזה." -#: actions/showstream.php:72 -#, php-format -msgid " tagged %s" -msgstr "" - #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "הזנת הודעות של %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "הזנת הודעות של %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "הזנת הודעות של %s" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "עידכון המשתמש נכשל." -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "עידכון המשתמש נכשל." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "הסטטוס של %1$s ב-%2$s " #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "מיקרובלוג מאת %s" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -6747,127 +3267,36 @@ msgstr "כל המנויים" msgid "Profile design" msgstr "הגדרות הפרופיל" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "בעיה בשמירת ההודעה." -#: classes/User.php:319 classes/User.php:327 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "למשתמש אין פרופיל." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "פרופיל" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "ההעלה" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "שנה סיסמה" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6883,127 +3312,16 @@ msgstr "חיפוש" msgid "Links" msgstr "היכנס" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "אין משתמש כזה." #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "אין משתמש כזה." -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7019,39 +3337,19 @@ msgstr "מתשמש" msgid "Search help" msgstr "חיפוש" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "לאתר הבית יש כתובת לא חוקית." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "אין הודעה כזו." -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." @@ -7060,12 +3358,8 @@ msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 או msgid "Could not unfollow user: User not found." msgstr "נכשלה ההפניה לשרת: %s" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" @@ -7075,7 +3369,7 @@ msgid "You are already a member of that group." msgstr "כבר נכנסת למערכת!" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "נכשלה ההפניה לשרת: %s" @@ -7085,63 +3379,26 @@ msgid "You are not a member of this group." msgstr "לא שלחנו אלינו את הפרופיל הזה" #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "נכשלה יצירת OpenID מתוך: %s" -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "פורמט התמונה אינו נתמך." -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - #: actions/finishremotesubscribe.php:80 #, fuzzy msgid "User being listened to does not exist." @@ -7172,50 +3429,23 @@ msgstr "אין הודעה כזו." msgid "Cannot read file." msgstr "אין הודעה כזו." -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." -"register%%) לחשבון " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action.register%%) לחשבון " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" @@ -7225,76 +3455,47 @@ msgid "Describe yourself and your interests" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Not a valid profile URL (no YADIS document)." -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "אסימון הבקשה לא התקבל." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "הזנת הודעות של %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "תגובת עבור %s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "הזנות החברים של %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "הזנות החברים של %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "הזנות החברים של %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "הזנת הודעות של %s" @@ -7309,77 +3510,32 @@ msgid "SMS is not available." msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "הזנת הודעות של %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " -"להירשם, לחץ \"בטל\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה להירשם, לחץ \"בטל\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " -"כיצד לאשר מנוי. אסימון המנוי שלך הוא:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש כיצד לאשר מנוי. אסימון המנוי שלך הוא:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים " -"דחיית מנוי." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים דחיית מנוי." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "סוג התמונה של '%s' אינו מתאים" @@ -7394,35 +3550,12 @@ msgid "Site content license" msgstr "הודעה חדשה" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "נכשלה ההפניה לשרת: %s" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "תגובת עבור %s" @@ -7431,136 +3564,33 @@ msgstr "תגובת עבור %s" msgid "Error saving notice." msgstr "בעיה בשמירת ההודעה." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "אין קוד אישור." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "הזנת הודעות של %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" - #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "הודעה חדשה" + diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 524b85a0de..c1f74305e4 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -1,3 +1,6 @@ +# Translation of StatusNet to Icelandic +# +# -- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. @@ -5,31 +8,28 @@ # msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" -"PO-Revision-Date: 2009-04-24 13:32+0000\n" -"Last-Translator: Tryggvi Björgvinsson \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" +"" +"Project-Id-Version: StatusNet\n" +"PO-Revision-Date: 2009-11-06 12:23:33+0000\n" +"Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: is\n" +"X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Leita í bablveitu að \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"nema þessi persónulegu gögn: lykilorð, tölvupóstfang, snarskilaboðafang (IM " -"netfang), símanúmer." +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 +msgid " except this private data: password, email address, IM address, phone number." +msgstr "nema þessi persónulegu gögn: lykilorð, tölvupóstfang, snarskilaboðafang (IM netfang), símanúmer." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -37,115 +37,57 @@ msgid " from " msgstr "frá" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Færslur sem svar til %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s hefur boðið þér að slást í hópinn með þeim á %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s hefur boðið þér að slást í hópinn með þeim á %2$s (%3$s).\n" -"\n" -"%2$s er örbloggsþjónusta sem leyfir þér að fylgjast með með fólki sem þú " -"þekkir eða öðru áhugaverðu fólki í rauntíma.\n" -"\n" -"Þú getur líka sent inn fréttir af þér og deilt hugleiðingum og netveru þinni " -"með fólki sem þekkir til þín. Þetta er frábær leið til þess að kynnast " -"fólki sem hefur sömu áhugamál og þú.\n" -"\n" -"%1$s sagði:\n" -"\n" -"%4$s\n" -"\n" -"Þú getur séð persónulega síðu %1$s á %2$s hér:\n" -"\n" -"%5$s\n" -"\n" -"Ef þig langar til að prófa þjónustuna, smelltu þá á hlekkinn hér fyrir neðan " -"til að taka þessu boði.\n" -"\n" -"%6$s\n" -"\n" -"Ef ekki, þá getur þú hunsað þessi skilaboð. Takk fyrir tímann og " -"þolinmæðina.\n" -"\n" -"Með bestu kveðju, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s hefur boðið þér að slást í hópinn með þeim á %2$s (%3$s).\n\n%2$s er örbloggsþjónusta sem leyfir þér að fylgjast með með fólki sem þú þekkir eða öðru áhugaverðu fólki í rauntíma.\n\nÞú getur líka sent inn fréttir af þér og deilt hugleiðingum og netveru þinni með fólki sem þekkir til þín. Þetta er frábær leið til þess að kynnast fólki sem hefur sömu áhugamál og þú.\n\n%1$s sagði:\n\n%4$s\n\nÞú getur séð persónulega síðu %1$s á %2$s hér:\n\n%5$s\n\nEf þig langar til að prófa þjónustuna, smelltu þá á hlekkinn hér fyrir neðan til að taka þessu boði.\n\n%6$s\n\nEf ekki, þá getur þú hunsað þessi skilaboð. Takk fyrir tímann og þolinmæðina.\n\nMeð bestu kveðju, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s er að hlusta á bablið þitt á %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s er að hlusta á bablið þitt á %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Með kveðju,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s er að hlusta á bablið þitt á %2$s.\n\n %3$s\n\nMeð kveðju,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s færslur sem svara færslum frá %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Staða %1$s á %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "%s Opinber bablveita" @@ -155,51 +97,59 @@ msgstr "%s Opinber bablveita" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s og vinirnir" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Almenningsrás %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Staða %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Rás %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s færslur frá öllum!" -#: ../actions/register.php:213 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Þú ættir að fá tölvupóst eftir smá stund. Í tölvupóstinum eru leiðbeiningar " -"um það hvernig þú staðfestir tölvupóstfangið þitt.)" +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Þú ættir að fá tölvupóst eftir smá stund. Í tölvupóstinum eru leiðbeiningar um það hvernig þú staðfestir tölvupóstfangið þitt.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** er örbloggsþjónusta í boði " -"[%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er örbloggsþjónusta." @@ -211,55 +161,46 @@ msgstr "Fulls nafns eða stuttnefnis efnishöfunda skal vera getið." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 lágstafir eða tölustafir, engin greinarmerki eða bil" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "1-64 lágstafir eða tölustafir, engin greinarmerki eða bil. Nauðsynlegt." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 eða fleiri tákn" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 eða fleiri tákn og ekki gleyma því!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 eða fleiri tákn. Nauðsynlegt" #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Staðfestingarlykill var sendur á snarskilaboðafangið sem þú varst að bæta " -"við. Þú verður að leyfa %s að senda snarskilaboð til þín." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Staðfestingarlykill var sendur á snarskilaboðafangið sem þú varst að bæta við. Þú verður að leyfa %s að senda snarskilaboð til þín." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Staðfestingarlykill var sendur á tölvupóstfangið sem þú varst að bæta við. " -"Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti " -"staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann. " +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Staðfestingarlykill var sendur á tölvupóstfangið sem þú varst að bæta við. Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann. " #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Staðfestingarlykill var sendur á símanúmerið sem þú varst að bæta við. " -"Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti " -"staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Staðfestingarlykill var sendur á símanúmerið sem þú varst að bæta við. Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -274,12 +215,39 @@ msgstr "" #: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 #: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 #: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapilaconica.php:82 -#: actions/twitapilaconica.php:151 actions/twitapistatuses.php:79 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Aðferð í forritsskilum fannst ekki!" @@ -300,18 +268,25 @@ msgstr "Aðferð í forritsskilum fannst ekki!" #: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 #: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapilaconica.php:172 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Aðferð í forritsskilum er í þróun." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Um" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Samþykkja" @@ -322,6 +297,9 @@ msgstr "Samþykkja" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Bæta við" @@ -339,27 +317,29 @@ msgstr "Bæta við eða fjarlægja OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Tölvupóstfang" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Tölvupóstfang vina sem þú vilt bjóða (eitt póstfang í hverja línu)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Allar áskriftir" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Allar færslur %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Allar færslur sem passa við \"%s\"" @@ -369,69 +349,67 @@ msgstr "Allar færslur sem passa við \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Þú hefur nú þegar skráð þig inn." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Þú ert nú þegar áskrifandi!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Ertu viss um að þú viljir eyða þessu babli?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Heimila áskriftir" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Sjálfvirk innskráning í framtíðinni. Ekki nota þetta á tölvu sem aðrir deila " -"með þér!" +msgstr "Sjálfvirk innskráning í framtíðinni. Ekki nota þetta á tölvu sem aðrir deila með þér!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér " -"(best fyrir ómannlega notendur)" +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér (best fyrir ómannlega notendur)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Mynd" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Mynd hefur verið uppfærð." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Býð eftir staðfestingu frá þessu netfangi. Athugaðu Jabber/GTalk aðganginn " -"þinn. Þar ættu að vera skilaboð með ítarlegri leiðbeiningum. (Hefurðu bætt " -"%s við í vinalistann þinn?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Býð eftir staðfestingu frá þessu netfangi. Athugaðu Jabber/GTalk aðganginn þinn. Þar ættu að vera skilaboð með ítarlegri leiðbeiningum. (Hefurðu bætt %s við í vinalistann þinn?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Býð eftir staðfestingu frá þessu netfangi. Athugaðu innhólfið þitt (og " -"ruslpóstinn þinn!). Þar ættu að vera skilaboð með ítarlegri leiðbeiningum." +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Býð eftir staðfestingu frá þessu netfangi. Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ættu að vera skilaboð með ítarlegri leiðbeiningum." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Býð eftir staðfestingu varðandi þetta símanúmer." @@ -442,6 +420,8 @@ msgstr "Eldri »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Lýsing" @@ -449,16 +429,18 @@ msgstr "Lýsing" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Lýsingin er of löng (í mesta lagi 140 tákn)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Get ekki eytt þessu babli." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Get ekki lesið slóðina fyrir myndina '%s'" @@ -466,6 +448,8 @@ msgstr "Get ekki lesið slóðina fyrir myndina '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Get ekki vistað nýja lykilorðið." @@ -473,31 +457,34 @@ msgstr "Get ekki vistað nýja lykilorðið." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Hætta við" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Get ekki útbúið OpenID notandahlut." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Get ekki staðlað þetta Jabber kenni" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Get ekki staðlað þetta tölvupóstfang" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Breyta" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Breyta tölvupóstumsjón" @@ -507,11 +494,12 @@ msgid "Change password" msgstr "Breyta lykilorði" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Breyta lykilorðinu þínu" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Breyta persónulegu stillingunum þínum" @@ -521,6 +509,9 @@ msgstr "Breyta persónulegu stillingunum þínum" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Staðfesta" @@ -533,12 +524,14 @@ msgstr "Staðfesta tölvupóstfang" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Hætt við staðfestingu." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Staðfestingarlykill" @@ -547,54 +540,31 @@ msgstr "Staðfestingarlykill" msgid "Confirmation code not found." msgstr "Staðfestingarlykill fannst ekki." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Til hamingju %s! Frábært að þú skulir hafa skráð þig á %%%%site.name%%%%. " -"Héðan vilt þú kannski...\n" -"\n" -"* Fara á [persónulegu síðuna þína](%s) senda inn þitt fyrsta babl.\n" -"* Bæta við [Jabber/GTalk snarskilaboðafangi](%%%%action.imsettings%%%%) svo " -"þú getir sent inn babl í snarskilaboðum.\n" -"* [Leita að fólki](%%%%action.peoplesearch%%%%) sem þú þekkir eða hefur sömu " -"áhugamál og þú. \n" -"* Uppfæra [persónulegu síðuna](%%%%action.profilesettings%%%%) þína til þess " -"að leyfa öðrum að kynnast þér betur.\n" -"* Lesa [vefleiðbeiningarnar](%%%%doc.help%%%%) til þess að læra að babla " -"betur.\n" -"\n" -"Takk fyrir að skrá þig og við vonum að þú njótir þjónustunnar." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Til hamingju %s! Frábært að þú skulir hafa skráð þig á %%%%site.name%%%%. Héðan vilt þú kannski...\n\n* Fara á [persónulegu síðuna þína](%s) senda inn þitt fyrsta babl.\n* Bæta við [Jabber/GTalk snarskilaboðafangi](%%%%action.imsettings%%%%) svo þú getir sent inn babl í snarskilaboðum.\n* [Leita að fólki](%%%%action.peoplesearch%%%%) sem þú þekkir eða hefur sömu áhugamál og þú. \n* Uppfæra [persónulegu síðuna](%%%%action.profilesettings%%%%) þína til þess að leyfa öðrum að kynnast þér betur.\n* Lesa [vefleiðbeiningarnar](%%%%doc.help%%%%) til þess að læra að babla betur.\n\nTakk fyrir að skrá þig og við vonum að þú njótir þjónustunnar." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Tengjast" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Tengja aðgang sem nú þegar er til" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Tengiliður" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Gat ekki búið til OpenID eyðublað: %s" @@ -602,36 +572,39 @@ msgstr "Gat ekki búið til OpenID eyðublað: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "" -"Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." +msgstr "Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Get ekki fylgst með notanda: Notandinn finnst ekki." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Gat ekki framsent til vefþjóns: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Gat ekki vistað myndupplýsingar" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Gat ekki vistað nýjar persónuupplýsingar" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Gat ekki farið í áskrift." @@ -651,15 +624,17 @@ msgstr "Gat ekki breytt beiðnistókum í aðgangstóka." #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Gat ekki eytt tölvupóstsstaðfestingu." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Gat ekki eytt áskrift." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Gat ekki fundið neinar notendastöður." @@ -672,29 +647,38 @@ msgstr "Gat ekki komist yfir beiðnistóka." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Gat ekki sett inn staðfestingarlykil." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Gat ekki sett inn nýja áskrift." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Gat ekki vistað persónulega síðu." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Gat ekki uppfært notanda í sjálfvirka áskrift." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Gat ekki uppfært skráarfærslu notanda." @@ -710,42 +694,48 @@ msgstr "Gat ekki uppfært skráarfærslu notanda." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Gat ekki uppfært notanda." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Búa til" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Búa til nýjan notanda með þessu stuttnefni." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Búa til nýjan aðgang" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Búa til nýjan aðgang fyrir OpenID sem nú þegar hefur notanda." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Núverandi staðfesta Jabber/GTalk snarskilaboðafangið." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Núverandi staðfesta SMS símanúmerið." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Núverandi staðfesta tölvupóstfangið." @@ -754,23 +744,27 @@ msgid "Currently" msgstr "Í gangi núna" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Gagnagrunnsvilla við innsetningu svars: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Eyða babli" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Lýstu þér og áhugamálum þínum í 140 táknum" @@ -778,11 +772,13 @@ msgstr "Lýstu þér og áhugamálum þínum í 140 táknum" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Tölvupóstur" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Tölvupóstfang" @@ -792,39 +788,43 @@ msgid "Email Settings" msgstr "Tölvupóstsstillingar" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Tölvupóstfang er nú þegar skráð." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Staðfesting tölvupóstfangs" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Tölvupóstfang eins og \"notandi@eitthvað.is\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Tölvupóstföng" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Sláðu inn stuttnefni eða tölvupóstfang." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Sláðu inn lykilinn sem þú fékkst í símann þinn." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Villa kom upp í heimilun tóka" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Villa kom upp í tengingu notanda við OpenID." @@ -835,39 +835,46 @@ msgstr "Villa kom upp við að tengja notanda." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Villa kom upp við að setja inn mynd" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Villa kom upp við að setja inn nýja persónulega síðu" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Villa kom upp við að setja inn persónulega fjarsíðu" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Villa kom upp í vistun netfangsstaðfestingar." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Villa kom upp í vistun persónulegrar fjarsíðu" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Villa kom upp í vistun persónulegu síðunnar." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Villa kom upp í vistun notandans." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Villa kom upp í vistun notanda: ótækt." @@ -876,6 +883,9 @@ msgstr "Villa kom upp í vistun notanda: ótækt." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Villa kom upp í stillingu notanda." @@ -886,6 +896,7 @@ msgstr "Villa kom upp í uppfærslu persónulegu síðunnar" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Villa kom upp í uppfærslu persónulegrar fjarsíðu" @@ -895,33 +906,36 @@ msgid "Error with confirmation code." msgstr "Villa kom upp varðandi staðfestingarlykilinn." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Stuttnefni er nú þegar til" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Spurt og svarað" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Mistókst að uppfæra mynd" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Vinaveita %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Svaraveita %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Merkjaveita %s" @@ -936,19 +950,20 @@ msgstr "Finna innihald babls" msgid "Find people on this site" msgstr "Finna persónur á þessu vefsvæði" -#: ../actions/login.php:122 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Af öryggisástæðum, vinsamlegast sláðu aftur inn notendanafnið þitt og " -"lykilorð áður en þú breytir stillingunum þínum." +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Af öryggisástæðum, vinsamlegast sláðu aftur inn notendanafnið þitt og lykilorð áður en þú breytir stillingunum þínum." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Fullt nafn" @@ -957,23 +972,33 @@ msgstr "Fullt nafn" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Hjálp" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Heim" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Heimasíða" @@ -981,21 +1006,27 @@ msgstr "Heimasíða" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "Heimasíða er ekki gild vefslóð." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Ég vil babla í gegnum tölvupóst." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "Snarskilaboð" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Snarskilaboðafang" @@ -1005,84 +1036,75 @@ msgid "IM Settings" msgstr "Snarskilaboðastillingar" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Ef ert nú þegar með aðgang, skráðu þig inn með notendanafni og lykilorði til " -"þess að tengjast OpenID aðganginum þínum." +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Ef ert nú þegar með aðgang, skráðu þig inn með notendanafni og lykilorði til þess að tengjast OpenID aðganginum þínum." -#: ../actions/openidsettings.php:45 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Ef þig langar til það bæta við OpenID í aðganginn þinn, sláðu það þá inn í " -"reitinn hér fyrir neðan og smelltu á \"Bæta við\"." +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Ef þig langar til það bæta við OpenID í aðganginn þinn, sláðu það þá inn í reitinn hér fyrir neðan og smelltu á \"Bæta við\"." -#: ../actions/recoverpassword.php:137 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Ef þú hefur gleymt eða tapað lykilorðinu þínu getur þú fengið nýtt sent á " -"tölvupóstfangið sem þú hefur vistað í notendaaðganginum þínum." +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Ef þú hefur gleymt eða tapað lykilorðinu þínu getur þú fengið nýtt sent á tölvupóstfangið sem þú hefur vistað í notendaaðganginum þínum." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Móttökutölvupóstur" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "Móttökutölvupóstfang fjarlægt." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Rangt eldra lykilorð" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Rangt notendanafn eða lykilorð." -#: ../actions/recoverpassword.php:265 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Leiðbeiningar um það hvernig þú getur endurheimt lykilorðið þitt hafa verið " -"sendar á tölvupóstfangið sem er tengt notendaaðganginum þínum." +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Leiðbeiningar um það hvernig þú getur endurheimt lykilorðið þitt hafa verið sendar á tölvupóstfangið sem er tengt notendaaðganginum þínum." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "Ótæk myndarslóð '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Ótækt tölvupóstfang: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ótæk heimasíða '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "Ótæk leyfisslóð '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Ótækt bablinnihald" @@ -1097,13 +1119,13 @@ msgid "Invalid notice url" msgstr "Ótækt veffang babls" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ótækt veffang persónulegrar síðu '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "Ótækt veffang persónulegrar síðu (vitlaust snið)" @@ -1121,60 +1143,59 @@ msgstr "Ótæk stærð." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Ótækt notendanafn eða lykilorð." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Boðskort hefur verið sent út" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Boðskort sent á eftirfarandi aðila:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Bjóða" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Bjóða nýjum notendum að vera með" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Það keyrir [StatusNet](http://status.net/) örbloggshugbúnaðinn, útgáfu %s, sem " -"er gefinn út undir [GNU Affero " -"almenningsleyfinu](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Það keyrir [StatusNet](http://status.net/) örbloggshugbúnaðinn, útgáfu %s, sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber-kennið tilheyrir öðrum notanda." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber eða GTalk netfang eins og \"notandi@eitthvað.is\". Fyrst skaltu vera " -"viss um að bæta %s við í vinalistann þinn í snarskilaboðaforritinu þínu eða " -"á GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber eða GTalk netfang eins og \"notandi@eitthvað.is\". Fyrst skaltu vera viss um að bæta %s við í vinalistann þinn í snarskilaboðaforritinu þínu eða á GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Tungumál" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Tungumál er of langt (í mesta lagi 50 stafir)." @@ -1183,7 +1204,15 @@ msgstr "Tungumál er of langt (í mesta lagi 50 stafir)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Staðsetning" @@ -1192,7 +1221,12 @@ msgstr "Staðsetning" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." @@ -1201,44 +1235,46 @@ msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Innskráning" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Innskráning með [OpenID](%%doc.openid%%) aðgangi." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Skráðu þig inn með notendanafninu þínu og lykilorði. Ertu ekki með " -"notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu " -"[OpenID](%%action.openidlogin%%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Skráðu þig inn með notendanafninu þínu og lykilorði. Ertu ekki með notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu [OpenID](%%action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Útskráning" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Lengra nafn, ákjósalegast að það sé \"rétta\" nafnið þitt" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Tapað eða gleymt lykilorð?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Búa til nýtt tölvupóstfang til að senda til. Skrifar yfir það gamla." @@ -1249,64 +1285,69 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Stilla það hvernig þú færð tölvupóst frá %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Meðlimur síðan" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Örblogg frá %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Farsímafélagið þitt. Ef þú veist um farsímafélag sem tekur á móti SMS í " -"gegnum tölvupóst sem er ekki í þessum lista, sendu okkur tölvupóst í %s og " -"láttu okkur vita." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Farsímafélagið þitt. Ef þú veist um farsímafélag sem tekur á móti SMS í gegnum tölvupóst sem er ekki í þessum lista, sendu okkur tölvupóst í %s og láttu okkur vita." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Textinn og skrárnar mínar eru aðgengilegar undir " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Nýtt" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Nýtt tölvupóstfang til að senda á %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "Nýju móttökutölvupóstfangi bætt við." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nýtt stuttnefni" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nýtt babl" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nýtt lykilorð" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Tókst að vista nýtt lykilorð. Þú ert núna innskráð(ur)" @@ -1316,7 +1357,13 @@ msgstr "Tókst að vista nýtt lykilorð. Þú ert núna innskráð(ur)" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Stuttnefni" @@ -1325,7 +1372,12 @@ msgstr "Stuttnefni" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." @@ -1334,47 +1386,58 @@ msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Stuttnefni geta bara verið lágstafir og tölustafir en engin bil." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Stuttnefni ekki leyfilegt." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Stuttnefni notandans sem þú vilt fylgja" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Stuttnefni eða tölvupóstur" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Nei" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Ekkert Jabber-kenni" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Engin heimildarbeiðni!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Ekkert farsímafélag valið." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Enginn lykill sleginn inn" @@ -1386,11 +1449,15 @@ msgstr "Enginn staðfestingarlykill." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Ekkert innihald!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Ekkert tölvupóstfang." @@ -1399,7 +1466,9 @@ msgid "No id." msgstr "Ekkert kenni." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Ekkert móttökutölvupóstfang." @@ -1410,6 +1479,7 @@ msgstr "Ekkert stuttnefni uppgefið hjá hinum vefþjóninum." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Ekkert stuttnefni." @@ -1417,12 +1487,14 @@ msgstr "Ekkert stuttnefni." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Engin staðfesting í bið sem þarf að hætta við." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Ekkert símanúmer." @@ -1432,7 +1504,8 @@ msgid "No profile URL returned by server." msgstr "Ekkert veffang persónulegrar síðu skilað af vefþjóni." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Ekkert tölvupóstfang á skrá fyrir þennan notanda." @@ -1444,7 +1517,7 @@ msgstr "Engin beiðni fundin!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Engar niðurstöður" @@ -1455,12 +1528,16 @@ msgstr "Engin stærð." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Engin staða fundin með þessu kenni." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Engin staða með þessu kenni fannst." @@ -1470,13 +1547,15 @@ msgid "No such OpenID." msgstr "Ekkert svoleiðis OpenID." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Ekkert svoleiðis skjal." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Ekkert svoleiðis babl." @@ -1514,12 +1593,22 @@ msgstr "Engin svoleiðis áskrift" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Enginn svoleiðis notandi." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "Enginn notandi með þetta tölvupóstfang eða notendanafn" @@ -1533,32 +1622,38 @@ msgid "Not a recovery code." msgstr "Þetta er ekki staðfestingarlykill." #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Ekki skráður notandi." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Enginn stuðningur við gagnasnið." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Ekki tækt Jabber-kenni" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Ekki tækt OpenID" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Ekki tækt tölvupóstfang" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Ekki tækt tölvupóstfang." @@ -1566,6 +1661,11 @@ msgstr "Ekki tækt tölvupóstfang." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Ekki tækt stuttnefni." @@ -1585,7 +1685,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Ekki tækt veffang á persónulega síðu (ekkert YADIS skjal)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Annaðhvort ekki mynd eða þá að skráin er gölluð." @@ -1596,11 +1697,13 @@ msgstr "Engin heimild." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Bjóst ekki við þessu svari!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Fannst ekki" @@ -1616,11 +1719,15 @@ msgstr "Fannst ekki" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Ekki innskráð(ur)." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Ekki í áskrift!" @@ -1637,39 +1744,44 @@ msgid "Notice feed for %s" msgstr "Bablveita fyrir %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "Babl hefur enga persónulega síðu" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Babl" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Babl merkt með %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Eldra lykilorð" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Uppsetning OpenID aðgangs" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Sjálfvirk innsending OpenID" @@ -1677,29 +1789,34 @@ msgstr "Sjálfvirk innsending OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "OpenID notendanafn" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "Veffang OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "OpenID heimild afturkölluð." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Tókst ekki að fá OpenID heimild: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "OpenID mistókst: %s" @@ -1715,11 +1832,12 @@ msgid "OpenID settings" msgstr "Stillingar OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Bættu persónulegum skilaboðum við boðskortið ef þú vilt." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Upphal að hluta til." @@ -1729,34 +1847,46 @@ msgstr "Upphal að hluta til." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Lykilorð" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "Lykilorð og staðfesting passa ekki saman." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Lykilorð verður að vera 6 tákn eða fleiri." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Beiðni um að endurheimta lykilorð hefur verið send inn" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "Lykilorð vistað." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "Lykilorðin passa ekki saman." @@ -1776,29 +1906,26 @@ msgid "People search" msgstr "Leit að fólki" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Persónulegt" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Persónuleg skilaboð" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Símanúmer, með svæðisnúmeri ef við á, án greinarmerkja eða bila" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Vinsamlegast athugaðu þessi atriði til þess að vera viss um að þú viljir " -"gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast " -"áskrifandi að babli, smelltu þá á \"Hætta við\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Vinsamlegast athugaðu þessi atriði til þess að vera viss um að þú viljir gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast áskrifandi að babli, smelltu þá á \"Hætta við\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Senda inn babl þegar Jabber/GTalk staðan breytist." @@ -1807,7 +1934,9 @@ msgstr "Senda inn babl þegar Jabber/GTalk staðan breytist." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Stillingar" @@ -1816,42 +1945,52 @@ msgstr "Stillingar" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "Stillingar vistaðar." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Tungumál (ákjósanlegt)" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Friðhelgi" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Vandamál komu upp við að vista babl." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Persónuleg síða" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "Veffang persónulegrar síðu" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Stillingar persónulegrar síðu" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Persónuleg síða þekkist ekki" @@ -1860,17 +1999,19 @@ msgid "Public Stream Feed" msgstr "Skilaboðaveita almenningsrásarinnar" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Almenningsrás" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Birta MicroID fyrir Jabber/GTalk netfangið mitt." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Birta MicroID fyrir tölvupóstfangið mitt." @@ -1880,12 +2021,14 @@ msgid "Recent Tags" msgstr "Nýleg merki" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Endurheimta" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Endurheimta lykilorð" @@ -1898,37 +2041,45 @@ msgstr "Lykill fyrir endurheimtingu óþekkts notanda." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Nýskrá" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Nýskráning ekki leyfð." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Nýskráning tókst" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Hafna" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Muna eftir mér" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Persónuleg fjarsíða með engri persónulegri síðu sem passar" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Fara í fjaráskrift" @@ -1942,6 +2093,9 @@ msgstr "Fara í fjaráskrift" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Fjarlægja" @@ -1950,43 +2104,46 @@ msgstr "Fjarlægja" msgid "Remove OpenID" msgstr "Fjarlægja OpenID" -#: ../actions/openidsettings.php:73 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Að fjarlægja þetta eina OpenID sem þú ert með gerir innskráningu ómögulega! " -"Ef þú þarft að fjarlægja það, búðu þá til nýtt OpenID fyrst." +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Að fjarlægja þetta eina OpenID sem þú ert með gerir innskráningu ómögulega! Ef þú þarft að fjarlægja það, búðu þá til nýtt OpenID fyrst." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Svör" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Svör við %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Endurstilla" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Endurstilla lykilorð" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "SMS símanúmer" @@ -1995,17 +2152,18 @@ msgstr "SMS símanúmer" msgid "SMS Settings" msgstr "SMS stillingar" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "SMS staðfesting" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Sama og lykilorðið hér fyrir ofan" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." @@ -2018,12 +2176,21 @@ msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Vista" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Leita" @@ -2033,70 +2200,65 @@ msgid "Search Stream Feed" msgstr "Leita í bablveitu" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Leita í innihaldi babls á %%site.name%%. Leitarorð eru aðskilin með bili og " -"verða að vera að minnsta kosti 3 tákn." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Leita í innihaldi babls á %%site.name%%. Leitarorð eru aðskilin með bili og verða að vera að minnsta kosti 3 tákn." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Leita að fólki á %%site.name%% eftir nafni, staðsetningu eða áhugamáli. " -"Leitarorð eru aðskilin með bili og verða að vera að minnsta kosti 3 tákn." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Leita að fólki á %%site.name%% eftir nafni, staðsetningu eða áhugamáli. Leitarorð eru aðskilin með bili og verða að vera að minnsta kosti 3 tákn." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Veldu farsímafyrirtæki" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Senda" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Sendu tölvupóst á þetta póstfang til þess að senda inn nýtt babl." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Sendu mér tilkynningu varðandi nýjar áskriftir í gegnum tölvupóst." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Sendur mér babl í gegnum Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Sendu mér babl í gegnum SMS. Ég veit að það er möguleiki að " -"farsímafyrirtækið rukki fyrir móttöku á SMSunum." +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Sendu mér babl í gegnum SMS. Ég veit að það er möguleiki að farsímafyrirtækið rukki fyrir móttöku á SMSunum." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Sendu mér svör í gegnum Jabber/GTalk frá fólki sem ég er ekki áskrifandi að." +msgstr "Sendu mér svör í gegnum Jabber/GTalk frá fólki sem ég er ekki áskrifandi að." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Stillingar" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "Stillingar vistaðar." @@ -2116,27 +2278,32 @@ msgid "Something weird happened." msgstr "Eitthvað undarlegt gerðist." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Því miður er móttökutölvupóstur ekki leyfður." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Afsakið en þetta er ekki móttökutölvupóstfangið þitt." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Frumþula" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Tölfræði" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "Vista OpenID fannst ekki." @@ -2144,24 +2311,28 @@ msgstr "Vista OpenID fannst ekki." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Gerast áskrifandi" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Áskrifendur" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "Áskrift heimiluð" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "Áskrift hafnað" @@ -2169,28 +2340,35 @@ msgstr "Áskrift hafnað" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Áskriftir" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Kerfisvilla kom upp við upphal skráar." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Merki" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Texti" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Textaleit" @@ -2210,6 +2388,7 @@ msgid "That confirmation code is not for you!" msgstr "Þessi staðfestingarlykill er ekki fyrir þig!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Þetta tölvupóstfang tilheyrir öðrum notanda." @@ -2219,63 +2398,73 @@ msgid "That file is too big." msgstr "Þessi skrá er of stór." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Þetta er nú þegar Jabber-kennið þitt." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Þetta er nú þegar tölvupóstfangið þitt." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Þetta er nú þegar símanúmerið þitt." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Þetta er ekki Jabber-kennið þitt." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Þetta er ekki tölvupóstfangið þitt." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Þetta er ekki símanúmerið þitt." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Þetta er rangt snarskilaboðafang." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Þetta er rangur staðfestingarlykill." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Þetta símanúmer tilheyri nú þegar öðrum notanda." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Þetta er of langt. Hámarkslengd babls er 255 tákn." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "Þetta tölvupóstfang, \"%s\", hefur verið staðfest fyrir aðganginn þinn." @@ -2284,83 +2473,70 @@ msgstr "Þetta tölvupóstfang, \"%s\", hefur verið staðfest fyrir aðganginn #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "Tölvupóstfangið hefur verið fjarlægt." -#: ../actions/userauthorization.php:312 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Áskriftin hefur verið heimiluð en afturkallsveffang var ekki sent. Athugaðu " -"leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn " -"þinn er;" +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Áskriftin hefur verið heimiluð en afturkallsveffang var ekki sent. Athugaðu leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn þinn er;" -#: ../actions/userauthorization.php:322 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Áskriftinni hefur verið hafnað en afturkallsveffang var ekki sent. Athugaðu " -"leiðbeiningar síðunnar um það hvernig á að hafna áskrift alveg." +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Áskriftinni hefur verið hafnað en afturkallsveffang var ekki sent. Athugaðu leiðbeiningar síðunnar um það hvernig á að hafna áskrift alveg." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Þetta er fólkið sem hlustar á bablið í %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Þetta er fólkið sem hlustar á bablið í þér." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Þetta er fólkið sem %s hlustar á bablið í." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Þetta er fólkið sem þú hlustar á bablið í." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Þetta fólk er nú þegar notendur og þú varðst sjálfkrafa áskrifandi að þeim:" +#: actions/invite.php:130 actions/invite.php:136 +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Þetta fólk er nú þegar notendur og þú varðst sjálfkrafa áskrifandi að þeim:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." -msgstr "" -"Þessi staðfestingarlykill er of gamall. Vinsamlegast byrjaðu aftur upp á " -"nýtt." +msgstr "Þessi staðfestingarlykill er of gamall. Vinsamlegast byrjaðu aftur upp á nýtt." -#: ../lib/openid.php:195 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Þetta eyðublað ætti að sendast inn sjálfkrafa. Ef ekki smelltu þá á " -"innsendingartakkann til að fara til OpenID þjónustuaðilans þíns." +#: ../lib/openid.php:195 lib/openid.php:206 +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Þetta eyðublað ætti að sendast inn sjálfkrafa. Ef ekki smelltu þá á innsendingartakkann til að fara til OpenID þjónustuaðilans þíns." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Þetta er í fyrsta skipti sem þú skráir þig inn á %s þannig að við verðum að " -"tengja OpenID aðganginn þinn við staðbundinn aðgang. Þú getur annaðhvort " -"búið til nýjan aðgang eða tengst við aðgan sem þú hefur nú þegar búið til." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Þetta er í fyrsta skipti sem þú skráir þig inn á %s þannig að við verðum að tengja OpenID aðganginn þinn við staðbundinn aðgang. Þú getur annaðhvort búið til nýjan aðgang eða tengst við aðgan sem þú hefur nú þegar búið til." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Þessi aðferð krefst POST eða DELETE." @@ -2369,52 +2545,57 @@ msgstr "Þessi aðferð krefst POST eða DELETE." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Þessi aðferð krefst POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" -msgstr "" -"Þessi síða er ekki aðgengileg í margmiðlunargerðinni sem þú tekur á móti" +msgstr "Þessi síða er ekki aðgengileg í margmiðlunargerðinni sem þú tekur á móti" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Tímabelti" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "Tímabelti ekki valið." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Til þess að gerast áskrifandi getur þú [skráð þig inn](%%action.login%%) eða " -"[nýskráð þig](%%action.register%%). Ef þú hefur nú þegar búið til aðgang á " -"[samvirkandi örbloggsþjónustu](%%doc.openmublog%%), sláðu þá inn veffang " -"persónulegu síðunnar þinnar hér fyrir neðan." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Til þess að gerast áskrifandi getur þú [skráð þig inn](%%action.login%%) eða [nýskráð þig](%%action.register%%). Ef þú hefur nú þegar búið til aðgang á [samvirkandi örbloggsþjónustu](%%doc.openmublog%%), sláðu þá inn veffang persónulegu síðunnar þinnar hér fyrir neðan." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Tvo notendakenni eða skjáarnöfn verða að vera uppgefin." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" -msgstr "" -"Veffang heimasíðunnar þinnar, bloggsins þíns eða persónulegrar síðu á öðru " -"vefsvæði" +msgstr "Veffang heimasíðunnar þinnar, bloggsins þíns eða persónulegrar síðu á öðru vefsvæði" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "Veffang persónulegrar síðu á samvirkandi örbloggsþjónustu" @@ -2426,15 +2607,22 @@ msgstr "Veffang persónulegrar síðu á samvirkandi örbloggsþjónustu" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Bjóst ekki við innsendingu eyðublaðs." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Bjóst ekki við endurstillingu lykilorðs." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Óþekkt aðgerð" @@ -2444,12 +2632,8 @@ msgid "Unknown version of OMB protocol." msgstr "Óþekkt útgáfa OMB samskiptamátans." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Nema að annað sé tekið fram þá er innihald þessarar síðu varið með " -"höfundaréttarvernd og aðgengilegt undir " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Nema að annað sé tekið fram þá er innihald þessarar síðu varið með höfundaréttarvernd og aðgengilegt undir " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2465,69 +2649,69 @@ msgstr "Fara úr áskrift" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "OMB útgáfa ekki studd" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Skráarsnið myndar ekki stutt." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Færslur sendar með SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Færslur sendar með snarskilaboðaþjónustu (instant messaging)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Færslur frá %1$s og vinum á %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Færslur frá %1$s á %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Hlaða upp" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Þú getur hlaðið upp nýrri mynd (notendamynd) hér. Þú getur ekki breytt " -"myndinni eftir að þú hefur hlaðið henni upp þannig að vertu viss um að hún " -"sé ferningur. Myndin verður líka að vera gefin út undir leyfi vefsvæðisins. " -"Notaðu mynd sem tilheyrir þér og þú vilt deila með öðrum." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Þú getur hlaðið upp nýrri mynd (notendamynd) hér. Þú getur ekki breytt myndinni eftir að þú hefur hlaðið henni upp þannig að vertu viss um að hún sé ferningur. Myndin verður líka að vera gefin út undir leyfi vefsvæðisins. Notaðu mynd sem tilheyrir þér og þú vilt deila með öðrum." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" msgstr "Hlaða upp mynd á persónulega síðu" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Notaðu þetta eyðublað til þess að bjóða vinum þínum og kunningjum að nota " -"þessa örbloggsþjónustu." +#: actions/invite.php:156 actions/invite.php:162 +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Notaðu þetta eyðublað til þess að bjóða vinum þínum og kunningjum að nota þessa örbloggsþjónustu." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Aðeins notað fyrir uppfærslur, tilkynningar og endurheimtingu lykilorða." +msgstr "Aðeins notað fyrir uppfærslur, tilkynningar og endurheimtingu lykilorða." #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -2549,11 +2733,16 @@ msgstr "Notandi sem verið er að hlusta á er ekki til." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "Notandi hefur enga persónulega síðu." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Stuttnefni notanda" @@ -2562,29 +2751,33 @@ msgid "User not found." msgstr "Notandi fannst ekki." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Í hvaða tímabelti eru í rauninni?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "Hvað er að frétta %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Staðsetning þín, eins og \"borg, sýsla, land\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Röng gerð myndar fyrir '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Röng stærð myndar á '%s'" @@ -2592,7 +2785,9 @@ msgstr "Röng stærð myndar á '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Já" @@ -2602,12 +2797,8 @@ msgid "You already have this OpenID!" msgstr "Þú ert nú þegar með þetta OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Þú ert í þann mund að eyða babli alveg. Þessi aðgerð getur ekki verið " -"afturkölluð." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Þú ert í þann mund að eyða babli alveg. Þessi aðgerð getur ekki verið afturkölluð." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2615,11 +2806,12 @@ msgid "You are already logged in!" msgstr "Þú ert nú þegar innskráð(ur)!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Þú ert nú þegar í áskrift að þessum notendum:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Þú ert ekki vinur þessa notanda." @@ -2637,151 +2829,133 @@ msgstr "Þú getur búið til nýjan aðgang og byrjað að babla." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Þú getur fengið SMS í gegnum tölvupóst frá %%site.name%%." -#: ../actions/openidsettings.php:86 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Þú getur fjarlægt OpenID aðganginn frá þínum aðgangi með því að smella á " -"hnappinn sem er merktur \"Fjarlægja\"." +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Þú getur fjarlægt OpenID aðganginn frá þínum aðgangi með því að smella á hnappinn sem er merktur \"Fjarlægja\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Þú getur sent og tekið á móti babli í gegnum Jabber/GTalk " -"[snarskilaboðaþjónustuna](%%doc.im%%). Settu upp netfangið þitt hér fyrir " -"neðan og stilltu notkunina." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Þú getur sent og tekið á móti babli í gegnum Jabber/GTalk [snarskilaboðaþjónustuna](%%doc.im%%). Settu upp netfangið þitt hér fyrir neðan og stilltu notkunina." -#: ../actions/profilesettings.php:27 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Þú getur uppfært persónulegu síðuna þína hér þannig að fólk geti lært meira " -"um þig." +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 +msgid "You can update your personal profile info here so people know more about you." +msgstr "Þú getur uppfært persónulegu síðuna þína hér þannig að fólk geti lært meira um þig." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Þú getur notað staðbundna áskrift!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Þú sendir okkur ekki þessa persónulegu síðu" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Þú hefur nýtt bablpóstfang á %1$s.\n" -"\n" -"Sendu tölvupóst á %2$s til að senda inn babl.\n" -"\n" -"Ítarlegri tölvupóstleiðbeiningar eru á %3$s.\n" -"\n" -"Með kærri kveðju,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Þú hefur nýtt bablpóstfang á %1$s.\n\nSendu tölvupóst á %2$s til að senda inn babl.\n\nÍtarlegri tölvupóstleiðbeiningar eru á %3$s.\n\nMeð kærri kveðju,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Þú getur ekki eytt stöðu annars notanda." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Þú verður að vera innskráð(ur) til að geta boðið öðrum að nota %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Við sendum þér tilkynningu þegar þeir sem þú býður samþykkja boðskortið og " -"skrá sig á síðuna. Takk fyrir að stækka samfélagið!" +#: actions/invite.php:144 actions/invite.php:150 +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Við sendum þér tilkynningu þegar þeir sem þú býður samþykkja boðskortið og skrá sig á síðuna. Takk fyrir að stækka samfélagið!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Auðkenning á þér tókst. Sláðu inn nýtt lykilorð hér fyrir neðan." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "OpenID veffangið þitt" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Stuttnefnið þitt á þessum vefþjóni eða skráða tölvupóstfangið." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) leyfir þér að skrá þig inn á mörg vefsvæði með sama " -"notendaaðgangi. Stjórnaðu OpenID tengingunum þínum hér." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) leyfir þér að skrá þig inn á mörg vefsvæði með sama notendaaðgangi. Stjórnaðu OpenID tengingunum þínum hér." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "fyrir nokkrum sekúndum" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "fyrir um %d dögum síðan" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "fyrir um %d klukkutímum síðan" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "fyrir um %d mínútum síðan" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "fyrir um %d mánuðum síðan" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "fyrir um einum degi síðan" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "fyrir um einni mínútu síðan" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "fyrir um einum mánuði síðan" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "fyrir um einu ári síðan" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "fyrir um einum klukkutíma síðan" @@ -2803,12 +2977,14 @@ msgid "reply" msgstr "svara" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "sama og lykilorðið hér fyrir ofan" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "skráargerð ekki studd" @@ -2829,6 +3005,26 @@ msgstr "« Fyrri" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "Það kom upp vandamál með setutókann þinn. Vinsamlegast reyndu aftur." @@ -2837,6 +3033,7 @@ msgid "This notice is not a favorite!" msgstr "Þetta babl er ekki í uppáhaldi!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Gat ekki eytt uppáhaldi." @@ -2844,22 +3041,28 @@ msgstr "Gat ekki eytt uppáhaldi." msgid "Favor" msgstr "Uppáhald" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Senda mér tölvupóst þegar einhver sendir mér persónuleg skilaboð." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Þetta babl er nú þegar í uppáhaldi!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Gat ekki búið til uppáhald." @@ -2869,11 +3072,13 @@ msgstr "Ekki uppáhald" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Uppáhaldsbabl %s" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Bablveita uppáhaldsbabls %s" @@ -2890,17 +3095,12 @@ msgstr "Innhólf %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Þetta er innhólfið þitt sem sýnir persónuleg skilaboð sem voru send til þín." +msgstr "Þetta er innhólfið þitt sem sýnir persónuleg skilaboð sem voru send til þín." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s hefur boðið þér að vera með þeim á %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s hefur boðið þér að vera með þeim á %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -2916,35 +3116,43 @@ msgid "Login with your username and password. " msgstr "Skráðu þig inn með notendanafni og lykilorði. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Þetta er of langt. Hámarkslengd skilaboða er 140 tákn." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Enginn móttökuaðili tilgreindur." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Þú getur ekki sent þessum notanda skilaboð." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Ekki senda þér skilaboð. Þú getur sagt þetta í hljóði við sjálfa(n) þig í " -"staðinn." +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Ekki senda þér skilaboð. Þú getur sagt þetta í hljóði við sjálfa(n) þig í staðinn." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Enginn þannig notandi" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Ný skilaboð" @@ -2963,9 +3171,7 @@ msgstr "Ef þú vilt bæta OpenID við aðganginn þinn, " #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" -"Að fjarlægja eina OpenID aðganginn þinn gerir það ómögulegt fyrir þig að " -"skrá þig inn!" +msgstr "Að fjarlægja eina OpenID aðganginn þinn gerir það ómögulegt fyrir þig að skrá þig inn!" #: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " @@ -2987,11 +3193,8 @@ msgstr "Þetta er úthólfið þitt sem sýnir persónuleg skilaboð sem þú he #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Leita að fólki á %%site.name%% eftir nafninu þeirra, staðsetningu eða " -"áhugamáli. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "Leita að fólki á %%site.name%% eftir nafninu þeirra, staðsetningu eða áhugamáli. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3002,6 +3205,11 @@ msgstr "Þú getur uppfært persónulegar upplýsingar hérna " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Notandi með enga persónulega síðu sem passar við" @@ -3030,17 +3238,15 @@ msgid "New password successfully saved. " msgstr "Tókst að vista nýtt lykilorð. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "Lykilorð verður að vera að minnsta kosti 6 tákn." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Til hamingju, %s! Frábært að þú skráðir þig á %%%%site.name%%%%. Héðan vilt " -"þú kannski..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Til hamingju, %s! Frábært að þú skráðir þig á %%%%site.name%%%%. Héðan vilt þú kannski..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3049,16 +3255,18 @@ msgstr "(Þú ættir að fá tölvupóst bráðlega með " #: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 #, php-format msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" -"Til þess að gerast áskrifandi getur þú [skráð þig inn](%%action.login%%)," +msgstr "Til þess að gerast áskrifandi getur þú [skráð þig inn](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Bablveita uppáhaldsbabls %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Gat ekki sótt uppáhaldsbabl." @@ -3066,7 +3274,7 @@ msgstr "Gat ekki sótt uppáhaldsbabl." msgid "No such message." msgstr "Engin þannig skilaboð." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Aðeins sendandi og móttakandi geta lesið þessi skilaboð." @@ -3090,51 +3298,70 @@ msgid "Mobile carrier for your phone. " msgstr "Farsímafélagið þitt. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Bein skilaboð til %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Öll bein skilaboð til %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Bein skilaboð sem þú hefur sent" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Öll bein skilaboð send frá %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Enginn texti í skilaboðum!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "Móttakandi fannst ekki." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "Gat ekki sent bein skilaboð til notenda sem eru ekki vinir þínir." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Uppáhaldsbabl frá %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s færslur gerðar að uppáhaldsbabli af %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s heldur upp á babl frá þér" @@ -3142,29 +3369,25 @@ msgstr "%s heldur upp á babl frá þér" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s gerði bablið þitt á %2$s sem eitt af sínu uppáhaldsbabli.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s gerði bablið þitt á %2$s sem eitt af sínu uppáhaldsbabli.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Bættu Twitter aðganginum þínum við til að senda sjálfkrafa babl til Twitter, " -"" +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Bættu Twitter aðganginum þínum við til að senda sjálfkrafa babl til Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Twitter stillingar" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Twitter aðgangur" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Núverandi staðfesti Twitter aðgangurinn." @@ -3173,6 +3396,7 @@ msgid "Twitter Username" msgstr "Twitter notendanafn" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Vinsamlegast engin bil." @@ -3181,26 +3405,27 @@ msgid "Twitter Password" msgstr "Twitter lykilorð" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Sjálfkrafa senda bablið mitt á Twitter." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Senda staðbundin \"@\" svör til Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Gerast áskrifandi að Twitter vinum mínum hérna" -#: actions/twittersettings.php:122 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Notendanafn má aðeins hafa númer, há- og lágstafi og undirstrik (_). " -"Hámarkslengd er 15 tákn." +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Notendanafn má aðeins hafa númer, há- og lágstafi og undirstrik (_). Hámarkslengd er 15 tákn." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Gat ekki staðfest Twitter skilríkið!" @@ -3211,33 +3436,43 @@ msgstr "Gat ekki sótt aðgangsupplýsingar fyrir \"%s\" frá Twitter" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Gat ekki vistað Twitter stillingarnar þínar!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "Twitter stillingar vistaðar." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Þetta er ekki Twitter aðgangurinn þinn." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Gat ekki fjarlægt Twitter notanda." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "Twitter aðgangur fjarlægður." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Gat ekki vistað Twitter stillingar." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "Twitter stillingar vistaðar." @@ -3254,18 +3489,19 @@ msgid "The subscription has been rejected, but no " msgstr "Áskriftinni hefur verið hafnað en ófullnægjandi " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Niðurstöður skipunar" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "Fullkláruð skipun" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "Misheppnuð skipun" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Fyrirgefðu en þessi skipun hefur ekki enn verið útbúin." @@ -3275,89 +3511,111 @@ msgid "Subscriptions: %1$s\n" msgstr "Áskriftir: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "Notandi hefur ekkert nýtt babl" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Babl gert að uppáhaldi." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Fullt nafn: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Staðsetning: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Heimasíða: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Um: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "Bein skilaboð send til %s" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Villa kom upp við að senda bein skilaboð" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Nú ert þú áskrifandi að %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Tilgreindu nafn notandans sem þú vilt hætta sem áskrifandi að" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Nú ert þú ekki lengur áskrifandi að %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "Skipun hefur ekki verið fullbúin" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Tilkynningar af." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Get ekki slökkt á tilkynningum." -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Tilkynningar á." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Get ekki kveikt á tilkynningum." @@ -3365,11 +3623,11 @@ msgstr "Get ekki kveikt á tilkynningum." msgid "Commands:\n" msgstr "Skipanir:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Gat ekki skeytt skilaboðum inn í." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Gat ekki uppfært skilaboð með nýju veffangi." @@ -3379,28 +3637,20 @@ msgstr "Notandi án samsvarandi persónulegrar síðu í kerfinu." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Þú hefur fengið nýtt sendingarfang á %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Þú hefur fengið nýtt sendingarfang á %1$s.\n\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Ný persónuleg skilaboð frá %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) sendi þér persónuleg skilaboð:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) sendi þér persónuleg skilaboð:\n\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "Aðeins notandinn getur lesið hans eigin pósthólf." @@ -3409,31 +3659,39 @@ msgid "This form should automatically submit itself. " msgstr "Þetta eyðublað ætti sjálfkrafa að sendast inn. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Uppáhald" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Uppáhaldsbabl %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Notandi" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Innhólf" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Mótteknu skilaboðin þín" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Úthólf" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Skilaboð sem þú hefur sent" @@ -3446,14 +3704,19 @@ msgid "Twitter integration options" msgstr "Samhæfnisvalmöguleikar Twitter" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Til" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Gat ekki þáttað skilaboðin." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s og vinirnir, síða %d" @@ -3463,21 +3726,31 @@ msgid "You can upload your personal avatar." msgstr "Þú getur hlaðið upp þinni eigin sjálfsmynd." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Stillingar fyrir mynd" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Upphafleg mynd" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Forsýn" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Skera af" @@ -3494,35 +3767,43 @@ msgid "There was a problem with your session token. " msgstr "Það kom upp vandamál með setutókann þinn. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" -msgstr "" -"Veldu ferningslaga svæði á upphaflegu myndinni sem einkennismyndina þína" +msgstr "Veldu ferningslaga svæði á upphaflegu myndinni sem einkennismyndina þína" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Týndum skráargögnunum okkar" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Týndum skránni okkar" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Óþekkt skráargerð" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Engin persónuleg síða tilgreind" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Engin persónulega síða með þessu einkenni" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Loka á notanda" @@ -3530,11 +3811,11 @@ msgstr "Loka á notanda" msgid "Are you sure you want to block this user? " msgstr "Ertu viss um að þú viljir loka á þennan notanda? " -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Þú hefur nú þegar lokað á þennan notanda." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Mistókst að vista upplýsingar um notendalokun" @@ -3551,38 +3832,56 @@ msgstr "Þú ert í þann mund að eyða þessu babli að eilífu. " msgid "Add to favorites" msgstr "Bæta við sem uppáhaldsbabli" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Breyta hópnum %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "Innhólf verða að vera virk svo hópar virki" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Þú verður að hafa skráð þig inn til að búa til hóp." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Ekkert stuttnefni" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Enginn þannig hópur" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Þú verður að vera stjórnandi til að geta breytt hópnum" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Notaðu þetta eyðublað til að breyta hópnum." @@ -3591,14 +3890,15 @@ msgid "Nickname must have only lowercase letters " msgstr "Stuttnefni getur aðeins verið lágstafir" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Gat ekki uppfært hóp." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "Valmöguleikar vistaðir." @@ -3615,7 +3915,8 @@ msgstr "Búa til nýtt póstfang til að senda á; " msgid "Send me email when someone " msgstr "Senda mér tölvupóst þegar einhver " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Leyfa vinum að ýta við mér og senda mér tölvupóst." @@ -3625,10 +3926,9 @@ msgstr "Þetta tölvupóstfang er nú þegar í eigu " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Staðfestingarlykill var sendur til tölvupóstfangsins sem þú sendir inn. " +msgstr "Staðfestingarlykill var sendur til tölvupóstfangsins sem þú sendir inn. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Kerfisvilla - gat ekki náð í notanda!" @@ -3642,51 +3942,66 @@ msgstr "Ef þú vilt að %s forritið sjálfkrafa uppfæri " msgid "Allow %s to update my Facebook status" msgstr "Leyfa %s að uppfæra stöðuna mína á Facebook" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Sleppa" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Innihaldslaust babl!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Uppröðun" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Eftir" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Áður" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Takk fyrir að bjóða vinum þínum að nota %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Boðskort hafa verið send til eftirfarandi notenda:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Þér hefur verið boðið til %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Bjóddu vinum þínum að nota %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Vinir sem nú þegar nota %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Senda boðskort" @@ -3728,12 +4043,14 @@ msgstr "Ef þú vilt að %s uppfærist sjálfkrafa " msgid "Sync preferences" msgstr "Samstillingar" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Ekki lengur í uppáhaldi" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Vinsælt babl" @@ -3747,7 +4064,8 @@ msgid "The most popular notices on the site right now." msgstr "Vinsælasta bablið á síðunni um þessar mundir." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Notendur í sviðsljósinu" @@ -3761,15 +4079,17 @@ msgstr "Notendur í sviðsljósinu, síða %d" msgid "A selection of some of the great users on %s" msgstr "Úrval nokkurra frábærra notenda á %s" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "Ekkert einkenni" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "Einkennismynd hópsins" @@ -3777,11 +4097,13 @@ msgstr "Einkennismynd hópsins" msgid "You can upload a logo image for your group." msgstr "Þú getur hlaðið upp mynd fyrir hópinn þinn." -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 msgid "Logo updated." msgstr "Einkennismynd uppfærð." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "Tókst ekki að uppfæra einkennismynd" @@ -3800,7 +4122,8 @@ msgid "A list of the users in this group." msgstr "Listi yfir notendur í þessum hóp." #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "Hópar" @@ -3815,16 +4138,16 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "Hópar á %%%%site.name%%%% leyfa þér að finna og tala við " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "Búa til nýjan hóp" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +msgid "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Leita að hópum á %%site.name%% eftir nafni, staðsetningu eða lýsingu. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "Hópleit" @@ -3846,20 +4169,20 @@ msgstr "Sendu mér svör í gegnum Jabber/GTalk " msgid "A confirmation code was sent " msgstr "Staðfestingarlykill var sendur " -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "Þú verður að hafa skráð þig inn til að bæta þér í hóp." -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "Þú ert nú þegar meðlimur í þessum hópi" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "Gat ekki bætt notandanum %s í hópinn %s" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "%s bætti sér í hópinn %s" @@ -3868,15 +4191,18 @@ msgstr "%s bætti sér í hópinn %s" msgid "Inboxes must be enabled for groups to work." msgstr "Innhólf verða að vera virk svo að hópar virki." -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp." -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "Enginn þannig hópur." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "Þú ert ekki meðlimur í þessum hópi." @@ -3884,21 +4210,25 @@ msgstr "Þú ert ekki meðlimur í þessum hópi." msgid "You may not leave a group while you are its administrator." msgstr "Þú getur ekki gengið úr hóp á meðan þú ert stjórnandi hópsins." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "Gat ekki fundið meðlimaskrá." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "%s gekk úr hópnum %s" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "Skrá þig inn á síðuna" @@ -3910,15 +4240,17 @@ msgstr "Engin núverandi staða" msgid "New group" msgstr "Nýr hópur" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp." -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "Gat ekki búið til hóp." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "Gat ekki skráð hópmeðlimi." @@ -3930,20 +4262,20 @@ msgstr "Þetta er of langt. " msgid "Don't send a message to yourself; " msgstr "Ekki senda þér þín eigin skilaboð; " -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Babl sent inn" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Ajax villa" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Þessi notandi leyfir ekki að ýta við sér eða hefur ekki staðfest eða skráð " -"tölvupóstinn sinn." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Þessi notandi leyfir ekki að ýta við sér eða hefur ekki staðfest eða skráð tölvupóstinn sinn." #: actions/nudge.php:94 msgid "Nudge sent" @@ -3953,7 +4285,7 @@ msgstr "Ýtt við notanda" msgid "Nudge sent!" msgstr "Ýtt við notanda!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "Innskráning með OpenID" @@ -3977,30 +4309,31 @@ msgstr "Sjálfvirk stytting vefslóða" msgid "Service" msgstr "Þjónusta" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Þjónusta sem sér um sjálfkrafa styttingu." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." -msgstr "" -"Þjónusta sjálfvirkrar vefslóðastyttingar er of löng (í mesta lagi 50 " -"stafir)." +msgstr "Þjónusta sjálfvirkrar vefslóðastyttingar er of löng (í mesta lagi 50 stafir)." #: actions/passwordsettings.php:69 msgid "Change your password." msgstr "Breyta lykilorðinu þínu." -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "Lykilorðabreyting" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Ekki gilt persónumerki: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Notendur sjálfmerktir með %s - síða %d" @@ -4010,47 +4343,46 @@ msgstr "Notendur sjálfmerktir með %s - síða %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Þetta eru notendur sem hafa merkt sjálfa sig með \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Upplýsingar á persónulegri síðu" -#: actions/profilesettings.php:124 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða " -"bili" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða bili" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " msgstr "Sjálfkrafa gerast áskrifandi að þeim " #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Ógilt merki: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Gat ekki vistað merki." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, php-format msgid "Public timeline, page %d" msgstr "Almenningsrás, síða %d" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Gat ekki sótt efni úr almenningsveitu." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"Þetta er [örbloggssþjónustan](http://en.wikipedia.org/wiki/Micro-blogging) " -"%%site.name%% " +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Þetta er [örbloggssþjónustan](http://en.wikipedia.org/wiki/Micro-blogging) %%site.name%% " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4061,11 +4393,13 @@ msgstr "Merkjaský almenningsins" msgid "These are most popular recent tags on %s " msgstr "Þetta eru vinsælustu nýlegu merkin á %s " -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "Merkjaský" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Afsakið en aðeins fólki sem er boðið getur nýskráð sig." @@ -4112,11 +4446,10 @@ msgstr "(Þú ættir að fá tölvupóst " #: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." -msgstr "" -"Þetta er staðbundinn persónuaðgangur! Skráðu þig inn til að gerast " -"áskrifandi." +msgstr "Þetta er staðbundinn persónuaðgangur! Skráðu þig inn til að gerast áskrifandi." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "Svör við %s, síða %d" @@ -4126,67 +4459,84 @@ msgstr "Svör við %s, síða %d" msgid "%s favorite notices, page %d" msgstr "Uppáhaldsbabl %s, síða %d" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s hópurinn" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "%s hópurinn, síða %d" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Hópssíðan" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "Vefslóð" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "Athugasemd" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "Hópsaðgerðir" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "Bablveita fyrir hópinn %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "Meðlimir" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "(Ekkert)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Allir meðlimir" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** er notendahópur á [örbloggsþjónustunni](http://en.wikipedia.org/wiki" -"/Micro-blogging) %%%%site.name%%%% " +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** er notendahópur á [örbloggsþjónustunni](http://en.wikipedia.org/wiki/Micro-blogging) %%%%site.name%%%% " #: actions/showmessage.php:98 msgid "Only the sender and recipient " msgstr "Aðeins sendandinn og móttakandi " -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "%s, síða %d" @@ -4196,42 +4546,44 @@ msgid "'s profile" msgstr "- Persónuleg síða" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "Persónuleg síða notanda" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "Ljósmynd" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "Notandaaðgerðir" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "Senda bein skilaboð til þessa notanda" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "Skilaboð" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 msgid "All subscribers" msgstr "Allir áskrifendur" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "Allir hópar" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** hefur notendaaðgang á " -"[örbloggsþjónustunni](http://en.wikipedia.org/wiki/Micro-blogging) " -"%%%%site.name%%%% " +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** hefur notendaaðgang á [örbloggsþjónustunni](http://en.wikipedia.org/wiki/Micro-blogging) %%%%site.name%%%% " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4245,7 +4597,7 @@ msgstr "Senda mér babl í gegnum SMS; " msgid "A confirmation code was sent to the phone number you added. " msgstr "Staðfestingarlykill hefur verið sendur í símanúmerið sem þú slóst inn. " -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "Farsímafyrirtæki" @@ -4303,16 +4655,17 @@ msgstr "Þetta er fólkið þar sem bablið " msgid "These are the people whose " msgstr "Þetta er fólkið þar sem " -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber snarskilaboðaþjónusta" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "Babl merkt með %s, síða %d" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "Skilaboð merkt með \"%s\", nýlegustu skilaboðin fyrst" @@ -4334,53 +4687,47 @@ msgstr "Merki %s" msgid "Tag user" msgstr "Merkja notanda" -#: actions/tagother.php:149 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Merki fyrir þennan notanda (bókstafir, tölustafir, -, ., og _), aðskilin með " -"kommu eða bili" +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Merki fyrir þennan notanda (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða bili" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." -#: actions/tagother.php:191 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Þú getur aðeins merkt fólk sem þú ert áskrifandi að eða þau sem eru " -"áskrifendur að þér." +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Þú getur aðeins merkt fólk sem þú ert áskrifandi að eða þau sem eru áskrifendur að þér." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Gat ekki vistað merki." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Notaðu þetta eyðublað til að bæta við merkjum við áskrifendur þína eða þau " -"sem þú ert áskrifandi að." +msgstr "Notaðu þetta eyðublað til að bæta við merkjum við áskrifendur þína eða þau sem þú ert áskrifandi að." #: actions/tagrss.php:35 msgid "No such tag." msgstr "Ekkert þannig merki." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Örblogg merkt með %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Mistókst að loka á notanda." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Mistókst að opna fyrir notanda." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Fannst ekki." @@ -4388,15 +4735,16 @@ msgstr "Fannst ekki." msgid "Add your Twitter account to automatically send " msgstr "Bættu við Twitter aðgangi þínum til að sjálfkrafa senda " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Notendanafn á Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Lykilorð á Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Twitter vinir" @@ -4409,147 +4757,151 @@ msgstr "Notendanafn má aðeins innihalda tölustafi, " msgid "Unable to retrieve account information " msgstr "Gat ekki náð í aðgangsupplýsingar " -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Vill kom upp við að aflétta notendalokun." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Ekkert einkenni persónulegrar síðu í beiðni." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Enginn persónuleg síða með þessu einkenni." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Ekki lengur áskrifandi" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Hópar %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Hópar %s, síða %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Gat ekki vistað babl. Óþekktur notandi." -#: classes/Notice.php:109 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Of mikið babl í einu; slakaðu aðeins á og haltu svo áfram eftir nokkrar " -"mínútur." +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Of mikið babl í einu; slakaðu aðeins á og haltu svo áfram eftir nokkrar mínútur." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Hlaða upp einkennismynd" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Annað" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Aðrir valkostir" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Ónafngreind síða" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Stikl aðalsíðu" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Persónuleg síða og vinarás" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Leita að fólki eða texta" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Aðgangur" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" -msgstr "" -"Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, " -"persónulegu síðunni þinni" +msgstr "Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, persónulegu síðunni þinni" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Tengjast snarskilaboðaþjónustu, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Skrá þig út af síðunni" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Skrá þig inn á síðuna" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Búa til aðgang" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Skrá þig inn með OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Hjálp!" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "Babl vefsíðunnar" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "Staðbundin sýn" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Babl síðunnar" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "Stikl undirsíðu" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "Allt " -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "leyfi." -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "Loka á þennan notanda" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Loka" @@ -4562,11 +4914,14 @@ msgstr "Taka þetta babl út sem uppáhald" msgid "To use the %s Facebook Application you need to login " msgstr "Til að nota Facebook forritið %s verður þú að skrá þig inn " -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr " nýr aðgangur." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Útgefið" @@ -4586,53 +4941,57 @@ msgstr "Sía merki" msgid "All" msgstr "Allt" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Merki" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Veldu merki til að þrengja lista" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Áfram" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Lýsing" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" -#: lib/groupeditform.php:158 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Staðsetning hópsins, ef einhver, eins og \"Borg, landshluti, land\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Hópur" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Stjórnandi" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Breyta hópstillingum %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Einkennismerki" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Bæta við eða breyta einkennismerki %s" @@ -4662,11 +5021,11 @@ msgstr "Gerast meðlimur" msgid "Leave" msgstr "Hætta sem meðlimur" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Skráðu þig inn með notendanafni og lykilorði" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Búðu til nýjan aðgang" @@ -4676,38 +5035,30 @@ msgstr "Skráðu þig inn eða nýskráðu þig með OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Hey, %s.\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Hey, %s.\n\n" #: lib/mail.php:236 #, php-format msgid "%1$s is now listening to " msgstr "%1$s hlustar núna á " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Staðsetning: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Vefsíða: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Lýsing: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Lýsing: %s\n\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s ýtti við þér" @@ -4722,39 +5073,47 @@ msgstr "%1$s (%2$s) er að spá hvað þú ert að gera " msgid "%1$s just added your notice from %2$s" msgstr "%1$s bætti við bablinu þínu af %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Frá" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Senda bein skilaboð" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Senda babl" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Leyfileg tákn" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "sem svar við" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Svara þessu babli" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Svara" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Eyða þessu babli" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Eyða" @@ -4775,27 +5134,29 @@ msgstr "Ýta við þessum notanda" msgid "Tags in %s's notices" msgstr "Merki í babli %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(ekkert)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Almenn" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Notendahópar" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Nýleg merki" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Í sviðsljósinu" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Vinsælt" @@ -4811,31 +5172,33 @@ msgstr "Finna hópa á þessari síðu" msgid "Untitled section" msgstr "Ónafngreindur hluti" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Fólk sem %s er áskrifandi að" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Fólk sem eru áskrifendur að %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "Hópar sem %s er meðlimur í" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "Notandinn hefur lokað á þig." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Gerast áskrifandi að þessum notanda" @@ -4848,13 +5211,15 @@ msgid "Top posters" msgstr "Aðalbablararnir" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Opna á þennan notanda" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Opna" #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Hætta sem áskrifandi að þessum notanda" + diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index fe69bad3e8..1c1b483058 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,14 +9,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:58:30+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:34+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: out-statusnet\n" @@ -30,11 +29,8 @@ msgstr " Ricerca \"%s\" nel flusso" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" a eccezione di questi dati personali: password, indirizzo email, indirizzo " -"messaggistica istantanea, numero di telefono." +msgid " except this private data: password, email address, IM address, phone number." +msgstr " a eccezione di questi dati personali: password, indirizzo email, indirizzo messaggistica istantanea, numero di telefono." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -56,60 +52,8 @@ msgstr "Hai ricevuto un invito per seguire %1$s su %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"Hai ricevuto un invito per seguire %1$s su %2$s (%3$s).\n" -"\n" -"%2$s è un servizio di micro-blog che ti consente di rimanere sempre al passo " -"con le persone che conosci e che ti interessano.\n" -"\n" -"Puoi condividere notizie che ti riguardano, i tuoi pensieri o la tua vita in " -"rete con le persone che conosci ed è anche un ottimo strumento per " -"conoscerne di nuove che condividono i tuoi stessi interessi.\n" -"\n" -"%1$s ha scritto:\n" -"\n" -"%4$s\n" -"\n" -"Puoi vedere il profilo di %1$s su %2$s al seguente indirizzo:\n" -"\n" -"%5$s\n" -"\n" -"Se vuoi provare il servizio, fai clic sul collegamento qui sotto per " -"accettare l'invito:\n" -"\n" -"%6$s\n" -"\n" -"Se non è ciò che vuoi, ignora semplicemente questo messaggio. Grazie per " -"aver letto questo invito e per il tuo tempo!\n" -"\n" -"Cordiali saluti, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "Hai ricevuto un invito per seguire %1$s su %2$s (%3$s).\n\n%2$s è un servizio di micro-blog che ti consente di rimanere sempre al passo con le persone che conosci e che ti interessano.\n\nPuoi condividere notizie che ti riguardano, i tuoi pensieri o la tua vita in rete con le persone che conosci ed è anche un ottimo strumento per conoscerne di nuove che condividono i tuoi stessi interessi.\n\n%1$s ha scritto:\n\n%4$s\n\nPuoi vedere il profilo di %1$s su %2$s al seguente indirizzo:\n\n%5$s\n\nSe vuoi provare il servizio, fai clic sul collegamento qui sotto per accettare l'invito:\n\n%6$s\n\nSe non è ciò che vuoi, ignora semplicemente questo messaggio. Grazie per aver letto questo invito e per il tuo tempo!\n\nCordiali saluti, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -119,20 +63,8 @@ msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s sta ora seguendo i tuoi messaggi su %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Cordiali saluti,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s.\n\n %3$s\n\nCordiali saluti,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -208,22 +140,14 @@ msgstr "Aggiornamenti di %s da tutti!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Dovresti ricevere, entro breve, un messaggio email con istruzioni su come " -"confermare il tuo indirizzo email.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Dovresti ricevere, entro breve, un messaggio email con istruzioni su come confermare il tuo indirizzo email.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** è un servizio di micro-blog offerto da [%%site.broughtby%%]" -"(%%site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** è un servizio di micro-blog offerto da [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -233,8 +157,7 @@ msgstr "**%%site.name%%** è un servizio di micro-blog. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -". I collaboratori devono essere indicati col loro nome completo o soprannome." +msgstr ". I collaboratori devono essere indicati col loro nome completo o soprannome." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -242,14 +165,12 @@ msgstr "" #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" +msgstr "1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 lettere minuscole o numeri, niente punteggiatura o spazi. Richiesto." +msgstr "1-64 lettere minuscole o numeri, niente punteggiatura o spazi. Richiesto." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -270,31 +191,17 @@ msgstr "6 o più caratteri. Richiesta." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Un codice di conferma è stato inviato all'indirizzo di messaggistica " -"istantanea che hai aggiunto. Devi approvare %s affinché ti invii messaggi." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Un codice di conferma è stato inviato all'indirizzo di messaggistica istantanea che hai aggiunto. Devi approvare %s affinché ti invii messaggi." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. " -"Controlla la tua casella di posta (e anche la posta indesiderata!) per il " -"codice e le istruzioni su come usarlo." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) per il codice e le istruzioni su come usarlo." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Un codice di conferma è stato inviato al numero di telefono che hai " -"aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) " -"per il codice e le istruzioni su come usarlo." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Un codice di conferma è stato inviato al numero di telefono che hai aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) per il codice e le istruzioni su come usarlo." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -474,11 +381,8 @@ msgstr "Accedi automaticamente in futuro; non per computer condivisi!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-" -"umani)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-umani)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -497,22 +401,13 @@ msgstr "Immagine aggiornata." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"In attesa di conferma per questo indirizzo. Controlla il tuo account Jabber/" -"GTalk per un messaggio con ulteriori istruzioni (hai aggiunto %s al tuo " -"elenco contatti?)." +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "In attesa di conferma per questo indirizzo. Controlla il tuo account Jabber/GTalk per un messaggio con ulteriori istruzioni (hai aggiunto %s al tuo elenco contatti?)." #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Attesa la conferma per questo indirizzo. Controlla la tua casella di posta " -"(e anche la posta indesiderata!) per un messaggio con ulteriori istruzioni." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Attesa la conferma per questo indirizzo. Controlla la tua casella di posta (e anche la posta indesiderata!) per un messaggio con ulteriori istruzioni." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -649,36 +544,8 @@ msgstr "Codice di conferma non trovato." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Congratulazioni %s! Benvenuto/a in %%%%site.name%%%%. Da qui ora puoi...\n" -"\n" -"* Visitare il [tuo profilo](%s) e inviare il tuo primo messaggio.\n" -"*Aggiungere un [indirizzo Jabber/GTalk](%%%%action.imsettings%%%%) per usare " -"quel servizio per inviare messaggi.\n" -"*[Ricercare persone](%%%%action.peoplesearch%%%%) che potresti conoscere o " -"che condividono i tuoi stessi interessi.\n" -"* Aggiornare le [tue impostazioni](%%%%action.profilesettings%%%%) per " -"fornire agli altri più informazioni su di te.\n" -"* Leggere la [documentazione in rete](%%%%doc.help%%%%) per le " -"caratteristiche che magari non hai ancora visto. \n" -"\n" -"Grazie per esserti iscritto/a e speriamo tu possa divertiti usando questo " -"servizio." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Congratulazioni %s! Benvenuto/a in %%%%site.name%%%%. Da qui ora puoi...\n\n* Visitare il [tuo profilo](%s) e inviare il tuo primo messaggio.\n*Aggiungere un [indirizzo Jabber/GTalk](%%%%action.imsettings%%%%) per usare quel servizio per inviare messaggi.\n*[Ricercare persone](%%%%action.peoplesearch%%%%) che potresti conoscere o che condividono i tuoi stessi interessi.\n* Aggiornare le [tue impostazioni](%%%%action.profilesettings%%%%) per fornire agli altri più informazioni su di te.\n* Leggere la [documentazione in rete](%%%%doc.help%%%%) per le caratteristiche che magari non hai ancora visto. \n\nGrazie per esserti iscritto/a e speriamo tu possa divertiti usando questo servizio." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -750,8 +617,7 @@ msgstr "Impossibile aggiornare l'utente con l'indirizzo email confermato." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "" -"Impossibile convertire le credenziali di richiesta in credenziali di accesso." +msgstr "Impossibile convertire le credenziali di richiesta in credenziali di accesso." #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -1086,12 +952,8 @@ msgid "Find people on this site" msgstr "Ricerca persone in questo sito" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Per motivi di sicurezza è necessario reinserire il proprio nome utente e la " -"propria password prima di modificare le impostazioni." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Per motivi di sicurezza è necessario reinserire il proprio nome utente e la propria password prima di modificare le impostazioni." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1176,28 +1038,16 @@ msgstr "Impostazioni messaggistica istantanea" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Se hai già un account, esegui l'accesso col tuo nome utente e la tua " -"password per connetterlo al tuo OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Se hai già un account, esegui l'accesso col tuo nome utente e la tua password per connetterlo al tuo OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Se vuoi aggiungere un OpenID al tuo account, inseriscilo nel riquadro " -"sottostante e fai clic su \"Aggiungi\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Se vuoi aggiungere un OpenID al tuo account, inseriscilo nel riquadro sottostante e fai clic su \"Aggiungi\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova " -"per email all'indirizzo indicato nel tuo profilo." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova per email all'indirizzo indicato nel tuo profilo." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1227,12 +1077,8 @@ msgstr "Nome utente o password non corretto." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Le istruzioni per recuperare la tua password sono state inviate " -"all'indirizzo email registrato nel tuo account." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Le istruzioni per recuperare la tua password sono state inviate all'indirizzo email registrato nel tuo account." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1328,14 +1174,8 @@ msgstr "Invita nuovi utenti" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Gestito dal software di micro-blog [StatusNet](http://status.net/), versione " -"%s, disponibile sotto licenza [GNU Affero General Public License](http://www." -"fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Gestito dal software di micro-blog [StatusNet](http://status.net/), versione %s, disponibile sotto licenza [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1345,13 +1185,8 @@ msgstr "ID Jabber già assegnato a un altro utente." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Indirizzo Jabber o GTalk nella forma \"NomeUtente@example.org\". Per prima " -"cosa, assicurati di aggiungere %s all'elenco dei contatti nel tuo programma " -"di messaggistica o su GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Indirizzo Jabber o GTalk nella forma \"NomeUtente@example.org\". Per prima cosa, assicurati di aggiungere %s all'elenco dei contatti nel tuo programma di messaggistica o su GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1418,14 +1253,8 @@ msgstr "Accedi con un account [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Accedi con nome utente e password. Non hai ancora un nome utente? [Registra]" -"(%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%" -"%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Accedi con nome utente e password. Non hai ancora un nome utente? [Registra](%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1448,9 +1277,7 @@ msgstr "Password persa o dimenticata?" #: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "" -"Crea un nuovo indirizzo email a cui inviare i messaggi, rimuove quello " -"vecchio." +msgstr "Crea un nuovo indirizzo email a cui inviare i messaggi, rimuove quello vecchio." #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 @@ -1472,12 +1299,8 @@ msgstr "Micro-blog di %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Operatore di telefonia mobile. Se conosci un operatore che accetta gli SMS " -"via email, ma non è elencato qui, scrivici a %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Operatore di telefonia mobile. Se conosci un operatore che accetta gli SMS via email, ma non è elencato qui, scrivici a %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1573,9 +1396,7 @@ msgstr "Soprannome già in uso. Prova con un altro." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Il soprannome deve essere composto solo da lettere minuscole e numeri, senza " -"spazi." +msgstr "Il soprannome deve essere composto solo da lettere minuscole e numeri, senza spazi." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -2101,13 +1922,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Numero di telefono, senza punteggiatura o spazi, con il prefisso" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " -"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2290,12 +2106,8 @@ msgid "Remove OpenID" msgstr "Rimuovi OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Rimuovere il tuo unico OpenID renderà impossibile effettuare l'accesso! Se " -"vuoi rimuoverlo, prima aggiungi un altro OpenID." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Rimuovere il tuo unico OpenID renderà impossibile effettuare l'accesso! Se vuoi rimuoverlo, prima aggiungi un altro OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2391,21 +2203,13 @@ msgstr "Ricerca nel flusso dei feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Ricerca tra i messaggi su %%site.name%% in base al contenuto. Separa i " -"termini di ricerca con degli spazi; lunghezza minima 3 caratteri." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Ricerca tra i messaggi su %%site.name%% in base al contenuto. Separa i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa " -"i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2440,12 +2244,8 @@ msgstr "Inviami le notifiche via Jabber/GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Inviami avvisi via SMS: comprendo che potrei incorrere in esorbitanti " -"bollette da parte del mio operatore" +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Inviami avvisi via SMS: comprendo che potrei incorrere in esorbitanti bollette da parte del mio operatore" #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 @@ -2682,25 +2482,13 @@ msgstr "L'indirizzo è stato rimosso." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " -"richiamo. Controlla le istruzioni del sito per i dettagli su come " -"autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di richiamo. Controlla le istruzioni del sito per i dettagli su come autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " -"richiamo. Controlla con le istruzioni del sito per i dettagli su come " -"rifiutare completamente l'abbonamento." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di richiamo. Controlla con le istruzioni del sito per i dettagli su come rifiutare completamente l'abbonamento." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2726,34 +2514,22 @@ msgstr "Queste sono le persone che stai seguendo." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Queste persone sono già utenti e sei stato automaticamente abbonato a loro:" +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Queste persone sono già utenti e sei stato automaticamente abbonato a loro:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Questo codice di conferma è scaduto. Ricomincia da capo." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Questo modulo dovrebbe inviarsi automaticamente. In caso contrario, fai clic " -"sul pulsante per inviarlo al tuo servizio OpenID." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Questo modulo dovrebbe inviarsi automaticamente. In caso contrario, fai clic sul pulsante per inviarlo al tuo servizio OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Questa è la prima volta che accedi a %s ed è quindi necessario collegare il " -"tuo OpenID a un account locale. Puoi crearne uno nuovo o collegarlo con il " -"tuo account esistente, se ne hai uno." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Questa è la prima volta che accedi a %s ed è quindi necessario collegare il tuo OpenID a un account locale. Puoi crearne uno nuovo o collegarlo con il tuo account esistente, se ne hai uno." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2802,15 +2578,8 @@ msgstr "Fuso orario non selezionato" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Per abbonarti puoi [eseguire l'accesso](%%action.login%%) oppure [registrare]" -"(%%action.register%%) un nuovo account. Se ne possiedi già uno su un [sito " -"di micro-blog compatibile](%%doc.openmublog%%), inserisci l'indirizzo del " -"tuo profilo qui di seguito." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Per abbonarti puoi [eseguire l'accesso](%%action.login%%) oppure [registrare](%%action.register%%) un nuovo account. Se ne possiedi già uno su un [sito di micro-blog compatibile](%%doc.openmublog%%), inserisci l'indirizzo del tuo profilo qui di seguito." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2864,12 +2633,8 @@ msgid "Unknown version of OMB protocol." msgstr "Versione del protocollo OMB sconosciuta." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Se non indicato diversamente, i diritti d'autore dei contenuti di questo " -"sito sono dei singoli utenti e sono disponibili sotto " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Se non indicato diversamente, i diritti d'autore dei contenuti di questo sito sono dei singoli utenti e sono disponibili sotto " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2930,16 +2695,8 @@ msgid "Upload" msgstr "Carica" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Carica qui una nuova immagine utente. Non puoi modificarla una volta " -"caricata, quindi sii sicuro che sia più o meno quadrata. Deve anche essere " -"rilasciata sotto la licenza del sito. Usa un'immagine che ti appartiene e " -"che tu voglia condividere." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Carica qui una nuova immagine utente. Non puoi modificarla una volta caricata, quindi sii sicuro che sia più o meno quadrata. Deve anche essere rilasciata sotto la licenza del sito. Usa un'immagine che ti appartiene e che tu voglia condividere." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2947,11 +2704,8 @@ msgstr "Carica una nuova immagine per il profilo" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Usa questo modulo per invitare i tuoi amici e colleghi a usare questo " -"servizio." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Usa questo modulo per invitare i tuoi amici e colleghi a usare questo servizio." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -3044,12 +2798,8 @@ msgid "You already have this OpenID!" msgstr "Hai già questo OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà " -"possibile recuperarlo." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà possibile recuperarlo." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3081,29 +2831,19 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Puoi ricevere messaggi SMS attraverso l'email da %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." msgstr "Puoi rimuovere un OpenID dal tuo account facendo clic su \"Rimuovi\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Puoi inviare e ricevere messaggi attraverso i servizi di [messaggistica " -"istantanea](%%doc.im%%) Jabber/GTalk. Configura il tuo indirizzo e le " -"impostazioni qui di seguito." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Puoi inviare e ricevere messaggi attraverso i servizi di [messaggistica istantanea](%%doc.im%%) Jabber/GTalk. Configura il tuo indirizzo e le impostazioni qui di seguito." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Qui puoi aggiornare le informazioni del tuo profilo personale, così gli " -"altri potranno conoscere qualcosa in più di te." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Qui puoi aggiornare le informazioni del tuo profilo personale, così gli altri potranno conoscere qualcosa in più di te." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3127,24 +2867,8 @@ msgstr "Non hai inviato quel profilo" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Hai un nuovo indirizzo di invio su %1$s.\n" -"\n" -"Scrivi le email a %2$s per inviare nuovi messaggi.\n" -"\n" -"Puoi trovare maggiori informazioni presso %3$s.\n" -"\n" -"Cordiali saluti,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Hai un nuovo indirizzo di invio su %1$s.\n\nScrivi le email a %2$s per inviare nuovi messaggi.\n\nPuoi trovare maggiori informazioni presso %3$s.\n\nCordiali saluti,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3160,12 +2884,8 @@ msgstr "Devi eseguire l'accesso per invitare altri utenti a usare %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Riceverai una notifica quando i tuoi invitati accetteranno e si " -"registreranno sul sito. Grazie per l'aiuto ad accrescere la comunità!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Riceverai una notifica quando i tuoi invitati accetteranno e si registreranno sul sito. Grazie per l'aiuto ad accrescere la comunità!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3179,17 +2899,12 @@ msgstr "Il tuo URL OpenID" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "" -"Il tuo soprannome su questo server o il tuo indirizzo email registrato." +msgstr "Il tuo soprannome su questo server o il tuo indirizzo email registrato." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso " -"account. Gestisci i tuoi OpenID associati da qui." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso account. Gestisci i tuoi OpenID associati da qui." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3330,8 +3045,7 @@ msgstr "Preferito" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Inviami un'email quando qualcuno aggiunge un mio messaggio ai preferiti" +msgstr "Inviami un'email quando qualcuno aggiunge un mio messaggio ai preferiti" #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 @@ -3382,18 +3096,12 @@ msgstr "Casella posta in arrivo di %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Questa è la casella della tua posta in arrivo, contiene i messaggi privati " -"ricevuti." +msgstr "Questa è la casella della tua posta in arrivo, contiene i messaggi privati ricevuti." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"Hai ricevuto un invito per seguire %1$s su %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "Hai ricevuto un invito per seguire %1$s su %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3435,8 +3143,7 @@ msgstr "Non puoi inviare un messaggio a questo utente." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3483,14 +3190,11 @@ msgstr "Casella posta inviata di %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Questa è la casella della tua posta inviata, contiene i messaggi privati che " -"hai inviato." +msgstr "Questa è la casella della tua posta inviata, contiene i messaggi privati che hai inviato." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " msgstr "Ricerca persone su %%site.name%% per nome, ubicazione o interessi. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3542,11 +3246,8 @@ msgstr "La password deve essere di 6 o più caratteri." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Congratulazioni, %s! Benvenuto/a su %%%%site.name%%%%. Ora potresti voler..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Congratulazioni, %s! Benvenuto/a su %%%%site.name%%%%. Ora potresti voler..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3669,19 +3370,12 @@ msgstr "%s ha aggiunto il tuo messaggio tra i suoi preferiti" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s ha appena aggiunto il tuo messaggio da %2$s tra i suoi preferiti.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s ha appena aggiunto il tuo messaggio da %2$s tra i suoi preferiti.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi " -"su Twitter, " +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi su Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3728,12 +3422,8 @@ msgstr "Abbonami ai miei amici di Twitter" #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Il nome utente deve contenere solo numeri, lettere maiuscole e minuscole e " -"trattini bassi (_) (max 15 caratteri)." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Il nome utente deve contenere solo numeri, lettere maiuscole e minuscole e trattini bassi (_) (max 15 caratteri)." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3948,12 +3638,8 @@ msgstr "Utente senza profilo corrispondente nel sistema." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Hai un nuovo indirizzo di ricezione su %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Hai un nuovo indirizzo di ricezione su %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3962,12 +3648,8 @@ msgstr "Nuovo messaggio privato da %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) ti ha inviato un messaggio privato:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) ti ha inviato un messaggio privato:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4246,15 +3928,14 @@ msgstr "Quell'indirizzo email appartiene già " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. " +msgstr "Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Errore del server: impossibile recuperare l'utente." #: actions/facebookhome.php:196 -#, fuzzy, php-format +#, php-format, fuzzy msgid "If you would like the %s app to automatically update " msgstr "Se vuoi che l'applicazione %s aggiorni automaticamente " @@ -4333,8 +4014,7 @@ msgstr "Impossibile rimuovere l'utente Facebook." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" -msgstr "" -"Si è verificato un problema nel salvare le preferenze di sincronizzazione." +msgstr "Si è verificato un problema nel salvare le preferenze di sincronizzazione." #: actions/facebooksettings.php:67 msgid "Sync preferences saved." @@ -4357,7 +4037,7 @@ msgid "A string to prefix notices with." msgstr "Una stringa con cui iniziare i messaggi." #: actions/facebooksettings.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "If you would like %s to automatically update " msgstr "Se vuoi che %s aggiorni automaticamente " @@ -4455,7 +4135,7 @@ msgid "Groups, page %d" msgstr "Gruppi, pagina %d" #: actions/groups.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "I gruppi di %%%%site.name%%%% ti consentono di cercare e parlare con " @@ -4466,8 +4146,7 @@ msgstr "Crea un nuovo gruppo" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +msgid "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Ricerca gruppi su %%site.name%% per nome, ubicazione o descrizione. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4480,7 +4159,7 @@ msgid "You can send and receive notices through " msgstr "Puoi inviare e ricevere messaggi attraverso " #: actions/imsettings.php:120 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Jabber or GTalk address, " msgstr "Indirizzo Jabber o GTalk, " @@ -4513,9 +4192,7 @@ msgstr "%s si è iscritto al gruppo %s" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "" -"Le caselle di posta in arrivo devono essere abilitate per i gruppi per poter " -"funzionare." +msgstr "Le caselle di posta in arrivo devono essere abilitate per i gruppi per poter funzionare." #: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -4600,11 +4277,8 @@ msgid "Ajax Error" msgstr "Errore di Ajax" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Questo utente non consente i richiami oppure non ha confermato o impostato " -"ancora il suo indirizzo email." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Questo utente non consente i richiami oppure non ha confermato o impostato ancora il suo indirizzo email." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4679,10 +4353,8 @@ msgstr "Informazioni sul profilo" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" #: actions/profilesettings.php:144 #, fuzzy @@ -4714,19 +4386,15 @@ msgstr "Impossibile recuperare l'attività pubblica." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/" -"wiki/Microblogging) " +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" msgstr "Insieme delle etichette" #: actions/publictagcloud.php:63 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are most popular recent tags on %s " msgstr "Queste sono le etichette più usate e recenti su %s " @@ -4781,7 +4449,7 @@ msgid " except this private data: password, " msgstr " a eccezione di questi dati personali: password, " #: actions/register.php:471 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " msgstr "Congratulazioni %s! Benvenuto/a su %%%%site.name%%%%. " @@ -4875,12 +4543,8 @@ msgstr "Tutti i membri" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" -"it.wikipedia.org/wiki/Microblogging) " +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " #: actions/showmessage.php:98 #, fuzzy @@ -4934,12 +4598,8 @@ msgstr "Tutti i gruppi" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" -"(http://it.wikipedia.org/wiki/Microblogging) " +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " #: actions/smssettings.php:128 #, fuzzy @@ -4991,7 +4651,7 @@ msgid "These are the people who listen to " msgstr "Queste sono le persone che seguono " #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "Queste sono le persone che " @@ -5011,7 +4671,7 @@ msgid "These are the people whose notices " msgstr "Queste sono le persone i cui messaggi " #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "Queste sono le persone i cui " @@ -5048,22 +4708,16 @@ msgid "Tag user" msgstr "Etichette utente" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Etichette per questo utente (lettere, numeri, -, . e _), separate da virgole " -"o spazi" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Etichette per questo utente (lettere, numeri, -, . e _), separate da virgole o spazi" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "C'è stato un problema con il tuo token di sessione." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Puoi etichettare sole le persone a cui sei abbonato o che sono abbonate a te." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Puoi etichettare sole le persone a cui sei abbonato o che sono abbonate a te." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5071,9 +4725,7 @@ msgstr "Impossibile salvare le etichette." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Usa questo modulo per aggiungere etichette ai tuoi abbonati o ai tuoi " -"abbonamenti." +msgstr "Usa questo modulo per aggiungere etichette ai tuoi abbonati o ai tuoi abbonamenti." #: actions/tagrss.php:35 msgid "No such tag." @@ -5123,7 +4775,7 @@ msgid "Username must have only numbers, " msgstr "Il nome utente deve avere solo numeri, " #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " msgstr "Impossibile recuperare informazioni sull'account " @@ -5161,11 +4813,8 @@ msgstr "Problema nel salvare il messaggio. Utente sconosciuto." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " -"qualche minuto." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra qualche minuto." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5285,8 +4934,7 @@ msgstr "Togli questo messaggio dai preferiti" #: lib/facebookaction.php:268 #, php-format msgid "To use the %s Facebook Application you need to login " -msgstr "" -"Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " +msgstr "Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 @@ -5346,8 +4994,7 @@ msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Dove è situato il gruppo, tipo \"città, regione, stato\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5412,15 +5059,11 @@ msgstr "Accedi o registrati con OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Ehi, %s\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Ehi, %s\n\n" #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s sta ora seguendo " @@ -5436,12 +5079,8 @@ msgstr "Pagina web: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Biografia: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Biografia: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5449,7 +5088,7 @@ msgid "You've been nudged by %s" msgstr "%s ti ha richiamato" #: lib/mail.php:465 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s (%2$s) is wondering what you are up to " msgstr "%1$s (%2$s) si chiede cosa tu " @@ -5609,17 +5248,17 @@ msgid "Unsubscribe from this user" msgstr "Annulla l'abbonamento da questo utente" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed per gli amici di %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed per gli amici di %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Feed per gli amici di %s" @@ -5629,7 +5268,7 @@ msgid "You and friends" msgstr "%s e amici" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Qui puoi caricare la tua immagine personale." @@ -5638,21 +5277,10 @@ msgstr "Qui puoi caricare la tua immagine personale." msgid "Avatar deleted." msgstr "Immagine aggiornata." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà " -"possibile recuperarlo." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà possibile recuperarlo." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5664,29 +5292,9 @@ msgstr "C'è stato un problema con il tuo token di sessione. Prova di nuovo." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5695,28 +5303,14 @@ msgid "Pick a square area of the image to be the logo." msgstr "Scegli un'area quadrata per la tua immagine personale" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Micro-blog di %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa " -"i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." #: actions/newmessage.php:102 #, fuzzy @@ -5724,18 +5318,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Errore nell'inviare il messaggio diretto." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr " Ricerca \"%s\" nel flusso" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Per motivi di sicurezza è necessario reinserire il proprio nome utente e la " -"propria password prima di modificare le impostazioni." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Per motivi di sicurezza è necessario reinserire il proprio nome utente e la propria password prima di modificare le impostazioni." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5752,35 +5342,10 @@ msgstr "Feed del flusso pubblico" msgid "Public Stream Feed (Atom)" msgstr "Feed del flusso pubblico" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" a eccezione di questi dati personali: password, indirizzo email, indirizzo " -"messaggistica istantanea, numero di telefono." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr " a eccezione di questi dati personali: password, indirizzo email, indirizzo messaggistica istantanea, numero di telefono." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5788,44 +5353,33 @@ msgstr "" msgid "Created" msgstr "Crea" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Profilo del gruppo" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Profilo" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Feed dei messaggi per %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Feed dei messaggi per %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Feed dei messaggi per %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Casella posta inviata di %s" @@ -5841,48 +5395,10 @@ msgstr "Immagine" msgid "Edit profile settings" msgstr "Impostazioni del profilo" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Un codice di conferma è stato inviato al numero di telefono che hai " -"aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) " -"per il codice e le istruzioni su come usarlo." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Un codice di conferma è stato inviato al numero di telefono che hai aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) per il codice e le istruzioni su come usarlo." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5899,27 +5415,18 @@ msgstr "Nessun tale utente" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi " -"su Twitter, " +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi su Twitter, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Impossibile ottenere informazioni sull'account \"%s\" da Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " -"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5928,12 +5435,8 @@ msgstr "Ricerca persone o per testo" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " -"qualche minuto." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra qualche minuto." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5945,219 +5448,21 @@ msgstr "Connettiti con MI, SMS e Twitter" msgid "Badge" msgstr "Richiama" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s sta ora seguendo i tuoi messaggi su %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Cordiali saluti,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s.\n\n %3$s\n\nCordiali saluti,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Ricerca" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6174,12 +5479,12 @@ msgid "Block this user from this group" msgstr "Un elenco degli utenti in questo gruppo." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Profilo utente" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s e amici, pagina %d" @@ -6203,56 +5508,26 @@ msgstr "Codice di conferma" msgid "Do not delete this notice" msgstr "Impossibile eliminare questo messaggio." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Etichetta non valida: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Soprannome già in uso. Prova con un altro." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Impossibile creare preferito." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6263,14 +5538,6 @@ msgstr "Nuovo messaggio" msgid "No notice" msgstr "Nuovo messaggio" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6282,10 +5549,6 @@ msgstr "Non è un soprannome valido." msgid "No group specified." msgstr "Nessun profilo specificato." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6302,18 +5565,6 @@ msgstr "Non sei un membro di quel gruppo." msgid "Block user from group" msgstr "Blocca utente" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6324,12 +5575,6 @@ msgstr "Devi eseguire l'accesso per creare un gruppo." msgid "Group design" msgstr "Gruppi" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6362,232 +5607,46 @@ msgstr "Devi essere amministratore per modificare il gruppo" msgid "Make Admin" msgstr "Amministra" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Nessun risultato" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "L'utente ti ha bloccato." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Messaggio" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Impossibile salvare il profilo." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso " -"account. Gestisci i tuoi OpenID associati da qui." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso account. Gestisci i tuoi OpenID associati da qui." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Impostazioni del profilo" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/" -"wiki/Microblogging) " - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova " -"per email all'indirizzo indicato nel tuo profilo." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova per email all'indirizzo indicato nel tuo profilo." #: actions/recoverpassword.php:158 #, fuzzy @@ -6609,87 +5668,30 @@ msgstr "Errore con il codice di conferma." msgid "Subscribe to a remote user" msgstr "Abbonati a questo utente" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "Messaggi preferiti di %s, pagina %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed dei messaggi per il gruppo %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed dei messaggi per il gruppo %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Feed dei messaggi per il gruppo %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" -"it.wikipedia.org/wiki/Microblogging) " +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6702,84 +5704,33 @@ msgid "Not a local notice" msgstr "Non un utente locale." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Messaggi etichettati con %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Feed dei messaggi per il gruppo %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" -"(http://it.wikipedia.org/wiki/Microblogging) " - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s sta ora seguendo " #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed dei messaggi per %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Feed dei messaggi per %s" @@ -6810,20 +5761,16 @@ msgid "Could not find target user." msgstr "Impossibile trovare un qualsiasi stato." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Aggiornamenti in risposta a %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Aggiornamenti da %1$s su %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -6839,127 +5786,41 @@ msgstr "Abbonamenti di %s" msgid "Profile design" msgstr "Impostazioni del profilo" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Non sei un membro di quel gruppo." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problema nel salvare il messaggio." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Messaggio a %1$s su %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Profilo utente" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profilo" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Carica" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Modifica la tua password" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6975,127 +5836,21 @@ msgstr "Ricerca" msgid "Links" msgstr "Elenco" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Blocca" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Blocca utente" #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "Aggiungi o modifica il logo di %s" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7111,26 +5866,11 @@ msgstr "Utente" msgid "Search help" msgstr "Ricerca" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "L'URL della pagina web non è valido." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7138,12 +5878,12 @@ msgid "No such page" msgstr "Nessuna tale etichetta." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Messaggi diretti a %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Troppo lungo. Il massimo per un messaggio è 140 caratteri." @@ -7152,12 +5892,8 @@ msgstr "Troppo lungo. Il massimo per un messaggio è 140 caratteri." msgid "Could not unfollow user: User not found." msgstr "Impossibile seguire l'utente: utente non trovato." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "La descrizione è troppo lunga (max 140 caratteri)." @@ -7167,7 +5903,7 @@ msgid "You are already a member of that group." msgstr "Sei già un membro di quel gruppo" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Impossibile iscrivere l'utente %s al gruppo %s" @@ -7177,44 +5913,31 @@ msgid "You are not a member of this group." msgstr "Non sei un membro di quel gruppo." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Impossibile rimuovere l'utente %s dal gruppo %s" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "Gruppi di %s" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "Il gruppo %s è membro di" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Azioni dei gruppi" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Troppo lungo. Lunghezza massima 140 caratteri." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -7226,12 +5949,12 @@ msgid "Post to " msgstr "Fotografia" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "La descrizione è troppo lunga (max 140 caratteri)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Aggiornamenti da %1$s su %2$s!" @@ -7248,8 +5971,7 @@ msgstr "Non autorizzato." #: actions/finishremotesubscribe.php:109 #, fuzzy msgid "Could not convert request token to access token." -msgstr "" -"Impossibile convertire le credenziali di richiesta in credenziali di accesso." +msgstr "Impossibile convertire le credenziali di richiesta in credenziali di accesso." #: actions/finishremotesubscribe.php:114 #, fuzzy @@ -7267,7 +5989,7 @@ msgid "Cannot read file." msgstr "Perso il nostro file." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Aggiornamenti da %1$s su %2$s!" @@ -7277,40 +5999,17 @@ msgid "IM is not available." msgstr "Questa pagina non è disponibile in un " #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Accedi con nome utente e password. Non hai ancora un nome utente? [Registra]" -"(%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%" -"%). " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Accedi con nome utente e password. Non hai ancora un nome utente? [Registra](%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" @@ -7320,20 +6019,13 @@ msgid "Describe yourself and your interests" msgstr "Descrivi te e i tuoi " #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "La biografia è troppo lunga (max 140 caratteri)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Non è un URL di profilo valido (nessun documento YADIS)." #: actions/remotesubscribe.php:176 @@ -7346,51 +6038,33 @@ msgstr "Quello è un profilo locale! Accedi per abbonarti." msgid "Couldn’t get a request token." msgstr "Impossibile ottenere un token di richiesta." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Feed dei messaggi per il gruppo %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Messaggio a %1$s su %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed dei preferiti di %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed dei preferiti di %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Feed dei preferiti di %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Gruppi di %s" @@ -7405,79 +6079,32 @@ msgid "SMS is not available." msgstr "Questa pagina non è disponibile in un " #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed dei messaggi per %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " -"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " -"richiamo. Controlla le istruzioni del sito per i dettagli su come " -"autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di richiamo. Controlla le istruzioni del sito per i dettagli su come autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " -"richiamo. Controlla con le istruzioni del sito per i dettagli su come " -"rifiutare completamente l'abbonamento." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di richiamo. Controlla con le istruzioni del sito per i dettagli su come rifiutare completamente l'abbonamento." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Impossibile leggere l'URL \"%s\" dell'immagine" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo di immagine errata per \"%s\"" @@ -7492,35 +6119,27 @@ msgid "Site content license" msgstr "Licenza del software statusnet" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Impossibile aggiornare l'utente con l'indirizzo email confermato." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Richiamo inviato" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Rispondi a questo messaggio" @@ -7529,54 +6148,11 @@ msgstr "Rispondi a questo messaggio" msgid "Error saving notice." msgstr "Problema nel salvare il messaggio." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Nessun codice di conferma." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7593,70 +6169,25 @@ msgid "Describe the group or topic" msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Feed dei messaggi per %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s ha aggiunto il tuo messaggio tra i suoi preferiti" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " via " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7666,3 +6197,4 @@ msgstr "Impossibile eliminare un preferito." #, fuzzy msgid "Duplicate notice" msgstr "Elimina messaggio" + diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index a03216777c..76f6caaae3 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -1,5 +1,6 @@ # Translation of StatusNet to Japanese # +# Author@translatewiki.net: Fryed-peach # -- # #-#-#-#-# statusnet.pot (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. @@ -15,14 +16,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:58:35+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:35+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: out-statusnet\n" @@ -31,113 +31,62 @@ msgstr "" #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" -msgstr "\"%s\" のストリームを検索" +msgstr "ストリームから「%s」を検索" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" +msgid " except this private data: password, email address, IM address, phone number." +msgstr "次の個人情報を除く: パスワード、メールアドレス、IMアドレス、電話番号" #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 +#, fuzzy msgid " from " -msgstr "から" - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" +msgstr "から " #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 #: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" -msgstr "" +msgstr "%1$s があなたを %2$s へ招待しました" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s があなたを %2$s へ招待しました (%3$s)。\n\n%2$s はあなたの知り合いやあなたが興味をもっている人物の最新の情報を得ることができる、マイクロブログサービスです。\n\nまた、あなたの最新の情報やあなたの考えていること、生活を、あなたのことを知っている人と共有することができます。あなたと同じ興味をもつ人々と出会う目的でも優れたサービスです。\n\n%1$s の言葉:\n\n%4$s\n\n%2$s における %1$s のプロフィールページを以下で見ることができます:\n\n%5$s\n\nこのサービスを試してみたい場合は以下のリンクをクリックしてこの招待に応じてください。\n\n%6$s\n\nそうでない場合はこのメッセージを無視することができます。お時間をいただきありがとうございました。\n\n%2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "%1$s は %2$s であなたの通知を聞いています。" +msgstr "%1$s は %2$s であなたの通知を購読しています。" #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s は %2$s であなたの通知を聞いています。\n" -"\n" -"\t%3$s\n" -"\n" -"確かにあなたの,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s は %2$s であなたの通知を購読しています。\n\n%3$s\n\n%4$s\n" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 #: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" -msgstr "%1$ のステータス %2$s" +msgstr "%2$s における %1$ の状態" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 #: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" -msgstr "%s パブリックストリーム" +msgstr "%s の公開ストリーム" #: ../actions/all.php:47 ../actions/allrss.php:60 #: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 @@ -152,7 +101,7 @@ msgstr "%s パブリックストリーム" #: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" -msgstr "%s & ともだち" +msgstr "%s と友人" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 #: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 @@ -160,12 +109,12 @@ msgstr "%s & ともだち" #: actions/publicrss.php:103 #, php-format msgid "%s public timeline" -msgstr "%s パブリックタイムライン" +msgstr "%s の公開タイムライン" #: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" -msgstr "%s ステータス" +msgstr "%s の状態" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 #: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 @@ -174,42 +123,28 @@ msgstr "%s ステータス" #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" -msgstr "%s タイムライン" - -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "" +msgstr "%s のタイムライン" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(メールアドレスを確認する方法を読んで、すぐにメールによるメッセージを受け取るようにしてください)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ" -"イクロブロギングサービスです。 " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマイクロブログサービスです。 " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " -msgstr "**%%site.name%%** はマイクロブロギングサービスです。" +msgstr "**%%site.name%%** はマイクロブログサービスです。 " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "コントリビューターはニックネームかフルネームで記載されています。" +msgstr "投稿者はニックネームかフルネームで記載されます。" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -217,13 +152,12 @@ msgstr "コントリビューターはニックネームかフルネームで記 #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1~64字以内で、小文字アルファベット、数字、スペース。(句読点を除く)" +msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1~64字以内で、小文字アルファベット、数字、スペース(句読点を除く)が必須です" +msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く。必須です。" #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -234,35 +168,27 @@ msgstr "6文字以上" #: actions/recoverpassword.php:220 actions/recoverpassword.php:233 #: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" -msgstr "6文字以上。お忘れなく!" +msgstr "6文字以上。忘れないでください!" #: ../actions/register.php:154 actions/register.php:168 #: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." -msgstr "6文字以上が必須です。" +msgstr "6文字以上。必須です。" #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"確認用コードを入力されたIMアドレスに送信しました。メッセージを確認するには、%" -"sを承認して下さい。" +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "確認用コードを入力された IM アドレスに送信しました。あなたにメッセージを送れるようにするには%sを承認してください。" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "確認用コードを入力された電子メールアドレスに送信しました。受信ボックス(とスパムボックス)にコードとそれをどう使うのかという指示が届いていないか確認してください。" #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "確認用コードを入力された電話番号に送信しました。受信ボックス(とスパムボックス)にコードとそれをどう使うのかという指示が届いていないか確認してください。" #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -311,7 +237,7 @@ msgstr "" #: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 #: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" -msgstr "" +msgstr "API メソッドが見つかりません!" #: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 #: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 @@ -339,12 +265,12 @@ msgstr "" #: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 #: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." -msgstr "" +msgstr "API メソッドが工事中です。" #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 msgid "About" -msgstr "About" +msgstr "解説" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 #: actions/userauthorization.php:143 actions/userauthorization.php:178 @@ -368,12 +294,12 @@ msgstr "追加" #: ../actions/openidsettings.php:43 actions/openidsettings.php:44 #: actions/openidsettings.php:93 msgid "Add OpenID" -msgstr "OpenIDを追加" +msgstr "OpenID を追加" #: ../lib/settingsaction.php:97 lib/settingsaction.php:91 #: lib/accountsettingsaction.php:117 msgid "Add or remove OpenIDs" -msgstr "OpenIDを追加または削除" +msgstr "OpenID を追加または削除" #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 @@ -387,24 +313,24 @@ msgstr "住所" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 #: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" -msgstr "" +msgstr "招待する友人のアドレス (一行に一つ)" #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" -msgstr "全てのサブスクリプション" +msgstr "すべての購読" #: ../actions/publicrss.php:64 actions/publicrss.php:50 #: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" -msgstr "%sの全てのサブスクリプション" +msgstr "%s のすべての更新" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 #: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" -msgstr "\"%s\" にヒットするすべてのアップデート" +msgstr "検索語「%s」に一致するすべての更新" #: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 #: ../actions/openidlogin.php:29 ../actions/register.php:30 @@ -424,7 +350,7 @@ msgstr "既に購読しています。" #: actions/deletenotice.php:113 actions/deletenotice.php:114 #: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" -msgstr "" +msgstr "本当にこの通知を削除しますか?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 @@ -437,14 +363,13 @@ msgstr "購読を許可" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "将来的には非共用PCでの自動ログイン" +msgstr "以降は自動的にログインする。共用コンピューターでは避けましょう!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "自分を購読している者を自動的に購読する (非人間に最適)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -463,29 +388,22 @@ msgstr "アバターが更新されました。" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"このアドレスは確認待ちです。Jabber/Gtalk でメッセージを確認して下さい。(%s " -"を追加していますか?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "このアドレスは確認待ちです。Jabber か Gtalk のアカウントで追加の指示が書かれたメッセージを確認してください。(%s を友人リストに追加しましたか?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "このアドレスは確認待ちです。受信ボックス(とスパムボックス)に追加の指示が書かれたメッセージが届いていないか確認してください。" #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." -msgstr "" +msgstr "この電話番号は確認待ちです。" #: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy msgid "Before »" -msgstr "前 >>" +msgstr "前 »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 @@ -493,7 +411,7 @@ msgstr "前 >>" #: actions/register.php:448 actions/profilesettings.php:127 #: actions/register.php:459 msgid "Bio" -msgstr "バイオグラフィ" +msgstr "自己紹介" #: ../actions/profilesettings.php:101 ../actions/register.php:82 #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 @@ -502,7 +420,7 @@ msgstr "バイオグラフィ" #: actions/updateprofile.php:107 actions/updateprofile.php:109 #: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." -msgstr "バイオグラフィが長すぎます。(最長140字)" +msgstr "自己紹介が長すぎます (最長140文字)。" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 #: actions/deletenotice.php:71 @@ -610,26 +528,6 @@ msgstr "確認コード" msgid "Confirmation code not found." msgstr "確認コードが見つかりません。" -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -653,21 +551,6 @@ msgstr "コンタクト" msgid "Could not create OpenID form: %s" msgstr "OpenIDを作成できません : %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "" - #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format @@ -684,19 +567,6 @@ msgstr "アバターを保存できません" msgid "Could not save new profile info" msgstr "新しいプロファイルを保存できません" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "" - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" - #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." @@ -717,11 +587,6 @@ msgstr "メール承認を削除できません" msgid "Couldn't delete subscription." msgstr "サブスクリプションを削除できません" -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" - #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." @@ -750,22 +615,6 @@ msgstr "サブスクリプションを追加できません" msgid "Couldn't save profile." msgstr "プロファイルを保存できません" -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "" - #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -813,38 +662,16 @@ msgstr "既にユーザの存在するOpenIDでアカウントを作成してい msgid "Current confirmed Jabber/GTalk address." msgstr "確認された最新の Jabber/GTakk アドレス" -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "" - #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "最新" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" - #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "返信を追加する際にデータベースエラー : %s" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" - #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -861,11 +688,6 @@ msgstr "140字以内で自己紹介" msgid "Email" msgstr "メール" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "" - #: ../actions/emailsettings.php:32 actions/emailsettings.php:32 #: actions/emailsettings.php:60 msgid "Email Settings" @@ -880,11 +702,6 @@ msgstr "メールアドレスが既に存在します。" msgid "Email address confirmation" msgstr "メールアドレス確認" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" - #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 #: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" @@ -896,11 +713,6 @@ msgstr "メールアドレス" msgid "Enter a nickname or email address." msgstr "ニックネームかメールアドレスを入力してください。" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" @@ -1018,29 +830,9 @@ msgstr "%s のともだちのフィード" msgid "Feed for replies to %s" msgstr "%s の返信のフィード" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" -"て下さい。" +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力して下さい。" #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1102,17 +894,6 @@ msgstr "ホームページ" msgid "Homepage is not a valid URL." msgstr "ホームページのURLが不適切です。" -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" - #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -1125,39 +906,13 @@ msgstr "IM設定" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関" -"連付けて下さい。" +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関連付けて下さい。" #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." msgstr "OpenIDを追加する場合、下のボックスにある\"Add\"をつリックして下さい。" -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" - #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 #: actions/passwordsettings.php:164 @@ -1172,9 +927,7 @@ msgstr "ユーザ名またはパスワードが間違っています。" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." msgstr "登録されたメールアドレスにパスワードの回復方法をおおくりしました。" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 @@ -1247,38 +1000,11 @@ msgstr "不正なサイズ。" msgid "Invalid username or password." msgstr "不正なユーザ名またはパスワード。" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"マイクロブロギングソフト [StatusNet](http://status.net/) , バージョン %s で動" -"いています。 ライセンス [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)。" +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "マイクロブロギングソフト [StatusNet](http://status.net/) , バージョン %s で動いています。 ライセンス [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)。" #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1288,24 +1014,8 @@ msgstr "Jabber ID jは既に別のユーザが使用しています。" #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"\"UserName@example.org\" といった Jabber または GTalk のアドレス。まず、%s を" -"IMクライアントやGTalkに追加して下さい。" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "\"UserName@example.org\" といった Jabber または GTalk のアドレス。まず、%s をIMクライアントやGTalkに追加して下さい。" #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -1358,43 +1068,17 @@ msgstr "ログイン" msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "[OpenID](%%doc.openid%%) でログイン。" -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" - #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "ログアウト" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "パスワードを紛失、忘れた?" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -1406,14 +1090,6 @@ msgstr "からのメンバー" msgid "Microblog by %s" msgstr "マイクロブログ by %s" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" - #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 @@ -1422,25 +1098,6 @@ msgstr "" msgid "My text and files are available under " msgstr "の下でテキスト及びファイルを利用可能" -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -1508,9 +1165,7 @@ msgstr "そのニックネームは既に使用されています。他のもの #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用" -"できません。" +msgstr "ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用できません。" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1527,14 +1182,6 @@ msgstr "フォローしたいユーザのニックネーム" msgid "Nickname or email" msgstr "ニックネームまたはメールアドレス" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" - #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." @@ -1546,16 +1193,6 @@ msgstr "Jabbar ID はありません。" msgid "No authorization request!" msgstr "認証のリクエストがありません。" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -1570,23 +1207,10 @@ msgstr "確認コードがありません。" msgid "No content!" msgstr "コンテンツがありません!" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "id がありません。" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -1608,11 +1232,6 @@ msgstr "ニックネームがありません。" msgid "No pending confirmation to cancel." msgstr "認証待ちのものはありません。" -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - #: ../actions/finishremotesubscribe.php:72 #: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." @@ -1641,21 +1260,6 @@ msgstr "結果なし" msgid "No size." msgstr "サイズがありません。" -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1721,12 +1325,6 @@ msgstr "そのようなサブスクリプションはありません。" msgid "No such user." msgstr "そのようなユーザはいません。" -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "表示できるユーザはいません。" @@ -1736,21 +1334,6 @@ msgstr "表示できるユーザはいません。" msgid "Not a recovery code." msgstr "回復コードではありません。" -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 -msgid "Not a supported data format." -msgstr "" - #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1761,12 +1344,6 @@ msgstr "有効な Jabber ID ではありません。" msgid "Not a valid OpenID." msgstr "有効な OpenID ではありません。" -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." @@ -1816,12 +1393,6 @@ msgstr "認証されていません。" msgid "Not expecting this response!" msgstr "想定外のレスポンスです!" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -msgid "Not found" -msgstr "" - #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 #: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 @@ -1846,11 +1417,6 @@ msgstr "ログインしていません。" msgid "Not subscribed!." msgstr "購読していません!" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 @@ -1871,14 +1437,6 @@ msgstr "通知にはプロファイルはありません。" msgid "Notices" msgstr "通知" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1946,11 +1504,6 @@ msgstr "OpenID は消去されました。" msgid "OpenID settings" msgstr "OpenID 設定" -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -2005,16 +1558,6 @@ msgstr "パスワードが保存されました。" msgid "Passwords don't match." msgstr "パスワードが一致しません。" -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" @@ -2025,24 +1568,9 @@ msgstr "ピープルサーチ" msgid "Personal" msgstr "パーソナル" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " -"キャンセルをクリックして下さい。" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" キャンセルをクリックして下さい。" #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2071,12 +1599,6 @@ msgstr "設定" msgid "Preferences saved." msgstr "設定が保存されました。" -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" @@ -2124,22 +1646,6 @@ msgstr "パブリックフィード" msgid "Public timeline" msgstr "パブリックタイムライン" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -2168,18 +1674,6 @@ msgstr "不明なユーザのための回復コード。" msgid "Register" msgstr "登録" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 -msgid "Registration successful" -msgstr "" - #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -2225,12 +1719,8 @@ msgid "Remove OpenID" msgstr "OpenID を削除" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"最後の OpenID を削除すると、ログインできなくなります!削除するまえに、別の " -"OpenID を追加して下さい。" +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "最後の OpenID を削除すると、ログインできなくなります!削除するまえに、別の OpenID を追加して下さい。" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2259,38 +1749,12 @@ msgstr "リセット" msgid "Reset password" msgstr "パスワードをリセット" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "上と同じパスワード" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -msgid "Same as password above. Required." -msgstr "" - #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -2326,23 +1790,13 @@ msgstr "ストリームフィードを検索" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." msgstr "%%site.name%% の通知を内容から検索。検索語はスペース区切る。3字以上" #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -2353,35 +1807,11 @@ msgstr "" msgid "Send" msgstr "送る" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk で私に通知を送って下さい。" -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -2393,10 +1823,6 @@ msgstr "設定" msgid "Settings saved." msgstr "設定が保存されました。" -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -2408,16 +1834,6 @@ msgstr "既に他の人がこの OpenID を使用しています。" msgid "Something weird happened." msgstr "不測の事態が発生しました。" -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -2482,22 +1898,6 @@ msgstr "サブスクリプション" msgid "System error uploading file." msgstr "ファイルのアップロードでシステムエラー" -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -msgid "Tags" -msgstr "" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "" - #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 #: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" @@ -2518,11 +1918,6 @@ msgstr "そのアドレスは既に承認されています。" msgid "That confirmation code is not for you!" msgstr "その確認コードはあなたのものではありません!" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" - #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." @@ -2533,33 +1928,11 @@ msgstr "ファイルサイズが大きすぎます。" msgid "That is already your Jabber ID." msgstr "その Jabber ID は既にあなたのものです。" -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" - #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "その Jabber ID はあなたのものではありません。" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" - #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -2568,16 +1941,6 @@ msgstr "" msgid "That is the wrong IM address." msgstr "その IM アドレスは不正です。" -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -2588,12 +1951,6 @@ msgstr "" msgid "That's too long. Max notice size is 140 chars." msgstr "長すぎます。通知は最大 140 字までです。" -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" - #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format @@ -2610,22 +1967,6 @@ msgstr "アドレス \"%s\" はあなたのアカウントとして承認され msgid "The address was removed." msgstr "アドレスは削除されました。" -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" - #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 #, php-format @@ -2648,97 +1989,29 @@ msgstr "%s が通知を聞いている人" msgid "These are the people whose notices you listen to." msgstr "あなたが通知を聞いている人" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" - #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "確認コードが古すぎます。もう一度やり直してください。" #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"このフォームは自動的にサブミットされます。されない場合は、サブミットボタンを" -"クリックして下さい。OpenIDプロバイダへ転送されます。" +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "このフォームは自動的にサブミットされます。されない場合は、サブミットボタンをクリックして下さい。OpenIDプロバイダへ転送されます。" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"これが %s への初回のログインです。OpenIDとの関連付けが必要です。アカウントを" -"新規作成するか、既存のアカウントとの関連付けのどちらかを下さい。" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -msgid "This method requires a POST." -msgstr "" +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "これが %s への初回のログインです。OpenIDとの関連付けが必要です。アカウントを新規作成するか、既存のアカウントとの関連付けのどちらかを下さい。" #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "このページはあなたが承認したメディアタイプでは利用できません。" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"サブスクライブするには、[ログイン](%%action.login%%) するか, [登録](%%action." -"register%%) を行って下さい。既に [compatible microblogging site](%%doc." -"openmublog%%) にアカウントを持っおもちの場合は、下にプロファイルURLを入力して" -"下さい." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 -msgid "Two user ids or screen_names must be supplied." -msgstr "" +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "サブスクライブするには、[ログイン](%%action.login%%) するか, [登録](%%action.register%%) を行って下さい。既に [compatible microblogging site](%%doc.openmublog%%) にアカウントを持っおもちの場合は、下にプロファイルURLを入力して下さい." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2775,23 +2048,14 @@ msgstr "予期せぬフォーム送信です。" msgid "Unexpected password reset." msgstr "予期せぬパスワードのリセットです。" -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "予期せぬ OMB プロトコルのバージョンです。" #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"特に断りが無い場合は、このサイトのコンテンツの著作権は著作者に帰属し、下記条" -"件の下で使用可能です。" +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "特に断りが無い場合は、このサイトのコンテンツの著作権は著作者に帰属し、下記条件の下で使用可能です。" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2817,33 +2081,6 @@ msgstr "サポート外の OMB バージョン" msgid "Unsupported image file format." msgstr "サポート外の画像形式です。" -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -2852,26 +2089,8 @@ msgid "Upload" msgstr "アップロード" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"\"アバター\" (ユーザの画像) をアップロード。 アップロードした後では画像の編集" -"はできません。サイズが大きすぎないか(小さすぎないか)確認して下さい。サイト" -"のライセンスが適用されます。自身で所有していて、共有したい画像を使用して下さ" -"い。" - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "\"アバター\" (ユーザの画像) をアップロード。 アップロードした後では画像の編集はできません。サイズが大きすぎないか(小さすぎないか)確認して下さい。サイトのライセンスが適用されます。自身で所有していて、共有したい画像を使用して下さい。" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2913,16 +2132,6 @@ msgstr "プロファイルがありません。" msgid "User nickname" msgstr "ユーザのニックネーム" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" - #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -2949,41 +2158,16 @@ msgstr "不正な画像形式。'%s'" msgid "Wrong size image at '%s'" msgstr "不正な画像サイズ。'%s'" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "" - #: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "既にこの OpenID を使用しています。" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "既にログイン済みです。" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" - #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "パスワードはここで変更できます。良いものを選んで下さい!" @@ -2992,35 +2176,20 @@ msgstr "パスワードはここで変更できます。良いものを選んで msgid "You can create a new account to start posting notices." msgstr "アカウントを作成して通知の投稿が可能です。" -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" - #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." msgstr "\"削除\"をクリックして OpenID を削除できます。" #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Jabber/GTalk [instant messages](%%doc.im%%) 経由で通知の送信、受信が可能で" -"す。下のアドレスを設定して下さい。" +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Jabber/GTalk [instant messages](%%doc.im%%) 経由で通知の送信、受信が可能です。下のアドレスを設定して下さい。" #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"あなたのことについて知ってもらうために、ここでプロファイル情報を更新できま" -"す。" +msgid "You can update your personal profile info here so people know more about you." +msgstr "あなたのことについて知ってもらうために、ここでプロファイル情報を更新できます。" #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3042,38 +2211,6 @@ msgstr "ライセンスに同意頂けない場合は登録できません。" msgid "You did not send us that profile" msgstr "そのプロファイルは送信されていません。" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "確認されました。新しいパスワードを入力して下さい。" @@ -3090,12 +2227,8 @@ msgstr "このサーバでのニックネーム、または登録したメール #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログイン" -"することができます。ここで関連付ける OpenID を管理して下さい。" +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログインすることができます。ここで関連付ける OpenID を管理して下さい。" #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3151,11 +2284,6 @@ msgstr "約 1 年前" msgid "about an hour ago" msgstr "約 1 時間前" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "" - #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 @@ -3173,766 +2301,18 @@ msgstr "返信" msgid "same as password above" msgstr "上のパスワードと同じ" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - #: ../lib/util.php:1309 lib/util.php:1443 #, fuzzy msgid "« After" msgstr "<< 前" -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -msgid "Password must be 6 or more characters." -msgstr "" - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" - -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "" - -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" - #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s & ともだち" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" - #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -3941,51 +2321,6 @@ msgstr "" msgid "Avatar settings" msgstr "設定" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -3993,75 +2328,21 @@ msgstr "" msgid "Lost our file." msgstr "そのような通知はありません。" -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" - #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "そのようなユーザはいません。" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "既にログイン済みです。" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format, fuzzy msgid "The address \"%s\" has been " msgstr "アドレスは削除されました。" -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "" - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" - #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -4085,26 +2366,10 @@ msgstr "ニックネームがありません。" msgid "No such group" msgstr "そのような通知はありません。" -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "" -"ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用" -"できません。" +msgstr "ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用できません。" #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -4123,23 +2388,10 @@ msgid "Options saved." msgstr "設定が保存されました。" #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "確認コードにエラーがあります。" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -4148,28 +2400,7 @@ msgstr "メールアドレスが既に存在します。" #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"確認用コードを入力されたIMアドレスに送信しました。メッセージを確認するには、%" -"sを承認して下さい。" - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" +msgstr "確認用コードを入力されたIMアドレスに送信しました。メッセージを確認するには、%sを承認して下さい。" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -4177,13 +2408,6 @@ msgstr "" msgid "No notice content!" msgstr "コンテンツがありません!" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -4200,84 +2424,32 @@ msgstr "<< 前" msgid "Before" msgstr "前 >>" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" - #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "%s のともだちのフィード" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "ユーザを更新できません" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" - #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "設定が保存されました。" -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" - #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "プロファイル" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "設定" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "" - #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -4287,48 +2459,10 @@ msgid "Popular notices" msgstr "そのような通知はありません。" #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" msgstr "そのような通知はありません。" -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -4341,36 +2475,6 @@ msgstr "アバターが更新されました。" msgid "Failed updating logo." msgstr "アバターの更新に失敗しました。" -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -4378,63 +2482,35 @@ msgid "Create a new group" msgstr "アカウントを作成" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "ピープルサーチ" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" - -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Jabber/GTalk で私に通知を送って下さい。" #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "確認コードがありません。" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" - #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "既にログイン済みです。" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "サーバへリダイレクトできません : %s" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" - #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -4448,44 +2524,12 @@ msgstr "そのような通知はありません。" msgid "You are not a member of that group." msgstr "そのプロファイルは送信されていません。" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "" - #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "OpenIDを作成できません : %s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" - #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -4503,35 +2547,12 @@ msgstr "サブスクリプションを作成できません" msgid "That's too long. " msgstr "ファイルサイズが大きすぎます。" -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" - #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "通知" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" - #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -4547,24 +2568,11 @@ msgstr "OpenID を削除" msgid "Other Settings" msgstr "設定" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "検索" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" - #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -4583,39 +2591,19 @@ msgid "Password change" msgstr "パスワードが保存されました。" #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "有効なメールアドレスではありません。" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "プロファイルが不明" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "" - #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" msgstr "不正なホームページ '%s'" @@ -4627,51 +2615,20 @@ msgstr "プロファイルを保存できません" #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "パブリックタイムライン" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" - -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "パブリックフィード" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "ライセンスに同意頂けない場合は登録できません。" -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -4702,57 +2659,18 @@ msgstr "いる場所, 例えば \"City, State (or Region), Country\"" msgid " except this private data: password, " msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" - #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "%s への返信" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "" - -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "そのような通知はありません。" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4765,13 +2683,8 @@ msgstr "" msgid "Note" msgstr "通知" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "%sの通知フィード" @@ -4783,36 +2696,6 @@ msgstr "%sの通知フィード" msgid "Members" msgstr "からのメンバー" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "" - -#: actions/showstream.php:73 actions/showstream.php:78 -#, php-format -msgid "%s, page %d" -msgstr "" - #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -4825,43 +2708,11 @@ msgstr "プロファイル" msgid "User profile" msgstr "プロファイルがありません。" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -msgid "User actions" -msgstr "" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 -msgid "Send a direct message to this user" -msgstr "" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 -msgid "Message" -msgstr "" - #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "購読者" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -4877,10 +2728,6 @@ msgstr "Jabber/GTalk で私に通知を送って下さい。" msgid "A confirmation code was sent to the phone number you added. " msgstr "その確認コードはあなたのものではありません!" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" - #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4902,32 +2749,27 @@ msgid "Subscribed" msgstr "購読" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "購読者" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "%s の通知を聞いている人" #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "%s の通知を聞いている人" #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "全てのサブスクリプション" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "全てのサブスクリプション" @@ -4937,7 +2779,7 @@ msgid "These are the people whose notices " msgstr "%s が通知を聞いている人" #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "%s の通知を聞いている人" @@ -4948,15 +2790,10 @@ msgid "Jabber" msgstr "Jabbar ID はありません。" #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "マイクロブログ by %s" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -4967,46 +2804,18 @@ msgstr "ログインしていません。" msgid "No id argument." msgstr "そのようなドキュメントはありません。" -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "アバターを保存できません" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "そのような通知はありません。" #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" msgstr "マイクロブログ by %s" @@ -5025,14 +2834,6 @@ msgstr "ユーザのアンブロックに失敗しました。" msgid "Not found." msgstr "見つかりません。" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "" - #: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Twitterパスワード" @@ -5042,10 +2843,6 @@ msgstr "Twitterパスワード" msgid "Twitter Friends" msgstr "Twitterフレンド" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - #: actions/twittersettings.php:341 #, php-format msgid "Unable to retrieve account information " @@ -5084,17 +2881,6 @@ msgstr "%s グループ, %d ページ" msgid "Problem saving notice. Unknown user." msgstr "通知を保存する際に問題が発生しました。" -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "アバターのアップロード" @@ -5109,23 +2895,10 @@ msgstr "その他" msgid "Other options" msgstr "その他のオプション" -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "" - #: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "名称未設定ページ" -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - #: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "人々かテキストを検索" @@ -5167,10 +2940,6 @@ msgstr "助けて!" msgid "Site notice" msgstr "新しい通知" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5181,15 +2950,6 @@ msgstr "新しい通知" msgid "Secondary site navigation" msgstr "サブスクリプション" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - #: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "ライセンス。" @@ -5204,15 +2964,6 @@ msgstr "このユーザをブロックする" msgid "Block" msgstr "ブロック" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "" - -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 msgid " a new account." @@ -5236,20 +2987,11 @@ msgstr "データのエクスポート" msgid "Filter tags" msgstr "タグのフィルター" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" - #: lib/galleryaction.php:137 lib/galleryaction.php:138 #: lib/galleryaction.php:140 msgid "Tag" msgstr "タグ" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - #: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" @@ -5271,8 +3013,7 @@ msgstr "グループやトピックを140字以内記述" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "いる場所, 例えば \"City, State (or Region), Country\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5335,15 +3076,8 @@ msgstr "新しいアカウントでサインアップ" msgid "Login or register with OpenID" msgstr "OpenIDでログインまたは登録" -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" - #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s は %2$s であなたの通知を聞いています。" @@ -5357,33 +3091,16 @@ msgstr "場所: %s\n" msgid "Homepage: %s\n" msgstr "ホームページ: %s\n" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - #: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "あなたは %s に突かれています" -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" msgstr "%1$s は %2$s であなたの通知を聞いています。" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "" - #: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "直接通知を送る" @@ -5436,11 +3153,6 @@ msgstr "突く" msgid "Send a nudge to this user" msgstr "このユーザへ突きを送る" -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - #: lib/profilelist.php:182 lib/profilelist.php:180 #: lib/subscriptionlist.php:126 msgid "(none)" @@ -5459,10 +3171,6 @@ msgstr "ユーザグループ" msgid "Recent tags" msgstr "最近のタグ" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "人気" @@ -5480,26 +3188,15 @@ msgid "Untitled section" msgstr "名称未設定のセクション" #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People %s subscribes to" msgstr "リモートサブスクライブ" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "リモートサブスクライブ" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -5511,10 +3208,6 @@ msgstr "プロファイルがありません。" msgid "Subscribe to this user" msgstr "購読が許可" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "" - #: lib/topposterssection.php:74 msgid "Top posters" msgstr "上位投稿者" @@ -5533,17 +3226,17 @@ msgid "Unsubscribe from this user" msgstr "このユーザからのサブスクライブを解除する" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s のともだちのフィード" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s のともだちのフィード" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "%s のともだちのフィード" @@ -5552,106 +3245,30 @@ msgstr "%s のともだちのフィード" msgid "You and friends" msgstr "%s & ともだち" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" - #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "アバターが更新されました。" -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "マイクロブログ by %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "\"%s\" のストリームを検索" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" -"て下さい。" +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力して下さい。" #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5668,32 +3285,9 @@ msgstr "パブリックフィード" msgid "Public Stream Feed (Atom)" msgstr "パブリックフィード" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +msgid " except this private data: password, email address, IM address, and phone number." msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" #: actions/showgroup.php:378 actions/showgroup.php:424 @@ -5702,47 +3296,31 @@ msgstr "個人情報を除く:パスワード、メールアドレス、IMアド msgid "Created" msgstr "作成" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "そのような通知はありません。" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "プロファイル" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "%sの通知フィード" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "%sの通知フィード" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "%sの通知フィード" -#: actions/showstream.php:182 actions/showstream.php:147 -#, php-format -msgid "FOAF for %s" -msgstr "" - #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -5755,46 +3333,11 @@ msgstr "アバター" msgid "Edit profile settings" msgstr "プロファイル設定" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." msgstr "その確認コードはあなたのものではありません!" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -5808,38 +3351,21 @@ msgstr "" msgid "No such user!" msgstr "そのようなユーザはいません。" -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" - #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "アカウント情報を取得できません" #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " -"キャンセルをクリックして下さい。" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" キャンセルをクリックして下さい。" #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy msgid "Search for more groups" msgstr "人々かテキストを検索" -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - #: lib/action.php:406 lib/action.php:425 #, fuzzy msgid "Connect to SMS, Twitter" @@ -5850,220 +3376,21 @@ msgstr "IM、SMS、Twitterに接続" msgid "Badge" msgstr "突く" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関" -"連付けて下さい。" - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関連付けて下さい。" #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s は %2$s であなたの通知を聞いています。\n" -"\n" -"\t%3$s\n" -"\n" -"確かにあなたの,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s は %2$s であなたの通知を聞いています。\n\n %3$s\n\n確かにあなたの,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "検索" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6080,19 +3407,15 @@ msgid "Block this user from this group" msgstr "このユーザをブロックする" #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "プロファイルがありません。" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s & ともだち" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -6108,56 +3431,26 @@ msgstr "確認コード" msgid "Do not delete this notice" msgstr "この通知を削除できません。" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "不正なホームページ '%s'" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "アバターを保存できません" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6168,28 +3461,11 @@ msgstr "新しい通知" msgid "No notice" msgstr "新しい通知" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "有効なニックネームではありません。" -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6206,32 +3482,6 @@ msgstr "そのプロファイルは送信されていません。" msgid "Block user from group" msgstr "そのようなユーザはいません。" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6240,251 +3490,47 @@ msgstr "" msgid "Couldn't update your design." msgstr "ユーザを更新できません" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "設定が保存されました。" -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - #: actions/groupmembers.php:470 actions/groupmembers.php:473 #, fuzzy msgid "Make Admin" msgstr "管理者" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "結果なし" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "プロファイルがありません。" -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "プロファイルを保存できません" -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログイン" -"することができます。ここで関連付ける OpenID を管理して下さい。" - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログインすることができます。ここで関連付ける OpenID を管理して下さい。" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "プロファイル設定" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"パスワードを忘れた場合、登録されたアドレスで新しいものを受け取ることができま" -"す。" +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "パスワードを忘れた場合、登録されたアドレスで新しいものを受け取ることができます。" #: actions/recoverpassword.php:158 #, fuzzy @@ -6506,86 +3552,26 @@ msgstr "確認コードにエラーがあります。" msgid "Subscribe to a remote user" msgstr "購読が許可" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "そのような通知はありません。" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "%sの通知フィード" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "%sの通知フィード" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "%sの通知フィード" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy msgid "Admins" @@ -6596,124 +3582,49 @@ msgstr "管理者" msgid "Not a local notice" msgstr "そのようなユーザはいません。" -#: actions/showstream.php:72 -#, php-format -msgid " tagged %s" -msgstr "" - #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "%sの通知フィード" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s は %2$s であなたの通知を聞いています。" #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%sの通知フィード" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "%sの通知フィード" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "ユーザを更新できません" -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "ユーザを更新できません" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$ のステータス %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "マイクロブログ by %s" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -6729,127 +3640,36 @@ msgstr "全てのサブスクリプション" msgid "Profile design" msgstr "プロファイル設定" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "そのプロファイルは送信されていません。" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "通知を保存する際に問題が発生しました。" -#: classes/User.php:319 classes/User.php:327 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "プロファイルがありません。" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "プロファイル" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "アップロード" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "パスワードの変更" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6865,174 +3685,44 @@ msgstr "検索" msgid "Links" msgstr "ログイン" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "ブロック" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "そのようなユーザはいません。" #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "%s ロゴの追加や編集" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "コンテンツがありません!" -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "検索" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "ホームページのURLが不適切です。" -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "そのような通知はありません。" -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "長すぎます。通知は最大 140 字までです。" @@ -7041,12 +3731,8 @@ msgstr "長すぎます。通知は最大 140 字までです。" msgid "Could not unfollow user: User not found." msgstr "サーバへリダイレクトできません : %s" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "バイオグラフィが長すぎます。(最長140字)" @@ -7056,7 +3742,7 @@ msgid "You are already a member of that group." msgstr "既にログイン済みです。" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "サーバへリダイレクトできません : %s" @@ -7066,63 +3752,41 @@ msgid "You are not a member of this group." msgstr "そのプロファイルは送信されていません。" #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "OpenIDを作成できません : %s" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "%s グループ" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "メンバー数が多いグループ" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "このサイト上のグループを検索する" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "長すぎます。通知は最大 140 字までです。" -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "サポート外の画像形式です。" -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "バイオグラフィが長すぎます。(最長140字)" -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - #: actions/finishremotesubscribe.php:80 #, fuzzy msgid "User being listened to does not exist." @@ -7153,48 +3817,18 @@ msgstr "そのような通知はありません。" msgid "Cannot read file." msgstr "そのような通知はありません。" -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "このページはあなたが承認したメディアタイプでは利用できません。" -#: actions/login.php:259 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "\"%s\" にヒットするすべてのアップデート" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "140字以内で自己紹介" @@ -7204,76 +3838,47 @@ msgid "Describe yourself and your interests" msgstr "140字以内で自己紹介" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "バイオグラフィが長すぎます。(最長140字)" -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "有効なプロファイルURLではありません。(XRDSドキュメントが無い)" -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "リクエストトークンを取得できません" -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "%sの通知フィード" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "%s への返信" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "%s のともだちのフィード" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "%s のともだちのフィード" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "%s のともだちのフィード" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "%sの通知フィード" @@ -7288,71 +3893,22 @@ msgid "SMS is not available." msgstr "このページはあなたが承認したメディアタイプでは利用できません。" #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%sの通知フィード" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " -"キャンセルをクリックして下さい。" - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" キャンセルをクリックして下さい。" #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "アバターURL を読み取れません '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "不正な画像形式。'%s'" @@ -7367,35 +3923,12 @@ msgid "Site content license" msgstr "新しい通知" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "サーバへリダイレクトできません : %s" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "この通知へ返信" @@ -7404,138 +3937,43 @@ msgstr "この通知へ返信" msgid "Error saving notice." msgstr "通知を保存する際に問題が発生しました。" -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "確認コードがありません。" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." msgstr "サイトへログイン" -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "グループやトピックを140字以内記述" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "グループやトピックを140字以内記述" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "%sの通知フィード" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s は %2$s であなたの通知を聞いています。" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "から" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" - #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "新しい通知" + diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 079878eba6..619eade935 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -8,14 +8,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:58:40+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:42+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: out-statusnet\n" @@ -29,8 +28,7 @@ msgstr "스트림에서 \"%s\" 검색" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." +msgid " except this private data: password, email address, IM address, phone number." msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" #: ../actions/showstream.php:400 ../lib/stream.php:109 @@ -53,55 +51,8 @@ msgstr "%1$s님이 귀하를 %2$s에 초대하였습니다." #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s님이 귀하를 %2$s(%3$s)에 초대하였습니다.\n" -"\n" -"%2$s 서비스는 여러분의 친구 또는 같은 관심사를 가진 사람들의 최신 소식을 읽" -"을 수 있는 마이크로블로깅 서비스 입니다.\n" -"\n" -"자기 자신이나, 생각, 생활에 대한 소식도 다른 사람에게 알릴 수 있습니다. 또 같" -"은 관심사를 지닌 새로운 사람들을 만날 수 있는 좋은 장소입니다.\n" -"%1$s님이 말하기를:\n" -"%4$s\n" -"\n" -"%1$s님의 %2$s 프로파일을 보실 수 있습니다:\n" -"\n" -"%5$s\n" -"\n" -"이 서비스를 이용하시려면 밑의 링크를 눌러 초대에 응하십시오.\n" -"\n" -"%6$s\n" -"\n" -"아니면 이 메시지를 무시하시면 됩니다. 여기까지 읽어 주셔서 감사합니다.\n" -"\n" -"%2$s 보냄\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s님이 귀하를 %2$s(%3$s)에 초대하였습니다.\n\n%2$s 서비스는 여러분의 친구 또는 같은 관심사를 가진 사람들의 최신 소식을 읽을 수 있는 마이크로블로깅 서비스 입니다.\n\n자기 자신이나, 생각, 생활에 대한 소식도 다른 사람에게 알릴 수 있습니다. 또 같은 관심사를 지닌 새로운 사람들을 만날 수 있는 좋은 장소입니다.\n%1$s님이 말하기를:\n%4$s\n\n%1$s님의 %2$s 프로파일을 보실 수 있습니다:\n\n%5$s\n\n이 서비스를 이용하시려면 밑의 링크를 눌러 초대에 응하십시오.\n\n%6$s\n\n아니면 이 메시지를 무시하시면 됩니다. 여기까지 읽어 주셔서 감사합니다.\n\n%2$s 보냄\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -111,18 +62,8 @@ msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다. #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n" -"\t%3$s\n" -"\n" -"그럼 이만,%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n %3$s\n\n그럼 이만,%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -198,22 +139,14 @@ msgstr "모두로부터의 업데이트 %s개!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습" -"니다.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습니다.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " -"마이크로블로깅서비스입니다." +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 마이크로블로깅서비스입니다." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -236,9 +169,7 @@ msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백 #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 " -"입력." +msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 입력." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -259,29 +190,17 @@ msgstr "6글자 이상이 필요합니다." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전" -"달할 수 있습니다." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전달할 수 있습니다." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"추가한 이메일로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드" -"와 사용법을 확인하여 주시기 바랍니다." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "추가한 이메일로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드와 사용법을 확인하여 주시기 바랍니다." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" -"드와 사용법을 확인하여 주시기 바랍니다." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드와 사용법을 확인하여 주시기 바랍니다." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -461,8 +380,7 @@ msgstr "앞으로는 자동으로 로그인합니다. 공용 컴퓨터에서는 #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "나에게 구독하는 사람에게 자동 구독 신청" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 @@ -482,21 +400,13 @@ msgstr "아바타가 업데이트 되었습니다." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항" -"목을 추가하셨습니까?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항목을 추가하셨습니까?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 " -"주시기 바랍니다." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 주시기 바랍니다." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -633,36 +543,8 @@ msgstr "인증 코드가 없습니다." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"%s님 축하드립니다! %%%%site.name%%%%에 가입하신 것을 환영합니다!. 이제부터 아" -"래의 일을 할 수 있습니다...\n" -"\n" -"* [나의 프로필](%s) 로 가셔서 첫 메시지를 포스트 해보십시오.\n" -"* [Jabber 또는 GTalk계정](%%%%action.imsettings%%%%)을 추가하셔서 메신저로 통" -"보를 받아 보십시오.\n" -"* [친구 찾기](%%%%action.peoplesearch%%%%) 알거나 같은 관심사를 가지고 있는 " -"분들을 찾아 보십시오. \n" -"* [프로필 셋팅](%%%%action.profilesettings%%%%)을 업데이트 하셔서 다른분들에" -"게 자신을 알려보십시오. \n" -"* [온라인 도움말](%%%%doc.help%%%%)을 읽으면서 더 많은 기능을 확인해 보십시" -"오. \n" -"\n" -"다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "%s님 축하드립니다! %%%%site.name%%%%에 가입하신 것을 환영합니다!. 이제부터 아래의 일을 할 수 있습니다...\n\n* [나의 프로필](%s) 로 가셔서 첫 메시지를 포스트 해보십시오.\n* [Jabber 또는 GTalk계정](%%%%action.imsettings%%%%)을 추가하셔서 메신저로 통보를 받아 보십시오.\n* [친구 찾기](%%%%action.peoplesearch%%%%) 알거나 같은 관심사를 가지고 있는 분들을 찾아 보십시오. \n* [프로필 셋팅](%%%%action.profilesettings%%%%)을 업데이트 하셔서 다른분들에게 자신을 알려보십시오. \n* [온라인 도움말](%%%%doc.help%%%%)을 읽으면서 더 많은 기능을 확인해 보십시오. \n\n다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -1069,11 +951,8 @@ msgid "Find people on this site" msgstr "이 사이트에 있는 사람 찾기" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1158,26 +1037,16 @@ msgstr "메신저 설정" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"만일 계정을 이미 가지고 계신다면, 계정과 비밀 번호로 OpenID로 접속하기 위하" -"여 입력해 주세요." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "만일 계정을 이미 가지고 계신다면, 계정과 비밀 번호로 OpenID로 접속하기 위하여 입력해 주세요." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"만일 새 OpenID를 추가하시려면, 밑의 박스에 입력하신 후 \"추가\"를 누르십시오." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "만일 새 OpenID를 추가하시려면, 밑의 박스에 입력하신 후 \"추가\"를 누르십시오." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1207,9 +1076,7 @@ msgstr "틀린 계정 또는 비밀 번호" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." msgstr "가입하신 이메일로 비밀 번호 재발급에 관한 안내를 보냈습니다." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 @@ -1306,14 +1173,8 @@ msgstr "새 사용자를 초대" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"이 사이트는 [StatusNet](http://status.net/) 마이크로블로깅 소프트웨어 %s 버전" -"을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." -"fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "이 사이트는 [StatusNet](http://status.net/) 마이크로블로깅 소프트웨어 %s 버전을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1323,12 +1184,8 @@ msgstr "Jabber ID가 이미 다른 사용자에 의하여 사용되고 있습니 #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 " -"GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1395,14 +1252,8 @@ msgstr "[OpenID](%%doc.openid%%)로 로그인하세요." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" -"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" -"용해 보세요." +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사용해 보세요." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1447,9 +1298,7 @@ msgstr "%s의 마이크로블로그" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." msgstr "귀하의 휴대폰의 통신회사는 무엇입니까?" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 @@ -1500,8 +1349,7 @@ msgstr "새로운 비밀 번호" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "" -"새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." +msgstr "새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1547,9 +1395,7 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십 #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니" -"다." +msgstr "별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니다." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -2075,13 +1921,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "지역번호와 함께 띄어쓰기 없이 번호를 적어 주세요." #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" -"\"를 클릭해 주세요." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소\"를 클릭해 주세요." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2264,12 +2105,8 @@ msgid "Remove OpenID" msgstr "OpenID 삭제" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"마지막 OpenID를 삭제하면, 로그인 할 수 없게 됩니다! 삭제하기 전에, 다른 " -"OpenID를 추가해 주십시오." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "마지막 OpenID를 삭제하면, 로그인 할 수 없게 됩니다! 삭제하기 전에, 다른 OpenID를 추가해 주십시오." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2365,21 +2202,13 @@ msgstr "스트림 피드를 검색" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%% 의 통지를 내용으로부터 검색. 검색어는 스페이스로 구분한다; 적어" -"도 3글자 이상 필요." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "%%site.name%% 의 통지를 내용으로부터 검색. 검색어는 스페이스로 구분한다; 적어도 3글자 이상 필요." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " -"적어도 3글자 이상 필요." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; 적어도 3글자 이상 필요." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2414,18 +2243,13 @@ msgstr "Jabber/GTalk 로 통지를 보내주세요." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"통지를 SMS로 보내주세요; 물론 통신사로부터 바가지 요금을 문다는 것은 알고 있" -"습니다." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "통지를 SMS로 보내주세요; 물론 통신사로부터 바가지 요금을 문다는 것은 알고 있습니다." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." +msgstr "내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2657,23 +2481,13 @@ msgstr "주소가 삭제되었습니다." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" -"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" -"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 해지 방법에 대하여 읽어보십시오." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2699,8 +2513,7 @@ msgstr "귀하의 통지를 받고 있는 사람" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +msgid "These people are already users and you were automatically subscribed to them:" msgstr "자동 구독 신청이 된 사용자:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 @@ -2708,23 +2521,14 @@ msgid "This confirmation code is too old. Please start again." msgstr "이 인증 코드는 오래됐습니다. 다시 발급 받아 주십시오." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"이 양식은 자동으로 등록됩니다. 자동으로 되지 않는 경우는, 등록을 클릭해 주세" -"요. OpenID 프로바이더에 전송 됩니다." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "이 양식은 자동으로 등록됩니다. 자동으로 되지 않는 경우는, 등록을 클릭해 주세요. OpenID 프로바이더에 전송 됩니다." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"%s 계정으로 최초 로그인입니다. OpenID와의 연결이 필요합니다. 계정을 새로 생성" -"하거나 기존의 계정으로 연결 하실 수 있습니다." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "%s 계정으로 최초 로그인입니다. OpenID와의 연결이 필요합니다. 계정을 새로 생성하거나 기존의 계정으로 연결 하실 수 있습니다." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2773,14 +2577,8 @@ msgstr "타임존이 설정 되지 않았습니다." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"구독하려면, [로그인](%%action.login%%)하거나, 새 계정을 [등록](%%action." -"register%%)하십시오. 이미 계정이 [호환되는 마이크로블로깅 사이트]((%%doc." -"openmublog%%)에 계정이 있으면, 아래에 프로파일 URL을 입력하십시오." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "구독하려면, [로그인](%%action.login%%)하거나, 새 계정을 [등록](%%action.register%%)하십시오. 이미 계정이 [호환되는 마이크로블로깅 사이트]((%%doc.openmublog%%)에 계정이 있으면, 아래에 프로파일 URL을 입력하십시오." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2834,12 +2632,8 @@ msgid "Unknown version of OMB protocol." msgstr "OMB 프로토콜의 알려지지 않은 버전" #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"따로 지정하지 않는다면, 이 사이트의 내용의 저작권은 작성한 사람에게 있으며 다" -"음 라이선스로 이용할 수 있습니다: " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "따로 지정하지 않는다면, 이 사이트의 내용의 저작권은 작성한 사람에게 있으며 다음 라이선스로 이용할 수 있습니다: " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2900,15 +2694,8 @@ msgid "Upload" msgstr "올리기" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"여기에 새 아바타이미지를 올려보세요. 업로드후에는 사진을 편집할 수 없습니다. " -"사이즈 영역을 늘리거나 줄일 수 있습니다. 그것은 사이트의 라이선스하에 있게됩" -"니다. 당신의 소유이면서 공유하고 싶은 사진을 이용해보세요." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "여기에 새 아바타이미지를 올려보세요. 업로드후에는 사진을 편집할 수 없습니다. 사이즈 영역을 늘리거나 줄일 수 있습니다. 그것은 사이트의 라이선스하에 있게됩니다. 당신의 소유이면서 공유하고 싶은 사진을 이용해보세요." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2916,8 +2703,7 @@ msgstr "새 프로필 사진 올리기" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +msgid "Use this form to invite your friends and colleagues to use this service." msgstr "다음 양식을 이용해 친구와 동료를 이 서비스에 초대하십시오." #: ../actions/register.php:159 ../actions/register.php:162 @@ -3011,11 +2797,8 @@ msgid "You already have this OpenID!" msgstr "당신은 이미 오픈ID를 가지고 있습니다." #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3044,34 +2827,22 @@ msgstr "계정을 새로 만들면 새로운 게시글을 작성할 수 있습 #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다." +msgstr "당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"당신은 \"Remove\"로 표기된 버튼클릭을 통해 계정에서 오픈ID를 제거할 수 있습니" -"다." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "당신은 \"Remove\"로 표기된 버튼클릭을 통해 계정에서 오픈ID를 제거할 수 있습니다." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아" -"래 당신의 주소와 환경설정을 조정하세요." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아래 당신의 주소와 환경설정을 조정하세요." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"사람들이 당신에 대해 좀 더 잘 알 수 있도록 여기 당신의 개인 프로필을 업데이" -"트 할 수 있습니다. " +msgid "You can update your personal profile info here so people know more about you." +msgstr "사람들이 당신에 대해 좀 더 잘 알 수 있도록 여기 당신의 개인 프로필을 업데이트 할 수 있습니다. " #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3095,18 +2866,8 @@ msgstr "당신은 프로필을 우리에게 전송하지 않았다." #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시" -"오.이메일 사용법은 %3$s 페이지를 보십시오.안녕히,%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시오.이메일 사용법은 %3$s 페이지를 보십시오.안녕히,%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3122,12 +2883,8 @@ msgstr "로그인을 해야 다른 사용자를 %s에 초대할 수 있습니다 #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"당신의 초대를 받은 사람들이 수락하고, 사이트에 등록할때 공지를 받을 수 있습니" -"다. 커뮤니티를 키워주셔서 대단히 감사합니다. ^^" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "당신의 초대를 받은 사람들이 수락하고, 사이트에 등록할때 공지를 받을 수 있습니다. 커뮤니티를 키워주셔서 대단히 감사합니다. ^^" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3145,12 +2902,8 @@ msgstr "이 서버에서 당신의 닉네임 혹은 당신의 등록된 이메 #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 " -"있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3346,12 +3099,8 @@ msgstr "당신의 받은 쪽지함입니다. 당신이 받은 비밀 메시지 #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s 사용자가 %2$s에 (%3$s) 초대했습니다.\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s 사용자가 %2$s에 (%3$s) 초대했습니다.\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3393,10 +3142,8 @@ msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;" +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;" #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3416,8 +3163,7 @@ msgstr "프로필매칭 없이 바로 글을 씁니다." #: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" -"[오픈ID](%%doc.openid%%) 는 당신이 많은 사이트에 로그인할 수 있게 합니다." +msgstr "[오픈ID](%%doc.openid%%) 는 당신이 많은 사이트에 로그인할 수 있게 합니다." #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " @@ -3447,8 +3193,7 @@ msgstr "당신의 보낸 쪽지함입니다. 이곳엔 당신이 보냈던 비 #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " msgstr "이름, 장소, 흥미로 %%site.name%%에서 사람들을 찾아보세요." #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3500,12 +3245,8 @@ msgstr "비밀번호는 6자리 이상이어야 합니다." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"축하합니다 %s님!! %%%%site.name%%%%에 오신걸 환영합니다. 다음과 같은 일을 하" -"실 수 있습니다..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "축하합니다 %s님!! %%%%site.name%%%%에 오신걸 환영합니다. 다음과 같은 일을 하실 수 있습니다..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3628,19 +3369,12 @@ msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s 사용자가 %2$s의 귀하의 글을 좋아하는 글로 추가했습니다.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s 사용자가 %2$s의 귀하의 글을 좋아하는 글로 추가했습니다.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니" -"다." +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니다." #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3687,12 +3421,8 @@ msgstr "여기에서 내 트위터 친구들을 구독합니다." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"사용자 이름은 단지 숫자이거나, 대소문자, 그리고 언더바(_)로 구성되어야 하고, " -"최대 15자 이내이어야 합니다." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "사용자 이름은 단지 숫자이거나, 대소문자, 그리고 언더바(_)로 구성되어야 하고, 최대 15자 이내이어야 합니다." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3907,12 +3637,8 @@ msgstr "시스템에 프로필 매칭이 없는 사용자" #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"당신은 %1$s에 새 포스팅 주소를 가진다. \n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "당신은 %1$s에 새 포스팅 주소를 가진다. \n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3921,12 +3647,8 @@ msgstr "%s로부터 새로운 비밀 메시지가 도착하였습니다." #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s(%2$s)님이 당신에게 비밀 메시지를 보냈습니다 : \n" -" \n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s(%2$s)님이 당신에게 비밀 메시지를 보냈습니다 : \n \n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4422,8 +4144,7 @@ msgstr "새 그룹을 만듭니다." #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +msgid "Search for groups on %%site.name%% by their name, location, or description. " msgstr "이름과 위치, 상세설명으로 %%site.name%% 에서 그룹을 찾습니다." #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4553,10 +4274,8 @@ msgid "Ajax Error" msgstr "Ajax 에러입니다." #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"이 사용자는 nudge를 허용하지 않았고, 아직 그의 이메일을 인증하지 않았습니다." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "이 사용자는 nudge를 허용하지 않았고, 아직 그의 이메일을 인증하지 않았습니다." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4630,8 +4349,7 @@ msgstr "프로필 정보" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분." #: actions/profilesettings.php:144 @@ -4663,12 +4381,8 @@ msgstr "공개 stream을 불러올 수 없습니다." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " -"서비스 입니다." +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) 서비스 입니다." #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4815,12 +4529,8 @@ msgstr "모든 회원" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" -"Micro-blogging)의 사용자 그룹입니다. " +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/Micro-blogging)의 사용자 그룹입니다. " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4872,12 +4582,8 @@ msgstr "모든 그룹" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" -"Micro-blogging) 서비스에 계정을 갖고 있습니다." +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/Micro-blogging) 서비스에 계정을 갖고 있습니다." #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4982,22 +4688,16 @@ msgid "Tag user" msgstr "태그 사용자" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세" -"요." +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세요." #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5091,11 +4791,8 @@ msgstr "게시글 저장문제. 알려지지않은 회원" #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " -"해보세요." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 해보세요." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5274,8 +4971,7 @@ msgstr "140글자로 그룹이나 토픽 설명하기" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "그룹의 위치, \"시/군/구, 도, 나라\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5339,12 +5035,8 @@ msgstr "오픈ID로 로그인 혹은 회원가입" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"안녕, %s. \n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "안녕, %s. \n\n" #: lib/mail.php:236 #, php-format @@ -5363,12 +5055,8 @@ msgstr "홈페이지: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"소개: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "소개: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5536,17 +5224,17 @@ msgid "Unsubscribe from this user" msgstr "이 사용자로부터 구독취소합니다." #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s의 친구들을 위한 피드" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s의 친구들을 위한 피드" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "%s의 친구들을 위한 피드" @@ -5556,7 +5244,7 @@ msgid "You and friends" msgstr "%s 및 친구들" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." @@ -5565,20 +5253,10 @@ msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." msgid "Avatar deleted." msgstr "아바타가 업데이트 되었습니다." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5590,29 +5268,9 @@ msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5621,28 +5279,14 @@ msgid "Pick a square area of the image to be the logo." msgstr "당신의 아바타가 될 이미지영역을 지정하세요." #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "%s의 마이크로블로그" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " -"적어도 3글자 이상 필요." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; 적어도 3글자 이상 필요." #: actions/newmessage.php:102 #, fuzzy @@ -5650,17 +5294,14 @@ msgid "Only logged-in users can send direct messages." msgstr "직접 메시지 보내기 오류." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "스트림에서 \"%s\" 검색" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5677,32 +5318,9 @@ msgstr "퍼블릭 스트림 피드" msgid "Public Stream Feed (Atom)" msgstr "퍼블릭 스트림 피드" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +msgid " except this private data: password, email address, IM address, and phone number." msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" #: actions/showgroup.php:378 actions/showgroup.php:424 @@ -5711,44 +5329,33 @@ msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주 msgid "Created" msgstr "생성" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "그룹 프로필" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "'의 프로필" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "%s의 통지 피드" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "%s의 통지 피드" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "%s의 통지 피드" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "%s의 보낸쪽지함" @@ -5764,47 +5371,10 @@ msgstr "아바타" msgid "Edit profile settings" msgstr "프로필 세팅" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" -"드와 사용법을 확인하여 주시기 바랍니다." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드와 사용법을 확인하여 주시기 바랍니다." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5821,27 +5391,18 @@ msgstr "그러한 사용자가 없습니다." #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니" -"다." +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니다." #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "트위터로부터 \"%s\"를 위한 계정정보를 불러올 수 없습니다." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" -"\"를 클릭해 주세요." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소\"를 클릭해 주세요." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5850,12 +5411,8 @@ msgstr "프로필이나 텍스트 검색" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " -"해보세요." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 해보세요." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5867,216 +5424,21 @@ msgstr "IM, SMS, 트위터에 연결하기" msgid "Badge" msgstr "찔러 보기" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " msgstr "당신이 필요한 페이스북 어플리케이션 %s의 사용을 위해서 로그인하세요." -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n" -"\t%3$s\n" -"\n" -"그럼 이만,%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n %3$s\n\n그럼 이만,%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "검색" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6093,12 +5455,12 @@ msgid "Block this user from this group" msgstr "이 그룹의 회원리스트" #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "이용자 프로필" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s 와 친구들, %d 페이지" @@ -6122,56 +5484,26 @@ msgstr "인증 코드" msgid "Do not delete this notice" msgstr "이 통지를 지울 수 없습니다." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "유효하지 않은태그: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "좋아하는 게시글을 생성할 수 없습니다." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6182,14 +5514,6 @@ msgstr "새로운 통지" msgid "No notice" msgstr "새로운 통지" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6201,10 +5525,6 @@ msgstr "유효한 별명이 아닙니다" msgid "No group specified." msgstr "프로필을 지정하지 않았습니다." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6221,18 +5541,6 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." msgid "Block user from group" msgstr "사용자를 차단합니다." -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6243,12 +5551,6 @@ msgstr "그룹을 만들기 위해서는 로그인해야 합니다." msgid "Group design" msgstr "그룹" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6281,231 +5583,46 @@ msgstr "관리자만 그룹을 편집할 수 있습니다." msgid "Make Admin" msgstr "관리자" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "결과 없음" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "회원이 당신을 차단해왔습니다." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "메시지" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "프로필을 저장 할 수 없습니다." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 " -"있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "프로필 세팅" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " -"서비스 입니다." - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) 서비스 입니다." #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." #: actions/recoverpassword.php:158 #, fuzzy @@ -6527,87 +5644,30 @@ msgstr "확인 코드 오류" msgid "Subscribe to a remote user" msgstr "이 회원을 구독합니다." -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "%s 좋아하는 게시글, %d 페이지" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s 그룹을 위한 공지피드" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s 그룹을 위한 공지피드" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "%s 그룹을 위한 공지피드" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" -"Micro-blogging)의 사용자 그룹입니다. " +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/Micro-blogging)의 사용자 그룹입니다. " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6620,84 +5680,33 @@ msgid "Not a local notice" msgstr "로컬 사용자 아닙니다." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "%s 태그된 통지" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "%s 그룹을 위한 공지피드" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" -"Micro-blogging) 서비스에 계정을 갖고 있습니다." - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/Micro-blogging) 서비스에 계정을 갖고 있습니다." #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s 는 지금 듣고 있습니다." #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s의 통지 피드" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "%s의 통지 피드" @@ -6728,20 +5737,16 @@ msgid "Could not find target user." msgstr "어떠한 상태도 찾을 수 없습니다." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / %2$s에게 답신 업데이트" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -6757,127 +5762,41 @@ msgstr "%s 구독" msgid "Profile design" msgstr "프로필 세팅" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "통지를 저장하는데 문제가 발생했습니다." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "%2$s에서 %1$s까지 메시지" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "이용자 프로필" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "프로필" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "올리기" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "비밀번호 바꾸기" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6893,127 +5812,21 @@ msgstr "검색" msgid "Links" msgstr "로그인" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "차단하기" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "사용자를 차단합니다." #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "%s logo 추가 혹은 수정" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7029,26 +5842,11 @@ msgstr "이용자" msgid "Search help" msgstr "검색" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "홈페이지 주소형식이 올바르지 않습니다." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7056,12 +5854,12 @@ msgid "No such page" msgstr "그러한 태그가 없습니다." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "%s에게 직접 메시지" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "메시지가 너무 길어요. 최대로 140자까지 입력하실 수 있습니다." @@ -7070,12 +5868,8 @@ msgstr "메시지가 너무 길어요. 최대로 140자까지 입력하실 수 msgid "Could not unfollow user: User not found." msgstr "따라가실 수 없습니다 : 사용자가 없습니다." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "설명이 너무 길어요. (최대 140글자)" @@ -7085,7 +5879,7 @@ msgid "You are already a member of that group." msgstr "당신은 이미 이 그룹의 멤버입니다." #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "그룹 %s에 %s는 가입할 수 없습니다." @@ -7095,44 +5889,31 @@ msgid "You are not a member of this group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "%s 그룹" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "%s 그룹들은 의 멤버입니다." #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "그룹 행동" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -7144,12 +5925,12 @@ msgid "Post to " msgstr "사진" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "설명이 너무 길어요. (최대 140글자)" #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -7184,7 +5965,7 @@ msgid "Cannot read file." msgstr "파일을 잃어버렸습니다." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -7194,40 +5975,17 @@ msgid "IM is not available." msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" -"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" -"용해 보세요." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사용해 보세요." #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "\"%s\" 에 일치하는 모든 업데이트" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "140자 이내에서 자기 소개" @@ -7237,20 +5995,13 @@ msgid "Describe yourself and your interests" msgstr "당신에 대해 소개해주세요." #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "자기소개가 너무 깁니다. (최대 140글자)" -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "유효한 프로필 URL이 아닙니다. (YADIS 문서가 없습니다)" #: actions/remotesubscribe.php:176 @@ -7263,51 +6014,33 @@ msgstr "그것은 로컬프로필입니다. 구독을 위해서는 로그인하 msgid "Couldn’t get a request token." msgstr "리퀘스트 토큰을 취득 할 수 없습니다." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "%s 그룹을 위한 공지피드" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "%2$s에서 %1$s까지 메시지" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "%s의 좋아하는 게시글을 위한 피드" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "%s의 좋아하는 게시글을 위한 피드" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "%s의 좋아하는 게시글을 위한 피드" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "%s 그룹" @@ -7322,77 +6055,32 @@ msgid "SMS is not available." msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s의 통지 피드" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" -"\"를 클릭해 주세요." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소\"를 클릭해 주세요." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" -"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" -"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 해지 방법에 대하여 읽어보십시오." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "%S 잘못된 그림 파일 타입입니다. " @@ -7407,35 +6095,27 @@ msgid "Site content license" msgstr "라코니카 소프트웨어 라이선스" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "찔러 보기를 보냈습니다." -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "이 게시글에 대해 답장하기" @@ -7444,54 +6124,11 @@ msgstr "이 게시글에 대해 답장하기" msgid "Error saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "확인 코드가 없습니다." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7508,70 +6145,25 @@ msgid "Describe the group or topic" msgstr "140글자로 그룹이나 토픽 설명하기" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "140글자로 그룹이나 토픽 설명하기" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "%s의 통지 피드" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "다음에서:" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7581,3 +6173,4 @@ msgstr "favorite을 삭제할 수 없습니다." #, fuzzy msgid "Duplicate notice" msgstr "통지 삭제" + diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index de9c1e06b9..e6ded5d570 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -1,5 +1,6 @@ # Translation of StatusNet to Macedonian # +# Author@translatewiki.net: Bjankuloski06 # -- # #-#-#-#-# statusnet.pot (PACKAGE VERSION) #-#-#-#-# # SOME DESCRIPTIVE TITLE. @@ -16,14 +17,13 @@ #, fuzzy msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:58:46+0000\n" +"PO-Revision-Date: 2009-11-06 12:23:54+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: out-statusnet\n" @@ -37,60 +37,8 @@ msgstr "Пребарувај го потокот за „%s“" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " -"телефонски број." - -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "" - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +msgid " except this private data: password, email address, IM address, phone number." +msgstr "освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, телефонски број." #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -100,27 +48,8 @@ msgstr "%1$s сега ги следи вашите забелешки за %2$s. #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s сега ги следи вашите забелешки на %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Искрено ваш,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s сега ги следи вашите забелешки на %2$s.\n\n %3$s\n\nИскрено ваш,\n%4$s.\n" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -129,13 +58,6 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "%1$s статус на %2$s" -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "" - #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format @@ -157,52 +79,11 @@ msgstr "Јавниот поток на %s" msgid "%s and friends" msgstr "%s и пријателите" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" - #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -222,11 +103,6 @@ msgstr ". Придонесувачите треба да бидат наведе msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места." -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" - #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" @@ -238,110 +114,11 @@ msgstr "6 или повеќе знаци" msgid "6 or more characters, and don't forget it!" msgstr "6 или повеќе знаци и не ја заборавајте!" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -msgid "6 or more characters. Required." -msgstr "" - #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Испративме код за потврда на IM адресата што ја додадовте. Мора да го " -"одобрите %S за да ви испраќа пораки." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "" +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Испративме код за потврда на IM адресата што ја додадовте. Мора да го одобрите %S за да ви испраќа пораки." #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 @@ -372,11 +149,6 @@ msgstr "Додај" msgid "Add OpenID" msgstr "Додај OpenID" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "" - #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 @@ -386,11 +158,6 @@ msgstr "" msgid "Address" msgstr "Адреса" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "" - #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" @@ -422,12 +189,6 @@ msgstr "Веќе сте најавени." msgid "Already subscribed!." msgstr "Веќе сте претплатени!" -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "" - #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 @@ -439,15 +200,7 @@ msgstr "Одобрете ја претплатата" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Следниот пат најавете се автоматски; не за компјутери кои ги делите со други!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +msgstr "Следниот пат најавете се автоматски; не за компјутери кои ги делите со други!" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -466,30 +219,12 @@ msgstr "Аватарот е ажуриран." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Чекам потвдар за оваа адреса. Проверете ја вашата Jabber/GTalk сметка за " -"порака со понатамошни инструкции. (Дали го додадовте %s на вашата листа со " -"пријатели?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Чекам потвдар за оваа адреса. Проверете ја вашата Jabber/GTalk сметка за порака со понатамошни инструкции. (Дали го додадовте %s на вашата листа со пријатели?)" #: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy msgid "Before »" -msgstr "Предходни »" +msgstr "Претходно »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 @@ -508,11 +243,6 @@ msgstr "Био" msgid "Bio is too long (max 140 chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "" - #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format @@ -546,37 +276,16 @@ msgstr "Не е возможно да се инстанцира OpenID обје msgid "Cannot normalize that Jabber ID" msgstr "Ова JabberID не може да се нормализира." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "" - #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Промени" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" - #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "Промени ја лозинката" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "" - #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 #: actions/profilesettings.php:182 actions/recoverpassword.php:187 @@ -604,36 +313,11 @@ msgstr "Потврди ја адресата" msgid "Confirmation cancelled." msgstr "Потврдата е откажана" -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "" - #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Кодот за потврда не е пронајден." -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -657,21 +341,6 @@ msgstr "Контакт" msgid "Could not create OpenID form: %s" msgstr "OpenID формуларот не може да се креира:%s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "" - #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format @@ -688,19 +357,6 @@ msgstr "Информациите за аватарот не може да се msgid "Could not save new profile info" msgstr "Информациите за новиот профил не може да се снимат" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "" - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" - #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." @@ -721,11 +377,6 @@ msgstr "Не може да се креира потврда за е-пошта." msgid "Couldn't delete subscription." msgstr "Претплата не може да се избрише." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" - #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." @@ -754,22 +405,6 @@ msgstr "Не може да се внесе нова претплата." msgid "Couldn't save profile." msgstr "Профилот не може да се сними." -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "" - #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -817,38 +452,16 @@ msgstr "Креирање на нова сметка за OpenID што веќе msgid "Current confirmed Jabber/GTalk address." msgstr "Моментално потврдена Jabber/GTalk адреса." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "" - #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "Моментално" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" - #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Одговор од внесот во базата: %s" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" - #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -865,16 +478,6 @@ msgstr "Опишете се себе си и сопствените интере msgid "Email" msgstr "Е-пошта" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "" - #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." @@ -884,27 +487,12 @@ msgstr "Адресата веќе постои." msgid "Email address confirmation" msgstr "Потврдување на адресата" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "" - #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Внесете прекар или е-пошта" -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" @@ -1022,29 +610,9 @@ msgstr "Канал со пријатели на %S" msgid "Feed for replies to %s" msgstr "Канал со одговори на %s" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Поради безбедносни причини треба повторно да го внесете Вашето корисничко " -"име и лозинка пред да ги смените Вашите поставки." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Поради безбедносни причини треба повторно да го внесете Вашето корисничко име и лозинка пред да ги смените Вашите поставки." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1106,17 +674,6 @@ msgstr "Домашна страница" msgid "Homepage is not a valid URL." msgstr "Домашната страница не е правилно URL." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" - #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -1129,40 +686,12 @@ msgstr "Поставки за IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за " -"истата да ја поврзете со Вашиот OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за истата да ја поврзете со Вашиот OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Ако сакате да додадете OpenID на Вашата сметка, внесете го подолу и кликнете " -"„Додај“." - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Ако сакате да додадете OpenID на Вашата сметка, внесете го подолу и кликнете „Додај“." #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 @@ -1178,12 +707,8 @@ msgstr "Неточно корисничко име или лозинка" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Упатството за пронаоѓање на Вашата лозинка е испратено до адресата за е-" -"пошта што е регистрирана со Вашата сметка." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Упатството за пронаоѓање на Вашата лозинка е испратено до адресата за е-пошта што е регистрирана со Вашата сметка." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1191,12 +716,6 @@ msgstr "" msgid "Invalid avatar URL '%s'" msgstr "Неправилно URL за аватар: '%s'" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "" - #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format @@ -1255,38 +774,11 @@ msgstr "Погрешна големина." msgid "Invalid username or password." msgstr "Погрешно име или лозинка." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Работи на [StatusNet](http://status.net/) софтверот за микроблогирање, " -"верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Работи на [StatusNet](http://status.net/) софтверот за микроблогирање, верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1296,24 +788,8 @@ msgstr "Ова Jabber ID му припаќа на друг корисник." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber или GTalk адреса како „ime@example.org“. Но прво додајте го %s во " -"Вашата контакт листа во Вашиот IM клиент или GTalk." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber или GTalk адреса како „ime@example.org“. Но прво додајте го %s во Вашата контакт листа во Вашиот IM клиент или GTalk." #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -1368,43 +844,20 @@ msgstr "Пријавете се со [OpenID](%%doc.openid%%) сметка." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action." -"register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action.register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Одјави се" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Загубена или заборавена лозинка?" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -1416,14 +869,6 @@ msgstr "Член од" msgid "Microblog by %s" msgstr "Микроблог на %s" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" - #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 @@ -1432,25 +877,6 @@ msgstr "" msgid "My text and files are available under " msgstr "Мојот текст и датотеки се достапни под" -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -1535,14 +961,6 @@ msgstr "Прекар на корисникот што сакате да го с msgid "Nickname or email" msgstr "Прекар или е-пошта" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" - #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." @@ -1554,16 +972,6 @@ msgstr "Нема JabberID." msgid "No authorization request!" msgstr "Нема барање за проверка!" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -1578,23 +986,10 @@ msgstr "Нема код за потврда." msgid "No content!" msgstr "Нема содржина!" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "Нема id." -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -1616,11 +1011,6 @@ msgstr "Нема прекар." msgid "No pending confirmation to cancel." msgstr "Нема потврди кои може да се откажат." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - #: ../actions/finishremotesubscribe.php:72 #: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." @@ -1649,21 +1039,6 @@ msgstr "Нема резултати" msgid "No size." msgstr "Нема големина." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1729,12 +1104,6 @@ msgstr "Нема таква претплата" msgid "No such user." msgstr "Нема таков корисник." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "Нема никој!" @@ -1744,21 +1113,6 @@ msgstr "Нема никој!" msgid "Not a recovery code." msgstr "Ова не е код за спасување." -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 -msgid "Not a supported data format." -msgstr "" - #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1769,12 +1123,6 @@ msgstr "Неправилен JabberID" msgid "Not a valid OpenID." msgstr "Неправилен OpenID." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." @@ -1824,12 +1172,6 @@ msgstr "Не е одобрено." msgid "Not expecting this response!" msgstr "Овој одговор не беше очекуван!" -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -msgid "Not found" -msgstr "" - #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 #: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 @@ -1854,11 +1196,6 @@ msgstr "Не сте пријавени." msgid "Not subscribed!." msgstr "Не сте претплатени!" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 @@ -1879,14 +1216,6 @@ msgstr "Известувањето нема профил" msgid "Notices" msgstr "Известувања" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1954,11 +1283,6 @@ msgstr "OpenID-то е отстрането" msgid "OpenID settings" msgstr "Поставки за OpenID" -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -2013,16 +1337,6 @@ msgstr "Лозинката е снимена." msgid "Passwords don't match." msgstr "Лозинките не се совпаѓаат." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" @@ -2033,24 +1347,9 @@ msgstr "Пребарување на луѓе" msgid "Personal" msgstr "Личен" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Проверете ги овие детали ако сакате да се претплатите на известувањата на " -"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Проверете ги овие детали ако сакате да се претплатите на известувањата на овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2079,12 +1378,6 @@ msgstr "Преференции" msgid "Preferences saved." msgstr "Преференциите се снимени." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" @@ -2132,22 +1425,6 @@ msgstr "Јавен канал" msgid "Public timeline" msgstr "Јавна историја" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -2176,18 +1453,6 @@ msgstr "Код за пронаоѓање за непознат корисник. msgid "Register" msgstr "Регистрирај се" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 -msgid "Registration successful" -msgstr "" - #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -2233,12 +1498,8 @@ msgid "Remove OpenID" msgstr "Отстрани го OpenID-то" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Ако го остраните Вашето единствено OpenID, тогаш нема да можете да се " -"пријавите. Ако треба да го отстраните, прво додајте друг OpenID." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Ако го остраните Вашето единствено OpenID, тогаш нема да можете да се пријавите. Ако треба да го отстраните, прво додајте друг OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2267,38 +1528,12 @@ msgstr "Ресетирај" msgid "Reset password" msgstr "Рестетирај ја лозинката" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Исто како лозинката погоре" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -msgid "Same as password above. Required." -msgstr "" - #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -2334,26 +1569,13 @@ msgstr "Барај во каналот" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Барајте известувања на %%site.name%% според нивната содржина. Термините " -"одделете ги со празни места. Најмала должина е 3 знаци." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Барајте известувања на %%site.name%% според нивната содржина. Термините одделете ги со празни места. Најмала должина е 3 знаци." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " -"Термините одделете ги со празни места. Најмала должина е 3 знаци." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Барајте луѓе на %%site.name%% според нивното име, локација или интереси. Термините одделете ги со празни места. Најмала должина е 3 знаци." #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -2364,35 +1586,11 @@ msgstr "" msgid "Send" msgstr "Испрати" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Испраќај ми известувања преку Jabber/GTalk." -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -2404,10 +1602,6 @@ msgstr "Поставки" msgid "Settings saved." msgstr "Поставките се снимени." -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -2419,16 +1613,6 @@ msgstr "Некој друг веќе го користи ова OpenID." msgid "Something weird happened." msgstr "Нешто чудно се случи." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -2493,22 +1677,6 @@ msgstr "Претплати" msgid "System error uploading file." msgstr "Системска грешка при товарањето на датотеката." -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -msgid "Tags" -msgstr "" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "" - #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 #: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" @@ -2529,11 +1697,6 @@ msgstr "Оваа адреса веќе е потврдена." msgid "That confirmation code is not for you!" msgstr "Овој код за потврда не е за Вас!" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" - #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." @@ -2544,33 +1707,11 @@ msgstr "Датотеката е преголема." msgid "That is already your Jabber ID." msgstr "Ова веќе е Вашиот Jabber ID." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" - #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Ова не е Вашиот Jabber ID." -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" - #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -2579,16 +1720,6 @@ msgstr "" msgid "That is the wrong IM address." msgstr "Ова е погрешната IM адреса." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -2599,12 +1730,6 @@ msgstr "" msgid "That's too long. Max notice size is 140 chars." msgstr "Ова е предолго. Максималната должина е 140 знаци." -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" - #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format @@ -2623,24 +1748,13 @@ msgstr "Адресата е отстранета." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за " -"местото за да видите како да ја одобрите претплатата. Вашиот белег за " -"претплата е:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за местото за да видите како да ја одобрите претплатата. Вашиот белег за претплата е:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за " -"местото за да видите како целосно да ја одбиете претплатата." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за местото за да видите како целосно да ја одбиете претплатата." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2664,98 +1778,29 @@ msgstr "Ова се луѓето чии известувања ги следи % msgid "These are the people whose notices you listen to." msgstr "Ова се луѓето чии известувања ги следите." -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" - #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Овој код за потврда е премногу стар. Почнете од почеток." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Овој формулар треба автоматски да се испрати. Ако тоа не се случи, кликнете " -"на копчето „Испрати“ за да одите до Вашиот OpenID снабдувач." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Овој формулар треба автоматски да се испрати. Ако тоа не се случи, кликнете на копчето „Испрати“ за да одите до Вашиот OpenID снабдувач." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Ова е прв пат како се пријавивте на %s и затоа морам да го поврземе Вашиот " -"OpenID со локална сметка. Можете да креирате нова сметка или да се поврзете " -"со тековната сметка - ако ја имате." - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -msgid "This method requires a POST." -msgstr "" +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Ова е прв пат како се пријавивте на %s и затоа морам да го поврземе Вашиот OpenID со локална сметка. Можете да креирате нова сметка или да се поврзете со тековната сметка - ако ја имате." #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"За да се претплатите, може да се [пријавите](%%action.login%%) или да се " -"[регистрирате](%%action.register%%). Ако имате сметка на [компатибилно место " -"за микро блогирање](%%doc.openmublog%%), внесете го URL-то на Вашиот профил " -"подолу." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 -msgid "Two user ids or screen_names must be supplied." -msgstr "" +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "За да се претплатите, може да се [пријавите](%%action.login%%) или да се [регистрирате](%%action.register%%). Ако имате сметка на [компатибилно место за микро блогирање](%%doc.openmublog%%), внесете го URL-то на Вашиот профил подолу." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2792,23 +1837,14 @@ msgstr "Неочекувано испраќање на формулар." msgid "Unexpected password reset." msgstr "Неочекувано ресетирање на лозинка." -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "Непозната верзија на протоколот OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Освен ако не е поинаку назначено, содржината на ова место е авторско право " -"на придонесувачите и е достапна под" +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Освен ако не е поинаку назначено, содржината на ова место е авторско право на придонесувачите и е достапна под" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2834,33 +1870,6 @@ msgstr "Неподдржнана верзија на ОМВ" msgid "Unsupported image file format." msgstr "Неподдржан фомрат на слики." -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -2869,26 +1878,8 @@ msgid "Upload" msgstr "Товари" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Тука можете да поставите нов „аватар“ (косиничка слика). Не можете да ја " -"менувате сликата откако ќе ја товарите, па затоа погрижете се да личи на " -"квадрат. Сликата мора да биде под истата лиценца како ова место. Користете " -"слика која е Ваша и која сакате да ја споделите." - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Тука можете да поставите нов „аватар“ (косиничка слика). Не можете да ја менувате сликата откако ќе ја товарите, па затоа погрижете се да личи на квадрат. Сликата мора да биде под истата лиценца како ова место. Користете слика која е Ваша и која сакате да ја споделите." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2930,16 +1921,6 @@ msgstr "Корисникот нема профил." msgid "User nickname" msgstr "Прекар на корисникот" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" - #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -2966,41 +1947,16 @@ msgstr "Погрешен тип на слика за '%s'" msgid "Wrong size image at '%s'" msgstr "Погрешна големина на слика на '%s'" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "" - #: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "Веќе го имате овој OpenID!" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "Веќе сте пријавени!" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" - #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "Овде можете да ја промените лозинката. Одберете добра лозинка!" @@ -3009,36 +1965,20 @@ msgstr "Овде можете да ја промените лозинката. msgid "You can create a new account to start posting notices." msgstr "Можете да креирате нова сметка за да испраќате известувања." -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" - #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Можте да отстраните OpenID од Вашата сметка со кликање на копчето „Отстрани“." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Можте да отстраните OpenID од Вашата сметка со кликање на копчето „Отстрани“." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Можете да примате и праќате известувања преку Jabber/GTalk [брзи пораки](%%" -"doc.im%%). Подолу " +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Можете да примате и праќате известувања преку Jabber/GTalk [брзи пораки](%%doc.im%%). Подолу " #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Во Вашиот личен профил може да дополните информации за луѓето да знаат " -"повеќе за Вас." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Во Вашиот личен профил може да дополните информации за луѓето да знаат повеќе за Вас." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3060,38 +2000,6 @@ msgstr "Не може да се регистрирате ако не ја при msgid "You did not send us that profile" msgstr "Не ни го испративте тој профил." -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Идентификувани сте. Подолу можете да внесете нова лозинка." @@ -3104,19 +2012,12 @@ msgstr "Вашето URL за OpenID" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "" -"Вашиот прекар на овој сервер или адресата за е-пошта со која се " -"регистриравте." +msgstr "Вашиот прекар на овој сервер или адресата за е-пошта со која се регистриравте." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) Ви овозможува да се пријавувате на многу места со " -"истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-" -"ја." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) Ви овозможува да се пријавувате на многу места со истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-ја." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3172,11 +2073,6 @@ msgstr "пред една година" msgid "about an hour ago" msgstr "пред еден час" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "" - #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 @@ -3194,766 +2090,17 @@ msgstr "одговор" msgid "same as password above" msgstr "исто како лозинката погоре" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - #: ../lib/util.php:1309 lib/util.php:1443 -#, fuzzy msgid "« After" -msgstr "« Следни" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -msgid "Password must be 6 or more characters." -msgstr "" - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" - -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "" - -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" +msgstr "« Следно" #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s и пријателите" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" - #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -3962,51 +2109,6 @@ msgstr "" msgid "Avatar settings" msgstr "Поставки" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -4014,75 +2116,21 @@ msgstr "" msgid "Lost our file." msgstr "Нема такво известување." -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" - #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Нема таков корисник." -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Веќе сте пријавени!" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format, fuzzy msgid "The address \"%s\" has been " msgstr "Адресата е отстранета." -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "" - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" - #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -4090,9 +2138,8 @@ msgstr "" #: actions/groupdesignsettings.php:89 actions/showgroup.php:126 #: actions/editgroup.php:84 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -#, fuzzy msgid "No nickname" -msgstr "Нема прекар." +msgstr "Нема прекар" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 @@ -4106,20 +2153,6 @@ msgstr "Нема прекар." msgid "No such group" msgstr "Нема такво известување." -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -4142,23 +2175,10 @@ msgid "Options saved." msgstr "Поставките се снимени." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "Грешка со кодот за потврдување." -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -4167,28 +2187,7 @@ msgstr "Адресата веќе постои." #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Испративме код за потврда на IM адресата што ја додадовте. Мора да го " -"одобрите %S за да ви испраќа пораки." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" +msgstr "Испративме код за потврда на IM адресата што ја додадовте. Мора да го одобрите %S за да ви испраќа пораки." #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -4196,13 +2195,6 @@ msgstr "" msgid "No notice content!" msgstr "Нема содржина!" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -4219,84 +2211,32 @@ msgstr "« Следни" msgid "Before" msgstr "Предходни »" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" - #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "Канал со пријатели на %S" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "Корисникот не може да се освежи/" -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" - #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "Преференциите се снимени." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" - #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "Профил" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "Преференции" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "" - #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -4306,48 +2246,10 @@ msgid "Popular notices" msgstr "Нема такво известување." #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" msgstr "Нема такво известување." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -4360,36 +2262,6 @@ msgstr "Аватарот е ажуриран." msgid "Failed updating logo." msgstr "Товарањето на аватарот не успеа." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -4397,64 +2269,35 @@ msgid "Create a new group" msgstr "Креирај нова сметка" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " -"Термините одделете ги со празни места. Најмала должина е 3 знаци." +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Барајте луѓе на %%site.name%% според нивното име, локација или интереси. Термините одделете ги со празни места. Најмала должина е 3 знаци." #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Пребарување на луѓе" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" - -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Испраќај ми известувања преку Jabber/GTalk." #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Нема код за потврда." -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" - #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Веќе сте пријавени!" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "Не може да се пренасочи кон серверот: %s" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" - #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -4468,44 +2311,12 @@ msgstr "Нема такво известување." msgid "You are not a member of that group." msgstr "Не ни го испративте тој профил." -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "" - #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "OpenID формуларот не може да се креира:%s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" - #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -4523,35 +2334,12 @@ msgstr "Не може да се креира претплатата" msgid "That's too long. " msgstr "Датотеката е преголема." -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" - #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Известувања" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" - #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -4567,24 +2355,11 @@ msgstr "Отстрани го OpenID-то" msgid "Other Settings" msgstr "Поставки" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "Барај" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" - #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -4603,39 +2378,19 @@ msgid "Password change" msgstr "Лозинката е снимена." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "Неправилна адреса за е-пошта." -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Непознат профил" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "" - #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" msgstr "Невалидна домашна страница: '%s'" @@ -4647,51 +2402,20 @@ msgstr "Профилот не може да се сними." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "Јавна историја" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" - -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Јавен канал" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -4720,61 +2444,20 @@ msgstr "Каде се наоѓате, на пр. „Град, Држава“." #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "" -"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " -"телефонски број." - -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" +msgstr "освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, телефонски број." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "Одговори испратени до %s" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "" - -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Нема такво известување." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4787,13 +2470,8 @@ msgstr "" msgid "Note" msgstr "Известувања" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "Канал со известувања на %s" @@ -4805,36 +2483,6 @@ msgstr "Канал со известувања на %s" msgid "Members" msgstr "Член од" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "" - -#: actions/showstream.php:73 actions/showstream.php:78 -#, php-format -msgid "%s, page %d" -msgstr "" - #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -4847,43 +2495,11 @@ msgstr "Профил" msgid "User profile" msgstr "Корисникот нема профил." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -msgid "User actions" -msgstr "" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 -msgid "Send a direct message to this user" -msgstr "" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 -msgid "Message" -msgstr "" - #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Претплатници" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -4899,10 +2515,6 @@ msgstr "Испраќај ми известувања преку Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Овој код за потврда не е за Вас!" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" - #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4924,32 +2536,27 @@ msgid "Subscribed" msgstr "Претплати се" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "Претплатници" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Ова се луѓето што ги следат известувањата на %s." #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "Ова се луѓето што ги следат известувањата на %s." #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "Сите претплати" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "Сите претплати" @@ -4959,7 +2566,7 @@ msgid "These are the people whose notices " msgstr "Ова се луѓето чии известувања ги следи %s." #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "Ова се луѓето што ги следат известувањата на %s." @@ -4970,15 +2577,10 @@ msgid "Jabber" msgstr "Нема JabberID." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "Микроблог на %s" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -4989,89 +2591,34 @@ msgstr "Не сте пријавени." msgid "No id argument." msgstr "Нема таков документ." -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Информациите за аватарот не може да се снимат" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "Нема такво известување." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" msgstr "Микроблог на %s" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" - #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Не е пронаједено барање." -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "" - #: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Нова лозинка" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "" - -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " msgstr "Не може да се креира потврда за е-пошта." @@ -5095,91 +2642,22 @@ msgstr "Оддалечениот профил нема одговарачки п msgid "Unsubscribed" msgstr "Откажи ја претплатата" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" - #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Проблем во снимањето на известувањето." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Товарањето на аватарот не успеа." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "" - -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" - #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "За" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -5200,10 +2678,6 @@ msgstr "Помош" msgid "Site notice" msgstr "Ново известување" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5214,39 +2688,12 @@ msgstr "Ново известување" msgid "Secondary site navigation" msgstr "Претплати" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Нема таков корисник." -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "" - -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "" - -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -5265,33 +2712,6 @@ msgstr "Јавен" msgid "Favor this notice" msgstr "Нема такво известување." -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" - -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" - -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "" - -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -5311,46 +2731,14 @@ msgstr "Опишете се себе си и сопствените интере #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Каде се наоѓате, на пр. „Град, Држава“." -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" - #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Одјави се" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" - #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -5376,63 +2764,16 @@ msgstr "Погрешно име или лозинка." msgid "Sign up for a new account" msgstr "Креирај нова сметка" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" - #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s сега ги следи вашите забелешки за %2$s." -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "" - -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" -msgstr "" - -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "" - -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" msgstr "%1$s сега ги следи вашите забелешки за %2$s." -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "" - #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -5449,68 +2790,16 @@ msgstr "6 или повеќе знаци" msgid "in reply to" msgstr "во одговор на..." -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "" - #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "одговор" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "" - -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" - -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "" - #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Јавен" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "" - -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "" - -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -5521,35 +2810,16 @@ msgstr "Пребарување на луѓе" msgid "Notice" msgstr "Известувања" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "" - -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" - #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People %s subscribes to" msgstr "Оддалечена претплата" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "Оддалечена претплата" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -5561,40 +2831,24 @@ msgstr "Корисникот нема профил." msgid "Subscribe to this user" msgstr "Претплатата е одобрена" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "" - -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "" - #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Нема таков корисник." -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "" - #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Канал со пријатели на %S" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Канал со пријатели на %S" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Канал со пријатели на %S" @@ -5603,107 +2857,30 @@ msgstr "Канал со пријатели на %S" msgid "You and friends" msgstr "%s и пријателите" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" - #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Аватарот е ажуриран." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Микроблог на %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " -"Термините одделете ги со празни места. Најмала должина е 3 знаци." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Барајте луѓе на %%site.name%% според нивното име, локација или интереси. Термините одделете ги со празни места. Најмала должина е 3 знаци." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "Пребарувај го потокот за „%s“" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Поради безбедносни причини треба повторно да го внесете Вашето корисничко " -"име и лозинка пред да ги смените Вашите поставки." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Поради безбедносни причини треба повторно да го внесете Вашето корисничко име и лозинка пред да ги смените Вашите поставки." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5720,35 +2897,10 @@ msgstr "Јавен канал" msgid "Public Stream Feed (Atom)" msgstr "Јавен канал" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " -"телефонски број." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, телефонски број." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5756,47 +2908,31 @@ msgstr "" msgid "Created" msgstr "Креирај" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Нема такво известување." #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Профил" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Канал со известувања на %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Канал со известувања на %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Канал со известувања на %s" -#: actions/showstream.php:182 actions/showstream.php:147 -#, php-format -msgid "FOAF for %s" -msgstr "" - #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -5809,46 +2945,11 @@ msgstr "Аватар" msgid "Edit profile settings" msgstr "Поставки на профилот" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." msgstr "Овој код за потврда не е за Вас!" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -5862,259 +2963,31 @@ msgstr "" msgid "No such user!" msgstr "Нема таков корисник." -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" - #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Не може да се креира потврда за е-пошта." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Проверете ги овие детали ако сакате да се претплатите на известувањата на " -"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Проверете ги овие детали ако сакате да се претплатите на известувањата на овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за " -"истата да ја поврзете со Вашиот OpenID." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за истата да ја поврзете со Вашиот OpenID." #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s сега ги следи вашите забелешки на %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Искрено ваш,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s сега ги следи вашите забелешки на %2$s.\n\n %3$s\n\nИскрено ваш,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Барај" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6131,19 +3004,15 @@ msgid "Block this user from this group" msgstr "Нема таков корисник." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Корисникот нема профил." #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s и пријателите" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -6159,56 +3028,26 @@ msgstr "Локација" msgid "Do not delete this notice" msgstr "Нема такво известување." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Невалидна домашна страница: '%s'" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Тој прекар е во употреба. Одберете друг." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Информациите за аватарот не може да се снимат" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6219,28 +3058,11 @@ msgstr "Ново известување" msgid "No notice" msgstr "Ново известување" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "Неправилен прекар." -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6257,32 +3079,6 @@ msgstr "Не ни го испративте тој профил." msgid "Block user from group" msgstr "Нема таков корисник." -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6291,251 +3087,42 @@ msgstr "" msgid "Couldn't update your design." msgstr "Корисникот не може да се освежи/" -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "Преференциите се снимени." -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Нема резултати" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Корисникот нема профил." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Профилот не може да се сними." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) Ви овозможува да се пријавувате на многу места со " -"истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-" -"ја." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) Ви овозможува да се пријавувате на многу места со истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-ја." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Поставки на профилот" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Ако сте ја заборавиле или загубиле лозинката, можете да добиете нова на " -"адресата што ја внесовте во Вашата сметка." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Ако сте ја заборавиле или загубиле лозинката, можете да добиете нова на адресата што ја внесовте во Вашата сметка." #: actions/recoverpassword.php:158 #, fuzzy @@ -6557,217 +3144,74 @@ msgstr "Грешка со кодот за потврдување." msgid "Subscribe to a remote user" msgstr "Претплатата е одобрена" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "Нема такво известување." -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Канал со известувања на %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Канал со известувања на %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Канал со известувања на %s" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Нема таков корисник." -#: actions/showstream.php:72 -#, php-format -msgid " tagged %s" -msgstr "" - #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Канал со известувања на %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s сега ги следи вашите забелешки за %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Канал со известувања на %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Канал со известувања на %s" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "Корисникот не може да се освежи/" -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Корисникот не може да се освежи/" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s статус на %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Микроблог на %s" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -6778,127 +3222,36 @@ msgstr "Сите претплати" msgid "Profile design" msgstr "Поставки на профилот" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Не ни го испративте тој профил." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблем во снимањето на известувањето." -#: classes/User.php:319 classes/User.php:327 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Корисникот нема профил." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Профил" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Товари" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Промени ја лозинката" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6914,174 +3267,39 @@ msgstr "Барај" msgid "Links" msgstr "Пријави се" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Нема таков корисник." #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Нема таков корисник." -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "Нема содржина!" -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "Барај" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "Домашната страница не е правилно URL." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "Нема такво известување." -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Ова е предолго. Максималната должина е 140 знаци." @@ -7090,12 +3308,8 @@ msgstr "Ова е предолго. Максималната должина е 1 msgid "Could not unfollow user: User not found." msgstr "Не може да се пренасочи кон серверот: %s" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." @@ -7105,7 +3319,7 @@ msgid "You are already a member of that group." msgstr "Веќе сте пријавени!" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Не може да се пренасочи кон серверот: %s" @@ -7115,63 +3329,26 @@ msgid "You are not a member of this group." msgstr "Не ни го испративте тој профил." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "OpenID формуларот не може да се креира:%s" -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Ова е предолго. Максималната должина е 140 знаци." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "Неподдржан фомрат на слики." -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - #: actions/finishremotesubscribe.php:80 #, fuzzy msgid "User being listened to does not exist." @@ -7202,50 +3379,23 @@ msgstr "Нема такво известување." msgid "Cannot read file." msgstr "Нема такво известување." -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action." -"register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action.register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Сите новини кои се еднакви со бараниот термин „%s“" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." @@ -7255,76 +3405,47 @@ msgid "Describe yourself and your interests" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Неправилно URL на профил (нема YADIS документ)." -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Не може да се земе белег за барање." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Канал со известувања на %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Одговори испратени до %s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Канал со пријатели на %S" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Канал со пријатели на %S" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Канал со пријатели на %S" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Канал со известувања на %s" @@ -7339,78 +3460,32 @@ msgid "SMS is not available." msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Канал со известувања на %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Проверете ги овие детали ако сакате да се претплатите на известувањата на " -"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Проверете ги овие детали ако сакате да се претплатите на известувањата на овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за " -"местото за да видите како да ја одобрите претплатата. Вашиот белег за " -"претплата е:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за местото за да видите како да ја одобрите претплатата. Вашиот белег за претплата е:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за " -"местото за да видите како целосно да ја одбиете претплатата." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за местото за да видите како целосно да ја одбиете претплатата." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Не може да се прочита URL-то на аватарот: '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Погрешен тип на слика за '%s'" @@ -7425,35 +3500,12 @@ msgid "Site content license" msgstr "Ново известување" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Не може да се пренасочи кон серверот: %s" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Одговори испратени до %s" @@ -7462,136 +3514,32 @@ msgstr "Одговори испратени до %s" msgid "Error saving notice." msgstr "Проблем во снимањето на известувањето." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Нема код за потврда." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Канал со известувања на %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s сега ги следи вашите забелешки за %2$s." -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" - #: lib/oauthstore.php:345 -#, fuzzy msgid "Duplicate notice" -msgstr "Ново известување" +msgstr "Дуплирано известување" + diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 52d5d33f8e..e53d2ddeb0 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -1,34 +1,37 @@ -# Translation of StatusNet to Norwegian Bokmål +# Translation of StatusNet to Norwegian (bokmål)‬ # +# Author@translatewiki.net: Laaknor # -- +# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:58:56+0000\n" -"Language-Team: Norwegian Bokmål\n" +"PO-Revision-Date: 2009-11-06 13:07:43+0000\n" +"Language-Team: Norwegian (bokmål)‬\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58638); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-Language-Code: nb\n" +"X-Language-Code: no\n" "X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" -msgstr "Søkestrøm for «%s»" +msgstr "Søk i strømmen etter \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"utenom disse private dataene: passord, epost, adresse, lynmeldingsadresse og " -"telefonnummer." +msgid " except this private data: password, email address, IM address, phone number." +msgstr "utenom disse private dataene: passord, epost, adresse, lynmeldingsadresse og telefonnummer." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -50,55 +53,8 @@ msgstr "%1$s har invitert deg til %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%$1s har invitert deg til %2$s (%3$s).\n" -"\n" -"%$2s er en mikrobloggingteneste som lar deg holde deg oppdatert på folk du " -"kjenner og/eller som interesserer deg.\n" -"\n" -"Du kan også dele nyheter om deg sjelv, dine tanker eller livet ditt på " -"nettet med folk som kjenner til deg. Det er supert for å møte nye folk med " -"like interesser.\n" -"\n" -"%1$s sa:\n" -"\n" -"%4$s\n" -"\n" -"Du kan se profilsiden til %1$s på %2$s her:\n" -"\n" -"%5$s\n" -"\n" -"Hvis du vil prøva tjenesten, klikk på lenken nedenfor for å akseptere " -"invitasjonen.\n" -"\n" -"Vennlig hilsen, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%$1s har invitert deg til %2$s (%3$s).\n\n%$2s er en mikrobloggingteneste som lar deg holde deg oppdatert på folk du kjenner og/eller som interesserer deg.\n\nDu kan også dele nyheter om deg sjelv, dine tanker eller livet ditt på nettet med folk som kjenner til deg. Det er supert for å møte nye folk med like interesser.\n\n%1$s sa:\n\n%4$s\n\nDu kan se profilsiden til %1$s på %2$s her:\n\n%5$s\n\nHvis du vil prøva tjenesten, klikk på lenken nedenfor for å akseptere invitasjonen.\n\nVennlig hilsen, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -108,20 +64,8 @@ msgstr "%1$s lytter nå til dine notiser på %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s lytter nå til dine notiser på %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Vennlig hilsen,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s lytter nå til dine notiser på %2$s.\n\n %3$s\n\nVennlig hilsen,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -197,22 +141,14 @@ msgstr "%s oppdateringer fra alle sammen!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Du vil straks motta en epost med instruksjoner om hvordan du kan bekrefte " -"din epostadresse)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Du vil straks motta en epost med instruksjoner om hvordan du kan bekrefte din epostadresse)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site." -"broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -235,8 +171,7 @@ msgstr "1-64 små bokstaver eller nummer, ingen punktum eller mellomrom" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 små bokstaver eller nummer, ingen punktum eller mellomrom. Påkrevd." +msgstr "1-64 små bokstaver eller nummer, ingen punktum eller mellomrom. Påkrevd." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -257,29 +192,17 @@ msgstr "6 eller flere tegn. Påkrevd." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"En bekreftelseskode ble sendt til lynmeldingsadressen du la til. Du må " -"godkjenne %s for å sende meldinger til deg." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "En bekreftelseskode ble sendt til lynmeldingsadressen du la til. Du må godkjenne %s for å sende meldinger til deg." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"En bekreftelseskode ble sendt til epostadressen du la til. Sjekk innboksen " -"din (og søppelboksen) for koden, og hvordan du skal bruke den." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "En bekreftelseskode ble sendt til epostadressen du la til. Sjekk innboksen din (og søppelboksen) for koden, og hvordan du skal bruke den." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"En bekreftelseskode ble sendt til telefonnummeret du la til. Sjekk innboksen " -"din for koden, og hvordan du skal bruke den." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "En bekreftelseskode ble sendt til telefonnummeret du la til. Sjekk innboksen din for koden, og hvordan du skal bruke den." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -454,16 +377,13 @@ msgstr "Autoriser abonnementet" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Logg inn automatisk i framtiden. Ikke for datamaskiner du deler med andre!" +msgstr "Logg inn automatisk i framtiden. Ikke for datamaskiner du deler med andre!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -482,21 +402,13 @@ msgstr "Brukerbildet har blitt oppdatert." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Venter på godkjenning. Sjekk din Jabber/GTalk-konto for en melding med " -"instruksjoner (la du %s til vennelisten din?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Venter på godkjenning. Sjekk din Jabber/GTalk-konto for en melding med instruksjoner (la du %s til vennelisten din?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Venter på bekreftelse av adressen. Sjekk innboksen din (og søppelboksen) for " -"melding med videre veiledning." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Venter på bekreftelse av adressen. Sjekk innboksen din (og søppelboksen) for melding med videre veiledning." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -634,36 +546,8 @@ msgstr "Fant ikke bekreftelseskode." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Gratulerer, %s! Og velkommen til %%%%site.name%%%%. Herfra vil du " -"kanskje...\n" -"\n" -"* Gå til [din profil](%s) og sende din første notis.\n" -"* Legge til en [Jabber/GTalk addresse](%%%%action.imsettings%%%%) så du kan " -"sende notiser fra lynmeldinger.\n" -"* [Søke etter brukere](%%%%action.peoplesearch%%%%) that you may know or " -"that share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Gratulerer, %s! Og velkommen til %%%%site.name%%%%. Herfra vil du kanskje...\n\n* Gå til [din profil](%s) og sende din første notis.\n* Legge til en [Jabber/GTalk addresse](%%%%action.imsettings%%%%) så du kan sende notiser fra lynmeldinger.\n* [Søke etter brukere](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -682,33 +566,6 @@ msgstr "Koble til eksisterende konto" msgid "Contact" msgstr "Kontakt" -#: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 -#: lib/openid.php:190 -#, php-format -msgid "Could not create OpenID form: %s" -msgstr "" - -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "" - -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "" - #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 #: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" @@ -719,65 +576,11 @@ msgstr "Klarte ikke å lagre brukerbilde-informasjonen" msgid "Could not save new profile info" msgstr "Klarte ikke å lagre den nye profil-informasjonen" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "" - #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post." -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "" - -#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 -#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 -#: actions/confirmaddress.php:84 actions/emailsettings.php:252 -#: actions/imsettings.php:226 actions/smssettings.php:249 -#: actions/confirmaddress.php:126 actions/emailsettings.php:375 -#: actions/imsettings.php:357 actions/smssettings.php:370 -#: actions/emailsettings.php:382 actions/emailsettings.php:390 -#: actions/imsettings.php:363 actions/smssettings.php:382 -msgid "Couldn't delete email confirmation." -msgstr "" - -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 -msgid "Couldn't delete subscription." -msgstr "" - -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "" - -#: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 -#: ../actions/smssettings.php:206 actions/emailsettings.php:223 -#: actions/imsettings.php:195 actions/smssettings.php:214 -#: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 actions/emailsettings.php:344 -#: actions/emailsettings.php:352 actions/imsettings.php:317 -#: actions/smssettings.php:337 -msgid "Couldn't insert confirmation code." -msgstr "" - -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "" - #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 @@ -785,22 +588,6 @@ msgstr "" msgid "Couldn't save profile." msgstr "Klarte ikke å lagre profil." -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "" - #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -838,11 +625,6 @@ msgstr "Lag en ny bruker med dette nicket." msgid "Create new account" msgstr "Opprett en ny konto" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "" - #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." @@ -858,28 +640,6 @@ msgstr "Nåværende bekreftede telefonnummer med mulighet for å motta SMS." msgid "Current confirmed email address." msgstr "Nåværende bekreftede e-postadresse" -#: ../actions/showstream.php:356 actions/showstream.php:367 -msgid "Currently" -msgstr "" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" - -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" - #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -906,124 +666,6 @@ msgstr "E-postadresse" msgid "Email Settings" msgstr "Innstillinger for e-post" -#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 -#: actions/register.php:200 actions/register.php:206 -msgid "Email address already exists." -msgstr "" - -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 -msgid "Email address confirmation" -msgstr "" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "" - -#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 -#: actions/recoverpassword.php:252 -msgid "Enter a nickname or email address." -msgstr "" - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "" - -#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 -#: actions/finishopenidlogin.php:325 -msgid "Error connecting user to OpenID." -msgstr "" - -#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 -#: actions/finishaddopenid.php:126 -msgid "Error connecting user." -msgstr "" - -#: ../actions/finishremotesubscribe.php:151 -#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 -#: lib/oauthstore.php:291 -msgid "Error inserting avatar" -msgstr "" - -#: ../actions/finishremotesubscribe.php:143 -#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 -#: lib/oauthstore.php:283 -msgid "Error inserting new profile" -msgstr "" - -#: ../actions/finishremotesubscribe.php:167 -#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 -#: lib/oauthstore.php:311 -msgid "Error inserting remote profile" -msgstr "" - -#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 -#: actions/recoverpassword.php:301 -msgid "Error saving address confirmation." -msgstr "" - -#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 actions/userauthorization.php:203 -msgid "Error saving remote profile" -msgstr "" - -#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 -#: lib/openid.php:238 -msgid "Error saving the profile." -msgstr "" - -#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 -#: lib/openid.php:249 -msgid "Error saving the user." -msgstr "" - -#: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 -#: actions/passwordsettings.php:175 -msgid "Error saving user; invalid." -msgstr "" - -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -msgid "Error setting user." -msgstr "" - -#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 -#: actions/finishaddopenid.php:131 -msgid "Error updating profile" -msgstr "" - -#: ../actions/finishremotesubscribe.php:161 -#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 -#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 -msgid "Error updating remote profile" -msgstr "" - -#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 -#: actions/recoverpassword.php:86 -msgid "Error with confirmation code." -msgstr "" - #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 #: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" @@ -1034,11 +676,6 @@ msgstr "Eksisterende nick" msgid "FAQ" msgstr "OSS/FAQ" -#: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 -msgid "Failed updating avatar." -msgstr "" - #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 #: actions/allrss.php:110 actions/allrss.php:118 @@ -1059,22 +696,6 @@ msgstr "Feed for svar til %s" msgid "Feed for tag %s" msgstr "Feed for taggen %s" -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - -#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" - #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 #: actions/profilesettings.php:103 actions/register.php:391 @@ -1123,29 +744,6 @@ msgstr "Hjem" msgid "Homepage" msgstr "Hjemmesiden" -#: ../actions/profilesettings.php:95 ../actions/register.php:76 -#: actions/profilesettings.php:210 actions/register.php:83 -#: actions/editgroup.php:192 actions/newgroup.php:143 -#: actions/profilesettings.php:199 actions/register.php:168 -#: actions/editgroup.php:194 actions/newgroup.php:144 -#: actions/profilesettings.php:200 actions/register.php:205 -#: actions/apigroupcreate.php:244 actions/editgroup.php:195 -#: actions/newgroup.php:139 actions/profilesettings.php:215 -#: actions/register.php:211 -msgid "Homepage is not a valid URL." -msgstr "" - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" - #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -1156,25 +754,6 @@ msgstr "IM-adresse" msgid "IM Settings" msgstr "Innstillinger for IM" -#: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" - -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 @@ -1182,13 +761,6 @@ msgstr "" msgid "Incoming email" msgstr "innkommende e-post" -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" - #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 #: actions/passwordsettings.php:164 @@ -1203,12 +775,8 @@ msgstr "Feil brukernavn eller passord" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Instruksjoner om hvordan du kan gjenopprette ditt passord har blitt sendt " -"til din registrerte e-postadresse." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Instruksjoner om hvordan du kan gjenopprette ditt passord har blitt sendt til din registrerte e-postadresse." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1216,55 +784,18 @@ msgstr "" msgid "Invalid avatar URL '%s'" msgstr "Ugyldig avatar-URL '%s'" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "" - #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Ugyldig hjemmeside '%s'" -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "" - #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 #: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "Ugyldig profil-URL '%s'" -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "" - #: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." @@ -1280,92 +811,12 @@ msgstr "Ugyldig størrelse" msgid "Invalid username or password." msgstr "Ugyldig brukernavn eller passord" -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" - -#: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 actions/imsettings.php:302 -msgid "Jabber ID already belongs to another user." -msgstr "" - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" - #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 #: actions/profilesettings.php:144 msgid "Language" msgstr "Språk" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" - -#: ../actions/profilesettings.php:52 ../actions/register.php:173 -#: actions/profilesettings.php:85 actions/register.php:187 -#: actions/profilesettings.php:117 actions/register.php:408 -#: actions/showgroup.php:244 actions/showstream.php:271 -#: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 actions/showgroup.php:246 -#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 -#: actions/register.php:454 actions/showgroup.php:251 -#: actions/showstream.php:229 actions/userauthorization.php:128 -#: lib/groupeditform.php:171 lib/profilelist.php:185 -#: actions/profilesettings.php:132 actions/register.php:464 -#: actions/showgroup.php:256 actions/showstream.php:282 -#: actions/userauthorization.php:158 lib/groupeditform.php:177 -#: lib/profilelist.php:218 -msgid "Location" -msgstr "" - -#: ../actions/profilesettings.php:104 ../actions/register.php:85 -#: ../actions/updateprofile.php:108 actions/profilesettings.php:219 -#: actions/register.php:92 actions/updateprofile.php:109 -#: actions/editgroup.php:201 actions/newgroup.php:152 -#: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 actions/updateprofile.php:114 -#: actions/editgroup.php:203 actions/newgroup.php:153 -#: actions/profilesettings.php:209 actions/register.php:214 -#: actions/apigroupcreate.php:272 actions/editgroup.php:204 -#: actions/newgroup.php:148 actions/profilesettings.php:225 -#: actions/register.php:221 -msgid "Location is too long (max 255 chars)." -msgstr "" - #: ../actions/login.php:97 ../actions/login.php:106 #: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 @@ -1386,14 +837,6 @@ msgstr "Logg inn" msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Logg inn med en [OpenID](%%doc.openid%%)-konto." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" - #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" @@ -1410,19 +853,6 @@ msgstr "Lengre navn, helst ditt \"ekte\" navn" msgid "Lost or forgotten password?" msgstr "Mistet eller glemt passordet?" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -1434,22 +864,6 @@ msgstr "Medlem siden" msgid "Microblog by %s" msgstr "Mikroblogg av %s" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 -msgid "My text and files are available under " -msgstr "" - #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 @@ -1457,28 +871,11 @@ msgstr "" msgid "New" msgstr "Ny" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nytt nick" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "" - #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 @@ -1487,11 +884,6 @@ msgstr "" msgid "New password" msgstr "Nytt passord" -#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 -#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 -msgid "New password successfully saved. You are now logged in." -msgstr "" - #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 #: actions/profilesettings.php:74 actions/register.php:165 @@ -1522,80 +914,21 @@ msgstr "Nick" msgid "Nickname already in use. Try another one." msgstr "Det nicket er allerede i bruk. Prøv et annet." -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" - #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Dette nicket er ikke tillatt" -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "" - #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 #: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Nick eller e-postadresse" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" - #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Ingen Jabber ID." -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "" - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "" - #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 #: actions/emailsettings.php:304 actions/emailsettings.php:311 #: actions/emailsettings.php:319 @@ -1606,177 +939,6 @@ msgstr "Ingen e-postadresse." msgid "No id." msgstr "Ingen id." -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - -#: ../actions/finishremotesubscribe.php:65 -#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 -msgid "No nickname provided by remote server." -msgstr "" - -#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 -#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 -#: actions/leavegroup.php:76 -msgid "No nickname." -msgstr "" - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "" - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "" - -#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 -#: actions/recoverpassword.php:287 -msgid "No registered email address for that user." -msgstr "" - -#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 -#: actions/userauthorization.php:57 -msgid "No request found!" -msgstr "" - -#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 -#: actions/noticesearch.php:69 actions/peoplesearch.php:69 -#: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 actions/noticesearch.php:117 -msgid "No results" -msgstr "" - -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "" - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "" - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "" - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "" - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "" - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "" - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "" - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 -msgid "Not a supported data format." -msgstr "" - #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1810,44 +972,11 @@ msgstr "Ugyldig e-postadresse." msgid "Not a valid nickname." msgstr "Ugyldig nick." -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "" - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "" - #: ../actions/finishremotesubscribe.php:51 #: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 msgid "Not authorized." msgstr "Ikke autorisert." -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -msgid "Not found" -msgstr "" - #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 #: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 @@ -1868,43 +997,6 @@ msgstr "" msgid "Not logged in." msgstr "Ikke logget inn." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1916,24 +1008,6 @@ msgstr "Gammelt passord" msgid "OpenID" msgstr "OpenID" -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "" - #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 @@ -1949,20 +1023,6 @@ msgstr "OpenID-URL" msgid "OpenID authentication cancelled." msgstr "OpenID-autentifisering avbrutt." -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "" - #: ../actions/openidsettings.php:144 actions/openidsettings.php:153 #: actions/openidsettings.php:231 msgid "OpenID removed." @@ -1973,16 +1033,6 @@ msgstr "OpenID fjernet" msgid "OpenID settings" msgstr "Innstillinger for OpenID" -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "" - #: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 #: ../actions/register.php:153 ../lib/settingsaction.php:93 #: actions/finishopenidlogin.php:96 actions/login.php:102 @@ -1996,26 +1046,12 @@ msgstr "" msgid "Password" msgstr "Passord" -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "" - #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 #: actions/recoverpassword.php:331 actions/recoverpassword.php:349 #: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "Passordet må bestå av 6 eller flere tegn." -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "" - #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 @@ -2024,97 +1060,11 @@ msgstr "" msgid "Password saved." msgstr "Passordet ble lagret" -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -msgid "Passwords don't match." -msgstr "" - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "" - #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Personlig" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "" - #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 #: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 @@ -2122,33 +1072,6 @@ msgstr "" msgid "Profile" msgstr "Profil" -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "" - #: ../actions/imsettings.php:79 actions/imsettings.php:80 #: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." @@ -2171,46 +1094,6 @@ msgstr "Nyeste Tagger" msgid "Recover" msgstr "Gjenopprett" -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 -msgid "Register" -msgstr "" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 -msgid "Registration successful" -msgstr "" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "" - #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 #: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 @@ -2218,16 +1101,6 @@ msgstr "" msgid "Remember me" msgstr "Husk meg" -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "" - #: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 #: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 #: ../actions/smssettings.php:50 ../actions/smssettings.php:84 @@ -2249,12 +1122,6 @@ msgstr "Fjern" msgid "Remove OpenID" msgstr "Fjern OpenID" -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" - #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 msgid "Replies" @@ -2276,19 +1143,6 @@ msgstr "Svar til %s" msgid "Reset" msgstr "Nullstill" -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - #: ../actions/smssettings.php:67 actions/smssettings.php:67 #: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" @@ -2299,21 +1153,6 @@ msgstr "Telefonnummer for SMS" msgid "SMS Settings" msgstr "Innstillinger for SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -msgid "Same as password above. Required." -msgstr "" - #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -2341,31 +1180,6 @@ msgstr "Lagre" msgid "Search" msgstr "Søk" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" - #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 #: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 @@ -2375,71 +1189,6 @@ msgstr "" msgid "Send" msgstr "Send" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "" - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "" - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "" - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "" - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -2452,58 +1201,6 @@ msgstr "Kilde" msgid "Statistics" msgstr "Statistikk" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -msgid "Subscribe" -msgstr "" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "" - #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 @@ -2525,26 +1222,6 @@ msgstr "Tekst" msgid "Text search" msgstr "Tekst-søk" -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "" - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "" - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" - #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." @@ -2590,170 +1267,12 @@ msgstr "Det er ikke ditt telefonnummer." msgid "That is the wrong IM address." msgstr "Det er feil IM-adresse." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "" - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "" - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "" - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "" - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "" - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "" - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "" - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "" - -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -msgid "This method requires a POST." -msgstr "" - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "" - #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 #: actions/profilesettings.php:154 msgid "Timezone" msgstr "Tidssone" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 -msgid "Two user ids or screen_names must be supplied." -msgstr "" - #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 #: actions/profilesettings.php:109 actions/register.php:398 @@ -2762,100 +1281,6 @@ msgstr "" msgid "URL of your homepage, blog, or profile on another site" msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -msgid "Unexpected form submission." -msgstr "" - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "" - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "" - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "" - -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -2863,100 +1288,6 @@ msgstr "" msgid "Upload" msgstr "Last opp" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" - -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 -msgid "User has no profile." -msgstr "" - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "" - -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" - -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "" - -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "" - -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "" - -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "" - #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 @@ -2966,139 +1297,11 @@ msgstr "" msgid "Yes" msgstr "Ja" -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "" - -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "Du er allerede logget inn!" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" - -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "" - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "" - -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" - -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" - -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "" - -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 -msgid "You can't register if you don't agree to the license." -msgstr "" - -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "" - -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "" - -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" - -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" - #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" @@ -3158,782 +1361,19 @@ msgstr "omtrent én time siden" msgid "delete" msgstr "slett" -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "" - #: ../actions/noticesearch.php:137 ../actions/showstream.php:415 #: ../lib/stream.php:124 actions/noticesearch.php:143 #: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 msgid "reply" msgstr "svar" -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "" - -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -msgid "Password must be 6 or more characters." -msgstr "" - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" - -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "" - -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" - #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s og venner" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" - #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -3942,51 +1382,6 @@ msgstr "" msgid "Avatar settings" msgstr "Innstillinger for IM" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -3994,74 +1389,11 @@ msgstr "" msgid "Lost our file." msgstr "Klarte ikke å lagre profil." -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" - -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "" - -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Du er allerede logget inn!" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " -msgstr "" - -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "" - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" - #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -4085,24 +1417,6 @@ msgstr "Nytt nick" msgid "No such group" msgstr "Klarte ikke å lagre profil." -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "" - #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy @@ -4114,74 +1428,11 @@ msgstr "Bioen er for lang (max 140 tegn)" msgid "Could not update group." msgstr "Klarte ikke å oppdatere bruker." -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "" - #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "Venter på bekreftelse på dette telefonnummeret" -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "" - -#: actions/emailsettings.php:343 -msgid "A confirmation code was sent to the email address you added. " -msgstr "" - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" - -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "" - #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 @@ -4190,235 +1441,49 @@ msgstr "" msgid "Before" msgstr "Tidligere »" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" - #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "Feed for %s sine venner" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "Klarte ikke å oppdatere bruker." -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" - -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "" - -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" - #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "Profil" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "" - -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "" - -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "" - -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Avataren har blitt oppdatert." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "" - -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Opprett en ny konto" -#: actions/groupsearch.php:57 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" - #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Tekst-søk" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" - -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "" - #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Bekreftelseskode" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" - #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Du er allerede logget inn!" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "" - -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" - #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -4427,48 +1492,12 @@ msgstr "" msgid "No such group." msgstr "Klarte ikke å lagre profil." -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "" - -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "" - #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "Klarte ikke å oppdatere bruker." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" - #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -4486,34 +1515,6 @@ msgstr "Klarte ikke å lagre avatar-informasjonen" msgid "That's too long. " msgstr "Den filen er for stor." -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" - -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "" - -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" - #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -4529,24 +1530,11 @@ msgstr "Fjern OpenID" msgid "Other Settings" msgstr "Innstillinger for IM" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "Søk" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" - #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -4565,30 +1553,10 @@ msgid "Password change" msgstr "Passordet ble lagret" #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "Ugyldig e-postadresse" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "" - -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - #: actions/profilesettings.php:144 #, fuzzy msgid "Automatically subscribe to whoever " @@ -4597,7 +1565,7 @@ msgstr "Abonner " #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" msgstr "Ugyldig hjemmeside '%s'" @@ -4607,59 +1575,6 @@ msgstr "Ugyldig hjemmeside '%s'" msgid "Couldn't save tags." msgstr "Klarte ikke å lagre profil." -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" -msgstr "" - -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" - -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "" - -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "" - -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - -#: actions/register.php:368 -msgid "1-64 lowercase letters or numbers, " -msgstr "" - -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "" - #: actions/register.php:398 #, fuzzy msgid "URL of your homepage, blog, " @@ -4670,86 +1585,18 @@ msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside." msgid "Describe yourself and your " msgstr "Beskriv degselv og dine interesser med 140 tegn" -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "" - -#: actions/register.php:432 -msgid " except this private data: password, " -msgstr "" - -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" - #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "Svar til %s" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "" - -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Klarte ikke å lagre profil." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 -msgid "Note" -msgstr "" - -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" -msgstr "" - #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 #: actions/showgroup.php:430 actions/showgroup.php:381 @@ -4758,36 +1605,6 @@ msgstr "" msgid "Members" msgstr "Medlem siden" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "" - -#: actions/showstream.php:73 actions/showstream.php:78 -#, php-format -msgid "%s, page %d" -msgstr "" - #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -4800,64 +1617,16 @@ msgstr "Profil" msgid "User profile" msgstr "Klarte ikke å lagre profil." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -msgid "User actions" -msgstr "" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 -msgid "Send a direct message to this user" -msgstr "" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 -msgid "Message" -msgstr "" - #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Alle abonnementer" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/smssettings.php:128 -msgid "Phone number, no punctuation or spaces, " -msgstr "" - -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "" - #: actions/smssettings.php:335 #, fuzzy msgid "A confirmation code was sent to the phone number you added. " msgstr "Venter på bekreftelse på dette telefonnummeret" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" - -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "" - #: actions/subedit.php:83 #, fuzzy msgid "Could not save subscription." @@ -4868,48 +1637,16 @@ msgstr "Klarte ikke å lagre avatar-informasjonen" msgid "Not a local user." msgstr "Ugyldig OpenID" -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "" - -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "" - -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "" - -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "" - #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "Alle abonnementer" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "Alle abonnementer" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "" - -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "" - #: actions/subscriptions.php:122 actions/subscriptions.php:124 #: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy @@ -4917,26 +1654,17 @@ msgid "Jabber" msgstr "Ingen Jabber ID." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "Mikroblogg av %s" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" msgstr "Ikke logget inn." -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "" - #: actions/tagother.php:65 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Tag %s" msgstr "Tagger" @@ -4945,243 +1673,42 @@ msgstr "Tagger" msgid "Tag user" msgstr "Tagger" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "" - #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" msgstr "Mikroblogg av %s" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" - #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Ingen id." -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "" - #: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Nytt passord" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "" - -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "" - -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "" - -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" - -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "" - -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "" - -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" - -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "" - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "" - -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" - #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Om" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Opprett en ny konto" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "" - #: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Hjelp" -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "" - -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "" - -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "" - -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "" - -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "" - -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "" - -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -5195,39 +1722,17 @@ msgstr "Opprett en ny konto" msgid "Published" msgstr "Offentlig" -#: lib/favorform.php:114 lib/favorform.php:140 -msgid "Favor this notice" -msgstr "" - -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - #: lib/galleryaction.php:121 #, fuzzy msgid "Filter tags" msgstr "Feed for taggen %s" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" - #: lib/galleryaction.php:137 lib/galleryaction.php:138 #: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "Tagger" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -5244,52 +1749,11 @@ msgstr "Alle abonnementer" msgid "Describe the group or topic in 140 chars" msgstr "Beskriv degselv og dine interesser med 140 tegn" -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" - -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" - #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logg ut" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" - -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "" - #: lib/joinform.php:114 #, fuzzy msgid "Join" @@ -5310,67 +1774,11 @@ msgstr "Ugyldig brukernavn eller passord" msgid "Sign up for a new account" msgstr "Opprett en ny konto" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" - -#: lib/mail.php:236 -#, php-format -msgid "%1$s is now listening to " -msgstr "" - -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "" - #: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Homepage: %s\n" msgstr "Hjemmesiden: %s\n" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "" - -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - -#: lib/mail.php:555 -#, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "" - -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "" - #: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 #: lib/noticeform.php:173 #, fuzzy @@ -5382,150 +1790,46 @@ msgstr "6 eller flere tegn" msgid "in reply to" msgstr "svar" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "" - #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "svar" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "" - #: lib/noticelist.php:474 actions/avatarsettings.php:148 #: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "slett" -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" - -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "" - #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 #, fuzzy msgid "Public" msgstr "Offentlig" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "" - #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy msgid "Recent tags" msgstr "Nyeste Tagger" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "" - -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "" - -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "" - -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" - -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" -msgstr "" - #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "Svar til %s" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "" - -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "" - -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "" - -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "" - -#: lib/unblockform.php:120 lib/unblockform.php:150 -#: actions/blockedfromgroup.php:313 -msgid "Unblock this user" -msgstr "" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "" - #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed for %s sine venner" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed for %s sine venner" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Feed for %s sine venner" @@ -5534,146 +1838,30 @@ msgstr "Feed for %s sine venner" msgid "You and friends" msgstr "%s og venner" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" - #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Brukerbildet har blitt oppdatert." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Mikroblogg av %s" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" - #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "Søkestrøm for «%s»" -#: actions/openidlogin.php:66 -#, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" -msgstr "" - -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" - #: actions/public.php:135 actions/public.php:143 actions/public.php:159 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "%s offentlig strøm" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"utenom disse private dataene: passord, epost, adresse, lynmeldingsadresse og " -"telefonnummer." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "utenom disse private dataene: passord, epost, adresse, lynmeldingsadresse og telefonnummer." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5681,44 +1869,18 @@ msgstr "" msgid "Created" msgstr "Opprett" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Klarte ikke å lagre profil." #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Profil" -#: actions/showstream.php:163 actions/showstream.php:128 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:170 actions/showstream.php:135 -#, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "" - -#: actions/showstream.php:177 actions/showstream.php:142 -#, php-format -msgid "Notice feed for %s (Atom)" -msgstr "" - #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Feed for taggen %s" @@ -5734,47 +1896,10 @@ msgstr "Brukerbilde" msgid "Edit profile settings" msgstr "Endre profilinnstillingene dine" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"En bekreftelseskode ble sendt til telefonnummeret du la til. Sjekk innboksen " -"din for koden, og hvordan du skal bruke den." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "En bekreftelseskode ble sendt til telefonnummeret du la til. Sjekk innboksen din for koden, og hvordan du skal bruke den." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5789,284 +1914,26 @@ msgstr "" msgid "No such user!" msgstr "Klarte ikke å lagre profil." -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s lytter nå til dine notiser på %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Vennlig hilsen,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s lytter nå til dine notiser på %2$s.\n\n %3$s\n\nVennlig hilsen,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Søk" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -msgid "No such attachment." -msgstr "" - -#: actions/block.php:149 -msgid "Do not block this user from this group" -msgstr "" - -#: actions/block.php:150 -msgid "Block this user from this group" -msgstr "" - #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Klarte ikke å lagre profil." #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s og venner" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - -#: actions/blockedfromgroup.php:281 -msgid "Unblock user from group" -msgstr "" - #: actions/conversation.php:99 #, fuzzy msgid "Conversation" @@ -6077,56 +1944,26 @@ msgstr "Bekreftelseskode" msgid "Do not delete this notice" msgstr "Kan ikke slette notisen." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Ugyldig hjemmeside '%s'" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Det nicket er allerede i bruk. Prøv et annet." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Klarte ikke å lagre avatar-informasjonen" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6137,68 +1974,16 @@ msgstr "Nytt nick" msgid "No notice" msgstr "Nytt nick" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "Ugyldig nick." -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." msgstr "Du er allerede logget inn!" -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "" - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" -msgstr "" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6207,428 +1992,44 @@ msgstr "" msgid "Couldn't update your design." msgstr "Klarte ikke å oppdatere bruker." -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -msgid "Design preferences saved." -msgstr "" - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - -#: actions/groupsearch.php:79 actions/noticesearch.php:117 -#: actions/peoplesearch.php:83 -msgid "No results." -msgstr "" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." -msgstr "" - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Klarte ikke å lagre profil." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" -msgstr "" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Instruksjoner om hvordan du kan gjenopprette ditt passord har blitt sendt " -"til din registrerte e-postadresse." - -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Instruksjoner om hvordan du kan gjenopprette ditt passord har blitt sendt til din registrerte e-postadresse." #: actions/recoverpassword.php:188 #, fuzzy msgid "Password recover" msgstr "Passordet ble lagret" -#: actions/register.php:86 -msgid "Sorry, invalid invitation code." -msgstr "" - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -msgid "Subscribe to a remote user" -msgstr "" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "%s og venner" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Ugyldig OpenID" #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Tagger" -#: actions/showstream.php:121 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s lytter nå til dine notiser på %2$s." -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" - #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Feed for taggen %s" @@ -6637,44 +2038,28 @@ msgstr "Feed for taggen %s" msgid "This status is already a favorite!" msgstr "Det er allerede din e-postadresse." -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "Klarte ikke å oppdatere bruker." -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Klarte ikke å oppdatere bruker." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Oppdateringer som svarer til %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Mikroblogg av %s" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -6685,126 +2070,31 @@ msgstr "Alle abonnementer" msgid "Profile design" msgstr "Profil" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Du er allerede logget inn!" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -msgid "Problem saving notice. Too long." -msgstr "" - -#: classes/User.php:319 classes/User.php:327 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Klarte ikke å lagre profil." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profil" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Last opp" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Endre passordet ditt" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6820,186 +2110,24 @@ msgstr "Søk" msgid "Links" msgstr "Logg inn" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - -#: lib/groupnav.php:100 -msgid "Blocked" -msgstr "" - -#: lib/groupnav.php:101 -#, php-format -msgid "%s blocked users" -msgstr "" - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -msgid "in context" -msgstr "" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "Søk" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - -#: lib/webcolor.php:82 -#, php-format -msgid "%s is not a valid color!" -msgstr "" - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "Klarte ikke å lagre profil." -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "" - #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." msgstr "Klarte ikke å oppdatere bruker." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Bioen er for lang (max 140 tegn)" @@ -7009,7 +2137,7 @@ msgid "You are already a member of that group." msgstr "Du er allerede logget inn!" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Klarte ikke å oppdatere bruker." @@ -7019,79 +2147,20 @@ msgid "You are not a member of this group." msgstr "Du er allerede logget inn!" #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Klarte ikke å oppdatere bruker." -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 -#, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." -msgstr "" - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Bioen er for lang (max 140 tegn)" -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - #: actions/finishremotesubscribe.php:106 #, fuzzy msgid "You are not authorized." msgstr "Ikke autorisert." -#: actions/finishremotesubscribe.php:109 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/getfile.php:75 #, fuzzy msgid "No such file." @@ -7102,47 +2171,13 @@ msgstr "Klarte ikke å lagre profil." msgid "Cannot read file." msgstr "Klarte ikke å lagre profil." -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - -#: actions/imsettings.php:89 -msgid "IM is not available." -msgstr "" - -#: actions/login.php:259 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Alle oppdateringer for søket: «%s»" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Beskriv degselv og dine interesser med 140 tegn" @@ -7152,326 +2187,72 @@ msgid "Describe yourself and your interests" msgstr "Beskriv degselv og dine interesser med 140 tegn" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "«Om meg» er for lang (maks 140 tegn)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Svar til %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Svar til %s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed for %s sine venner" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed for %s sine venner" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Feed for %s sine venner" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Klarte ikke å lagre profil." -#: actions/shownotice.php:90 -msgid "Notice deleted." -msgstr "" - -#: actions/smssettings.php:91 -msgid "SMS is not available." -msgstr "" - -#: actions/tag.php:92 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Kan ikke lese brukerbilde-URL «%s»" -#: actions/userauthorization.php:348 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - -#: lib/action.php:435 -msgid "Connect to services" -msgstr "" - -#: lib/action.php:785 -msgid "Site content license" -msgstr "" - #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Svar til %s" -#: lib/command.php:441 -msgid "Error saving notice." -msgstr "" - -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Fant ikke bekreftelseskode." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "Beskriv degselv og dine interesser med 140 tegn" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Beskriv degselv og dine interesser med 140 tegn" -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "" - -#: lib/mail.php:554 -#, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "fra" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" - -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 7837106bd3..f1364843df 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -9,14 +9,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:59:08+0000\n" +"PO-Revision-Date: 2009-11-06 12:24:02+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: out-statusnet\n" @@ -30,11 +29,8 @@ msgstr " Stroom doorzoeken naar \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " -"telefoonnummer." +msgid " except this private data: password, email address, IM address, phone number." +msgstr " behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -56,60 +52,8 @@ msgstr "%1$s heeft u uitgenodigd voor %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s heeft u uitgenodigd voor %2$s (%3$s).\n" -"\n" -"%2$s is een microblogdienst waarmee u mensen op de hoogte kunt houden van " -"wat u interesseert en bezig houdt.\n" -"\n" -"U kunt ook nieuws over uzelf of uw ideeën en gedachten met anderen delen. " -"Het is ook de ideale plek om mensen te ontmoeten met dezelfde interesses als " -"u.\n" -"\n" -"%1$s schreef:\n" -"\n" -"%4$s\n" -"\n" -"U kunt %1$s's profielpagina op %2$s hier bekijken:\n" -"\n" -"%5$s\n" -"\n" -"Als u het wilt proberen, klik dan op de verwijzing hieronder om de " -"uitnodiging te accepteren.\n" -"\n" -"%6$s\n" -"\n" -"Als u geen interesse hebt, kunt u dit bericht negeren. Bedankt voor uw " -"geduld.\n" -"\n" -"Met vriendelijke groet, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s heeft u uitgenodigd voor %2$s (%3$s).\n\n%2$s is een microblogdienst waarmee u mensen op de hoogte kunt houden van wat u interesseert en bezig houdt.\n\nU kunt ook nieuws over uzelf of uw ideeën en gedachten met anderen delen. Het is ook de ideale plek om mensen te ontmoeten met dezelfde interesses als u.\n\n%1$s schreef:\n\n%4$s\n\nU kunt %1$s's profielpagina op %2$s hier bekijken:\n\n%5$s\n\nAls u het wilt proberen, klik dan op de verwijzing hieronder om de uitnodiging te accepteren.\n\n%6$s\n\nAls u geen interesse hebt, kunt u dit bericht negeren. Bedankt voor uw geduld.\n\nMet vriendelijke groet, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -119,20 +63,8 @@ msgstr "%1$s volgt nu uw berichten %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s volgt nu uw berichten op %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Met vriendelijke groet,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s volgt nu uw berichten op %2$s.\n\n %3$s\n\nMet vriendelijke groet,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -208,22 +140,14 @@ msgstr "%s updates van iedereen" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"U ontvangt snel een e-mailbericht met daarin instructies over hoe u uw e-" -"mail kunt bevestigen." +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "U ontvangt snel een e-mailbericht met daarin instructies over hoe u uw e-mail kunt bevestigen." #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." -"broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -233,9 +157,7 @@ msgstr "**%%site.name%%** is een microblogdienst. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -". Van de oorspronkelijke auteurs dient de volledige naam of gebruikersnaam " -"te worden vermeld." +msgstr ". Van de oorspronkelijke auteurs dient de volledige naam of gebruikersnaam te worden vermeld." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -269,30 +191,17 @@ msgstr "Zes of meer tekens. Verplicht" #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Er is een bevestigingscode verstuurd naar het opgegeven IM-adres. U moet " -"ermee akkoord gaan dat %s berichten aan u verzendt." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Er is een bevestigingscode verstuurd naar het opgegeven IM-adres. U moet ermee akkoord gaan dat %s berichten aan u verzendt." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Een bevestigingscode is verzonden naar het e-mailadres dat u hebt " -"toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies " -"hoe het te gebruiken." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Een bevestigingscode is verzonden naar het e-mailadres dat u hebt toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies hoe het te gebruiken." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Er is een bevestigingscode verzonden naar het telefoonnummer dat u hebt " -"toegevoegd. Controleer uw inbox (en spambox!) voor de code en instructies." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Er is een bevestigingscode verzonden naar het telefoonnummer dat u hebt toegevoegd. Controleer uw inbox (en spambox!) voor de code en instructies." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -472,11 +381,8 @@ msgstr "Voortaan automatisch aanmelden. Niet gebruiken op gedeelde computers!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Automatisch abonneren bij abonnement op mij (beste voor automatische " -"processen)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Automatisch abonneren bij abonnement op mij (beste voor automatische processen)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -495,22 +401,13 @@ msgstr "De avatar is bijgewerkt." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Er wordt gewacht op bevestiging van dit adres. Controleer uw Jabber/GTalk-" -"gebruiker op een bericht met nadere instructies. Hebt u %s aan uw " -"contactenlijst toegevoegd?" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Er wordt gewacht op bevestiging van dit adres. Controleer uw Jabber/GTalk-gebruiker op een bericht met nadere instructies. Hebt u %s aan uw contactenlijst toegevoegd?" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Er wordt gewacht op bevestiging van dit adres. Controleer uw inbox en uw " -"spambox voor een bericht met nadere instructies." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Er wordt gewacht op bevestiging van dit adres. Controleer uw inbox en uw spambox voor een bericht met nadere instructies." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -647,37 +544,8 @@ msgstr "De bevestigingscode niet gevonden." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Gefeliciteerd, %s! Welkom bij %%%%site.name%%%%. Hier staan aan aantal " -"handelingen die u wellicht uit wilt voeren:\n" -"\n" -"* Naar uw [profiel](%s) gaan en uw eerste bericht verzenden;\n" -"* Een [Jabber/GTalk-adres](%%%%action.imsettings%%%%) toevoegen zodat u " -"vandaaruit mededelingen kunt verzenden;\n" -"* [Gebruikers zoeken](%%%%action.peoplesearch%%%%) die u al kent of waarmee " -"u interesses deelt;\n" -"* [Uw profiel](%%%%action.profilesettings%%%%) bijwerken om anderen meer " -"over uzelf te vertellen;\n" -"* De [online documentatie](%%%%doc.help%%%%) raadplegen voor mogelijkheden " -"die u nog niet kent.\n" -"\n" -"Dank u wel voor het registreren en we hopen dat deze dienst u biedt wat u " -"ervan verwacht." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Gefeliciteerd, %s! Welkom bij %%%%site.name%%%%. Hier staan aan aantal handelingen die u wellicht uit wilt voeren:\n\n* Naar uw [profiel](%s) gaan en uw eerste bericht verzenden;\n* Een [Jabber/GTalk-adres](%%%%action.imsettings%%%%) toevoegen zodat u vandaaruit mededelingen kunt verzenden;\n* [Gebruikers zoeken](%%%%action.peoplesearch%%%%) die u al kent of waarmee u interesses deelt;\n* [Uw profiel](%%%%action.profilesettings%%%%) bijwerken om anderen meer over uzelf te vertellen;\n* De [online documentatie](%%%%doc.help%%%%) raadplegen voor mogelijkheden die u nog niet kent.\n\nDank u wel voor het registreren en we hopen dat deze dienst u biedt wat u ervan verwacht." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -744,15 +612,12 @@ msgstr "Kan niet abonneren " #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "" -"Het was niet mogelijk het bevestigde e-mailadres voor de gebruiker bij te " -"werken." +msgstr "Het was niet mogelijk het bevestigde e-mailadres voor de gebruiker bij te werken." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "" -"Het was niet mogelijk de verzoekentokens om te zetten naar toegangstokens." +msgstr "Het was niet mogelijk de verzoekentokens om te zetten naar toegangstokens." #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -805,9 +670,7 @@ msgstr "Het profiel kon niet opgeslagen worden." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 #: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." -msgstr "" -"Het was niet mogelijk de instelling voor automatisch abonneren voor de " -"gebruiker bij te werken." +msgstr "Het was niet mogelijk de instelling voor automatisch abonneren voor de gebruiker bij te werken." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 @@ -860,9 +723,7 @@ msgstr "Nieuw gebruiker aanmaken" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." -msgstr "" -"Bezig met het aanmaken van een nieuwe OpenID-gebruiker bij een bestaande " -"gebruiker." +msgstr "Bezig met het aanmaken van een nieuwe OpenID-gebruiker bij een bestaande gebruiker." #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 @@ -893,8 +754,7 @@ msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" -msgstr "" -"Er is een databasefout opgetreden bij het invoegen van het antwoord: %s" +msgstr "Er is een databasefout opgetreden bij het invoegen van het antwoord: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 #: actions/deletenotice.php:79 actions/deletenotice.php:111 @@ -967,8 +827,7 @@ msgstr "Er is een fout opgetreden tijdens het autoriseren van het token" #: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 #: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." -msgstr "" -"Er is een fout opgetreden tijdens het koppelen van de gebruiker aan OpenID." +msgstr "Er is een fout opgetreden tijdens het koppelen van de gebruiker aan OpenID." #: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 #: actions/finishaddopenid.php:126 @@ -991,8 +850,7 @@ msgstr "Er is een fout opgetreden tijdens het invoegen van een nieuw profiel" #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 #: lib/oauthstore.php:311 msgid "Error inserting remote profile" -msgstr "" -"Er is een fout opgetreden tijdens het invoegen in het profiel op afstand." +msgstr "Er is een fout opgetreden tijdens het invoegen in het profiel op afstand." #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 #: actions/recoverpassword.php:280 actions/recoverpassword.php:298 @@ -1003,8 +861,7 @@ msgstr "Er is een fout opgetreden bij het opslaan van de adresbevestiging." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 #: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" -msgstr "" -"Er is een fout opgetreden tijdens het opslaan van het profiel op afstand." +msgstr "Er is een fout opgetreden tijdens het opslaan van het profiel op afstand." #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 #: lib/openid.php:238 @@ -1042,8 +899,7 @@ msgstr "Er is een fout opgetreden tijdens het bijwerken van het profiel" #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 #: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" -msgstr "" -"Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." +msgstr "Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." #: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 #: actions/recoverpassword.php:86 @@ -1096,12 +952,8 @@ msgid "Find people on this site" msgstr "Gebruikers op deze site vinden" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Om veiligheidsredenen moet u uw gebruikersnaam en wachtwoord nogmaals " -"invoeren alvorens u uw instellingen kunt wijzigen." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Om veiligheidsredenen moet u uw gebruikersnaam en wachtwoord nogmaals invoeren alvorens u uw instellingen kunt wijzigen." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1186,28 +1038,16 @@ msgstr "IM-instellingen" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Als u al een gebruiker hebt, meld dan aan met uw gebruikersnaam en " -"wachtwoord om met uw OpenID te koppelen." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Als u al een gebruiker hebt, meld dan aan met uw gebruikersnaam en wachtwoord om met uw OpenID te koppelen." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Als u een OpenID aan uw gebruiker wilt toevoegen, vul het dan in het veld " -"hieronder in en klik op \"Toevoegen\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Als u een OpenID aan uw gebruiker wilt toevoegen, vul het dan in het veld hieronder in en klik op \"Toevoegen\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Als u uw wachwoord kwijt bent, dan kunnen we u een nieuw wachtwoord sturen " -"op het e-mailadres dat u bij uw gebruiker hebt geregistreerd." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Als u uw wachwoord kwijt bent, dan kunnen we u een nieuw wachtwoord sturen op het e-mailadres dat u bij uw gebruiker hebt geregistreerd." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1237,12 +1077,8 @@ msgstr "De gebruikersnaam of wachtwoord is onjuist." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"De instructies om uw wachtwoord te herstellen zijn verstuurd naar het e-" -"mailadres dat voor uw gebruiker is geregistreerd." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "De instructies om uw wachtwoord te herstellen zijn verstuurd naar het e-mailadres dat voor uw gebruiker is geregistreerd." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1338,14 +1174,8 @@ msgstr "Nieuwe gebruikers uitnodigen" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"De site werkt met de [StatusNet](http://status.net/) microblogsoftware, " -"versie %s, beschikbaar onder de [GNU Affero General Public License](http://" -"www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "De site werkt met de [StatusNet](http://status.net/) microblogsoftware, versie %s, beschikbaar onder de [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1355,12 +1185,8 @@ msgstr "Het Jabber-ID wordt al gebruikt door een andere gebruiker." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber of GTalk adres, zoals \"JouwNaam@example.org\". Zorg ervoor dat je " -"eerst % aan je contactenlijst in je IM-programma of in GTalk toevoegt." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber-ID of GTalk-adres, zoals \"gebruiker@example.org\". Zorg ervoor dat u %s eerst aan uw contactenlijst in uw IM-programma of in GTalk toevoegt." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1423,28 +1249,22 @@ msgstr "Aanmelden" #: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "Log in met een [OpenID](%%doc.openid%%) account." +msgstr "Aanmelden met een [OpenID-gebruiker](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Log in met je gebruikersnaam en wachtwoord. Heb je nog geen gebruikersnaam? " -"[Registreer](%%action.register%%) dan een nieuw account, of probeer [OpenID]" -"(%%action.openidlogin%%)." +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen gebruikersnaam? [Registreer](%%action.register%%) dan een nieuw gebruiker, of probeer [OpenID](%%action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" -msgstr "Uitloggen" +msgstr "Afmelden" #: ../actions/register.php:166 actions/register.php:180 #: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" -msgstr "Langere naam, mogelijk je \"eigen\" naam" +msgstr "Een langere naam, mogelijk uw echte naam" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 @@ -1457,13 +1277,13 @@ msgstr "Wachtwoord kwijt of vergeten?" #: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "Maak een nieuw emailadres aan voor te posten naar; verwijder de oude." +msgstr "Een nieuw e-mailadres instellen voor het onvangen van e-mail; verwijdert het eerder geinstelde e-mailadres." #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 #, php-format msgid "Manage how you get email from %%site.name%%." -msgstr "Geef hier aan hoe je de notificaties wilt van %%site.name%%." +msgstr "E-mail ontvangen van %%site.name%% beheren." #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 @@ -1479,13 +1299,8 @@ msgstr "Microblog van %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Je provider van je mobiel. Als je weet welke provider je SMS over MAIL kan " -"verzorgen en niet in de lijst staat kan je een verzoek bij ons doen, liefst " -"met de gegevens erbij. laat ons per mail iets weten %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "De provider van uw mobiele telefoon. Als u een provider kent die e-mail via SMS ondersteunt, maar nog niet in de lijst is opgenomen, laat dit ons dan via e-mail weten op het e-mailadres %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1493,7 +1308,7 @@ msgstr "" #: actions/register.php:430 actions/finishopenidlogin.php:106 #: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " -msgstr "Mijn tekst en bestanden zijn beschikbaar onder_" +msgstr "Mijn teksten en bestanden zijn beschikbaar onder " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 @@ -1505,14 +1320,14 @@ msgstr "Nieuw" #: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" -msgstr "Nieuw email adres om te posten aan %s" +msgstr "Nieuw e-mailadres om e-mail te versturen aan %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 #: actions/emailsettings.php:465 actions/emailsettings.php:472 #: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." -msgstr "Nieuw binnenkomende emailadres is toegevoegd" +msgstr "Het nieuwe binnenkomende e-mailadres is toegevoegd." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 @@ -1535,7 +1350,7 @@ msgstr "Nieuw wachtwoord" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "Nieuw wachtwoord is opgeslagen. Je bent nu ingelogd." +msgstr "Het nieuwe wachtwoord is opgeslagen. U bent nu aangemeld." #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1565,7 +1380,7 @@ msgstr "Gebruikersnaam" #: actions/newgroup.php:130 actions/profilesettings.php:231 #: actions/register.php:202 msgid "Nickname already in use. Try another one." -msgstr "Gebruikersnaam al in gebruik. Probeer een andere." +msgstr "De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." #: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 #: ../actions/register.php:67 ../actions/updateprofile.php:77 @@ -1581,24 +1396,22 @@ msgstr "Gebruikersnaam al in gebruik. Probeer een andere." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Gebruikersnaam moet bestaan uit alleen kleine letters en cijfers en geen " -"spaties." +msgstr "De gebruikersnaam moet alleen bestaan uit kleine letters en cijfers, en mag geen spaties bevatten." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." -msgstr "Gebruikersnaam niet toegestaan." +msgstr "De opgegeven gebruikersnaam is niet toegestaan." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 #: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "Gebruikersnaam van de gebruiker die je wilt volgen" +msgstr "De gebruikersnaam van de gebruiker die u wilt volgen" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 #: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" -msgstr "Gebruikersnaam of e-mail" +msgstr "Gebruikersnaam of e-mailadres" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 @@ -1617,17 +1430,17 @@ msgstr "Geen Jabber-ID." #: actions/userauthorization.php:153 actions/userauthorization.php:192 #: actions/userauthorization.php:225 msgid "No authorization request!" -msgstr "Geen autorisatie verzoek!" +msgstr "Geen autorisatieverzoek!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 #: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." -msgstr "Geen provider geselecteerd" +msgstr "Er is geen provider geselecteerd." #: ../actions/smssettings.php:316 actions/smssettings.php:324 #: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" -msgstr "Geen code ingevuld" +msgstr "Er is geen code ingevoerd" #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 @@ -1647,7 +1460,7 @@ msgstr "Geen inhoud!" #: actions/emailsettings.php:304 actions/emailsettings.php:311 #: actions/emailsettings.php:319 msgid "No email address." -msgstr "Geen emailadres" +msgstr "Geen e-mailadres" #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." @@ -1658,12 +1471,12 @@ msgstr "Geen ID." #: actions/smssettings.php:505 actions/smssettings.php:506 #: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." -msgstr "Geen binnenkomende emailadres" +msgstr "Geen binnenkomend e-mailadres" #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." -msgstr "Geen gebruikersnaam verschaft door de server op afstand." +msgstr "De server aan de andere kant heeft geen gebruikersnaam opgegeven." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 @@ -1679,23 +1492,23 @@ msgstr "Geen gebruikersnaam." #: actions/emailsettings.php:378 actions/imsettings.php:351 #: actions/smssettings.php:370 msgid "No pending confirmation to cancel." -msgstr "Geen bevestiging in behandeling om te annuleren." +msgstr "Er is geen openstaand bevestigingsverzoek om te annuleren." #: ../actions/smssettings.php:176 actions/smssettings.php:184 #: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." -msgstr "Geen telefoonnummer" +msgstr "Geen telefoonnummer." #: ../actions/finishremotesubscribe.php:72 #: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." -msgstr "Geen profiel-URL teruggestuurd door de server." +msgstr "Er is geen profiel-URL teruggestuurd door de server." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 msgid "No registered email address for that user." -msgstr "Geen geregistreerd e-mailadres voor die gebruiker." +msgstr "Die gebruiker heeft geen e-mailadres geregistreerd." #: ../actions/userauthorization.php:49 actions/userauthorization.php:55 #: actions/userauthorization.php:57 @@ -1721,18 +1534,18 @@ msgstr "Geen afmeting." #: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 #: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." -msgstr "Geen status gevonden met dit ID" +msgstr "Er is geen status gevonden met dit ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 #: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 #: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." -msgstr "Geen status gevonden met dat ID" +msgstr "Er is geen status gevonden met dit ID." #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." -msgstr "Die OpenID is niet bekend." +msgstr "Het opgegeven OpenID bestaat niet." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 #: actions/doc.php:69 @@ -1745,7 +1558,7 @@ msgstr "Onbekend document." #: lib/deleteaction.php:51 actions/deletenotice.php:52 #: actions/shownotice.php:92 msgid "No such notice." -msgstr "Onbekend bericht." +msgstr "De mededeling bestaat niet." #: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 #: actions/recoverpassword.php:62 @@ -1798,11 +1611,11 @@ msgstr "Onbekende gebruiker." #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 #: actions/recoverpassword.php:272 msgid "No user with that email address or username." -msgstr "Geen gebruiker met dit emailadres of gebruikersnaam" +msgstr "Er bestaat geen gebruiker met het opgegeven e-mailadres of de opgegeven gebruikersnaam." #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" -msgstr "Niemand te tonen!" +msgstr "Geen weer te geven gebruikers!" #: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 #: actions/recoverpassword.php:66 @@ -1822,7 +1635,7 @@ msgstr "Geen geregistreerde gebruiker" #: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 #: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." -msgstr "Geen juiste ingevulde gegevens" +msgstr "Geen ondersteund gegevensformaat." #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 @@ -1870,13 +1683,13 @@ msgstr "Geen geldige profiel-URL (geen XRDS gedefinieerd)." #: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 #: actions/remotesubscribe.php:143 msgid "Not a valid profile URL (no YADIS document)." -msgstr "Geen geldige profiel-URL (geen YADIS document)." +msgstr "Geen geldige profiel-URL (geen YADIS-document)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 #: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 #: lib/imagefile.php:96 msgid "Not an image or corrupt file." -msgstr "Geen afbeelding of beschadigd bestand." +msgstr "Het bestand is geen afbeelding of het bestand is beschadigd." #: ../actions/finishremotesubscribe.php:51 #: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 @@ -1913,7 +1726,7 @@ msgstr "Niet gevonden" #: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 #: actions/unsubscribe.php:52 msgid "Not logged in." -msgstr "Niet ingelogd." +msgstr "Niet aangemeld." #: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." @@ -1922,19 +1735,19 @@ msgstr "Niet geabonneerd!" #: ../actions/opensearch.php:35 actions/opensearch.php:35 #: actions/opensearch.php:67 msgid "Notice Search" -msgstr "Bericht zoeken" +msgstr "Mededeling zoeken" #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 #, php-format msgid "Notice feed for %s" -msgstr "Berichten-feed voor %s" +msgstr "Mededelingenfeed voor %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 #: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" -msgstr "Bericht heeft geen profiel" +msgstr "Mededeling heeft geen profiel" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 @@ -1942,7 +1755,7 @@ msgstr "Bericht heeft geen profiel" #: actions/conversation.php:149 lib/facebookaction.php:572 #: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" -msgstr "Berichten" +msgstr "Mededelingen" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 #: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 @@ -1950,7 +1763,7 @@ msgstr "Berichten" #: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" -msgstr "Berichten tagged met %s" +msgstr "Mededelingen met het label %s" #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 @@ -1966,7 +1779,7 @@ msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 #: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" -msgstr "OpenID-account instellen" +msgstr "OpenID-gebruiker instellen" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 #: lib/openid.php:269 @@ -1979,7 +1792,7 @@ msgstr "OpenID automatisch verzenden" #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 #: actions/openidlogin.php:89 msgid "OpenID Login" -msgstr "Log in met OpenID" +msgstr "Aanmelden met OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 @@ -1993,7 +1806,7 @@ msgstr "OpenID-URL" #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 #: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." -msgstr "OpenID-authenticatie geannuleerd." +msgstr "De OpenID-authenticatie is geannuleerd." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 @@ -2022,12 +1835,12 @@ msgstr "OpenID-instellingen." #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 #: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." -msgstr "Eventueel een persoonlijke boodschap aan de uitnodiging" +msgstr "Persoonlijk bericht bij de uitnodiging (optioneel)." #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." -msgstr "Gedeeltelijke uploaden." +msgstr "Gedeeltelijke upload." #: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 #: ../actions/register.php:153 ../lib/settingsaction.php:93 @@ -2046,13 +1859,13 @@ msgstr "Wachtwoord" #: actions/recoverpassword.php:335 actions/recoverpassword.php:353 #: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." -msgstr "Wachtwoord en bevestiging komen niet overeen." +msgstr "Het wachtwoord en de bevestiging komen niet overeen." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 #: actions/recoverpassword.php:331 actions/recoverpassword.php:349 #: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." -msgstr "Wachtwoord moet uit 6 of meer tekens bestaan." +msgstr "Het wachtwoord moet uit zes of meer tekens bestaan." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 @@ -2068,7 +1881,7 @@ msgstr "Wachtwoordherstel aangevraagd" #: actions/passwordsettings.php:178 actions/recoverpassword.php:208 #: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." -msgstr "Wachtwoord opgeslagen." +msgstr "Het wachtwoord is opgeslagen." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 @@ -2076,12 +1889,12 @@ msgstr "Wachtwoord opgeslagen." #: actions/passwordsettings.php:150 actions/register.php:220 #: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." -msgstr "Wachtwoorden komen niet overeen." +msgstr "De wachtwoorden komen niet overeen." #: ../lib/searchaction.php:100 lib/searchaction.php:100 #: lib/searchgroupnav.php:80 msgid "People" -msgstr "Mensen" +msgstr "Gebruikers" #: ../actions/opensearch.php:33 actions/opensearch.php:33 #: actions/opensearch.php:64 @@ -2091,7 +1904,7 @@ msgstr "Mensen zoeken" #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" -msgstr "Mensen zoeken" +msgstr "Gebruikers zoeken" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 #: lib/personalgroupnav.php:99 @@ -2106,23 +1919,16 @@ msgstr "Persoonlijk bericht" #: ../actions/smssettings.php:69 actions/smssettings.php:69 #: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Telefoonnummer, geen spaties of leestekens, met netnummer" +msgstr "Telefoonnummer zonder spaties of leestekens, met netnummer" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Ga alsjeblieft deze details na om er zeker van te zijn dat je je wilt " -"abonneren op de berichten van deze gebruiker. Als je niet zojuist hebt " -"aangegeven je op iemand's berichten te willen abonneren, klik dan op " -"\"Annuleer\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Controleer alstublieft deze details om vast te stellen dat u zich wilt abonneren of de mededelingen van deze gebruiker. Als u niet hebt verzocht te abonneren op de mededelingen van een andere gebruiker, klik dan op \"Annuleren\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Plaats een bericht als mijn Jabber/GTalk-status verandert." +msgstr "Mededeling versturen als mijn Jabber/GTalk-status wijzigt." #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 @@ -2144,13 +1950,13 @@ msgstr "Voorkeuren" #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." -msgstr "Voorkeuren opgeslagen." +msgstr "De voorkeuren zijn opgeslagen." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:129 actions/profilesettings.php:130 #: actions/profilesettings.php:145 msgid "Preferred language" -msgstr "Taal voorkeur" +msgstr "Voorkeurstaal" #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 @@ -2163,7 +1969,7 @@ msgstr "Privacy" #: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 #: classes/Notice.php:293 msgid "Problem saving notice." -msgstr "Probleem bij opslaan bericht." +msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 @@ -2202,18 +2008,18 @@ msgstr "Openbare tijdlijn" #: ../actions/imsettings.php:79 actions/imsettings.php:80 #: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "Publiceer een MicroID voor mijn Jabber / GTalk adres" +msgstr "Een MicroID voor mijn Jabber/GTalk-adres publiceren." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 #: actions/emailsettings.php:178 actions/emailsettings.php:183 #: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." -msgstr "Publiceer een MicroID voor mijn email adres" +msgstr "Een MicroID voor mijn e-mailadres publiceren." #: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 #: actions/tag.php:76 msgid "Recent Tags" -msgstr "Recent Tags" +msgstr "Recente labels" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 @@ -2241,19 +2047,19 @@ msgstr "Herstelcode voor onbekende gebruiker." #: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 #: lib/logingroupnav.php:85 msgid "Register" -msgstr "Registreer" +msgstr "Registreren" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 #: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 #: actions/register.php:129 msgid "Registration not allowed." -msgstr "Registratie niet toegestaan" +msgstr "Registratie is niet toegestaan." #: ../actions/register.php:200 actions/register.php:214 #: actions/register.php:67 actions/register.php:106 msgid "Registration successful" -msgstr "Registratie gelukt" +msgstr "De registratie is voltooid" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 @@ -2266,7 +2072,7 @@ msgstr "Afwijzen" #: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 #: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" -msgstr "Onthoud mij" +msgstr "Aanmeldgegevens onthouden" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 #: actions/updateprofile.php:74 actions/updateprofile.php:76 @@ -2297,15 +2103,11 @@ msgstr "Verwijderen" #: ../actions/openidsettings.php:68 actions/openidsettings.php:69 #: actions/openidsettings.php:123 msgid "Remove OpenID" -msgstr "Verwijder OpenID" +msgstr "OpenID verwijderen" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Verwijderen van je enige OpenID zou het onmogelijk maken in te loggen! Als " -"je het moet verwijderen, voeg dan eerst een ander OpenID toe." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Als u uw enige OpenID verwijdert kunt u niet langer aanmelden. Als u het wilt verwijderen, voeg dan eerst een andere OpenID toe." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2344,27 +2146,27 @@ msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 #: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" -msgstr "SMS telefoonnummer" +msgstr "SMS-telefoonnummer" #: ../actions/smssettings.php:33 actions/smssettings.php:33 #: actions/smssettings.php:58 msgid "SMS Settings" -msgstr "SMS instellingen" +msgstr "SMS-instellingen" #: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" -msgstr "SMS bevestiging" +msgstr "SMS-bevestiging" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" -msgstr "Gelijk aan wachtwoord hierboven" +msgstr "Gelijk aan het wachtwoord hierboven" #: ../actions/register.php:156 actions/register.php:170 #: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." -msgstr "Gelijk aan wachtwoord hierboven. verplicht" +msgstr "Gelijk aan het wachtwoord hierboven. Verplicht" #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 @@ -2396,27 +2198,18 @@ msgstr "Zoeken" #: ../actions/noticesearch.php:80 actions/noticesearch.php:85 #: actions/noticesearch.php:127 msgid "Search Stream Feed" -msgstr "Doorzoek feed" +msgstr "Feed doorzoeken" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Zoek naar berichten op %%site.name%% op basis van hun inhoud. Scheid " -"zoektermen met spaties; ze moeten uit 3 of meer tekens bestaan." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Zoek naar mededelingen op %%site.name%% op basis van inhoud. Scheid zoektermen met spaties. Zoektermen moeten uit drie of meer tekens bestaan." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Zoek naar mensen op %%site.name%% op basis van hun naam, locatie of " -"interesses. Scheid de zoektermen met spaties; ze moeten uit 3 of meer tekens " -"bestaan." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Zoeken naar gebruikers op %%site.name%% op basis van hun naam, locatie of interesses. Scheid de zoektermen met spaties. Zoektermen moeten uit drie of meer tekens bestaan." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2430,7 +2223,7 @@ msgstr "Selecteer een provider" #: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 #: lib/noticeform.php:208 msgid "Send" -msgstr "Verstuur" +msgstr "Verzenden" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 @@ -2442,7 +2235,7 @@ msgstr "Stuur een email naar dit adres om een nieuw bericht te posten" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 #: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." -msgstr "Stuur mij een bericht van nieuwe abonnees via een email" +msgstr "Mij e-mailen bij nieuwe abonnementen." #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 @@ -2451,19 +2244,13 @@ msgstr "Stuur mij berichten via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Stuur me aankondigingen via sms, maar ik begrijp dat ik kosten van mijn " -"provider kan hebben." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Stuur me mededelingen via SMS. Ik begrijp dat dit exorbitante rekeningen van mijn provider kan opleveren." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Stuur me antwoorden via Jabber / GTalk van mensen op wie ik niet geabonneerd " -"ben." +msgstr "Stuur me antwoorden via Jabber/GTalk van gebruiker op wie ik niet geabonneerd ben." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2474,16 +2261,16 @@ msgstr "Instellingen" #: actions/profilesettings.php:319 actions/profilesettings.php:318 #: actions/profilesettings.php:344 msgid "Settings saved." -msgstr "Instellingen opgeslagen." +msgstr "De instellingen zijn opgeslagen." #: ../actions/tag.php:60 actions/tag.php:60 msgid "Showing most popular tags from the last week" -msgstr "De meest populaire tags van de afgelopen week" +msgstr "De meest populaire labels van de afgelopen week" #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." -msgstr "Iemand anders heeft die OpenID al." +msgstr "Deze OpenID wordt al door een andere gebruiker gebruikt." #: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 #: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 @@ -2494,12 +2281,12 @@ msgstr "Er is iets eigenaardigs gebeurd." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 #: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." -msgstr "Sorry, inkomende mail is niet toegestaan" +msgstr "Inkomende e-mail is niet toegestaan." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 #: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." -msgstr "Sorry, dit adres is niet een juist mailadres van je." +msgstr "Dit is niet uw inkomende e-mailadres." #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 @@ -2519,7 +2306,7 @@ msgstr "Statistieken" #: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 #: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." -msgstr "Opgeslagen OpenID niet gevonden." +msgstr "Het opgeslagen OpenID is niet gevonden." #: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 @@ -2542,13 +2329,13 @@ msgstr "Abonnees" #: actions/userauthorization.php:338 actions/userauthorization.php:344 #: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" -msgstr "Abonnement geautoriseerd" +msgstr "Het abonnement is geautoriseerd" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 #: actions/userauthorization.php:349 actions/userauthorization.php:355 #: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" -msgstr "Abonnement afgewezen" +msgstr "Het abonnement is afgewezen" #: ../actions/showstream.php:230 ../actions/showstream.php:307 #: ../actions/subscriptions.php:27 actions/showstream.php:240 @@ -2563,7 +2350,7 @@ msgstr "Abonnementen" #: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 #: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." -msgstr "Systeemfout bij uploaden bestand." +msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 @@ -2574,7 +2361,7 @@ msgstr "Systeemfout bij uploaden bestand." #: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 #: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" -msgstr "Tags" +msgstr "Labels" #: ../lib/searchaction.php:104 lib/searchaction.php:104 #: lib/designsettings.php:217 @@ -2589,7 +2376,7 @@ msgstr "Tekst doorzoeken" #: ../actions/openidsettings.php:140 actions/openidsettings.php:149 #: actions/openidsettings.php:227 msgid "That OpenID does not belong to you." -msgstr "Die OpenID is niet van jou." +msgstr "Dit is niet uw OpenID." #: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 #: actions/confirmaddress.php:94 @@ -2599,12 +2386,12 @@ msgstr "Dit adres is al bevestigd." #: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 #: actions/confirmaddress.php:85 msgid "That confirmation code is not for you!" -msgstr "Die bevestigingscode is niet voor jou!" +msgstr "Dit is niet uw bevestigingscode!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 #: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." -msgstr "Dit Emailadres is al geregistreerd door iemand anders" +msgstr "Dit e-mailadres is al geregistreerd door een andere gebruiker." #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 @@ -2614,34 +2401,34 @@ msgstr "Dat bestand is te groot." #: ../actions/imsettings.php:170 actions/imsettings.php:178 #: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." -msgstr "Dat is al je Jabber-ID." +msgstr "U hebt dit al ingesteld als uw Jabber-ID." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 #: actions/emailsettings.php:318 actions/emailsettings.php:325 #: actions/emailsettings.php:333 msgid "That is already your email address." -msgstr "Dit is al je mailadres." +msgstr "U hebt dit al ingesteld als uw e-mailadres." #: ../actions/smssettings.php:188 actions/smssettings.php:196 #: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." -msgstr "Dit is al je telefoonnummer" +msgstr "U hebt dit al ingesteld als uw telefoonnummer." #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." -msgstr "Dat is niet je Jabber-ID." +msgstr "Dit is niet uw Jabber-ID." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 #: actions/emailsettings.php:397 actions/emailsettings.php:404 #: actions/emailsettings.php:412 msgid "That is not your email address." -msgstr "Dit is niet je emailadres" +msgstr "Dit is niet uw e-mailadres." #: ../actions/smssettings.php:257 actions/smssettings.php:265 #: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." -msgstr "Dit is niet je telefoonnummer" +msgstr "Dit is niet uw telefoonnummer." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 @@ -2654,12 +2441,12 @@ msgstr "Dat is het verkeerde IM-adres." #: ../actions/smssettings.php:233 actions/smssettings.php:241 #: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." -msgstr "Dit is het verkeerde bevestigings code/nummer" +msgstr "Dit is het verkeerde bevestigingsnummer." #: ../actions/smssettings.php:191 actions/smssettings.php:199 #: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." -msgstr "Dit telefoonnummer is al in gebruik door iemand" +msgstr "Dit telefoonnummer is al in gebruik bij een andere gebruiker." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 @@ -2669,19 +2456,19 @@ msgstr "Dit telefoonnummer is al in gebruik door iemand" #: actions/twitapistatuses.php:251 lib/facebookaction.php:477 #: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." -msgstr "Dat is te lang. Maximale bericht lengte is 140 tekens." +msgstr "Dat is te lang. De maximale lengte voor mededelingen is 140 tekens." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 #: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 #: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." -msgstr "Dat is te lang. Maximale bericht lengte is 255 tekens." +msgstr "Dat is te lang. De maximale lengte voor mededelingen is 255 tekens." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." -msgstr "Het adres \"%s\" is voor je account bevestigd." +msgstr "Het adres \"%s\" is voor uw gebruiker bevestigd." #: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 #: ../actions/smssettings.php:274 actions/emailsettings.php:282 @@ -2691,83 +2478,58 @@ msgstr "Het adres \"%s\" is voor je account bevestigd." #: actions/emailsettings.php:431 actions/imsettings.php:408 #: actions/smssettings.php:425 msgid "The address was removed." -msgstr "Het adres was verwijderd." +msgstr "Het adres is verwijderd." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Het abonnement is geautoriseerd maar er is geen callback-URL doorgegeven. " -"Loop de instructies van de site na voor details over hoe het abonnement te " -"autoriseren. Je abonnement-token is:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Het abonnement is geautoriseerd maar er is geen callback-URL doorgegeven. Controleer de instructies van de website voor details over hoe het abonnement te autoriseren." #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Het abonnement is afgewezen maar er is geen callback-URL doorgegeven. Loop " -"de instructies van de site na voor details over hoe het abonnement volledig " -"af te wijzen." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Het abonnement is afgewezen maar er is geen callback-URL doorgegeven. Controleer de instructies van de website voor details over hoe het abonnement volledig af te wijzen." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." -msgstr "Dit zijn de mensen die %s's berichten volgen." +msgstr "Dit zijn de gebruikers die de mededelingen van %s volgen." #: ../actions/subscribers.php:33 actions/subscribers.php:33 #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." -msgstr "Dit zijn de mensen die jouw berichten volgen." +msgstr "Dit zijn de gebruikers die uw mededelingen volgen." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 #: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." -msgstr "Dit zijn de mensen van wie %s de berichten volgt." +msgstr "Dit zijn de gebruikers waarvan %s de mededelingen volgt." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." -msgstr "Dit zijn de mensen van wie jij de berichten volgt." +msgstr "Dit zijn de gebruikers van wie u de mededelingen volgt." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Deze mensen zijn al geregistreerd en jij kan je automatisch bij hun " -"abonneren: " +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Deze gebruikers zijn al geregistreerd en u kunt zich automatisch bij hun abonneren:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." -msgstr "Deze bevestigingscode is te oud. Begin alsjeblieft opnieuw." +msgstr "Deze bevestigingscode is te oud. Begin alstublieft opnieuw." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Dit formulier zou zichzelf automatisch moeten versturen. Zoniet, klik dan op " -"de verstuurknop om naar je OpenID-provider te gaan." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Dit formulier zou zichzelf automatisch moeten versturen. Als dat niet gebeurt, klik dan op \"Opslaan\" om naar uw OpenID-provider te gaan." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Dit is de eerste keer dat je bij %s ingelogd bent dus moeten we je OpenID " -"koppelen aan een lokaal account. Je kunt ofwel een nieuw account aanmaken, " -"ofwel koppelen aan je bestaande account, als je er al een hebt." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Dit is de eerste keer dat u hebt aangemeld bij %s. U moet nu uw OpenID koppelen aan een lokale gebruiker. U kunt een nieuwe gebruiker aanmaken of verbinden via uw bestaande gebruiker, als u die hebt." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2777,7 +2539,7 @@ msgstr "" #: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 #: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." -msgstr "Dit vraagt om te posten of te verwijderen" +msgstr "Deze methode heeft een POST of DELETE nodig." #: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 #: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 @@ -2795,11 +2557,11 @@ msgstr "Dit vraagt om te posten of te verwijderen" #: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 #: actions/apistatusesupdate.php:109 msgid "This method requires a POST." -msgstr "Je moet hier dus posten" +msgstr "Deze methode heeft een POST nodig." #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" -msgstr "Deze pagina is niet beschikbaar in een mediatype dat jij accepteert" +msgstr "Deze pagina is niet beschikbaar in een mediatype dat u accepteert" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 @@ -2811,26 +2573,19 @@ msgstr "Tijdzone" #: actions/profilesettings.php:211 actions/profilesettings.php:212 #: actions/profilesettings.php:228 msgid "Timezone not selected." -msgstr "Tijdzone niet geselecteerd" +msgstr "Er is geen tijdzone geselecteerd." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Om je te abonneren kun je [inloggen](%%action.login%%), of een nieuw account " -"[registreren](%%action.register%%). Als je al een account op een " -"[compatibele microblogging-site](%%doc.openmublog%%) hebt, voer dan " -"hieronder je profiel-URL in." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Om u te abonneren kunt u [aanmelden](%%action.login%%), of een nieuw gebruiker [registreren](%%action.register%%). Als u al een gebruiker bij een [compatibele microblogsite](%%doc.openmublog%%) hebt, voer dan hieronder uw profiel-URL in." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 #: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." -msgstr "Twee gebruikers ID of namen moeten worden gegeven" +msgstr "Er moeten twee gebruikersnamen opgegeven worden." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2838,12 +2593,12 @@ msgstr "Twee gebruikers ID of namen moeten worden gegeven" #: actions/register.php:444 actions/profilesettings.php:117 #: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL van je homepage, blog, of profiel op een andere site" +msgstr "De URL van uw thuispagina, blog of profiel bij een andere website" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 #: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" -msgstr "URL van je profiel op een andere, compatibele microbloggingdienst" +msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst" #: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 #: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 @@ -2859,18 +2614,18 @@ msgstr "URL van je profiel op een andere, compatibele microbloggingdienst" #: actions/emailsettings.php:255 actions/grouplogo.php:319 #: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." -msgstr "Formulier onverwacht ingezonden." +msgstr "Het formulier is onverwacht ingezonden." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 #: actions/recoverpassword.php:323 actions/recoverpassword.php:341 #: actions/recoverpassword.php:344 msgid "Unexpected password reset." -msgstr "Wachtwoord onverwacht teruggesteld." +msgstr "Het wachtwoord is onverwacht opnieuw ingesteld." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 #: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" -msgstr "Onbekende aktie" +msgstr "Onbekende handeling" #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 @@ -2878,18 +2633,14 @@ msgid "Unknown version of OMB protocol." msgstr "Onbekende versie van het OMB-protocol." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Tenzij anders gespecificeerd valt de inhoud van deze site onder het " -"copyright van de auteurs en is beschikbaar onder de_" +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Tenzij anders gespecificeerd valt de inhoud van deze site onder het copyright van de auteurs en is beschikbaar onder de_" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 #, php-format msgid "Unrecognized address type %s" -msgstr "Onherkenbaar adrestype %s" +msgstr "Onbekend adrestype %s" #: ../actions/showstream.php:209 actions/showstream.php:219 #: lib/unsubscribeform.php:137 @@ -2912,12 +2663,12 @@ msgstr "Niet ondersteund beeldbestandsformaat." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 #: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" -msgstr "Bijwerkingen door SMS" +msgstr "Updates via SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 #: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" -msgstr "Bijwerkingen door de messenger (IM)" +msgstr "Updates via instant messenger (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 #: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 @@ -2925,7 +2676,7 @@ msgstr "Bijwerkingen door de messenger (IM)" #: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" -msgstr "Bijwerkingen van %1$s en vrienden op %2$s!" +msgstr "Updates van %1$s en vrienden op %2$s." #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 #: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 @@ -2934,7 +2685,7 @@ msgstr "Bijwerkingen van %1$s en vrienden op %2$s!" #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" -msgstr "Bijwerkingen van %1$s op %2$s!" +msgstr "Updates van %1$s op %2$s." #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 @@ -2944,27 +2695,17 @@ msgid "Upload" msgstr "Uploaden" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Hier kun je een nieuwe \"avatar\" (gebruikersafbeelding) uploaden. Je kunt " -"het plaatje achteraf niet bewerken, dus zorg ervoor dat het min of meer " -"vierkant is. Het moet ook onder site licentie vallen. Gebruik een afbeelding " -"die je eigendom is en die je wilt delen." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Hier kunt u een nieuwe \"avatar\" (gebruikersafbeelding) uploaden. U kunt het plaatje achteraf niet bewerken, dus zorg ervoor dat het min of meer vierkant is. Het moet ook onder de sitelicentie vallen. Gebruik een afbeelding die uw eigendom is en die u wilt delen." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" -msgstr "Upload een nieuwe profielfoto" +msgstr "Nieuwe profielafbeelding uploaden" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Gebruik deze pagina om je vrienden en collega´s uit te nodigen voor deze site" +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Gebruik deze pagina om uw vrienden en collega´s uit te nodigen deze dienst te gebruiken." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2999,7 +2740,7 @@ msgstr "Gebruiker waarnaar geluisterd wordt bestaat niet." #: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 #: actions/apiusershow.php:108 msgid "User has no profile." -msgstr "Gebruiker heeft geen profiel." +msgstr "Deze gebruiker heeft geen profiel." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 #: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 @@ -3014,13 +2755,13 @@ msgstr "Gebruiker niet gevonden" #: actions/profilesettings.php:139 actions/profilesettings.php:140 #: actions/profilesettings.php:155 msgid "What timezone are you normally in?" -msgstr "Welke tijdzone heb je normaal?" +msgstr "In welke tijdzone verblijft u meestal?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" -msgstr "Hoe staat het ermee, %s?" +msgstr "Hallo, %s." #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 @@ -3028,19 +2769,19 @@ msgstr "Hoe staat het ermee, %s?" #: actions/register.php:456 actions/profilesettings.php:134 #: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "Waar je bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" +msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 #: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" -msgstr "Foutief beeldbestandstype voor '%s'" +msgstr "Het beelbestandstype voor \"'%s\" is onjuist" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 #: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" -msgstr "Verkeerde afmeting van afbeelding bij '%s'" +msgstr "De afbeelding bij \"%s\" heeft verkeerde afmetingen" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 @@ -3054,70 +2795,55 @@ msgstr "Ja" #: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" -msgstr "Je hebt die OpenID al!" +msgstr "U hebt dit OpenID al gekoppeld." #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Je staat op het punt een bericht definitief te verwijderen._ _ Als dit " -"gebeurd kan het nooit meer teruggevonden worden." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "U staat op het punt een mededeling definitief te verwijderen. Deze handeling kan niet ongedaan gemaakt worden." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" -msgstr "Je bent al aangemeld!" +msgstr "U bent al aangemeld!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 #: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" -msgstr "Je bent bij deze abonnees al aangemeld:" +msgstr "U bent als geabonneerd op deze gebruikers:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 #: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." -msgstr "Je bent niet verbonden met deze gebruiker" +msgstr "U bent niet bevriend met de aangegeven gebruiker." #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" -msgstr "Hier kun je je wachtwoord wijzigen. Kies een goede!" +msgstr "Hier kunt u uw wachtwoord wijzigen. Kies een sterk wachtwoord!" #: ../actions/register.php:135 actions/register.php:145 msgid "You can create a new account to start posting notices." -msgstr "Je kunt een nieuw account aanmaken om berichten te gaan plaatsen." +msgstr "Als u een gebruiker registreet, kunt u mededelingen gaan versturen." #: ../actions/smssettings.php:28 actions/smssettings.php:28 #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Je kunt een SMS ontvangen via mail van %%site.name%%." +msgstr "U kunt SMS-berichten per e-mail ontvangen van %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Je kunt een OpenID van je account verwijderen door op de knop \"Verwijder\" " -"te klikken." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Verwijderen een OpenID van uw gebruiker door de klikken op \"Verwijderen\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"U kunt berichten verzenden en ontvangen via Jabber/GTalk [\"instant messages" -"\"](%%doc.im%%). Maak hieronder uw instellingen." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "U kunt berichten verzenden en ontvangen via Jabber/GTalk [\"instant messages\"](%%doc.im%%). Maak hieronder uw instellingen." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Je kunt hier je persoonlijke profielinformatie bijwerken zodat mensen meer " -"over je weten." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Hier kunt u uw persoonlijke profiel bijwerken met informatie over uzelf voor andere gebruikers." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3125,86 +2851,60 @@ msgstr "" #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" -msgstr "Je kunt het lokale abonnement gebruiken!" +msgstr "U kunt het lokale abonnement gebruiken!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 #: actions/finishopenidlogin.php:43 actions/register.php:149 #: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." -msgstr "Je kunt niet registreren als je niet met de licentie akkoord gaat." +msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 #: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" -msgstr "Je hebt dat profiel niet ingezonden" +msgstr "U hebt dat profiel niet ingezonden" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Je hebt een nieuw postadres op %1$s.\n" -"\n" -"Zend een email naar %2$s om een nieuwe post te zetten.\n" -"\n" -"Meer mail instructies vind je op %3$s.\n" -"\n" -"Met vriendelijke groet,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "U hebt een nieuw postadres op %1$s.\n\nZend een e-mail naar %2$s om nieuwe berichten te versturen.\n\nMeer informatie over e-mailen vindt u op %3$s.\n\nMet vriendelijke groet,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 #: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." -msgstr "Je mag geen status van een ander wissen" +msgstr "U kunt de status van een andere gebruiker niet verwijderen." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "" -"Je moet ingelogd zijn om andere te uit te nodigen om gebruik te maken van %s" +msgstr "U moet aangemeld zijn om anderen te kunnen uitnodigen gebruik te maken van %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"U wordt verwittigd wanneer uw genodigden aanvaarden de uitnodiging en te " -"registreren op de site. Bedankt voor de verspreiding en groei van de " -"gemeenschap!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "U wordt op de hoogte gesteld wanneer uw genodigden de uitnodiging accepteren en zich bij de site registreren. Dank u wel voor het laten groeien van de gemeenschap!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " -msgstr "Je bent geïdentificeerd. Vul hieronder een nieuw wachtwoord in." +msgstr "U bent geïdentificeerd. Voer hieronder een nieuw wachtwoord in. " #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 #: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" -msgstr "Je OpenID-URL" +msgstr "Uw OpenID-URL" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "Je gebruikersnaam op deze server, of je geregistreerde e-mailadres." +msgstr "Uw gebruikersnaam op deze server, of uw geregistreerde e-mailadres." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"Met [OpenID](%%doc.openid%%) kun je op vele sites inloggen met hetzelfde " -"gebruikersaccount. Hier kun je de aan je account gekoppelde OpenID's beheren." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "Met [OpenID](%%doc.openid%%) kunu op heel veel websites aanmelden met dezelfde gebruiker. U kunt hier uw gekoppelde OpenID's beheren." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3263,7 +2963,7 @@ msgstr "ongeveer een uur geleden" #: ../actions/showstream.php:423 ../lib/stream.php:132 #: actions/showstream.php:441 lib/stream.php:99 msgid "delete" -msgstr "Verwijderen" +msgstr "verwijderen" #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 @@ -3287,7 +2987,7 @@ msgstr "gelijk aan wachtwoord hierboven" #: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 #: actions/twitapistatuses.php:575 msgid "unsupported file type" -msgstr "Dit filetype is niet toegestaan" +msgstr "Dit bestandstype wordt niet ondersteund" #: ../lib/util.php:1309 lib/util.php:1443 msgid "« After" @@ -3327,36 +3027,36 @@ msgstr "« Later" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "Er is een problem ontstaan met je sessie, Porbeer nog eens aub." +msgstr "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, alstublieft." #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" -msgstr "Dit bericht is geen favoriet" +msgstr "Deze mededeling staats niet op uw favorietenlijst." #: actions/disfavor.php:63 actions/disfavor.php:87 #: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." -msgstr "Kan deze favoriet niet verwijderen" +msgstr "Het was niet mogelijk dit bericht van uw favorietenlijst te verwijderen." #: actions/disfavor.php:72 lib/favorform.php:140 msgid "Favor" -msgstr "Favoriet" +msgstr "Aan favorieten toevoegen" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "Stuur mij een Email als iemand mij als favoriet aanduid" +msgstr "Mij een e-mail sturen als iemand mijn mededeling als favoriet instelt." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." -msgstr "Stuur mij een Email als iemand mij een privebericht toezend" +msgstr "Mij een e-mail sturen als iemand mij een privébericht zendt." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 #: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 #: actions/favor.php:79 msgid "This notice is already a favorite!" -msgstr "Dit bericht is al een favoriet" +msgstr "Deze mededeling staat al in uw favorietenlijst." #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 @@ -3365,72 +3065,68 @@ msgstr "Dit bericht is al een favoriet" #: actions/twitapifavorites.php:133 lib/command.php:145 #: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." -msgstr "Kan geen favoriet aanmaken" +msgstr "Het was niet mogelijk een favoriet aan te maken." #: actions/favor.php:70 msgid "Disfavor" -msgstr "Niet favoriet" +msgstr "Uit favorieten verwijderen" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 #: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" -msgstr "%s favorite berichten" +msgstr "Favoriete mededelingen van %s" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 #: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" -msgstr "Feed voor favorieten berichten van %s" +msgstr "Feed met favoriete mededelingen van %s" #: actions/inbox.php:28 actions/inbox.php:59 #, php-format msgid "Inbox for %s - page %d" -msgstr "Inbox van %s - pagina %d" +msgstr "Postvak IN van %s - pagina %d" #: actions/inbox.php:30 actions/inbox.php:62 #, php-format msgid "Inbox for %s" -msgstr "Inbox van %s" +msgstr "Postvak IN van %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Dit is jouw inbox, waar je inkomende priveberichten staan" +msgstr "Dit is uw Postvak IN dat uw inkomende privéberichten bevat." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s heeft je uitgenodigd om hem te volgen op %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s heeft u uitgenodigd om hem te volgen op %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 msgid "Automatically login in the future; " -msgstr "Automatisch in de toekomst inloggen;_" +msgstr "In het vervolg automatisch aanmelden. " #: actions/login.php:122 actions/login.php:264 msgid "For security reasons, please re-enter your " -msgstr "Voor veiligheidsredenen herhaal hier je_" +msgstr "Herhaal hier om veiligheidsredenen uw " #: actions/login.php:126 actions/login.php:268 msgid "Login with your username and password. " -msgstr "Log in met je gebruikersnaam en paswoord._" +msgstr "Meld u aan met uw gebruikersnaam en wachtwoord. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 #: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." -msgstr "Dit is te lang. max. 140 karakters invoeren." +msgstr "Dit is te lang. De maximale lengte is 140 tekens." #: actions/newmessage.php:65 actions/newmessage.php:128 #: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." -msgstr "Geen begunstigde aangeduid" +msgstr "Er is geen ontvanger aangegeven." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 @@ -3439,7 +3135,7 @@ msgstr "Geen begunstigde aangeduid" #: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 #: lib/command.php:367 msgid "You can't send a message to this user." -msgstr "Je kunt geen bericht naar deze gebruiker zenden" +msgstr "U kunt geen bericht naar deze gebruiker zenden." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 @@ -3447,15 +3143,14 @@ msgstr "Je kunt geen bericht naar deze gebruiker zenden" #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Stuur geen berichten naar jezelf, spreek gewoon zachtjes tegen jezelf." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 #: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" -msgstr "Geen gebruiker gevonden zoals je zoekt" +msgstr "De opgegeven gebruiker bestaat niet" #: actions/newmessage.php:117 actions/newmessage.php:67 #: actions/newmessage.php:71 actions/newmessage.php:231 @@ -3464,402 +3159,16 @@ msgstr "Nieuw bericht" #: actions/noticesearch.php:95 actions/noticesearch.php:146 msgid "Notice without matching profile" -msgstr "Bericht zonder bekend profiel" +msgstr "Mededeling zonder bekend profiel" #: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" -"[OpenID](%%doc.openid%%) laat je toe om in meerdere sites in te loggen_" +msgstr "Met [OpenID](%%doc.openid%%) kunt u aanmelden bij heel veel websites " #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " -msgstr "wil je een OpenID toevoegen op je account hier_" - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -msgid "Password must be 6 or more characters." -msgstr "" - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" +msgstr "Als u een OpenID wilt toevoegen aan uw gebruiker, " #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 #: lib/command.php:194 lib/command.php:327 @@ -3867,128 +3176,17 @@ msgstr "" msgid "About: %s" msgstr "Over: %s" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - #: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 #: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Uw abonnement op %s is opgezegd" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - #: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 #: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Het is niet mogelijk de mededelingen uit te schakelen." -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" - #: lib/personal.php:66 lib/personalgroupnav.php:114 #: lib/personalgroupnav.php:115 msgid "User" @@ -4020,7 +3218,7 @@ msgstr "Twitter" #: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 msgid "Twitter integration options" -msgstr "Twitter integratieinstellingen" +msgstr "Instellingen voor Twitter-integratie" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 #: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 @@ -4085,11 +3283,6 @@ msgstr "Uitsnijden" msgid "There was a problem with your session token. " msgstr "Er was een probleem met uw sessietoken. " -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 #: actions/grouplogo.php:377 @@ -4126,18 +3319,10 @@ msgstr "Er is geen profiel met dat ID." msgid "Block user" msgstr "Gebruiker blokkeren" -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - #: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "U hebt deze gebruiker reeds geblokkeerd." -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - #: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been " @@ -4163,12 +3348,6 @@ msgstr "Groep %s bewerken" msgid "Inboxes must be enabled for groups to work" msgstr "Postvak IN moet ingeschakeld zijn voordat groepen kunnen werken" -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" - #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -4226,42 +3405,13 @@ msgstr "De instellingen zijn opgeslagen." msgid "Awaiting confirmation on this address. " msgstr "Dit adres wacht nog op bevestiging. " -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - #: actions/emailsettings.php:321 msgid "That email address already belongs " msgstr "Dat e-mailadres hoort al bij " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Er is een bevestigingscode verzonden naar het e-mailadres dat u hebt " -"opgegeven. " - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" +msgstr "Er is een bevestigingscode verzonden naar het e-mailadres dat u hebt opgegeven. " #: actions/facebookhome.php:218 actions/facebookhome.php:223 #: actions/facebookhome.php:217 @@ -4271,7 +3421,7 @@ msgstr "Overslaan" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 msgid "No notice content!" -msgstr "De kennisgeving heeft geen inhoud!" +msgstr "De mededeling heeft geen inhoud!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 #: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 @@ -4294,95 +3444,47 @@ msgstr "Na" msgid "Before" msgstr "Voor" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" - #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Uw vrienden uitnodigen %s te gebruiken" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - #: actions/facebookremove.php:56 msgid "Couldn't remove Facebook user." msgstr "Het was niet mogelijk de Facebook-gebruiker te verwijderen." -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" - #: actions/facebooksettings.php:67 msgid "Sync preferences saved." msgstr "De synchronisatievoorkeuren zijn opgeslagen." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" - #: actions/facebooksettings.php:106 msgid "Prefix" msgstr "Voorvoegsel" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 msgid "Sync preferences" msgstr "Synchronisatievoorkeuren" #: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" -msgstr "Favoriet verwijderen" +msgstr "Van favotietenlijst verwijderen" #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 #: lib/popularnoticesection.php:87 msgid "Popular notices" -msgstr "Populaire kennisgevingen" +msgstr "Populaire mededelingen" #: actions/favorited.php:67 #, php-format msgid "Popular notices, page %d" -msgstr "Populaire kennisgevingen, pagina %d" +msgstr "Populaire mededelingen, pagina %d" #: actions/favorited.php:79 msgid "The most popular notices on the site right now." -msgstr "De meest populaire berichten op de site op dit moment." +msgstr "De meest populaire mededelingen op de site op dit moment." #: actions/featured.php:69 lib/featureduserssection.php:82 #: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 @@ -4402,7 +3504,7 @@ msgstr "Een selectie van de actieve gebruikers op %s" #: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." -msgstr "Die gebruiker is geblokkeerd voor inschrijving" +msgstr "Die gebruiker heeft de mogelijkheid om te abonneren voor u geblokkeerd." #: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" @@ -4412,11 +3514,11 @@ msgstr "Geen ID" #: actions/grouplogo.php:144 actions/grouplogo.php:197 #: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" -msgstr "Groeps logo" +msgstr "Groepslogo" #: actions/grouplogo.php:149 msgid "You can upload a logo image for your group." -msgstr "Je kan hier een logo voor je groep uploaden" +msgstr "U kunt een logo voor uw groep uploaden." #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 @@ -4426,12 +3528,12 @@ msgstr "Logo geactualiseerd." #: actions/grouplogo.php:450 actions/grouplogo.php:403 #: actions/grouplogo.php:398 msgid "Failed updating logo." -msgstr "Actualiseren van je logo is niet gelukt." +msgstr "Het bijwerken van het logo is mislukt." #: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format msgid "%s group members" -msgstr "%s groeps leden" +msgstr "leden van de groep %s" #: actions/groupmembers.php:96 #, php-format @@ -4440,7 +3542,7 @@ msgstr "% groeps leden, pagina %d" #: actions/groupmembers.php:111 msgid "A list of the users in this group." -msgstr "Lijst van de leden in deze groep" +msgstr "Ledenlijst van deze groep" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 #: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 @@ -4453,32 +3555,23 @@ msgstr "Groepen" msgid "Groups, page %d" msgstr "Groepen, pagina %d" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" -msgstr "Maak een nieuw groep aan" +msgstr "Nieuwe groep aanmaken" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Zoek naar groepen op %%site.name%%, op basis van hun naam, locatie of " -"interesses. Scheid de zoektermen met spaties; ze moeten uit 3 of meer tekens " -"bestaan." +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Zoek naar groepen op %%site.name%%, op basis van hun naam, locatie of interesses. Scheid de zoektermen met spaties; ze moeten uit 3 of meer tekens bestaan." #: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" -msgstr "Groep zoeken" +msgstr "Groepen zoeken" #: actions/imsettings.php:70 msgid "You can send and receive notices through " -msgstr "Je kan berichten zenden en ontvangen via_" +msgstr "U kunt mededelingen zenden en ontvangen via " #: actions/imsettings.php:120 #, php-format @@ -4492,71 +3585,70 @@ msgstr "Stuur mij reacties via Jabber/GTalk." #: actions/imsettings.php:321 #, php-format msgid "A confirmation code was sent " -msgstr "Een bevestigingscode is gezonden naar_" +msgstr "Er is een bevestigingscode verzonden naar " #: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." -msgstr "Je moet ingelogd zijn om deze groep bij te wonen" +msgstr "U moet aangemeld zijn om lid te worden van een groep." #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" -msgstr "Je bent al aangemeld bij deze groep!" +msgstr "U bent al lid van deze groep" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" -msgstr "Kan de gebruiker %s niet aan de %s groep toevoegen " +msgstr "Het was niet mogelijk om de gebruiker %s toe te voegen aan de groep %s" #: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" -msgstr "% is bij de groep gekomen %s" +msgstr "%s is lid geworden van de groep %s" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "De inbox moet aan staan voor groepen om te kunnen functioneren" +msgstr "Postvak IN moet ingeschakeld zijn voordat groepen functioneren." #: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." -msgstr "Je moet ingelogd zijn om uit te schrijven uit de groep" +msgstr "U moet aangemeld zijn om een groep te kunnen verlaten." #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 #: lib/command.php:212 lib/command.php:263 msgid "No such group." -msgstr "Groep onbekend" +msgstr "De opgegeven groep bestaat niet." #: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." -msgstr "Je bent geen lid van deze groep" +msgstr "U bent geen lid van deze groep" #: actions/leavegroup.php:100 msgid "You may not leave a group while you are its administrator." -msgstr "" -"Als administrator/eigenaar van de groep kan je niet je lidmaatschap opgeven" +msgstr "Als u beheerder van een groep bent, kunt u deze niet verlaten." #: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." -msgstr "Kon geen member vinden" +msgstr "Er is geen groepslidmaatschap aangetroffen." #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" -msgstr "Kan de gebruiker %s niet verwijderen uit de groep %s" +msgstr "De gebruiker %s kon niet uit de groet %s verwijderd worden" #: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" -msgstr "%s heeft de groep verlaten %s" +msgstr "%s heeft de groep %s verlaten" #: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 #: actions/login.php:216 msgid "Login to site" -msgstr "Login op de website" +msgstr "Aanmelden" #: actions/microsummary.php:69 msgid "No current status" @@ -4568,67 +3660,64 @@ msgstr "Nieuwe groep" #: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." -msgstr "Gebruik dit formulier voor de nieuwe groep te maken" +msgstr "Gebruik dit formulier om een nieuwe groep aan te maken." #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." -msgstr "Kan de groep niet maken" +msgstr "Het was niet mogelijk de groep aan te maken." #: actions/newgroup.php:191 actions/newgroup.php:229 #: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." -msgstr "Kan de groeps-lidmaatschap niet aanmaken" +msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen." #: actions/newmessage.php:119 actions/newnotice.php:132 msgid "That's too long. " -msgstr "Dit is te lang._" +msgstr "Dat is te lang. " #: actions/newmessage.php:134 msgid "Don't send a message to yourself; " -msgstr "Geen berichten naar jezelf zenden; _" +msgstr "Zend uzelf geen berichten. " #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" -msgstr "Berichten gepubliceerd " +msgstr "De mededeling is verzonden" #: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 #: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 #: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" -msgstr "Ajax fout" +msgstr "Er is een Ajax-fout opgetreden" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Deze gebruiker is het niet mogelijk nudges te hebben en/of heeft een niet " -"bevestigd e-mailadres" +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Deze gebruiker is niet te porren of heeft zijn e-mailadres nog niet bevestigd." #: actions/nudge.php:94 msgid "Nudge sent" -msgstr "Nudge verzonden" +msgstr "De por is verzonden" #: actions/nudge.php:97 msgid "Nudge sent!" -msgstr "Nudge verzonden!" +msgstr "De por is verzonden!" #: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" -msgstr "Log in met OpenID" +msgstr "Aanmelden met OpenID" #: actions/openidsettings.php:128 msgid "Removing your only OpenID " -msgstr "Verwijder je enigste OpenID" +msgstr "Nu wordt uw laatste OpenID verwijderd " #: actions/othersettings.php:60 msgid "Other Settings" -msgstr "Andere instellingen" +msgstr "Overige instellingen" #: actions/othersettings.php:71 msgid "Manage various other options." -msgstr "Beheer verschillende andere optie´s" +msgstr "Overige instellingen beheren." #: actions/othersettings.php:93 msgid "URL Auto-shortening" @@ -4636,67 +3725,57 @@ msgstr "URL's automatisch inkorten" #: actions/othersettings.php:112 msgid "Service" -msgstr "Service" +msgstr "Dienst" #: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." -msgstr "Automatische verkorting dienst te gebruiken" +msgstr "Te gebruiken automatische verkortingsdienst." #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." -msgstr "URL verkorting dienst is te lang (max. 50tekens)." +msgstr "De URL voor de verkortingdienst is te lang (maximaal 50 tekens)." #: actions/passwordsettings.php:69 msgid "Change your password." -msgstr "Verander je wachtwoord" +msgstr "Wachtwoord wijzigen" #: actions/passwordsettings.php:89 actions/recoverpassword.php:228 #: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" -msgstr "Wachtwoord veranderd" +msgstr "Wachtwoord wijzigen" #: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" -msgstr "Geen geldige personen-tag: %s" +msgstr "Geen geldig gebruikerslabel: %s" #: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" -msgstr "Gebruikers eigen-tagged met %s - page %d" +msgstr "Gebruikers die zichzelf met %s hebben gelabeld - pagina %d" #: actions/peopletag.php:91 #, php-format msgid "These are users who have tagged themselves \"%s\" " -msgstr "Er zijn gebruikers die hebben hunzelf getagged \"%s\"" +msgstr "Dit zijn de gebruikers die zichzelf \"%s\" hebben gelabeld " #: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" -msgstr "Profiel informatie" - -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "" +msgstr "Profielinformatie" #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" -msgstr "Ongeldige tag: '%s'" +msgstr "Ongeldig label: '%s'" #: actions/profilesettings.php:311 actions/profilesettings.php:310 #: actions/profilesettings.php:336 msgid "Couldn't save tags." -msgstr "Kon de tags niet opslaan." +msgstr "Het was niet mogelijk de labels op te slaan." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 @@ -4709,78 +3788,61 @@ msgstr "Openbare tijdlijn, pagina %d" msgid "Could not retrieve public stream." msgstr "Het was niet mogelijk de publieke stream op te halen." -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - #: actions/publictagcloud.php:57 msgid "Public tag cloud" -msgstr "Publieke tag-wolk" +msgstr "Publieke woordwolk" #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " -msgstr "De meest recente en populairste tags %s_" +msgstr "De meest recente en populairste labels op %s " #: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" -msgstr "Tag-wolk" +msgstr "Woordwolk" #: actions/register.php:139 actions/register.php:349 actions/register.php:79 #: actions/register.php:177 actions/register.php:394 actions/register.php:183 #: actions/register.php:398 msgid "Sorry, only invited people can register." -msgstr "Sorry, maar alleen uitgenodigde mensen kunnen registeren" +msgstr "U kunt zich alleen registreren als u wordt uitgenodigd." #: actions/register.php:149 msgid "You can't register if you don't " -msgstr "Je kunt niet registreren als je niet_" +msgstr "U kunt zich niet registeren als u niet " #: actions/register.php:286 msgid "With this form you can create " -msgstr "Met dit formulier maak je_" +msgstr "Met dit formulier maakt u " #: actions/register.php:368 msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties_" +msgstr "Een to 64 kleine letters of cijfers, " #: actions/register.php:382 actions/register.php:386 msgid "Used only for updates, announcements, " -msgstr "Alleen gebruikt voor updates, aankondigingen _" +msgstr "Alleen gebruikt voor updates, aankondigingen, " #: actions/register.php:398 msgid "URL of your homepage, blog, " -msgstr "URL van je homepage, blog, _" +msgstr "URL van uw thuispagina, blog, " #: actions/register.php:404 msgid "Describe yourself and your " -msgstr "Beschrijf jezelf en je_" +msgstr "Beschrijf uzelf en uw " #: actions/register.php:410 msgid "Where you are, like \"City, " -msgstr "Waar je bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"_" +msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\", " #: actions/register.php:432 msgid " except this private data: password, " -msgstr "" -"_behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " -"telefoonnummer._" +msgstr " behalve de volgende privégegevens: wachtwoord, " #: actions/register.php:471 #, php-format msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Gefeliciteer, %s en welkom op de site \"%%site.name%%._" - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" +msgstr "Gefeliciteerd, %s. Welkom bij \"%%site.name%%. " #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 @@ -4791,7 +3853,7 @@ msgstr "Antwoorden aan %s, pagina %d" #: actions/showfavorites.php:79 #, php-format msgid "%s favorite notices, page %d" -msgstr "%s favoriete kennisgevingen, pagina %d" +msgstr "%s favoriete mededelingen, pagina %d" #: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format @@ -4801,12 +3863,12 @@ msgstr "%s groep" #: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" -msgstr "%s groep, pagina %d" +msgstr "groep %s, pagina %d" #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" -msgstr "Groeps profiel" +msgstr "Groepsprofiel" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 @@ -4828,24 +3890,24 @@ msgstr "URL" #: actions/showstream.php:312 actions/userauthorization.php:179 #: lib/profilelist.php:245 msgid "Note" -msgstr "Bericht" +msgstr "Opmerking" #: actions/showgroup.php:270 actions/showgroup.php:272 #: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" -msgstr "Groeps aktie" +msgstr "Groepshandelingen" #: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" -msgstr "Berichten-feed voor groep %s" +msgstr "Mededelingenfeed voor de groep %s" #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 #: actions/showgroup.php:430 actions/showgroup.php:381 #: actions/showgroup.php:438 msgid "Members" -msgstr "Lid" +msgstr "Leden" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 @@ -4863,16 +3925,12 @@ msgstr "Alle leden" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [micro-blogging]" -"(http://en.wikipedia.org/wiki/Micro-blogging) service_" +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/showmessage.php:98 msgid "Only the sender and recipient " -msgstr "Alleen de zender en ontvanger_" +msgstr "Alleen de afzender en ontvanger " #: actions/showstream.php:73 actions/showstream.php:78 #, php-format @@ -4898,12 +3956,12 @@ msgstr "Foto" #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" -msgstr "Gebruikers akties" +msgstr "Gebruikershandelingen" #: actions/showstream.php:342 actions/showstream.php:307 #: actions/showstream.php:390 msgid "Send a direct message to this user" -msgstr "Stuur de gebruiker een direct bericht" +msgstr "Deze gebruiker een direct bericht zenden" #: actions/showstream.php:343 actions/showstream.php:308 #: actions/showstream.php:391 @@ -4920,16 +3978,12 @@ msgstr "Alle groepen" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** heeft een account op %%%%site.name%%%%, een [micro-blogging](http://" -"en.wikipedia.org/wiki/Micro-blogging) service_" +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** heeft een gebruiker op %%%%site.name%%%%, een [microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " -msgstr "Telefoonnummer, geen leestekens of spaties,_" +msgstr "Telefoonnummer zonder leestekens of spaties, " #: actions/smssettings.php:162 msgid "Send me notices through SMS; " @@ -4937,9 +3991,7 @@ msgstr "Kennisgevingen via SMS naar mij sturen; " #: actions/smssettings.php:335 msgid "A confirmation code was sent to the phone number you added. " -msgstr "" -"Er is een bevestigingscode verstuurd naar het telefoonnummer dat u hebt " -"opgegeven. " +msgstr "Er is een bevestigingscode verstuurd naar het telefoonnummer dat u hebt opgegeven. " #: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" @@ -5009,11 +4061,6 @@ msgstr "Jabber" msgid "Notices tagged with %s, page %d" msgstr "Kennisgevingen met het label %s, pagina %d" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 msgid "Not logged in" msgstr "Niet aangemeld." @@ -5031,29 +4078,10 @@ msgstr "Label %s" msgid "Tag user" msgstr "Gebruiker labelen" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Het was niet mogelijk de labels op te slaan." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - #: actions/tagrss.php:35 msgid "No such tag." msgstr "Onbekend label." @@ -5118,7 +4146,7 @@ msgstr "Er is geen profiel met dat ID." #: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" -msgstr "Abonnement opgezegd" +msgstr "Het abonnement is opgezegd" #: actions/usergroups.php:63 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 @@ -5134,22 +4162,17 @@ msgstr "%s groepen, pagina %d" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." -msgstr "" -"Er was een probleem bij het opslaan vna de kennisgeving. De gebruiker is " -"onbekend." +msgstr "Er was een probleem bij het opslaan vna de kennisgeving. De gebruiker is onbekend." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer " -"het over enige tijd weer." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer het over enige tijd weer." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 msgid "You are banned from posting notices on this site." -msgstr "U mag geen mededelingen meer achterlaten op deze site." +msgstr "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" @@ -5190,10 +4213,6 @@ msgstr "Naar gebruikers of tekst zoeken" msgid "Account" msgstr "Gebruiker" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "" - #: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Met IM, SMS of Twitter verbinden" @@ -5222,10 +4241,6 @@ msgstr "Help me!" msgid "Site notice" msgstr "Kennisgeving van site" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Kennisgeving van pagina" @@ -5261,11 +4276,6 @@ msgstr "Blokkeren" msgid "Disfavor this notice" msgstr "Mededeling uit favorieten verwijderen" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 msgid " a new account." @@ -5279,7 +4289,7 @@ msgstr "Gepubliceerd" #: lib/favorform.php:114 lib/favorform.php:140 msgid "Favor this notice" -msgstr "Deze kennisgeving steunen" +msgstr "Deze kennisgeving op de favorietenlijst plaatsen" #: lib/feedlist.php:64 msgid "Export data" @@ -5323,10 +4333,8 @@ msgstr "Beschrijf de groep of het onderwerp in maximaal 140 karakters" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" -"Locatie voor de groep - als relevant. Iets als \"Plaats, regio, land\"." +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Locatie voor de groep - als relevant. Iets als \"Plaats, regio, land\"." #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" @@ -5354,15 +4362,6 @@ msgstr "Logo voor %s toevoegen of verwijderen" msgid "Groups with most members" msgstr "Groepen met de meeste leden" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" - #: lib/htmloutputter.php:104 msgid "This page is not available in a " msgstr "Deze pagina is niet beschikbaar in een " @@ -5383,18 +4382,10 @@ msgstr "Aanmelden met gebruikersnaam en wachtwoord" msgid "Sign up for a new account" msgstr "Nieuwe gebruiker aanmaken" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Hallo, %s.\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Hallo, %s.\n\n" #: lib/mail.php:236 #, php-format @@ -5413,22 +4404,8 @@ msgstr "Thuispagina: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Beschrijving: %s\n" -"\n" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "" - -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" +msgid "Bio: %s\n\n" +msgstr "Beschrijving: %s\n\n" #: lib/mail.php:555 #, php-format @@ -5479,18 +4456,6 @@ msgstr "Deze mededeling verwijderen" msgid "Delete" msgstr "Verwijderen" -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" - #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" @@ -5514,10 +4479,6 @@ msgstr "Gebruikersgroepen" msgid "Recent tags" msgstr "Recente labels" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Populair" @@ -5544,11 +4505,6 @@ msgstr "Gebruikers waarop %s een abonnement heeft" msgid "People subscribed to %s" msgstr "Gebruikers met een abonnement op %s" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 #, php-format @@ -5607,68 +4563,28 @@ msgstr "U en vrienden" #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" -"U kunt een persoonlijke avatar uploaden. De maximale bestandsgrootte is %s." +msgstr "U kunt een persoonlijke avatar uploaden. De maximale bestandsgrootte is %s." #: actions/avatarsettings.php:373 msgid "Avatar deleted." msgstr "De avatar is verwijderd." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"U staat op het punt een mededeling permanent te verwijderen. Als dit " -"uitgevoerd is, kan het niet ongedaan gemaakt worden." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "U staat op het punt een mededeling permanent te verwijderen. Als dit uitgevoerd is, kan het niet ongedaan gemaakt worden." #: actions/deletenotice.php:127 actions/deletenotice.php:157 msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Er is een probleem ontstaan met uw sessietoken. Probeer het nog een keer." +msgstr "Er is een probleem ontstaan met uw sessietoken. Probeer het nog een keer." #: actions/emailsettings.php:168 actions/emailsettings.php:174 msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" -"Mij een e-mail sturen als iemand mij een antwoord met \"@\" erin stuurt." - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" +msgstr "Mij een e-mail sturen als iemand mij een antwoord met \"@\" erin stuurt." #: actions/grouplogo.php:155 actions/grouplogo.php:150 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" -"Hier kunt u een logo voor uw groep uploaden. De maximale bestandsgrootte is %" -"s." - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" +msgid "You can upload a logo image for your group. The maximum file size is %s." +msgstr "Hier kunt u een logo voor uw groep uploaden. De maximale bestandsgrootte is %s." #: actions/grouprss.php:136 actions/grouprss.php:137 #, php-format @@ -5677,27 +4593,8 @@ msgstr "Microblog door de groep %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Zoeken naar groepen op %%site.name%% op basis van naam, locatie of " -"interesses of beschrijving. Scheid de zoektermen met spaties. Iedere " -"zoekterm moet uit drie of meer tekens bestaan." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Zoeken naar groepen op %%site.name%% op basis van naam, locatie of interesses of beschrijving. Scheid de zoektermen met spaties. Iedere zoekterm moet uit drie of meer tekens bestaan." #: actions/noticesearch.php:91 #, php-format @@ -5706,12 +4603,8 @@ msgstr "Zoekresultaten voor \"%s\" op %s" #: actions/openidlogin.php:66 #, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Om veiligheidsredenen vragen we u opnieuw aan te melden met uw [OpenID](%%" -"doc.openid%%) alvorens u uw instellingen kunt wijzigen." +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Om veiligheidsredenen vragen we u opnieuw aan te melden met uw [OpenID](%%doc.openid%%) alvorens u uw instellingen kunt wijzigen." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 msgid "Public Stream Feed (RSS 1.0)" @@ -5725,51 +4618,15 @@ msgstr "Publieke streamfeed (RSS 1.0)" msgid "Public Stream Feed (Atom)" msgstr "Publieke streamfeed (Atom)" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " -"telefoonnummer." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr " behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 msgid "Created" msgstr "Aangemaakt" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 msgid "Your profile" msgstr "Uw profiel" @@ -5809,46 +4666,9 @@ msgstr "Avatar bewerken" msgid "Edit profile settings" msgstr "Profielinstellingen bewerken" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Er is een bevestigingscode is verzonden naar het telefoonnummer dat u hebt " -"toegevoegd. Controleer uw telefoon voor de code en instructies." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Er is een bevestigingscode is verzonden naar het telefoonnummer dat u hebt toegevoegd. Controleer uw telefoon voor de code en instructies." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5862,85 +4682,14 @@ msgstr "" msgid "No such user!" msgstr "Deze gebruiker bestaat niet." -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" - #: actions/twittersettings.php:345 actions/twittersettings.php:362 #, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" -"Het was niet mogelijk de gebruikersgegeven voor \"%s\" op te halen van " -"Twitter." +msgstr "Het was niet mogelijk de gebruikersgegeven voor \"%s\" op te halen van Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Controleer de details alstublieft om er zeker van te zijn u zich wilt " -"abonneren op de mededelingen van deze gebruiker. Als u zojuist geen verzoek " -"hebt gedaan om te abonneren op de mededelingen van een andere gebruiker, " -"klik dan op \"Afkeuren\"" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Controleer de details alstublieft om er zeker van te zijn u zich wilt abonneren op de mededelingen van deze gebruiker. Als u zojuist geen verzoek hebt gedaan om te abonneren op de mededelingen van een andere gebruiker, klik dan op \"Afkeuren\"" #: lib/dberroraction.php:60 msgid "Database error" @@ -5948,179 +4697,22 @@ msgstr "Databasefout" #: lib/facebookaction.php:271 lib/facebookaction.php:273 #, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Om de Facebook-applicatie te kunnen gebruiken moet u aanmelden met uw " -"gebruikersnaam en wachtwoord. Hebt u nog geen gebruikersnaam? " - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Om de Facebook-applicatie te kunnen gebruiken moet u aanmelden met uw gebruikersnaam en wachtwoord. Hebt u nog geen gebruikersnaam? " #: lib/feed.php:91 msgid "FOAF" msgstr "Vrienden van vrienden (FOAF)" -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #: lib/mail.php:241 lib/mail.php:240 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s volgt nu uw medelingen op %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"\n" -"Met vriendelijke groet,\n" -"%7$s.\n" -"----\n" -"Wijzig uw e-mailadres of instellingen op %8$s\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s volgt nu uw medelingen op %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\n\nMet vriendelijke groet,\n%7$s.\n----\nWijzig uw e-mailadres of instellingen op %8$s\n" #: lib/searchaction.php:122 lib/searchaction.php:120 msgid "Search site" msgstr "Site doorzoeken" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 msgid "No such attachment." msgstr "Dat document bestaat niet." @@ -6159,13 +4751,6 @@ msgstr "Dialoog" msgid "Do not delete this notice" msgstr "Deze mededeling niet verwijderen" -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 @@ -6180,34 +4765,11 @@ msgstr "Ongeldig alias: \"%s\"" msgid "Alias \"%s\" already in use. Try another one." msgstr "De alias \"%s\" wordt al gebruikt. Geef een ander alias op." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 msgid "Could not create aliases." msgstr "Het was niet mogelijk de aliassen aan te maken." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 msgid "No notice id" msgstr "Geen mededelings-ID" @@ -6216,14 +4778,6 @@ msgstr "Geen mededelings-ID" msgid "No notice" msgstr "Geen mededeling" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 msgid "Not a valid invitation code." msgstr "Geen geldige uitnodigingscode." @@ -6233,10 +4787,6 @@ msgstr "Geen geldige uitnodigingscode." msgid "No group specified." msgstr "Er is geen groep aangegeven." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 msgid "User is already blocked from group." msgstr "Deze gebruiker is al de toegang tot de groep ontzegd." @@ -6250,18 +4800,6 @@ msgstr "De gebruiker is geen lid van de groep." msgid "Block user from group" msgstr "Gebruiker toegang tot de groep blokkeren" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." msgstr "U moet aangemeld zijn om een groep te kunnen bewerken." @@ -6270,12 +4808,6 @@ msgstr "U moet aangemeld zijn om een groep te kunnen bewerken." msgid "Group design" msgstr "Groepsontwerpen" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6283,246 +4815,45 @@ msgstr "" msgid "Couldn't update your design." msgstr "Het was niet mogelijk uw ontwerp bij te werken." -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 msgid "Design preferences saved." msgstr "De ontwerpvoorkeuren zijn opgeslagen." -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 msgid "No results." msgstr "Geen resultaten." -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 msgid "User is not blocked from group." msgstr "De gebruiker is niet de toegang tot de groep ontzegd." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 msgid "Message sent" msgstr "Bericht verzonden." -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 msgid "Couldn't save file." msgstr "Het was niet mogelijk het bestand op te slaan." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"Via [OpenID](%%doc.openid%%) kunt u bij veel websites aanmelden met dezelfde " -"gebruiker. Hier kunt u uw koppelingen met OpenID's beheren." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "Via [OpenID](%%doc.openid%%) kunt u bij veel websites aanmelden met dezelfde gebruiker. Hier kunt u uw koppelingen met OpenID's beheren." #: actions/othersettings.php:115 actions/othersettings.php:122 msgid "View profile designs" msgstr "Profielontwerpen bekijken" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Dit is %%site.name%%, [microblogdienst](http://en.wikipedia.org/wiki/Micro-" -"blogging) gebaseerd op de Vrije Software [StatusNet](http://status.net/)" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "Dit is %%site.name%%, [microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software [StatusNet](http://status.net/)" #: actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Als u uw wachtwoord kwijt bent, is het mogelijk een nieuw wachtwoord te " -"ontvangen op het e-mailadres dat aan uw gebruiker gekoppeld is." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Als u uw wachtwoord kwijt bent, is het mogelijk een nieuw wachtwoord te ontvangen op het e-mailadres dat aan uw gebruiker gekoppeld is." #: actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -6540,62 +4871,11 @@ msgstr "Sorry. De uitnodigingscode is ongeldig." msgid "Subscribe to a remote user" msgstr "Op een gebruiker uit een andere systeem abonneren" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 #, php-format msgid "%s's favorite notices, page %d" msgstr "Favoriete mededelingen van %s, pagina %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 #, php-format msgid "Notice feed for %s group (RSS 1.0)" @@ -6613,20 +4893,8 @@ msgstr "Mededelingenfeed voor groep %s (Atom)" #: actions/showgroup.php:446 actions/showgroup.php:454 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]" -"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " -"[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit " -"over hun ervaringen en interesses. " - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software [StatusNet](http://status.net/). De leden wisselen korte mededelingen uit over hun ervaringen en interesses. " #: actions/shownotice.php:101 msgid "Not a local notice" @@ -6642,62 +4910,10 @@ msgstr " met het label %s" msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Mededelingenfeed voor %s met het label %s (RSS 1.0)" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** heeft een gebruiker op %%%%site.name%%%%, eena [microblogdienst]" -"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " -"[StatusNet](http://status.net/). " - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** heeft een gebruiker op %%%%site.name%%%%, eena [microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software [StatusNet](http://status.net/). " #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 @@ -6747,10 +4963,6 @@ msgstr "%1$s / Updates over %2$s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates met het label %1$s op %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 msgid "License" msgstr "Licentie" @@ -6763,71 +4975,19 @@ msgstr "Dit abonnement weigeren" msgid "Profile design" msgstr "Profielontwerp" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 #, php-format msgid "%s is not a member of any group." msgstr "%s is van geen enkele groep lid." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 msgid "Problem saving notice. Too long." -msgstr "" -"Er is een probleem opgetreden bij het opslaan van de mededeling. Deze is te " -"lang." - -#: classes/User.php:319 classes/User.php:327 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" +msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling. Deze is te lang." #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 msgid "Design your profile" msgstr "Uw profiel ontwerpen" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - #: lib/attachmentlist.php:265 msgid "Author" msgstr "Auteur" @@ -6836,27 +4996,10 @@ msgstr "Auteur" msgid "Provider" msgstr "Provider" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 msgid "Upload file" msgstr "Bestand uploaden" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - #: lib/designsettings.php:139 msgid "On" msgstr "Aan" @@ -6865,14 +5008,6 @@ msgstr "Aan" msgid "Off" msgstr "Uit" -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 msgid "Change colours" msgstr "Kleuren wijzigen" @@ -6909,19 +5044,6 @@ msgstr "Standaardinstellingen toepassen" msgid "Save design" msgstr "Ontwerp opslaan" -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 msgid "Blocked" msgstr "Geblokkeerd" @@ -6931,130 +5053,24 @@ msgstr "Geblokkeerd" msgid "%s blocked users" msgstr "%s geblokkeerde gebruikers" -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 msgid "in context" msgstr "in context" -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - #: lib/searchaction.php:156 lib/searchaction.php:162 msgid "Search help" msgstr "Hulp bij zoeken" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 #, php-format msgid "%s is not a valid color!" msgstr "%s is geen geldige kleur." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 msgid "No such page" msgstr "Deze pagina bestaat niet" -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #, php-format msgid "That's too long. Max message size is %d chars." @@ -7062,13 +5078,7 @@ msgstr "Dat is te lang. De maximale berichtlengte is %d tekens." #: actions/apifriendshipsdestroy.php:109 msgid "Could not unfollow user: User not found." -msgstr "" -"Het is niet mogelijk deze gebruiker niet langer te volgende: de gebruiker is " -"niet aangetroffen." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" +msgstr "Het is niet mogelijk deze gebruiker niet langer te volgende: de gebruiker is niet aangetroffen." #: actions/apigroupcreate.php:261 #, php-format @@ -7112,10 +5122,6 @@ msgstr "groepen op %s" msgid "Status deleted." msgstr "De status is verwijderd." -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 #, php-format @@ -7125,18 +5131,15 @@ msgstr "Dat is te lang. De maximale mededelingslengte is 140 tekens." #: actions/apistatusesupdate.php:209 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." -msgstr "" -"De maximale mededelingenlengte is %d tekens, inclusief de URL voor de " -"bijlage." +msgstr "De maximale mededelingenlengte is %d tekens, inclusief de URL voor de bijlage." #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 msgid "Unsupported format." msgstr "Niet-ondersteund bestandsformaat." #: actions/bookmarklet.php:50 -#, fuzzy msgid "Post to " -msgstr "Foto" +msgstr "Verzenden naar " #: actions/editgroup.php:201 actions/newgroup.php:145 #, php-format @@ -7146,7 +5149,7 @@ msgstr "de beschrijving is te lang (maximaal %d tekens)" #: actions/favoritesrss.php:115 #, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "Updates gesteund door %1$s op %2$s." +msgstr "Updates op de favorietenlijst van %1$s op %2$s." #: actions/finishremotesubscribe.php:80 msgid "User being listened to does not exist." @@ -7158,13 +5161,11 @@ msgstr "U hebt niet de juiste toegangsrechten." #: actions/finishremotesubscribe.php:109 msgid "Could not convert request token to access token." -msgstr "" -"Het was niet mogelijk het verzoektoken te converteren naar een toegangstoken." +msgstr "Het was niet mogelijk het verzoektoken te converteren naar een toegangstoken." #: actions/finishremotesubscribe.php:114 msgid "Remote service uses unknown version of OMB protocol." -msgstr "" -"De diensten op afstand gebruiken een onbekende versie van het OMB-protocol." +msgstr "De diensten op afstand gebruiken een onbekende versie van het OMB-protocol." #: actions/getfile.php:75 msgid "No such file." @@ -7185,17 +5186,8 @@ msgstr "IM is niet beschikbaar." #: actions/login.php:259 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen " -"gebruikersnaam? [Registreer een nieuwe gebruiker](%%action.register%%)." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen gebruikersnaam? [Registreer een nieuwe gebruiker](%%action.register%%)." #: actions/noticesearchrss.php:91 #, php-format @@ -7213,9 +5205,7 @@ msgstr "Alleen " #: actions/postnotice.php:90 #, php-format msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" -"Mededelingenlicentie \"%s\" is niet compatibel met de licentie \"%s\" van " -"deze site." +msgstr "De mededelingenlicentie \"%s\" is niet compatibel met de licentie \"%s\" van deze site." #: actions/profilesettings.php:122 actions/register.php:454 #, php-format @@ -7231,37 +5221,14 @@ msgstr "Beschrijf uzelf en uw interesses" msgid "Bio is too long (max %d chars)." msgstr "De beschrijving is te lang (maximaal %d tekens)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" -"De URL voor het profiel is niet geldig (het is geen YADIS document of er is " -"geen of ongeldige XRDS gedefinieerd)." - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "De URL voor het profiel is niet geldig (het is geen YADIS-document of er is geen of ongeldige XRDS gedefinieerd)." #: actions/remotesubscribe.php:183 msgid "Couldn’t get a request token." msgstr "Het was niet mogelijk een verzoektoken te krijgen." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 #, php-format msgid "Replies feed for %s (Atom)" @@ -7287,14 +5254,6 @@ msgstr "Favorietenfeed van %s (RSS 2.0)" msgid "Feed for favorites of %s (Atom)" msgstr "Favorietenfeed van %s (Atom)" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 #, php-format msgid "FOAF for %s group" @@ -7313,67 +5272,17 @@ msgstr "SMS is niet beschikbaar." msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Mededelingenfeed voor label %s (RSS 2.0)" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 -#, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Ga alsjeblieft deze details na om er zeker van te zijn dat je je wilt " -"abonneren op de berichten van deze gebruiker. Als je niet zojuist hebt " -"aangegeven je op iemand's berichten te willen abonneren, klik dan op " -"\"Annuleer\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Controleer alstublieft deze details om er zeker van te zijn dat u zich wilt abonneren op de mededelingen van deze gebruiker. Als u zojuist niet hebt aangegeven dat u zich op de mededelingen van een gebruiker wilt abonneren, klik dan op \"Afwijzen\"." #: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " -"Controleer de instructies van de site voor informatie over het volledig " -"afwijzen van een abonnement. Uw abonnementstoken is:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. Controleer de instructies van de site voor informatie over het volledig afwijzen van een abonnement. Uw abonnementstoken is:" #: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. " -"Controleer de instructies van de site voor informatie over het volledig " -"afwijzen van een abonnement." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. Controleer de instructies van de site voor informatie over het volledig afwijzen van een abonnement." #: actions/userauthorization.php:343 #, php-format @@ -7396,32 +5305,17 @@ msgstr "Licentie voor siteinhoud" #: lib/command.php:88 #, php-format msgid "Could not find a user with nickname %s" -msgstr "De gebruiker met de alias %s is niet aangetroffen." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "De gebruiker %s is niet aangetroffen" #: lib/command.php:99 -#, fuzzy, php-format +#, php-format msgid "Nudge sent to %s" -msgstr "Nudge verzonden" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" +msgstr "De por naar %s is verzonden" #: lib/command.php:358 scripts/xmppdaemon.php:321 #, php-format msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" -"Het bericht te is lang. De maximale lengte is %d tekens. De lengte van uw " -"bericht was %d" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" +msgstr "Het bericht te is lang. De maximale lengte is %d tekens. De lengte van uw bericht was %d" #: lib/command.php:439 #, php-format @@ -7432,57 +5326,10 @@ msgstr "Het antwoord aan %s is verzonden" msgid "Error saving notice." msgstr "Er is een fout opgetreden bij het opslaan van de mededeling." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 msgid "No configuration file found. " msgstr "Er is geen instellingenbestand aangetroffen. " -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - #: lib/galleryaction.php:139 msgid "Select tag to filter" msgstr "Selecteer een label om op te filteren" @@ -7499,53 +5346,17 @@ msgstr "Beschrijf de groep of het onderwerp in %d tekens" #: lib/jabber.php:192 #, php-format msgid "notice id: %s" -msgstr "berichtnummer: %s" +msgstr "mededelingennummer: %s" #: lib/mail.php:554 #, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "%s (@%s) heeft uw bericht als favoriet toegevoegd" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" +msgstr "%s (@%s) heeft uw mededeling als favoriet toegevoegd" #: lib/mail.php:611 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "%s (@%s) heeft u een bericht gestuurd" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" +msgstr "%s (@%s) heeft u een mededeling gestuurd" #: lib/mailbox.php:227 lib/noticelist.php:424 msgid "from" @@ -7562,3 +5373,4 @@ msgstr "Het was niet mogelijk het MIME-type van het bestand te bepalen!" #: lib/oauthstore.php:345 msgid "Duplicate notice" msgstr "Kennisgeving van duplicaat" + diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index d3e6341c72..3a87641bec 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -6,14 +6,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:59:01+0000\n" +"PO-Revision-Date: 2009-11-06 12:24:03+0000\n" "Language-Team: Norwegian Nynorsk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: out-statusnet\n" @@ -27,11 +26,8 @@ msgstr " Søkestraum for «%s»" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " -"telefonnummer." +msgid " except this private data: password, email address, IM address, phone number." +msgstr " unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og telefonnummer." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -53,55 +49,8 @@ msgstr "%1$s har invitert deg til %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%$1s har invitert deg til %2$s (%3$s).\n" -"\n" -"%$2s er ei mikrobloggingteneste som let deg halda deg oppdatert på folk du " -"kjenner og/eller som interesserer deg.\n" -"\n" -"Du kan òg dela nyhende om deg sjølv, dine tankar eller livet ditt på nettet " -"med folk som kjenner til deg. Det er supert for å møte nye folk med like " -"interesser.\n" -"\n" -"%1$s sa:\n" -"\n" -"%4$s\n" -"\n" -"Du kan sjå profilsida til %1$s på %2$s her:\n" -"\n" -"%5$s\n" -"\n" -"Viss du vil prøva tenesta, klikk på lenka nedanfor for å akseptera " -"invitasjonen.\n" -"\n" -"Beste helsing, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%$1s har invitert deg til %2$s (%3$s).\n\n%$2s er ei mikrobloggingteneste som let deg halda deg oppdatert på folk du kjenner og/eller som interesserer deg.\n\nDu kan òg dela nyhende om deg sjølv, dine tankar eller livet ditt på nettet med folk som kjenner til deg. Det er supert for å møte nye folk med like interesser.\n\n%1$s sa:\n\n%4$s\n\nDu kan sjå profilsida til %1$s på %2$s her:\n\n%5$s\n\nViss du vil prøva tenesta, klikk på lenka nedanfor for å akseptera invitasjonen.\n\nBeste helsing, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -111,20 +60,8 @@ msgstr "%1$s høyrer no på notisane dine på %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s fylgjer no oppdateringane dine på %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Beste helsing,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s fylgjer no oppdateringane dine på %2$s.\n\n %3$s\n\nBeste helsing,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -200,22 +137,14 @@ msgstr "%s oppdateringar frå alle saman!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Du mottek ein epost med instruksjonar på korleis du stadfester epostadressa " -"di)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Du mottek ein epost med instruksjonar på korleis du stadfester epostadressa di)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." -"broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -233,15 +162,12 @@ msgstr ". Bidrag skal verta fylgd av fullt namn eller kallenamn." #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom" +msgstr "1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom. " -"Kravd." +msgstr "1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom. Kravd." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -262,29 +188,17 @@ msgstr "6 eller fleire teikn. Kravd." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Sendte godkjenningskode til ljonmeldingsadressa du la til. Du må godtaka %s " -"for å senda meldinger til deg." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Sendte godkjenningskode til ljonmeldingsadressa du la til. Du må godtaka %s for å senda meldinger til deg." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Sendte godkjenningskode til epostadressa du la til. Sjekk innboksen (og " -"søppelpostboksen) for koden og veiledning på korleis du nyttar han." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Sendte godkjenningskode til epostadressa du la til. Sjekk innboksen (og søppelpostboksen) for koden og veiledning på korleis du nyttar han." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for " -"koden og veiledning på korleis du nyttar han." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for koden og veiledning på korleis du nyttar han." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -464,10 +378,8 @@ msgstr "Logg inn automatisk i framtidi (ikkje for delte maskiner)." #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -486,21 +398,13 @@ msgstr "Lasta opp brukarbilete." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Venter på godkjenning. Sjekk din Jabber/GTalk-konto for ei melding med " -"instruksjonar (la du %s til venelista di?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Venter på godkjenning. Sjekk din Jabber/GTalk-konto for ei melding med instruksjonar (la du %s til venelista di?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Ventar på godkjenning. Sjekk innboksen (og søppelpostboksen) for ei melding " -"med instruksjonar." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Ventar på godkjenning. Sjekk innboksen (og søppelpostboksen) for ei melding med instruksjonar." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -637,35 +541,8 @@ msgstr "Fann ikkje stadfestingskode." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Gratulerer, %s! Og velkomen til %%%%site.name%%%%. Frå her kann det henda du " -"vil...\n" -"\n" -"* Gå til [profilen din](%s) og skriva den fyrste meldinga.\n" -"* Leggja til ei [Jabber/GTalk adresse](%%%%action.imsettings%%%%) so du kann " -"laga nye meldingar ved hjelp av direktemeldingar.\n" -"* [Søkje etter folk](%%%%action.profilesettings%%%%) det kan hende du " -"kjenner, eller som du delar interesser med.\n" -"* Uppdatere dine [profilval] so du kann fortelja andre meir um deg sjølv.* " -"Lesa [hjelpetekstane](%%%%doc.help%%%%) for å finna ut meir um funksjonar du " -"kann ha gådd glipp av.\n" -"\n" -"Takk for at du blei med, og vi håpar du vil lika tenesta!" +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Gratulerer, %s! Og velkomen til %%%%site.name%%%%. Frå her kann det henda du vil...\n\n* Gå til [profilen din](%s) og skriva den fyrste meldinga.\n* Leggja til ei [Jabber/GTalk adresse](%%%%action.imsettings%%%%) so du kann laga nye meldingar ved hjelp av direktemeldingar.\n* [Søkje etter folk](%%%%action.profilesettings%%%%) det kan hende du kjenner, eller som du delar interesser med.\n* Uppdatere dine [profilval] so du kann fortelja andre meir um deg sjølv.* Lesa [hjelpetekstane](%%%%doc.help%%%%) for å finna ut meir um funksjonar du kann ha gådd glipp av.\n\nTakk for at du blei med, og vi håpar du vil lika tenesta!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -1072,12 +949,8 @@ msgid "Find people on this site" msgstr "Finn folk på denne sida" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Skriv inn brukarnam og passord før du endrar innstillingar (av " -"tryggleiksomsyn)." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Skriv inn brukarnam og passord før du endrar innstillingar (av tryggleiksomsyn)." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1162,28 +1035,16 @@ msgstr "Ljonmeldinginnstillingar" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Logg inn med brukarnanm/passord for å kopla brukaren til OpenID-en, viss du " -"allereie har ein brukar" +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Logg inn med brukarnanm/passord for å kopla brukaren til OpenID-en, viss du allereie har ein brukar" #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Skriv OpenID-en din i boksen nedanfor og trykk «Legg til» om du ynskjer å " -"leggja han til." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Skriv OpenID-en din i boksen nedanfor og trykk «Legg til» om du ynskjer å leggja han til." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Me sender deg eit nytt passord til epostadressa i kontoen din viss du har " -"mista det gamle." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Me sender deg eit nytt passord til epostadressa i kontoen din viss du har mista det gamle." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1213,12 +1074,8 @@ msgstr "Feil brukarnamn eller passord" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Instruksjonar for å få att passordet ditt er send til epostadressa som er " -"lagra i kontoen din." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Instruksjonar for å få att passordet ditt er send til epostadressa som er lagra i kontoen din." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1314,14 +1171,8 @@ msgstr "Invitér nye brukarar" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Den køyrer [StatusNet](http://status.net) mikroblogging-programvare, versjon " -"%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Den køyrer [StatusNet](http://status.net) mikroblogging-programvare, versjon %s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1331,12 +1182,8 @@ msgstr "Jabber-ID tilhøyrer allereie ein annan brukar." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber- eller GTalk-adresse, døme «brukarnamn@example.org». Hugs å fyrst " -"leggja %s til venelista di i ljonmeldingsklienten din." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber- eller GTalk-adresse, døme «brukarnamn@example.org». Hugs å fyrst leggja %s til venelista di i ljonmeldingsklienten din." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1403,14 +1250,8 @@ msgstr "Logg inn med ein [OpenID](%%doc.openid%%)-konto." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%" -"%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" -"%)." +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1455,12 +1296,8 @@ msgstr "Mikroblogg av %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Mobiloperatøren din. Ta kontakt på %s viss du kjenner ein mobiloperatør som " -"aksepterer SMS-over-epost, men ikkje vistast her." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Mobiloperatøren din. Ta kontakt på %s viss du kjenner ein mobiloperatør som aksepterer SMS-over-epost, men ikkje vistast her." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -2082,13 +1919,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, kun tall, med landskode" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " -"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2271,12 +2103,8 @@ msgid "Remove OpenID" msgstr "Fjern OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Ved å fjerne din einaste OpenID vil det ikkje være mulig å logge inn! Vist " -"du treng å fjerne den, legg til ein annan OpenID først." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Ved å fjerne din einaste OpenID vil det ikkje være mulig å logge inn! Vist du treng å fjerne den, legg til ein annan OpenID først." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2372,21 +2200,13 @@ msgstr "Søk i straum" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Søk i notisar på %%site.name%% i innhald. Separer nøkkelord med mellomrom; " -"dei må være minimum 3 bokstavar eller meir." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Søk i notisar på %%site.name%% i innhald. Separer nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer " -"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2421,12 +2241,8 @@ msgstr "Send meg ein notis via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Send meg ein notis via SMS; eg forstår at dette kan føre til kostnadar fra " -"min tilbydar." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Send meg ein notis via SMS; eg forstår at dette kan føre til kostnadar fra min tilbydar." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 @@ -2663,24 +2479,13 @@ msgstr "Addressa blei fjerna." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. " -"Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " -"gjennomførast. Ditt tingings teikn er: " +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal gjennomførast. Ditt tingings teikn er: " #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk " -"med sida sine instruksjonar for korleis ein skal avvise tinginga." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk med sida sine instruksjonar for korleis ein skal avvise tinginga." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2706,34 +2511,22 @@ msgstr "Dette er dei du lyttar til." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Desse er alt brukarar og du var automatisk satt opp med tinging på dei:" +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Desse er alt brukarar og du var automatisk satt opp med tinging på dei:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Denne godkjenningskoden er for gammal. Vennligst start på nytt." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Skjemaet burde automatisk sendast inn av seg sjølv. Om det ikkje gjer det, " -"kann du klikka på knappen for å gå til OpenID-tilbydaren din." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Skjemaet burde automatisk sendast inn av seg sjølv. Om det ikkje gjer det, kann du klikka på knappen for å gå til OpenID-tilbydaren din." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Dette er den fyrste gongen du hev logga inn på %s, so vi må kopla din OpenID " -"til den lokale kontoen din. Du kann anten laga ein ny konto, eller kopla " -"til ein eksisterande konto, om du hev ein frå før." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Dette er den fyrste gongen du hev logga inn på %s, so vi må kopla din OpenID til den lokale kontoen din. Du kann anten laga ein ny konto, eller kopla til ein eksisterande konto, om du hev ein frå før." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2782,15 +2575,8 @@ msgstr "Tidssone er ikkje valt." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"For å tinga kann du [logga inn](%%action.login%%), eller [registrera](%%" -"action.register%%) ein ny konto. Um du allereie hev ein konto på ei " -"[kompatibel mikrobloggingside](%%doc.openmublog%%), kann du oppgje URLen til " -"profilen under." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "For å tinga kann du [logga inn](%%action.login%%), eller [registrera](%%action.register%%) ein ny konto. Um du allereie hev ein konto på ei [kompatibel mikrobloggingside](%%doc.openmublog%%), kann du oppgje URLen til profilen under." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2844,12 +2630,8 @@ msgid "Unknown version of OMB protocol." msgstr "Ukjend versjon av OMB-protokollen." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Vist anna ikkje er spesifert er innhaldet på denne sida opphavsrettslig " -"beskyttet av bidragsytaren og er tilgjengleg under " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Vist anna ikkje er spesifert er innhaldet på denne sida opphavsrettslig beskyttet av bidragsytaren og er tilgjengleg under " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2910,16 +2692,8 @@ msgid "Upload" msgstr "Last opp" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Last opp ein ny «avatar» (brukarbilete) her. Du kan ikkje redigera bilete " -"etter du har lasta det opp, so sørg for at det er meir eller mindre " -"firkanta. Det må ogso vera under den same lisensen. Nytta eit bilete som " -"tilhøyrer deg, og som du vil dela." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Last opp ein ny «avatar» (brukarbilete) her. Du kan ikkje redigera bilete etter du har lasta det opp, so sørg for at det er meir eller mindre firkanta. Det må ogso vera under den same lisensen. Nytta eit bilete som tilhøyrer deg, og som du vil dela." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2927,19 +2701,15 @@ msgstr "Last opp eit nytt profilbilete" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Bruk dette skjemaet for å invitera vener og kolleger til å nytta denne " -"tenesta." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Bruk dette skjemaet for å invitera vener og kolleger til å nytta denne tenesta." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Blir berre brukt for uppdateringar, viktige meldingar og for gløymde passord" +msgstr "Blir berre brukt for uppdateringar, viktige meldingar og for gløymde passord" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -3025,12 +2795,8 @@ msgid "You already have this OpenID!" msgstr "Du hev denne OpenIDen allereie!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du " -"ikkje finne ho att." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du ikkje finne ho att." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3062,30 +2828,19 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan motta SMS-meldingar gjennom e-post frå %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Du kan fjerna OpenID frå kontoen din ved å klikka på knappen som seier " -"«Fjern»." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Du kan fjerna OpenID frå kontoen din ved å klikka på knappen som seier «Fjern»." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Du kan sende og motta meldingar gjennom Jabber/GTalk [direktemeldingar](%%" -"doc.im%%). Set opp adressa og innstillingar under." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Du kan sende og motta meldingar gjennom Jabber/GTalk [direktemeldingar](%%doc.im%%). Set opp adressa og innstillingar under." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Du kan oppdatera informasjonen i profilen din her, so folk kan vite meir om " -"deg." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Du kan oppdatera informasjonen i profilen din her, so folk kan vite meir om deg." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3109,23 +2864,8 @@ msgstr "Du sende oss ikkje den profilen" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Du hev ei ny posteadresse på %1½s.\n" -"\n" -"Send e-post til %2$s for å posta nyte meldingar.\n" -"\n" -"Fleiere e-postinstruksjonar finn du på %3½s.\n" -"\n" -"Helsing frå %4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Du hev ei ny posteadresse på %1½s.\n\nSend e-post til %2$s for å posta nyte meldingar.\n\nFleiere e-postinstruksjonar finn du på %3½s.\n\nHelsing frå %4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3141,12 +2881,8 @@ msgstr "Du må verta logga inn for å invitera andre brukarar til %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Du vil få ein notis når dei du har invitert har akseptert invitasjonen og " -"har registrert seg på sida. Takk for å bidra til fellesskapet her!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Du vil få ein notis når dei du har invitert har akseptert invitasjonen og har registrert seg på sida. Takk for å bidra til fellesskapet her!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3164,12 +2900,8 @@ msgstr "Ditt kallenamn på denne servere, eller din registrerte epost addresse." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) lar deg logge inn på mangen sider med den samme " -"brukar kontoen. Velikehold dine OpenID herfra." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) lar deg logge inn på mangen sider med den samme brukar kontoen. Velikehold dine OpenID herfra." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3310,8 +3042,7 @@ msgstr "Tjeneste" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Send meg ein epost når nokon legg til ein av mine notisar som favoritt." +msgstr "Send meg ein epost når nokon legg til ein av mine notisar som favoritt." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 @@ -3366,12 +3097,8 @@ msgstr "Dette er innboksen for dine private meldingar." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s har invitert deg til å bli med dei på %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s har invitert deg til å bli med dei på %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3413,11 +3140,8 @@ msgstr "Du kan ikkje sende melding til denne brukaren." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Ikkje send ei melding til deg sjølv; berre sei det til deg sjølv stille og " -"fredleg." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Ikkje send ei melding til deg sjølv; berre sei det til deg sjølv stille og fredleg." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3467,10 +3191,8 @@ msgstr "Dette er din utboks som syner alle private meldingar du har sendt." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Søk etter folk på %%site.name%% etter deira namn, lokasjon eller interesser." +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "Søk etter folk på %%site.name%% etter deira namn, lokasjon eller interesser." #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3521,12 +3243,8 @@ msgstr "Passord må være minst 6 teikn." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Gratulerer, %s! Og velkomen til %%%%site.name%%%%. Herfrå kann det hende " -"du vil..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Gratulerer, %s! Og velkomen til %%%%site.name%%%%. Herfrå kann det hende du vil..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3649,19 +3367,12 @@ msgstr "%s la til di melding som ein favoritt" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s la akkurat til di melding frå %2$s som ein av deira favorittar.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s la akkurat til di melding frå %2$s som ein av deira favorittar.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Legg til Twitter-kontoen din for å automatisk senda dine uppdateringar til " -"Twitter," +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Legg til Twitter-kontoen din for å automatisk senda dine uppdateringar til Twitter," #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3708,12 +3419,8 @@ msgstr "Ting mine twitter-vener her." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Brukarnamn må berre ha nummer, understrek (_), store og små bokstavar." -"Maksimalt 15 teikn." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Brukarnamn må berre ha nummer, understrek (_), store og små bokstavar.Maksimalt 15 teikn." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3928,12 +3635,8 @@ msgstr "Kunne ikkje finne ein brukar med den profilen i systemet." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Du har ei ny addresse å sende til på %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Du har ei ny addresse å sende til på %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3942,12 +3645,8 @@ msgstr "Ny privat melding fra %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) sendte deg ei privat melding: \n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) sendte deg ei privat melding: \n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4443,8 +4142,7 @@ msgstr "Opprett ei ny gruppe" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +msgid "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Søk etter grupper på %%site.name%% etter namn, stad eller skildring." #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4574,11 +4272,8 @@ msgid "Ajax Error" msgstr "Ajax feil" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Denne brukaren tillét ikkje å bli dytta, eller har ikkje stadfasta eller sat " -"e-postadressa si enno." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Denne brukaren tillét ikkje å bli dytta, eller har ikkje stadfasta eller sat e-postadressa si enno." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4652,11 +4347,8 @@ msgstr "Profil informasjon" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller " -"mellomroms separert." +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller mellomroms separert." #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4687,12 +4379,8 @@ msgstr "Kan ikkje hente offentleg straum." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/" -"Micro-blogging)-teneste" +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4839,12 +4527,8 @@ msgstr "Alle medlemmar" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." -"wikipedia.org/wiki/Micro-blogging)-teneste" +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4896,12 +4580,8 @@ msgstr "Alle gruppar" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." -"wikipedia.org/wiki/Micro-blogging)-teneste" +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -5006,23 +4686,16 @@ msgid "Tag user" msgstr "Merk brukar" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Emneord for denne brukaren (bokstavar, tal, -, ., og " -"_, separert med komma eller mellomrom" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Emneord for denne brukaren (bokstavar, tal, -, ., og _, separert med komma eller mellomrom" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Du kan berre leggje til emneord på folk som du tingar notisar frå, eller som " -"tingar notisar frå deg." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Du kan berre leggje til emneord på folk som du tingar notisar frå, eller som tingar notisar frå deg." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5030,9 +4703,7 @@ msgstr "Kunne ikkje lagra emneord." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Bruk dette skjemaet for å leggje til emneord til dei som tingar notisar frå " -"deg, eller som du tingar notisar frå." +msgstr "Bruk dette skjemaet for å leggje til emneord til dei som tingar notisar frå deg, eller som du tingar notisar frå." #: actions/tagrss.php:35 msgid "No such tag." @@ -5118,10 +4789,8 @@ msgstr "Feil ved lagring av notis. Ukjend brukar." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5300,8 +4969,7 @@ msgstr "Beskriv gruppa eller emnet med 140 teikn" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Kvar er du, t.d. «Stavanger, Rogaland, Noreg»" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5365,12 +5033,8 @@ msgstr "Login eller registrer med OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Hei, %s\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Hei, %s\n\n" #: lib/mail.php:236 #, php-format @@ -5389,12 +5053,8 @@ msgstr "Heimeside: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Bio: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Bio: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5562,17 +5222,17 @@ msgid "Unsubscribe from this user" msgstr "Fjern tinging fra denne brukaren" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Straum for vener av %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Straum for vener av %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Straum for vener av %s" @@ -5582,7 +5242,7 @@ msgid "You and friends" msgstr "%s med vener" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Du kan laste opp ein personleg avatar." @@ -5591,21 +5251,10 @@ msgstr "Du kan laste opp ein personleg avatar." msgid "Avatar deleted." msgstr "Lasta opp brukarbilete." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du " -"ikkje finne ho att." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du ikkje finne ho att." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5617,29 +5266,9 @@ msgstr "Der var eit problem med sesjonen din. Vennlegst prøv på nytt." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Send meg ein epost når nokon sender meg ei privat melding." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "Du kan lasta opp ein logo for gruppa." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5648,28 +5277,14 @@ msgid "Pick a square area of the image to be the logo." msgstr "Velg eit utvalg av bildet som vil blir din avatar." #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Mikroblogg av %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer " -"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." #: actions/newmessage.php:102 #, fuzzy @@ -5677,18 +5292,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Ein feil oppstod ved sending av direkte melding." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr " Søkestraum for «%s»" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Skriv inn brukarnam og passord før du endrar innstillingar (av " -"tryggleiksomsyn)." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Skriv inn brukarnam og passord før du endrar innstillingar (av tryggleiksomsyn)." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5705,35 +5316,10 @@ msgstr "Offentleg straum" msgid "Public Stream Feed (Atom)" msgstr "Offentleg straum" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " -"telefonnummer." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr " unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og telefonnummer." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5741,44 +5327,33 @@ msgstr "" msgid "Created" msgstr "Lag" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Gruppe profil" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr " sin profil" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Notisstraum for %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Notisstraum for %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Notisstraum for %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Utboks for %s" @@ -5794,47 +5369,10 @@ msgstr "Brukarbilete" msgid "Edit profile settings" msgstr "Profilinnstillingar" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for " -"koden og veiledning på korleis du nyttar han." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for koden og veiledning på korleis du nyttar han." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5851,27 +5389,18 @@ msgstr "Ingen slik brukar" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Legg til Twitter-kontoen din for å automatisk senda dine uppdateringar til " -"Twitter," +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Legg til Twitter-kontoen din for å automatisk senda dine uppdateringar til Twitter," #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Klarte ikkje å hente informasjon fra kontoen din, «%s», frå Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " -"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5880,11 +5409,8 @@ msgstr "Søk etter folk eller innhald" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5896,218 +5422,21 @@ msgstr "Kopla til IM, SMS, Twitter" msgid "Badge" msgstr "Dult" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " msgstr "For å nytta %s Facebook-programmet må du logga inn" -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s fylgjer no oppdateringane dine på %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Beste helsing,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s fylgjer no oppdateringane dine på %2$s.\n\n %3$s\n\nBeste helsing,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Søk" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6124,12 +5453,12 @@ msgid "Block this user from this group" msgstr "Ei liste over brukarane i denne gruppa." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Brukarprofil" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s med vener, side %d" @@ -6153,56 +5482,26 @@ msgstr "Stadfestingskode" msgid "Do not delete this notice" msgstr "Kan ikkje sletta notisen." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Ugyldig merkelapp: %s" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Kunne ikkje lagre favoritt." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6213,14 +5512,6 @@ msgstr "Ny notis" msgid "No notice" msgstr "Ny notis" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6232,10 +5523,6 @@ msgstr "Ikkje eit gyldig brukarnamn." msgid "No group specified." msgstr "Ingen vald profil." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6252,18 +5539,6 @@ msgstr "Du er ikkje medlem av den gruppa." msgid "Block user from group" msgstr "Blokker brukaren" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6274,12 +5549,6 @@ msgstr "Du må være logga inn for å lage ei gruppe." msgid "Group design" msgstr "Grupper" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6312,232 +5581,46 @@ msgstr "Du må være administrator for å redigere gruppa" msgid "Make Admin" msgstr "Administrator" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Ingen resultat" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Brukar har blokkert deg." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Melding" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Kan ikkje lagra profil." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) lar deg logge inn på mangen sider med den samme " -"brukar kontoen. Velikehold dine OpenID herfra." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) lar deg logge inn på mangen sider med den samme brukar kontoen. Velikehold dine OpenID herfra." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profilinnstillingar" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/" -"Micro-blogging)-teneste" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Me sender deg eit nytt passord til epostadressa i kontoen din viss du har " -"mista det gamle." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Me sender deg eit nytt passord til epostadressa i kontoen din viss du har mista det gamle." #: actions/recoverpassword.php:158 #, fuzzy @@ -6559,87 +5642,30 @@ msgstr "Feil med stadfestingskode." msgid "Subscribe to a remote user" msgstr "Lagre tinging for brukar: %s" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "%s favoritt meldingar, side %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Notisstraum for %s gruppa" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Notisstraum for %s gruppa" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Notisstraum for %s gruppa" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." -"wikipedia.org/wiki/Micro-blogging)-teneste" +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6652,84 +5678,33 @@ msgid "Not a local notice" msgstr "Ikkje ein lokal brukar." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Notisar merka med %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Notisstraum for %s gruppa" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." -"wikipedia.org/wiki/Micro-blogging)-teneste" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s høyrer no på" #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Notisstraum for %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Notisstraum for %s" @@ -6760,20 +5735,16 @@ msgid "Could not find target user." msgstr "Kan ikkje finna einkvan status." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Oppdateringar som svarar til %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -6789,127 +5760,41 @@ msgstr "%s tingarar" msgid "Profile design" msgstr "Profilinnstillingar" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Eit problem oppstod ved lagring av notis." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Melding til %1$s på %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Brukarprofil" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profil" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Last opp" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Endra passordet ditt" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6925,127 +5810,21 @@ msgstr "Søk" msgid "Links" msgstr "Logg inn" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Blokkér" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Blokker brukaren" #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "Legg til eller rediger logoen til %s" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7061,26 +5840,11 @@ msgstr "Brukar" msgid "Search help" msgstr "Søk" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "Heimesida er ikkje ei gyldig internettadresse." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7088,12 +5852,12 @@ msgid "No such page" msgstr "Dette emneord finst ikkje." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Direkte meldingar til %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Det er for langt. Ein notis kan berre være 140 teikn." @@ -7102,12 +5866,8 @@ msgstr "Det er for langt. Ein notis kan berre være 140 teikn." msgid "Could not unfollow user: User not found." msgstr "Fann ikkje brukaren, so han kan ikkje fylgjast" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "skildringa er for lang (maks 140 teikn)." @@ -7117,7 +5877,7 @@ msgid "You are already a member of that group." msgstr "Du er allereie medlem av den gruppa" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" @@ -7127,44 +5887,31 @@ msgid "You are not a member of this group." msgstr "Du er ikkje medlem av den gruppa." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Kunne ikkje fjerne %s fra %s gruppa " #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "%s grupper" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "Grupper %s er medlem av" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Gruppe handlingar" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -7176,12 +5923,12 @@ msgid "Post to " msgstr "Bilete" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "skildringa er for lang (maks 140 teikn)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -7216,7 +5963,7 @@ msgid "Cannot read file." msgstr "Mista fila vår." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -7226,40 +5973,17 @@ msgid "IM is not available." msgstr "Denne sida er ikkje tilgjengleg i eit" #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%" -"%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" -"%)." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%%)." #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Alle oppdateringer frå søket «%s»" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Skriv om deg og interessene dine med 140 teikn" @@ -7269,20 +5993,13 @@ msgid "Describe yourself and your interests" msgstr "Skildra deg sjølv og din" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "«Om meg» er for lang (maks 140 " -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Ikkje ein brukande profil-netadresse (ingen YADIS-dokument)." #: actions/remotesubscribe.php:176 @@ -7295,51 +6012,33 @@ msgstr "Det er ikkje ein lokal profil! Log inn for å tinge." msgid "Couldn’t get a request token." msgstr "Fekk ikkje spørjingsbillett (request token)." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Notisstraum for %s gruppa" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Melding til %1$s på %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Straum for %s sine favorittar" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Straum for %s sine favorittar" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Straum for %s sine favorittar" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "%s gruppe" @@ -7354,78 +6053,32 @@ msgid "SMS is not available." msgstr "Denne sida er ikkje tilgjengleg i eit" #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Notisstraum for %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " -"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. " -"Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " -"gjennomførast. Ditt tingings teikn er: " +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal gjennomførast. Ditt tingings teikn er: " #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk " -"med sida sine instruksjonar for korleis ein skal avvise tinginga." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk med sida sine instruksjonar for korleis ein skal avvise tinginga." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Kan ikkje lesa brukarbilete-URL «%s»" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Feil biletetype for '%s'" @@ -7440,35 +6093,27 @@ msgid "Site content license" msgstr "StatusNets programvarelisens" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Dytta!" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Svar på denne notisen" @@ -7477,54 +6122,11 @@ msgstr "Svar på denne notisen" msgid "Error saving notice." msgstr "Eit problem oppstod ved lagring av notis." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Ingen stadfestingskode." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7541,70 +6143,25 @@ msgid "Describe the group or topic" msgstr "Beskriv gruppa eller emnet med 140 teikn" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Beskriv gruppa eller emnet med 140 teikn" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Notisstraum for %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s la til di melding som ein favoritt" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " frå " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7614,3 +6171,4 @@ msgstr "Kunne ikkje slette favoritt." #, fuzzy msgid "Duplicate notice" msgstr "Slett notis" + diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 2c59ad3b97..d1ca3c3465 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -13,14 +13,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:59:13+0000\n" +"PO-Revision-Date: 2009-11-06 12:24:10+0000\n" "Language-Team: Polish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: out-statusnet\n" @@ -35,11 +34,8 @@ msgstr " Znajdź strumień dla \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora, numer " -"telefonu." +msgid " except this private data: password, email address, IM address, phone number." +msgstr " poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora, numer telefonu." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -61,60 +57,8 @@ msgstr "%1$s zapraszają Cię, abyś dołączył do nich w %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"Użytkownik %1$s zapraszają Cię, abyś dołączył do nich w %2$s (%3$s).\n" -"\n" -"%2$s jest usługą mikroblogowania, która umożliwia pozostawanie w kontakcie z " -"osobami, których znasz i z tymi, którzy Cię interesują.\n" -"\n" -"Możesz także dzielić się w sieci nowinkami o sobie, swoimi przemyśleniami, " -"lub swoim życiem z osobami, którzy Cię znają. To także wspaniały sposób na " -"poznawanie nowych osób, którzy dzielą Twoje zainteresowania.\n" -"\n" -"Użytkownik %1$s powiedział:\n" -"\n" -"%4$s\n" -"\n" -"Możesz zobaczyć stronę profilu %1$s na %2$s tutaj:\n" -"\n" -"%5$s\n" -"\n" -"Jeśli chcesz wypróbować usługę, naciśnij na poniższy odnośnik, aby " -"zaakceptować zaproszenie.\n" -"\n" -"%6$s\n" -"\n" -"Jeśli nie, możesz zignorować tę wiadomość. Dziękujemy za Twoją cierpliwość i " -"czas.\n" -"\n" -"Z poważaniem, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "Użytkownik %1$s zapraszają Cię, abyś dołączył do nich w %2$s (%3$s).\n\n%2$s jest usługą mikroblogowania, która umożliwia pozostawanie w kontakcie z osobami, których znasz i z tymi, którzy Cię interesują.\n\nMożesz także dzielić się w sieci nowinkami o sobie, swoimi przemyśleniami, lub swoim życiem z osobami, którzy Cię znają. To także wspaniały sposób na poznawanie nowych osób, którzy dzielą Twoje zainteresowania.\n\nUżytkownik %1$s powiedział:\n\n%4$s\n\nMożesz zobaczyć stronę profilu %1$s na %2$s tutaj:\n\n%5$s\n\nJeśli chcesz wypróbować usługę, naciśnij na poniższy odnośnik, aby zaakceptować zaproszenie.\n\n%6$s\n\nJeśli nie, możesz zignorować tę wiadomość. Dziękujemy za Twoją cierpliwość i czas.\n\nZ poważaniem, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -124,20 +68,8 @@ msgstr "Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Z poważaniem,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s.\n\n %3$s\n\nZ poważaniem,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -213,22 +145,14 @@ msgstr "Użytkownik %s aktualizuje od każdego!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Powinieneś właśnie otrzymać wiadomość e-mail, zawierającą instrukcje " -"potwierdzenia adresu e-mail)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Powinieneś właśnie otrzymać wiadomość e-mail, zawierającą instrukcje potwierdzenia adresu e-mail)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -238,8 +162,7 @@ msgstr "**%%site.name%%** jest usługą mikroblogowania. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -". Współtwórcy powinni być wymienieni z imienia i nazwiska lub pseudonimu." +msgstr ". Współtwórcy powinni być wymienieni z imienia i nazwiska lub pseudonimu." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -252,8 +175,7 @@ msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 małe litery lub liczby, bez spacji i znaków przestankowych. Wymagane." +msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych. Wymagane." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -274,31 +196,17 @@ msgstr "6 lub więcej znaków. Wymagane." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Kod potwierdzający został wysłany na dodany adres komunikatora. Musisz " -"zaakceptować otrzymywanie wiadomości od %s." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Kod potwierdzający został wysłany na dodany adres komunikatora. Musisz zaakceptować otrzymywanie wiadomości od %s." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Kod potwierdzający został wysłany na dodany adres e-mail. Sprawdź w swojej " -"skrzynce odbiorczej (także w wiadomościach niechcianych!), czy otrzymałeś " -"kod i instrukcje dotyczące jego użycia." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Kod potwierdzający został wysłany na dodany adres e-mail. Sprawdź w swojej skrzynce odbiorczej (także w wiadomościach niechcianych!), czy otrzymałeś kod i instrukcje dotyczące jego użycia." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź w swojej " -"skrzynce odbiorczej (także w wiadomościach niechcianych!), czy otrzymałeś " -"kod i instrukcje dotyczące jego użycia." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź w swojej skrzynce odbiorczej (także w wiadomościach niechcianych!), czy otrzymałeś kod i instrukcje dotyczące jego użycia." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -473,17 +381,13 @@ msgstr "Upoważnij subskrypcję" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Automatyczne logowanie. Nie użyj na komputerach używanych przez wiele osób!" +msgstr "Automatyczne logowanie. Nie użyj na komputerach używanych przez wiele osób!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Automatycznie zasubskrybuj każdego, kto mnie zasubskrybuje (najlepsze dla " -"botów)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Automatycznie zasubskrybuj każdego, kto mnie zasubskrybuje (najlepsze dla botów)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -502,23 +406,13 @@ msgstr "Zaktualizowano awatar." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoje konto Jabbera/GTalk, " -"czy otrzymałeś wiadomość z dalszymi instrukcjami (dodałeś %s do listy " -"znajomych?)." +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoje konto Jabbera/GTalk, czy otrzymałeś wiadomość z dalszymi instrukcjami (dodałeś %s do listy znajomych?)." #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoją skrzynkę odbiorczą " -"(także w wiadomościach niechcianych!), czy otrzymałeś wiadomość z dalszymi " -"instrukcjami." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoją skrzynkę odbiorczą (także w wiadomościach niechcianych!), czy otrzymałeś wiadomość z dalszymi instrukcjami." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -655,36 +549,8 @@ msgstr "Nie znaleziono kodu potwierdzającego." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Gratulacje, %s! Witaj na %%%%site.name%%%%. Stąd możesz chcieć...\n" -"\n" -"* Przejść do [swojego profilu](%s) i wysłać swoją pierwszą wiadomość.\n" -"* Dodać [adres Jabbera/GTalk](%%%%action.imsettings%%%%), abyś mógł wysyłać " -"wpisy przez komunikatora.\n" -"* [Poszukać osób](%%%%action.peoplesearch%%%%), których możesz znać lub " -"którzy dzielą Twoje zainteresowania. \n" -"* Zaktualizować swoje [ustawienia profilu](%%%%action.profilesettings%%%%), " -"aby powiedzieć innym więcej o sobie. \n" -"* Przeczytać [dokumentację w sieci](%%%%doc.help%%%%), aby dowiedzieć się o " -"funkcjach, które mogłeś pominąć. \n" -"\n" -"Dziękujemy za zarejestrowanie się i mamy nadzieję, że używanie tej usługi " -"sprawi Ci przyjemność." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Gratulacje, %s! Witaj na %%%%site.name%%%%. Stąd możesz chcieć...\n\n* Przejść do [swojego profilu](%s) i wysłać swoją pierwszą wiadomość.\n* Dodać [adres Jabbera/GTalk](%%%%action.imsettings%%%%), abyś mógł wysyłać wpisy przez komunikatora.\n* [Poszukać osób](%%%%action.peoplesearch%%%%), których możesz znać lub którzy dzielą Twoje zainteresowania. \n* Zaktualizować swoje [ustawienia profilu](%%%%action.profilesettings%%%%), aby powiedzieć innym więcej o sobie. \n* Przeczytać [dokumentację w sieci](%%%%doc.help%%%%), aby dowiedzieć się o funkcjach, które mogłeś pominąć. \n\nDziękujemy za zarejestrowanie się i mamy nadzieję, że używanie tej usługi sprawi Ci przyjemność." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -862,9 +728,7 @@ msgstr "Utwórz nowe konto" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." -msgstr "" -"Tworzenie nowego konta dla identyfikatora OpenID, który posiada już " -"użytkownika." +msgstr "Tworzenie nowego konta dla identyfikatora OpenID, który posiada już użytkownika." #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 @@ -1093,12 +957,8 @@ msgid "Find people on this site" msgstr "Znajdź osoby na tej stronie" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Z powodów bezpieczeństwa ponownie podaj nazwę użytkownika i hasło przed " -"zmienianiem ustawień." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Z powodów bezpieczeństwa ponownie podaj nazwę użytkownika i hasło przed zmienianiem ustawień." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1183,28 +1043,16 @@ msgstr "Ustawienia komunikatora" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Jeśli już masz konto, zaloguj się za pomocą nazwy użytkownika i hasła, aby " -"połączyć je ze swoim identyfikatorem OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Jeśli już masz konto, zaloguj się za pomocą nazwy użytkownika i hasła, aby połączyć je ze swoim identyfikatorem OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Jeśli chcesz dodać identyfikator OpenID do swojego konta, podaj go w " -"poniższym polu i naciśnij \"Dodaj\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Jeśli chcesz dodać identyfikator OpenID do swojego konta, podaj go w poniższym polu i naciśnij \"Dodaj\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Jeśli zapomniałeś lub zgubiłeś swoje hasło, możesz otrzymać nowe na adres e-" -"mail, który podałeś." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Jeśli zapomniałeś lub zgubiłeś swoje hasło, możesz otrzymać nowe na adres e-mail, który podałeś." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1234,12 +1082,8 @@ msgstr "Niepoprawna nazwa użytkownika lub hasło." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Instrukcje przywracania hasła zostały wysłane na adres e-mail zarejestrowany " -"z Twoim kontem." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Instrukcje przywracania hasła zostały wysłane na adres e-mail zarejestrowany z Twoim kontem." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1335,14 +1179,8 @@ msgstr "Zaproś nowych użytkowników" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Działa pod kontrolą oprogramowania do mikroblogowania [StatusNet](http://" -"status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU " -"Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Działa pod kontrolą oprogramowania do mikroblogowania [StatusNet](http://status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1352,13 +1190,8 @@ msgstr "Identyfikator Jabbera należy już do innego użytkownika." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Adres Jabbera lub GTalk, taki jak \"NazwaUżytkownika@przykład.org\". " -"Najpierw upewnij się, że dodałeś %s do listy znajomych w komunikatorze lub " -"na GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Adres Jabbera lub GTalk, taki jak \"NazwaUżytkownika@przykład.org\". Najpierw upewnij się, że dodałeś %s do listy znajomych w komunikatorze lub na GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1425,14 +1258,8 @@ msgstr "Zaloguj się za pomocą konta [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? " -"[Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action." -"openidlogin%%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? [Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1477,13 +1304,8 @@ msgstr "Mikroblog użytkownika %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Operator komórkowy Twojego telefonu. Jeśli znasz operatora, który akceptuje " -"wiadomości SMS przez e-mail, a nie znajduje się na liście, wyślij wiadomość " -"e-mail na %s (w języku angielskim), aby nam o tym powiedzieć." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Operator komórkowy Twojego telefonu. Jeśli znasz operatora, który akceptuje wiadomości SMS przez e-mail, a nie znajduje się na liście, wyślij wiadomość e-mail na %s (w języku angielskim), aby nam o tym powiedzieć." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -2105,13 +1927,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Sprawdź te szczegóły, aby upewnić się, czy chcesz subskrybować wpisy tego " -"użytkownika. Jeśli nie chcesz, po prostu naciśnij \"Anuluj\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Sprawdź te szczegóły, aby upewnić się, czy chcesz subskrybować wpisy tego użytkownika. Jeśli nie chcesz, po prostu naciśnij \"Anuluj\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2294,12 +2111,8 @@ msgid "Remove OpenID" msgstr "Usuń identyfikator OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Usunięcie jedynego identyfikatora OpenID uniemożliwi zalogowanie się! Jeśli " -"musisz je usunąć, dodaj najpierw inne." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Usunięcie jedynego identyfikatora OpenID uniemożliwi zalogowanie się! Jeśli musisz je usunąć, dodaj najpierw inne." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2395,22 +2208,13 @@ msgstr "Znajdź kanał strumienia" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Znajdź wpisy na %%site.name%% według ich zawartości. Oddziel wyszukiwane " -"terminy spacjami. Terminy muszą mieć trzy znaki lub więcej." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Znajdź wpisy na %%site.name%% według ich zawartości. Oddziel wyszukiwane terminy spacjami. Terminy muszą mieć trzy znaki lub więcej." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Znajdź osoby na %%site.name%% według ich nazwiska, położenia lub " -"zainteresowań. Oddziel wyszukiwane terminy spacjami. Terminy muszą mieć trzy " -"znaki lub więcej." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Znajdź osoby na %%site.name%% według ich nazwiska, położenia lub zainteresowań. Oddziel wyszukiwane terminy spacjami. Terminy muszą mieć trzy znaki lub więcej." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2445,18 +2249,13 @@ msgstr "Wyślij mi wpisy przez Jabbera/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Wyślij mi wpisy przez SMS. Rozumiem, że mogę otrzymywać większe rachunki od " -"swojego operatora." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Wyślij mi wpisy przez SMS. Rozumiem, że mogę otrzymywać większe rachunki od swojego operatora." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Wyślij mi odpowiedzi przez Jabbera/GTalk od osób, których nie subskrybuję." +msgstr "Wyślij mi odpowiedzi przez Jabbera/GTalk od osób, których nie subskrybuję." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2688,23 +2487,13 @@ msgstr "Adres został usunięty." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " -"Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " -"Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2730,35 +2519,22 @@ msgstr "Osoby, których wpisy obserwujesz." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Te osoby są już użytkownikami i zostałeś do nich automatycznie " -"zasubskrybowany:" +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Te osoby są już użytkownikami i zostałeś do nich automatycznie zasubskrybowany:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Kod potwierdzający jest za stary. Rozpocznij ponownie." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Ten formularz powinien wysłać się automatycznie. Jeśli tak się nie stanie, " -"naciśnij przycisk Wyślij, aby przejść do dostawcy OpenID." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Ten formularz powinien wysłać się automatycznie. Jeśli tak się nie stanie, naciśnij przycisk Wyślij, aby przejść do dostawcy OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Jeżeli logujesz się do %s po raz pierwszy, musimy połączyć identyfikator " -"OpenID z lokalnym kontem. Można utworzyć nowe konto lub połączyć z " -"istniejącym, jeśli je posiadasz." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Jeżeli logujesz się do %s po raz pierwszy, musimy połączyć identyfikator OpenID z lokalnym kontem. Można utworzyć nowe konto lub połączyć z istniejącym, jeśli je posiadasz." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2807,15 +2583,8 @@ msgstr "Nie wybrano strefy czasowej." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Aby zasubskrybować, można [zalogować się](%%action.login%%) lub " -"[zarejestrować](%%action.register%%) nowe konto. Jeśli już posiadasz konto " -"na [zgodnej stronie mikroblogowania](%%doc.openmublog%%), podaj poniżej " -"adres URL profilu." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Aby zasubskrybować, można [zalogować się](%%action.login%%) lub [zarejestrować](%%action.register%%) nowe konto. Jeśli już posiadasz konto na [zgodnej stronie mikroblogowania](%%doc.openmublog%%), podaj poniżej adres URL profilu." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2869,12 +2638,8 @@ msgid "Unknown version of OMB protocol." msgstr "Nieznana wersja protokołu OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Jeśli nie podano inaczej, prawa autorskie do zawartości tej strony należy do " -"współtwórców i jest dostępna na warunkach licencji " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Jeśli nie podano inaczej, prawa autorskie do zawartości tej strony należy do współtwórców i jest dostępna na warunkach licencji " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2935,16 +2700,8 @@ msgid "Upload" msgstr "Wyślij" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Tu można wysłać nowego \"awatara\" (obraz użytkownika). Nie można " -"modyfikować obrazu po jego wysłaniu, więc upewnij się, że jest w miarę " -"kwadratowy. Musi być także na licencji strony. Użyj obrazu, który należy do " -"Ciebie, i którym chcesz się dzielić." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Tu można wysłać nowego \"awatara\" (obraz użytkownika). Nie można modyfikować obrazu po jego wysłaniu, więc upewnij się, że jest w miarę kwadratowy. Musi być także na licencji strony. Użyj obrazu, który należy do Ciebie, i którym chcesz się dzielić." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2952,11 +2709,8 @@ msgstr "Wyślij nowy obraz profilu" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Użyj tego formularza, aby zaprosić przyjaciół i kolegów do używania tej " -"usługi." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Użyj tego formularza, aby zaprosić przyjaciół i kolegów do używania tej usługi." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -3049,12 +2803,8 @@ msgid "You already have this OpenID!" msgstr "Już posiadasz ten identyfikator OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Wpis zostanie za chwilę trwale usunięty. Kiedy to się stanie, to już się nie " -"odstanie." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Wpis zostanie za chwilę trwale usunięty. Kiedy to się stanie, to już się nie odstanie." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3086,30 +2836,19 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Można otrzymywać wiadomości SMS przez e-mail od %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Można usunąć identyfikator OpenID ze swojego konta naciskając przycisk \"Usuń" -"\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Można usunąć identyfikator OpenID ze swojego konta naciskając przycisk \"Usuń\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Można wysyłać i odbierać wpisy przez [komunikator](%%doc.im%%) Jabber/GTalk. " -"Skonfiguruj adres i ustawienia poniżej." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Można wysyłać i odbierać wpisy przez [komunikator](%%doc.im%%) Jabber/GTalk. Skonfiguruj adres i ustawienia poniżej." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Tutaj można zaktualizować osobiste informacje w profilu, aby inni mogli " -"lepiej Cię poznać." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Tutaj można zaktualizować osobiste informacje w profilu, aby inni mogli lepiej Cię poznać." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3124,8 +2863,7 @@ msgstr "Można używać lokalnej subskrypcji!" #: actions/finishopenidlogin.php:43 actions/register.php:149 #: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." -msgstr "" -"Nie możesz się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." +msgstr "Nie możesz się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 #: actions/updateprofile.php:67 actions/updateprofile.php:69 @@ -3134,24 +2872,8 @@ msgstr "Nie wysłałeś nam tego profilu" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Posiadasz nowy adres wysyłania na %1$s.\n" -"\n" -"Wyślij wiadomość e-mail na %2$s, aby wysłać nowe wpisy.\n" -"\n" -"Więcej instrukcji dotyczących poczty e-mail można znaleźć na %3$s.\n" -"\n" -"Z poważaniem,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Posiadasz nowy adres wysyłania na %1$s.\n\nWyślij wiadomość e-mail na %2$s, aby wysłać nowe wpisy.\n\nWięcej instrukcji dotyczących poczty e-mail można znaleźć na %3$s.\n\nZ poważaniem,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3163,17 +2885,12 @@ msgstr "Nie można usuwać statusów innych użytkowników." #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "" -"Należy być zalogowanym, aby zapraszać innych użytkowników do używania %s" +msgstr "Należy być zalogowanym, aby zapraszać innych użytkowników do używania %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Zostaniesz powiadomiony, kiedy ktoś zaakceptuje zaproszenie i zarejestruje " -"się na stronie. Dziękujemy za pomoc w zwiększaniu społeczności!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Zostaniesz powiadomiony, kiedy ktoś zaakceptuje zaproszenie i zarejestruje się na stronie. Dziękujemy za pomoc w zwiększaniu społeczności!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3191,13 +2908,8 @@ msgstr "Twój pseudonim na tym serwerze lub zarejestrowany adres e-mail." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) umożliwia logowanie się do wielu stron za pomocą " -"tego samego konta użytkownika. Tu można zarządzać powiązanymi " -"identyfikatorami OpenID." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) umożliwia logowanie się do wielu stron za pomocą tego samego konta użytkownika. Tu można zarządzać powiązanymi identyfikatorami OpenID." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3389,17 +3101,12 @@ msgstr "Odebrane wiadomości użytkownika %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"To jest skrzynka odbiorcza, która wyświetla przychodzące wiadomości prywatne." +msgstr "To jest skrzynka odbiorcza, która wyświetla przychodzące wiadomości prywatne." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s zaprosił się do dołączenia do %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s zaprosił się do dołączenia do %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3441,8 +3148,7 @@ msgstr "Nie można wysłać wiadomości do tego użytkownika." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Nie wysyłaj wiadomości do siebie, po prostu powiedz to sobie po cichu." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3493,11 +3199,8 @@ msgstr "To są wiadomości wysłane, czyli prywatne wiadomości, które wysłał #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Znajdź osoby na %%site.name%% według ich nazwiska, położenia lub " -"zainteresowań. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "Znajdź osoby na %%site.name%% według ich nazwiska, położenia lub zainteresowań. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3548,9 +3251,7 @@ msgstr "Hasło musi mieć sześć lub więcej znaków." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." msgstr "Gratulacje, %s! Witaj na %%%%site.name%%%%. Stąd możesz chcieć..." #: actions/register.php:227 @@ -3647,9 +3348,7 @@ msgstr "Nie znaleziono odbiorcy." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" -"Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są " -"Twoimi przyjaciółmi." +msgstr "Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są Twoimi przyjaciółmi." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3676,19 +3375,12 @@ msgstr "Użytkownik %s dodał Twój wpis jako ulubiony" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"Użytkownik %1$s właśnie dodał Twój wpis od %2$s jako jeden z jego " -"ulubionych.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "Użytkownik %1$s właśnie dodał Twój wpis od %2$s jako jeden z jego ulubionych.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Dodaj swoje konto Twittera, aby automatycznie wysyłać wpisy na Twittera, " +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Dodaj swoje konto Twittera, aby automatycznie wysyłać wpisy na Twittera, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3735,12 +3427,8 @@ msgstr "Zasubskrybuj tutaj moich przyjaciół z Twittera." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Nazwa użytkownika może zawierać tylko liczby, małe i wielkie litery oraz " -"podkreślnik (_). Maksymalnie 15 znaków." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Nazwa użytkownika może zawierać tylko liczby, małe i wielkie litery oraz podkreślnik (_). Maksymalnie 15 znaków." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3955,12 +3643,8 @@ msgstr "Użytkownik bez odpowiadającego profilu w systemie." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Posiadasz nowy adres wysyłania na %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Posiadasz nowy adres wysyłania na %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3969,12 +3653,8 @@ msgstr "Nowa prywatna wiadomość od użytkownika %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"Użytkownik %1$s (%2$s) wysłał Ci prywatną wiadomość:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "Użytkownik %1$s (%2$s) wysłał Ci prywatną wiadomość:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4470,8 +4150,7 @@ msgstr "Utwórz nową grupę" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +msgid "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Znajdź grupy na %%site.name%% według ich nazw, położenia lub opisu. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4601,11 +4280,8 @@ msgid "Ajax Error" msgstr "Błąd AJAX" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Ten użytkownik nie pozwala na szturchnięcia lub nie potwierdził lub nie " -"ustawił jeszcze swojego adresu e-mail." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Ten użytkownik nie pozwala na szturchnięcia lub nie potwierdził lub nie ustawił jeszcze swojego adresu e-mail." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4679,11 +4355,8 @@ msgstr "Informacje o profilu" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " -"spacjami" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub spacjami" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4714,12 +4387,8 @@ msgstr "Nie można pobrać publicznego strumienia." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" -"Mikroblog) " +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4866,12 +4535,8 @@ msgstr "Wszyscy członkowie" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " -"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) " +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4923,12 +4588,8 @@ msgstr "Wszystkie grupy" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" -"pl.wikipedia.org/wiki/Mikroblog) " +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -5033,23 +4694,16 @@ msgid "Tag user" msgstr "Znacznik użytkownika" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone " -"przecinkami lub spacjami" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone przecinkami lub spacjami" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Można nadawać znaczniki tylko osobom, których subskrybujesz lub którzy " -"subskrybują Ciebie." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Można nadawać znaczniki tylko osobom, których subskrybujesz lub którzy subskrybują Ciebie." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5057,8 +4711,7 @@ msgstr "Nie można zapisać znaczników." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Użyj tego formularza, aby dodać znaczniki subskrybentom lub subskrypcjom." +msgstr "Użyj tego formularza, aby dodać znaczniki subskrybentom lub subskrypcjom." #: actions/tagrss.php:35 msgid "No such tag." @@ -5144,11 +4797,8 @@ msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Za dużo wpisów w za krótkim czasie, weź głęboki oddech i wyślij ponownie za " -"kilka minut." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Za dużo wpisów w za krótkim czasie, weź głęboki oddech i wyślij ponownie za kilka minut." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5327,11 +4977,8 @@ msgstr "Opisz grupę lub temat w 140 znakach" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" -"Położenie grupy, jeśli istnieje, np. \"miasto, województwo (lub region), kraj" -"\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "Położenie grupy, jeśli istnieje, np. \"miasto, województwo (lub region), kraj\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" @@ -5394,12 +5041,8 @@ msgstr "Zaloguj się lub zarejestruj za pomocą OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Cześć, %s.\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Cześć, %s.\n\n" #: lib/mail.php:236 #, php-format @@ -5418,12 +5061,8 @@ msgstr "Strona domowa: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"O mnie: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "O mnie: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5619,22 +5258,12 @@ msgid "Avatar deleted." msgstr "Usunięto awatar." #: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" -"Jesteś pewny, że chcesz zablokować tego użytkownika. Po tym jego subskrypcja " -"do Ciebie zostanie usunięta, nie będzie mógł Cię zasubskrybować w " -"przyszłości i nie będziesz powiadamiany o żadnych odpowiedziach @ od niego." +msgid "Are you sure you want to block this user? Afterwards, they will be unsubscribed from you, unable to subscribe to you in the future, and you will not be notified of any @-replies from them." +msgstr "Jesteś pewny, że chcesz zablokować tego użytkownika. Po tym jego subskrypcja do Ciebie zostanie usunięta, nie będzie mógł Cię zasubskrybować w przyszłości i nie będziesz powiadamiany o żadnych odpowiedziach @ od niego." #: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Za chwilę wpis zostanie trwale usunięty. Kiedy to się stanie, to już się nie " -"odstanie." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Za chwilę wpis zostanie trwale usunięty. Kiedy to się stanie, to już się nie odstanie." #: actions/deletenotice.php:127 actions/deletenotice.php:157 msgid "There was a problem with your session token. Try again, please." @@ -5646,12 +5275,8 @@ msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś wyśle mi odpowiedź \"@\"." #: actions/facebookhome.php:193 actions/facebookhome.php:187 #, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" -"Jeśli chcesz, aby aplikacja %s automatycznie aktualizowała status na " -"Facebook najnowszym wpisem, musisz dać jej pozwolenie." +msgid "If you would like the %s app to automatically update your Facebook status with your latest notice, you need to give it permission." +msgstr "Jeśli chcesz, aby aplikacja %s automatycznie aktualizowała status na Facebook najnowszym wpisem, musisz dać jej pozwolenie." #: actions/facebookhome.php:217 actions/facebookhome.php:211 #, php-format @@ -5660,17 +5285,12 @@ msgstr "OK, zrób to!" #: actions/facebooksettings.php:124 #, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" -"Jeśli chcesz, aby %s automatycznie aktualizowało status na Facebook " -"najnowszym wpisem, musisz dać mu pozwolenie." +msgid "If you would like %s to automatically update your Facebook status with your latest notice, you need to give it permission." +msgstr "Jeśli chcesz, aby %s automatycznie aktualizowało status na Facebook najnowszym wpisem, musisz dać mu pozwolenie." #: actions/grouplogo.php:155 actions/grouplogo.php:150 #, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "Można wysłać obraz logo grupy. Maksymalny rozmiar pliku to %s." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5684,27 +5304,13 @@ msgstr "Mikroblog grupy %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Znajdź grupy na %%site.name%% według ich nazwy, położenia lub opisu. Oddziel " -"terminy spacjami; muszą mieć trzy znaki lub więcej." +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Znajdź grupy na %%site.name%% według ich nazwy, położenia lub opisu. Oddziel terminy spacjami; muszą mieć trzy znaki lub więcej." #: actions/groups.php:90 #, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" -"Grupy %%%%site.name%%%% umożliwiają znalezienie i rozmawianie z osobami o " -"podobnych zainteresowaniach. Po dołączeniu do grupy można wysyłać wiadomości " -"do wszystkich członków używając składni \"!nazwagrupy\". Nie widzisz grupy, " -"która Cię interesuje? Spróbuj ją [znaleźć](%%%%action.groupsearch%%%%) lub " -"[założyć własną!](%%%%action.newgroup%%%%)" +msgid "%%%%site.name%%%% groups let you find and talk with people of similar interests. After you join a group you can send messages to all other members using the syntax \"!groupname\". Don't see a group you like? Try [searching for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup%%%%)" +msgstr "Grupy %%%%site.name%%%% umożliwiają znalezienie i rozmawianie z osobami o podobnych zainteresowaniach. Po dołączeniu do grupy można wysyłać wiadomości do wszystkich członków używając składni \"!nazwagrupy\". Nie widzisz grupy, która Cię interesuje? Spróbuj ją [znaleźć](%%%%action.groupsearch%%%%) lub [założyć własną!](%%%%action.newgroup%%%%)" #: actions/newmessage.php:102 msgid "Only logged-in users can send direct messages." @@ -5717,12 +5323,8 @@ msgstr "Wyniki wyszukiwania dla \"%s\" na %s" #: actions/openidlogin.php:66 #, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Z powodów bezpieczeństwa przed zmienianiem ustawień zaloguj się ponownie za " -"pomocą identyfikatora [OpenID](%%doc.openid%%)." +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Z powodów bezpieczeństwa przed zmienianiem ustawień zaloguj się ponownie za pomocą identyfikatora [OpenID](%%doc.openid%%)." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 msgid "Public Stream Feed (RSS 1.0)" @@ -5738,40 +5340,21 @@ msgstr "Kanał publicznego strumienia (Atom)" #: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" -"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" -"Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/). " -"[Dołącz teraz](%%action.register%%), aby dzielić się wpisami o sobie z " -"przyjaciółmi, rodziną i kolegami! ([Przeczytaj więcej](%%doc.help%%))" +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/). [Dołącz teraz](%%action.register%%), aby dzielić się wpisami o sobie z przyjaciółmi, rodziną i kolegami! ([Przeczytaj więcej](%%doc.help%%))" #: actions/register.php:286 actions/register.php:329 #, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" -"Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " -"wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator " -"[OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action." -"openidlogin%%)!)" +msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator [OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action.openidlogin%%)!)" #: actions/register.php:432 actions/register.php:479 actions/register.php:489 msgid "Creative Commons Attribution 3.0" msgstr "Creative Commons Uznanie Autorstwa 3.0" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora i " -"numer telefonu." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr " poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora i numer telefonu." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5781,19 +5364,8 @@ msgstr "Utworzono" #: actions/showgroup.php:393 actions/showgroup.php:440 #: actions/showgroup.php:448 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" -"**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " -"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " -"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " -"krótkimi wiadomościami o swoim życiu i zainteresowaniach. [Dołącz teraz](%%%%" -"action.register%%%%), aby stać się częścią tej grupy i wiele więcej! " -"([Przeczytaj więcej](%%%%doc.help%%%%))" +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. [Join now](%%%%action.register%%%%) to become part of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się krótkimi wiadomościami o swoim życiu i zainteresowaniach. [Dołącz teraz](%%%%action.register%%%%), aby stać się częścią tej grupy i wiele więcej! ([Przeczytaj więcej](%%%%doc.help%%%%))" #: actions/showstream.php:147 msgid "Your profile" @@ -5842,55 +5414,18 @@ msgstr "Edytuj" #: actions/showstream.php:542 actions/showstream.php:388 #: actions/showstream.php:487 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" -"**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" -"pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" -"(http://status.net/). [Dołącz teraz](%%%%action.register%%%%), aby " -"obserwować wpisy użytkownika **%s** i wiele więcej! ([Przeczytaj więcej](%%%%" -"doc.help%%%%))" +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet](http://status.net/). [Dołącz teraz](%%%%action.register%%%%), aby obserwować wpisy użytkownika **%s** i wiele więcej! ([Przeczytaj więcej](%%%%doc.help%%%%))" #: actions/smssettings.php:335 actions/smssettings.php:347 -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź telefon, " -"czy otrzymałeś kod i instrukcje jak go użyć." +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź telefon, czy otrzymałeś kod i instrukcje jak go użyć." #: actions/twitapifavorites.php:171 lib/mail.php:556 #: actions/twitapifavorites.php:222 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" -"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" -"\n" -"Jeśli go zapomniałeś, tutaj możesz zobaczyć tekst wpisu:\n" -"\n" -"%3$s\n" -"\n" -"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" -"\n" -"%4$s\n" -"\n" -"Z poważaniem,\n" -"%5$s\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nIn case you forgot, you can see the text of your notice here:\n\n%3$s\n\nYou can see the list of %1$s's favorites here:\n\n%4$s\n\nFaithfully yours,\n%5$s\n" +msgstr "%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n\nJeśli go zapomniałeś, tutaj możesz zobaczyć tekst wpisu:\n\n%3$s\n\nTutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n\n%4$s\n\nZ poważaniem,\n%5$s\n" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5905,12 +5440,8 @@ msgid "No such user!" msgstr "Nie ma takiego użytkownika!" #: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Dodaj konto Twittera, aby automatycznie wysyłać wpisy do Twittera i " -"zasubskrybować przyjaciół z Twittera, którzy już tu są." +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Dodaj konto Twittera, aby automatycznie wysyłać wpisy do Twittera i zasubskrybować przyjaciół z Twittera, którzy już tu są." #: actions/twittersettings.php:345 actions/twittersettings.php:362 #, php-format @@ -5918,26 +5449,16 @@ msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Nie można pobrać informacji o koncie dla \"%s\" z Twittera." #: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować " -"wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " -"naciśnij \"Odrzuć\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, naciśnij \"Odrzuć\"." #: actions/usergroups.php:131 actions/usergroups.php:130 msgid "Search for more groups" msgstr "Znajdź więcej grup" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i " -"wyślij ponownie za kilka minut." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i wyślij ponownie za kilka minut." #: lib/action.php:406 lib/action.php:425 msgid "Connect to SMS, Twitter" @@ -5949,70 +5470,12 @@ msgstr "Odznaka" #: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" -"Subskrypcje: %1$s\n" -"Subskrybenci: %2$s\n" -"Wpisy: %3$s" +msgid "Subscriptions: %1$s\nSubscribers: %2$s\nNotices: %3$s" +msgstr "Subskrypcje: %1$s\nSubskrybenci: %2$s\nWpisy: %3$s" #: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" -"Polecenia:\n" -"on - włącza powiadomienia\n" -"off - wyłącza powiadomienia\n" -"help - wyświetla tę pomoc\n" -"follow - subskrybuje użytkownika\n" -"leave - rezygnuje z subskrypcji użytkownika\n" -"d - bezpośrednia wiadomość do użytkownika\n" -"get - uzyskuje ostatni wpis użytkownika\n" -"whois - uzyskuje informacje o profilu użytkownika\n" -"fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" -"stats - uzyskuje Twoje statystyki\n" -"stop - to samo co \"off\"\n" -"quit - to samo co \"off\"\n" -"sub - to samo co \"follow\"\n" -"unsub - to samo co \"leave\"\n" -"last - to samo co \"get\"\n" -"on - jeszcze nie zaimplementowano.\n" -"off - jeszcze nie zaimplementowano.\n" -"nudge - jeszcze nie zaimplementowano.\n" -"invite - jeszcze nie zaimplementowano.\n" -"track - jeszcze nie zaimplementowano.\n" -"untrack - jeszcze nie zaimplementowano.\n" -"track off - jeszcze nie zaimplementowano.\n" -"untrack all - jeszcze nie zaimplementowano.\n" -"tracks - jeszcze nie zaimplementowano.\n" -"tracking - jeszcze nie zaimplementowano.\n" +msgid "Commands:\non - turn on notifications\noff - turn off notifications\nhelp - show this help\nfollow - subscribe to user\nleave - unsubscribe from user\nd - direct message to user\nget - get last notice from user\nwhois - get profile info on user\nfav - add user's last notice as a 'fave'\nstats - get your stats\nstop - same as 'off'\nquit - same as 'off'\nsub - same as 'follow'\nunsub - same as 'leave'\nlast - same as 'get'\non - not yet implemented.\noff - not yet implemented.\nnudge - not yet implemented.\ninvite - not yet implemented.\ntrack - not yet implemented.\nuntrack - not yet implemented.\ntrack off - not yet implemented.\nuntrack all - not yet implemented.\ntracks - not yet implemented.\ntracking - not yet implemented.\n" +msgstr "Polecenia:\non - włącza powiadomienia\noff - wyłącza powiadomienia\nhelp - wyświetla tę pomoc\nfollow - subskrybuje użytkownika\nleave - rezygnuje z subskrypcji użytkownika\nd - bezpośrednia wiadomość do użytkownika\nget - uzyskuje ostatni wpis użytkownika\nwhois - uzyskuje informacje o profilu użytkownika\nfav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\nstats - uzyskuje Twoje statystyki\nstop - to samo co \"off\"\nquit - to samo co \"off\"\nsub - to samo co \"follow\"\nunsub - to samo co \"leave\"\nlast - to samo co \"get\"\non - jeszcze nie zaimplementowano.\noff - jeszcze nie zaimplementowano.\nnudge - jeszcze nie zaimplementowano.\ninvite - jeszcze nie zaimplementowano.\ntrack - jeszcze nie zaimplementowano.\nuntrack - jeszcze nie zaimplementowano.\ntrack off - jeszcze nie zaimplementowano.\nuntrack all - jeszcze nie zaimplementowano.\ntracks - jeszcze nie zaimplementowano.\ntracking - jeszcze nie zaimplementowano.\n" #: lib/dberroraction.php:60 msgid "Database error" @@ -6020,12 +5483,8 @@ msgstr "Błąd bazy danych" #: lib/facebookaction.php:271 lib/facebookaction.php:273 #, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Aby użyć aplikacji Facebook %s, musisz się zalogować za pomocą nazwy " -"użytkownika i hasła. Nie masz jeszcze nazwy użytkownika? " +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Aby użyć aplikacji Facebook %s, musisz się zalogować za pomocą nazwy użytkownika i hasła. Nie masz jeszcze nazwy użytkownika? " #: lib/feed.php:85 msgid "RSS 1.0" @@ -6050,118 +5509,23 @@ msgstr "Ten plik jest za duży. Maksymalny rozmiar pliku to %d." #: lib/mail.php:175 lib/mail.php:174 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" -"Cześć, %s.\n" -"\n" -"Ktoś właśnie podał ten adres e-mail na %s.\n" -"\n" -"Jeśli to byłeś Ty, i chcesz potwierdzić swoje wejście, użyj poniższego " -"adresu URL:\n" -"\n" -"\t%s\n" -"\n" -"Jeśli to nie ty, po prostu zignoruj tę wiadomość.\n" -"\n" -"Dziękujemy za Twój czas, \n" -"%s\n" +msgid "Hey, %s.\n\nSomeone just entered this email address on %s.\n\nIf it was you, and you want to confirm your entry, use the URL below:\n\n %s\n\nIf not, just ignore this message.\n\nThanks for your time, \n%s\n" +msgstr "Cześć, %s.\n\nKtoś właśnie podał ten adres e-mail na %s.\n\nJeśli to byłeś Ty, i chcesz potwierdzić swoje wejście, użyj poniższego adresu URL:\n\n %s\n\nJeśli to nie ty, po prostu zignoruj tę wiadomość.\n\nDziękujemy za Twój czas, \n%s\n" #: lib/mail.php:241 lib/mail.php:240 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Z poważaniem,\n" -"%7$s.\n" -"\n" -"----\n" -"Zmień adres e-mail lub opcje powiadamiania na %8$s\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nZ poważaniem,\n%7$s.\n\n----\nZmień adres e-mail lub opcje powiadamiania na %8$s\n" #: lib/mail.php:466 #, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" -"Użytkownik %1$s (%2$s) zastanawia się, co się z Tobą dzieje w ostatnich " -"dniach i zaprasza Cię do wysłania jakichś aktualności.\n" -"\n" -"Tak więc do usłyszenia. :)\n" -"\n" -"%3$s\n" -"\n" -"Nie odpowiadaj na tę wiadomość e-mail, nie dotrze ona do nich.\n" -"\n" -"Z poważaniem,\n" -"%4$s\n" +msgid "%1$s (%2$s) is wondering what you are up to these days and is inviting you to post some news.\n\nSo let's hear from you :)\n\n%3$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%4$s\n" +msgstr "Użytkownik %1$s (%2$s) zastanawia się, co się z Tobą dzieje w ostatnich dniach i zaprasza Cię do wysłania jakichś aktualności.\n\nTak więc do usłyszenia. :)\n\n%3$s\n\nNie odpowiadaj na tę wiadomość e-mail, nie dotrze ona do nich.\n\nZ poważaniem,\n%4$s\n" #: lib/mail.php:513 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" -"Użytkownik %1$s (%2$s) wysłał Ci prywatną wiadomość:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"Tutaj możesz na nią odpowiedzieć:\n" -"\n" -"%4$s\n" -"\n" -"Nie odpowiadaj na tę wiadomość e-mail, nie dotrze ona do nich.\n" -"\n" -"Z poważaniem,\n" -"%5$s\n" +msgid "%1$s (%2$s) sent you a private message:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nYou can reply to their message here:\n\n%4$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%5$s\n" +msgstr "Użytkownik %1$s (%2$s) wysłał Ci prywatną wiadomość:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nTutaj możesz na nią odpowiedzieć:\n\n%4$s\n\nNie odpowiadaj na tę wiadomość e-mail, nie dotrze ona do nich.\n\nZ poważaniem,\n%5$s\n" #: lib/mail.php:598 lib/mail.php:600 #, php-format @@ -6170,53 +5534,8 @@ msgstr "Użytkownik %s wysłał wpis wymagający Twojej uwagi" #: lib/mail.php:600 lib/mail.php:602 #, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" -"Użytkownik %1$s właśnie wysłał wpis wymagający Twojej uwagi (odpowiedź \"@" -"\") na %2$s.\n" -"\n" -"Twój wpis znajduje się tutaj:\n" -"\n" -"\t%3$s\n" -"\n" -"Zawiera tekst:\n" -"\n" -"\t%4$s\n" -"\n" -"Tutaj możesz odpowiedzieć:\n" -"\n" -"\t%5$s\n" -"\n" -"Lista wszystkich odpowiedzi \"@\" do Ciebie znajduje się tutaj:\n" -"\n" -"%6$s\n" -"\n" -"Z poważaniem,\n" -"%2$s\n" -"\n" -"PS Tutaj możesz wyłączyć te powiadomienia przez e-mail: %7$s\n" +msgid "%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n\nThe notice is here:\n\n %3$s\n\nIt reads:\n\n %4$s\n\nYou can reply back here:\n\n %5$s\n\nThe list of all @-replies for you here:\n\n%6$s\n\nFaithfully yours,\n%2$s\n\nP.S. You can turn off these email notifications here: %7$s\n" +msgstr "Użytkownik %1$s właśnie wysłał wpis wymagający Twojej uwagi (odpowiedź \"@\") na %2$s.\n\nTwój wpis znajduje się tutaj:\n\n %3$s\n\nZawiera tekst:\n\n %4$s\n\nTutaj możesz odpowiedzieć:\n\n %5$s\n\nLista wszystkich odpowiedzi \"@\" do Ciebie znajduje się tutaj:\n\n%6$s\n\nZ poważaniem,\n%2$s\n\nPS Tutaj możesz wyłączyć te powiadomienia przez e-mail: %7$s\n" #: lib/searchaction.php:122 lib/searchaction.php:120 msgid "Search site" @@ -6228,40 +5547,24 @@ msgstr "Więcej..." #: actions/all.php:80 actions/all.php:127 #, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" -"To jest oś czasu użytkownika %s i przyjaciół, ale nikt jeszcze nic nie " -"wysłał." +msgid "This is the timeline for %s and friends but no one has posted anything yet." +msgstr "To jest oś czasu użytkownika %s i przyjaciół, ale nikt jeszcze nic nie wysłał." #: actions/all.php:85 actions/all.php:132 #, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" -"Spróbuj zasubskrybować więcej osób, [dołączyć do grupy](%%action.groups%%) " -"lub wysłać coś samemu." +msgid "Try subscribing to more people, [join a group](%%action.groups%%) or post something yourself." +msgstr "Spróbuj zasubskrybować więcej osób, [dołączyć do grupy](%%action.groups%%) lub wysłać coś samemu." #: actions/all.php:87 actions/all.php:134 #, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" -"Możesz spróbować [szturchnąć użytkownika %s](../%s) z jego profilu lub " -"[wysłać coś wymagającego jego uwagi](%%%%action.newnotice%%%%?" -"status_textarea=%s)." +msgid "You can try to [nudge %s](../%s) from his profile or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "Możesz spróbować [szturchnąć użytkownika %s](../%s) z jego profilu lub [wysłać coś wymagającego jego uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." #: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 #: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wtedy " -"szturchniesz użytkownika %s lub wyślesz wpis wymagającego jego uwagi." +msgid "Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to his or her attention." +msgstr "Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wtedy szturchniesz użytkownika %s lub wyślesz wpis wymagającego jego uwagi." #: actions/attachment.php:73 msgid "No such attachment." @@ -6335,26 +5638,16 @@ msgstr "Nie można utworzyć aliasów." #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" -"Ulubione wpisy są widoczne na tej stronie, ale nikt nie oznaczył jeszcze " -"żadnego jako ulubiony." +msgstr "Ulubione wpisy są widoczne na tej stronie, ale nikt nie oznaczył jeszcze żadnego jako ulubiony." #: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" -"Bądź pierwszym, który doda wpis do ulubionych naciskając przycisk ulubionego " -"obok wpisu, który Ci się podoba." +msgid "Be the first to add a notice to your favorites by clicking the fave button next to any notice you like." +msgstr "Bądź pierwszym, który doda wpis do ulubionych naciskając przycisk ulubionego obok wpisu, który Ci się podoba." #: actions/favorited.php:156 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " -"pierwszym, który doda wpis do ulubionych!" +msgid "Why not [register an account](%%action.register%%) and be the first to add a notice to your favorites!" +msgstr "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz pierwszym, który doda wpis do ulubionych!" #: actions/file.php:34 msgid "No notice id" @@ -6400,14 +5693,8 @@ msgstr "Zablokuj użytkownika w grupie" #: actions/groupblock.php:155 #, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" -"Jesteś pewny, że chcesz zablokować użytkownika \"%s\" w grupie \"%s\"? " -"Zostanie usunięty z grupy, nie będzie mógł wysyłać wpisów i zasubskrybować " -"grupy w przyszłości." +msgid "Are you sure you want to block user \"%s\" from the group \"%s\"? They will be removed from the group, unable to post, and unable to subscribe to the group in the future." +msgstr "Jesteś pewny, że chcesz zablokować użytkownika \"%s\" w grupie \"%s\"? Zostanie usunięty z grupy, nie będzie mógł wysyłać wpisów i zasubskrybować grupy w przyszłości." #: actions/groupblock.php:193 msgid "Database error blocking user from group." @@ -6422,9 +5709,7 @@ msgid "Group design" msgstr "Wygląd grupy" #: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." +msgid "Customize the way your group looks with a background image and a colour palette of your choice." msgstr "Dostosuj wygląd grupy za pomocą wybranego obrazu tła i palety kolorów." #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 @@ -6465,21 +5750,13 @@ msgstr "Brak wyników." #: actions/groupsearch.php:82 #, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" -"Jeśli nie możesz znaleźć grupy, której szukasz, możesz sam [ją utworzyć](%%" -"action.newgroup%%)." +msgid "If you can't find the group you're looking for, you can [create it](%%action.newgroup%%) yourself." +msgstr "Jeśli nie możesz znaleźć grupy, której szukasz, możesz sam [ją utworzyć](%%action.newgroup%%)." #: actions/groupsearch.php:85 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i sam [utworzysz " -"grupę](%%action.newgroup%%)!" +msgid "Why not [register an account](%%action.register%%) and [create the group](%%action.newgroup%%) yourself!" +msgstr "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i sam [utworzysz grupę](%%action.newgroup%%)!" #: actions/groupunblock.php:91 msgid "Only an admin can unblock group members." @@ -6524,12 +5801,8 @@ msgstr "Wysłano wiadomość" #: actions/newnotice.php:93 lib/designsettings.php:281 #: actions/newnotice.php:94 #, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" -"Serwer nie może obsłużyć aż tyle danych POST (%s bajty) z powodu bieżącej " -"konfiguracji." +msgid "The server was unable to handle that much POST data (%s bytes) due to its current configuration." +msgstr "Serwer nie może obsłużyć aż tyle danych POST (%s bajty) z powodu bieżącej konfiguracji." #: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 #, php-format @@ -6546,11 +5819,8 @@ msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Wysłany plik przekracza dyrektywę upload_max_filesize w php.ini." #: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" -"Wysłany plik przekracza dyrektywę MAX_FILE_SIZE podaną w formularzu HTML." +msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form." +msgstr "Wysłany plik przekracza dyrektywę MAX_FILE_SIZE podaną w formularzu HTML." #: actions/newnotice.php:211 lib/mediafile.php:152 msgid "The uploaded file was only partially uploaded." @@ -6593,32 +5863,18 @@ msgstr "Wystąpił błąd bazy danych podczas zapisywania pliku. Spróbuj ponown #: actions/noticesearch.php:121 #, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" -"Zostań pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +msgid "Be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "Zostań pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?status_textarea=%s)!" #: actions/noticesearch.php:124 #, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i zostaniesz " -"pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" +msgid "Why not [register an account](%%%%action.register%%%%) and be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i zostaniesz pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?status_textarea=%s)!" #: actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) umożliwia logowanie się do wielu stron za pomocą " -"tego samego konta użytkownika. Tu można zarządzać powiązanymi " -"identyfikatorami OpenID." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) umożliwia logowanie się do wielu stron za pomocą tego samego konta użytkownika. Tu można zarządzać powiązanymi identyfikatorami OpenID." #: actions/othersettings.php:110 actions/othersettings.php:117 msgid "Shorten URLs with" @@ -6639,12 +5895,8 @@ msgstr "Poza ograniczeniem strony (%s)" #: actions/public.php:179 #, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" -"To jest publiczna oś czasu dla %%site.name%%, ale nikt jeszcze nic nie " -"wysłał." +msgid "This is the public timeline for %%site.name%% but no one has posted anything yet." +msgstr "To jest publiczna oś czasu dla %%site.name%%, ale nikt jeszcze nic nie wysłał." #: actions/public.php:182 msgid "Be the first to post!" @@ -6652,27 +5904,18 @@ msgstr "Zostań pierwszym, który coś wyśle!" #: actions/public.php:186 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " -"pierwszym, który coś wyśle!" +msgid "Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz pierwszym, który coś wyśle!" #: actions/public.php:245 actions/public.php:238 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" -"Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/)." +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/)." #: actions/publictagcloud.php:69 #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" -"Nikt jeszcze nie wysłał wpisu za pomocą [znacznika hasha](%%doc.tags%%)." +msgstr "Nikt jeszcze nie wysłał wpisu za pomocą [znacznika hasha](%%doc.tags%%)." #: actions/publictagcloud.php:72 msgid "Be the first to post one!" @@ -6680,20 +5923,12 @@ msgstr "Zostań pierwszym, który go wyśle!" #: actions/publictagcloud.php:75 #, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" -"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " -"pierwszym, który go wyśle!" +msgid "Why not [register an account](%%action.register%%) and be the first to post one!" +msgstr "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz pierwszym, który go wyśle!" #: actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Jeśli zapomniałeś lub zgubiłeś swoje hasło, możesz otrzymać nowe, wysłane na " -"adres e-mail, który podałeś." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Jeśli zapomniałeś lub zgubiłeś swoje hasło, możesz otrzymać nowe, wysłane na adres e-mail, który podałeś." #: actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -6713,30 +5948,18 @@ msgstr "Zasubskrybuj zdalnego użytkownika" #: actions/replies.php:179 actions/replies.php:198 #, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" -"To jest oś czasu wyświetlająca odpowiedzi na wpisy użytkownika %s, ale %s " -"nie otrzymał jeszcze wpisów wymagających jego uwagi." +msgid "This is the timeline showing replies to %s but %s hasn't received a notice to his attention yet." +msgstr "To jest oś czasu wyświetlająca odpowiedzi na wpisy użytkownika %s, ale %s nie otrzymał jeszcze wpisów wymagających jego uwagi." #: actions/replies.php:184 actions/replies.php:203 #, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" -"Możesz nawiązać rozmowę z innymi użytkownikami, zasubskrybować więcej osób " -"lub [dołączyć do grup](%%action.groups%%)." +msgid "You can engage other users in a conversation, subscribe to more people or [join groups](%%action.groups%%)." +msgstr "Możesz nawiązać rozmowę z innymi użytkownikami, zasubskrybować więcej osób lub [dołączyć do grup](%%action.groups%%)." #: actions/replies.php:186 actions/replies.php:205 #, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" -"Możesz spróbować [szturchnąć użytkownika %s](../%s) lub [wysłać coś " -"wymagającego jego uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "You can try to [nudge %s](../%s) or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "Możesz spróbować [szturchnąć użytkownika %s](../%s) lub [wysłać coś wymagającego jego uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." #: actions/showfavorites.php:79 #, php-format @@ -6744,33 +5967,18 @@ msgid "%s's favorite notices, page %d" msgstr "Ulubione wpisy użytkownika %s, strona %d" #: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" -"Nie wybrałeś jeszcze żadnych ulubionych wpisów. Naciśnij przycisk ulubionego " -"na wpisach, które chciałbyś dodać do zakładek na później lub rzucić na nie " -"trochę światła." +msgid "You haven't chosen any favorite notices yet. Click the fave button on notices you like to bookmark them for later or shed a spotlight on them." +msgstr "Nie wybrałeś jeszcze żadnych ulubionych wpisów. Naciśnij przycisk ulubionego na wpisach, które chciałbyś dodać do zakładek na później lub rzucić na nie trochę światła." #: actions/showfavorites.php:172 actions/showfavorites.php:207 #, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" -"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Wyślij coś " -"interesującego, aby chcieli dodać to do swoich ulubionych. :)" +msgid "%s hasn't added any notices to his favorites yet. Post something interesting they would add to their favorites :)" +msgstr "Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Wyślij coś interesującego, aby chcieli dodać to do swoich ulubionych. :)" #: actions/showfavorites.php:176 #, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" -"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie " -"[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " -"interesującego, aby chcieli dodać to do swoich ulubionych. :)" +msgid "%s hasn't added any notices to his favorites yet. Why not [register an account](%%%%action.register%%%%) and then post something interesting they would add to thier favorites :)" +msgstr "Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś interesującego, aby chcieli dodać to do swoich ulubionych. :)" #: actions/showfavorites.php:226 actions/showfavorites.php:242 msgid "This is a way to share what you like." @@ -6798,16 +6006,8 @@ msgstr "Kanał wpisów dla grupy %s (Atom)" #: actions/showgroup.php:446 actions/showgroup.php:454 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " -"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " -"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " -"krótkimi wiadomościami o swoim życiu i zainteresowaniach. " +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się krótkimi wiadomościami o swoim życiu i zainteresowaniach. " #: actions/showgroup.php:474 actions/showgroup.php:482 msgid "Admins" @@ -6830,44 +6030,25 @@ msgstr "Kanał wpisów dla %s ze znacznikiem %s (RSS 1.0)" #: actions/showstream.php:350 actions/showstream.php:444 #, php-format msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" -"To jest oś czasu dla użytkownika %s, ale %s nie nic jeszcze nie wysłał." +msgstr "To jest oś czasu dla użytkownika %s, ale %s nie nic jeszcze nie wysłał." #: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" -"Widziałeś ostatnio coś interesującego? Nie wysłałeś jeszcze żadnych wpisów, " -"teraz jest dobry czas, aby zacząć. :)" +msgid "Seen anything interesting recently? You haven't posted any notices yet, now would be a good time to start :)" +msgstr "Widziałeś ostatnio coś interesującego? Nie wysłałeś jeszcze żadnych wpisów, teraz jest dobry czas, aby zacząć. :)" #: actions/showstream.php:357 actions/showstream.php:451 #, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" -"Możesz spróbować szturchnąć użytkownika %s lub [wysłać coś, co wymaga jego " -"uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "You can try to nudge %s or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "Możesz spróbować szturchnąć użytkownika %s lub [wysłać coś, co wymaga jego uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." #: actions/showstream.php:393 actions/showstream.php:492 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" -"pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" -"(http://status.net/). " +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet](http://status.net/). " #: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" -"Nie masz żadnych subskrybentów. Spróbuj zasubskrybować osoby, które znasz, a " -"oni mogą się odwdzięczyć" +msgid "You have no subscribers. Try subscribing to people you know and they might return the favor" +msgstr "Nie masz żadnych subskrybentów. Spróbuj zasubskrybować osoby, które znasz, a oni mogą się odwdzięczyć" #: actions/subscribers.php:110 #, php-format @@ -6876,28 +6057,13 @@ msgstr "Użytkownik %s nie posiada subskrybentów. Chcesz być pierwszym?" #: actions/subscribers.php:114 #, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" -"Użytkownik %s nie posiada subskrybentów. Dlaczego nie [zarejestrujesz konta]" -"(%%%%action.register%%%%) i zostaniesz pierwszym?" +msgid "%s has no subscribers. Why not [register an account](%%%%action.register%%%%) and be the first?" +msgstr "Użytkownik %s nie posiada subskrybentów. Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i zostaniesz pierwszym?" #: actions/subscriptions.php:115 actions/subscriptions.php:121 #, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" -"Nie obserwujesz teraz wpisów innych użytkowników. Spróbuj zasubskrybować " -"osoby, które znasz. Spróbuj [znaleźć kogoś](%%action.peoplesearch%%), " -"poszukać członków grup, które Cię interesują, a także [znanych użytkowników]" -"(%%action.featured%%). Jeśli jesteś [użytkownikiem Twittera](%%action." -"twittersettings%%), możesz automatycznie zasubskrybowć osoby, które tam już " -"obserwujesz." +msgid "You're not listening to anyone's notices right now, try subscribing to people you know. Try [people search](%%action.peoplesearch%%), look for members in groups you're interested in and in our [featured users](%%action.featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can automatically subscribe to people you already follow there." +msgstr "Nie obserwujesz teraz wpisów innych użytkowników. Spróbuj zasubskrybować osoby, które znasz. Spróbuj [znaleźć kogoś](%%action.peoplesearch%%), poszukać członków grup, które Cię interesują, a także [znanych użytkowników](%%action.featured%%). Jeśli jesteś [użytkownikiem Twittera](%%action.twittersettings%%), możesz automatycznie zasubskrybowć osoby, które tam już obserwujesz." #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 @@ -6964,11 +6130,8 @@ msgid "Profile design" msgstr "Wygląd profilu" #: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" -"Dostosuj wygląd profilu za pomocą wybranego obrazu tła i palety kolorów." +msgid "Customize the way your profile looks with a background image and a colour palette of your choice." +msgstr "Dostosuj wygląd profilu za pomocą wybranego obrazu tła i palety kolorów." #: actions/userdesignsettings.php:282 msgid "Enjoy your hotdog!" @@ -6986,25 +6149,18 @@ msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i dołączyć do nich #: classes/File.php:127 classes/File.php:137 #, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" -"Żaden plik nie może być większy niż %d bajty, a wysłany plik miał %d bajty. " -"Spróbuj wysłać mniejszą wersję." +msgid "No file may be larger than %d bytes and the file you sent was %d bytes. Try to upload a smaller version." +msgstr "Żaden plik nie może być większy niż %d bajty, a wysłany plik miał %d bajty. Spróbuj wysłać mniejszą wersję." #: classes/File.php:137 classes/File.php:147 #, php-format msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" -"Plik tej wielkości przekroczyłby przydział użytkownika wynoszący %d bajty." +msgstr "Plik tej wielkości przekroczyłby przydział użytkownika wynoszący %d bajty." #: classes/File.php:145 classes/File.php:154 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" -"Plik tej wielkości przekroczyłby miesięczny przydział użytkownika wynoszący %" -"d bajty." +msgstr "Plik tej wielkości przekroczyłby miesięczny przydział użytkownika wynoszący %d bajty." #: classes/Notice.php:139 classes/Notice.php:179 msgid "Problem saving notice. Too long." @@ -7057,8 +6213,7 @@ msgid "Upload file" msgstr "Wyślij plik" #: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." +msgid "You can upload your personal background image. The maximum file size is 2Mb." msgstr "Można wysłać swój osobisty obraz. Maksymalny rozmiar pliku to 2 MB." #: lib/designsettings.php:139 @@ -7124,9 +6279,7 @@ msgstr "Przywrócono domyślny wygląd." #: lib/groupeditform.php:181 lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" -"Dodatkowe pseudonimy grupy, oddzielone przecinkami lub spacjami, maksymalnie " -"%d" +msgstr "Dodatkowe pseudonimy grupy, oddzielone przecinkami lub spacjami, maksymalnie %d" #: lib/groupnav.php:100 msgid "Blocked" @@ -7144,40 +6297,8 @@ msgstr "Dodaj lub edytuj wygląd %s" #: lib/mail.php:556 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" -"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" -"\n" -"Adres URL Twojego wpisu:\n" -"\n" -"%3$s\n" -"\n" -"Tekst Twojego wpisu:\n" -"\n" -"%4$s\n" -"\n" -"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" -"\n" -"%5$s\n" -"\n" -"Z poważaniem,\n" -"%6$s\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" +msgstr "%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n\nAdres URL Twojego wpisu:\n\n%3$s\n\nTekst Twojego wpisu:\n\n%4$s\n\nTutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n\n%5$s\n\nZ poważaniem,\n%6$s\n" #: lib/mail.php:646 #, php-format @@ -7186,32 +6307,8 @@ msgstr "Mostek Twittera został wyłączony." #: lib/mail.php:648 #, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" -"Witaj, %1$s. Przykro nam poinformować, że Twój odnośnik do Twittera został " -"wyłączony. Albo zmieniłeś dane uwierzytelniające Twittera (zmieniałeś " -"ostatnio hasło?), albo w inny sposób zablokowałeś nam dostęp do swojego " -"konta.\n" -"\n" -"Można ponownie włączyć mostek Twittera odwiedzając stronę ustawień " -"Twittera:\n" -"\n" -"\t%2$s\n" -"\n" -"Z poważaniem,\n" -"%3$s\n" +msgid "Hi, %1$s. We're sorry to inform you that your link to Twitter has been disabled. Your Twitter credentials have either changed (did you recently change your Twitter password?) or you have otherwise revoked our access to your Twitter account.\n\nYou can re-enable your Twitter bridge by visiting your Twitter settings page:\n\n %2$s\n\nRegards,\n%3$s\n" +msgstr "Witaj, %1$s. Przykro nam poinformować, że Twój odnośnik do Twittera został wyłączony. Albo zmieniłeś dane uwierzytelniające Twittera (zmieniałeś ostatnio hasło?), albo w inny sposób zablokowałeś nam dostęp do swojego konta.\n\nMożna ponownie włączyć mostek Twittera odwiedzając stronę ustawień Twittera:\n\n %2$s\n\nZ poważaniem,\n%3$s\n" #: lib/mail.php:682 #, php-format @@ -7220,37 +6317,12 @@ msgstr "Dostęp do aplikacji Facebooka %s został wyłączony." #: lib/mail.php:685 #, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" -"Witaj, %1$s. Przykro nam poinformować, że nie możemy zaktualizować Twojego " -"statusu Facebook z %s i wyłączyliśmy aplikację Facebooka dla Twojego konta. " -"Mogło to być spowodowane usunięciem przez Ciebie upoważnienia aplikacji " -"Facebook lub usunięciem Twojego konta Facebook. Można ponownie włączyć " -"aplikację Facebook i automatyczne aktualizowanie statusu przez ponowne " -"zainstalowanie aplikacji Facebooka %1$s.\n" -"\n" -"Z poważaniem,\n" -"\n" -"%1$s" +msgid "Hi, %1$s. We're sorry to inform you that we are unable to update your Facebook status from %s, and have disabled the Facebook application for your account. This may be because you have removed the Facebook application's authorization, or have deleted your Facebook account. You can re-enable the Facebook application and automatic status updating by re-installing the %1$s Facebook application.\n\nRegards,\n\n%1$s" +msgstr "Witaj, %1$s. Przykro nam poinformować, że nie możemy zaktualizować Twojego statusu Facebook z %s i wyłączyliśmy aplikację Facebooka dla Twojego konta. Mogło to być spowodowane usunięciem przez Ciebie upoważnienia aplikacji Facebook lub usunięciem Twojego konta Facebook. Można ponownie włączyć aplikację Facebook i automatyczne aktualizowanie statusu przez ponowne zainstalowanie aplikacji Facebooka %1$s.\n\nZ poważaniem,\n\n%1$s" #: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" -"Brak prywatnych wiadomości. Można wysłać prywatną wiadomość, aby nawiązać " -"rozmowę z innymi użytkownikami. Inni mogą wysyłać Ci wiadomości tylko dla " -"Twoich oczu." +msgid "You have no private messages. You can send private message to engage other users in conversation. People can send you messages for your eyes only." +msgstr "Brak prywatnych wiadomości. Można wysłać prywatną wiadomość, aby nawiązać rozmowę z innymi użytkownikami. Inni mogą wysyłać Ci wiadomości tylko dla Twoich oczu." #: lib/noticeform.php:154 lib/noticeform.php:180 msgid "Attach" @@ -7290,9 +6362,7 @@ msgstr "%s nie jest prawidłowym kolorem!" #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" -"%s nie jest prawidłowym kolorem! Użyj trzech lub sześciu znaków " -"szesnastkowych." +msgstr "%s nie jest prawidłowym kolorem! Użyj trzech lub sześciu znaków szesnastkowych." #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 @@ -7301,12 +6371,12 @@ msgid "No such page" msgstr "Nie ma takiego znacznika." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Bezpośrednia wiadomość do użytkownika %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Wiadomość jest za długa. Maksymalna długość to 140 znaków." @@ -7315,12 +6385,8 @@ msgstr "Wiadomość jest za długa. Maksymalna długość to 140 znaków." msgid "Could not unfollow user: User not found." msgstr "Nie można obserwować użytkownika: nie znaleziono użytkownika." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "opis jest za długi (maksymalnie 140 znaków)." @@ -7330,7 +6396,7 @@ msgid "You are already a member of that group." msgstr "Jesteś już członkiem tej grupy" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Nie można dołączyć użytkownika %s do grupy %s" @@ -7340,22 +6406,22 @@ msgid "You are not a member of this group." msgstr "Nie jesteś członkiem tej grupy." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Nie można usunąć użytkownika %s z grupy %s" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "Grupy %s" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "Grupy %s są członkiem" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Działania grupy" @@ -7364,18 +6430,14 @@ msgstr "Działania grupy" msgid "Status deleted." msgstr "Usunięto awatar." -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Wpis jest za długi. Maksymalna długość to 140 znaków." #: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Max notice size is %d chars, including attachment URL." msgstr "Maksymalny rozmiar wpisu to 140 znaków, w tym adres URL załącznika." @@ -7390,12 +6452,12 @@ msgid "Post to " msgstr "Zdjęcie" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "opis jest za długi (maksymalnie 140 znaków)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Aktualizacje od %1$s na %2$s!" @@ -7430,7 +6492,7 @@ msgid "Cannot read file." msgstr "Utracono plik." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Aktualizacje od %1$s na %2$s!" @@ -7440,22 +6502,17 @@ msgid "IM is not available." msgstr "Ta strona nie jest dostępna w " #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? " -"[Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action." -"openidlogin%%). " +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? [Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates with \"%s\"" msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Wszystkie aktualizacje pasujące do wyszukiwanego terminu \"%s\"" @@ -7464,17 +6521,8 @@ msgstr "Wszystkie aktualizacje pasujące do wyszukiwanego terminu \"%s\"" msgid "content type " msgstr "Zawartość" -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Opisz się i swoje zainteresowania w 140 znakach" @@ -7484,25 +6532,18 @@ msgid "Describe yourself and your interests" msgstr "Opisz się i swoje " #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Wpis \"O mnie\" jest za długi (maksymalnie 140 znaków)." #: actions/register.php:336 #, fuzzy -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" -"Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " -"wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator " -"[OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action." -"openidlogin%%)!)" +msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. " +msgstr "Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator [OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action.openidlogin%%)!)" #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "To nie jest prawidłowy adres URL profilu (brak dokumentu YADIS)." #: actions/remotesubscribe.php:176 @@ -7516,53 +6557,47 @@ msgid "Couldn’t get a request token." msgstr "Nie można uzyskać tokenu żądana." #: actions/replies.php:144 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (RSS 1.0)" msgstr "Kanał wpisów dla %s (RSS 1.0)" #: actions/replies.php:151 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (RSS 2.0)" msgstr "Kanał wpisów dla %s (RSS 2.0)" #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Kanał wpisów dla %s (Atom)" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Wiadomość do użytkownika %1$s na %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Kanał dla znajomych użytkownika %s (Atom)" #: actions/showfavorites.php:211 -#, fuzzy, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" -"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie " -"[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " -"interesującego, aby chcieli dodać to do swoich ulubionych. :)" +#, php-format, fuzzy +msgid "%s hasn't added any notices to his favorites yet. Why not [register an account](%%%%action.register%%%%) and then post something interesting they would add to their favorites :)" +msgstr "Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś interesującego, aby chcieli dodać to do swoich ulubionych. :)" #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "FOAF dla %s" @@ -7577,78 +6612,32 @@ msgid "SMS is not available." msgstr "Ta strona nie jest dostępna w " #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować " -"wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " -"naciśnij \"Odrzuć\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, naciśnij \"Odrzuć\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " -"Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " -"Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Nie można odczytać adresu URL awatara \"%s\"" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Błędny typ obrazu dla \"%s\"" @@ -7663,35 +6652,27 @@ msgid "Site content license" msgstr "Licencja oprogramowania StatusNet" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Nie można zaktualizować użytkownika z potwierdzonym adresem e-mail." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Wysłano szturchnięcie" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Odpowiedz na ten wpis" @@ -7702,79 +6683,14 @@ msgstr "Problem podczas zapisywania wpisu." #: lib/command.php:587 #, fuzzy -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" -"Polecenia:\n" -"on - włącza powiadomienia\n" -"off - wyłącza powiadomienia\n" -"help - wyświetla tę pomoc\n" -"follow - subskrybuje użytkownika\n" -"leave - rezygnuje z subskrypcji użytkownika\n" -"d - bezpośrednia wiadomość do użytkownika\n" -"get - uzyskuje ostatni wpis użytkownika\n" -"whois - uzyskuje informacje o profilu użytkownika\n" -"fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" -"stats - uzyskuje Twoje statystyki\n" -"stop - to samo co \"off\"\n" -"quit - to samo co \"off\"\n" -"sub - to samo co \"follow\"\n" -"unsub - to samo co \"leave\"\n" -"last - to samo co \"get\"\n" -"on - jeszcze nie zaimplementowano.\n" -"off - jeszcze nie zaimplementowano.\n" -"nudge - jeszcze nie zaimplementowano.\n" -"invite - jeszcze nie zaimplementowano.\n" -"track - jeszcze nie zaimplementowano.\n" -"untrack - jeszcze nie zaimplementowano.\n" -"track off - jeszcze nie zaimplementowano.\n" -"untrack all - jeszcze nie zaimplementowano.\n" -"tracks - jeszcze nie zaimplementowano.\n" -"tracking - jeszcze nie zaimplementowano.\n" +msgid "Commands:\non - turn on notifications\noff - turn off notifications\nhelp - show this help\nfollow - subscribe to user\nleave - unsubscribe from user\nd - direct message to user\nget - get last notice from user\nwhois - get profile info on user\nfav - add user's last notice as a 'fave'\nfav # - add notice with the given id as a 'fave'\nreply # - reply to notice with a given id\nreply - reply to the last notice from user\njoin - join group\ndrop - leave group\nstats - get your stats\nstop - same as 'off'\nquit - same as 'off'\nsub - same as 'follow'\nunsub - same as 'leave'\nlast - same as 'get'\non - not yet implemented.\noff - not yet implemented.\nnudge - remind a user to update.\ninvite - not yet implemented.\ntrack - not yet implemented.\nuntrack - not yet implemented.\ntrack off - not yet implemented.\nuntrack all - not yet implemented.\ntracks - not yet implemented.\ntracking - not yet implemented.\n" +msgstr "Polecenia:\non - włącza powiadomienia\noff - wyłącza powiadomienia\nhelp - wyświetla tę pomoc\nfollow - subskrybuje użytkownika\nleave - rezygnuje z subskrypcji użytkownika\nd - bezpośrednia wiadomość do użytkownika\nget - uzyskuje ostatni wpis użytkownika\nwhois - uzyskuje informacje o profilu użytkownika\nfav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\nstats - uzyskuje Twoje statystyki\nstop - to samo co \"off\"\nquit - to samo co \"off\"\nsub - to samo co \"follow\"\nunsub - to samo co \"leave\"\nlast - to samo co \"get\"\non - jeszcze nie zaimplementowano.\noff - jeszcze nie zaimplementowano.\nnudge - jeszcze nie zaimplementowano.\ninvite - jeszcze nie zaimplementowano.\ntrack - jeszcze nie zaimplementowano.\nuntrack - jeszcze nie zaimplementowano.\ntrack off - jeszcze nie zaimplementowano.\nuntrack all - jeszcze nie zaimplementowano.\ntracks - jeszcze nie zaimplementowano.\ntracking - jeszcze nie zaimplementowano.\n" #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Brak kodu potwierdzającego." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7791,86 +6707,35 @@ msgid "Describe the group or topic" msgstr "Opisz grupę lub temat w 140 znakach" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Opisz grupę lub temat w 140 znakach" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Brak identyfikatora wpisu" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "Użytkownik %s dodał Twój wpis jako ulubiony" #: lib/mail.php:556 -#, fuzzy, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" -"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" -"\n" -"Adres URL Twojego wpisu:\n" -"\n" -"%3$s\n" -"\n" -"Tekst Twojego wpisu:\n" -"\n" -"%4$s\n" -"\n" -"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" -"\n" -"%5$s\n" -"\n" -"Z poważaniem,\n" -"%6$s\n" +#, php-format, fuzzy +msgid "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" +msgstr "%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n\nAdres URL Twojego wpisu:\n\n%3$s\n\nTekst Twojego wpisu:\n\n%4$s\n\nTutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n\n%5$s\n\nZ poważaniem,\n%6$s\n" #: lib/mail.php:611 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) sent a notice to your attention" msgstr "Użytkownik %s wysłał wpis wymagający Twojej uwagi" -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " z " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7880,3 +6745,4 @@ msgstr "Nie można określić użytkownika źródłowego." #, fuzzy msgid "Duplicate notice" msgstr "Usuń wpis" + diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 8d8340a7eb..4512ed662b 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -8,14 +8,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:59:19+0000\n" +"PO-Revision-Date: 2009-11-06 12:24:13+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: out-statusnet\n" @@ -29,11 +28,8 @@ msgstr "Procurar por \"%s\" no fluxo de mensagens" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"excepto estes dados privados: palavra chave, endereço de email, endereço de " -"mensageiro instantâneo, número de telefone." +msgid " except this private data: password, email address, IM address, phone number." +msgstr "excepto estes dados privados: palavra chave, endereço de email, endereço de mensageiro instantâneo, número de telefone." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -55,59 +51,8 @@ msgstr "%1$s convidou-o a juntar-se a ele no %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s convidou-o a juntar-se a ele no %2$s (%3$s).\n" -"\n" -"%2$s é um serviço de micro-blogging que o deixa actualizado com pessoas que " -"conhece e que lhe interessam.\n" -"\n" -"Também pode partilhar notícias suas, pensamentos, ou a sua vida online com " -"pessoas que o conheça. É também ideal para conhecer pessoas com interesses " -"semelhantes aos seus.\n" -"\n" -"%1$s disse:\n" -"\n" -"%4$s\n" -"\n" -"Pode ver o perfil de %1$s no %2$s aqui:\n" -"\n" -"%5$s\n" -"\n" -"Se gostaria de experimentar este serviço visite o endereço a baixo para " -"aceitar este convite.\n" -"\n" -"%6$s\n" -"\n" -"Se não, pode ignorar esta mensagem. Obrigado pelo seu tempo e paciência.\n" -"\n" -"Sinceramente, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s convidou-o a juntar-se a ele no %2$s (%3$s).\n\n%2$s é um serviço de micro-blogging que o deixa actualizado com pessoas que conhece e que lhe interessam.\n\nTambém pode partilhar notícias suas, pensamentos, ou a sua vida online com pessoas que o conheça. É também ideal para conhecer pessoas com interesses semelhantes aos seus.\n\n%1$s disse:\n\n%4$s\n\nPode ver o perfil de %1$s no %2$s aqui:\n\n%5$s\n\nSe gostaria de experimentar este serviço visite o endereço a baixo para aceitar este convite.\n\n%6$s\n\nSe não, pode ignorar esta mensagem. Obrigado pelo seu tempo e paciência.\n\nSinceramente, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -117,20 +62,8 @@ msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s está agora a ouvir os seus comunicados em %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Sinceramente,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s está agora a ouvir os seus comunicados em %2$s.\n\n %3$s\n\nSinceramente,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -206,22 +139,14 @@ msgstr "%s actualizações de todos!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Deverá receber uma mensagem por email dentro de momentos, com instrucções " -"sobre como confirmar o seu endereço de email.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Deverá receber uma mensagem por email dentro de momentos, com instrucções sobre como confirmar o seu endereço de email.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%*** é um serviço de microblogging trazido até sí por [%%site." -"broughtby%%](%%site.broughtbyurl%%)." +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%*** é um serviço de microblogging trazido até sí por [%%site.broughtby%%](%%site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -265,31 +190,17 @@ msgstr "6 ou mais caracteres. Obrigatório." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Um código de confirmação foi enviado para o endereço fornecido. Tem que " -"aprovar que %s envie mensagens para sí." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Um código de confirmação foi enviado para o endereço fornecido. Tem que aprovar que %s envie mensagens para sí." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Um código de confirmação foi enviado para o endereço de email fornecido. " -"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " -"e instrucções de utilização." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Um código de confirmação foi enviado para o endereço de email fornecido. Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código e instrucções de utilização." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Um código de confirmação foi enviado para o número de telefone fornecido. " -"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " -"e instrucções de utilização." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Um código de confirmação foi enviado para o número de telefone fornecido. Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código e instrucções de utilização." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -464,17 +375,13 @@ msgstr "Autorizar subscrição" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Efectuar login automático; não utilizar em computadores de uso partilhado!" +msgstr "Efectuar login automático; não utilizar em computadores de uso partilhado!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Subscrever automaticamente a quem se subscrever a mim (recomendado para não-" -"humanos)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Subscrever automaticamente a quem se subscrever a mim (recomendado para não-humanos)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -493,21 +400,13 @@ msgstr "Avatar actualizado." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"A aguardar confirmação deste endereço. Verifique as instrucções enviadas " -"para a sua conta de Jabber/GTalk. (Adicionou %s à sua lista de amigos?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "A aguardar confirmação deste endereço. Verifique as instrucções enviadas para a sua conta de Jabber/GTalk. (Adicionou %s à sua lista de amigos?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"A aguardar confirmação deste endereço. Procure na sua 'Caixa de Entrada' (e " -"caixa de spam) pela mensagem com as instrucções." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "A aguardar confirmação deste endereço. Procure na sua 'Caixa de Entrada' (e caixa de spam) pela mensagem com as instrucções." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -645,35 +544,8 @@ msgstr "Código de confirmação não encontrado" #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Parabéns, %s! Bemvindo ao %%%%site.name%%%%. A partir de agora deverá...\n" -"\n" -"* Ir ao [seu perfil](%s) e enviar a primeira mensagem.\n" -"* Adicionar uma [Endereço Jabber/GTalk](%%%%action.imsettings%%%%) de forma " -"a poder enviar notações através de mensagens instantâneas.\n" -"* [Procurar por pessoas](%%%%action.peoplesearch%%%%) que conheça ou " -"partilhem os seus interesses. \n" -"* Actualizar o seu perfil [Opções de perfil](%%%%action.profilesettings%%%%) " -"para contar mais acerca de si aos outros. \n" -"* Ler os [documentos online](%%%%doc.help%%%%) para conhecer todas as " -"funcionalidades que tenha perdido. \n" -"\n" -"Obrigado por se registar e esperamos que se divirta usando este serviço." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Parabéns, %s! Bemvindo ao %%%%site.name%%%%. A partir de agora deverá...\n\n* Ir ao [seu perfil](%s) e enviar a primeira mensagem.\n* Adicionar uma [Endereço Jabber/GTalk](%%%%action.imsettings%%%%) de forma a poder enviar notações através de mensagens instantâneas.\n* [Procurar por pessoas](%%%%action.peoplesearch%%%%) que conheça ou partilhem os seus interesses. \n* Actualizar o seu perfil [Opções de perfil](%%%%action.profilesettings%%%%) para contar mais acerca de si aos outros. \n* Ler os [documentos online](%%%%doc.help%%%%) para conhecer todas as funcionalidades que tenha perdido. \n\nObrigado por se registar e esperamos que se divirta usando este serviço." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -740,14 +612,12 @@ msgstr "Não foi possível subscrever. " #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "" -"Não foi possivel actualizar utilizador com endereço de email confirmado." +msgstr "Não foi possivel actualizar utilizador com endereço de email confirmado." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "" -"Não foi possível converter os tokens de requisição em tokens de acesso." +msgstr "Não foi possível converter os tokens de requisição em tokens de acesso." #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -1082,12 +952,8 @@ msgid "Find people on this site" msgstr "Encontrar pessoas neste site" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Por razões de segurança, por favor reintroduza o seu nome de utilizador e " -"palavra-passe antes de alterar as suas configurações." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Por razões de segurança, por favor reintroduza o seu nome de utilizador e palavra-passe antes de alterar as suas configurações." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1172,29 +1038,16 @@ msgstr "Definições de IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-" -"passe para a ligar ao seu OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-passe para a ligar ao seu OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Se quiser adicionar um OpenID à sua conta, introduza-o na caixa a baixo e " -"clique em \"Adicionar\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Se quiser adicionar um OpenID à sua conta, introduza-o na caixa a baixo e clique em \"Adicionar\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma " -"nova que será enviada para o endereço de email que tem configurado na sua " -"conta." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma nova que será enviada para o endereço de email que tem configurado na sua conta." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1224,12 +1077,8 @@ msgstr "Nome de utilizador ou palavra-passe incorrecta" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"As instruções para a recuperação da palavra-passe foram enviadas para o " -"endereço de email registado na sua conta." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "As instruções para a recuperação da palavra-passe foram enviadas para o endereço de email registado na sua conta." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1322,28 +1171,11 @@ msgstr "Convidar" msgid "Invite new users" msgstr "Convidar novos utilizadores" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" - #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "O Jabber ID introduzido já pertence a outro utilizador." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" - #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 #: actions/profilesettings.php:144 @@ -1409,44 +1241,20 @@ msgstr "Entrar com conta [OpenID](%%doc.openid%%)" #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Entrar com o seu nome de utilizador e palavra passe. Não está registado " -"ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%" -"action.openidlogin%%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Entrar com o seu nome de utilizador e palavra passe. Não está registado ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Sair" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Perdeu ou esqueceu-se da palavra-passe?" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -1458,22 +1266,6 @@ msgstr "Membro desde" msgid "Microblog by %s" msgstr "Microblog por %s" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 -msgid "My text and files are available under " -msgstr "" - #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 @@ -1481,28 +1273,11 @@ msgstr "" msgid "New" msgstr "Novo" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nova alcunha" -#: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 actions/newnotice.php:69 -msgid "New notice" -msgstr "" - #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 @@ -1585,58 +1360,11 @@ msgstr "Alcunha ou email" msgid "No" msgstr "Não" -#: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 actions/imsettings.php:285 -msgid "No Jabber ID." -msgstr "" - -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - #: ../actions/smssettings.php:316 actions/smssettings.php:324 #: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Nenhum código introduzido" -#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 -#: actions/confirmaddress.php:75 -msgid "No confirmation code." -msgstr "" - -#: ../actions/newnotice.php:44 actions/newmessage.php:53 -#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 -#: actions/newnotice.php:126 classes/Command.php:223 -#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 -#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 -#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 -msgid "No content!" -msgstr "" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "" - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -1663,11 +1391,6 @@ msgstr "Nenhuma confirmação pendente para cancelar." msgid "No phone number." msgstr "Nenhum numero de telefone." -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "" - #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 @@ -1686,11 +1409,6 @@ msgstr "Nenhum pedido encontrado!" msgid "No results" msgstr "Nenhum resultado" -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "" - #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 #: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 @@ -1706,2502 +1424,33 @@ msgstr "Nenhum estado encontrado com esse ID." msgid "No status with that ID found." msgstr "Nenhum estado com esse ID encontrado." -#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 -#: actions/openidsettings.php:222 -msgid "No such OpenID." -msgstr "" - -#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 -#: actions/doc.php:69 -msgid "No such document." -msgstr "" - -#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 -#: ../lib/deleteaction.php:30 actions/shownotice.php:32 -#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 actions/deletenotice.php:52 -#: actions/shownotice.php:92 -msgid "No such notice." -msgstr "" - -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "" - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "" - -#: ../actions/all.php:34 ../actions/allrss.php:35 -#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 -#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 -#: ../actions/replies.php:57 ../actions/repliesrss.php:35 -#: ../actions/showstream.php:110 ../actions/userbyid.php:36 -#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 -#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 -#: actions/allrss.php:35 actions/avatarbynickname.php:43 -#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 -#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 -#: actions/replies.php:57 actions/repliesrss.php:35 -#: actions/showfavorites.php:34 actions/showstream.php:110 -#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 -#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 -#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 -#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 -#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 -#: actions/foaf.php:41 actions/remotesubscribe.php:123 -#: actions/remotesubscribe.php:130 actions/replies.php:73 -#: actions/repliesrss.php:38 actions/showfavorites.php:105 -#: actions/showstream.php:100 actions/userbyid.php:74 -#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 -#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 -#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 -#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 -#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 -#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 -#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 -#: lib/command.php:178 lib/command.php:227 lib/command.php:264 -#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 -#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 -#: lib/command.php:163 lib/command.php:311 lib/command.php:364 -#: lib/command.php:411 lib/command.php:466 -msgid "No such user." -msgstr "" - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "" - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 -msgid "Not a supported data format." -msgstr "" - -#: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 actions/imsettings.php:296 -msgid "Not a valid Jabber ID" -msgstr "" - -#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 -#: lib/openid.php:143 -msgid "Not a valid OpenID." -msgstr "" - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - -#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 -#: actions/register.php:189 actions/register.php:195 -msgid "Not a valid email address." -msgstr "" - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 -msgid "Not a valid nickname." -msgstr "" - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "" - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "" - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "" - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -msgid "Not found" -msgstr "" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "" - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "" - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "" - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "" - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 -msgid "Password" -msgstr "" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "" - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "" - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -msgid "Password saved." -msgstr "" - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -msgid "Passwords don't match." -msgstr "" - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "" - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 -msgid "Register" -msgstr "" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 -msgid "Registration successful" -msgstr "" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -msgid "Remember me" -msgstr "" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -msgid "Same as password above. Required." -msgstr "" - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "" - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "" - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "" - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "" - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -msgid "Subscribe" -msgstr "" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "" - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -msgid "Tags" -msgstr "" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "" - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "" - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "" - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "" - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "" - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "" - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "" - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "" - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "" - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "" - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "" - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "" - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "" - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "" - -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -msgid "This method requires a POST." -msgstr "" - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 -msgid "Two user ids or screen_names must be supplied." -msgstr "" - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -msgid "Unexpected form submission." -msgstr "" - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "" - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "" - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "" - -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" - -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 -msgid "User has no profile." -msgstr "" - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "" - -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" - -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "" - -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "" - -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "" - -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "" - -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "" - -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" - -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "" - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "" - -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" - -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" - -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "" - -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 -msgid "You can't register if you don't agree to the license." -msgstr "" - -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "" - -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "" - -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" - -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 -msgid "a few seconds ago" -msgstr "" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 -#, php-format -msgid "about %d days ago" -msgstr "" - -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 -#, php-format -msgid "about %d hours ago" -msgstr "" - -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 -#, php-format -msgid "about %d minutes ago" -msgstr "" - -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 -#, php-format -msgid "about %d months ago" -msgstr "" - -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 -msgid "about a day ago" -msgstr "" - -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 -msgid "about a minute ago" -msgstr "" - -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 -msgid "about a month ago" -msgstr "" - -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 -msgid "about a year ago" -msgstr "" - -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 -msgid "about an hour ago" -msgstr "" - -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "" - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "" - -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -msgid "Password must be 6 or more characters." -msgstr "" - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" - -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "" - -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" - #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s e amigos" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" - -#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 actions/avatarsettings.php:119 -#: actions/avatarsettings.php:194 actions/grouplogo.php:256 -#: actions/grouplogo.php:251 -msgid "Avatar settings" -msgstr "" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - -#: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 -#: lib/imagefile.php:118 -msgid "Lost our file." -msgstr "" - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" - -#: actions/block.php:111 actions/block.php:134 -msgid "Block user" -msgstr "" - -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "" - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " -msgstr "" - #: actions/deletenotice.php:73 #, fuzzy msgid "You are about to permanently delete a notice. " msgstr "Tem a certeza que permite remover esta mensagem?" -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" - -#: actions/editgroup.php:87 actions/grouplogo.php:87 -#: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 -#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 -#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 -#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 -#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 -msgid "No nickname" -msgstr "" - -#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 -#: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 actions/grouplogo.php:104 -#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 -#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 -#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 -#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 -#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 -msgid "No such group" -msgstr "" - -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "" - #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Bio é demasiada extensa (máx 140 car)." -#: actions/editgroup.php:218 actions/editgroup.php:253 -msgid "Could not update group." -msgstr "" - -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "" - #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "A aguardar confirmação deste número de telefone." -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - -#: actions/emailsettings.php:321 -msgid "That email address already belongs " -msgstr "" - #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Um código de confirmação foi enviado para o endereço fornecido. Tem que " -"aprovar que %s envie mensagens para sí." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" - -#: actions/facebookhome.php:235 lib/facebookaction.php:479 -#: lib/facebookaction.php:471 -msgid "No notice content!" -msgstr "" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "" +msgstr "Um código de confirmação foi enviado para o endereço fornecido. Tem que aprovar que %s envie mensagens para sí." #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 @@ -4211,892 +1460,73 @@ msgstr "" msgid "Before" msgstr "Antes »" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" - -#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 -#: actions/facebookinvite.php:103 -#, php-format -msgid "Invite your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - -#: actions/facebookremove.php:56 -msgid "Couldn't remove Facebook user." -msgstr "" - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" - -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "" - -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" - -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "" - -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "" - -#: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 -#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 -#: lib/popularnoticesection.php:87 -msgid "Popular notices" -msgstr "" - -#: actions/favorited.php:67 -#, php-format -msgid "Popular notices, page %d" -msgstr "" - -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Avatar actualizado." -#: actions/grouplogo.php:450 actions/grouplogo.php:403 -#: actions/grouplogo.php:398 -msgid "Failed updating logo." -msgstr "" - -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - -#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 -#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 -msgid "Create a new group" -msgstr "" - -#: actions/groupsearch.php:57 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "" - -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" - -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "" - #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Código de confirmação não encontrado" -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" - -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "" - -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "" - -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" - -#: actions/leavegroup.php:88 actions/groupblock.php:86 -#: actions/groupunblock.php:86 actions/makeadmin.php:86 -#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 -#: lib/command.php:212 lib/command.php:263 -msgid "No such group." -msgstr "" - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "" - -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "" - -#: actions/leavegroup.php:138 actions/leavegroup.php:132 -#: actions/leavegroup.php:127 lib/command.php:284 -#, php-format -msgid "Could not remove user %s to group %s" -msgstr "" - -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" - -#: actions/newgroup.php:177 actions/newgroup.php:209 -#: actions/apigroupcreate.php:136 actions/newgroup.php:204 -msgid "Could not create group." -msgstr "" - -#: actions/newgroup.php:191 actions/newgroup.php:229 -#: actions/apigroupcreate.php:166 actions/newgroup.php:224 -msgid "Could not set group membership." -msgstr "" - -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "" - -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" - -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "" - -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" - -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "" - -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "" - -#: actions/othersettings.php:60 -msgid "Other Settings" -msgstr "" - -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - -#: actions/othersettings.php:112 -msgid "Service" -msgstr "" - -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" - -#: actions/othersettings.php:144 actions/othersettings.php:146 -#: actions/othersettings.php:153 -msgid "URL shortening service is too long (max 50 chars)." -msgstr "" - #: actions/passwordsettings.php:69 #, fuzzy msgid "Change your password." msgstr "Modificar a sua palavra-passe" -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "" - -#: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format -msgid "Not a valid people tag: %s" -msgstr "" - -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "" - -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - #: actions/profilesettings.php:144 #, fuzzy msgid "Automatically subscribe to whoever " -msgstr "" -"Subscrever automaticamente a quem se subscrever a mim (recomendado para não-" -"humanos)" - -#: actions/profilesettings.php:229 actions/tagother.php:176 -#: actions/tagother.php:178 actions/profilesettings.php:230 -#: actions/profilesettings.php:246 -#, php-format -msgid "Invalid tag: \"%s\"" -msgstr "" - -#: actions/profilesettings.php:311 actions/profilesettings.php:310 -#: actions/profilesettings.php:336 -msgid "Couldn't save tags." -msgstr "" +msgstr "Subscrever automaticamente a quem se subscrever a mim (recomendado para não-humanos)" #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "Mensagens públicas de %s" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" - -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "" - -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "" - -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " msgstr "1-64 letras ou números, sem pontuação ou espaços" -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "" - -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "" - -#: actions/register.php:404 -msgid "Describe yourself and your " -msgstr "" - -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "" - #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "" -"excepto estes dados privados: palavra chave, endereço de email, endereço de " -"mensageiro instantâneo, número de telefone." - -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" - -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" -msgstr "" - -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "" - -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - -#: actions/showgroup.php:206 actions/showgroup.php:208 -#: actions/showgroup.php:213 actions/showgroup.php:218 -msgid "Group profile" -msgstr "" - -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 -msgid "Note" -msgstr "" - -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" -msgstr "" - -#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 -#: actions/showgroup.php:384 actions/showgroup.php:373 -#: actions/showgroup.php:430 actions/showgroup.php:381 -#: actions/showgroup.php:438 -msgid "Members" -msgstr "" - -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "" - -#: actions/showstream.php:73 actions/showstream.php:78 -#, php-format -msgid "%s, page %d" -msgstr "" - -#: actions/showstream.php:143 -msgid "'s profile" -msgstr "" - -#: actions/showstream.php:236 actions/tagother.php:77 -#: actions/showstream.php:220 actions/showstream.php:185 -#: actions/showstream.php:193 -msgid "User profile" -msgstr "" - -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -msgid "User actions" -msgstr "" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 -msgid "Send a direct message to this user" -msgstr "" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 -msgid "Message" -msgstr "" +msgstr "excepto estes dados privados: palavra chave, endereço de email, endereço de mensageiro instantâneo, número de telefone." #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Todas as subscrições" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " msgstr "1-64 letras ou números, sem pontuação ou espaços" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "" - #: actions/smssettings.php:335 #, fuzzy msgid "A confirmation code was sent to the phone number you added. " msgstr "A aguardar confirmação deste número de telefone." -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" - -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "" - -#: actions/subedit.php:83 -msgid "Could not save subscription." -msgstr "" - -#: actions/subscribe.php:55 -msgid "Not a local user." -msgstr "" - -#: actions/subscribe.php:69 -msgid "Subscribed" -msgstr "" - -#: actions/subscribers.php:50 -#, php-format -msgid "%s subscribers" -msgstr "" - -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "" - -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "" - #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "Todas as subscrições" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "Todas as subscrições" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "" - -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "" - -#: actions/subscriptions.php:122 actions/subscriptions.php:124 -#: actions/subscriptions.php:183 actions/subscriptions.php:194 -msgid "Jabber" -msgstr "" - -#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format -msgid "Notices tagged with %s, page %d" -msgstr "" - -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - -#: actions/tagother.php:33 -msgid "Not logged in" -msgstr "" - -#: actions/tagother.php:39 -msgid "No id argument." -msgstr "" - -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - -#: actions/tagother.php:198 actions/tagother.php:200 -msgid "Could not save tags." -msgstr "" - -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - -#: actions/tagrss.php:35 -msgid "No such tag." -msgstr "" - -#: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format -msgid "Microblog tagged with %s" -msgstr "" - -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" - -#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 -#: actions/twitapiusers.php:50 actions/apiusershow.php:96 -msgid "Not found." -msgstr "" - -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "" - -#: actions/twittersettings.php:126 actions/twittersettings.php:129 -msgid "Twitter password" -msgstr "" - -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "" - -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - -#: actions/twittersettings.php:341 -#, php-format -msgid "Unable to retrieve account information " -msgstr "" - -#: actions/unblock.php:108 actions/groupunblock.php:128 -msgid "Error removing the block." -msgstr "" - -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" - -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "" - -#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 -msgid "Unsubscribed" -msgstr "" - -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" - -#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 -#: classes/Notice.php:183 -msgid "Problem saving notice. Unknown user." -msgstr "" - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - -#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 -msgid "Upload an avatar" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "" - #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" - #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" @@ -5107,242 +1537,34 @@ msgstr "Sobre" msgid "Change your email, avatar, password, profile" msgstr "Modificar a sua palavra-passe" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Ligar conta existente" -#: lib/action.php:341 lib/action.php:418 -msgid "Login with OpenID" -msgstr "" - -#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 -msgid "Help me!" -msgstr "" - -#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 -msgid "Site notice" -msgstr "" - -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - -#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 -msgid "Page notice" -msgstr "" - -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "" - -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - -#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block this user" -msgstr "" - #: lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquear" -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "" - -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - -#: lib/facebookaction.php:271 lib/facebookaction.php:273 -#: lib/facebookaction.php:275 -msgid " a new account." -msgstr "" - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "" - #: lib/favorform.php:114 lib/favorform.php:140 #, fuzzy msgid "Favor this notice" msgstr "Não é possível remover a mensagem." -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" - -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" - -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "" - -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "" - #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Todas as subscrições" -#: lib/groupeditform.php:153 lib/groupeditform.php:168 -msgid "Describe the group or topic in 140 chars" -msgstr "" - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" - -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" - -#: lib/groupnav.php:106 lib/groupnav.php:112 -msgid "Logo" -msgstr "" - -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" - -#: lib/htmloutputter.php:104 -msgid "This page is not available in a " -msgstr "" - -#: lib/joinform.php:114 -msgid "Join" -msgstr "" - -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "" - -#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 -msgid "Login with a username and password" -msgstr "" - -#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 -msgid "Sign up for a new account" -msgstr "" - -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" - #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "" - -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" -msgstr "" - -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "" - -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." @@ -5352,24 +1574,12 @@ msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." msgid "From" msgstr "de" -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "" - -#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 -msgid "Send a notice" -msgstr "" - #: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 #: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 ou mais caracteres" -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "" - #: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 #: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 #: lib/noticelist.php:498 @@ -5377,11 +1587,6 @@ msgstr "" msgid "Reply to this notice" msgstr "Não é possível remover a mensagem." -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "" - #: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 #: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 #: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 @@ -5389,87 +1594,11 @@ msgstr "" msgid "Delete this notice" msgstr "Não é possível remover a mensagem." -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "" - -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" - -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "" - -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "" - -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "" - -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "" - -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "" - -#: lib/searchgroupnav.php:82 -msgid "Notice" -msgstr "" - -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "" - -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" - -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" -msgstr "" - #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "Já subscrito!." -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - #: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "O utilizador bloqueou-o." @@ -5501,17 +1630,17 @@ msgid "Unsubscribe from this user" msgstr "Des-Subscrever deste utilizador" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed para os amigos de %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed para os amigos de %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Feed para os amigos de %s" @@ -5520,149 +1649,40 @@ msgstr "Feed para os amigos de %s" msgid "You and friends" msgstr "%s e amigos" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" - #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Avatar actualizado." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." msgstr "Tem a certeza que permite remover esta mensagem?" -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Microblog por %s" -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" - #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "Procurar por \"%s\" no fluxo de mensagens" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Por razões de segurança, por favor reintroduza o seu nome de utilizador e " -"palavra-passe antes de alterar as suas configurações." - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" -msgstr "" - -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Por razões de segurança, por favor reintroduza o seu nome de utilizador e palavra-passe antes de alterar as suas configurações." #: actions/public.php:135 actions/public.php:143 actions/public.php:159 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Fluxo Público de %s" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"excepto estes dados privados: palavra chave, endereço de email, endereço de " -"mensageiro instantâneo, número de telefone." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "excepto estes dados privados: palavra chave, endereço de email, endereço de mensageiro instantâneo, número de telefone." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5670,43 +1690,8 @@ msgstr "" msgid "Created" msgstr "Criar" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - -#: actions/showstream.php:147 -msgid "Your profile" -msgstr "" - -#: actions/showstream.php:149 -#, php-format -msgid "%s's profile" -msgstr "" - -#: actions/showstream.php:163 actions/showstream.php:128 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:170 actions/showstream.php:135 -#, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "" - -#: actions/showstream.php:177 actions/showstream.php:142 -#, php-format -msgid "Notice feed for %s (Atom)" -msgstr "" - #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Feed para a tag %s" @@ -5722,336 +1707,26 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Modificar as suas definições de perfil" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Um código de confirmação foi enviado para o número de telefone fornecido. " -"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " -"e instrucções de utilização." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - -#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 -#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 -#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 -#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 -#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 -#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 -#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 -#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 -#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 -msgid "No such user!" -msgstr "" - -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" - -#: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format -msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Um código de confirmação foi enviado para o número de telefone fornecido. Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código e instrucções de utilização." #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-" -"passe para a ligar ao seu OpenID." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-passe para a ligar ao seu OpenID." #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s está agora a ouvir os seus comunicados em %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Sinceramente,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" -msgstr "" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - -#: actions/attachment.php:73 -msgid "No such attachment." -msgstr "" - -#: actions/block.php:149 -msgid "Do not block this user from this group" -msgstr "" - -#: actions/block.php:150 -msgid "Block this user from this group" -msgstr "" - -#: actions/blockedfromgroup.php:90 -#, php-format -msgid "%s blocked profiles" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s está agora a ouvir os seus comunicados em %2$s.\n\n %3$s\n\nSinceramente,\n%4$s.\n" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s e amigos" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -6067,56 +1742,26 @@ msgstr "Código de confirmação" msgid "Do not delete this notice" msgstr "Não é possível remover a mensagem." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Endereço de email inválido: %s" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Alcunha já em uso. Tente outra diferente." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Não foi possível criar o formulário de OpenID: %s" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6127,67 +1772,11 @@ msgstr "URI da mensagem inválido" msgid "No notice" msgstr "Nenhuma alcunha." -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - -#: actions/finishopenidlogin.php:211 -msgid "Not a valid invitation code." -msgstr "" - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." msgstr "O utilizador bloqueou-o." -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "" - -#: actions/groupblock.php:136 actions/groupmembers.php:311 -#: actions/groupmembers.php:314 -msgid "Block user from group" -msgstr "" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6196,255 +1785,26 @@ msgstr "" msgid "Couldn't update your design." msgstr "Não foi possível actualizar o utilizador." -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -msgid "Design preferences saved." -msgstr "" - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Nenhum resultado" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "O utilizador bloqueou-o." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Não foi possível salvar o perfil." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" -msgstr "" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma " -"nova que será enviada para o endereço de email que tem configurado na sua " -"conta." - -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" - -#: actions/recoverpassword.php:188 -msgid "Password recover" -msgstr "" +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma nova que será enviada para o endereço de email que tem configurado na sua conta." #: actions/register.php:86 #, fuzzy @@ -6456,678 +1816,115 @@ msgstr "Erro no código de confirmação." msgid "Subscribe to a remote user" msgstr "Subscrever este utilizador" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "%s e amigos" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - -#: actions/shownotice.php:101 -msgid "Not a local notice" -msgstr "" - -#: actions/showstream.php:72 -#, php-format -msgid " tagged %s" -msgstr "" - -#: actions/showstream.php:121 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" - #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Feed para a tag %s" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "Não foi possível actualizar o utilizador." -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Não foi possivel encontrar algum estado." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Actualizações em resposta a %2$s" -#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 -#: actions/tagrss.php:64 -#, php-format -msgid "Updates tagged with %1$s on %2$s!" -msgstr "" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" msgstr "Todas as subscrições" -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" -msgstr "" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, php-format -msgid "%s is not a member of any group." -msgstr "" - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - -#: classes/Notice.php:139 classes/Notice.php:179 -msgid "Problem saving notice. Too long." -msgstr "" - -#: classes/User.php:319 classes/User.php:327 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 -msgid "Design your profile" -msgstr "" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - -#: lib/designsettings.php:105 -msgid "Upload file" -msgstr "" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Modificar a sua palavra-passe" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "Ligar" -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "" - #: lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "Entrar" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Bloquear" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Desbloquear este utilizador" -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - -#: lib/noticelist.php:436 lib/noticelist.php:478 -msgid "in context" -msgstr "" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" -msgstr "" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "A Homepage inserida não é um URL válido." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - -#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 -#: actions/showfavorites.php:137 actions/tag.php:51 -msgid "No such page" -msgstr "" - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "" - #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Bio é demasiada extensa (máx 140 car)." -#: actions/apigroupjoin.php:110 -msgid "You are already a member of that group." -msgstr "" - #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." -#: actions/apigroupleave.php:114 -msgid "You are not a member of this group." -msgstr "" - #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 -#, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." -msgstr "" - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Bio é demasiada extensa (máx 140 car)." -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." -msgstr "" - #: actions/finishremotesubscribe.php:109 #, fuzzy msgid "Could not convert request token to access token." -msgstr "" -"Não foi possível converter os tokens de requisição em tokens de acesso." - -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - -#: actions/getfile.php:75 -msgid "No such file." -msgstr "" - -#: actions/getfile.php:79 -msgid "Cannot read file." -msgstr "" - -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - -#: actions/imsettings.php:89 -msgid "IM is not available." -msgstr "" +msgstr "Não foi possível converter os tokens de requisição em tokens de acesso." #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Entrar com o seu nome de utilizador e palavra passe. Não está registado " -"ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%" -"action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Entrar com o seu nome de utilizador e palavra passe. Não está registado ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Todas as actualizações com o termo \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Descreva-se e aos seus interesses em 140 caracteres" @@ -7137,153 +1934,40 @@ msgid "Describe yourself and your interests" msgstr "Descreva-se e aos seus interesses em 140 caracteres" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Bio é demasiada extensa (máx 140 car)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Não foi possível obter um token de requisição." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "" - -#: actions/repliesrss.php:72 -#, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "" - #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed para os amigos de %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed para os amigos de %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Feed para os amigos de %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - -#: actions/showgroup.php:345 -#, php-format -msgid "FOAF for %s group" -msgstr "" - #: actions/shownotice.php:90 #, fuzzy msgid "Notice deleted." msgstr "Nenhum código introduzido" -#: actions/smssettings.php:91 -msgid "SMS is not available." -msgstr "" - -#: actions/tag.php:92 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Não é possível ler o URL do avatar '%s'" -#: actions/userauthorization.php:348 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" - #: lib/action.php:435 #, fuzzy msgid "Connect to services" @@ -7295,36 +1979,12 @@ msgid "Site content license" msgstr "Encontrar conteúdo dos mensagens" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" -msgstr "" -"Não foi possivel actualizar utilizador com endereço de email confirmado." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" +msgstr "Não foi possivel actualizar utilizador com endereço de email confirmado." #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Não é possível remover a mensagem." @@ -7333,136 +1993,23 @@ msgstr "Não é possível remover a mensagem." msgid "Error saving notice." msgstr "Erro ao guardar o utilizador." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Código de confirmação não encontrado" -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - -#: lib/groupeditform.php:168 -msgid "Describe the group or topic" -msgstr "" - -#: lib/groupeditform.php:170 -#, php-format -msgid "Describe the group or topic in %d characters" -msgstr "" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "" - #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "de" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" - #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Apagar mensagem" + diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index a960328efc..41a6d08cd3 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -1,17 +1,17 @@ # Translation of StatusNet to Brazilian Portuguese # +# Author@translatewiki.net: Ewout # -- # Frederico Goncalves Guimaraes , 2009. msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:59:24+0000\n" +"PO-Revision-Date: 2009-11-06 12:24:14+0000\n" "Language-Team: Brazilian Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: out-statusnet\n" @@ -25,11 +25,8 @@ msgstr " Procurar por \"%s\" no fluxo de mensagens" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" exceto estes dados privados: senha, endereço de e-mail, endereço de IM, " -"número de telefone." +msgid " except this private data: password, email address, IM address, phone number." +msgstr " exceto estes dados privados: senha, endereço de e-mail, endereço de IM, número de telefone." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -51,60 +48,8 @@ msgstr "%1$s convidou você para se juntar ao %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s convidou você para se juntar ao %2$s (%3$s).\n" -"\n" -"%2$s é um serviço de microblogagem que lhe permite manter-se atualizado com " -"as pessoas que você conhece e com as que lhe interessam.\n" -"\n" -"Você também pode compartilhar notícias sobre você mesmo, seus pensamentos, " -"ou sua vida on-line com as pessoas que lhe conhecem. Também é ótimo para " -"encontrar novas pessoas que compartilham os mesmos interesses que você.\n" -"\n" -"%1$s disse:\n" -"\n" -"%4$s\n" -"\n" -"Você pode ver o perfil de %1$s no %2$s aqui:\n" -"\n" -"%5$s\n" -"\n" -"Se você quiser experimentar o serviço, clique no link abaixo para aceitar o " -"convite.\n" -"\n" -"%6$s\n" -"\n" -"Se não, você pode ignorar esta mensagem. Obrigado por sua paciência e seu " -"tempo.\n" -"\n" -"Cordialmente, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s convidou você para se juntar ao %2$s (%3$s).\n\n%2$s é um serviço de microblogagem que lhe permite manter-se atualizado com as pessoas que você conhece e com as que lhe interessam.\n\nVocê também pode compartilhar notícias sobre você mesmo, seus pensamentos, ou sua vida on-line com as pessoas que lhe conhecem. Também é ótimo para encontrar novas pessoas que compartilham os mesmos interesses que você.\n\n%1$s disse:\n\n%4$s\n\nVocê pode ver o perfil de %1$s no %2$s aqui:\n\n%5$s\n\nSe você quiser experimentar o serviço, clique no link abaixo para aceitar o convite.\n\n%6$s\n\nSe não, você pode ignorar esta mensagem. Obrigado por sua paciência e seu tempo.\n\nCordialmente, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -114,20 +59,8 @@ msgstr "%1$s agora está acompanhando suas mensagens em %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s agora está acompanhando suas mensagens em %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Cordialmente,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s agora está acompanhando suas mensagens em %2$s.\n\n %3$s\n\nCordialmente,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -203,22 +136,14 @@ msgstr "%s atualizações de todo mundo!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Você receberá uma mensagem por e-mail a qualquer momento, com instruções " -"sobre como confirmar seu endereço.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Você receberá uma mensagem por e-mail a qualquer momento, com instruções sobre como confirmar seu endereço.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** é um serviço de microblogagem disponibilizado por [%%site." -"broughtby%%](%%site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** é um serviço de microblogagem disponibilizado por [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -228,8 +153,7 @@ msgstr "**%%site.name%%** é um serviço de microblogagem. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -". Os colaboradores devem ser citados usando seu nome completo ou apelido." +msgstr ". Os colaboradores devem ser citados usando seu nome completo ou apelido." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -242,8 +166,7 @@ msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 letras minúsculas ou números, sem pontuação ou espaços. Obrigatório." +msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços. Obrigatório." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -264,31 +187,17 @@ msgstr "No mínimo 6 caracteres. Obrigatório." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Um código de confirmação foi enviado para o endereço de IM que você " -"informou. Você deve permitir que %s envie mensagens para você." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Um código de confirmação foi enviado para o endereço de IM que você informou. Você deve permitir que %s envie mensagens para você." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Um código de confirmação foi enviado para o endereço de e-mail que você " -"informou. Verifique a sua caixa de entrada (e de spam!) para o código e " -"instruções sobre como usá-lo." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Um código de confirmação foi enviado para o endereço de e-mail que você informou. Verifique a sua caixa de entrada (e de spam!) para o código e instruções sobre como usá-lo." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Um código de confirmação foi enviado para o número de telefone que você " -"informou. Verifique sua caixa de entrada (e de spam!) para o código e " -"instruções sobre como usá-lo." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Um código de confirmação foi enviado para o número de telefone que você informou. Verifique sua caixa de entrada (e de spam!) para o código e instruções sobre como usá-lo." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -463,15 +372,12 @@ msgstr "Autorizar a assinatura" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Entrar automaticamente sem pedir a senha. Não use em computadores " -"compartilhados!" +msgstr "Entrar automaticamente sem pedir a senha. Não use em computadores compartilhados!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Assinar automaticamente à quem me assinar" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 @@ -491,22 +397,13 @@ msgstr "O avatar foi atualizado." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Aguardando a confirmação deste endereço. Procure em sua conta de Jabber/" -"GTalk por uma mensagem com mais instruções (Você adicionou %s à sua lista de " -"contatos?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Aguardando a confirmação deste endereço. Procure em sua conta de Jabber/GTalk por uma mensagem com mais instruções (Você adicionou %s à sua lista de contatos?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Aguardando a confirmação deste endereço. Procure em sua caixa de entrada (e " -"de spam!) por uma mensagem com mais instruções." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Aguardando a confirmação deste endereço. Procure em sua caixa de entrada (e de spam!) por uma mensagem com mais instruções." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -643,36 +540,8 @@ msgstr "O código de confirmação não foi encontrado." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Parabéns, %s! E bem-vindo(a) ao %%%%site.name%%%%. A partir daqui, você pode " -"querer...\n" -"\n" -"* Acessar [seu perfil](%s) e publicar sua primeira mensagem.\n" -"* Adicionar um [endereço de Jabber/GTalk](%%%%action.imsettings%%%%) para " -"que você possa publicar via mensagens instantâneas.\n" -"* [Procurar por pessoas](%%%%action.peoplesearch%%%%) que você conheça ou " -"que tenham os mesmos interesses que você. \n" -"* Atualizar suas [configurações de perfil](%%%%action.profilesettings%%%%) " -"para que outras pessoas saibam mais sobre você. \n" -"* Ler a [documentação on-line](%%%%doc.help%%%%) para conhecer os recursos " -"disponíveis. \n" -"\n" -"Obrigado por se registrar e esperamos que você aproveite o serviço." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Parabéns, %s! E bem-vindo(a) ao %%%%site.name%%%%. A partir daqui, você pode querer...\n\n* Acessar [seu perfil](%s) e publicar sua primeira mensagem.\n* Adicionar um [endereço de Jabber/GTalk](%%%%action.imsettings%%%%) para que você possa publicar via mensagens instantâneas.\n* [Procurar por pessoas](%%%%action.peoplesearch%%%%) que você conheça ou que tenham os mesmos interesses que você. \n* Atualizar suas [configurações de perfil](%%%%action.profilesettings%%%%) para que outras pessoas saibam mais sobre você. \n* Ler a [documentação on-line](%%%%doc.help%%%%) para conhecer os recursos disponíveis. \n\nObrigado por se registrar e esperamos que você aproveite o serviço." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -739,14 +608,12 @@ msgstr "Não foi possível assinar." #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "" -"Não foi possível atualizar o usuário com o endereço de e-mail confirmado." +msgstr "Não foi possível atualizar o usuário com o endereço de e-mail confirmado." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "" -"Não foi possível converter os tokens de requisição para tokens de acesso." +msgstr "Não foi possível converter os tokens de requisição para tokens de acesso." #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -1081,12 +948,8 @@ msgid "Find people on this site" msgstr "Procure por pessoas neste site" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Por razões de segurança, por favor, digite novamente seu nome de usuário e " -"senha antes de alterar suas configurações." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Por razões de segurança, por favor, digite novamente seu nome de usuário e senha antes de alterar suas configurações." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1171,28 +1034,16 @@ msgstr "Configurações do IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Se você já possui uma conta, utilize seu nome de usuário e senha para " -"conectá-la ao seu OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Se você já possui uma conta, utilize seu nome de usuário e senha para conectá-la ao seu OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Se você quer adicionar um OpenID à sua conta, informe-a na caixa abaixo e " -"clique em \"Adicionar\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Se você quer adicionar um OpenID à sua conta, informe-a na caixa abaixo e clique em \"Adicionar\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se você esqueceu ou perdeu sua senha, você pode receber uma nova no endereço " -"de e-mail que armazenou em sua conta." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Se você esqueceu ou perdeu sua senha, você pode receber uma nova no endereço de e-mail que armazenou em sua conta." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1222,12 +1073,8 @@ msgstr "Nome de usuário e/ou senha incorreto(s)." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"As instruções para recuperar a sua senha foram enviadas para o endereço de e-" -"mail informado no seu cadastro." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "As instruções para recuperar a sua senha foram enviadas para o endereço de e-mail informado no seu cadastro." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1323,14 +1170,8 @@ msgstr "Convidar novos usuários" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Ele funciona sob o software de microblogagem [StatusNet](http://status." -"net/), versão %s, disponível sob a [GNU Affero General Public License] " -"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Ele funciona sob o software de microblogagem [StatusNet](http://status.net/), versão %s, disponível sob a [GNU Affero General Public License] (http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1340,13 +1181,8 @@ msgstr "Esta ID do Jabber já pertence à outro usuário." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Endereço de Jabber ou GTalk, ex: \"usuario@exemplo.org\". Primeiro, " -"certifique-se de adicionar %s à sua lista de contatos no seu cliente de IM " -"ou no GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Endereço de Jabber ou GTalk, ex: \"usuario@exemplo.org\". Primeiro, certifique-se de adicionar %s à sua lista de contatos no seu cliente de IM ou no GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1413,14 +1249,8 @@ msgstr "Logar-se com uma conta [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Logar-se com seu nome de usuário e senha. Não tem um nome de usuário ainda? " -"[Registre](%%action.register%%) uma nova conta, ou use uma [OpenID](%%action." -"openidlogin%%)." +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Logar-se com seu nome de usuário e senha. Não tem um nome de usuário ainda? [Registre](%%action.register%%) uma nova conta, ou use uma [OpenID](%%action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1465,13 +1295,8 @@ msgstr "Microblog por %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"A operadora móvel do seu celular. Se você conhece uma operadora que aceita " -"SMS via e-mail que não está listada aqui, informe-nos enviando uma mensagem " -"para %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "A operadora móvel do seu celular. Se você conhece uma operadora que aceita SMS via e-mail que não está listada aqui, informe-nos enviando uma mensagem para %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1498,8 +1323,7 @@ msgstr "Novo endereço de e-mail para postar para %s" #: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." -msgstr "" -"Foi adicionado um novo endereço de e-mail para recebimento de mensagens." +msgstr "Foi adicionado um novo endereço de e-mail para recebimento de mensagens." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 @@ -1522,8 +1346,7 @@ msgstr "Nova senha" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "" -"A nova senha foi salva com sucesso. A partir de agora você já está logado." +msgstr "A nova senha foi salva com sucesso. A partir de agora você já está logado." #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1569,9 +1392,7 @@ msgstr "Este apelido já está em uso. Tente outro." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"O apelido deve conter apenas letras minúsculas e/ou números e não pode ter " -"acentuação e espaços." +msgstr "O apelido deve conter apenas letras minúsculas e/ou números e não pode ter acentuação e espaços." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1786,9 +1607,7 @@ msgstr "Usuário não encontrado." #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 #: actions/recoverpassword.php:272 msgid "No user with that email address or username." -msgstr "" -"Não foi encontrado nenhum usuário com essa identificação ou endereço de " -"email." +msgstr "Não foi encontrado nenhum usuário com essa identificação ou endereço de email." #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" @@ -2099,14 +1918,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de telefone, sem pontuação ou espaços, com código de área" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Por favor, verifique estes detalhes para ter certeza que você quer seguir as " -"mensagens deste usuário. Se você não solicitou seguir as mensagens de " -"alguém, clique em \"Cancelar\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Por favor, verifique estes detalhes para ter certeza que você quer seguir as mensagens deste usuário. Se você não solicitou seguir as mensagens de alguém, clique em \"Cancelar\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2289,12 +2102,8 @@ msgid "Remove OpenID" msgstr "Remover OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Remover a sua única OpenID pode fazer com que seja impossível você logar-se " -"novamente! Se deseja realmente removê-la, adicione outra OpenID antes." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Remover a sua única OpenID pode fazer com que seja impossível você logar-se novamente! Se deseja realmente removê-la, adicione outra OpenID antes." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2390,22 +2199,13 @@ msgstr "Procurar no fluxo de mensagens" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Procurar mensagens em %%site.name%% por seu conteúdo. Separe os termos da " -"busca com espaços; eles devem ter 3 caracteres ou mais." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Procurar mensagens em %%site.name%% por seu conteúdo. Separe os termos da busca com espaços; eles devem ter 3 caracteres ou mais." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Procurar por pessoas em %%site.name%% por seus nomes, localidade ou " -"interesses. Separe os termos da busca com espaços; eles devem ter 3 " -"caracteres ou mais." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Procurar por pessoas em %%site.name%% por seus nomes, localidade ou interesses. Separe os termos da busca com espaços; eles devem ter 3 caracteres ou mais." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2440,19 +2240,13 @@ msgstr "Envie-me as mensagens via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Envie-me mensagens via SMS. Eu compreendo que isso pode gerar cobranças " -"exorbitantes da minha operadora." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Envie-me mensagens via SMS. Eu compreendo que isso pode gerar cobranças exorbitantes da minha operadora." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Envie-me respostas de pessoas que eu não estou seguindo através do Jabber/" -"GTalk." +msgstr "Envie-me respostas de pessoas que eu não estou seguindo através do Jabber/GTalk." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2684,25 +2478,13 @@ msgstr "O endereço foi removido." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"A assinatura foi autorizada, mas não foi informada nenhuma URL de retorno. " -"Verifique as instruções do site para detalhes sobre como autorizar a " -"assinatura. Seu token de assinatura é:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "A assinatura foi autorizada, mas não foi informada nenhuma URL de retorno. Verifique as instruções do site para detalhes sobre como autorizar a assinatura. Seu token de assinatura é:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"A assinatura foi rejeitada, mas não foi informada nenhuma URL de retorno. " -"Verifique as instruções do site para maiores detalhes em como rejeitar " -"completamente a assinatura." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "A assinatura foi rejeitada, mas não foi informada nenhuma URL de retorno. Verifique as instruções do site para maiores detalhes em como rejeitar completamente a assinatura." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2728,8 +2510,7 @@ msgstr "Estas são as pessoas cujas mensagens você acompanha." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +msgid "These people are already users and you were automatically subscribed to them:" msgstr "Estas pessoas já são usuárias e você as acompanha automaticamente:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 @@ -2737,24 +2518,14 @@ msgid "This confirmation code is too old. Please start again." msgstr "Este código de confirmação é muito antigo. Por favor inicie novamente." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Este formulário deve enviar-se automaticamente. Caso isso não ocorra, clique " -"no botão \"Enviar\" para ir para seu provedor de OpenID." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Este formulário deve enviar-se automaticamente. Caso isso não ocorra, clique no botão \"Enviar\" para ir para seu provedor de OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Esta é a primeira vez que você autenticou-se em %s. Por isso nós precisamos " -"conectar sua OpenID a uma conta local. Você pode criar uma conta nova, ou " -"conectar a uma conta sua já existente, caso tenha uma." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Esta é a primeira vez que você autenticou-se em %s. Por isso nós precisamos conectar sua OpenID a uma conta local. Você pode criar uma conta nova, ou conectar a uma conta sua já existente, caso tenha uma." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2803,15 +2574,8 @@ msgstr "O fuso horário não foi selecionado." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Para assinar, você pode [autenticar-se](%%action.login%%), ou [registrar](%%" -"action.register%%) uma nova conta. Se você já tem uma conta em um [site de " -"microblogagem compatível](%%doc.openmublog%%), informe a URL do seu perfil " -"abaixo." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Para assinar, você pode [autenticar-se](%%action.login%%), ou [registrar](%%action.register%%) uma nova conta. Se você já tem uma conta em um [site de microblogagem compatível](%%doc.openmublog%%), informe a URL do seu perfil abaixo." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2865,12 +2629,8 @@ msgid "Unknown version of OMB protocol." msgstr "Versão desconhecida do protocolo OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Caso não seja especificado, os colaboradores deste site possuem direito " -"autoral sobre seu conteúdo e ele está disponível sob" +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Caso não seja especificado, os colaboradores deste site possuem direito autoral sobre seu conteúdo e ele está disponível sob" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2931,16 +2691,8 @@ msgid "Upload" msgstr "Enviar" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Envie um novo \"avatar\" (imagem do usuário) aqui. Você não poderá editar a " -"imagem depois que enviar, então certifique-se que o formato dela esteja mais " -"ou menos quadrada. Ela deve estar sob a mesma licença do site. Use uma " -"imagem que pertença a você e que você queira compartilhar." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Envie um novo \"avatar\" (imagem do usuário) aqui. Você não poderá editar a imagem depois que enviar, então certifique-se que o formato dela esteja mais ou menos quadrada. Ela deve estar sob a mesma licença do site. Use uma imagem que pertença a você e que você queira compartilhar." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2948,11 +2700,8 @@ msgstr "Envie uma nova imagem para o seu perfil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Use esse formulário para convidar seus amigos e colegas para usar este " -"serviço." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Use esse formulário para convidar seus amigos e colegas para usar este serviço." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -3045,12 +2794,8 @@ msgid "You already have this OpenID!" msgstr "Você já tem esta OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Você está prestes a apagar permanentemente uma mensagem. Isso não poderá ser " -"desfeito." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Você está prestes a apagar permanentemente uma mensagem. Isso não poderá ser desfeito." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3082,29 +2827,19 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Você pode receber mensagens SMS do %%site.name%% através do e-mail." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Você pode remover uma OpenID da sua conta, clicando no botão \"Remover\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Você pode remover uma OpenID da sua conta, clicando no botão \"Remover\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Você pode enviar e receber mensagens através dos [instant messages](%%doc.im%" -"%) Jabber/GTalk. Configure seu endereço e opções abaixo." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Você pode enviar e receber mensagens através dos [instant messages](%%doc.im%%) Jabber/GTalk. Configure seu endereço e opções abaixo." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Você pode atualizar suas informações pessoais aqui, para que as pessoas " -"saibam mais sobre você." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Você pode atualizar suas informações pessoais aqui, para que as pessoas saibam mais sobre você." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3128,24 +2863,8 @@ msgstr "Você não nos enviou esse perfil" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Você tem um novo endereço para publicação no %1$s.\n" -"\n" -"Para publicar novas mensagens, envie e-mails para %2$s .\n" -"\n" -"Mais instruções em %3$s.\n" -"\n" -"Atenciosamente,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Você tem um novo endereço para publicação no %1$s.\n\nPara publicar novas mensagens, envie e-mails para %2$s .\n\nMais instruções em %3$s.\n\nAtenciosamente,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3161,12 +2880,8 @@ msgstr "Você deve estar logado para convidar outros usuários para usar o %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Você será notificado assim que seus convidados aceitarem o convite e se " -"registrarem neste site. Obrigado por aumentar a comunidade!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Você será notificado assim que seus convidados aceitarem o convite e se registrarem neste site. Obrigado por aumentar a comunidade!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3184,12 +2899,8 @@ msgstr "Seu apelido neste servidor, ou seu e-mail registrado." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"A [OpenID](%%doc.openid%%) permite que você autentique-se em vários sites " -"com a mesma conta de usuário. Gerencie suas OpenIDs associadas aqui." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "A [OpenID](%%doc.openid%%) permite que você autentique-se em vários sites com a mesma conta de usuário. Gerencie suas OpenIDs associadas aqui." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3312,8 +3023,7 @@ msgstr "« Posteriores" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." +msgstr "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" @@ -3331,9 +3041,7 @@ msgstr "Tornar favorita" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Envie-me um e-mail quando alguém adicionar alguma mensagem minha como " -"favorita." +msgstr "Envie-me um e-mail quando alguém adicionar alguma mensagem minha como favorita." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 @@ -3384,18 +3092,12 @@ msgstr "Recebidas por %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Essa é a sua caixa de mensagens recebidas, que lista as mensagens " -"particulares que você recebeu." +msgstr "Essa é a sua caixa de mensagens recebidas, que lista as mensagens particulares que você recebeu." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s convidou você para unir-se a %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s convidou você para unir-se a %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3437,11 +3139,8 @@ msgstr "Você não pode enviar uma mensagem para esse usuário." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Não envie uma mensagem para você mesmo(a); ao invés disso, apenas diga-a " -"para si." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Não envie uma mensagem para você mesmo(a); ao invés disso, apenas diga-a para si." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3487,17 +3186,12 @@ msgstr "Envidas para %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Essa é a sua caixa de mensagens enviadas, que lista as mensagens " -"particulares que você enviou." +msgstr "Essa é a sua caixa de mensagens enviadas, que lista as mensagens particulares que você enviou." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Procurar por pessoas no %%site.name%% pelo seu nome, localização ou " -"interesses. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "Procurar por pessoas no %%site.name%% pelo seu nome, localização ou interesses. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3548,12 +3242,8 @@ msgstr "A senha deve ter 6 ou mais caracteres." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Parabéns, %s! E seja bem-vindo(a) ao %%%%site.name%%%%. A partir daqui, você " -"pode querer..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Parabéns, %s! E seja bem-vindo(a) ao %%%%site.name%%%%. A partir daqui, você pode querer..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3649,9 +3339,7 @@ msgstr "O usuário destinatário não foi encontrado." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" -"Não é possível enviar mensagens diretas para usuários que não são seus " -"amigos." +msgstr "Não é possível enviar mensagens diretas para usuários que não são seus amigos." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3678,19 +3366,12 @@ msgstr "%s marcaram sua mensagem como favorita" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s acabou de marcar sua mensagem de %2$s como uma favorita.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s acabou de marcar sua mensagem de %2$s como uma favorita.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Adicione a sua conta do Twitter para enviar suas mensagens para lá " -"automaticamente, " +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Adicione a sua conta do Twitter para enviar suas mensagens para lá automaticamente, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3737,12 +3418,8 @@ msgstr "Assinar meus amigos do Twitter aqui." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"O nome de usuário pode ter, no máximo, 15 caracteres, sendo eles números, " -"letras maiúsculas e minúsculas e sublinhado (_)." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "O nome de usuário pode ter, no máximo, 15 caracteres, sendo eles números, letras maiúsculas e minúsculas e sublinhado (_)." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3876,8 +3553,7 @@ msgstr "Sobre: %s" #: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" -"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" +msgstr "A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 #: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 @@ -3958,12 +3634,8 @@ msgstr "Usuário sem um perfil correspondente no sistema." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Você tem um novo endereço para publicação no %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Você tem um novo endereço para publicação no %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3972,12 +3644,8 @@ msgstr "Nova mensagem particular de %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) enviou uma mensagem particular para você:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) enviou uma mensagem particular para você:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4166,13 +3834,6 @@ msgstr "Adicionar aos favoritos" msgid "Edit %s group" msgstr "Editar o grupo %s" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 #: actions/grouplogo.php:70 actions/newgroup.php:65 @@ -4255,9 +3916,7 @@ msgstr "Esse endereço de e-mail já pertence " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Um código de confirmação foi enviado para o endereço de e-mail que você " -"informou. " +msgstr "Um código de confirmação foi enviado para o endereço de e-mail que você informou. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" @@ -4343,9 +4002,7 @@ msgstr "Não foi possível remover o usuário do Facebook." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" -msgstr "" -"Ocorreu um problema durante o salvamento das suas preferências de " -"sincronização!" +msgstr "Ocorreu um problema durante o salvamento das suas preferências de sincronização!" #: actions/facebooksettings.php:67 msgid "Sync preferences saved." @@ -4353,8 +4010,7 @@ msgstr "As preferências de sincronização foram salvas." #: actions/facebooksettings.php:90 msgid "Automatically update my Facebook status with my notices." -msgstr "" -"Atualizar meu status do Facebook automaticamente com as minhas mensagens." +msgstr "Atualizar meu status do Facebook automaticamente com as minhas mensagens." #: actions/facebooksettings.php:97 msgid "Send \"@\" replies to Facebook." @@ -4408,28 +4064,15 @@ msgstr "Usuários de destaque" msgid "Featured users, page %d" msgstr "Usuários de destaque, pág. %d" -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - #: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Esse usuário bloqueou o seu pedido de assinatura." -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - #: actions/grouplogo.php:138 actions/grouplogo.php:191 #: actions/grouplogo.php:144 actions/grouplogo.php:197 #: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" +msgstr "Logo do grupo" #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 @@ -4443,36 +4086,6 @@ msgstr "O avatar foi atualizado." msgid "Failed updating logo." msgstr "Não foi possível atualizar o avatar." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -4480,12 +4093,9 @@ msgid "Create a new group" msgstr "Criar uma nova conta" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Procurar por pessoas no %%site.name%% pelo seu nome, localização ou " -"interesses. " +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Procurar por pessoas no %%site.name%% pelo seu nome, localização ou interesses. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy @@ -4497,26 +4107,20 @@ msgstr "Procurar pessoas" msgid "You can send and receive notices through " msgstr "Você não pode enviar uma mensagem para esse usuário." -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Envie-me as mensagens via Jabber/GTalk." #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Nenhum código de confirmação." #: actions/joingroup.php:65 actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." -msgstr "" -"Você deve estar autenticado para convidar outros usuários para usar o %s" +msgstr "Você deve estar autenticado para convidar outros usuários para usar o %s" #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy @@ -4524,24 +4128,19 @@ msgid "You are already a member of that group" msgstr "Você já está assinando esses usuários:" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." #: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s joined group %s" msgstr "%s / Favoritas de %s" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - #: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." -msgstr "" -"Você deve estar autenticado para convidar outros usuários para usar o %s" +msgstr "Você deve estar autenticado para convidar outros usuários para usar o %s" #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 @@ -4569,29 +4168,14 @@ msgstr "Não foi possível atualizar o registro do usuário." #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - #: actions/microsummary.php:69 msgid "No current status" msgstr "Nenhum status atual" -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - #: actions/newgroup.php:115 actions/newgroup.php:110 #, fuzzy msgid "Use this form to create a new group." @@ -4631,11 +4215,8 @@ msgid "Ajax Error" msgstr "Erro no Ajax" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Esse usuário não permite ser chamado à atenção ou ainda não confirmou ou " -"configurou seu e-mail." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Esse usuário não permite ser chamado à atenção ou ainda não confirmou ou configurou seu e-mail." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4714,11 +4295,8 @@ msgstr "Perfil desconhecido" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou " -"espaços" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou espaços" #: actions/profilesettings.php:144 #, fuzzy @@ -4739,7 +4317,7 @@ msgstr "Não foi possível salvar as etiquetas." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "Mensagens públicas" @@ -4750,27 +4328,14 @@ msgstr "Não foi possível recuperar o fluxo público." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/wiki/Microblogging)" #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Fluxo de mensagens públicas" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - #: actions/register.php:139 actions/register.php:349 actions/register.php:79 #: actions/register.php:177 actions/register.php:394 actions/register.php:183 #: actions/register.php:398 @@ -4815,16 +4380,12 @@ msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "" -" exceto estes dados privados: senha, endereço de e-mail, endereço de " -"mensageiro instantâneo, número de telefone." +msgstr " exceto estes dados privados: senha, endereço de e-mail, endereço de mensageiro instantâneo, número de telefone." #: actions/register.php:471 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" -"Parabéns, %s! E seja bem-vindo(a) ao %%%%site.name%%%%. A partir daqui, você " -"pode querer..." +msgstr "Parabéns, %s! E seja bem-vindo(a) ao %%%%site.name%%%%. A partir daqui, você pode querer..." #: actions/register.php:495 #, fuzzy @@ -4837,42 +4398,21 @@ msgstr "Esse é um perfil local! Autentique-se para assinar." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "Respostas para %s" #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s favorite notices, page %d" msgstr "Mensagens favoritas de %s" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Esse perfil não existe." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4892,7 +4432,7 @@ msgid "Group actions" msgstr "Outras opções" #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "Mensagens de %s" @@ -4914,19 +4454,10 @@ msgstr "Membro desde" msgid "(None)" msgstr "(nenhum)" -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - #: actions/showgroup.php:378 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/wiki/Microblogging)" #: actions/showmessage.php:98 #, fuzzy @@ -4934,7 +4465,7 @@ msgid "Only the sender and recipient " msgstr "Apenas o remetente e o destinatário podem ler essa mensagem." #: actions/showstream.php:73 actions/showstream.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s, page %d" msgstr "Recebidas por %s - pág. %d" @@ -4950,12 +4481,6 @@ msgstr "Perfil" msgid "User profile" msgstr "O usuário não tem perfil." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy @@ -4979,18 +4504,10 @@ msgstr "Nova mensagem" msgid "All subscribers" msgstr "Assinantes" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - #: actions/showstream.php:542 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/wiki/Microblogging)" #: actions/smssettings.php:128 #, fuzzy @@ -5029,22 +4546,17 @@ msgid "Subscribed" msgstr "Assinado" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "Assinantes" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Estas são as pessoas que acompanham as mensagens de %s." #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "Estas são as pessoas que acompanham as mensagens de %s." @@ -5064,7 +4576,7 @@ msgid "These are the people whose notices " msgstr "Estas são as pessoas cujas mensagens %s acompanha." #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "Estas são as pessoas que acompanham as mensagens de %s." @@ -5074,15 +4586,10 @@ msgid "Jabber" msgstr "Jabber" #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "Mensagens etiquetadas com %s" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 msgid "Not logged in" msgstr "Você não está autenticado" @@ -5102,21 +4609,15 @@ msgid "Tag user" msgstr "Etiquetas" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Etiquetas desse usuário (letras, números, -, ., e _), separadas por vírgulas " -"ou espaços" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Etiquetas desse usuário (letras, números, -, ., e _), separadas por vírgulas ou espaços" #: actions/tagother.php:164 msgid "There was a problem with your session token." -msgstr "" -"Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." +msgstr "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." +msgid "You can only tag people you are subscribed to or who are subscribed to you." msgstr "Você só pode etiquetar pessoas às quais assina ou que assinam você." #: actions/tagother.php:198 actions/tagother.php:200 @@ -5125,9 +4626,7 @@ msgstr "Não foi possível salvar as etiquetas." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Use esse formulário para adicionar etiquetas aos seus assinantes ou " -"assinados." +msgstr "Use esse formulário para adicionar etiquetas aos seus assinantes ou assinados." #: actions/tagrss.php:35 msgid "No such tag." @@ -5155,9 +4654,7 @@ msgstr "Não encontrado." #: actions/twittersettings.php:71 msgid "Add your Twitter account to automatically send " -msgstr "" -"Adicione a sua conta do Twitter para enviar suas mensagens para lá " -"automaticamente, " +msgstr "Adicione a sua conta do Twitter para enviar suas mensagens para lá automaticamente, " #: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" @@ -5215,11 +4712,8 @@ msgstr "Problema no salvamento da mensagem. Usuário desconhecido." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Muitas mensagens em um período curto de tempo; dê uma respirada e publique " -"novamente daqui a alguns minutos." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Muitas mensagens em um período curto de tempo; dê uma respirada e publique novamente daqui a alguns minutos." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5298,10 +4792,6 @@ msgstr "Ajuda" msgid "Site notice" msgstr "Nova mensagem" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5312,11 +4802,6 @@ msgstr "Nova mensagem" msgid "Secondary site navigation" msgstr "Navegação pelas assinaturas" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - #: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 #, fuzzy msgid "All " @@ -5324,7 +4809,7 @@ msgstr "Todas" #: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." -msgstr "" +msgstr "licença" #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 @@ -5403,8 +4888,7 @@ msgstr "Descreva o grupo ou tópico em 140 caracteres." #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5468,12 +4952,8 @@ msgstr "Autentique-se ou registre-se como um OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Olá, %s.\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Olá, %s.\n\n" #: lib/mail.php:236 #, php-format @@ -5492,12 +4972,8 @@ msgstr "Site: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Descrição: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Descrição: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5665,17 +5141,17 @@ msgid "Unsubscribe from this user" msgstr "Cancelar a assinatura deste usuário" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed para os amigos de %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed para os amigos de %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Feed para os amigos de %s" @@ -5685,7 +5161,7 @@ msgid "You and friends" msgstr "%s e amigos" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Você pode enviar seu avatar pessoal." @@ -5694,87 +5170,35 @@ msgstr "Você pode enviar seu avatar pessoal." msgid "Avatar deleted." msgstr "O avatar foi atualizado." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Você está prestes a apagar permanentemente uma mensagem. Isso não poderá ser " -"desfeito." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Você está prestes a apagar permanentemente uma mensagem. Isso não poderá ser desfeito." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." +msgstr "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Envie-me um e-mail quando alguém enviar-me uma mensagem particular." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - #: actions/grouplogo.php:367 actions/grouplogo.php:362 #, fuzzy msgid "Pick a square area of the image to be the logo." msgstr "Selecione uma área quadrada da imagem para ser seu avatar" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Microblog por %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Procurar por pessoas em %%site.name%% por seus nomes, localidade ou " -"interesses. Separe os termos da busca com espaços; eles devem ter 3 " -"caracteres ou mais." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Procurar por pessoas em %%site.name%% por seus nomes, localidade ou interesses. Separe os termos da busca com espaços; eles devem ter 3 caracteres ou mais." #: actions/newmessage.php:102 #, fuzzy @@ -5782,18 +5206,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Ocorreu um erro durante o envio da mensagem direta." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr " Procurar por \"%s\" no fluxo de mensagens" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Por razões de segurança, por favor, digite novamente seu nome de usuário e " -"senha antes de alterar suas configurações." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Por razões de segurança, por favor, digite novamente seu nome de usuário e senha antes de alterar suas configurações." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5810,35 +5230,10 @@ msgstr "Feed de mensagens públicas" msgid "Public Stream Feed (Atom)" msgstr "Feed de mensagens públicas" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" exceto estes dados privados: senha, endereço de e-mail, endereço de IM, " -"número de telefone." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr " exceto estes dados privados: senha, endereço de e-mail, endereço de IM, número de telefone." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5846,44 +5241,33 @@ msgstr "" msgid "Created" msgstr "Criar" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Esse perfil não existe." #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Perfil" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Feed de mensagens de %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Feed de mensagens de %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Feed de mensagens de %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Envidas para %s" @@ -5899,48 +5283,10 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Configurações do perfil" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Um código de confirmação foi enviado para o número de telefone que você " -"informou. Verifique sua caixa de entrada (e de spam!) para o código e " -"instruções sobre como usá-lo." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Um código de confirmação foi enviado para o número de telefone que você informou. Verifique sua caixa de entrada (e de spam!) para o código e instruções sobre como usá-lo." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5957,28 +5303,18 @@ msgstr "Esse usuário não existe" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Adicione a sua conta do Twitter para enviar suas mensagens para lá " -"automaticamente, " +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Adicione a sua conta do Twitter para enviar suas mensagens para lá automaticamente, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Não foi possível obter as informações da conta \"%s\" no Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Por favor, verifique estes detalhes para ter certeza que você quer seguir as " -"mensagens deste usuário. Se você não solicitou seguir as mensagens de " -"alguém, clique em \"Cancelar\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Por favor, verifique estes detalhes para ter certeza que você quer seguir as mensagens deste usuário. Se você não solicitou seguir as mensagens de alguém, clique em \"Cancelar\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5987,12 +5323,8 @@ msgstr "Pesquisar por pessoa ou texto" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Muitas mensagens em um período curto de tempo; dê uma respirada e publique " -"novamente daqui a alguns minutos." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Muitas mensagens em um período curto de tempo; dê uma respirada e publique novamente daqui a alguns minutos." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -6004,218 +5336,21 @@ msgstr "Conectar por IM, SMS, Twitter" msgid "Badge" msgstr "Chamar a atenção" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " msgstr "Para usar a Aplicação do Facebook %s você precisa autenticar-se" -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s agora está acompanhando suas mensagens em %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Cordialmente,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s agora está acompanhando suas mensagens em %2$s.\n\n %3$s\n\nCordialmente,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Procurar" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6232,19 +5367,15 @@ msgid "Block this user from this group" msgstr "Bloquear usuário" #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "O usuário não tem perfil." #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s e amigos, página %d" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -6260,56 +5391,26 @@ msgstr "Código de confirmação" msgid "Do not delete this notice" msgstr "Não é possível excluir esta mensagem." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Etiqueta inválida: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Este apelido já está em uso. Tente outro." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Não foi possível criar a favorita." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6320,14 +5421,6 @@ msgstr "Nova mensagem" msgid "No notice" msgstr "Nova mensagem" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6339,10 +5432,6 @@ msgstr "Não é um apelido válido." msgid "No group specified." msgstr "Não foi especificado nenhum perfil." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6359,18 +5448,6 @@ msgstr "Você não está assinando esse perfil." msgid "Block user from group" msgstr "Bloquear usuário" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6381,12 +5458,6 @@ msgstr "Você deve estar logado para criar um grupo." msgid "Group design" msgstr "Outras opções" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6419,232 +5490,46 @@ msgstr "Você deve ser o administrador do grupo para editá-lo" msgid "Make Admin" msgstr "Admin" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Nenhum resultado" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "O usuário bloqueou você." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Nova mensagem" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Não foi possível salvar o perfil." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"A [OpenID](%%doc.openid%%) permite que você autentique-se em vários sites " -"com a mesma conta de usuário. Gerencie suas OpenIDs associadas aqui." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "A [OpenID](%%doc.openid%%) permite que você autentique-se em vários sites com a mesma conta de usuário. Gerencie suas OpenIDs associadas aqui." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Configurações do perfil" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/wiki/Microblogging)" #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Se você esqueceu ou perdeu sua senha, você pode receber uma nova no endereço " -"de e-mail que armazenou em sua conta." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Se você esqueceu ou perdeu sua senha, você pode receber uma nova no endereço de e-mail que armazenou em sua conta." #: actions/recoverpassword.php:158 #, fuzzy @@ -6666,87 +5551,30 @@ msgstr "Erro com o código de confirmação." msgid "Subscribe to a remote user" msgstr "Assinar este usuário" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "Mensagens favoritas de %s" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Mensagens de %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Mensagens de %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Mensagens de %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/wiki/Microblogging)" #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6759,84 +5587,33 @@ msgid "Not a local notice" msgstr "Não é um usuário local." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Mensagens etiquetadas com %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Mensagens de %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" -"wiki/Microblogging)" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/wiki/Microblogging)" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s agora está acompanhando " #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed de mensagens de %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Feed de mensagens de %s" @@ -6867,24 +5644,16 @@ msgid "Could not find target user." msgstr "Não foi possível encontrar nenhum status." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Atualizações respondendo à %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Atualizações de %1$s no %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -6895,127 +5664,41 @@ msgstr "%s assinaturas" msgid "Profile design" msgstr "Configurações do perfil" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Você não está assinando esse perfil." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problema ao salvar a mensagem." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Mensagem para %1$s no %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "O usuário não tem perfil." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Perfil" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Enviar" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Altere a sua senha" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -7031,127 +5714,21 @@ msgstr "Procurar" msgid "Links" msgstr "Lista" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Bloquear" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Bloquear usuário" #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "Adicionar ou editar logo de %s" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7167,26 +5744,11 @@ msgstr "Usuário" msgid "Search help" msgstr "Procurar" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "A URL do site informada não é válida." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7194,12 +5756,12 @@ msgid "No such page" msgstr "Essa etiqueta não existe." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Mensagem direta para %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Muito extenso. O tamanho máximo das mensagens é 140 caracteres." @@ -7208,12 +5770,8 @@ msgstr "Muito extenso. O tamanho máximo das mensagens é 140 caracteres." msgid "Could not unfollow user: User not found." msgstr "Não é possível seguir o usuário: Usuário não encontrado." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "descrição muito extensa (máximo 140 caracteres)." @@ -7223,7 +5781,7 @@ msgid "You are already a member of that group." msgstr "Você já está assinando esses usuários:" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." @@ -7233,60 +5791,43 @@ msgid "You are not a member of this group." msgstr "Você não está assinando esse perfil." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "Grupos de %s" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "O grupo %s é membro de" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Outras opções" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Está muito extenso. O tamanho máximo é de 140 caracteres." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "Formato de imagem não suportado." -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "descrição muito extensa (máximo 140 caracteres)." #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Atualizações de %1$s no %2$s!" @@ -7303,8 +5844,7 @@ msgstr "Não autorizado." #: actions/finishremotesubscribe.php:109 #, fuzzy msgid "Could not convert request token to access token." -msgstr "" -"Não foi possível converter os tokens de requisição para tokens de acesso." +msgstr "Não foi possível converter os tokens de requisição para tokens de acesso." #: actions/finishremotesubscribe.php:114 #, fuzzy @@ -7322,7 +5862,7 @@ msgid "Cannot read file." msgstr "Nosso arquivo foi perdido." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Atualizações de %1$s no %2$s!" @@ -7332,40 +5872,17 @@ msgid "IM is not available." msgstr "Esta página não está disponível em um " #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Logar-se com seu nome de usuário e senha. Não tem um nome de usuário ainda? " -"[Registre](%%action.register%%) uma nova conta, ou use uma [OpenID](%%action." -"openidlogin%%)." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Logar-se com seu nome de usuário e senha. Não tem um nome de usuário ainda? [Registre](%%action.register%%) uma nova conta, ou use uma [OpenID](%%action.openidlogin%%)." #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Todas as atualizações correspondentes ao termo \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." @@ -7375,20 +5892,13 @@ msgid "Describe yourself and your interests" msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Descrição muito extensa (máximo 140 caracteres)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Não é uma URL de perfil válida (nenhum documento YADIS)." #: actions/remotesubscribe.php:176 @@ -7401,51 +5911,33 @@ msgstr "Esse é um perfil local! Autentique-se para assinar." msgid "Couldn’t get a request token." msgstr "Não foi possível obter um token de requisição." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Mensagens de %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Mensagem para %1$s no %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed para favoritas de %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed para favoritas de %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Feed para favoritas de %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Mensagens de %s" @@ -7460,80 +5952,32 @@ msgid "SMS is not available." msgstr "Esta página não está disponível em um " #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed de mensagens de %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Por favor, verifique estes detalhes para ter certeza que você quer seguir as " -"mensagens deste usuário. Se você não solicitou seguir as mensagens de " -"alguém, clique em \"Cancelar\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Por favor, verifique estes detalhes para ter certeza que você quer seguir as mensagens deste usuário. Se você não solicitou seguir as mensagens de alguém, clique em \"Cancelar\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"A assinatura foi autorizada, mas não foi informada nenhuma URL de retorno. " -"Verifique as instruções do site para detalhes sobre como autorizar a " -"assinatura. Seu token de assinatura é:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "A assinatura foi autorizada, mas não foi informada nenhuma URL de retorno. Verifique as instruções do site para detalhes sobre como autorizar a assinatura. Seu token de assinatura é:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"A assinatura foi rejeitada, mas não foi informada nenhuma URL de retorno. " -"Verifique as instruções do site para maiores detalhes em como rejeitar " -"completamente a assinatura." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "A assinatura foi rejeitada, mas não foi informada nenhuma URL de retorno. Verifique as instruções do site para maiores detalhes em como rejeitar completamente a assinatura." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Não é possível ler a URL '%s' do avatar" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo de imagem errado para '%s'" @@ -7548,38 +5992,27 @@ msgid "Site content license" msgstr "Procure no conteúdo das mensagens" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" -msgstr "" -"Não foi possível atualizar o usuário com o endereço de e-mail confirmado." - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "Não foi possível atualizar o usuário com o endereço de e-mail confirmado." #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Chamada de atenção enviada" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" -"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" +msgstr "A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" -"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" +msgstr "A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Responder a esta mensagem" @@ -7588,54 +6021,11 @@ msgstr "Responder a esta mensagem" msgid "Error saving notice." msgstr "Problema ao salvar a mensagem." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Nenhum código de confirmação." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7652,70 +6042,25 @@ msgid "Describe the group or topic" msgstr "Descreva o grupo ou tópico em 140 caracteres." #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Descreva o grupo ou tópico em 140 caracteres." #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Feed de mensagens de %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s marcaram sua mensagem como favorita" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " de " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7725,3 +6070,4 @@ msgstr "Não foi possível excluir a favorita." #, fuzzy msgid "Duplicate notice" msgstr "Excluir a mensagem" + diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index a25aa2cba3..b9d20009a1 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -10,14 +10,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:59:30+0000\n" +"PO-Revision-Date: 2009-11-06 12:24:18+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: out-statusnet\n" @@ -26,101 +25,42 @@ msgstr "" #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" -msgstr "" +msgstr "Поисковый поток для «%s»" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" +msgid " except this private data: password, email address, IM address, phone number." +msgstr "за исключением следующих личных данных: пароля, адреса электронной почты, IM-адреса, номера телефона." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " -msgstr "" +msgstr "от " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 #: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" -msgstr "" +msgstr "%1$s / Обновления в ответ %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 #: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" -msgstr "" +msgstr "%1$s пригласил вас присоединиться к нему на %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s пригласил вас присоединиться к нему на %2$s (%3$s).\n\n%2$s — сервис микроблоггинга, позволяющий держать контакт с людьми, которых вы знаете и которые вам интересны.\n\nВы также можете поделиться новостями о себе, вашими мыслями или вашей онлайн-жизнью со знающими вас людьми. Этот сервис также отлично подходит для встречи с новыми людьми, разделяющими ваши интересы.\n\n%1$s говорит:\n\n%4$s\n\nВы можете увидеть страницу профиля %1$s на %2$s здесь:\n\n%5$s\n\nЕсли вы хотите опробовать данный сервис, нажмите на приведённую ниже ссылку, чтобы принять приглашение.\n\n%6$s\n\nВ противном случае вы можете проигнорировать это сообщение. Спасибо за ваше терпение и время.\n\nС уважением, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "" - -#: ../lib/mail.php:126 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "" +msgstr "%1$s сейчас слушает ваши заметки на %2$s." #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 @@ -175,22 +115,14 @@ msgstr "%s обновлен для всех!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Вы должный получить письмо с описанием того, как подтвердить свой " -"электронный адрес.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Вы должный получить письмо с описанием того, как подтвердить свой электронный адрес.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%" -"%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -213,8 +145,7 @@ msgstr "1-64 латинских строчных буквы или цифры, #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 латинских строчных букв или цифр, без пробелов. Обязательное поле." +msgstr "1-64 латинских строчных букв или цифр, без пробелов. Обязательное поле." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -235,31 +166,17 @@ msgstr "6 или более символов. Обязательное поле. #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Код подтверждения выслан на добавленный вами IM-адрес. Вы должны подтвердить " -"%s для отправки вам сообщений." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Код подтверждения выслан на добавленный вами IM-адрес. Вы должны подтвердить %s для отправки вам сообщений." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Код подтверждения выслан на добавленный вами электронный адрес. Просмотрите " -"папку входящей почты (а также папку спама!), чтобы найти этот кода и " -"инструкции по его использованию." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Код подтверждения выслан на добавленный вами электронный адрес. Просмотрите папку входящей почты (а также папку спама!), чтобы найти этот кода и инструкции по его использованию." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Код подтверждения выслан на добавленный вами номер телефона. Посмотрите ваши " -"входящие (а также папку спама!), чтобы найти этот код и инструкции по его " -"использованию." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Код подтверждения выслан на добавленный вами номер телефона. Посмотрите ваши входящие (а также папку спама!), чтобы найти этот код и инструкции по его использованию." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -439,8 +356,7 @@ msgstr "Автоматическии входить в дальнейшем. Н #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Автоматически подписываться на всех, кто подписался на меня" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 @@ -460,22 +376,13 @@ msgstr "Аватар обновлён." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"В ожидании подтверждения этого адреса. Проверьте ваш Jabber/GTalk на предмет " -"сообщения с дальнейшими инструкциями. (Вы включили %s в ваш список " -"контактов?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "В ожидании подтверждения этого адреса. Проверьте ваш Jabber/GTalk на предмет сообщения с дальнейшими инструкциями. (Вы включили %s в ваш список контактов?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Ждём подтверждения этого адреса. Проверь свой почтовый ящик (и папку для " -"спама!), там будут дальнейшие инструкции." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Ждём подтверждения этого адреса. Проверь свой почтовый ящик (и папку для спама!), там будут дальнейшие инструкции." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -612,37 +519,8 @@ msgstr "Код подтверждения не найден." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. Здесь вы " -"можете…\n" -"\n" -"* Перейти на [ваш микроблог](%s) и опубликовать вашу первую запись.\n" -"* Добавить ваш [адрес Jabber/GTalk](%%%%action.imsettings%%%%), для " -"возможности отправлять записи через мгновенные сообщения.\n" -"* [Найти людей](%%%%action.peoplesearch%%%%), которых вы, возможно, знаете, " -"или с которыми разделяете одни и те же интересы.\n" -"* Обновить ваши [настройки профиля](%%%%action.profilesettings%%%%), чтобы " -"больше рассказать другим о себе.\n" -"* Прочитать [документацию](%%%%doc.help%%%%), чтобы узнать о возможностях, о " -"которые вы можете не знать.\n" -"\n" -"Спасибо за то, что присоединились к нам, надеемся, что вы получите " -"удовольствие от использования данного сервиса!" +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. Здесь вы можете…\n\n* Перейти на [ваш микроблог](%s) и опубликовать вашу первую запись.\n* Добавить ваш [адрес Jabber/GTalk](%%%%action.imsettings%%%%), для возможности отправлять записи через мгновенные сообщения.\n* [Найти людей](%%%%action.peoplesearch%%%%), которых вы, возможно, знаете, или с которыми разделяете одни и те же интересы.\n* Обновить ваши [настройки профиля](%%%%action.profilesettings%%%%), чтобы больше рассказать другим о себе.\n* Прочитать [документацию](%%%%doc.help%%%%), чтобы узнать о возможностях, о которые вы можете не знать.\n\nСпасибо за то, что присоединились к нам, надеемся, что вы получите удовольствие от использования данного сервиса!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -680,9 +558,7 @@ msgstr "Не удается включить %s в список поддержк #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 #: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." -msgstr "" -"Не удаётся следовать за пользователем, т. к. такого пользователя не " -"существует." +msgstr "Не удаётся следовать за пользователем, т. к. такого пользователя не существует." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 @@ -822,8 +698,7 @@ msgstr "Создать новую учётную запись" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." -msgstr "" -"Создать новую учетную запись для OpenID, у которого уже есть пользователь." +msgstr "Создать новую учетную запись для OpenID, у которого уже есть пользователь." #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 @@ -833,8 +708,7 @@ msgstr "Подтверждённый в настоящее время Jabber/Gta #: ../actions/smssettings.php:46 actions/smssettings.php:46 #: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." -msgstr "" -"Подтверждённый в настоящее время SMS-доступный номер мобильного телефона." +msgstr "Подтверждённый в настоящее время SMS-доступный номер мобильного телефона." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 #: actions/emailsettings.php:99 actions/emailsettings.php:105 @@ -1053,12 +927,8 @@ msgid "Find people on this site" msgstr "Найти человека на этом сайте" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем " -"изменять Ваши установки." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем изменять Ваши установки." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1143,28 +1013,16 @@ msgstr "IM-установки" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Если у вас уже есть аккаунт, то авторизуйтесь с вашим ником и паролем, чтобы " -"соединить их с вашим OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Если у вас уже есть аккаунт, то авторизуйтесь с вашим ником и паролем, чтобы соединить их с вашим OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Если вы хотите добавить OpenID к вашему аккаунту, то введите его в поле ниже " -"и нажмите на кнопку \"Добавить\"" +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Если вы хотите добавить OpenID к вашему аккаунту, то введите его в поле ниже и нажмите на кнопку \"Добавить\"" #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Если вы забыли или потеряли пароль, то вы можете получить новый, послав " -"запрос на тот электронный адрес, который вы указали в вашем аккаунте." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Если вы забыли или потеряли пароль, то вы можете получить новый, послав запрос на тот электронный адрес, который вы указали в вашем аккаунте." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1194,12 +1052,8 @@ msgstr "Некорректное имя или пароль." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Инструкции по восстановлению пароля посланы на электронный адрес, который Вы " -"указали при регистрации вашего аккаунта." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Инструкции по восстановлению пароля посланы на электронный адрес, который Вы указали при регистрации вашего аккаунта." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1295,15 +1149,8 @@ msgstr "Пригласить новых пользователей" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Этот сервис работает при помощи [StatusNet](http://status.net/) - " -"программного обеспечения для микроблогинга, версии %s, доступного под " -"лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" -"licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Этот сервис работает при помощи [StatusNet](http://status.net/) - программного обеспечения для микроблогинга, версии %s, доступного под лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1313,13 +1160,8 @@ msgstr "Этот Jabber ID уже используется другим поль #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber или GTalk - адрес, типа \"UserName@example.org\". Первым делом " -"убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-" -"мессенджере или в GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber или GTalk - адрес, типа \"UserName@example.org\". Первым делом убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-мессенджере или в GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1386,14 +1228,8 @@ msgstr "Вход при помощи [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action." -"register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID]" -"(%%action.openidlogin%%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action.register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1416,8 +1252,7 @@ msgstr "Потеряли или забыли пароль?" #: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "" -"Создать новый электронный адрес для постинга здесь; отменить один из старых." +msgstr "Создать новый электронный адрес для постинга здесь; отменить один из старых." #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 @@ -1439,13 +1274,8 @@ msgstr "Микроблог от %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Провайдер Вашего мобильного телефона. Если вы знаете провайдера, который " -"принимает CVC при помощи электронных адресов и которого нет в списке ниже, " -"то пошлите нам об этом электронное сообщение %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Провайдер Вашего мобильного телефона. Если вы знаете провайдера, который принимает CVC при помощи электронных адресов и которого нет в списке ниже, то пошлите нам об этом электронное сообщение %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1541,8 +1371,7 @@ msgstr "Такое имя уже используется. Попробуйте #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Имя должно состоять только из прописных букв и цифр и не иметь пробелов." +msgstr "Имя должно состоять только из прописных букв и цифр и не иметь пробелов." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -2068,14 +1897,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Номер телефона, без пробелов, с кодом зоны" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " -"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" -"\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2258,12 +2081,8 @@ msgid "Remove OpenID" msgstr "Убрать OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Удаление последнего OpenID делает авторизацию невозможной! Если Вы всё же " -"хотите удалить этот OpenID, то сначала добавьте ещё один." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Удаление последнего OpenID делает авторизацию невозможной! Если Вы всё же хотите удалить этот OpenID, то сначала добавьте ещё один." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2359,21 +2178,13 @@ msgstr "Лента поискового потока" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Поиск по содержанию записей на %%site.name%%. Между ключевыми словами " -"ставьте пробелы. Минимальная длина слова — 3 буквы." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Поиск по содержанию записей на %%site.name%%. Между ключевыми словами ставьте пробелы. Минимальная длина слова — 3 буквы." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Поиск людей на %%site.name%% по имени, месторасположению или интересам. " -"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Поиск людей на %%site.name%% по имени, месторасположению или интересам. Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2408,18 +2219,13 @@ msgstr "Посылать мне записи через Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Посылать мне записи через СМС; я понимаю, что это может привести к расходам " -"по пересылке." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Посылать мне записи через СМС; я понимаю, что это может привести к расходам по пересылке." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Посылать мне реплики через Jabber/GTalk от людей, на которых я не подписан." +msgstr "Посылать мне реплики через Jabber/GTalk от людей, на которых я не подписан." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2651,23 +2457,13 @@ msgstr "Адрес удалён." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " -"о том, как авторизовать подписку. Ваш подписочный купон: " +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте о том, как авторизовать подписку. Ваш подписочный купон: " #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, " -"чтобы полностью отказаться от подписки." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, чтобы полностью отказаться от подписки." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2693,35 +2489,22 @@ msgstr "Это пользователи, записи которых вы чит #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Это люди, которые уже являются пользователями, и на которых Вы подписались " -"автоматически:" +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Это люди, которые уже являются пользователями, и на которых Вы подписались автоматически:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Код подтверждения слишком старый. Попробуйте ещё раз." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Эта форма с автоматической поддержкой. Если это не так, то нажмите на кнопку " -"подтверждения для перехода на сайт Вашего OpenID-провайдера. " +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Эта форма с автоматической поддержкой. Если это не так, то нажмите на кнопку подтверждения для перехода на сайт Вашего OpenID-провайдера. " #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Вы впервые вошли под именем %s, так что нам нужно привязать ваш OpenID к " -"вашим локальным установкам. Вы должны создать новый аккаунт или привязаться " -"к уже имеющемуся аккаунту, если он есть. " +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Вы впервые вошли под именем %s, так что нам нужно привязать ваш OpenID к вашим локальным установкам. Вы должны создать новый аккаунт или привязаться к уже имеющемуся аккаунту, если он есть. " #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2770,13 +2553,8 @@ msgstr "Часовой пояс не выбран." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Чтобы подписаться, необходимо [авторизоваться](%%action.login%%) или " -"[зарегистрировать](%%action.register%%) новый аккаунт." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Чтобы подписаться, необходимо [авторизоваться](%%action.login%%) или [зарегистрировать](%%action.register%%) новый аккаунт." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2830,12 +2608,8 @@ msgid "Unknown version of OMB protocol." msgstr "Неизвестная версия OMB-протокола." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Там, где это не оговорено специально, содержимое этого сайта защищено " -"авторскими правами и предоставляется под " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Там, где это не оговорено специально, содержимое этого сайта защищено авторскими правами и предоставляется под " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2896,16 +2670,8 @@ msgid "Upload" msgstr "Загрузить" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Загрузка нового \"аватара\" (изображения пользователя) здесь. Вы не можете " -"редактировать картинку после загрузки, так что убедитесь, чтобы она была " -"более-менее квадратна. Это будет также размещено под лицензией этого сайта. " -"Используйте личные изображения, которые Вы готовы разделить с другими." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Загрузка нового \"аватара\" (изображения пользователя) здесь. Вы не можете редактировать картинку после загрузки, так что убедитесь, чтобы она была более-менее квадратна. Это будет также размещено под лицензией этого сайта. Используйте личные изображения, которые Вы готовы разделить с другими." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2913,8 +2679,7 @@ msgstr "Загрузить новое профильное изображени #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." +msgid "Use this form to invite your friends and colleagues to use this service." msgstr "В этой форме ты можешь пригласить друзей и коллег на этот сервис." #: ../actions/register.php:159 ../actions/register.php:162 @@ -3008,12 +2773,8 @@ msgid "You already have this OpenID!" msgstr "У Вас уже есть такой OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Вы окончательно удаляете запись. После того, как это будет сделано, " -"восстановление будет невозможно." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Вы окончательно удаляете запись. После того, как это будет сделано, восстановление будет невозможно." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3036,41 +2797,28 @@ msgstr "Вы можете поменять Ваш пароль здесь. Вы #: ../actions/register.php:135 actions/register.php:145 msgid "You can create a new account to start posting notices." -msgstr "" -"Вы можете создать новый аккаунт, чтобы начать писать записи в вашем " -"микроблоге." +msgstr "Вы можете создать новый аккаунт, чтобы начать писать записи в вашем микроблоге." #: ../actions/smssettings.php:28 actions/smssettings.php:28 #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" -"Вы можете отправлять СМС-сообщения по электронному адресу от %%site.name%%." +msgstr "Вы можете отправлять СМС-сообщения по электронному адресу от %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Вы можете удалить OpenID из своего аккаунта, нажав на кнопку \"Убрать\". " +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Вы можете удалить OpenID из своего аккаунта, нажав на кнопку \"Убрать\". " #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" -"(%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер](%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Вы можете обновить ваш профиль ниже, так что люди узнают о вас немного " -"больше." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Вы можете обновить ваш профиль ниже, так что люди узнают о вас немного больше." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3085,9 +2833,7 @@ msgstr "Вы можете использовать локальную подпи #: actions/finishopenidlogin.php:43 actions/register.php:149 #: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." -msgstr "" -"Вы не можете зарегистрироваться, если Вы не подтверждаете лицензионного " -"соглашения." +msgstr "Вы не можете зарегистрироваться, если Вы не подтверждаете лицензионного соглашения." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 #: actions/updateprofile.php:67 actions/updateprofile.php:69 @@ -3096,24 +2842,8 @@ msgstr "Вы не посылали нам этот профиль." #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"У Вас новый адрес постинга на %1$s.\n" -"\n" -"Посылайте электронные письма на %2$s для постинга новых записей.\n" -"\n" -"Инструкции по электронным публикациям записей на %3$s.\n" -"\n" -"Искренне Ваш,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "У Вас новый адрес постинга на %1$s.\n\nПосылайте электронные письма на %2$s для постинга новых записей.\n\nИнструкции по электронным публикациям записей на %3$s.\n\nИскренне Ваш,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3125,18 +2855,12 @@ msgstr "Вы не можете удалять статус других поль #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "" -"Вы должны авторизоваться, чтобы приглашать других пользователей следовать за " -"%s" +msgstr "Вы должны авторизоваться, чтобы приглашать других пользователей следовать за %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Мы сообщим Вам, если приглашения будут приняты и вновь приглашенные " -"зарегистрируются на сайте. Спасибо за помощь в росте нашего сообщества!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Мы сообщим Вам, если приглашения будут приняты и вновь приглашенные зарегистрируются на сайте. Спасибо за помощь в росте нашего сообщества!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3154,13 +2878,8 @@ msgstr "Ваше имя на этом сервере или электронны #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) позволяет вам авторизоваться на многих сайтах при " -"помощи только лишь одного аккаунта. Управляйте вашим ассоциированным " -"аккаунтом OpenIDs отсюда." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) позволяет вам авторизоваться на многих сайтах при помощи только лишь одного аккаунта. Управляйте вашим ассоциированным аккаунтом OpenIDs отсюда." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3301,16 +3020,12 @@ msgstr "Пометить" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " -"запись в число любимых." +msgstr "Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою запись в число любимых." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." -msgstr "" -"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " -"приватное сообщение." +msgstr "Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне приватное сообщение." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 #: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 @@ -3356,17 +3071,12 @@ msgstr "Входящие для %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Это Ваши входящие сообщения, где перечислены входящие приватные сообщения." +msgstr "Это Ваши входящие сообщения, где перечислены входящие приватные сообщения." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s приглашает вас присоединиться к %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s приглашает вас присоединиться к %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3408,8 +3118,7 @@ msgstr "Вы не можете послать сообщение этому по #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Не посылайте сообщения сами себе; просто потихоньку скажите это себе." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3438,8 +3147,7 @@ msgstr "Если вы хотите добавить OpenID к вашему ак #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" -"Удаление единственного из оставшихся OpenID сделает невозможной авторизацию!" +msgstr "Удаление единственного из оставшихся OpenID сделает невозможной авторизацию!" #: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " @@ -3457,16 +3165,12 @@ msgstr "Исходящие для %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Это ящик Ваших исходящих писем, здесь приватные сообщения, которые отосланы " -"Вами." +msgstr "Это ящик Ваших исходящих писем, здесь приватные сообщения, которые отосланы Вами." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"поиск людей на %%site.name%% по их имени, месту жительства или интересам." +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "поиск людей на %%site.name%% по их имени, месту жительства или интересам." #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3517,11 +3221,8 @@ msgstr "Пароль должен быть длиной не менее 6 сим #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Поздравляем, %s! И добро пожаловать на %%%%site.name%%%%. Здесь Вы можете ..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Поздравляем, %s! И добро пожаловать на %%%%site.name%%%%. Здесь Вы можете ..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3617,9 +3318,7 @@ msgstr "Получатель не найден." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" -"Не удаётся посылать прямые сообщения пользователям, которые не являются " -"Вашими друзьями." +msgstr "Не удаётся посылать прямые сообщения пользователям, которые не являются Вашими друзьями." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3646,19 +3345,12 @@ msgstr "%s добавил вашу запись в состав своих лю #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s добавил вашу запись от %2$s в состав своих любимых.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s добавил вашу запись от %2$s в состав своих любимых.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " -"на Твиттер," +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей на Твиттер," #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3705,12 +3397,8 @@ msgstr "Подписаться на моих Твиттер-друзей зде #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Имя пользователя должно состоят только из цифр, прописных или строчных букв " -"и символа подчеркивания (_). Всего не более 15 символов." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Имя пользователя должно состоят только из цифр, прописных или строчных букв и символа подчеркивания (_). Всего не более 15 символов." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3925,12 +3613,8 @@ msgstr "Пользователь без соответствующего про #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"У Вас новый адрес постинга на %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "У Вас новый адрес постинга на %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3939,12 +3623,8 @@ msgstr "Новое приватное сообщение от %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) послал Вам приватное сообщение:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) послал Вам приватное сообщение:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4122,9 +3802,7 @@ msgstr "Адрес %s был успешно подтверждён для ваш #: actions/deletenotice.php:73 msgid "You are about to permanently delete a notice. " -msgstr "" -"Вы окончательно удаляете запись. После того, как это будет сделано, " -"восстановление будет невозможно." +msgstr "Вы окончательно удаляете запись. После того, как это будет сделано, восстановление будет невозможно." #: actions/disfavor.php:94 msgid "Add to favorites" @@ -4185,9 +3863,7 @@ msgstr "Заполните информацию о группе в следую #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 msgid "Nickname must have only lowercase letters " -msgstr "" -"Имя должно состоять только из прописных латинских букв и цифр и не иметь " -"пробелов" +msgstr "Имя должно состоять только из прописных латинских букв и цифр и не иметь пробелов" #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -4213,15 +3889,12 @@ msgstr "Новый электронный адрес для постинга %s" #: actions/emailsettings.php:157 msgid "Send me email when someone " -msgstr "" -"Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " -"запись в число любимых." +msgstr "Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою запись в число любимых." #: actions/emailsettings.php:168 actions/emailsettings.php:173 #: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." -msgstr "" -"Разрешить друзьям \"подталкивать\" меня и посылать мне электронные сообщения." +msgstr "Разрешить друзьям \"подталкивать\" меня и посылать мне электронные сообщения." #: actions/emailsettings.php:321 msgid "That email address already belongs " @@ -4229,9 +3902,7 @@ msgstr "Этот электронный адрес уже используетс #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Код подтверждения выслан на ваш электронный адрес, который Вы добавили. " -"Проверьте входящие (а так же папку для спама)." +msgstr "Код подтверждения выслан на ваш электронный адрес, который Вы добавили. Проверьте входящие (а так же папку для спама)." #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" @@ -4240,9 +3911,7 @@ msgstr "Ошибка сервера - невозможно достать пол #: actions/facebookhome.php:196 #, php-format msgid "If you would like the %s app to automatically update " -msgstr "" -"Если вы хотите чтобы приложение %s автоматически обновляло ваш Facebook " -"статус вашими последними записями, вы должны дать своё разрешение на это." +msgstr "Если вы хотите чтобы приложение %s автоматически обновляло ваш Facebook статус вашими последними записями, вы должны дать своё разрешение на это." #: actions/facebookhome.php:213 actions/facebooksettings.php:137 #, php-format @@ -4327,8 +3996,7 @@ msgstr "Настройки синхронизации сохранены." #: actions/facebooksettings.php:90 msgid "Automatically update my Facebook status with my notices." -msgstr "" -"Автоматически обновлять мой Facebook статус моими записями с %%site.name%%." +msgstr "Автоматически обновлять мой Facebook статус моими записями с %%site.name%%." #: actions/facebooksettings.php:97 msgid "Send \"@\" replies to Facebook." @@ -4345,9 +4013,7 @@ msgstr "Присоеденять префикс к записям" #: actions/facebooksettings.php:124 #, php-format msgid "If you would like %s to automatically update " -msgstr "" -"Если вы хотите чтобы приложение %s автоматически обновляло ваш Facebook " -"статус вашими последними записями, вы должны дать своё разрешение на это." +msgstr "Если вы хотите чтобы приложение %s автоматически обновляло ваш Facebook статус вашими последними записями, вы должны дать своё разрешение на это." #: actions/facebooksettings.php:147 msgid "Sync preferences" @@ -4445,11 +4111,7 @@ msgstr "Группы, страница %d" #: actions/groups.php:90 #, php-format msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" -"%%%%site.name%%%% группы помогут вам найти и общаться с людьми по интересам. " -"Подробнее о группах [читайте тут](%%doc.groups%%). Попробуйте [поискать " -"существующие группы](%%%%action.groupsearch%%%%) или [создайте новую группу]" -"(%%%%action.newgroup%%%%)." +msgstr "%%%%site.name%%%% группы помогут вам найти и общаться с людьми по интересам. Подробнее о группах [читайте тут](%%doc.groups%%). Попробуйте [поискать существующие группы](%%%%action.groupsearch%%%%) или [создайте новую группу](%%%%action.newgroup%%%%)." #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 @@ -4458,10 +4120,8 @@ msgstr "Создать новую группу" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Поиск группы на %%site.name%% по названию, месторасположению или описанию." +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Поиск группы на %%site.name%% по названию, месторасположению или описанию." #: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" @@ -4469,9 +4129,7 @@ msgstr "Поиск группы" #: actions/imsettings.php:70 msgid "You can send and receive notices through " -msgstr "" -"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" -"(%%doc.im%%). Настройте ваш IM аккаунт и предпочтения ниже." +msgstr "Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер](%%doc.im%%). Настройте ваш IM аккаунт и предпочтения ниже." #: actions/imsettings.php:120 #, php-format @@ -4592,11 +4250,8 @@ msgid "Ajax Error" msgstr "Ошибка AJAX" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Этот пользователь не разрешает \"подталкивать\" его, или ещё не подтверждён " -"или ещё не представил свой электронный адрес." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Этот пользователь не разрешает \"подталкивать\" его, или ещё не подтверждён или ещё не представил свой электронный адрес." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4670,11 +4325,8 @@ msgstr "Информация профиля" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или " -"пробелом" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или пробелом" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4705,12 +4357,8 @@ msgstr "Не удаётся вернуть публичный поток." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" -"Микроблоггинг)" +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг)" #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4733,9 +4381,7 @@ msgstr "Простите, регистрация только по пригла #: actions/register.php:149 msgid "You can't register if you don't " -msgstr "" -"Вы не можете зарегистрироваться, если вы не согласны лицензионным " -"соглашением." +msgstr "Вы не можете зарегистрироваться, если вы не согласны лицензионным соглашением." #: actions/register.php:286 msgid "With this form you can create " @@ -4743,14 +4389,11 @@ msgstr "При помощи этой формы вы можете создать #: actions/register.php:368 msgid "1-64 lowercase letters or numbers, " -msgstr "" -"Разрешено от 1 до 64 латинских строчных букв или цифр, без пробелов и знаков " -"пунктуации." +msgstr "Разрешено от 1 до 64 латинских строчных букв или цифр, без пробелов и знаков пунктуации." #: actions/register.php:382 actions/register.php:386 msgid "Used only for updates, announcements, " -msgstr "" -"Используется только для обновлений, осведомлений и восстановления пароля." +msgstr "Используется только для обновлений, осведомлений и восстановления пароля." #: actions/register.php:398 msgid "URL of your homepage, blog, " @@ -4766,9 +4409,7 @@ msgstr "Где вы находитесь, например «Город, обл #: actions/register.php:432 msgid " except this private data: password, " -msgstr "" -", за исключением моей приватной информации: пароля, почты, мессенджера, " -"телефона." +msgstr ", за исключением моей приватной информации: пароля, почты, мессенджера, телефона." #: actions/register.php:471 #, php-format @@ -4777,9 +4418,7 @@ msgstr "Наши поздравления, %s! И добро пожаловат #: actions/register.php:495 msgid "(You should receive a message by email " -msgstr "" -"(Вам сразу же послано сообщение по электронной почте, с инструкциями по " -"тому, как подтвердить свой электронный адрес.)" +msgstr "(Вам сразу же послано сообщение по электронной почте, с инструкциями по тому, как подтвердить свой электронный адрес.)" #: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." @@ -4866,12 +4505,8 @@ msgstr "Все участники" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** - это группа пользователей на сайте %%%%site.name%%%%, для " -"[микроблогинга](http://en.wikipedia.org/wiki/Micro-blogging)" +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** - это группа пользователей на сайте %%%%site.name%%%%, для [микроблогинга](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4923,12 +4558,8 @@ msgstr "Все группы" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** зарегистрирован на %%%%site.name%%%%, сервисе для [микроблогинга]" -"(http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** зарегистрирован на %%%%site.name%%%%, сервисе для [микроблогинга](http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4936,9 +4567,7 @@ msgstr "Номер телефона, без пробелов, с кодом зо #: actions/smssettings.php:162 msgid "Send me notices through SMS; " -msgstr "" -"Посылать мне записи через СМС; я понимаю, что это может привести к расходам " -"по пересылке." +msgstr "Посылать мне записи через СМС; я понимаю, что это может привести к расходам по пересылке." #: actions/smssettings.php:335 msgid "A confirmation code was sent to the phone number you added. " @@ -5035,23 +4664,16 @@ msgid "Tag user" msgstr "Тэги для пользователя" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Теги для этого пользователя (буквы, цифры, -, ., и _), разделённые запятой " -"или пробелом" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Теги для этого пользователя (буквы, цифры, -, ., и _), разделённые запятой или пробелом" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Вы можете помечать тегами только пользователей, на которых подписаны или " -"которые подписаны на Вас." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Вы можете помечать тегами только пользователей, на которых подписаны или которые подписаны на Вас." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5059,8 +4681,7 @@ msgstr "Не удаётся сохранить теги." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" -"Используйте эту форму для добавления тегов Вашим подписчикам или подписантам." +msgstr "Используйте эту форму для добавления тегов Вашим подписчикам или подписантам." #: actions/tagrss.php:35 msgid "No such tag." @@ -5088,9 +4709,7 @@ msgstr "Не найдено." #: actions/twittersettings.php:71 msgid "Add your Twitter account to automatically send " -msgstr "" -"Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " -"на Твиттер, и подпишитесь на друзей с Твиттера, которые уже здесь." +msgstr "Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей на Твиттер, и подпишитесь на друзей с Твиттера, которые уже здесь." #: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" @@ -5107,9 +4726,7 @@ msgstr "Твиттер-друзья" #: actions/twittersettings.php:327 msgid "Username must have only numbers, " -msgstr "" -"Имя пользователя должно состоят только из цифр, прописных или строчных букв " -"и символа подчеркивания (_). Всего не более 15 символов." +msgstr "Имя пользователя должно состоят только из цифр, прописных или строчных букв и символа подчеркивания (_). Всего не более 15 символов." #: actions/twittersettings.php:341 #, php-format @@ -5150,11 +4767,8 @@ msgstr "Проблема при сохранении записи. Неизве #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Слишком много записей за столь короткий срок; передохните немного и " -"попробуйте вновь через пару минут." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Слишком много записей за столь короткий срок; передохните немного и попробуйте вновь через пару минут." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5333,8 +4947,7 @@ msgstr "Опиши группу при помощи 140 символов" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Где находится группа, например «Город, область, страна»" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5398,12 +5011,8 @@ msgstr "Войти или зарегистрироваться с OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Привет, %s.\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Привет, %s.\n\n" #: lib/mail.php:236 #, php-format @@ -5422,12 +5031,8 @@ msgstr "Домашняя страница: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Био: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Био: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5437,9 +5042,7 @@ msgstr "Вас \"подтолкнул\" пользователь %s" #: lib/mail.php:465 #, php-format msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" -"%1$s (%2$s) интересуется чем Вы занимались последнее время и предлагает Вам " -"запостить парочку новостей." +msgstr "%1$s (%2$s) интересуется чем Вы занимались последнее время и предлагает Вам запостить парочку новостей." #: lib/mail.php:555 #, php-format @@ -5597,17 +5200,17 @@ msgid "Unsubscribe from this user" msgstr "Отписаться от этого пользователя" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Лента друзей %s" +msgstr "Лента друзей %s (RSS 1.0)" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Лента друзей %s" +msgstr "Лента друзей %s (RSS 2.0)" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Лента друзей %s" @@ -5617,7 +5220,7 @@ msgid "You and friends" msgstr "%s и друзья" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Тут вы можете загрузить свой аватар." @@ -5626,21 +5229,10 @@ msgstr "Тут вы можете загрузить свой аватар." msgid "Avatar deleted." msgstr "Аватар обновлён." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Вы окончательно удаляете запись. После того, как это будет сделано, " -"восстановление будет невозможно." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Вы окончательно удаляете запись. После того, как это будет сделано, восстановление будет невозможно." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5650,33 +5242,11 @@ msgstr "Проблема с Вашей сессией. Попробуйте ещ #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" -"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " -"приватное сообщение." - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" +msgstr "Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне приватное сообщение." #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "Тут вы можете загрузить логотип для группы." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5685,47 +5255,24 @@ msgid "Pick a square area of the image to be the logo." msgstr "Подберите нужный квадратный ракурс дла вашего аватара" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Микроблог от %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Поиск людей на %%site.name%% по имени, месторасположению или интересам. " -"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Поиск людей на %%site.name%% по имени, месторасположению или интересам. Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." #: actions/newmessage.php:102 #, fuzzy msgid "Only logged-in users can send direct messages." msgstr "Ошибка при отправке прямого сообщения." -#: actions/noticesearch.php:91 -#, php-format -msgid "Search results for \"%s\" on %s" -msgstr "" - #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем " -"изменять Ваши установки." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем изменять Ваши установки." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5744,42 +5291,18 @@ msgstr "Лента публичного потока" #: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" -"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" -"Микроблоггинг), созданный с использованием свободного программного " -"обеспечения [StatusNet](http://status.net/). [Стань участником](%%action." -"register%%), чтобы держать в курсе своих событий поклонников, друзей, " -"родственников и коллег! ([Читать далее](%%doc.help%%))" +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с использованием свободного программного обеспечения [StatusNet](http://status.net/). [Стань участником](%%action.register%%), чтобы держать в курсе своих событий поклонников, друзей, родственников и коллег! ([Читать далее](%%doc.help%%))" #: actions/register.php:286 actions/register.php:329 #, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" -"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " -"короткие сообщения и устанавливать связи с друзьями и коллегами (Есть " -"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" -"action.openidlogin%%)!)" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" +msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать короткие сообщения и устанавливать связи с друзьями и коллегами (Есть [OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%action.openidlogin%%)!)" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -", за исключением моей приватной информации: пароля, почты, мессенджера, " -"телефона." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr ", за исключением моей приватной информации: пароля, почты, мессенджера, телефона." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5790,19 +5313,8 @@ msgstr "Создать" #: actions/showgroup.php:393 actions/showgroup.php:440 #: actions/showgroup.php:448 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" -"**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " -"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с " -"использованием свободного программного обеспечения [StatusNet](http://status." -"net/). Участники обмениваются короткими сообщениями о своих новостях. " -"[Зарегистрируйся](%%%%action.register%%%%), чтобы стать участником группы и " -"получить множество других возможностей! ([Читать далее](%%%%doc.help%%%%))" +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. [Join now](%%%%action.register%%%%) to become part of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с использованием свободного программного обеспечения [StatusNet](http://status.net/). Участники обмениваются короткими сообщениями о своих новостях. [Зарегистрируйся](%%%%action.register%%%%), чтобы стать участником группы и получить множество других возможностей! ([Читать далее](%%%%doc.help%%%%))" #: actions/showstream.php:147 #, fuzzy @@ -5810,27 +5322,27 @@ msgid "Your profile" msgstr "Профиль группы" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Профиль" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Лента записей для %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Лента записей для %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Лента записей для %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Исходящие для %s" @@ -5846,54 +5358,16 @@ msgstr "Аватар" msgid "Edit profile settings" msgstr "Настройки профиля" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - #: actions/showstream.php:542 actions/showstream.php:388 #: actions/showstream.php:487 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" -"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " -"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " -"использованием свободного программного обеспечения [StatusNet](http://status." -"net/). [Зарегистрируйся](%%%%action.register%%%%), чтобы всегда получать " -"сообщения участника **%s** и иметь доступ ко множеству других возможностей! " -"([Читать далее](%%%%doc.help%%%%))" +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с использованием свободного программного обеспечения [StatusNet](http://status.net/). [Зарегистрируйся](%%%%action.register%%%%), чтобы всегда получать сообщения участника **%s** и иметь доступ ко множеству других возможностей! ([Читать далее](%%%%doc.help%%%%))" #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Код подтверждения выслан на мобильный номер, который вы добавили. " -"Посмотрите Ваши входящие сообщения (и папку для спама тоже!) для нахождения " -"этого кода и инструкций по его использованию." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Код подтверждения выслан на мобильный номер, который вы добавили. Посмотрите Ваши входящие сообщения (и папку для спама тоже!) для нахождения этого кода и инструкций по его использованию." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5910,28 +5384,18 @@ msgstr "Нет такого пользователя" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " -"на Твиттер," +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей на Твиттер," #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Не удаётся подтвердить данные по аккаунту \"%s\" из Твитера." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " -"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" -"\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5940,12 +5404,8 @@ msgstr "Искать людей или текст" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Слишком много записей за столь короткий срок; передохните немного и " -"попробуйте вновь через пару минут." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Слишком много записей за столь короткий срок; передохните немного и попробуйте вновь через пару минут." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5957,212 +5417,20 @@ msgstr "Соединиться с IM, SMS, Twitter" msgid "Badge" msgstr "\"Подтолкнуть\"" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/dberroraction.php:60 msgid "Database error" msgstr "Ошибка базы данных" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " msgstr "Вы должны авторизоваться чтобы использовать %s приложение" -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Поиск" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6179,12 +5447,12 @@ msgid "Block this user from this group" msgstr "Список пользователей, являющихся членами этой группы." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Профиль пользователя" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s и друзья, страница %d" @@ -6208,56 +5476,26 @@ msgstr "Код подтверждения" msgid "Do not delete this notice" msgstr "Не удаётся удалить эту запись." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Неверный тег: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Не удаётся создать любимую запись." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6268,14 +5506,6 @@ msgstr "Новая запись" msgid "No notice" msgstr "Новая запись" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6287,10 +5517,6 @@ msgstr "Неверное имя." msgid "No group specified." msgstr "Профиль не определен." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6307,18 +5533,6 @@ msgstr "Вы не являетесь членом этой группы." msgid "Block user from group" msgstr "Заблокировать пользователя." -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6329,12 +5543,6 @@ msgstr "Вы должны авторизоваться, чтобы создат msgid "Group design" msgstr "Группы" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6367,234 +5575,46 @@ msgstr "Вы должны быть администратором, чтобы и msgid "Make Admin" msgstr "Настройки" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Нет результатов." -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Пользователь заблокировал Вас." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Сообщение" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Не удаётся сохранить профиль." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) позволяет вам авторизоваться на многих сайтах при " -"помощи только лишь одного аккаунта. Управляйте вашим ассоциированным " -"аккаунтом OpenIDs отсюда." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) позволяет вам авторизоваться на многих сайтах при помощи только лишь одного аккаунта. Управляйте вашим ассоциированным аккаунтом OpenIDs отсюда." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Настройки профиля" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" -"Микроблоггинг), созданный с использованием свободного программного " -"обеспечения [StatusNet](http://status.net/)." - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с использованием свободного программного обеспечения [StatusNet](http://status.net/)." #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Если вы забыли или потеряли пароль, то вы можете получить новый, послав " -"запрос на тот электронный адрес, который вы указали в вашем аккаунте." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Если вы забыли или потеряли пароль, то вы можете получить новый, послав запрос на тот электронный адрес, который вы указали в вашем аккаунте." #: actions/recoverpassword.php:158 #, fuzzy @@ -6616,89 +5636,30 @@ msgstr "Ошибка, связанная с кодом подтверждени msgid "Subscribe to a remote user" msgstr "Подписаться на %s" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "Любимые записи %s, страница %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Лента записей от группы %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Лента записей от группы %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Лента записей от группы %s" #: actions/showgroup.php:446 actions/showgroup.php:454 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " -"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг) , созданный с " -"использованием свободного программного обеспечения [StatusNet](http://status." -"net/). Участники обмениваются короткими сообщениями о своих новостях. " +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг) , созданный с использованием свободного программного обеспечения [StatusNet](http://status.net/). Участники обмениваются короткими сообщениями о своих новостях. " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6711,86 +5672,33 @@ msgid "Not a local notice" msgstr "Не локальный пользователь." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Записи, помеченные %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Лента записей от группы %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " -"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " -"использованием свободного программного обеспечения [StatusNet](http://status." -"net/)." - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с использованием свободного программного обеспечения [StatusNet](http://status.net/)." #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s теперь просматривает твои записи на %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Лента записей для %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Лента записей для %s" @@ -6820,21 +5728,12 @@ msgstr "Нет адресата." msgid "Could not find target user." msgstr "Нет статусов." -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "" - #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -6850,127 +5749,41 @@ msgstr "Подписки %s" msgid "Profile design" msgstr "Настройки профиля" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Вы не являетесь членом этой группы." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблемы с сохранением записи." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Сообщение для %1$s на %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Профиль пользователя" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Профиль" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Загрузить" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Изменить Ваш пароль" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6986,127 +5799,21 @@ msgstr "Поиск" msgid "Links" msgstr "Список" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Блокировать" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Заблокировать пользователя." #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "Добавить или изменить логотип группы %s" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7122,26 +5829,11 @@ msgstr "Пользователь" msgid "Search help" msgstr "Поиск" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "URL Главной страницы неверен." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7149,27 +5841,22 @@ msgid "No such page" msgstr "Нет такого тега." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Прямые сообщения для %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Слишком длинно. Максимальная длина сообщения - 140 знаков." #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." -msgstr "" -"Не удаётся следовать пользователю, т.к. такого пользователя не существует." - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" +msgstr "Не удаётся следовать пользователю, т.к. такого пользователя не существует." #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Слишком длинное описание (максимум 140 символов)" @@ -7179,7 +5866,7 @@ msgid "You are already a member of that group." msgstr "Вы уже являетесь членом этой группы" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Не удаётся присоеденить пользователя %s к группе %s" @@ -7189,22 +5876,22 @@ msgid "You are not a member of this group." msgstr "Вы не являетесь членом этой группы." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Не удаётся удалить пользователя %s из группы %s" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "Группы %s" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "Группы, в которых состоит %s" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Действия группы" @@ -7213,21 +5900,12 @@ msgstr "Действия группы" msgid "Status deleted." msgstr "Аватар обновлён." -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Слишком длинная запись. Максимальная длина - 140 знаков." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -7239,12 +5917,12 @@ msgid "Post to " msgstr "Фото" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Слишком длинное описание (максимум 140 символов)" #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" @@ -7279,7 +5957,7 @@ msgid "Cannot read file." msgstr "Потерян файл." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" @@ -7289,40 +5967,17 @@ msgid "IM is not available." msgstr "Страница недоступна для того типа, который Вы задействовали." #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action." -"register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID]" -"(%%action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action.register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Все обновления соответствующие поисковому термину \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Опиши себя и свои увлечения при помощи 140 символов" @@ -7332,23 +5987,18 @@ msgid "Describe yourself and your interests" msgstr "Опиши себя и свои интересы при помощи 140 символов." #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Слишком длинное био (максимум 140 символов)." #: actions/register.php:336 #, fuzzy -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" -"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " -"короткие сообщения и устанавливать связи с друзьями и коллегами." +msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. " +msgstr "При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать короткие сообщения и устанавливать связи с друзьями и коллегами." #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Неверный URL профиля (не YADIS-документ)." #: actions/remotesubscribe.php:176 @@ -7362,50 +6012,42 @@ msgid "Couldn’t get a request token." msgstr "Не удаётся получить запрос." #: actions/replies.php:144 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (RSS 1.0)" msgstr "Лента записей для %s" #: actions/replies.php:151 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (RSS 2.0)" msgstr "Лента записей для %s" #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Лента записей для %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Сообщение для %1$s на %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Лента друзей %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Лента друзей %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Лента друзей %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Исходящие для %s" @@ -7420,78 +6062,32 @@ msgid "SMS is not available." msgstr "Страница недоступна для того типа, который Вы задействовали." #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Лента записей для %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " -"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" -"\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " -"о том, как авторизовать подписку. Ваш подписочный купон: " +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте о том, как авторизовать подписку. Ваш подписочный купон: " #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, " -"чтобы полностью отказаться от подписки." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, чтобы полностью отказаться от подписки." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Не удается прочитать URL аватары из '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Неверный тип изображения для '%s'" @@ -7506,35 +6102,27 @@ msgid "Site content license" msgstr "StatusNet лицензия" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Не удаётся одновить пользователя с подтверждённым электронным адресом." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "\"Подталкивание\" послано" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Ответить на эту запись" @@ -7543,54 +6131,11 @@ msgstr "Ответить на эту запись" msgid "Error saving notice." msgstr "Проблемы с сохранением записи." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Нет кода подтверждения." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7607,70 +6152,25 @@ msgid "Describe the group or topic" msgstr "Опиши группу при помощи 140 символов" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Опиши группу при помощи 140 символов" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Новая запись" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s добавил вашу запись в состав своих любимых" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " из" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7680,3 +6180,4 @@ msgstr "Не удаётся вернуть публичный поток." #, fuzzy msgid "Duplicate notice" msgstr "Удалить запись" + diff --git a/locale/statusnet.po b/locale/statusnet.po index 9b5a64eb4d..f79727fe87 100644 --- a/locale/statusnet.po +++ b/locale/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -6559,7 +6559,7 @@ msgstr "" msgid "Problem saving notice. Too long." msgstr "" -#: classes/User.php:319 classes/User.php:327 +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 035ad0f601..0e16dfd2c9 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -1,5 +1,6 @@ # Translation of StatusNet to Swedish # +# Author@translatewiki.net: Micke # -- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER @@ -8,14 +9,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:59:37+0000\n" +"PO-Revision-Date: 2009-11-06 12:24:30+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: out-statusnet\n" @@ -29,11 +29,8 @@ msgstr "Sök i strömmen efter \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"förutom det här, som är privat: lösenord, epostadress, IM-adress, " -"telefonnummer." +msgid " except this private data: password, email address, IM address, phone number." +msgstr "förutom det här, som är privat: lösenord, epostadress, IM-adress, telefonnummer." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -55,57 +52,8 @@ msgstr "%1$s har bjudit in dig till %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s har bjudit in dig till %2$s (%3$s).\n" -"\n" -"%2$s är en mikroblogg service som låter dig via sidan hålla direktkontakt " -"med människor du känner eller intresserar dig.\n" -"\n" -"Du kan även dela med dig utav nyheter om dig själv, dina tankar, eller ditt " -"liv online som känner igen dig. Det är också perfekt för att möta nya " -"personer som delar ditt intresse.\n" -"\n" -"%1$s sa:\n" -"\n" -"%4$s\n" -"\n" -"Du kan se %1$s's profilsida på %2$s här:\n" -"\n" -"%5$s\n" -"\n" -"Om du vill prova på denna service, klicka på länken nedan för att acceptera " -"denna inbjudan.\n" -"\n" -"%6$s\n" -"\n" -"Om inte, då kan du ignorera detta meddelande. Tack för att du tog dig\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s har bjudit in dig till %2$s (%3$s).\n\n%2$s är en mikroblogg service som låter dig via sidan hålla direktkontakt med människor du känner eller intresserar dig.\n\nDu kan även dela med dig utav nyheter om dig själv, dina tankar, eller ditt liv online som känner igen dig. Det är också perfekt för att möta nya personer som delar ditt intresse.\n\n%1$s sa:\n\n%4$s\n\nDu kan se %1$s's profilsida på %2$s här:\n\n%5$s\n\nOm du vill prova på denna service, klicka på länken nedan för att acceptera denna inbjudan.\n\n%6$s\n\nOm inte, då kan du ignorera detta meddelande. Tack för att du tog dig\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -115,18 +63,8 @@ msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s lyssnar nu på dina meddelanden i %1$s.\n" -"\n" -"\tHälsningar,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s lyssnar nu på dina meddelanden i %1$s.\n\n Hälsningar,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -202,22 +140,14 @@ msgstr "%s uppdateringar ifrån allihop!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Du kommer få ett meddelande med email inom kort med instruktioner hur du " -"bekräftar din emailadress)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Du kommer få ett meddelande med email inom kort med instruktioner hur du bekräftar din emailadress)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** är en mikroblogg service för dig ifrån [%%site.broughtby%%]" -"(%%site.broughtbyurl%%)" +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** är en mikroblogg service för dig ifrån [%%site.broughtby%%](%%site.broughtbyurl%%)" #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -240,9 +170,7 @@ msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 små bokstäver eller nummer, inga punkter eller mellanslag. Måste fyllas " -"i." +msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag. Måste fyllas i." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -263,31 +191,17 @@ msgstr "6 eller fler tecken. Måste fyllas i." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"En bekräftelsekod har skickats till den IM-adress som du angav. Du måste " -"godkänna att %s får skicka meddelanden till dig." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "En bekräftelsekod har skickats till den IM-adress som du angav. Du måste godkänna att %s får skicka meddelanden till dig." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"En bekräftelsekod har skickats ut till email adressen du fyllde i. " -"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " -"använder den." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "En bekräftelsekod har skickats ut till email adressen du fyllde i. Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du använder den." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"En bekräftelsekod har skickats ut till telefonnumret du fyllde i. " -"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " -"använder den." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "En bekräftelsekod har skickats ut till telefonnumret du fyllde i. Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du använder den." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -467,11 +381,8 @@ msgstr "Logga in automatiskt i framtiden; Ej för publika datorer!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Automatisk prenummeration på den som prenumererar på mig. (Bäst för icke " -"mänsklig användare) " +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Automatisk prenummeration på den som prenumererar på mig. (Bäst för icke mänsklig användare) " #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -490,21 +401,13 @@ msgstr "Användarbilden uppdaterad." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Väntar bekräftelse på denna adress. Kontrollera ditt Jabber/GTalk konto för " -"vidare instruktioner. (La du till %s i din vännerlista?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Väntar bekräftelse på denna adress. Kontrollera ditt Jabber/GTalk konto för vidare instruktioner. (La du till %s i din vännerlista?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Väntar bekräftelse på denna adress. Kontrollera din inbox (och spamlådan!) " -"efter meddelande om vidare instruktioner." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Väntar bekräftelse på denna adress. Kontrollera din inbox (och spamlådan!) efter meddelande om vidare instruktioner." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -512,9 +415,8 @@ msgid "Awaiting confirmation on this phone number." msgstr "Väntar bekräftelse på detta telefonnummer. " #: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy msgid "Before »" -msgstr "Tidigare »" +msgstr "Före" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 @@ -642,36 +544,8 @@ msgstr "Bekräftelsekoden kunde inte hittas." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Grattis, %s! Välkommen till %%%%site.name%%%%. Härifrån, kanske du vill...\n" -"\n" -"* Gå till [din profil](%s) och göra ditt första inlägg.\n" -"* Lägg till en [Jabber/GTalk adress](%%%%action.imsettings%%%%) så du kan " -"skicka inlägg med en IM klient.\n" -"* [Sök efter personer](%%%%action.peoplesearch%%%%) som du kanske känner " -"eller delar dina intressen. \n" -"* Uppdatera din [profil inställning](%%%%action.profilesettings%%%%) för att " -"berätta lite mer om dig själv för andra här. \n" -"* Läs igenom [online dok](%%%%doc.help%%%%) efter funktioner som du kanske " -"missat. \n" -"\n" -"Tack för att du registrerade dig och vi hoppas du kommer trivas med denna " -"service." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Grattis, %s! Välkommen till %%%%site.name%%%%. Härifrån, kanske du vill...\n\n* Gå till [din profil](%s) och göra ditt första inlägg.\n* Lägg till en [Jabber/GTalk adress](%%%%action.imsettings%%%%) så du kan skicka inlägg med en IM klient.\n* [Sök efter personer](%%%%action.peoplesearch%%%%) som du kanske känner eller delar dina intressen. \n* Uppdatera din [profil inställning](%%%%action.profilesettings%%%%) för att berätta lite mer om dig själv för andra här. \n* Läs igenom [online dok](%%%%doc.help%%%%) efter funktioner som du kanske missat. \n\nTack för att du registrerade dig och vi hoppas du kommer trivas med denna service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -1078,12 +952,8 @@ msgid "Find people on this site" msgstr "Sök personer på denna sida" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan " -"du ändrar dina inställningar." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan du ändrar dina inställningar." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1168,28 +1038,16 @@ msgstr "IM inställningar" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Om du redan har ett konto, logga in med ditt användarnamn och lösenord för " -"att koppla det till ditt OpenID" +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Om du redan har ett konto, logga in med ditt användarnamn och lösenord för att koppla det till ditt OpenID" #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Om du vill lägga till OpenID till ditt konto, fyll i fältet nedan och tryck " -"på \"Add\"" +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Om du vill lägga till OpenID till ditt konto, fyll i fältet nedan och tryck på \"Add\"" #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat " -"till den emailadress du sparat till ditt konto." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat till den emailadress du sparat till ditt konto." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1219,12 +1077,8 @@ msgstr "Felaktigt användarnamn eller lösenord." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Instruktioner om hur du återställer ditt lösenord har sänts till din e-" -"postadress " +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Instruktioner om hur du återställer ditt lösenord har sänts till din e-postadress " #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1320,14 +1174,8 @@ msgstr "Bjud in nya användare" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Det drivs med [StatusNet](http://status.net/) mikroblogging software, " -"version %s, tillgängligt under [GNU Affero General Public License](http://" -"www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Det drivs med [StatusNet](http://status.net/) mikroblogging software, version %s, tillgängligt under [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1337,12 +1185,8 @@ msgstr "Jabber ID används redan utav en annan användare." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber eller GTalk adress liknande \"användare@exempel.se\". Först se till " -"att lägga till %s i din vännerlista i IM klienten eller GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber eller GTalk adress liknande \"användare@exempel.se\". Först se till att lägga till %s i din vännerlista i IM klienten eller GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1409,14 +1253,8 @@ msgstr "Logga in med ett [OpenID](%%doc.openid%%) konto." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? " -"[Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%" -"action.openidlogin%%)." +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? [Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1461,13 +1299,8 @@ msgstr "Mikroblogg av %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Mobiloperatör för din telefon. Vet du nån operatör som kan taemot SMS över " -"email som inte finns med i listan, skicka ett email till oss och tala det " -"hit %s" +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Mobiloperatör för din telefon. Vet du nån operatör som kan taemot SMS över email som inte finns med i listan, skicka ett email till oss och tala det hit %s" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1563,8 +1396,7 @@ msgstr "Användarnamnet används redan, försök med ett annat." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." +msgstr "Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -2090,14 +1922,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, inga punkter eller mellanslag, med landskod" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Kontrollera dessa detajer noga så att du verkligen vet att du vill " -"prenumerera på denna användares inlägg. Om du inte frågade efter att " -"prenumerera på någons inlägg, klicka på \"Cancel\"" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Kontrollera dessa detajer noga så att du verkligen vet att du vill prenumerera på denna användares inlägg. Om du inte frågade efter att prenumerera på någons inlägg, klicka på \"Cancel\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2280,12 +2106,8 @@ msgid "Remove OpenID" msgstr "Ta bort OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Tar du bort din OpenID så gör du det omöjligt att logga in! Om du behöver ta " -"bort den, lägg till en annan OpenID först." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Tar du bort din OpenID så gör du det omöjligt att logga in! Om du behöver ta bort den, lägg till en annan OpenID först." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2381,21 +2203,13 @@ msgstr "Sök strömflöde" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Sök efter innehåll i inlägg på %%site.name%%. Skilj söktermerna åt med " -"mellanslag; dom måste vara minst tre tecken långa." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Sök efter innehåll i inlägg på %%site.name%%. Skilj söktermerna åt med mellanslag; dom måste vara minst tre tecken långa." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. " -"Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2430,19 +2244,13 @@ msgstr "Skicka inlägg till mig via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Skicka inlägg till mig via SMS; Jag är införstådd att min operatör kan " -"debitera mig." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Skicka inlägg till mig via SMS; Jag är införstådd att min operatör kan debitera mig." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Skicka svar till mig via Jabber/GTalk från personer som inte jag " -"prenumererar på." +msgstr "Skicka svar till mig via Jabber/GTalk från personer som inte jag prenumererar på." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2674,24 +2482,13 @@ msgstr "Adressen är borttagen." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla " -"med sidans instruktioner hur du bekräftar en prenumeration. Din " -"prenumerering token är:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla med sidans instruktioner hur du bekräftar en prenumeration. Din prenumerering token är:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med " -"sidans instruktioner hur du avvisar en prenumeration." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med sidans instruktioner hur du avvisar en prenumeration." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2717,35 +2514,22 @@ msgstr "Detta är personer och inlägg som du lyssnar på." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Dom personerna är redan registrerade användare och du blev nu automatiskt " -"prenumerant till dom:" +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Dom personerna är redan registrerade användare och du blev nu automatiskt prenumerant till dom:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Denna bekräftelsekod är för gammal. Du får starta om på nytt igen." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Detta formulär skall automatiskt skicka själv. Om den inte gör det, klicka " -"på skicka för att gå dit där du skapade ditt OpenID." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Detta formulär skall automatiskt skicka själv. Om den inte gör det, klicka på skicka för att gå dit där du skapade ditt OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Detta är första gången du loggade in till %s så vi måste koppla sitt OpenID " -"till ett lokalt konto. Du kan antingen skapa ett nytt konto eller med ett " -"existerande konto, om du har något." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Detta är första gången du loggade in till %s så vi måste koppla sitt OpenID till ett lokalt konto. Du kan antingen skapa ett nytt konto eller med ett existerande konto, om du har något." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2794,15 +2578,8 @@ msgstr "Du har inte valt tidszon" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"För att prenumerera så kan du [logga in](%%action.login%%) eller [registrera]" -"(%%action.register%%) ett nytt konto. Om du redan har ett konto på en " -"[kompatibel mikroblogg sida](%%doc.openmublog%%) fyll i din profils URL " -"nedan." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "För att prenumerera så kan du [logga in](%%action.login%%) eller [registrera](%%action.register%%) ett nytt konto. Om du redan har ett konto på en [kompatibel mikroblogg sida](%%doc.openmublog%%) fyll i din profils URL nedan." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2856,12 +2633,8 @@ msgid "Unknown version of OMB protocol." msgstr "Okänd version av OMB protokollet." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Om inget annat anges, innehåll på denna sida skyddas utav copyright ifrån " -"användarna och tillgängliga under" +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Om inget annat anges, innehåll på denna sida skyddas utav copyright ifrån användarna och tillgängliga under" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2922,16 +2695,8 @@ msgid "Upload" msgstr "Ladda upp" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Ladda upp en ny \"avatar\" (användarbild) här. Du kan inte göra ändringar i " -"bilden efter uppladdning, försök att se till att den är så fykantig som " -"möjligt. Den måste följa licensvillkoren, använd en bild som du äger och som " -"du vill dela med dig utav." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Ladda upp en ny \"avatar\" (användarbild) här. Du kan inte göra ändringar i bilden efter uppladdning, försök att se till att den är så fykantig som möjligt. Den måste följa licensvillkoren, använd en bild som du äger och som du vill dela med dig utav." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2939,19 +2704,15 @@ msgstr "Ladda upp en ny profilbild" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Använd detta formulär för att bjuda in dina vänner och kollegor till denna " -"sida." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Använd detta formulär för att bjuda in dina vänner och kollegor till denna sida." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Används endast för uppdateringar, annonsering och återställning av lösenord" +msgstr "Används endast för uppdateringar, annonsering och återställning av lösenord" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -3037,12 +2798,8 @@ msgid "You already have this OpenID!" msgstr "Du handhar redan denna OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " -"ångra dig." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte ångra dig." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3074,29 +2831,19 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan ta emot SMS meddelande via email från %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Du kan ta bort en OpenID ifrån ditt konto genom att klicka på knappen " -"\"Remove\"" +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Du kan ta bort en OpenID ifrån ditt konto genom att klicka på knappen \"Remove\"" #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Du kan skicka och ta emot inlägg genom Jabber/GTalk [instant messages](%%doc." -"im%%). Konfigurera din adress och inställningar nedan. " +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Du kan skicka och ta emot inlägg genom Jabber/GTalk [instant messages](%%doc.im%%). Konfigurera din adress och inställningar nedan. " #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Du kan uppdatera din personliga profil här så personer får veta mer om dig." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Du kan uppdatera din personliga profil här så personer får veta mer om dig." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3120,24 +2867,8 @@ msgstr "Du skickade inte oss den profilen" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Du har en ny adress %1$s.\n" -"\n" -"Skicka email till %2$s för att göra ett nytt inlägg.\n" -"\n" -"Mer information får du på %3$s.\n" -"\n" -"Mvh,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Du har en ny adress %1$s.\n\nSkicka email till %2$s för att göra ett nytt inlägg.\n\nMer information får du på %3$s.\n\nMvh,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3153,12 +2884,8 @@ msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"du kommer bli meddelad när någon du bjudit in accepterar inbjudan och " -"registrerar sig. Tack för att du hjälper oss växa!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "du kommer bli meddelad när någon du bjudit in accepterar inbjudan och registrerar sig. Tack för att du hjälper oss växa!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3176,12 +2903,8 @@ msgstr "Ditt användarnamn på denna server eller registrerad epost adress." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. " -"Ställ in ditt OpenID konto härifrån." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. Ställ in ditt OpenID konto härifrån." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3267,9 +2990,8 @@ msgid "unsupported file type" msgstr "okänd fil typ" #: ../lib/util.php:1309 lib/util.php:1443 -#, fuzzy msgid "« After" -msgstr "« Nyare" +msgstr "Efter" #: actions/deletenotice.php:74 actions/disfavor.php:43 #: actions/emailsettings.php:127 actions/favor.php:45 @@ -3378,12 +3100,8 @@ msgstr "Detta är din inbox som innehåller dina privata meddelanden." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s har bjudit in dig till %2$s(%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s har bjudit in dig till %2$s(%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3425,8 +3143,7 @@ msgstr "Du kan inte skicka meddelande till den användaren." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Skicka inte meddelande till dig själv, viska lite tyst istället." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3477,10 +3194,8 @@ msgstr "Detta är din outbox som innehåller meddelanden som du skickat." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3531,11 +3246,8 @@ msgstr "Lösenordet måste vara minst 6 tecken." #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Gratulerar, %s! Välkommen till %%%%site.name%%%%. Härifrån vill du kanske..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Gratulerar, %s! Välkommen till %%%%site.name%%%%. Härifrån vill du kanske..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3631,8 +3343,7 @@ msgstr "Mottagaren kunde inte hittas." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" -"Kan inte skicka direktmeddelanden till användare som inte är dina vänner." +msgstr "Kan inte skicka direktmeddelanden till användare som inte är dina vänner." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3659,19 +3370,12 @@ msgstr "%s la till ditt inlägg som favorit" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s la just in ditt inlägg ifrån %2$s som en av deras favorit.\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s la just in ditt inlägg ifrån %2$s som en av deras favorit.\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " -"Twitter," +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till Twitter," #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3718,12 +3422,8 @@ msgstr "Prenumerera på mina Twitter vänner här." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Användarnamn får bara innehålla nummer, stora och små bokstäver, och " -"underscore(_). 15 tecken max." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Användarnamn får bara innehålla nummer, stora och små bokstäver, och underscore(_). 15 tecken max." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3775,53 +3475,19 @@ msgstr "Kunde inte spara Twitter inställningar." #: actions/twittersettings.php:245 actions/twittersettings.php:461 #: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." -msgstr "" +msgstr "Twitterinställningar sparade." #: actions/userauthorization.php:84 actions/userauthorization.php:86 msgid "Please check these details to make sure " -msgstr "" +msgstr "Vänligen kontrollera dessa uppgifter för att försäkra dig om " #: actions/userauthorization.php:324 actions/userauthorization.php:340 msgid "The subscription has been authorized, but no " -msgstr "" +msgstr "Abonnemanget har godkänts, men ingen " #: actions/userauthorization.php:334 actions/userauthorization.php:351 msgid "The subscription has been rejected, but no " -msgstr "" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" +msgstr "Abonnemanget har nekats, men ingen " #: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 #: lib/command.php:182 lib/command.php:315 @@ -3853,183 +3519,16 @@ msgstr "Hemsida: %s" msgid "About: %s" msgstr "Om: %s" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" - #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s med vänner" #: actions/avatarsettings.php:76 -#, fuzzy msgid "You can upload your personal avatar." -msgstr "Du kan uppdatera din personliga profil här" +msgstr "Du kan ladda upp din profilbild." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 @@ -4039,28 +3538,6 @@ msgstr "Du kan uppdatera din personliga profil här" msgid "Avatar settings" msgstr "Twitter inställningar" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - #: actions/avatarsettings.php:248 actions/deletenotice.php:133 #: actions/emailsettings.php:224 actions/grouplogo.php:307 #: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 @@ -4074,17 +3551,6 @@ msgstr "" msgid "There was a problem with your session token. " msgstr "Det var något problem med din session. Försök igen, tack." -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -4130,39 +3596,21 @@ msgstr "Är du säker på att du vill tabort detta inlägg?" msgid "You have already blocked this user." msgstr "Du prenumererar redan på dessa användare:" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format, fuzzy msgid "The address \"%s\" has been " msgstr "Adressen är borttagen." #: actions/deletenotice.php:73 #, fuzzy msgid "You are about to permanently delete a notice. " -msgstr "" -"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " -"ångra dig." +msgstr "Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte ångra dig." #: actions/disfavor.php:94 #, fuzzy msgid "Add to favorites" msgstr "Feed för %s favoriter" -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 #: actions/grouplogo.php:70 actions/newgroup.php:65 @@ -4203,16 +3651,10 @@ msgstr "Ingen sådan användare" msgid "You must be an admin to edit the group" msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "" -"Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." +msgstr "Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -4231,7 +3673,7 @@ msgid "Options saved." msgstr "Inställningar sparade." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "Väntar bekräftelse på detta telefonnummer. " @@ -4245,11 +3687,6 @@ msgstr "Ny emailadress för att skicka till %s" msgid "Send me email when someone " msgstr "Skicka mig ett email när någon sänder ett privat meddelande." -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -4258,28 +3695,7 @@ msgstr "Den emailadressen tillhör redan en annan användare." #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"En bekräftelsekod har skickats till den IM-adress som du angav. Du måste " -"godkänna att %s får skicka meddelanden till dig." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" +msgstr "En bekräftelsekod har skickats till den IM-adress som du angav. Du måste godkänna att %s får skicka meddelanden till dig." #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -4287,13 +3703,6 @@ msgstr "" msgid "No notice content!" msgstr "Inget innehåll!" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -4310,11 +3719,6 @@ msgstr "« Nyare" msgid "Before" msgstr "Tidigare »" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - #: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" @@ -4322,28 +3726,16 @@ msgstr "Inbjudan(ar) är skickade till följande personer:" #: actions/facebookinvite.php:96 actions/facebookinvite.php:102 #: actions/facebookinvite.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You have been invited to %s" msgstr "Du är identifierad. Skriv in" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "Flöden för $s vänner" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." @@ -4374,15 +3766,6 @@ msgstr "Skicka lokala \"@\" svar till Twitter." msgid "Prefix" msgstr "Profil" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" @@ -4402,7 +3785,7 @@ msgid "Popular notices" msgstr "Inget sådant inlägg." #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" msgstr "Inget sådant inlägg." @@ -4411,40 +3794,6 @@ msgstr "Inget sådant inlägg." msgid "The most popular notices on the site right now." msgstr "Visar dom populäraste taggarna ifrån den senaste veckan." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -4457,36 +3806,6 @@ msgstr "Användarbilden uppdaterad." msgid "Failed updating logo." msgstr "Uppdatering av profilbild misslyckades." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -4494,11 +3813,9 @@ msgid "Create a new group" msgstr "Skapa ett nytt konto" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy @@ -4510,18 +3827,13 @@ msgstr "Sökning personer" msgid "You can send and receive notices through " msgstr "Du kan inte skicka meddelande till den användaren." -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Skicka inlägg till mig via Jabber/GTalk." #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Ingen bekräftelsekod." @@ -4536,19 +3848,15 @@ msgid "You are already a member of that group" msgstr "Du prenumererar redan på dessa användare:" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." #: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s joined group %s" msgstr "%s / Favoriter från %s" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - #: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." @@ -4580,33 +3888,10 @@ msgstr "Kunde inte uppdatera användarens inställningar." #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" - #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -4635,25 +3920,6 @@ msgstr "Du kan inte skicka meddelande till den användaren." msgid "Notice posted" msgstr "Inlägg" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" - #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -4669,24 +3935,11 @@ msgstr "Ta bort OpenID" msgid "Other Settings" msgstr "Twitter inställningar" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "Sök" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" - #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -4705,42 +3958,24 @@ msgid "Password change" msgstr "Lösenord är sparat." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "Ingen giltig emailadress" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Okänd profil" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - #: actions/profilesettings.php:144 #, fuzzy msgid "Automatically subscribe to whoever " -msgstr "" -"Automatisk prenummeration på den som prenumererar på mig. (Bäst för icke " -"mänsklig användare) " +msgstr "Automatisk prenummeration på den som prenumererar på mig. (Bäst för icke mänsklig användare) " #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" msgstr "Ogiltig hemsideadress '%s'" @@ -4752,7 +3987,7 @@ msgstr "Kunde inte spara profil." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "Publik tidslinje" @@ -4762,42 +3997,16 @@ msgstr "Publik tidslinje" msgid "Could not retrieve public stream." msgstr "Kunde inte ta emot favoritinläggen." -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Publik ström" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Du kan inte registrera dig om du inte godkänner licensvillkor." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -4806,8 +4015,7 @@ msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" #: actions/register.php:382 actions/register.php:386 #, fuzzy msgid "Used only for updates, announcements, " -msgstr "" -"Används endast för uppdateringar, annonsering och återställning av lösenord" +msgstr "Används endast för uppdateringar, annonsering och återställning av lösenord" #: actions/register.php:398 #, fuzzy @@ -4827,63 +4035,35 @@ msgstr "Var du håller till, såsom \"Stad, Län, Land\"" #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "" -"förutom det här, som är privat: lösenord, epostadress, IM-adress, " -"telefonnummer." +msgstr "förutom det här, som är privat: lösenord, epostadress, IM-adress, telefonnummer." #: actions/register.php:471 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" -"Gratulerar, %s! Välkommen till %%%%site.name%%%%. Härifrån vill du kanske..." +msgstr "Gratulerar, %s! Välkommen till %%%%site.name%%%%. Härifrån vill du kanske..." #: actions/register.php:495 #, fuzzy msgid "(You should receive a message by email " msgstr "(Du kommer inom kort få ett email med" -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" - #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "Svarat på %s" #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s favorite notices, page %d" msgstr "%s favoriter" -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Inget sådant inlägg." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4896,13 +4076,8 @@ msgstr "" msgid "Note" msgstr "Inlägg" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "Inlägg flöde för %s" @@ -4914,34 +4089,13 @@ msgstr "Inlägg flöde för %s" msgid "Members" msgstr "Medlem sedan" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient " msgstr "Endast den som skickat och mottagaren kan läsa detta meddelande." #: actions/showstream.php:73 actions/showstream.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s, page %d" msgstr "Inbox för %s - sida %d" @@ -4957,12 +4111,6 @@ msgstr "Profil" msgid "User profile" msgstr "Användaren har ingen profil." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy @@ -4986,17 +4134,6 @@ msgstr "Nytt meddelande" msgid "All subscribers" msgstr "Prenumerant" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -5038,32 +4175,27 @@ msgid "Subscribed" msgstr "Prenumerera" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "Prenumerant" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Dessa personer är dom som lyssnar på %s inlägg." #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "Dessa personer är dom som lyssnar på %s inlägg." #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "Alla prenumerationer" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "Alla prenumerationer" @@ -5073,7 +4205,7 @@ msgid "These are the people whose notices " msgstr "Detta är personer och inlägg som %s lyssnar på." #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "Dessa personer är dom som lyssnar på %s inlägg." @@ -5084,15 +4216,10 @@ msgid "Jabber" msgstr "Inget Jabber ID." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "Inlägg taggade med %s" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -5104,7 +4231,7 @@ msgid "No id argument." msgstr "Inget sådant dokument." #: actions/tagother.php:65 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Tag %s" msgstr "Taggar" @@ -5113,51 +4240,26 @@ msgstr "Taggar" msgid "Tag user" msgstr "Taggar" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - #: actions/tagother.php:164 #, fuzzy msgid "There was a problem with your session token." msgstr "Det var något problem med din session. Försök igen, tack." -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Kunde inte spara informationen om användarbild" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "Inget sådant meddelande." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" msgstr "Inlägg taggade med %s" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" - #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy @@ -5167,9 +4269,7 @@ msgstr "Hittades inte" #: actions/twittersettings.php:71 #, fuzzy msgid "Add your Twitter account to automatically send " -msgstr "" -"Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " -"Twitter," +msgstr "Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till Twitter," #: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy @@ -5187,12 +4287,8 @@ msgstr "Twitter lösenord" msgid "Twitter Friends" msgstr "Twitter inställningar" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." @@ -5216,70 +4312,22 @@ msgstr "Ingen status hittad med det ID" msgid "Unsubscribed" msgstr "Lämnar pren." -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" - #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Det var ett problem när inlägget sparades." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Uppdatering av profilbild misslyckades." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "" - #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s - %s" msgstr "%s(%s)" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" - #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" @@ -5290,18 +4338,6 @@ msgstr "Om" msgid "Change your email, avatar, password, profile" msgstr "Ändra ditt lösenord" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -5322,10 +4358,6 @@ msgstr "Hjälp" msgid "Site notice" msgstr "Nytt inlägg" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5336,40 +4368,17 @@ msgstr "Nytt inlägg" msgid "Secondary site navigation" msgstr "Prenumerationer" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Ingen sådan användare" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "" - #: lib/disfavorform.php:114 lib/disfavorform.php:140 #, fuzzy msgid "Disfavor this notice" msgstr "%s favoriter" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -5388,35 +4397,17 @@ msgstr "Publik" msgid "Favor this notice" msgstr "%s favoriter" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - #: lib/galleryaction.php:121 #, fuzzy msgid "Filter tags" msgstr "Feed för taggar %s" -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" - #: lib/galleryaction.php:137 lib/galleryaction.php:138 #: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "Taggar" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -5436,46 +4427,14 @@ msgstr "Berätta om dig själv och dina intressen inom 140 tecken" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Var du håller till, såsom \"Stad, Län, Land\"" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" - #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logga ut" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" - #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -5501,51 +4460,28 @@ msgstr "Logga in med ditt användarnamn och lösenord." msgid "Sign up for a new account" msgstr "Skapa ett nytt konto" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" - #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." #: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Location: %s\n" msgstr "Plats: %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Homepage: %s\n" msgstr "Hemsida: %s\n" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - #: lib/mail.php:461 lib/mail.php:462 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You've been nudged by %s" msgstr "Du är identifierad. Skriv in" -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" msgstr "%1$s la just in ditt inlägg ifrån %2$s som en av deras favorit." @@ -5602,47 +4538,21 @@ msgstr "Ta bort inlägg" msgid "Delete" msgstr "Ta bort" -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - #: lib/nudgeform.php:128 #, fuzzy msgid "Send a nudge to this user" msgstr "Du kan inte skicka meddelande till den användaren." -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "" - #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Publik" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "" - #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy msgid "Recent tags" msgstr "Tidigare taggar" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -5658,32 +4568,21 @@ msgstr "Inlägg" msgid "Find groups on this site" msgstr "Sök personer på denna sida" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" - #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People %s subscribes to" msgstr "Fjärrprenumerera" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "Fjärrprenumerera" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite friends and colleagues to join you on %s" -msgstr "" -"Använd detta formulär för att bjuda in dina vänner och kollegor till denna " -"sida." +msgstr "Använd detta formulär för att bjuda in dina vänner och kollegor till denna sida." #: lib/subs.php:53 lib/subs.php:52 #, fuzzy @@ -5701,36 +4600,24 @@ msgstr "Prenumerera på mina Twitter vänner här." msgid "None" msgstr "Nej" -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "" - #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Ingen sådan användare" -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "" - #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Flöden för $s vänner" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Flöden för $s vänner" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Flöden för $s vänner" @@ -5740,7 +4627,7 @@ msgid "You and friends" msgstr "%s med vänner" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Du kan uppdatera din personliga profil här" @@ -5749,21 +4636,10 @@ msgstr "Du kan uppdatera din personliga profil här" msgid "Avatar deleted." msgstr "Användarbilden uppdaterad." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " -"ångra dig." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte ångra dig." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5775,76 +4651,25 @@ msgstr "Det var något problem med din session. Försök igen, tack." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Skicka mig ett email när någon sänder ett privat meddelande." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Mikroblogg av %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. " -"Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "Sök i strömmen efter \"%s\"" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan " -"du ändrar dina inställningar." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan du ändrar dina inställningar." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5861,35 +4686,10 @@ msgstr "Publik ström" msgid "Public Stream Feed (Atom)" msgstr "Publik ström" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"förutom det här, som är privat: lösenord, epostadress, IM-adress, " -"telefonnummer." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "förutom det här, som är privat: lösenord, epostadress, IM-adress, telefonnummer." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5897,44 +4697,33 @@ msgstr "" msgid "Created" msgstr "Skapa" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Inget sådant inlägg." #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Profil" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Inlägg flöde för %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Inlägg flöde för %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Inlägg flöde för %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Outbox för %s" @@ -5950,48 +4739,10 @@ msgstr "Användarbild" msgid "Edit profile settings" msgstr "Profil inställningar" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"En bekräftelsekod har skickats ut till telefonnumret du fyllde i. " -"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " -"använder den." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "En bekräftelsekod har skickats ut till telefonnumret du fyllde i. Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du använder den." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -6008,259 +4759,34 @@ msgstr "Ingen sådan användare" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " -"Twitter," +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till Twitter," #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Kontrollera dessa detajer noga så att du verkligen vet att du vill " -"prenumerera på denna användares inlägg. Om du inte frågade efter att " -"prenumerera på någons inlägg, klicka på \"Cancel\"" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Kontrollera dessa detajer noga så att du verkligen vet att du vill prenumerera på denna användares inlägg. Om du inte frågade efter att prenumerera på någons inlägg, klicka på \"Cancel\"" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Om du redan har ett konto, logga in med ditt användarnamn och lösenord för " -"att koppla det till ditt OpenID" - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Om du redan har ett konto, logga in med ditt användarnamn och lösenord för att koppla det till ditt OpenID" #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s lyssnar nu på dina meddelanden i %1$s.\n" -"\n" -"\tHälsningar,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s lyssnar nu på dina meddelanden i %1$s.\n\n Hälsningar,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Sök" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6277,19 +4803,15 @@ msgid "Block this user from this group" msgstr "Ingen sådan användare" #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Användaren har ingen profil." #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s med vänner" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -6305,56 +4827,26 @@ msgstr "Bekräftelsekod" msgid "Do not delete this notice" msgstr "Kan inte ta bort detta inlägg." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Ogiltig hemsideadress '%s'" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Användarnamnet används redan, försök med ett annat." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Kunde inte skapa favorit." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6365,14 +4857,6 @@ msgstr "Nytt inlägg" msgid "No notice" msgstr "Nytt inlägg" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6384,10 +4868,6 @@ msgstr "Det är inget giltigt användarnamn." msgid "No group specified." msgstr "Ingen mottagare tillagd." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6404,33 +4884,11 @@ msgstr "Du skickade inte oss den profilen" msgid "Block user from group" msgstr "Ingen sådan användare" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6458,234 +4916,41 @@ msgstr "Inställningar sparade." msgid "Make user an admin of the group" msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Inget resultat" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Användaren har ingen profil." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Nytt meddelande" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Kunde inte spara profil." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. " -"Ställ in ditt OpenID konto härifrån." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. Ställ in ditt OpenID konto härifrån." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profil inställningar" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat " -"till den emailadress du sparat till ditt konto." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat till den emailadress du sparat till ditt konto." #: actions/recoverpassword.php:158 #, fuzzy @@ -6707,172 +4972,54 @@ msgstr "Fel uppstog med bekräftelsekoden." msgid "Subscribe to a remote user" msgstr "Prenumerera på mina Twitter vänner här." -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "%s favoriter" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Inlägg flöde för %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Inlägg flöde för %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Inlägg flöde för %s" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Ingen sådan användare" #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Inlägg taggade med %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Inlägg flöde för %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Inlägg flöde för %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Inlägg flöde för %s" @@ -6903,24 +5050,16 @@ msgid "Could not find target user." msgstr "Kunde inte få fram status." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Uppdateringar med svar till %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -6931,127 +5070,41 @@ msgstr "Alla prenumerationer" msgid "Profile design" msgstr "Profil inställningar" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Du skickade inte oss den profilen" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Det var ett problem när inlägget sparades." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Meddelande till %1$s på %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Användaren har ingen profil." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profil" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Ladda upp" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Ändra ditt lösenord" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -7067,161 +5120,31 @@ msgstr "Sök" msgid "Links" msgstr "Logga in" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Ingen sådan användare" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Ingen sådan användare" -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "Inget innehåll!" -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "Sök" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "Hemsidan har ingen giltig URL" -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7229,12 +5152,12 @@ msgid "No such page" msgstr "Inget sådant meddelande." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Direktmeddelande till %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Det är för långt. Max är 140 tecken. " @@ -7243,12 +5166,8 @@ msgstr "Det är för långt. Max är 140 tecken. " msgid "Could not unfollow user: User not found." msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Biografin är för lång (max 140 tecken)" @@ -7258,7 +5177,7 @@ msgid "You are already a member of that group." msgstr "Du prenumererar redan på dessa användare:" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." @@ -7268,60 +5187,38 @@ msgid "You are not a member of this group." msgstr "Du skickade inte oss den profilen" #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "%s / Favoriter från %s" -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Sök personer på denna sida" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "För långt. Maximalt 140 tecken" -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "Bildfilens format stödjs inte." -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Biografin är för lång (max 140 tecken)" #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" @@ -7356,7 +5253,7 @@ msgid "Cannot read file." msgstr "Inget sådant inlägg." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" @@ -7366,40 +5263,17 @@ msgid "IM is not available." msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? " -"[Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%" -"action.openidlogin%%)." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? [Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%action.openidlogin%%)." #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Alla uppdateringar som matchar söksträngen \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" @@ -7409,76 +5283,47 @@ msgid "Describe yourself and your interests" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Biografin är för lång (max 140 tecken)" -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Det är ingen giltig profil URL (ingen YADIS angiven)." -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Kunde inte få en förfrågan token." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Inlägg flöde för %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Meddelande till %1$s på %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed för %s favoriter" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed för %s favoriter" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Feed för %s favoriter" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Inlägg flöde för %s" @@ -7493,79 +5338,32 @@ msgid "SMS is not available." msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Inlägg flöde för %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Kontrollera dessa detajer noga så att du verkligen vet att du vill " -"prenumerera på denna användares inlägg. Om du inte frågade efter att " -"prenumerera på någons inlägg, klicka på \"Cancel\"" +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Kontrollera dessa detajer noga så att du verkligen vet att du vill prenumerera på denna användares inlägg. Om du inte frågade efter att prenumerera på någons inlägg, klicka på \"Cancel\"" #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla " -"med sidans instruktioner hur du bekräftar en prenumeration. Din " -"prenumerering token är:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla med sidans instruktioner hur du bekräftar en prenumeration. Din prenumerering token är:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med " -"sidans instruktioner hur du avvisar en prenumeration." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med sidans instruktioner hur du avvisar en prenumeration." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Kan inte läsa användarbild URL '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Fel filtyp för bild '%s'" @@ -7580,35 +5378,12 @@ msgid "Site content license" msgstr "Sök innehåll i inlägg" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Kunde inte uppdatera användaren med bekräftad emailadress." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Svara på detta inlägg" @@ -7617,58 +5392,11 @@ msgstr "Svara på detta inlägg" msgid "Error saving notice." msgstr "Det var ett problem när inlägget sparades." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Ingen bekräftelsekod." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - #: lib/galleryaction.php:139 #, fuzzy msgid "Select tag to filter" @@ -7680,70 +5408,25 @@ msgid "Describe the group or topic" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Inlägg flöde för %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s la till ditt inlägg som favorit" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "från" -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7753,3 +5436,4 @@ msgstr "Kunde inte tabort favoriten." #, fuzzy msgid "Duplicate notice" msgstr "Tabort inlägg" + diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 66560c6111..51b04018bc 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -16,14 +16,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:59:43+0000\n" +"PO-Revision-Date: 2009-11-06 12:24:32+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: out-statusnet\n" @@ -37,8 +36,7 @@ msgstr "\"%s\"కై అన్వేషణ వాహిని" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." +msgid " except this private data: password, email address, IM address, phone number." msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." #: ../actions/showstream.php:400 ../lib/stream.php:109 @@ -46,81 +44,6 @@ msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సం msgid " from " msgstr " నుండి " -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" - -#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 -#: lib/mail.php:236 lib/mail.php:235 -#, php-format -msgid "%1$s is now listening to your notices on %2$s." -msgstr "" - -#: ../lib/mail.php:126 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" - -#: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 -#: actions/shownotice.php:180 -#, php-format -msgid "%1$s's status on %2$s" -msgstr "" - #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 #: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 @@ -155,7 +78,7 @@ msgstr "%s మరియు మిత్రులు" #: actions/publicrss.php:103 #, php-format msgid "%s public timeline" -msgstr "" +msgstr "%s బహిరంగ కాలరేఖ" #: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format @@ -171,30 +94,11 @@ msgstr "%s స్థితి" msgid "%s timeline" msgstr "%s కాలరేఖ" -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" - #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 -#, fuzzy, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"[%%site.broughtby%%](%%site.broughtbyurl%%) వారు అందిస్తున్న ఈ **%%site.name%%** " -"అనేది మైక్రో బ్లాగింగు సదుపాయం." +#, php-format, fuzzy +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "[%%site.broughtby%%](%%site.broughtbyurl%%) వారు అందిస్తున్న ఈ **%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -202,10 +106,6 @@ msgstr "" msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." -#: ../lib/util.php:274 lib/util.php:290 -msgid ". Contributors should be attributed by full name or nickname." -msgstr "" - #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 @@ -214,11 +114,6 @@ msgstr "" msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" - #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" @@ -233,105 +128,7 @@ msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షర #: ../actions/register.php:154 actions/register.php:168 #: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." -msgstr "" - -#: ../actions/imsettings.php:197 actions/imsettings.php:205 -#: actions/imsettings.php:321 actions/imsettings.php:327 -#, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "" +msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు. తప్పనిసరి." #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 @@ -362,11 +159,6 @@ msgstr "చేర్చు" msgid "Add OpenID" msgstr "ఓపెన్ఐడీని చేర్చు" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "" - #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 @@ -376,11 +168,6 @@ msgstr "" msgid "Address" msgstr "చిరునామా" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "" - #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" @@ -418,12 +205,6 @@ msgstr "ఇప్పటికే చేరారు!" msgid "Are you sure you want to delete this notice?" msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?" -#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 actions/userauthorization.php:76 -#: actions/userauthorization.php:105 -msgid "Authorize subscription" -msgstr "" - #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 #: actions/register.php:416 actions/register.php:463 actions/login.php:226 @@ -431,13 +212,6 @@ msgstr "" msgid "Automatically login in the future; not for shared computers!" msgstr "భవిష్యత్తులో ఆటోమెటిగ్గా లోనికి ప్రవేశించు; బయటి కంప్యూర్ల కొరకు కాదు!" -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" - #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 @@ -452,28 +226,7 @@ msgstr "అవతారం" msgid "Avatar updated." msgstr "అవతారాన్ని తాజాకరించాం." -#: ../actions/imsettings.php:55 actions/imsettings.php:56 -#: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "" - #: ../lib/util.php:1318 lib/util.php:1452 -#, fuzzy msgid "Before »" msgstr "ఇంతక్రితం »" @@ -499,12 +252,6 @@ msgstr "స్వపరిచయం చాలా పెద్దగా ఉంద msgid "Can't delete this notice." msgstr "ఈ నోటీసుని తొలగించలేము." -#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 actions/updateprofile.php:125 -#, php-format -msgid "Can't read avatar URL '%s'" -msgstr "" - #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 @@ -522,47 +269,16 @@ msgstr "కొత్త సంకేతపదాన్ని భద్రపర msgid "Cancel" msgstr "రద్దుచేయి" -#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 -#: lib/openid.php:133 -msgid "Cannot instantiate OpenID consumer object." -msgstr "" - -#: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 actions/imsettings.php:292 -msgid "Cannot normalize that Jabber ID" -msgstr "" - -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "" - #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "మార్చు" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" - #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "సంకేతపదం మార్చుకోండి" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "" - #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 #: actions/profilesettings.php:182 actions/recoverpassword.php:187 @@ -590,36 +306,11 @@ msgstr "చిరునామాని నిర్ధారించు" msgid "Confirmation cancelled." msgstr "నిర్ధారణ రద్దయింది." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "" - #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -643,27 +334,6 @@ msgstr "సంప్రదించు" msgid "Could not create OpenID form: %s" msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "" - -#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 -#: lib/openid.php:172 -#, php-format -msgid "Could not redirect to server: %s" -msgstr "" - #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 #: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" @@ -674,24 +344,6 @@ msgstr "అవతారపు సమాచారాన్ని భద్రప msgid "Could not save new profile info" msgstr "కొత్త ప్రొఫైలు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "" - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" - -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "" - #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 #: actions/confirmaddress.php:84 actions/emailsettings.php:252 @@ -707,16 +359,6 @@ msgstr "ఈమెయిల్ నిర్ధారణని తొలగిం msgid "Couldn't delete subscription." msgstr "చందాని తొలగించలేకపోయాం." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "" - #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 @@ -727,12 +369,6 @@ msgstr "" msgid "Couldn't insert confirmation code." msgstr "నిర్ధారణ సంకేతాన్ని చేర్చలేకపోయాం." -#: ../actions/finishremotesubscribe.php:180 -#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 -#: lib/oauthstore.php:487 -msgid "Couldn't insert new subscription." -msgstr "" - #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 @@ -740,22 +376,6 @@ msgstr "" msgid "Couldn't save profile." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "" - #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -793,48 +413,15 @@ msgstr "ఈ పేరుతో కొత్త వాడుకరిని స msgid "Create new account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" -#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 -msgid "Creating new account for OpenID that already has a user." -msgstr "" - #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా" -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "" - #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "ప్రస్తుతం" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" - -#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 -#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 -#, php-format -msgid "DB error inserting reply: %s" -msgstr "" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" - #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -875,27 +462,12 @@ msgstr "ఈమెయిల్ చిరునామా నిర్ధారణ" msgid "Email address, like \"UserName@example.org\"" msgstr "ఈమెయిల్ చిరునామా, \"username@example.org\" వలె" -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "" - #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "పేరు లేదా ఈమెయిల్ చిరునామా ఇవ్వండి." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "" - #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 #: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 #: actions/finishopenidlogin.php:325 @@ -953,17 +525,6 @@ msgstr "వాడుకరిని భద్రపరచడంలో పొర msgid "Error saving user; invalid." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." -#: ../actions/login.php:47 ../actions/login.php:73 -#: ../actions/recoverpassword.php:307 ../actions/register.php:98 -#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 -#: actions/register.php:108 actions/login.php:112 actions/login.php:138 -#: actions/recoverpassword.php:354 actions/register.php:198 -#: actions/login.php:120 actions/recoverpassword.php:372 -#: actions/register.php:235 actions/login.php:122 -#: actions/recoverpassword.php:375 actions/register.php:242 -msgid "Error setting user." -msgstr "" - #: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 #: actions/finishaddopenid.php:131 msgid "Error updating profile" @@ -1010,28 +571,9 @@ msgstr "%s యొక్క మిత్రుల ఫీడు" msgid "Feed for replies to %s" msgstr "%sకి వచ్చిన స్పందనల ఫీడు" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1069,9 +611,8 @@ msgstr "సహాయం" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 #: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 #: lib/action.php:417 lib/action.php:430 -#, fuzzy msgid "Home" -msgstr "వాకిలి" +msgstr "ముంగిలి" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 @@ -1095,17 +636,6 @@ msgstr "హోమ్ పేజీ" msgid "Homepage is not a valid URL." msgstr "హోమ్ పేజీ URL సరైనది కాదు." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" - #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -1118,38 +648,8 @@ msgstr "IM అమరికలు" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి " -"జతచేసుకోండి." - -#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి జతచేసుకోండి." #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 @@ -1165,9 +665,7 @@ msgstr "వాడుకరిపేరు లేదా సంకేతపదం #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." msgstr "మీ సంకేతపదాన్ని తిరిగి పొందడానికై అవసరమైన సూచనలని మీ ఖాతాతో నమోదైన ఈమెయిల్ చిరునామాకి పంపించాం." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 @@ -1176,12 +674,6 @@ msgstr "మీ సంకేతపదాన్ని తిరిగి పొం msgid "Invalid avatar URL '%s'" msgstr "'%s' అనే అవతారపు URL తప్పు" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "" - #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format @@ -1220,11 +712,6 @@ msgstr "ప్రొపైల్ URL '%s' తప్పు." msgid "Invalid profile URL (bad format)" msgstr "ప్రొపైల్ URL తప్పు (చెడు ఫార్మాట్)" -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "" - #: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." @@ -1240,61 +727,23 @@ msgstr "తప్పుడు పరిమాణం." msgid "Invalid username or password." msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 #: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 #: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "ఆహ్వానించు" -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" - #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID ఇప్పటికే వేరొకరికి ఉంది." -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" - #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 #: actions/profilesettings.php:144 msgid "Language" msgstr "భాష" -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" - #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 #: actions/profilesettings.php:117 actions/register.php:408 @@ -1346,43 +795,17 @@ msgstr "ప్రవేశించండి" msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "[ఓపెన్ఐడీ](%%doc.openid%%) ఖాతాతో ప్రవేశించండి." -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" - #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "నిష్క్రమించు" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "మీ సంకేతపదం మర్చిపోయారా?" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -1390,45 +813,10 @@ msgstr "సభ్యులైన తేదీ" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 #: actions/userrss.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 -msgid "My text and files are available under " -msgstr "" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -1482,66 +870,21 @@ msgstr "పేరు" msgid "Nickname already in use. Try another one." msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." -#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 -#: ../actions/register.php:67 ../actions/updateprofile.php:77 -#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 -#: actions/register.php:74 actions/updateprofile.php:78 -#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 actions/editgroup.php:179 -#: actions/newgroup.php:130 actions/register.php:156 -#: actions/updateprofile.php:83 actions/editgroup.php:181 -#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 -#: actions/profilesettings.php:193 actions/register.php:193 -#: actions/apigroupcreate.php:212 actions/editgroup.php:182 -#: actions/newgroup.php:126 actions/profilesettings.php:208 -#: actions/register.php:199 -msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" - #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "ఆ పేరుని అనుమతించము." -#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 -msgid "Nickname of the user you want to follow" -msgstr "" - #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 #: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "పేరు లేదా ఈమెయిల్" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" - #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Jabber ID లేదు." -#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 actions/userauthorization.php:192 -#: actions/userauthorization.php:225 -msgid "No authorization request!" -msgstr "" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -1556,23 +899,10 @@ msgstr "నిర్ధారణ సంకేతం లేదు." msgid "No content!" msgstr "విషయం లేదు!" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "ఐడీ లేదు." -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -1595,16 +925,6 @@ msgstr "పేరు లేదు." msgid "No pending confirmation to cancel." msgstr "రద్దుచేయడానికి వేచివున్న నిర్ధారణలేమీ లేవు." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "" - #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 @@ -1628,21 +948,6 @@ msgstr "ఫలితాలేమీ లేవు" msgid "No size." msgstr "పరిమాణం లేదు." -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1661,16 +966,6 @@ msgstr "అటువంటి పత్రమేమీ లేదు." msgid "No such notice." msgstr "అటువంటి సందేశమేమీ లేదు." -#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 -#: actions/recoverpassword.php:62 -msgid "No such recovery code." -msgstr "" - -#: ../actions/postnotice.php:56 actions/postnotice.php:57 -#: actions/postnotice.php:60 -msgid "No such subscription" -msgstr "" - #: ../actions/all.php:34 ../actions/allrss.php:35 #: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 #: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 @@ -1708,36 +1003,6 @@ msgstr "" msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "" - -#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 -#: actions/recoverpassword.php:66 -msgid "Not a recovery code." -msgstr "" - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 -msgid "Not a supported data format." -msgstr "" - #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1748,12 +1013,6 @@ msgstr "సరైన Jabber ఐడీ కాదు" msgid "Not a valid OpenID." msgstr "సరైన ఓపెన్ఐడీ కాదు." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." @@ -1771,38 +1030,12 @@ msgstr "సరైన ఈమెయిల్ చిరునామా కాదు msgid "Not a valid nickname." msgstr "సరైన పేరు కాదు." -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "" - #: ../actions/avatar.php:95 actions/profilesettings.php:332 #: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 #: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "బొమ్మ కాదు లేదా పాడైపోయిన ఫైలు." -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "" - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "" - #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 #: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 #: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 @@ -1829,15 +1062,6 @@ msgstr "దొరకలేదు" msgid "Not logged in." msgstr "లోనికి ప్రవేశించలేదు." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 @@ -1845,11 +1069,6 @@ msgstr "" msgid "Notice feed for %s" msgstr "%s యొక్క సందేశముల ఫీడు" -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "" - #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 #: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 @@ -1858,14 +1077,6 @@ msgstr "" msgid "Notices" msgstr "సందేశాలు" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1879,15 +1090,9 @@ msgstr "ఓపెన్ఐడీ" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 #: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -#, fuzzy msgid "OpenID Account Setup" msgstr "ఓపెన్ఐడీ ఖాతా అమర్పు" -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - #: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 @@ -1934,11 +1139,6 @@ msgstr "ఓపెన్ఐడీని తొలగించాం." msgid "OpenID settings" msgstr "ఓపెన్ఐడీ అమరికలు" -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -1969,14 +1169,6 @@ msgstr "సంకేతపదం మరియు నిర్ధారణ సర msgid "Password must be 6 chars or more." msgstr "సంకేతపదం 6 లేదా అంతకంటే ఎక్కవ అక్షరాలుండాలి." -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "" - #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 @@ -1996,12 +1188,7 @@ msgstr "సంకేతపదాలు సరిపోలలేదు." #: ../lib/searchaction.php:100 lib/searchaction.php:100 #: lib/searchgroupnav.php:80 msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" +msgstr "ప్రజలు" #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 @@ -2018,23 +1205,6 @@ msgstr "వ్యక్తిగత" msgid "Personal message" msgstr "వ్యక్తిగత సందేశం" -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" - #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 #: actions/imsettings.php:68 actions/smssettings.php:94 @@ -2061,7 +1231,7 @@ msgstr "అభిరుచులు భద్రమయ్యాయి." #: actions/profilesettings.php:129 actions/profilesettings.php:130 #: actions/profilesettings.php:145 msgid "Preferred language" -msgstr "" +msgstr "ప్రాథాన్యతా భాష" #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 @@ -2110,39 +1280,6 @@ msgstr "ప్రజా వాహిని ఫీడు" msgid "Public timeline" msgstr "ప్రజా కాలరేఖ" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "" - #: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 @@ -2154,18 +1291,6 @@ msgstr "" msgid "Register" msgstr "నమోదు" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 -msgid "Registration successful" -msgstr "" - #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -2179,16 +1304,6 @@ msgstr "తిరస్కరించు" msgid "Remember me" msgstr "నన్ను గుర్తుంచుకో" -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "" - #: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 #: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 #: ../actions/smssettings.php:50 ../actions/smssettings.php:84 @@ -2211,12 +1326,8 @@ msgid "Remove OpenID" msgstr "ఓపెన్ఐడీని తొలగించండి" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"మీకున్న ఒకే ఓపెన్ఐడీని తొలగిస్తే మీరు లోనికి ప్రవేశించడం అసాధ్యమవవచ్చు. మీరు దాన్ని తొలగించాలనుకుంటే, " -"ముందు వేరే ఓపెన్ఐడీని చేర్చండి." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "మీకున్న ఒకే ఓపెన్ఐడీని తొలగిస్తే మీరు లోనికి ప్రవేశించడం అసాధ్యమవవచ్చు. మీరు దాన్ని తొలగించాలనుకుంటే, ముందు వేరే ఓపెన్ఐడీని చేర్చండి." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2233,50 +1344,17 @@ msgstr "స్పందనలు" msgid "Replies to %s" msgstr "%sకి స్పందనలు" -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - #: ../actions/smssettings.php:33 actions/smssettings.php:33 #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "SMS అమరికలు" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "పై సంకేతపదం వలెనే" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -msgid "Same as password above. Required." -msgstr "" - #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -2312,26 +1390,13 @@ msgstr "అన్వేషణ వాహిని ఫీడు" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%%లోని సందేశాలను వెతకండి. అన్వేషణ పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా " -"అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "%%site.name%%లోని సందేశాలను వెతకండి. అన్వేషణ పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " -"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -2342,35 +1407,6 @@ msgstr "" msgid "Send" msgstr "పంపించు" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "" - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -2382,10 +1418,6 @@ msgstr "అమరికలు" msgid "Settings saved." msgstr "అమరికలు భద్రమయ్యాయి." -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -2397,16 +1429,6 @@ msgstr "ఈ ఓపెన్ఐడీని ఇప్పటికే ఎవరో msgid "Something weird happened." msgstr "జరగకూడనిదేదో జరిగింది." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -2419,23 +1441,6 @@ msgstr "మూలము" msgid "Statistics" msgstr "గణాంకాలు" -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -msgid "Subscribe" -msgstr "" - #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 @@ -2444,12 +1449,6 @@ msgstr "" msgid "Subscribers" msgstr "చందాదార్లు" -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "" - #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 #: actions/userauthorization.php:349 actions/userauthorization.php:355 #: actions/userauthorization.php:389 actions/userauthorization.php:259 @@ -2465,23 +1464,6 @@ msgstr "చందాని తిరస్కరించారు." msgid "Subscriptions" msgstr "చందాలు" -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "" - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -msgid "Tags" -msgstr "" - #: ../lib/searchaction.php:104 lib/searchaction.php:104 #: lib/designsettings.php:217 msgid "Text" @@ -2528,27 +1510,11 @@ msgstr "ఈ Jabber ID మీకు ఇప్పటికే ఉంది" msgid "That is already your email address." msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" - #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "ఇది మీ Jabber ID కాదు" -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" - #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -2557,16 +1523,6 @@ msgstr "" msgid "That is the wrong IM address." msgstr "ఆ IM చిరునామా సరైనది కాదు." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -2577,12 +1533,6 @@ msgstr "" msgid "That's too long. Max notice size is 140 chars." msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" - #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format @@ -2599,127 +1549,21 @@ msgstr "\"%s\" అనే చిరునామా మీ ఖాతాకి న msgid "The address was removed." msgstr "ఆ చిరునామాని తొలగించాం." -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "" - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "" - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "" - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "" - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" - #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "ఈ నిర్ధారణ సంకేతం చాలా పాతది. మళ్ళీ మొదలుపెట్టండి." -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -msgid "This method requires a POST." -msgstr "" - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "" - #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 #: actions/profilesettings.php:154 msgid "Timezone" -msgstr "" +msgstr "కాలమండలం" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 #: actions/profilesettings.php:211 actions/profilesettings.php:212 #: actions/profilesettings.php:228 msgid "Timezone not selected." -msgstr "" - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 -msgid "Two user ids or screen_names must be supplied." -msgstr "" +msgstr "కాలమండలాన్ని ఎంచుకోలేదు." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2729,100 +1573,12 @@ msgstr "" msgid "URL of your homepage, blog, or profile on another site" msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -msgid "Unexpected form submission." -msgstr "" - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "" - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "" - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" - #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 #, php-format msgid "Unrecognized address type %s" msgstr "గుర్తుతెలియని చిరునామా రకం %s" -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "" - -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -2830,24 +1586,6 @@ msgstr "" msgid "Upload" msgstr "ఎగుమతించు" -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" - #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 @@ -2855,11 +1593,6 @@ msgstr "" msgid "Used only for updates, announcements, and password recovery" msgstr "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం." -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - #: ../actions/all.php:41 ../actions/avatarbynickname.php:48 #: ../actions/foaf.php:47 ../actions/replies.php:41 #: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 @@ -2890,13 +1623,7 @@ msgstr "వాడుకరి పేరు" #: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 msgid "User not found." -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" +msgstr "వాడుకరి దొరకలేదు." #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 @@ -2918,12 +1645,6 @@ msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష msgid "Wrong image type for '%s'" msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "" - #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 @@ -2938,27 +1659,11 @@ msgstr "అవును" msgid "You already have this OpenID!" msgstr "ఈ ఓపెన్ఐడీ మీకు ఇప్పటికే ఉంది!" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" - #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "మీ సంకేతపదాన్ని ఇక్కడ మార్చుకోవచ్చు. మంచిది ఎంచుకోండి!" @@ -2967,84 +1672,10 @@ msgstr "మీ సంకేతపదాన్ని ఇక్కడ మార్ msgid "You can create a new account to start posting notices." msgstr "సందేశాలు పంపించడానికి మీరు కొత్త ఖాతా సృష్టించుకోవచ్చు." -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" - #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." msgstr "\"తొలగించు\" అనే బొత్తంపై నొక్కడం ద్వారా ఒక ఓపెన్ఐడీని మీ ఖాతా నుండి తొలగించుకోవచ్చు." -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" - -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "" - -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 -msgid "You can't register if you don't agree to the license." -msgstr "" - -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "" - -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "మిమ్మల్ని గుర్తించాం. కొత్త సంకేతపదాన్ని క్రింద ఇవ్వండి." @@ -3061,12 +1692,8 @@ msgstr "ఈ సర్వరులో మీ పేరు, లేదా నమౌ #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ " -"ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3144,411 +1771,15 @@ msgstr "స్పందించు" msgid "same as password above" msgstr "పై సంకేతపదం వలెనే" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - #: ../lib/util.php:1309 lib/util.php:1443 -#, fuzzy msgid "« After" msgstr "« తర్వాత" -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" - #: actions/newmessage.php:117 actions/newmessage.php:67 #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "కొత్త సందేశం" -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -msgid "Password must be 6 or more characters." -msgstr "" - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 msgid "Twitter settings" @@ -3559,149 +1790,24 @@ msgstr "ట్విట్టర్ అమరికలు" msgid "Twitter Account" msgstr "ట్విట్టర్ ఖాతా" -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" -msgstr "" +msgstr "ఆదేశ ఫలితాలు" #: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" -msgstr "" +msgstr "ఆదేశం పూర్తయ్యింది" #: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" +msgstr "ఆదేశం విఫలమైంది" #: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 #: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" -msgstr "" +msgstr "%1$s (%2$s)" #: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 #: lib/command.php:185 lib/command.php:318 @@ -3715,160 +1821,26 @@ msgstr "పూర్తిపేరు: %s" msgid "Location: %s" msgstr "ప్రాంతం: %s" -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" - #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 #: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "గురించి: %s" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - #: classes/Command.php:344 classes/Command.php:392 msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" +msgstr "ఆదేశాలు:\n" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: lib/personalgroupnav.php:115 msgid "User" msgstr "వాడుకరి" -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" - #: lib/personal.php:76 lib/personalgroupnav.php:124 #: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "మీకు వచ్చిన సందేశాలు" -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" - #: lib/personal.php:81 lib/personalgroupnav.php:129 #: lib/personalgroupnav.php:130 msgid "Your sent messages" @@ -3876,34 +1848,15 @@ msgstr "మీరు పంపిన సందేశాలు" #: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 msgid "Twitter" -msgstr "" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" +msgstr "ట్విట్టర్" #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s మరియు మిత్రులు" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" - #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -3927,35 +1880,6 @@ msgstr "అసలు" msgid "Preview" msgstr "మునుజూపు" -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -3963,75 +1887,21 @@ msgstr "" msgid "Lost our file." msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" - #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "అటువంటి వాడుకరి లేరు." -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format, fuzzy msgid "The address \"%s\" has been " msgstr "ఆ చిరునామాని తొలగించాం." -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "" - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" - #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -4055,24 +1925,6 @@ msgstr "పేరు లేదు." msgid "No such group" msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - -#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 -msgid "Nickname must have only lowercase letters " -msgstr "" - #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy @@ -4090,23 +1942,10 @@ msgid "Options saved." msgstr "అమరికలు భద్రమయ్యాయి." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "నిర్ధారణ సంకేతంలో పొరపాటు." -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -4117,38 +1956,12 @@ msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేక msgid "A confirmation code was sent to the email address you added. " msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" - #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "విషయం లేదు!" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -4163,84 +1976,32 @@ msgstr "తర్వాత" msgid "Before" msgstr "ఇంతక్రితం" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" - #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "%s యొక్క మిత్రుల ఫీడు" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" - #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "అభిరుచులు భద్రమయ్యాయి." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" - #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "ప్రొఫైలు" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "అభిరుచులు" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "" - #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -4250,48 +2011,10 @@ msgid "Popular notices" msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -4304,36 +2027,6 @@ msgstr "అవతారాన్ని తాజాకరించాం." msgid "Failed updating logo." msgstr "అవతారపు తాజాకరణ విఫలమైంది." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -4341,63 +2034,25 @@ msgid "Create a new group" msgstr "కొత్త ఖాతా సృష్టించుకోండి" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " -"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "వ్యక్తుల అన్వేషణ" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" - -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "" - #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "నిర్ధారణ సంకేతం లేదు." -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" - #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format -msgid "Could not join user %s to group %s" -msgstr "" - -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" - #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -4406,47 +2061,15 @@ msgstr "" msgid "No such group." msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "" - -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "" - #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - #: actions/newgroup.php:53 msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" +msgstr "కొత్త గుంపు" #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 @@ -4465,37 +2088,13 @@ msgstr "చందాని సృష్టించలేకపోయాం." msgid "That's too long. " msgstr "ఆ ఫైలు చాలా పెద్దగా ఉంది." -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" - #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "సందేశాలు" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" - #: actions/openidlogin.php:97 actions/openidlogin.php:106 -#, fuzzy msgid "OpenID login" msgstr "ఓపెన్ఐడీ ప్రవేశం" @@ -4505,27 +2104,12 @@ msgid "Removing your only OpenID " msgstr "ఓపెన్ఐడీని తొలగించండి" #: actions/othersettings.php:60 -#, fuzzy msgid "Other Settings" -msgstr "ట్విట్టర్ అమరికలు" - -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" +msgstr "ఇతర అమరికలు" #: actions/othersettings.php:112 -#, fuzzy msgid "Service" -msgstr "వెతుకు" - -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" +msgstr "సేవ" #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 @@ -4545,39 +2129,19 @@ msgid "Password change" msgstr "సంకేతపదం భద్రమయ్యింది." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "అజ్ఞాత ప్రొఫైలు" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "" - #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" @@ -4589,50 +2153,15 @@ msgstr "ప్రొఫైలుని భద్రపరచలేకున్ #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "ప్రజా కాలరేఖ" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" - -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "ప్రజా వాహిని ఫీడు" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "" - -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -4663,39 +2192,16 @@ msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష msgid " except this private data: password, " msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" - #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "%sకి స్పందనలు" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "" - #: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" +msgstr "%s గుంపు" #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 @@ -4703,17 +2209,6 @@ msgstr "" msgid "Group profile" msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4726,13 +2221,8 @@ msgstr "" msgid "Note" msgstr "సందేశాలు" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "%s యొక్క సందేశముల ఫీడు" @@ -4740,34 +2230,13 @@ msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/showgroup.php:384 actions/showgroup.php:373 #: actions/showgroup.php:430 actions/showgroup.php:381 #: actions/showgroup.php:438 -#, fuzzy msgid "Members" -msgstr "సభ్యులైన తేదీ" - -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" +msgstr "సభ్యులు" #: actions/showgroup.php:370 actions/showgroup.php:350 #: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "" +msgstr "అందరు సభ్యులూ" #: actions/showstream.php:73 actions/showstream.php:78 #, php-format @@ -4786,65 +2255,26 @@ msgstr "ప్రొఫైలు" msgid "User profile" msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "వాడుకరి చర్యలు" -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 -msgid "Send a direct message to this user" -msgstr "" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 -msgid "Message" -msgstr "" - #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "చందాదార్లు" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "" - #: actions/smssettings.php:335 #, fuzzy msgid "A confirmation code was sent to the phone number you added. " msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" - -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "" - #: actions/subedit.php:83 #, fuzzy msgid "Could not save subscription." @@ -4861,43 +2291,20 @@ msgid "Subscribed" msgstr "చందాదార్లు" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format msgid "%s subscribers" -msgstr "చందాదార్లు" - -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "" - -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "" +msgstr "%s చందాదార్లు" #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "అన్ని చందాలు" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "అన్ని చందాలు" -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "" - -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "" - #: actions/subscriptions.php:122 actions/subscriptions.php:124 #: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy @@ -4905,15 +2312,10 @@ msgid "Jabber" msgstr "Jabber ID లేదు." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -4924,78 +2326,35 @@ msgstr "లోనికి ప్రవేశించలేదు." msgid "No id argument." msgstr "అటువంటి పత్రమేమీ లేదు." -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" - #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "అభ్యర్థనలేమీ కనబడలేదు!" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" - #: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy msgid "Twitter user name" msgstr "ట్విట్టర్ అమరికలు" #: actions/twittersettings.php:126 actions/twittersettings.php:129 -#, fuzzy msgid "Twitter password" -msgstr "కొత్త సంకేతపదం" +msgstr "ట్విట్టర్ సంకేతపదం" #: actions/twittersettings.php:228 actions/twittersettings.php:232 #: actions/twittersettings.php:248 @@ -5003,12 +2362,8 @@ msgstr "కొత్త సంకేతపదం" msgid "Twitter Friends" msgstr "ట్విట్టర్ అమరికలు" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." @@ -5017,14 +2372,6 @@ msgstr "ఈమెయిల్ నిర్ధారణని తొలగిం msgid "Error removing the block." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు." -#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 -msgid "No profile id in request." -msgstr "" - -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "" - #: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" @@ -5034,12 +2381,7 @@ msgstr "చందాదార్లు" #: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" +msgstr "%s గుంపులు" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 @@ -5047,17 +2389,6 @@ msgstr "" msgid "Problem saving notice. Unknown user." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" @@ -5066,54 +2397,21 @@ msgstr "అవతారపు తాజాకరణ విఫలమైంది. #: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 #: lib/accountsettingsaction.php:123 msgid "Other" -msgstr "" +msgstr "ఇతర" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 #: lib/accountsettingsaction.php:124 msgid "Other options" -msgstr "" +msgstr "ఇతర ఎంపికలు" #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" -msgstr "" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" +msgstr "%s - %s" #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -#, fuzzy msgid "Account" -msgstr "గురించి" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" +msgstr "ఖాతా" #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy @@ -5135,10 +2433,6 @@ msgstr "సహాయం" msgid "Site notice" msgstr "కొత్త సందేశం" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5149,39 +2443,12 @@ msgstr "కొత్త సందేశం" msgid "Secondary site navigation" msgstr "చందాలు" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "అటువంటి వాడుకరి లేరు." -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "" - -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "" - -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -5200,28 +2467,10 @@ msgstr "ప్రజా" msgid "Favor this notice" msgstr "అటువంటి సందేశమేమీ లేదు." -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" - #: lib/galleryaction.php:131 msgid "All" msgstr "అన్నీ" -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "" - -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - #: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" @@ -5234,9 +2483,8 @@ msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వ #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 -#, fuzzy msgid "Description" -msgstr "చందాలు" +msgstr "వివరణ" #: lib/groupeditform.php:153 lib/groupeditform.php:168 #, fuzzy @@ -5246,45 +2494,16 @@ msgstr "మీ గురించి మరియు మీ ఆసక్తు #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" -msgstr "" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" +msgstr "గుంపు" #: lib/groupnav.php:106 lib/groupnav.php:112 -#, fuzzy msgid "Logo" -msgstr "నిష్క్రమించు" - -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" +msgstr "చిహ్నం" #: lib/htmloutputter.php:104 #, fuzzy @@ -5311,63 +2530,16 @@ msgstr "వాడుకరిపేరు లేదా సంకేతపదం msgid "Sign up for a new account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" - -#: lib/mail.php:236 -#, php-format -msgid "%1$s is now listening to " -msgstr "" - #: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Location: %s\n" msgstr "ప్రాంతం: %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Homepage: %s\n" msgstr "హోమ్ పేజీ\n" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "" - -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - -#: lib/mail.php:555 -#, php-format -msgid "%1$s just added your notice from %2$s" -msgstr "" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "" - #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -5384,68 +2556,21 @@ msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షర msgid "in reply to" msgstr "దీనికి స్పందనగా..." -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "" - #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "స్పందించు" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "" - #: lib/noticelist.php:474 actions/avatarsettings.php:148 #: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "తొలగించు" -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" - -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "" - #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "ప్రజా" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "" - -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "" - -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -5456,35 +2581,11 @@ msgstr "వ్యక్తుల అన్వేషణ" msgid "Notice" msgstr "సందేశాలు" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "" - -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" - -#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format -msgid "People %s subscribes to" -msgstr "" - #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "%sకి స్పందనలు" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -5496,40 +2597,24 @@ msgstr "వాడుకరికి ప్రొఫైలు లేదు." msgid "Subscribe to this user" msgstr "చందాదార్లు" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "" - -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "" - #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "అటువంటి వాడుకరి లేరు." -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "" - #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s యొక్క మిత్రుల ఫీడు" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s యొక్క మిత్రుల ఫీడు" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "%s యొక్క మిత్రుల ఫీడు" @@ -5538,106 +2623,30 @@ msgstr "%s యొక్క మిత్రుల ఫీడు" msgid "You and friends" msgstr "%s మరియు మిత్రులు" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" - #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "అవతారాన్ని తాజాకరించాం." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "%s యొక్క మైక్రోబ్లాగు" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " -"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr "\"%s\"కై అన్వేషణ వాహిని" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5654,32 +2663,9 @@ msgstr "ప్రజా వాహిని ఫీడు" msgid "Public Stream Feed (Atom)" msgstr "ప్రజా వాహిని ఫీడు" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +msgid " except this private data: password, email address, IM address, and phone number." msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." #: actions/showgroup.php:378 actions/showgroup.php:424 @@ -5688,47 +2674,31 @@ msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సం msgid "Created" msgstr "సృష్టించు" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "ప్రొఫైలు" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/showstream.php:182 actions/showstream.php:147 -#, php-format -msgid "FOAF for %s" -msgstr "" - #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -5741,46 +2711,11 @@ msgstr "అవతారం" msgid "Edit profile settings" msgstr "ఫ్రొఫైలు అమరికలు" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -5794,278 +2729,41 @@ msgstr "" msgid "No such user!" msgstr "అటువంటి వాడుకరి లేరు." -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" - #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి " -"జతచేసుకోండి." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - -#: lib/mail.php:241 lib/mail.php:240 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి జతచేసుకోండి." #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "వెతుకు" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." msgstr "అటువంటి పత్రమేమీ లేదు." -#: actions/block.php:149 -msgid "Do not block this user from this group" -msgstr "" - #: actions/block.php:150 #, fuzzy msgid "Block this user from this group" msgstr "అటువంటి వాడుకరి లేరు." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "వాడుకరికి ప్రొఫైలు లేదు." #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s మరియు మిత్రులు" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -6081,56 +2779,26 @@ msgstr "ప్రాంతం" msgid "Do not delete this notice" msgstr "ఈ నోటీసుని తొలగించలేము." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6141,69 +2809,22 @@ msgstr "కొత్త సందేశం" msgid "No notice" msgstr "కొత్త సందేశం" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "సరైన పేరు కాదు." -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "" - #: actions/groupblock.php:136 actions/groupmembers.php:311 #: actions/groupmembers.php:314 #, fuzzy msgid "Block user from group" msgstr "అటువంటి వాడుకరి లేరు." -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6212,247 +2833,41 @@ msgstr "" msgid "Couldn't update your design." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "అభిరుచులు భద్రమయ్యాయి." -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "ఫలితాలేమీ లేవు" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ " -"ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "ఫ్రొఫైలు అమరికలు" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." msgstr "మీరు మీ సంకేతపదాన్ని మర్చిపోతే, మీ ఖాతాలో భద్రపరచిన ఈమెయిలుకి కొత్తదాన్ని పంపించుకోవచ్చు." #: actions/recoverpassword.php:158 @@ -6475,172 +2890,43 @@ msgstr "నిర్ధారణ సంకేతంలో పొరపాటు. msgid "Subscribe to a remote user" msgstr "చందాదార్లు" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "అటువంటి వాడుకరి లేరు." -#: actions/showstream.php:72 -#, php-format -msgid " tagged %s" -msgstr "" - #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - -#: actions/subscriptions.php:117 actions/subscriptions.php:121 -#: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format -msgid "%s is not listening to anyone." -msgstr "" - #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" @@ -6649,44 +2935,23 @@ msgstr "%s యొక్క సందేశముల ఫీడు" msgid "This status is already a favorite!" msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." -#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format -msgid "%1$s / Updates mentioning %2$s" -msgstr "" - #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "%s యొక్క మైక్రోబ్లాగు" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -6697,127 +2962,40 @@ msgstr "అన్ని చందాలు" msgid "Profile design" msgstr "ఫ్రొఫైలు అమరికలు" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: classes/User.php:319 classes/User.php:327 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "వాడుకరికి ప్రొఫైలు లేదు." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "జోడింపులు" -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "ప్రొఫైలు" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "ఎగుమతించు" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "సంకేతపదం మార్చుకోండి" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6833,127 +3011,16 @@ msgstr "వెతుకు" msgid "Links" msgstr "ప్రవేశించండి" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "అటువంటి వాడుకరి లేరు." #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "అటువంటి వాడుకరి లేరు." -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -6969,39 +3036,19 @@ msgstr "వాడుకరి" msgid "Search help" msgstr "వెతుకు" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "హోమ్ పేజీ URL సరైనది కాదు." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." @@ -7010,12 +3057,8 @@ msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ స msgid "Could not unfollow user: User not found." msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." @@ -7025,7 +3068,7 @@ msgid "You are already a member of that group." msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" @@ -7035,78 +3078,21 @@ msgid "You are not a member of this group." msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." -msgstr "" - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." -msgstr "" - -#: actions/finishremotesubscribe.php:109 -msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" - #: actions/getfile.php:75 #, fuzzy msgid "No such file." @@ -7117,48 +3103,18 @@ msgstr "అటువంటి సందేశమేమీ లేదు." msgid "Cannot read file." msgstr "అటువంటి సందేశమేమీ లేదు." -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "హోమ్ పేజీ URL సరైనది కాదు." -#: actions/login.php:259 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" - #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణలు" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" @@ -7168,74 +3124,37 @@ msgid "Describe yourself and your interests" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "%sకి స్పందనలు" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "%s యొక్క మిత్రుల ఫీడు" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "%s యొక్క మిత్రుల ఫీడు" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "%s యొక్క మిత్రుల ఫీడు" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "%s యొక్క సందేశముల ఫీడు" @@ -7250,110 +3169,32 @@ msgid "SMS is not available." msgstr "హోమ్ పేజీ URL సరైనది కాదు." #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s యొక్క సందేశముల ఫీడు" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" - #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "'%s' అనే అవతారపు URL తప్పు" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" -#: lib/action.php:435 -msgid "Connect to services" -msgstr "" - #: lib/action.php:785 #, fuzzy msgid "Site content license" msgstr "కొత్త సందేశం" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "ఈ పేరుతో కొత్త వాడుకరిని సృష్టించు" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "%sకి స్పందనలు" @@ -7362,137 +3203,33 @@ msgstr "%sకి స్పందనలు" msgid "Error saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "నిర్ధారణ సంకేతం లేదు." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "%s యొక్క సందేశముల ఫీడు" -#: lib/mail.php:554 -#, php-format -msgid "%s (@%s) added your notice as a favorite" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " నుండి " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" - #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "కొత్త సందేశం" + diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 52f7c6b8dc..dbf08e9ff2 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -9,14 +9,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:59:51+0000\n" +"PO-Revision-Date: 2009-11-06 12:24:37+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: out-statusnet\n" @@ -30,60 +29,8 @@ msgstr " \"%s\" için arama sonuçları" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " -"numarası." - -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "" - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +msgid " except this private data: password, email address, IM address, phone number." +msgstr "bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon numarası." #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -93,27 +40,8 @@ msgstr "%1$s %2$s'da durumunuzu takip ediyor" #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n" -"\n" -"\t%3$s\n" -"\n" -"Kendisini durumsuz bırakmayın!,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n\n %3$s\n\nKendisini durumsuz bırakmayın!,\n%4$s.\n" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -122,13 +50,6 @@ msgstr "" msgid "%1$s's status on %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "" - #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format @@ -150,52 +71,16 @@ msgstr "%s Genel Durum Mesajları" msgid "%s and friends" msgstr "%s ve arkadaşları" -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "" - #: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s durum" -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" - #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " -"hazırlanan anında mesajlaşma ağıdır. " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından hazırlanan anında mesajlaşma ağıdır. " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -213,14 +98,7 @@ msgstr "Katkı sunanlar tam ad veya takma ad ile atfedilmelidir." #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " -"verilmez" - -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" +msgstr "1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin verilmez" #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -233,110 +111,11 @@ msgstr "6 veya daha fazla karakter" msgid "6 or more characters, and don't forget it!" msgstr "Unutmayın, 6 veya daha fazla karakter" -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -msgid "6 or more characters. Required." -msgstr "" - #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " -"mesaj yollanabilmesi için onaylamanız gerekmektedir." - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "" +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size mesaj yollanabilmesi için onaylamanız gerekmektedir." #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 @@ -367,11 +146,6 @@ msgstr "Ekle" msgid "Add OpenID" msgstr "OpenID ekle" -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "" - #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 @@ -381,11 +155,6 @@ msgstr "" msgid "Address" msgstr "Adres" -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "" - #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" @@ -417,12 +186,6 @@ msgstr "Zaten giriş yapılmış." msgid "Already subscribed!." msgstr "Zaten abone olunmuş!." -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "" - #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 @@ -434,15 +197,7 @@ msgstr "Takip isteğini onayla" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Gelecekte kendiliğinden giriş yap, paylaşılan bilgisayarlar için değildir!" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +msgstr "Gelecekte kendiliğinden giriş yap, paylaşılan bilgisayarlar için değildir!" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -461,24 +216,8 @@ msgstr "Avatar güncellendi." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Bu adresten onay bekleniyor. Jabber/Google Talk hesabınızı ayrıntılı bilgi " -"içeren mesajı almak için kontrol edin. (%s'u arkadaş listenize eklediniz mi?)" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Bu adresten onay bekleniyor. Jabber/Google Talk hesabınızı ayrıntılı bilgi içeren mesajı almak için kontrol edin. (%s'u arkadaş listenize eklediniz mi?)" #: ../lib/util.php:1318 lib/util.php:1452 #, fuzzy @@ -502,11 +241,6 @@ msgstr "Hakkında" msgid "Bio is too long (max 140 chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "" - #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format @@ -540,37 +274,16 @@ msgstr "OpenID işlemlerinde hata oluştu." msgid "Cannot normalize that Jabber ID" msgstr "Jabber işlemlerinde bir hata oluştu." -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "" - #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Değiştir" -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" - #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "Parolayı değiştir" -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "" - #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 #: actions/profilesettings.php:182 actions/recoverpassword.php:187 @@ -598,36 +311,11 @@ msgstr "Adresi Onayla" msgid "Confirmation cancelled." msgstr "Onaylama iptal edildi." -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "" - #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Onay kodu bulunamadı." -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" - #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -651,21 +339,6 @@ msgstr "İletişim" msgid "Could not create OpenID form: %s" msgstr "OpenID formu yaratılamadı: %s" -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "" - #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format @@ -682,24 +355,6 @@ msgstr "Avatar bilgisi kaydedilemedi" msgid "Could not save new profile info" msgstr "Yeni profil bilgisi kaydedilemedi" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "" - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" - -#: ../actions/finishremotesubscribe.php:99 -#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 -msgid "Couldn't convert request tokens to access tokens." -msgstr "" - #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 #: actions/confirmaddress.php:84 actions/emailsettings.php:252 @@ -715,16 +370,6 @@ msgstr "Eposta onayı silinemedi." msgid "Couldn't delete subscription." msgstr "Abonelik silinemedi." -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" - -#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 -#: actions/remotesubscribe.php:178 -msgid "Couldn't get a request token." -msgstr "" - #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 @@ -748,22 +393,6 @@ msgstr "Yeni abonelik eklenemedi." msgid "Couldn't save profile." msgstr "Profil kaydedilemedi." -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "" - #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -811,38 +440,16 @@ msgstr "OpenID kullanıcısı için hesap oluşturuluyor" msgid "Current confirmed Jabber/GTalk address." msgstr "Onaylanmış Jabber/Gtalk adresi." -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "" - #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "Şu anda" -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" - #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Cevap eklenirken veritabanı hatası: %s" -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" - #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -859,16 +466,6 @@ msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" msgid "Email" msgstr "Eposta" -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "" - #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." @@ -878,32 +475,12 @@ msgstr "Eposta adresi zaten var." msgid "Email address confirmation" msgstr "Eposta adresi onayı" -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "" - #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Bir takma ad veya eposta adresi girin." -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" - -#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 actions/userauthorization.php:200 -msgid "Error authorizing token" -msgstr "" - #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 #: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 #: actions/finishopenidlogin.php:325 @@ -1016,29 +593,9 @@ msgstr "%s için arkadaş güncellemeleri RSS beslemesi" msgid "Feed for replies to %s" msgstr "Cevaplar için RSS Beslemesi: %s" -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" - #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı " -"ve parolanızı tekrar giriniz." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı ve parolanızı tekrar giriniz." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1100,17 +657,6 @@ msgstr "Başlangıç Sayfası" msgid "Homepage is not a valid URL." msgstr "Başlangıç sayfası adresi geçerli bir URL değil." -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" - #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -1123,40 +669,12 @@ msgstr "IM Ayarları" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş " -"yapıp hesabınızı OpenID'nize bağlayabilirsiniz." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş yapıp hesabınızı OpenID'nize bağlayabilirsiniz." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Eğer hesabınıza bir OpenID eklemek istiyorsanız, aşağıdaki kutuya girin ve " -"\"Add\" düğmesine tıklayın." - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Eğer hesabınıza bir OpenID eklemek istiyorsanız, aşağıdaki kutuya girin ve \"Add\" düğmesine tıklayın." #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 @@ -1172,12 +690,8 @@ msgstr "Yanlış kullanıcı adı veya parola." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Hesabınıza eklemiş olduğunuz eposta adresine parolanızı geri getirmek için " -"gerekli olan talimatlar yollanmıştır." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Hesabınıza eklemiş olduğunuz eposta adresine parolanızı geri getirmek için gerekli olan talimatlar yollanmıştır." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1185,12 +699,6 @@ msgstr "" msgid "Invalid avatar URL '%s'" msgstr "Geçersiz avatar URLi '%s'" -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "" - #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format @@ -1224,16 +732,6 @@ msgstr "Geçersiz durum adresi" msgid "Invalid profile URL '%s'." msgstr "'%s' geçersiz profil adresi." -#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 -msgid "Invalid profile URL (bad format)" -msgstr "" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "" - #: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." @@ -1249,38 +747,11 @@ msgstr "Geçersiz büyüklük." msgid "Invalid username or password." msgstr "Geçersiz kullanıcı adı veya parola." -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"nedurum.com [GNU Affero General Public License](http://www.fsf.org/licensing/" -"licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) " -"microbloglama yazılımının %s. versiyonunu kullanmaktadır." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "nedurum.com [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) microbloglama yazılımının %s. versiyonunu kullanmaktadır." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1290,24 +761,8 @@ msgstr "Jabber ID başka bir kullanıcıya ait." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber veya Gtalk adresi: \"KullaniciAdi@ornek.org\" gibi. Öncelikle %s, IM " -"istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır." - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber veya Gtalk adresi: \"KullaniciAdi@ornek.org\" gibi. Öncelikle %s, IM istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır." #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -1362,44 +817,20 @@ msgstr "Bir [OpenID](%%doc.openid%%) hesabı ile giriş yapın." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne " -"duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " -"[OpenID](%%action.openidlogin%%) ile giriş yapın." +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da [OpenID](%%action.openidlogin%%) ile giriş yapın." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Çıkış" -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -msgid "Longer name, preferably your \"real\" name" -msgstr "" - #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Parolamı unuttum veya kaybettim" -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" - #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -1411,14 +842,6 @@ msgstr "Üyelik başlangıcı" msgid "Microblog by %s" msgstr "%s adli kullanicinin durum mesajlari" -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" - #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 @@ -1427,25 +850,6 @@ msgstr "" msgid "My text and files are available under " msgstr "Durum mesajlarim ve dosyalarim şu lisans ile korunmaktadır: " -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" - #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -1513,9 +917,7 @@ msgstr "Takma ad kullanımda. Başka bir tane deneyin." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk " -"kullanılamaz. " +msgstr "Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk kullanılamaz. " #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1532,14 +934,6 @@ msgstr "Takip etmek istediğiniz kullanıcının takma adı" msgid "Nickname or email" msgstr "Takma ad veya eposta" -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" - #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." @@ -1551,16 +945,6 @@ msgstr "JabberID yok." msgid "No authorization request!" msgstr "Yetkilendirme isteği yok!" -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" - #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -1575,23 +959,10 @@ msgstr "Onay kodu yok." msgid "No content!" msgstr "İçerik yok!" -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "Kullanıcı numarası yok" -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" - #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -1613,16 +984,6 @@ msgstr "Takma ad yok" msgid "No pending confirmation to cancel." msgstr "İptal etmek için beklenen onay yok." -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "" - #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 @@ -1641,26 +1002,6 @@ msgstr "İstek bulunamadı!" msgid "No results" msgstr "Sonuç yok" -#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 -#: actions/avatarbynickname.php:64 -msgid "No size." -msgstr "" - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" - #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1726,12 +1067,6 @@ msgstr "Böyle bir abonelik yok" msgid "No such user." msgstr "Böyle bir kullanıcı yok." -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "Gösterecek hiç kimse yok!" @@ -1741,21 +1076,6 @@ msgstr "Gösterecek hiç kimse yok!" msgid "Not a recovery code." msgstr "Bir geri alma kodu değil." -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 -msgid "Not a supported data format." -msgstr "" - #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1766,12 +1086,6 @@ msgstr "Geçersiz bir Jabber ID" msgid "Not a valid OpenID." msgstr "Geçersiz bir OpenID." -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" - #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." @@ -1815,18 +1129,6 @@ msgstr "Bu bir resim dosyası değil ya da dosyada hata var" msgid "Not authorized." msgstr "Yetkilendirilmemiş." -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -msgid "Not found" -msgstr "" - #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 #: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 @@ -1851,11 +1153,6 @@ msgstr "Giriş yapılmadı." msgid "Not subscribed!." msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 @@ -1876,14 +1173,6 @@ msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" msgid "Notices" msgstr "Durum mesajları" -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1900,11 +1189,6 @@ msgstr "OpenID" msgid "OpenID Account Setup" msgstr "OpenID Hesabı Kurulumu" -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - #: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 @@ -1951,11 +1235,6 @@ msgstr "OpenID kaldırıldı." msgid "OpenID settings" msgstr "OpenID ayarları" -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -2010,16 +1289,6 @@ msgstr "Parola kaydedildi." msgid "Passwords don't match." msgstr "Parolalar birbirini tutmuyor." -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" @@ -2030,31 +1299,14 @@ msgstr "Kişi Arama" msgid "Personal" msgstr "Kişisel" -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " -"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " -"bulunmadıysanız \"İptal\" tuşuna basın. " +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde bulunmadıysanız \"İptal\" tuşuna basın. " #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" -"Jabber/GTalk durum mesajim değiştiğinde nedurum.com'da durumumu güncelle" +msgstr "Jabber/GTalk durum mesajim değiştiğinde nedurum.com'da durumumu güncelle" #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 @@ -2078,12 +1330,6 @@ msgstr "Tercihler" msgid "Preferences saved." msgstr "Tercihler kaydedildi." -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" @@ -2131,22 +1377,6 @@ msgstr "Genel Durum Akış RSS Beslemesi" msgid "Public timeline" msgstr "Genel zaman çizgisi" -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -2175,18 +1405,6 @@ msgstr "Bilinmeye kullanıcı için geri alma kodu" msgid "Register" msgstr "Kayıt" -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 -msgid "Registration successful" -msgstr "" - #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -2200,11 +1418,6 @@ msgstr "Reddet" msgid "Remember me" msgstr "Beni hatırla" -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "" - #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 #: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" @@ -2232,12 +1445,8 @@ msgid "Remove OpenID" msgstr "OpenID'yi kaldır" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"OpenID'nizi sistemden silerseniz giriş yapamazsınız! Eğer silmek " -"istiyorsanuz, önce yeni bir OpenID ekleyin" +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "OpenID'nizi sistemden silerseniz giriş yapamazsınız! Eğer silmek istiyorsanuz, önce yeni bir OpenID ekleyin" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2266,38 +1475,12 @@ msgstr "Sıfırla" msgid "Reset password" msgstr "Parolayı sıfırla" -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "yukarıdaki parolanın aynısı" -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -msgid "Same as password above. Required." -msgstr "" - #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -2325,35 +1508,16 @@ msgstr "Kaydet" msgid "Search" msgstr "Ara" -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "" - #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%%'da durum mesajlarının içeriğinde arama yap. Anahtar kelimeleri " -"boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "%%site.name%%'da durum mesajlarının içeriğinde arama yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " -"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " -"karakterden oluşmalı. " - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı. " #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -2364,35 +1528,11 @@ msgstr "" msgid "Send" msgstr "Gönder" -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -2404,10 +1544,6 @@ msgstr "Ayarlar" msgid "Settings saved." msgstr "Ayarlar kaydedildi." -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -2419,16 +1555,6 @@ msgstr "Bir başkası zaten bu OpenID'ye sahip." msgid "Something weird happened." msgstr "Garip bir şey oldu." -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -2493,22 +1619,6 @@ msgstr "Abonelikler" msgid "System error uploading file." msgstr "Dosya yüklemede sistem hatası." -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -msgid "Tags" -msgstr "" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "" - #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 #: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" @@ -2529,11 +1639,6 @@ msgstr "O adres daha önce onaylanmış." msgid "That confirmation code is not for you!" msgstr "O onay kodu sizin için değil!" -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" - #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." @@ -2544,33 +1649,11 @@ msgstr "Dosya çok büyük." msgid "That is already your Jabber ID." msgstr "Bu zaten sizin Jabber ID'niz." -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" - #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Bu sizin Jabber ID'niz değil." -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" - #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -2579,16 +1662,6 @@ msgstr "" msgid "That is the wrong IM address." msgstr "Yanlış IM adresi." -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -2597,14 +1670,7 @@ msgstr "" #: actions/twitapistatuses.php:251 lib/facebookaction.php:477 #: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." -msgstr "" -"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" +msgstr "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 @@ -2622,22 +1688,6 @@ msgstr "\"%s\" adresi hesabınız için onaylandı." msgid "The address was removed." msgstr "Bu adres kaldırılmıştı." -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" - #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 #, php-format @@ -2660,108 +1710,31 @@ msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" msgid "These are the people whose notices you listen to." msgstr "Sizin durumlarını takip ettiğiniz kullanıcılar" -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" - #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Onay kodu çok eski. Lütfen tekrar başlayınız." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Bu form kendiliğinden gönderilmeli. Eğer yönlendirilmediyseniz, OpenID " -"servis sağlayıcınıza yönlenmek için düğmeye basın." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Bu form kendiliğinden gönderilmeli. Eğer yönlendirilmediyseniz, OpenID servis sağlayıcınıza yönlenmek için düğmeye basın." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"%s'a İlk defa giriş yapıyorsunuz. Bu yüzden OpenID'nizi hesabınıza " -"bağlamamız gerekli. Bunun için ya yeni bir hesap oluşturabilirsiniz ya da " -"varolan hesabınızı kullanabilirsiniz. " - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -msgid "This method requires a POST." -msgstr "" +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "%s'a İlk defa giriş yapıyorsunuz. Bu yüzden OpenID'nizi hesabınıza bağlamamız gerekli. Bunun için ya yeni bir hesap oluşturabilirsiniz ya da varolan hesabınızı kullanabilirsiniz. " #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 -msgid "Two user ids or screen_names must be supplied." -msgstr "" - #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 #: actions/profilesettings.php:109 actions/register.php:398 #: actions/register.php:444 actions/profilesettings.php:117 #: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" -msgstr "" -"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "" +msgstr "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" #: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 #: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 @@ -2785,23 +1758,14 @@ msgstr "Beklenmeğen form girdisi." msgid "Unexpected password reset." msgstr "Beklemeğen parola sıfırlaması." -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "OMB protokolünün bilinmeğen sürümü." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Aksi ifade edilmedikce, bu sitedeki içerik yaratıcılarına aittir ve şu " -"lisans ile korunmaktadır: " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Aksi ifade edilmedikce, bu sitedeki içerik yaratıcılarına aittir ve şu lisans ile korunmaktadır: " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2827,33 +1791,6 @@ msgstr "Desteklenmeyen OMB sürümü" msgid "Unsupported image file format." msgstr "Desteklenmeyen görüntü dosyası biçemi." -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -2862,39 +1799,15 @@ msgid "Upload" msgstr "Yükle" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Buradan yeni bir \"avatar\" (kullanıcı resmi) yükleyin. Resminizi " -"yükledikten sonra düzenleyemezsiniz bu sebeple kare biçimine yakın olmasına " -"özen gösterin. Buna ek olarak, resminiz sitenin lisansına tabi olmalıdır. " -"Kendinize ait olan ve paylaşmak istediğiniz bir resim kullanın. " - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Buradan yeni bir \"avatar\" (kullanıcı resmi) yükleyin. Resminizi yükledikten sonra düzenleyemezsiniz bu sebeple kare biçimine yakın olmasına özen gösterin. Buna ek olarak, resminiz sitenin lisansına tabi olmalıdır. Kendinize ait olan ve paylaşmak istediğiniz bir resim kullanın. " #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "" -"Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" +msgstr "Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." #: ../actions/all.php:41 ../actions/avatarbynickname.php:48 #: ../actions/foaf.php:47 ../actions/replies.php:41 @@ -2924,16 +1837,6 @@ msgstr "Kullanıcının profili yok." msgid "User nickname" msgstr "Kullanıcı takma adı" -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" - #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -2960,80 +1863,38 @@ msgstr "%s için yanlış resim türü" msgid "Wrong size image at '%s'" msgstr "%s'de yanlış resim boyutu" -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "" - #: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "Zaten bu OpenID'ye sahipsiniz!" -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "Zaten giriş yapmış durumdasıznız!" -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" - #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "Parolanızı burada değiştirebilirsiniz. İyi bir tane seçin!" #: ../actions/register.php:135 actions/register.php:145 msgid "You can create a new account to start posting notices." -msgstr "" -"Sizde bir hesap açıp durumunuzdan arkadaşlarınızı haberdar edebilirsiniz." - -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" +msgstr "Sizde bir hesap açıp durumunuzdan arkadaşlarınızı haberdar edebilirsiniz." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"\"Sil\" düğmesine basarak hesabınızdan eklediğiniz OpenID'yi silebilirsiniz." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "\"Sil\" düğmesine basarak hesabınızdan eklediğiniz OpenID'yi silebilirsiniz." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres " -"ayarlarinizi aşağıda yapın." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres ayarlarinizi aşağıda yapın." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Burada kişisel profilinizi güncelleyebilirsiniz, böylelikle insanlar sizin " -"hakkınızda daha fazla bilgi sahibi olur." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Burada kişisel profilinizi güncelleyebilirsiniz, böylelikle insanlar sizin hakkınızda daha fazla bilgi sahibi olur." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3055,38 +1916,6 @@ msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." msgid "You did not send us that profile" msgstr "Bize o profili yollamadınız" -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Harika, sizi tanıdık. Simdi yeni parolanızı girin." @@ -3103,12 +1932,8 @@ msgstr "Bu sunucudaki takma adınız veya kaydedilmiş eposta adresiniz." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı " -"sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3164,11 +1989,6 @@ msgstr "yaklaşık bir yıl önce" msgid "about an hour ago" msgstr "yaklaşık bir saat önce" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "" - #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 @@ -3186,766 +2006,18 @@ msgstr "cevapla" msgid "same as password above" msgstr "yukaridaki parola ile aynı" -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - #: ../lib/util.php:1309 lib/util.php:1443 #, fuzzy msgid "« After" msgstr "« Sonra" -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -msgid "Password must be 6 or more characters." -msgstr "" - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" - -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "" - -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" - #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s ve arkadaşları" -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" - #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -3954,51 +2026,6 @@ msgstr "" msgid "Avatar settings" msgstr "Ayarlar" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -4006,75 +2033,21 @@ msgstr "" msgid "Lost our file." msgstr "Böyle bir durum mesajı yok." -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" - #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Böyle bir kullanıcı yok." -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format, fuzzy msgid "The address \"%s\" has been " msgstr "Bu adres kaldırılmıştı." -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "" - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" - #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -4098,26 +2071,10 @@ msgstr "Takma ad yok" msgid "No such group" msgstr "Böyle bir durum mesajı yok." -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "" -"Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk " -"kullanılamaz. " +msgstr "Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk kullanılamaz. " #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -4136,23 +2093,10 @@ msgid "Options saved." msgstr "Ayarlar kaydedildi." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "Onay kodu hatası." -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -4161,28 +2105,7 @@ msgstr "Eposta adresi zaten var." #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " -"mesaj yollanabilmesi için onaylamanız gerekmektedir." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" +msgstr "Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size mesaj yollanabilmesi için onaylamanız gerekmektedir." #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -4190,13 +2113,6 @@ msgstr "" msgid "No notice content!" msgstr "İçerik yok!" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -4213,84 +2129,32 @@ msgstr "« Sonra" msgid "Before" msgstr "Önce »" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" - #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "Kullanıcı güncellenemedi." -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" - #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "Tercihler kaydedildi." -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" - #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "Profil" -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "Tercihler" -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "" - #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -4300,48 +2164,10 @@ msgid "Popular notices" msgstr "Böyle bir durum mesajı yok." #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" msgstr "Böyle bir durum mesajı yok." -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -4354,36 +2180,6 @@ msgstr "Avatar güncellendi." msgid "Failed updating logo." msgstr "Avatar güncellemede hata." -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -4391,65 +2187,35 @@ msgid "Create a new group" msgstr "Yeni hesap oluştur" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " -"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " -"karakterden oluşmalı. " +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Kişi Arama" -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" - -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Onay kodu yok." -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" - #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Zaten giriş yapmış durumdasıznız!" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" - #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -4463,44 +2229,12 @@ msgstr "Böyle bir durum mesajı yok." msgid "You are not a member of that group." msgstr "Bize o profili yollamadınız" -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "" - #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "OpenID formu yaratılamadı: %s" -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" - #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -4518,35 +2252,12 @@ msgstr "Abonelik oluşturulamadı." msgid "That's too long. " msgstr "Dosya çok büyük." -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" - #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Durum mesajları" -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" - #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -4562,24 +2273,11 @@ msgstr "OpenID'yi kaldır" msgid "Other Settings" msgstr "Ayarlar" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "Ara" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" - #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -4598,39 +2296,19 @@ msgid "Password change" msgstr "Parola kaydedildi." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "Geçersiz bir eposta adresi." -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Profil bilinmiyor" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "" - #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" msgstr "%s Geçersiz başlangıç sayfası" @@ -4642,69 +2320,34 @@ msgstr "Profil kaydedilemedi." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "Genel zaman çizgisi" -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" - -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " -msgstr "" -"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " -"verilmez" +msgstr "1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin verilmez" #: actions/register.php:382 actions/register.php:386 #, fuzzy msgid "Used only for updates, announcements, " -msgstr "" -"Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." +msgstr "Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." #: actions/register.php:398 #, fuzzy msgid "URL of your homepage, blog, " -msgstr "" -"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" +msgstr "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" #: actions/register.php:404 #, fuzzy @@ -4719,61 +2362,20 @@ msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "" -"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " -"numarası." - -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" +msgstr "bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon numarası." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "%s için cevaplar" -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "" - -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Böyle bir durum mesajı yok." -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4786,13 +2388,8 @@ msgstr "" msgid "Note" msgstr "Durum mesajları" -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "%s için durum RSS beslemesi" @@ -4804,36 +2401,6 @@ msgstr "%s için durum RSS beslemesi" msgid "Members" msgstr "Üyelik başlangıcı" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "" - -#: actions/showstream.php:73 actions/showstream.php:78 -#, php-format -msgid "%s, page %d" -msgstr "" - #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -4846,49 +2413,15 @@ msgstr "Profil" msgid "User profile" msgstr "Kullanıcının profili yok." -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -msgid "User actions" -msgstr "" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 -msgid "Send a direct message to this user" -msgstr "" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 -msgid "Message" -msgstr "" - #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Abone olanlar" -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " -msgstr "" -"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " -"verilmez" +msgstr "1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin verilmez" #: actions/smssettings.php:162 #, fuzzy @@ -4900,10 +2433,6 @@ msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." msgid "A confirmation code was sent to the phone number you added. " msgstr "O onay kodu sizin için değil!" -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" - #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4925,32 +2454,27 @@ msgid "Subscribed" msgstr "Abone ol" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "Abone olanlar" -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "%s adlı kullanıcının durumunu takip edenler" #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "%s adlı kullanıcının durumunu takip edenler" #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "Bütün abonelikler" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "Bütün abonelikler" @@ -4960,7 +2484,7 @@ msgid "These are the people whose notices " msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "%s adlı kullanıcının durumunu takip edenler" @@ -4971,15 +2495,10 @@ msgid "Jabber" msgstr "JabberID yok." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -4990,89 +2509,34 @@ msgstr "Giriş yapılmadı." msgid "No id argument." msgstr "Böyle bir belge yok." -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Avatar bilgisi kaydedilemedi" -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "Böyle bir durum mesajı yok." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" - #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "İstek bulunamadı!" -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "" - #: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Yeni parola" -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "" - -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " msgstr "Eposta onayı silinemedi." @@ -5086,100 +2550,27 @@ msgstr "Kullanıcıyı kaydetmede hata oluştu." msgid "No profile id in request." msgstr "Yetkilendirme isteği yok!" -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "" - #: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Aboneliği sonlandır" -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" - #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Avatar güncellemede hata." -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "" - -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" - #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Hakkında" -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -5200,10 +2591,6 @@ msgstr "Yardım" msgid "Site notice" msgstr "Yeni durum mesajı" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5214,39 +2601,12 @@ msgstr "Yeni durum mesajı" msgid "Secondary site navigation" msgstr "Abonelikler" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Böyle bir kullanıcı yok." -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "" - -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "" - -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -5265,38 +2625,10 @@ msgstr "Genel" msgid "Favor this notice" msgstr "Böyle bir durum mesajı yok." -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" - -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" - -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "" - -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" -msgstr "" -"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" +msgstr "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 @@ -5312,46 +2644,14 @@ msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" - #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Çıkış" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" - #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -5377,63 +2677,16 @@ msgstr "Geçersiz kullanıcı adı veya parola." msgid "Sign up for a new account" msgstr "Yeni hesap oluştur" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" - #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "" - -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" -msgstr "" - -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "" - -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "" - #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -5450,68 +2703,16 @@ msgstr "6 veya daha fazla karakter" msgid "in reply to" msgstr "...cevap olarak" -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "" - #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "cevapla" -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "" - -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" - -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "" - #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Genel" -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "" - -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "" - -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -5522,35 +2723,16 @@ msgstr "Kişi Arama" msgid "Notice" msgstr "Durum mesajları" -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "" - -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" - #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People %s subscribes to" msgstr "Uzaktan abonelik" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "Uzaktan abonelik" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -5562,40 +2744,24 @@ msgstr "Kullanıcının profili yok." msgid "Subscribe to this user" msgstr "Takip talebine izin verildi" -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "" - -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "" - #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Böyle bir kullanıcı yok." -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "" - #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" @@ -5604,108 +2770,30 @@ msgstr "%s için arkadaş güncellemeleri RSS beslemesi" msgid "You and friends" msgstr "%s ve arkadaşları" -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" - #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Avatar güncellendi." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "%s adli kullanicinin durum mesajlari" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " -"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " -"karakterden oluşmalı. " - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı. " #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr " \"%s\" için arama sonuçları" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı " -"ve parolanızı tekrar giriniz." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı ve parolanızı tekrar giriniz." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5722,35 +2810,10 @@ msgstr "Genel Durum Akış RSS Beslemesi" msgid "Public Stream Feed (Atom)" msgstr "Genel Durum Akış RSS Beslemesi" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " -"numarası." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon numarası." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5758,47 +2821,31 @@ msgstr "" msgid "Created" msgstr "Yarat" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Böyle bir durum mesajı yok." #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Profil" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "%s için durum RSS beslemesi" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "%s için durum RSS beslemesi" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "%s için durum RSS beslemesi" -#: actions/showstream.php:182 actions/showstream.php:147 -#, php-format -msgid "FOAF for %s" -msgstr "" - #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -5811,46 +2858,11 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Profil ayarları" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." msgstr "O onay kodu sizin için değil!" -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" - #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -5864,260 +2876,31 @@ msgstr "" msgid "No such user!" msgstr "Böyle bir kullanıcı yok." -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" - #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Eposta onayı silinemedi." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " -"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " -"bulunmadıysanız \"İptal\" tuşuna basın. " - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde bulunmadıysanız \"İptal\" tuşuna basın. " #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş " -"yapıp hesabınızı OpenID'nize bağlayabilirsiniz." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş yapıp hesabınızı OpenID'nize bağlayabilirsiniz." #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n" -"\n" -"\t%3$s\n" -"\n" -"Kendisini durumsuz bırakmayın!,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n\n %3$s\n\nKendisini durumsuz bırakmayın!,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Ara" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6134,19 +2917,15 @@ msgid "Block this user from this group" msgstr "Böyle bir kullanıcı yok." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Kullanıcının profili yok." #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s ve arkadaşları" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -6162,56 +2941,26 @@ msgstr "Yer" msgid "Do not delete this notice" msgstr "Böyle bir durum mesajı yok." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "%s Geçersiz başlangıç sayfası" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Takma ad kullanımda. Başka bir tane deneyin." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Avatar bilgisi kaydedilemedi" -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6222,28 +2971,11 @@ msgstr "Yeni durum mesajı" msgid "No notice" msgstr "Yeni durum mesajı" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "Geçersiz bir takma ad." -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6260,32 +2992,6 @@ msgstr "Bize o profili yollamadınız" msgid "Block user from group" msgstr "Böyle bir kullanıcı yok." -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6294,250 +3000,42 @@ msgstr "" msgid "Couldn't update your design." msgstr "Kullanıcı güncellenemedi." -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "Tercihler kaydedildi." -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Sonuç yok" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Kullanıcının profili yok." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Profil kaydedilemedi." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı " -"sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profil ayarları" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Eğer parolanızı unuttuysanız veya kaybettiyseniz, hesabınıza eklemiş " -"olduğunuz eposta adresine yeni bir tane gönderilmesini sağlayabilirsiniz." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Eğer parolanızı unuttuysanız veya kaybettiyseniz, hesabınıza eklemiş olduğunuz eposta adresine yeni bir tane gönderilmesini sağlayabilirsiniz." #: actions/recoverpassword.php:158 #, fuzzy @@ -6559,217 +3057,74 @@ msgstr "Onay kodu hatası." msgid "Subscribe to a remote user" msgstr "Takip talebine izin verildi" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "Böyle bir durum mesajı yok." -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s için durum RSS beslemesi" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s için durum RSS beslemesi" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Böyle bir kullanıcı yok." -#: actions/showstream.php:72 -#, php-format -msgid " tagged %s" -msgstr "" - #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "%s için durum RSS beslemesi" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s %2$s'da durumunuzu takip ediyor" #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s için durum RSS beslemesi" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "%s için durum RSS beslemesi" -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" - #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "Kullanıcı güncellenemedi." -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Kullanıcı güncellenemedi." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -6780,127 +3135,36 @@ msgstr "Bütün abonelikler" msgid "Profile design" msgstr "Profil ayarları" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Bize o profili yollamadınız" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/User.php:319 classes/User.php:327 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Kullanıcının profili yok." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profil" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Yükle" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Parolayı değiştir" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6916,189 +3180,49 @@ msgstr "Ara" msgid "Links" msgstr "Giriş" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Böyle bir kullanıcı yok." #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Böyle bir kullanıcı yok." -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "İçerik yok!" -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "Ara" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "Başlangıç sayfası adresi geçerli bir URL değil." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "Böyle bir durum mesajı yok." -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." -msgstr "" -"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" +msgstr "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." @@ -7108,7 +3232,7 @@ msgid "You are already a member of that group." msgstr "Zaten giriş yapmış durumdasıznız!" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Sunucuya yönlendirme yapılamadı: %s" @@ -7118,77 +3242,31 @@ msgid "You are not a member of this group." msgstr "Bize o profili yollamadınız" #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "OpenID formu yaratılamadı: %s" -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." -msgstr "" -"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" +msgstr "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "Desteklenmeyen görüntü dosyası biçemi." -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - #: actions/finishremotesubscribe.php:106 #, fuzzy msgid "You are not authorized." msgstr "Yetkilendirilmemiş." -#: actions/finishremotesubscribe.php:109 -msgid "Could not convert request token to access token." -msgstr "" - #: actions/finishremotesubscribe.php:114 #, fuzzy msgid "Remote service uses unknown version of OMB protocol." @@ -7204,51 +3282,23 @@ msgstr "Böyle bir durum mesajı yok." msgid "Cannot read file." msgstr "Böyle bir durum mesajı yok." -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne " -"duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " -"[OpenID](%%action.openidlogin%%) ile giriş yapın." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da [OpenID](%%action.openidlogin%%) ile giriş yapın." #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" @@ -7258,75 +3308,42 @@ msgid "Describe yourself and your interests" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Geçersiz profil adresi (YADIS belgesi yok)." -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" - -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "%s için durum RSS beslemesi" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "%s için cevaplar" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "%s için durum RSS beslemesi" @@ -7341,72 +3358,22 @@ msgid "SMS is not available." msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s için durum RSS beslemesi" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " -"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " -"bulunmadıysanız \"İptal\" tuşuna basın. " - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde bulunmadıysanız \"İptal\" tuşuna basın. " #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Avatar URLi '%s' okunamıyor" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "%s için yanlış resim türü" @@ -7421,35 +3388,12 @@ msgid "Site content license" msgstr "Yeni durum mesajı" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "%s için cevaplar" @@ -7458,136 +3402,33 @@ msgstr "%s için cevaplar" msgid "Error saving notice." msgstr "Durum mesajını kaydederken hata oluştu." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Onay kodu yok." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" - #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "%s için durum RSS beslemesi" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" - #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Yeni durum mesajı" + diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 9edddef485..8cbe9c9fba 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -9,14 +9,13 @@ # msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 19:59:57+0000\n" +"PO-Revision-Date: 2009-11-06 12:24:42+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: out-statusnet\n" @@ -30,11 +29,8 @@ msgstr " Потік пошуку для \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" -" окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний " -"номер." +msgid " except this private data: password, email address, IM address, phone number." +msgstr " окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний номер." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -56,61 +52,8 @@ msgstr "%1$s запросив(ла) вас приєднатися до ньог #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s (%3$s).\n" -"\n" -"%2$s це сервіс мікроблогів що дозволяє вам знаходитись у курсі подій, які " -"відбуваються з вашими знайомими і тими особами, якими ви цікавитесь.\n" -"\n" -"Також ви маєте можливість ділитись новинами про себе, своїми думками, " -"подіями у житті, розміщуючи все це у режимі \"онлайн\" для своїх знайомих та " -"друзів. А ще це чудовий спосіб зустріти нових друзів зі спільними " -"інтересами.\n" -"\n" -"%1$s говорить:\n" -"\n" -"%4$s\n" -"\n" -"Ви можете переглянути профіль %1$s на %2$s тут:\n" -"\n" -"%5$s\n" -"\n" -"Якщо ви виявили бажання спробувати користуватись даним сервісом, то " -"перейдіть за посиланням внизу, аби погодитись із запрошенням.\n" -"\n" -"%6$s\n" -"\n" -"Якщо ж ні, то просто проігноруйте це повідомлення. Дякуємо за розуміння та " -"витрачений час.\n" -"\n" -"Щиро ваші, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s (%3$s).\n\n%2$s це сервіс мікроблогів що дозволяє вам знаходитись у курсі подій, які відбуваються з вашими знайомими і тими особами, якими ви цікавитесь.\n\nТакож ви маєте можливість ділитись новинами про себе, своїми думками, подіями у житті, розміщуючи все це у режимі \"онлайн\" для своїх знайомих та друзів. А ще це чудовий спосіб зустріти нових друзів зі спільними інтересами.\n\n%1$s говорить:\n\n%4$s\n\nВи можете переглянути профіль %1$s на %2$s тут:\n\n%5$s\n\nЯкщо ви виявили бажання спробувати користуватись даним сервісом, то перейдіть за посиланням внизу, аби погодитись із запрошенням.\n\n%6$s\n\nЯкщо ж ні, то просто проігноруйте це повідомлення. Дякуємо за розуміння та витрачений час.\n\nЩиро ваші, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -120,20 +63,8 @@ msgstr "%1$s тепер слідкує за вашими повідомленя #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s тепер слідкує за вашими повідомленями на %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Щиро ваші,\n" -"%4$s.\n" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s тепер слідкує за вашими повідомленями на %2$s.\n\n %3$s\n\nЩиро ваші,\n%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -209,22 +140,14 @@ msgstr "%s оновлення від всіх!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться " -"інструкції щодо підтвердження вашої електронної адреси.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться інструкції щодо підтвердження вашої електронної адреси.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** це сервіс мікроблогів наданий вам [%%site.broughtby%%](%%" -"site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** це сервіс мікроблогів наданий вам [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -234,8 +157,7 @@ msgstr "**%%site.name%%** це сервіс мікроблогів. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "" -". Контрибутори мають бути зазначені повним ім'ям або ім'ям користувача." +msgstr ". Контрибутори мають бути зазначені повним ім'ям або ім'ям користувача." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -243,15 +165,12 @@ msgstr "" #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів" +msgstr "1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів. " -"Неодмінно." +msgstr "1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів. Неодмінно." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -272,30 +191,17 @@ msgstr "6 або більше знаків. Неодмінно." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Код підтвердження був відправлений на адресу IM, яку ви додали. Ви повинні " -"затведити %s для відправлення вам повідомлень." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Код підтвердження був відправлений на адресу IM, яку ви додали. Ви повинні затведити %s для відправлення вам повідомлень." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Код підтвердження був відправлений на електронну адресу, яку ви додали. " -"Перевірте вхідну пошту (і теку зі спамом також!), там має бути код та " -"подальші інструкції." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Код підтвердження був відправлений на електронну адресу, яку ви додали. Перевірте вхідну пошту (і теку зі спамом також!), там має бути код та подальші інструкції." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Код підтвердження був відправлений на телефонний номер, який ви додали. " -"Перевірте вхідні повідомлення, там має бути код та подальші інструкції." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Код підтвердження був відправлений на телефонний номер, який ви додали. Перевірте вхідні повідомлення, там має бути код та подальші інструкції." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -420,8 +326,7 @@ msgstr "Адреса" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 #: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" -msgstr "" -"Адреси друзів куди надсилатимуться запрошення (кожна адреса окремим рядком)" +msgstr "Адреси друзів куди надсилатимуться запрошення (кожна адреса окремим рядком)" #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 @@ -471,18 +376,13 @@ msgstr "Авторизувати підписку" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" -"Автоматично входити у майбутньому; не для комп'ютерів загального " -"користування!" +msgstr "Автоматично входити у майбутньому; не для комп'ютерів загального користування!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" -"Автоматично підписуватись до тих, хто підписався до мене (якщо ви бот, то це " -"саме для вас)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "Автоматично підписуватись до тих, хто підписався до мене (якщо ви бот, то це саме для вас)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -501,22 +401,13 @@ msgstr "Аватару оновлено." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Очікування підтвердження цієї адреси. Перевірте свій Jabber/GTalk рахунок, " -"там має бути повідомлення з подальшими інструкціями. (Ви додали %s до вашого " -"списку контактів?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Очікування підтвердження цієї адреси. Перевірте свій Jabber/GTalk рахунок, там має бути повідомлення з подальшими інструкціями. (Ви додали %s до вашого списку контактів?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Очікування підтвердження цієї адреси. Перевірте вхідну пошту (і теку зі " -"спамом також!), там має бути повідомлення з подальшими інструкціями." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Очікування підтвердження цієї адреси. Перевірте вхідну пошту (і теку зі спамом також!), там має бути повідомлення з подальшими інструкціями." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -653,37 +544,8 @@ msgstr "Код підтвердження не знайдено." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Вітаємо, %s! І ласкаво просимо до %%%%site.name%%%%. Звідси ви, можливо, " -"схочете...\n" -"\n" -"*Подивитись [ваш профіль](%s) та написати своє перше повідомлення.\n" -"*Додати [адресу Jabber/GTalk](%%%%action.imsettings%%%%), так щоб мати змогу " -"надсилати повідомлення через службу миттєвих повідомлень.\n" -"*[Розшукати людей](%%%%action.peoplesearch%%%%), які мають спільні з вами " -"інтереси.\n" -"*Оновити [налаштування профілю](%%%%action.profilesettings%%%%) аби інші " -"дізнались більше про вас.\n" -"*Прочитати [додаткову інформацію](%%%%doc.help%%%%), аби переконатись, що ви " -"нічого не пропустили. \n" -"\n" -"Дякуємо, що зареєструвались у нас, і, сподіваємось, вам сподобається наш " -"сервіс." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Вітаємо, %s! І ласкаво просимо до %%%%site.name%%%%. Звідси ви, можливо, схочете...\n\n*Подивитись [ваш профіль](%s) та написати своє перше повідомлення.\n*Додати [адресу Jabber/GTalk](%%%%action.imsettings%%%%), так щоб мати змогу надсилати повідомлення через службу миттєвих повідомлень.\n*[Розшукати людей](%%%%action.peoplesearch%%%%), які мають спільні з вами інтереси.\n*Оновити [налаштування профілю](%%%%action.profilesettings%%%%) аби інші дізнались більше про вас.\n*Прочитати [додаткову інформацію](%%%%doc.help%%%%), аби переконатись, що ви нічого не пропустили. \n\nДякуємо, що зареєструвались у нас, і, сподіваємось, вам сподобається наш сервіс." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -1090,12 +952,8 @@ msgid "Find people on this site" msgstr "Знайти людей на цьому сайті" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як " -"змінювати налаштування." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як змінювати налаштування." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1180,29 +1038,16 @@ msgstr "Налаштування IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Якщо ви вже маєте рахунок, увійдіть використовуючи ім'я та пароль, щоб " -"приєднати їх до вашого OpenID." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Якщо ви вже маєте рахунок, увійдіть використовуючи ім'я та пароль, щоб приєднати їх до вашого OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Якщо ви бажаєте додати OpenID до вашого рахунку, введіть адресу в поле нижче " -"і натисніть \"Додати\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Якщо ви бажаєте додати OpenID до вашого рахунку, введіть адресу в поле нижче і натисніть \"Додати\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"У разі, якщо ви забули або загубили свій пароль, ви маєте можливість " -"отримати новий на ту електронну адресу, яку було збережено у профілі вашого " -"рахунку." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "У разі, якщо ви забули або загубили свій пароль, ви маєте можливість отримати новий на ту електронну адресу, яку було збережено у профілі вашого рахунку." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1232,12 +1077,8 @@ msgstr "Неточне ім'я або пароль." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Інструкції з відновлення паролю було надіслано на електронну адресу, яку ви " -"вказали у налаштуваннях вашого профілю." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Інструкції з відновлення паролю було надіслано на електронну адресу, яку ви вказали у налаштуваннях вашого профілю." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1333,14 +1174,8 @@ msgstr "Запросити нових користувачів" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Сервіс працює на [StatusNet](http://status.net/) - програмному забезпеченні " -"для мікроблогів, версія %s, доступному під [GNU Affero General Public " -"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Сервіс працює на [StatusNet](http://status.net/) - програмному забезпеченні для мікроблогів, версія %s, доступному під [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1350,13 +1185,8 @@ msgstr "Jabber ID вже належить іншому користувачу." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Jabber або GTalk адреса, на зразок \"UserName@example.org\". Але спершу " -"переконайтеся, що додали %s до списку контактів в своєму IM-клієнті або в " -"GTalk." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber або GTalk адреса, на зразок \"UserName@example.org\". Але спершу переконайтеся, що додали %s до списку контактів в своєму IM-клієнті або в GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1423,14 +1253,8 @@ msgstr "Увійти з [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? " -"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%" -"action.openidlogin%%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? [Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1475,13 +1299,8 @@ msgstr "Мікроблог від %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Оператор мобільного зв'язку. Якщо вам відомий оператор, що підтримує " -"надсилання SMS через електронну пошту, але він тут не вказаний, напишіть нам " -"і ми внесемо його до списку." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Оператор мобільного зв'язку. Якщо вам відомий оператор, що підтримує надсилання SMS через електронну пошту, але він тут не вказаний, напишіть нам і ми внесемо його до списку." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1577,9 +1396,7 @@ msgstr "Це ім'я вже використовується. Спробуйте #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" -"Ім'я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " -"інтервалів." +msgstr "Ім'я користувача повинно складатись з літер нижнього регістру і цифр, ніяких інтервалів." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -2105,20 +1922,13 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Телефонний номер та регіональний код, ніякої пунктуації чи інтервалів" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " -"підписатись на повідомлення даного користувача. Якщо ви не збирались " -"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте підписатись на повідомлення даного користувача. Якщо ви не збирались підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" -"Надсилати повідомлення на сайт, коли мій статус Jabber/GTalk змінюється." +msgstr "Надсилати повідомлення на сайт, коли мій статус Jabber/GTalk змінюється." #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 @@ -2296,12 +2106,8 @@ msgid "Remove OpenID" msgstr "Видалити OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Ви входите лише з одним єдиним OpenID, якщо ви його видалите, то не зможете " -"увійти знову! Перед тим як видалити його, з початку додайте інший." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Ви входите лише з одним єдиним OpenID, якщо ви його видалите, то не зможете увійти знову! Перед тим як видалити його, з початку додайте інший." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2397,22 +2203,13 @@ msgstr "Живлення потоку пошуку" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Пошук повідомлень на %%site.name%% за їх змістом. Відокремлюйте пошукові " -"умови інтервалами; вони повинні складатись з 3 знаків або більше." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Пошук повідомлень на %%site.name%% за їх змістом. Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків або більше." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. " -"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " -"або більше." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків або більше." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2447,19 +2244,13 @@ msgstr "Повідомляти мене через Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Повідомляти мене за допомогою СМС; Я розімію, що, можливо, понесу надмірні " -"витрати від мого мобільного оператора." +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Повідомляти мене за допомогою СМС; Я розімію, що, можливо, понесу надмірні витрати від мого мобільного оператора." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Надсилати також мені відповіді через Jabber/GTalk від людей, до яких я не " -"підписаний." +msgstr "Надсилати також мені відповіді через Jabber/GTalk від людей, до яких я не підписаний." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2490,8 +2281,7 @@ msgstr "Сталося щось дивне." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 #: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." -msgstr "" -"Вибачте, але не затверджено жодної електронної адреси для вхідної пошти." +msgstr "Вибачте, але не затверджено жодної електронної адреси для вхідної пошти." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 #: scripts/maildaemon.php:57 scripts/maildaemon.php:56 @@ -2692,25 +2482,13 @@ msgstr "Адресу було видалено." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Підписку було авторизовано, але URL-адреса у відповідь не передавалася. " -"Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " -"авторизувати підписку. Ваш підписний токен:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Підписку було авторизовано, але URL-адреса у відповідь не передавалася. Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як авторизувати підписку. Ваш підписний токен:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь " -"з інструкціями на сайті для більш конкретної інформації про те, як скинути " -"підписку." +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як скинути підписку." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2736,8 +2514,7 @@ msgstr "Тут представлені ті, за чиїми повідомле #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" +msgid "These people are already users and you were automatically subscribed to them:" msgstr "Ці люди вже є користувачами і вас було автоматично підписано до них:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 @@ -2745,25 +2522,14 @@ msgid "This confirmation code is too old. Please start again." msgstr "Цей код підтвердження застарілий. Будь ласка, розпочніть спочатку." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Ця форма повинна автоматично репрезентувати себе системі. Якщо цього не " -"сталося, натисніть на кнопку представлення і ви будете перенаправлені до " -"вашого OpenID провайдера." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Ця форма повинна автоматично репрезентувати себе системі. Якщо цього не сталося, натисніть на кнопку представлення і ви будете перенаправлені до вашого OpenID провайдера." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Ви вперше увійшли до %s і ми повинні приєднати ваш OpenID до локального " -"рахунку. Ви можете також створити новий рахунок, або приєднати OpenID до " -"вашого вже існуючого рахунку, якщо ви його маєте." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Ви вперше увійшли до %s і ми повинні приєднати ваш OpenID до локального рахунку. Ви можете також створити новий рахунок, або приєднати OpenID до вашого вже існуючого рахунку, якщо ви його маєте." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2812,14 +2578,8 @@ msgstr "Часовий пояс не обрано." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Щоб підписатись, ви можете [увійти](%%action.login%%), або [зареєструвати](%%" -"action.register%%) новий рахунок. Якщо ви вже маєте рахунок на [сумісному " -"сайті](%%doc.openmublog%%), введіть URL-адресу вашого профілю нижче." +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Щоб підписатись, ви можете [увійти](%%action.login%%), або [зареєструвати](%%action.register%%) новий рахунок. Якщо ви вже маєте рахунок на [сумісному сайті](%%doc.openmublog%%), введіть URL-адресу вашого профілю нижче." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2873,12 +2633,8 @@ msgid "Unknown version of OMB protocol." msgstr "Невідома версія протоколу OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Якщо не зазначено інше, авторське право на вміст цього сайту належить " -"контрибуторам і доступне під " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Якщо не зазначено інше, авторське право на вміст цього сайту належить контрибуторам і доступне під " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2939,17 +2695,8 @@ msgid "Upload" msgstr "Завантажити" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Завантажити нову \"аватару\" (зображення користувача) можна тут. Ви не " -"зможете відредагувати свою аватару після завантаження, так що спочатку " -"переконайтесь, що вона має більш-менш квадратну форму. Ваше зображення " -"зберігатиметься під ліцензією сайту, також. Використовуйте зображення, які " -"належать вам, і які ви можете вільно демонструвати." +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Завантажити нову \"аватару\" (зображення користувача) можна тут. Ви не зможете відредагувати свою аватару після завантаження, так що спочатку переконайтесь, що вона має більш-менш квадратну форму. Ваше зображення зберігатиметься під ліцензією сайту, також. Використовуйте зображення, які належать вам, і які ви можете вільно демонструвати." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2957,11 +2704,8 @@ msgstr "Завантажити нове зображення користува #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Скористуйтесь ціїє формою аби запросити ваших друзів та колег до нашого " -"сервісу." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Скористуйтесь ціїє формою аби запросити ваших друзів та колег до нашого сервісу." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -3054,12 +2798,8 @@ msgid "You already have this OpenID!" msgstr "Ви вже маєте цей OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що " -"зворотня дія неможлива." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що зворотня дія неможлива." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -3091,31 +2831,19 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Ви можете отримувати СМС через електронну пошту від %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Ви можете видалити OpenID із свого рахунку, якщо натиснете кнопку \"Видалити" -"\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Ви можете видалити OpenID із свого рахунку, якщо натиснете кнопку \"Видалити\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Ви можете надсилати та отримувати повідомлення через Jabber/GTalk [службу " -"миттєвих повідомлень](%%doc.im%%). Вкажить свою адресу і налаштуйте опції " -"нижче." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Ви можете надсилати та отримувати повідомлення через Jabber/GTalk [службу миттєвих повідомлень](%%doc.im%%). Вкажить свою адресу і налаштуйте опції нижче." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Ви можете доповнити свій особистий профіль, так що люди знатимуть про вас " -"більше." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Ви можете доповнити свій особистий профіль, так що люди знатимуть про вас більше." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3139,24 +2867,8 @@ msgstr "Ви не надсилали нам цього профілю" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Ви маєте нову поштову адресу на %1$s.\n" -"\n" -"Надсилайте листи на %2$s, щоб друкувати нові повідомлення.\n" -"\n" -"Більше інформації про використання електронної пошти на %3$s.\n" -"\n" -"Щиро ваші,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Ви маєте нову поштову адресу на %1$s.\n\nНадсилайте листи на %2$s, щоб друкувати нові повідомлення.\n\nБільше інформації про використання електронної пошти на %3$s.\n\nЩиро ваші,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3172,12 +2884,8 @@ msgstr "Ви маєте спочатку увійти, аби мати змог #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Вас буде поінформовано, коли запрошені вами особи погодяться з запрошеннями " -"і зареєструються на сайті. Дякуємо, що сприяєте формуванню спільноти!" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Вас буде поінформовано, коли запрошені вами особи погодяться з запрошеннями і зареєструються на сайті. Дякуємо, що сприяєте формуванню спільноти!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3191,17 +2899,12 @@ msgstr "URL-адреса вашого OpenID" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "" -"Ваше ім'я користувача на цьому сервері, або зареєстрована електронна адреса." +msgstr "Ваше ім'я користувача на цьому сервері, або зареєстрована електронна адреса." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох " -"сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3324,8 +3027,7 @@ msgstr "« Вперед" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." +msgstr "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" @@ -3343,8 +3045,7 @@ msgstr "Обрати" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Надсилати мені листа, коли хтось додає моє повідомлення до списку обраних." +msgstr "Надсилати мені листа, коли хтось додає моє повідомлення до списку обраних." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 @@ -3395,17 +3096,12 @@ msgstr "Вхідні для %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" -"Це ваші вхідні повідомлення, тут містяться повідомлення надіслані приватно." +msgstr "Це ваші вхідні повідомлення, тут містяться повідомлення надіслані приватно." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" -"%1$s запросив(ла) вас приєднатись до %2$s (%3$s).\n" -"\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s запросив(ла) вас приєднатись до %2$s (%3$s).\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3447,11 +3143,8 @@ msgstr "Ви не можете надіслати повідомлення ць #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" -"Не надсилайте повідомлень самому собі; краще поговоріть з собою тихенько " -"вголос." +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "Не надсилайте повідомлень самому собі; краще поговоріть з собою тихенько вголос." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3497,14 +3190,11 @@ msgstr "Вихідні для %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Це ваші вихідні повідомлення, тут містяться повідомлення, які ви надіслали " -"приватно." +msgstr "Це ваші вихідні повідомлення, тут містяться повідомлення, які ви надіслали приватно." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " +msgid "Search for people on %%site.name%% by their name, location, or interests. " msgstr "Пошук людей на %%site.name%% за ім'ям, локацією або інтересами. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3556,12 +3246,8 @@ msgstr "Пароль має складатись з 6-ти або більше #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" -"Вітаємо, %s! Ласкаво просимо до %%%%site.name%%%%. Звідси ви можливо " -"схочете..." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "Вітаємо, %s! Ласкаво просимо до %%%%site.name%%%%. Звідси ви можливо схочете..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3657,8 +3343,7 @@ msgstr "Отримувача не знайдено." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" -"Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом." +msgstr "Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3685,20 +3370,12 @@ msgstr "%s додав(ла) ваше повідомлення до обрани #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%1$s щойно позначив(ла) ваше повідомлення від %2$s як одне з обраних ним" -"(нею)\n" -"\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s щойно позначив(ла) ваше повідомлення від %2$s як одне з обраних ним(нею)\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень " -"туди, " +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень туди, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3745,12 +3422,8 @@ msgstr "Підписатись до моїх друзів на Твіттері #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Ім'я користувача має складатись лише з цифр, літер верхнього та нижнього " -"регістрів та символів підкреслювання (_). 15 знаків це максимум." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Ім'я користувача має складатись лише з цифр, літер верхнього та нижнього регістрів та символів підкреслювання (_). 15 знаків це максимум." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3965,12 +3638,8 @@ msgstr "Користувач без відповідного профілю у #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" -"Тепер ви маєте нову адресу для надсилання повідомлень на %1$s.\n" -"\n" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "Тепер ви маєте нову адресу для надсилання повідомлень на %1$s.\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3979,17 +3648,12 @@ msgstr "Нове приватне повідомлення від %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" -"%1$s (%2$s) надіслав(ла) вам приватне повідомлення:\n" -"\n" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) надіслав(ла) вам приватне повідомлення:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." -msgstr "" -"Лише користувач має можливість переглядати свою власну поштову скриньку." +msgstr "Лише користувач має можливість переглядати свою власну поштову скриньку." #: lib/openid.php:195 lib/openid.php:203 msgid "This form should automatically submit itself. " @@ -4179,9 +3843,7 @@ msgstr "Редагувати групу %s" #: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 #: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" -msgstr "" -"Поштові скриньки для вхідних повідомлень мають бути дозволені для роботи у " -"групах" +msgstr "Поштові скриньки для вхідних повідомлень мають бути дозволені для роботи у групах" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 @@ -4265,8 +3927,7 @@ msgstr "Ця електронна адреса вже належить " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Код підтвердження був відправлений на електронну адресу, яку ви додали. " +msgstr "Код підтвердження був відправлений на електронну адресу, яку ви додали. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" @@ -4475,9 +4136,7 @@ msgstr "Групи, сторінка %d" #: actions/groups.php:90 #, php-format msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" -"Групи на сайті %%%%site.name%%%% надають вам можливість знайти та " -"спілкуватись з " +msgstr "Групи на сайті %%%%site.name%%%% надають вам можливість знайти та спілкуватись з " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 @@ -4486,8 +4145,7 @@ msgstr "Створити нову групу" #: actions/groupsearch.php:57 #, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " +msgid "Search for groups on %%site.name%% by their name, location, or description. " msgstr "Пошук груп на %%site.name%% за їх назвою, локацією або описом. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4617,11 +4275,8 @@ msgid "Ajax Error" msgstr "Помилка в Ajax" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" -"Цей користувач не дозволив себе \"розштовхувати\", або не підтвердив чи не " -"налаштував преференції електронної пошти." +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "Цей користувач не дозволив себе \"розштовхувати\", або не підтвердив чи не налаштував преференції електронної пошти." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4695,11 +4350,8 @@ msgstr "Інформація профілю" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" -"Позначте себе тегами (літери, цифри, -, . та _), відокремлюючи кожен комою " -"або пробілом" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Позначте себе тегами (літери, цифри, -, . та _), відокремлюючи кожен комою або пробілом" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4730,12 +4382,8 @@ msgstr "Не вдається відновити загальний потік." #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" -"Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/" -"wiki/Micro-blogging) " +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4754,8 +4402,7 @@ msgstr "Хмарка тегів" #: actions/register.php:177 actions/register.php:394 actions/register.php:183 #: actions/register.php:398 msgid "Sorry, only invited people can register." -msgstr "" -"Пробачте, але лише ті, кого було запрошено, мають змогу зареєструватись тут." +msgstr "Пробачте, але лише ті, кого було запрошено, мають змогу зареєструватись тут." #: actions/register.php:149 msgid "You can't register if you don't " @@ -4883,12 +4530,8 @@ msgstr "Всі учасники" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом " -"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4940,12 +4583,8 @@ msgstr "Всі групи" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" -"**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі " -"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -5050,23 +4689,16 @@ msgid "Tag user" msgstr "Позначити користувача" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" -"Позначити користувача тегами (літери, цифри, -, . та _), відокремлюючи кожен " -"комою або пробілом" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "Позначити користувача тегами (літери, цифри, -, . та _), відокремлюючи кожен комою або пробілом" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" -"Ви маєте можливість позначати тегами тих, до кого ви підписані, а також тих, " -"хто є підписаним до вас." +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "Ви маєте можливість позначати тегами тих, до кого ви підписані, а також тих, хто є підписаним до вас." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -5160,11 +4792,8 @@ msgstr "Проблема при збереженні повідомлення. #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" -"Дуже багато повідомлень за короткий термін; відпочиньте трошки і " -"повертайтесь за кілька хвилин." +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "Дуже багато повідомлень за короткий термін; відпочиньте трошки і повертайтесь за кілька хвилин." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5343,8 +4972,7 @@ msgstr "Опишіть групу або тему, вкладаючись у 140 #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Локація групи, на зразок \"Місто, область (або регіон), країна\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5408,12 +5036,8 @@ msgstr "Увійти або зареєструватись з OpenID" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" -"Ей, %s.\n" -"\n" +msgid "Hey, %s.\n\n" +msgstr "Ей, %s.\n\n" #: lib/mail.php:236 #, php-format @@ -5432,12 +5056,8 @@ msgstr "Веб-сторінка: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" -"Про себе: %s\n" -"\n" +msgid "Bio: %s\n\n" +msgstr "Про себе: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5605,17 +5225,17 @@ msgid "Unsubscribe from this user" msgstr "Відписатись від цього користувача" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Живлення для друзів %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Живлення для друзів %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Живлення для друзів %s" @@ -5625,7 +5245,7 @@ msgid "You and friends" msgstr "%s з друзями" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Ви можете завантажити вашу персональну аватару." @@ -5634,56 +5254,24 @@ msgstr "Ви можете завантажити вашу персональну msgid "Avatar deleted." msgstr "Аватару оновлено." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" -"Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що " -"зворотня дія неможлива." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що зворотня дія неможлива." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "" -"Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." +msgstr "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Надсилати мені листа, коли хтось шле приватне повідомлення для мене." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, fuzzy, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." msgstr "Ви маєте можливість завантажити логотип для вашої группи." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5692,29 +5280,14 @@ msgid "Pick a square area of the image to be the logo." msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Мікроблог від %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. " -"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " -"або більше." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків або більше." #: actions/newmessage.php:102 #, fuzzy @@ -5722,18 +5295,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Помилка при відправці прямого повідомлення." #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr " Потік пошуку для \"%s\"" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як " -"змінювати налаштування." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як змінювати налаштування." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5750,35 +5319,10 @@ msgstr "Живлення загального потоку" msgid "Public Stream Feed (Atom)" msgstr "Живлення загального потоку" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" -" окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний " -"номер." +msgid " except this private data: password, email address, IM address, and phone number." +msgstr " окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний номер." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5786,44 +5330,33 @@ msgstr "" msgid "Created" msgstr "Створити" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Профіль групи" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr " профіль" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Живлення повідомлень для %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Живлення повідомлень для %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Живлення повідомлень для %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Вихідні для %s" @@ -5839,47 +5372,10 @@ msgstr "Аватара" msgid "Edit profile settings" msgstr "Налаштування профілю" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Код підтвердження був відправлений на телефонний номер, який ви додали. " -"Перевірте вхідні повідомлення, там має бути код та подальші інструкції." - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Код підтвердження був відправлений на телефонний номер, який ви додали. Перевірте вхідні повідомлення, там має бути код та подальші інструкції." #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5896,28 +5392,18 @@ msgstr "Немає такого користувача" #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень " -"туди, " +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень туди, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Не маю можливості відновити інформацію для \"%s\" з Твіттера." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " -"підписатись на повідомлення даного користувача. Якщо ви не збирались " -"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте підписатись на повідомлення даного користувача. Якщо ви не збирались підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5926,12 +5412,8 @@ msgstr "Пошук людей або текстів" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" -"Дуже багато повідомлень за короткий термін; відпочиньте трошки і " -"повертайтесь за кілька хвилин." +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "Дуже багато повідомлень за короткий термін; відпочиньте трошки і повертайтесь за кілька хвилин." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5943,218 +5425,21 @@ msgstr "Зв'язок з ІМ, СМС, Твіттер" msgid "Badge" msgstr "\"Розштовхати\"" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " msgstr "Аби скористатись %s додатком для Facebook, ви маєте увійти " -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" - #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s тепер слідкує за вашими повідомленями на %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Щиро ваші,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s тепер слідкує за вашими повідомленями на %2$s.\n\n %3$s\n\nЩиро ваші,\n%4$s.\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Пошук" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6171,12 +5456,12 @@ msgid "Block this user from this group" msgstr "Список учасників цієї групи." #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Профіль користувача." #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s з друзями, сторінка %d" @@ -6200,56 +5485,26 @@ msgstr "Код підтвердження" msgid "Do not delete this notice" msgstr "Не можна видалити це повідомлення." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Недійсний тег: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Це ім'я вже використовується. Спробуйте інше." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Не можна позначити як обране." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6260,14 +5515,6 @@ msgstr "Нове повідомлення" msgid "No notice" msgstr "Нове повідомлення" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -6279,10 +5526,6 @@ msgstr "Це недійсне ім'я користувача." msgid "No group specified." msgstr "Не визначено жодного профілю." -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6299,18 +5542,6 @@ msgstr "Ви не є учасником цієї групи." msgid "Block user from group" msgstr "Блокувати користувача." -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6321,12 +5552,6 @@ msgstr "Ви маєте спочатку увійти, аби мати змог msgid "Group design" msgstr "Групи" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6359,233 +5584,46 @@ msgstr "Ви маєте бути наділені правами адмінис msgid "Make Admin" msgstr "Адмін" -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" - #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Немає результатів" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Користувач заблокував вас." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Повідомлення" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Не вдалося зберегти профіль." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох " -"сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Налаштування профілю" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - #: actions/public.php:245 actions/public.php:238 -#, fuzzy, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" -"Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/" -"wiki/Micro-blogging) " - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"У разі, якщо ви забули або загубили свій пароль, ви маєте можливість " -"отримати новий на ту електронну адресу, яку було збережено у профілі вашого " -"рахунку." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "У разі, якщо ви забули або загубили свій пароль, ви маєте можливість отримати новий на ту електронну адресу, яку було збережено у профілі вашого рахунку." #: actions/recoverpassword.php:158 #, fuzzy @@ -6607,87 +5645,30 @@ msgstr "Помилка з кодом підтвердження." msgid "Subscribe to a remote user" msgstr "Підписатись до цього користувача" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "Обрані повідомлення %s, сторінка %d" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Живлення повідомлень для групи %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Живлення повідомлень для групи %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Живлення повідомлень для групи %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, fuzzy, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" -"**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом " -"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -6700,84 +5681,33 @@ msgid "Not a local notice" msgstr "Такого користувача немає." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Повідомлення позначені з %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Живлення повідомлень для групи %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showstream.php:393 actions/showstream.php:492 -#, fuzzy, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" -"**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі " -"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s тепер слідкує за повідомленями " #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Живлення повідомлень для %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Живлення повідомлень для %s" @@ -6808,20 +5738,16 @@ msgid "Could not find target user." msgstr "Жодних статусів не виявлено." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Оновленні відповіді %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -6837,127 +5763,41 @@ msgstr "Підписки %s" msgid "Profile design" msgstr "Налаштування профілю" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Ви не є учасником цієї групи." -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблема при збереженні повідомлення." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "Повідомлення до %1$s на %2$s" -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Профіль користувача." -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Профіль" -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Завантажити" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" - #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Змінити ваш пароль" -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -6973,127 +5813,21 @@ msgstr "Пошук" msgid "Links" msgstr "Увійти" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Блок" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Блокувати користувача." #: lib/groupnav.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Add or edit %s design" msgstr "Додати або редагувати логотип %s" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" - #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -7109,26 +5843,11 @@ msgstr "Користувач" msgid "Search help" msgstr "Пошук" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "Веб-сторінка має недійсну URL-адресу." -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7136,12 +5855,12 @@ msgid "No such page" msgstr "Такого тегу немає." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Пряме повідомлення до %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Надто довго. Максимальний розмір 140 знаків." @@ -7150,12 +5869,8 @@ msgstr "Надто довго. Максимальний розмір 140 зна msgid "Could not unfollow user: User not found." msgstr "Не вдалося додати користувача: користувача не знайдено." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "опис надто довгий (140 знаків максимум)" @@ -7165,7 +5880,7 @@ msgid "You are already a member of that group." msgstr "Ви вже є учасником цієї групи" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Користувачеві %s не вдалось приєднатись до групи %s" @@ -7175,44 +5890,31 @@ msgid "You are not a member of this group." msgstr "Ви не є учасником цієї групи." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Не вдалося видалити користувача %s з групи %s" #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "Групи %s" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "%s бере участь в цих групах" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Діяльність групи" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Надто довго. Максимальний розмір повідомлення 140 знаків." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -7224,12 +5926,12 @@ msgid "Post to " msgstr "Фото" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "опис надто довгий (140 знаків максимум)" #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" @@ -7264,7 +5966,7 @@ msgid "Cannot read file." msgstr "Файл втрачено." #: actions/grouprss.php:133 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" @@ -7274,40 +5976,17 @@ msgid "IM is not available." msgstr "Ця сторінка не доступна в " #: actions/login.php:259 -#, fuzzy, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? " -"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%" -"action.openidlogin%%). " - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? [Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Всі оновлення за збігом з \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Опишіть себе та свої інтереси (140 знаків)" @@ -7317,20 +5996,13 @@ msgid "Describe yourself and your interests" msgstr "Опишіть себе та свої " #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Ви перевищили ліміт (140 знаків це максимум)" -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Це недійсна URL-адреса профілю (немає документа YADIS)." #: actions/remotesubscribe.php:176 @@ -7343,51 +6015,33 @@ msgstr "Це локальний профіль! Увійдіть аби підп msgid "Couldn’t get a request token." msgstr "Не вдалося отримати токен запиту." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Живлення повідомлень для групи %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Повідомлення до %1$s на %2$s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Живлення для обраних повідомлень від %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Живлення для обраних повідомлень від %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Живлення для обраних повідомлень від %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "Група %s" @@ -7402,80 +6056,32 @@ msgid "SMS is not available." msgstr "Ця сторінка не доступна в " #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Живлення повідомлень для %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " -"підписатись на повідомлення даного користувача. Якщо ви не збирались " -"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте підписатись на повідомлення даного користувача. Якщо ви не збирались підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Підписку було авторизовано, але URL-адреса у відповідь не передавалася. " -"Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " -"авторизувати підписку. Ваш підписний токен:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Підписку було авторизовано, але URL-адреса у відповідь не передавалася. Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як авторизувати підписку. Ваш підписний токен:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь " -"з інструкціями на сайті для більш конкретної інформації про те, як скинути " -"підписку." - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як скинути підписку." #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Не можна прочитати URL аватари '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Неправильний тип зображення для '%s'" @@ -7490,35 +6096,27 @@ msgid "Site content license" msgstr "Ліцензія StatusNet software" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Не вдалося оновити користувача з підтвердженною електронною адресою." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Спробу \"розштовхати\" зараховано" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" #: lib/command.php:431 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Відповісти на це повідомлення" @@ -7527,54 +6125,11 @@ msgstr "Відповісти на це повідомлення" msgid "Error saving notice." msgstr "Проблема при збереженні повідомлення." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Немає коду підтвердження." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -7591,70 +6146,25 @@ msgid "Describe the group or topic" msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Живлення повідомлень для %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s додав(ла) ваше повідомлення до обраних" -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " від " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7664,3 +6174,4 @@ msgstr "Не можна видалити зі списку обраних." #, fuzzy msgid "Duplicate notice" msgstr "Видалити повідомлення" + diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index 7f07471fae..914bf3562d 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -3,14 +3,13 @@ # -- msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 20:00:03+0000\n" +"PO-Revision-Date: 2009-11-06 12:24:45+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" "X-Message-Group: out-statusnet\n" @@ -24,8 +23,7 @@ msgstr " Tìm dòng thông tin cho \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." +msgid " except this private data: password, email address, IM address, phone number." msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" #: ../actions/showstream.php:400 ../lib/stream.php:109 @@ -48,60 +46,8 @@ msgstr "%1$s moi ban tham gia vao %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" -"%1$s mời bạn tham gia vào %2$s (%3$s).\n" -"\n" -"%2$s là dịch vụ tin nhắn nhanh giúp bạn liên kết với người quen và những " -"người yêu thích bạn.\n" -"\n" -"Bạn cũng có thể chia sẻ những suy nghĩ, thông tin về bạn, hoặc đời sống của " -"bạn lên trên mạng cho những người quen của bạn biết. Dịch vụ này cũng giúp " -"bạn gặp gỡ những người chưa quen biết nhưng có cùng sở thích.\n" -"\n" -"%1$s nói:\n" -"\n" -"%4$s\n" -"\n" -"Bạn có thể tham khảo trang thông tin cá nhân của %1$s trên %2$s tại đây:\n" -"\n" -"%5$s\n" -"\n" -"Nếu bạn muốn sử dụng dịch vụ này, hãy nhấn chuột vào liên kết dưới đây để " -"chấp nhận lời mời.\n" -"\n" -"%6$s\n" -"\n" -"Nếu không thích tham gia, bạn có thể bỏ qua tin nhắn này. Rất cảm ơn sự kiên " -"nhẫn vì đã làm mất thời gian của bạn.\n" -"\n" -"Thân, %2$s\n" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s mời bạn tham gia vào %2$s (%3$s).\n\n%2$s là dịch vụ tin nhắn nhanh giúp bạn liên kết với người quen và những người yêu thích bạn.\n\nBạn cũng có thể chia sẻ những suy nghĩ, thông tin về bạn, hoặc đời sống của bạn lên trên mạng cho những người quen của bạn biết. Dịch vụ này cũng giúp bạn gặp gỡ những người chưa quen biết nhưng có cùng sở thích.\n\n%1$s nói:\n\n%4$s\n\nBạn có thể tham khảo trang thông tin cá nhân của %1$s trên %2$s tại đây:\n\n%5$s\n\nNếu bạn muốn sử dụng dịch vụ này, hãy nhấn chuột vào liên kết dưới đây để chấp nhận lời mời.\n\n%6$s\n\nNếu không thích tham gia, bạn có thể bỏ qua tin nhắn này. Rất cảm ơn sự kiên nhẫn vì đã làm mất thời gian của bạn.\n\nThân, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -111,27 +57,8 @@ msgstr "%1$s đang theo dõi lưu ý của bạn trên %2$s." #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" -"%1$s đang theo dõi các tin nhắn của bạn trên %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Người bạn trung thành của bạn,\n" -"%4$s.\n" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s đang theo dõi các tin nhắn của bạn trên %2$s.\n\n %3$s\n\nNgười bạn trung thành của bạn,\n%4$s.\n" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -172,12 +99,12 @@ msgstr "%s và bạn bè" #: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 #: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 #: actions/publicrss.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s public timeline" msgstr "Dòng tin công cộng" #: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s status" msgstr "Trạng thái của %1$s vào %2$s" @@ -186,7 +113,7 @@ msgstr "Trạng thái của %1$s vào %2$s" #: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 #: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s timeline" msgstr "Dòng tin nhắn của %s" @@ -200,22 +127,14 @@ msgstr "%s cập nhật từ tất cả mọi người!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" -"(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email " -"của bạn.)" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email của bạn.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" -"**%%site.name%%** là dịch vụ gửi tin nhắn được cung cấp từ [%%site.broughtby%" -"%](%%site.broughtbyurl%%). " +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn được cung cấp từ [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -238,9 +157,7 @@ msgstr "1-64 chữ cái thường hoặc là chữ số, không có dấu chấm #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" -"1-64 chữ cái thường hoặc là chữ số, không có dấu chấm hay khoảng trắng. Bắt " -"buộc." +msgstr "1-64 chữ cái thường hoặc là chữ số, không có dấu chấm hay khoảng trắng. Bắt buộc." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -261,30 +178,18 @@ msgstr "Nhiều hơn 6 ký tự. Bắt buộc" #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" -"Mã xác nhận đã được gửi đến địa chỉ IM. Bạn phải chấp nhận %s để có thể gửi " -"tin nhắn đến bạn." +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "Mã xác nhận đã được gửi đến địa chỉ IM. Bạn phải chấp nhận %s để có thể gửi tin nhắn đến bạn." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" -"Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " -"làm theo hướng dẫn." +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và làm theo hướng dẫn." #: ../actions/smssettings.php:216 actions/smssettings.php:224 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" -"Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " -"làm theo hướng dẫn." +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và làm theo hướng dẫn." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -409,8 +314,7 @@ msgstr "Địa chỉ" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 #: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" -msgstr "" -"Các địa chỉ email của những người bạn muốn mời (mỗi địa chỉ nằm trên 1 dòng)" +msgstr "Các địa chỉ email của những người bạn muốn mời (mỗi địa chỉ nằm trên 1 dòng)" #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 @@ -465,8 +369,7 @@ msgstr "Sẽ tự động đăng nhập, không dành cho các máy sử dụng #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Tự động theo những người nào đăng ký theo tôi" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 @@ -486,21 +389,13 @@ msgstr "Hình đại diện đã được cập nhật." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" -"Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra tài khoản Jabber/GTalk để " -"nhận tin nhắn và lời hướng dẫn. (Bạn đã thêm %s vào danh sách bạn thân chưa?)" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra tài khoản Jabber/GTalk để nhận tin nhắn và lời hướng dẫn. (Bạn đã thêm %s vào danh sách bạn thân chưa?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" -"Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra hộp thư đến (hoặc thư rác) " -"để nhận tin nhắn và lời hướng dẫn." +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "Đang đợi xác nhận đến địa chỉ này. Hãy kiểm tra hộp thư đến (hoặc thư rác) để nhận tin nhắn và lời hướng dẫn." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -641,34 +536,8 @@ msgstr "Không tìm thấy mã xác nhận." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" -"Chúc mừng, %s! Chào mừng bạn đến với %%%%site.name%%%%. Bây giờ bạn có " -"thể...\n" -"\n" -"* Vào trang [Hồ sơ cá nhân](%s) của bạn và gửi tin nhắn đầu tiên. \n" -"* Thêm [địa chỉ Jabber/GTalk](%%%%action.imsettings%%%%) để có thể gửi tin " -"nhắn nhanh.\n" -"* [Tìm kiếm người quen](%%%%action.peoplesearch%%%%) mà bạn nghĩ là có thể " -"chia sẻ niềm vui.\n" -"* Đọc xuyên suốt [hướng dẫn](%%%%doc.help%%%%) để hiểu thêm về dịch vụ của " -"chúng tôi.\n" -"\n" -"Cảm ơn bạn đã đăng ký để là thành viên và rất mong bạn sẽ thích dịch vụ này." +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "Chúc mừng, %s! Chào mừng bạn đến với %%%%site.name%%%%. Bây giờ bạn có thể...\n\n* Vào trang [Hồ sơ cá nhân](%s) của bạn và gửi tin nhắn đầu tiên. \n* Thêm [địa chỉ Jabber/GTalk](%%%%action.imsettings%%%%) để có thể gửi tin nhắn nhanh.\n* [Tìm kiếm người quen](%%%%action.peoplesearch%%%%) mà bạn nghĩ là có thể chia sẻ niềm vui.\n* Đọc xuyên suốt [hướng dẫn](%%%%doc.help%%%%) để hiểu thêm về dịch vụ của chúng tôi.\n\nCảm ơn bạn đã đăng ký để là thành viên và rất mong bạn sẽ thích dịch vụ này." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -874,7 +743,7 @@ msgstr "Hiện tại" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 #: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, fuzzy, php-format +#, php-format, fuzzy msgid "DB error inserting hashtag: %s" msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" @@ -1067,7 +936,7 @@ msgstr "Chọn các phản hồi đến %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 #: actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for tag %s" msgstr "Chọn các phản hồi đến %s" @@ -1082,12 +951,8 @@ msgid "Find people on this site" msgstr "Tìm kiếm mọi người trên trang web này" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" -"Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay " -"đổi trong điều chỉnh." +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay đổi trong điều chỉnh." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1172,35 +1037,16 @@ msgstr "Cấu hình IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" -"Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết " -"nối với OpenId của bạn." +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết nối với OpenId của bạn." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" -"Bạn muốn thêm một OpenId vào tài khoản của bạn, đánh nó vào hộp dưới đây và " -"nhấn\" Thêm\"." +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "Bạn muốn thêm một OpenId vào tài khoản của bạn, đánh nó vào hộp dưới đây và nhấn\" Thêm\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Nếu bạn đã quên hoặc mất mật khẩu, bạn có thể tạo mới và được gửi đến địa " -"chỉ email lưu trong tài khoản của bạn." - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "" +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Nếu bạn đã quên hoặc mất mật khẩu, bạn có thể tạo mới và được gửi đến địa chỉ email lưu trong tài khoản của bạn." #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 #: actions/emailsettings.php:443 actions/emailsettings.php:450 @@ -1224,12 +1070,8 @@ msgstr "Sai tên đăng nhập hoặc mật khẩu." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" -"Hướng dẫn cách khôi phục mật khẩu đã được gửi đến địa chỉ email đăng ký " -"trong tài khoản của bạn." +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "Hướng dẫn cách khôi phục mật khẩu đã được gửi đến địa chỉ email đăng ký trong tài khoản của bạn." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1324,15 +1166,9 @@ msgstr "Gửi thư mời đến những người chưa có tài khoản" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 -#, fuzzy, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" -"Đang dùng [StatusNet](http://status.net/), phiên bản %s phát hành theo bản " -"quyền [GNU Affero General Public License](http://www.fsf.org/licensing/" -"licenses/agpl-3.0.html)." +#, php-format, fuzzy +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "Đang dùng [StatusNet](http://status.net/), phiên bản %s phát hành theo bản quyền [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1342,12 +1178,8 @@ msgstr "Jabber ID này đã thuộc về người khác rồi." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" -"Địa chỉ Jabber hoặc GTalk, giống như \"UserName@example.org\". Đầu tiên, hãy " -"tạo thêm %s vào danh sách buddy trên IM client hoặc GTalk của bạn." +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Địa chỉ Jabber hoặc GTalk, giống như \"UserName@example.org\". Đầu tiên, hãy tạo thêm %s vào danh sách buddy trên IM client hoặc GTalk của bạn." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1415,14 +1247,8 @@ msgstr "Đăng nhập bằng tài khoản [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" -"Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài " -"khoản, [hãy đăng ký](%%action.register%%) tài khoản mới, hoặc thử đăng nhập " -"bằng [OpenID](%%action.openidlogin%%). " +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài khoản, [hãy đăng ký](%%action.register%%) tài khoản mới, hoặc thử đăng nhập bằng [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1467,13 +1293,8 @@ msgstr "Microblog bởi %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" -"Nhà cung cấp dịch vụ điện thoại di động của bạn. Nếu bạn biết nhà cung cấp " -"dịch vụ điện thoại nào cho phép nhận SMS qua email mà chưa có trong danh " -"sách này, vui lòng gửi mail cho chúng tôi đến địa chỉ %s." +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "Nhà cung cấp dịch vụ điện thoại di động của bạn. Nếu bạn biết nhà cung cấp dịch vụ điện thoại nào cho phép nhận SMS qua email mà chưa có trong danh sách này, vui lòng gửi mail cho chúng tôi đến địa chỉ %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1787,8 +1608,7 @@ msgstr "Không có user nào." #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 #: actions/recoverpassword.php:272 msgid "No user with that email address or username." -msgstr "" -"Không tìm thấy người dùng nào tương ứng với địa chỉ email hoặc username đó." +msgstr "Không tìm thấy người dùng nào tương ứng với địa chỉ email hoặc username đó." #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" @@ -2101,14 +1921,8 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Số điện thoại, không cho phép nhập dấu chấm và ký tự " #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" -"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " -"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " -"của họ, hãy nhấn \"Hủy bỏ\"" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn của họ, hãy nhấn \"Hủy bỏ\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2292,12 +2106,8 @@ msgid "Remove OpenID" msgstr "Xóa OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" -"Việc xóa OpenID của bạn có thể sẽ không đăng nhập được! Nếu bạn cần xóa nó, " -"hãy tạo một OpenID khác trước đã." +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "Việc xóa OpenID của bạn có thể sẽ không đăng nhập được! Nếu bạn cần xóa nó, hãy tạo một OpenID khác trước đã." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2393,21 +2203,13 @@ msgstr "Tìm kiếm dòng thông tin" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" -"Tìm kiếm những tin nhắn trên %%site.name%% bằng nội dung. Chia các cụm từ " -"cần tìm bởi khoảng trắng; và phải là 3 ký tự trở lên." +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "Tìm kiếm những tin nhắn trên %%site.name%% bằng nội dung. Chia các cụm từ cần tìm bởi khoảng trắng; và phải là 3 ký tự trở lên." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " -"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2442,19 +2244,13 @@ msgstr "Hãy gửi tin nhắn đến tôi qua Jabber hay GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" -"Hãy gửi thông báo đến tôi qua SMS; Tôi biết là bạn đang phải trả giá cao " -"cho dịch vụ của chúng tôi. " +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "Hãy gửi thông báo đến tôi qua SMS; Tôi biết là bạn đang phải trả giá cao cho dịch vụ của chúng tôi. " #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" -"Gửi những tin nhắn trả lời của tôi từ những người mà tôi không theo qua " -"Jabber/GTalk." +msgstr "Gửi những tin nhắn trả lời của tôi từ những người mà tôi không theo qua Jabber/GTalk." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2692,24 +2488,13 @@ msgstr "Đã xóa địa chỉ." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Đăng nhận được phép, nhưng URL trả lại không được gởi trả. Hãy kiểm tra các " -"hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token " -"của bạn là:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Đăng nhận được phép, nhưng URL trả lại không được gởi trả. Hãy kiểm tra các hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token của bạn là:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra " -"các hướng dẫn chi tiết trên site để " +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra các hướng dẫn chi tiết trên site để " #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2735,35 +2520,22 @@ msgstr "Có nhiều người gửi lời nhắn để bạn nghe theo." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" -"Những người này đã là thành viên rồi và bạn chỉ cần nhấn nút \"Tôi theo " -"người này\" để theo họ:" +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "Những người này đã là thành viên rồi và bạn chỉ cần nhấn nút \"Tôi theo người này\" để theo họ:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Mã xác nhận quá cũ. Hãy thử lại cái khác." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" -"Trang này sẽ tự động gửi đi. Nếu không, hãy click lên nút Gửi để gửi đến nhà " -"cung cấp OpenID của bạn." +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "Trang này sẽ tự động gửi đi. Nếu không, hãy click lên nút Gửi để gửi đến nhà cung cấp OpenID của bạn." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" -"Đây là lần đầu tiên bạn đăng nhập vào %s, vì vậy chúng tôi phải kết nối tài " -"khoản OpenID của bạn với tài khoản trên site này. Bạn có thể tạo một tài " -"khoản mới, hoặc kết nối với tài khoản đã có của bạn, nếu như bạn đã có rồi." +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "Đây là lần đầu tiên bạn đăng nhập vào %s, vì vậy chúng tôi phải kết nối tài khoản OpenID của bạn với tài khoản trên site này. Bạn có thể tạo một tài khoản mới, hoặc kết nối với tài khoản đã có của bạn, nếu như bạn đã có rồi." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2803,30 +2575,11 @@ msgstr "Trang này không phải là phương tiện truyền thông mà bạn c msgid "Timezone" msgstr "Khu vực" -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" -"Để đăng ký, bạn cần [Đăng nhập](%%action.login%%), hoặc [Đăng ký](%%action." -"register%%) tài khoản mới. Nếu bạn đã có một tài khoản khác trên [site " -"microblogging tương ứng](%%doc.openmublog%%), hãy nhập URL về hồ sơ cá nhân " -"của bạn dưới đây." - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 -msgid "Two user ids or screen_names must be supplied." -msgstr "" +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "Để đăng ký, bạn cần [Đăng nhập](%%action.login%%), hoặc [Đăng ký](%%action.register%%) tài khoản mới. Nếu bạn đã có một tài khoản khác trên [site microblogging tương ứng](%%doc.openmublog%%), hãy nhập URL về hồ sơ cá nhân của bạn dưới đây." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2874,12 +2627,8 @@ msgid "Unknown version of OMB protocol." msgstr "Không biết phiên bản của giao thức OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" -"Nếu không có các quy định khác, nội dung của trang web này có bản quyền của " -"người đóng góp và theo bản quyền " +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "Nếu không có các quy định khác, nội dung của trang web này có bản quyền của người đóng góp và theo bản quyền " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2915,23 +2664,6 @@ msgstr "Thay đổi bởi SMS" msgid "Updates by instant messenger (IM)" msgstr "Thay đổi bởi tin nhắn nhanh (IM)" -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -2940,15 +2672,8 @@ msgid "Upload" msgstr "Tải file" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" -"Tải \"hình đại diện\" mới (hình cá nhân) tại đây. Bạn không thể chỉnh sửa " -"lại hình sau khi tải nó lên, vì thế nếu muốn hãy sửa trước khi tải lên. Hình " -"phải phù hợp " +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "Tải \"hình đại diện\" mới (hình cá nhân) tại đây. Bạn không thể chỉnh sửa lại hình sau khi tải nó lên, vì thế nếu muốn hãy sửa trước khi tải lên. Hình phải phù hợp " #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2956,11 +2681,8 @@ msgstr "Tải lên một file ảnh mới cho hồ sơ cá nhân" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" -"Điền địa chỉ email và nội dung tin nhắn để gửi thư mời bạn bè và đồng nghiệp " -"của bạn tham gia vào dịch vụ này." +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "Điền địa chỉ email và nội dung tin nhắn để gửi thư mời bạn bè và đồng nghiệp của bạn tham gia vào dịch vụ này." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -3053,9 +2775,7 @@ msgid "You already have this OpenID!" msgstr "Bạn đã có được tài khoản OpenID này rồi!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." msgstr "Bạn muốn xóa tin nhắn này? Sau khi xóa, bạn không thể lấy lại được." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 @@ -3089,30 +2809,19 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Bạn có thể nhận tin nhắn SMS qua email từ %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" -"Bạn có thể loại bỏ OpenID khỏi tài khoản của bạn bằng cách nhấn vào nút \"Xóa" -"\"." +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "Bạn có thể loại bỏ OpenID khỏi tài khoản của bạn bằng cách nhấn vào nút \"Xóa\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" -"Bạn có thể gửi và nhận những tin nhắn qua Jabber hoặc GTalk [tin nhắn nhanh]" -"(%%doc.im%%). Định dạng địa chỉ của bạn và các thiết lập sau." +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "Bạn có thể gửi và nhận những tin nhắn qua Jabber hoặc GTalk [tin nhắn nhanh](%%doc.im%%). Định dạng địa chỉ của bạn và các thiết lập sau." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" -"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " -"về bạn." +msgid "You can update your personal profile info here so people know more about you." +msgstr "Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin về bạn." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -3136,24 +2845,8 @@ msgstr "Bạn chưa cập nhật thông tin riêng" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" -"Bạn có địa chỉ mới để gửi tin nhắn trên %1$s.\n" -"\n" -"Hãy gửi email đến %2$s để có thể nhắn tin.\n" -"\n" -"Bạn có thể đọc hướng dẫn tại %3$s.\n" -"\n" -"Chúc sức khỏe,\n" -"%4$s" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "Bạn có địa chỉ mới để gửi tin nhắn trên %1$s.\n\nHãy gửi email đến %2$s để có thể nhắn tin.\n\nBạn có thể đọc hướng dẫn tại %3$s.\n\nChúc sức khỏe,\n%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -3169,12 +2862,8 @@ msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" -"Bạn sẽ nhận được thông báo khi những người được bạn mời nhận lời mời và đăng " -"ký vào trang web này. Cảm ơn bạn " +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "Bạn sẽ nhận được thông báo khi những người được bạn mời nhận lời mời và đăng ký vào trang web này. Cảm ơn bạn " #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -3192,12 +2881,8 @@ msgstr "Biệt hiệu của bạn đã tồn tại hoặc bạn đã đăng ký #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản " -"lý các OpenID của bạn ở đây." +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản lý các OpenID của bạn ở đây." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3253,11 +2938,6 @@ msgstr "1 năm trước" msgid "about an hour ago" msgstr "1 giờ trước" -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "" - #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 @@ -3343,9 +3023,7 @@ msgstr "Ưa thích" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "" -"Gửi email thông báo tôi khi có ai đó lưu tin nhắn của tôi vào danh sách ưa " -"thích của họ." +msgstr "Gửi email thông báo tôi khi có ai đó lưu tin nhắn của tôi vào danh sách ưa thích của họ." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 @@ -3380,7 +3058,7 @@ msgstr "%s ưa thích các tin nhắn" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 #: actions/favoritesrss.php:114 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed of favorite notices of %s" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" @@ -3399,10 +3077,8 @@ msgid "This is your inbox, which lists your incoming private messages." msgstr "Đây là hộp thư đến của bạn, bao gồm các tin nhắn gửi đến riêng cho bạn" #: actions/invite.php:178 actions/invite.php:213 -#, fuzzy, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" +#, php-format, fuzzy +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" msgstr "%1$s moi ban tham gia vao %2$s (%3$s).\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 @@ -3414,9 +3090,7 @@ msgstr "Sẽ tự động đăng nhập, không dành cho các máy sử dụng #: actions/login.php:122 actions/login.php:264 #, fuzzy msgid "For security reasons, please re-enter your " -msgstr "" -"Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay " -"đổi trong điều chỉnh." +msgstr "Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay đổi trong điều chỉnh." #: actions/login.php:126 actions/login.php:268 #, fuzzy @@ -3431,11 +3105,6 @@ msgstr "Sai tên đăng nhập hoặc mật khẩu." msgid "That's too long. Max message size is 140 chars." msgstr "Quá dài. Tối đa là 140 ký tự." -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 @@ -3446,16 +3115,6 @@ msgstr "" msgid "You can't send a message to this user." msgstr "Bạn đã theo những người này:" -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 #: actions/newmessage.php:116 actions/remotesubscribe.php:154 @@ -3475,32 +3134,24 @@ msgid "Notice without matching profile" msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" #: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" -"[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản " -"lý các OpenID của bạn ở đây." +msgstr "[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản lý các OpenID của bạn ở đây." #: actions/openidsettings.php:46 actions/openidsettings.php:96 #, fuzzy msgid "If you want to add an OpenID to your account, " -msgstr "" -"Bạn muốn thêm một OpenId vào tài khoản của bạn, đánh nó vào hộp dưới đây và " -"nhấn\" Thêm\"." +msgstr "Bạn muốn thêm một OpenId vào tài khoản của bạn, đánh nó vào hộp dưới đây và nhấn\" Thêm\"." #: actions/openidsettings.php:74 #, fuzzy msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" -"Việc xóa OpenID của bạn có thể sẽ không đăng nhập được! Nếu bạn cần xóa nó, " -"hãy tạo một OpenID khác trước đã." +msgstr "Việc xóa OpenID của bạn có thể sẽ không đăng nhập được! Nếu bạn cần xóa nó, hãy tạo một OpenID khác trước đã." #: actions/openidsettings.php:87 actions/openidsettings.php:143 #, fuzzy msgid "You can remove an OpenID from your account " -msgstr "" -"Bạn có thể loại bỏ OpenID khỏi tài khoản của bạn bằng cách nhấn vào nút \"Xóa" -"\"." +msgstr "Bạn có thể loại bỏ OpenID khỏi tài khoản của bạn bằng cách nhấn vào nút \"Xóa\"." #: actions/outbox.php:28 actions/outbox.php:58 #, php-format @@ -3514,24 +3165,17 @@ msgstr "Hộp thư đi của %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" -"Hộp thư gửi đi của bạn, bao gồm danh sách các tin nhắn gửi trực tiếp mà bạn " -"đã gửi." +msgstr "Hộp thư gửi đi của bạn, bao gồm danh sách các tin nhắn gửi trực tiếp mà bạn đã gửi." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" -"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " -"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." +#, php-format, fuzzy +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." #: actions/profilesettings.php:27 actions/profilesettings.php:69 #, fuzzy msgid "You can update your personal profile info here " -msgstr "" -"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " -"về bạn." +msgstr "Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin về bạn." #: actions/profilesettings.php:115 actions/remotesubscribe.php:320 #: actions/userauthorization.php:159 actions/userrss.php:76 @@ -3552,10 +3196,6 @@ msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" msgid "This confirmation code is too old. " msgstr "Mã xác nhận quá cũ. Hãy thử lại cái khác." -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - #: actions/recoverpassword.php:154 actions/recoverpassword.php:158 #, fuzzy msgid "You've been identified. Enter a " @@ -3583,24 +3223,10 @@ msgstr "Mật khẩu mới đã được lưu. Bạn có thể đăng nhập nga msgid "Password must be 6 or more characters." msgstr "Mật khẩu phải nhiều hơn 6 ký tự." -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - #: actions/register.php:227 #, fuzzy msgid "(You should receive a message by email momentarily, with " -msgstr "" -"(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email " -"của bạn.)" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" +msgstr "(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email của bạn.)" #: actions/showfavorites.php:61 actions/showfavorites.php:145 #: actions/showfavorites.php:147 @@ -3624,40 +3250,18 @@ msgstr "Không có tin nhắn nào." msgid "Only the sender and recipient may read this message." msgstr "Chỉ có người gửi hoặc người nhận mới có thể xem tin nhắn này" -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - #: actions/showstream.php:154 #, fuzzy msgid "Send a message" msgstr "Tin nhắn cá nhân" -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 #: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 #: actions/apidirectmessage.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages to %s" msgstr "Tin nhắn riêng" -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 #: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 #, fuzzy @@ -3667,7 +3271,7 @@ msgstr "Tin nhắn riêng" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 #: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 #: actions/apidirectmessage.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "All the direct messages sent from %s" msgstr "Bạn có tin nhắn riêng từ %s" @@ -3687,24 +3291,17 @@ msgstr "Không có tin nhắn nào." msgid "Recipient user not found." msgstr "Không tìm thấy user." -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 #: actions/apitimelinefavorites.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s / Favorites from %s" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 #: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 #: actions/apitimelinefavorites.php:119 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s updates favorited by %s / %s." msgstr "Tất cả các cập nhật của %s" @@ -3718,21 +3315,14 @@ msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 -#, fuzzy, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" -"%s da them tin nhan cua ban vao danh sach tin nhan ua thich\n" -"\n" +#, php-format, fuzzy +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich\n\n" #: actions/twittersettings.php:27 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" -"Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, " -"bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3767,11 +3357,6 @@ msgstr "Mật khẩu Twitter" msgid "Automatically send my notices to Twitter." msgstr "Tự động gửi tin nhắn của tôi đến Twitter." -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - #: actions/twittersettings.php:78 actions/twittersettings.php:153 #: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." @@ -3780,12 +3365,8 @@ msgstr "Đăng ký theo những bạn trên Twitter tại đây." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 #, fuzzy -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" -"Tên tài khoản phải là các chữ số, chữ cái thường hoặc viết hoa, hoặc là dấu " -"gạch dưới (_)." +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "Tên tài khoản phải là các chữ số, chữ cái thường hoặc viết hoa, hoặc là dấu gạch dưới (_)." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3793,7 +3374,7 @@ msgid "Could not verify your Twitter credentials!" msgstr "Không thể xác nhận tài khoản Twitter của bạn!" #: actions/twittersettings.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information for \"%s\" from Twitter." msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." @@ -3840,10 +3421,6 @@ msgstr "Không thể lưu các yêu cầu cho tài khoản Twitter. " msgid "Twitter preferences saved." msgstr "Các yêu cầu cho tài khoản Twitter đã lưu" -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - #: actions/userauthorization.php:324 actions/userauthorization.php:340 #, fuzzy msgid "The subscription has been authorized, but no " @@ -3860,21 +3437,13 @@ msgstr "Đăng nhận từ chối" msgid "Command results" msgstr "Không có kết quả nào" -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - #: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 #, fuzzy msgid "Command failed" msgstr " và bạn bè" -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - #: classes/Command.php:96 classes/Command.php:113 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Subscriptions: %1$s\n" msgstr "Tôi theo: %1$s\n" @@ -3894,44 +3463,38 @@ msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của b #: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 #: lib/command.php:182 lib/command.php:315 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s (%2$s)" msgstr "%s (%s)" #: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 #: lib/command.php:185 lib/command.php:318 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Fullname: %s" msgstr "Tên đầy đủ" #: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 #: lib/command.php:188 lib/command.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Location: %s" msgstr "Thành phố: %s" #: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 #: lib/command.php:191 lib/command.php:324 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Homepage: %s" msgstr "Trang chủ hoặc Blog: %s" #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 #: lib/command.php:194 lib/command.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "About: %s" msgstr "Giới thiệu" -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 #: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 #: lib/command.php:375 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct message to %s sent" msgstr "Tin nhắn riêng" @@ -3941,61 +3504,30 @@ msgstr "Tin nhắn riêng" msgid "Error sending direct message." msgstr "Thư bạn đã gửi" -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - #: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 #: lib/command.php:300 lib/command.php:502 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Subscribed to %s" msgstr "Theo nhóm này" -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - #: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 #: lib/command.php:328 lib/command.php:530 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unsubscribed from %s" msgstr "Hết theo" -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - #: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 #: lib/command.php:349 lib/command.php:551 #, fuzzy msgid "Notification off." msgstr "Không có mã số xác nhận." -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - #: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 #: lib/command.php:372 lib/command.php:574 #, fuzzy msgid "Notification on." msgstr "Không có mã số xác nhận." -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - #: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 #, fuzzy msgid "Could not insert message." @@ -4011,33 +3543,11 @@ msgstr "Không thể cập nhật thông tin user với địa chỉ email đã msgid "User without matching profile in system." msgstr "Hồ sơ ở nơi khác không khớp với hồ sơ này của bạn" -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Bạn có tin nhắn riêng từ %s" -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - #: lib/personal.php:65 lib/personalgroupnav.php:113 #: lib/personalgroupnav.php:114 msgid "Favorites" @@ -4050,11 +3560,6 @@ msgstr "Ưa thích" msgid "%s's favorite notices" msgstr "Những tin nhắn ưa thích của %s" -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personal.php:75 lib/personalgroupnav.php:123 #: lib/personalgroupnav.php:124 msgid "Inbox" @@ -4084,12 +3589,6 @@ msgstr "Tài khoản Twitter" msgid "Twitter integration options" msgstr "Các lựa chọn để tích hợp với Twitter " -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 #: scripts/maildaemon.php:47 #, fuzzy @@ -4099,16 +3598,14 @@ msgstr "Không thể cập nhật thành viên." #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" msgstr "%s và bạn bè" #: actions/avatarsettings.php:76 #, fuzzy msgid "You can upload your personal avatar." -msgstr "" -"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " -"về bạn." +msgstr "Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin về bạn." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 @@ -4117,14 +3614,6 @@ msgstr "" msgid "Avatar settings" msgstr "Thay đổi hình đại diện" -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 #: actions/avatarsettings.php:141 actions/avatarsettings.php:214 @@ -4153,17 +3642,6 @@ msgstr "Nhóm" msgid "There was a problem with your session token. " msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" - #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -4180,12 +3658,6 @@ msgstr "Không có tin nhắn nào." msgid "Unknown file type" msgstr "Không hỗ trợ kiểu file ảnh này." -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 #: actions/unblock.php:75 actions/groupblock.php:76 #: actions/groupunblock.php:76 actions/makeadmin.php:76 @@ -4208,12 +3680,8 @@ msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?" msgid "You have already blocked this user." msgstr "Bạn đã theo những người này:" -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - #: actions/confirmaddress.php:159 -#, fuzzy, php-format +#, php-format, fuzzy msgid "The address \"%s\" has been " msgstr "Đã xóa địa chỉ." @@ -4228,17 +3696,10 @@ msgid "Add to favorites" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" #: actions/editgroup.php:54 actions/editgroup.php:56 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Edit %s group" msgstr "%s và nhóm" -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 #: actions/grouplogo.php:70 actions/newgroup.php:65 @@ -4279,11 +3740,6 @@ msgstr "Không có user nào." msgid "You must be an admin to edit the group" msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" - #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -4306,7 +3762,7 @@ msgid "Options saved." msgstr "Đã lưu các điều chỉnh." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " msgstr "Đó không phải là số điện thoại của bạn." @@ -4320,11 +3776,6 @@ msgstr "Dia chi email moi de gui tin nhan den %s" msgid "Send me email when someone " msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" - #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -4333,28 +3784,7 @@ msgstr "Địa chỉ email GTalk này đã có người khác sử dụng rồi. #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" -"Mã xác nhận đã được gửi đến địa chỉ IM. Bạn phải chấp nhận %s để có thể gửi " -"tin nhắn đến bạn." - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" +msgstr "Mã xác nhận đã được gửi đến địa chỉ IM. Bạn phải chấp nhận %s để có thể gửi tin nhắn đến bạn." #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -4362,13 +3792,6 @@ msgstr "" msgid "No notice content!" msgstr "Không có nội dung!" -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -4385,11 +3808,6 @@ msgstr "Sau" msgid "Before" msgstr "Trước" -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - #: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" @@ -4397,28 +3815,16 @@ msgstr "Thư mời đã gửi đến:" #: actions/facebookinvite.php:96 actions/facebookinvite.php:102 #: actions/facebookinvite.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You have been invited to %s" msgstr "Bạn đã được xác định. Hãy nhập mật khẩu mới ở dưới." #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" msgstr "Mời bạn bè" -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" - #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." @@ -4449,15 +3855,6 @@ msgstr "Hãy gửi tin nhắn đến tôi qua Jabber/GTalk." msgid "Prefix" msgstr "Hồ sơ " -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" @@ -4477,7 +3874,7 @@ msgid "Popular notices" msgstr "Các tin nhắn bị cảnh báo" #: actions/favorited.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" msgstr "Các tin nhắn bị cảnh báo" @@ -4486,30 +3883,6 @@ msgstr "Các tin nhắn bị cảnh báo" msgid "The most popular notices on the site right now." msgstr "Các từ khóa phổ biến." -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - #: actions/grouplogo.php:138 actions/grouplogo.php:191 #: actions/grouplogo.php:144 actions/grouplogo.php:197 #: actions/grouplogo.php:139 actions/grouplogo.php:192 @@ -4517,10 +3890,6 @@ msgstr "" msgid "Group logo" msgstr "Mã nhóm" -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" - #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -4534,19 +3903,10 @@ msgid "Failed updating logo." msgstr "Cập nhật hình đại diện không thành công." #: actions/groupmembers.php:93 lib/groupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s group members" msgstr "Thành viên" -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 #: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 #: lib/subgroupnav.php:98 @@ -4555,15 +3915,10 @@ msgid "Groups" msgstr "Nhóm" #: actions/groups.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups, page %d" msgstr "Tên nhóm" -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" - #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -4571,12 +3926,9 @@ msgid "Create a new group" msgstr "Tạo nhóm" #: actions/groupsearch.php:57 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" -"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " -"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy @@ -4589,7 +3941,7 @@ msgid "You can send and receive notices through " msgstr "Bạn đã theo những người này:" #: actions/imsettings.php:120 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Jabber or GTalk address, " msgstr "Chưa nhập địa chỉ email GTalk" @@ -4599,7 +3951,7 @@ msgid "Send me replies through Jabber/GTalk " msgstr "Hãy gửi tin nhắn đến tôi qua Jabber/GTalk." #: actions/imsettings.php:321 -#, fuzzy, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " msgstr "Không có mã số xác nhận." @@ -4614,19 +3966,15 @@ msgid "You are already a member of that group" msgstr "Bạn đã theo những người này:" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." #: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s joined group %s" msgstr "%s và nhóm" -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - #: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." @@ -4658,34 +4006,21 @@ msgstr "Không thể cập nhật thành viên." #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." #: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s left group %s" msgstr "%s và nhóm" -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - #: actions/newgroup.php:53 #, fuzzy msgid "New group" msgstr "Tạo nhóm" -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" - #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -4721,11 +4056,6 @@ msgstr "Tin đã gửi" msgid "Ajax Error" msgstr "Lỗi" -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - #: actions/nudge.php:94 #, fuzzy msgid "Nudge sent" @@ -4751,24 +4081,11 @@ msgstr "Xóa OpenID" msgid "Other Settings" msgstr "Thiết lập tài khoản Twitter" -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "Tìm kiếm" -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" - #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -4787,31 +4104,15 @@ msgid "Password change" msgstr "Đã lưu mật khẩu." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" msgstr "Địa chỉ email không hợp lệ." -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Hồ sơ này không biết" -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - #: actions/profilesettings.php:144 #, fuzzy msgid "Automatically subscribe to whoever " @@ -4820,7 +4121,7 @@ msgstr "Tự động theo những người nào đăng ký theo tôi" #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" msgstr "Trang chủ '%s' không hợp lệ" @@ -4832,7 +4133,7 @@ msgstr "Không thể lưu hồ sơ cá nhân." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" msgstr "Dòng tin công cộng" @@ -4842,42 +4143,16 @@ msgstr "Dòng tin công cộng" msgid "Could not retrieve public stream." msgstr "Không thể lấy lại các tin nhắn ưa thích" -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Dòng tin công cộng" -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Bạn không thể đăng ký nếu không đồng ý các điều khoản." -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" - #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -4908,60 +4183,33 @@ msgstr "Bạn ở đâu, \"Thành phố, Tỉnh thành, Quốc gia\"" msgid " except this private data: password, " msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - #: actions/register.php:495 #, fuzzy msgid "(You should receive a message by email " -msgstr "" -"(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email " -"của bạn.)" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" +msgstr "(Bạn sẽ nhận email thông báo, hãy đọc hướng dẫn để xác nhận địa chỉ email của bạn.)" #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" msgstr "Trả lời cho %s" #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s favorite notices, page %d" msgstr "%s ưa thích các tin nhắn" #: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s group" msgstr "%s và nhóm" -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" - #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Thông tin nhóm" -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4981,7 +4229,7 @@ msgid "Group actions" msgstr "Mã nhóm" #: actions/showgroup.php:323 actions/showgroup.php:304 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" msgstr "Dòng tin nhắn cho %s" @@ -4992,35 +4240,19 @@ msgstr "Dòng tin nhắn cho %s" msgid "Members" msgstr "Thành viên" -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - #: actions/showgroup.php:370 actions/showgroup.php:350 #: actions/showgroup.php:384 actions/showgroup.php:392 #, fuzzy msgid "All members" msgstr "Thành viên" -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient " msgstr "Chỉ có người gửi hoặc người nhận mới có thể xem tin nhắn này" #: actions/showstream.php:73 actions/showstream.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s, page %d" msgstr "Hộp thư đến của %s - trang %d" @@ -5036,12 +4268,6 @@ msgstr "Hồ sơ" msgid "User profile" msgstr "Hồ sơ" -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy @@ -5070,13 +4296,6 @@ msgstr "Bạn này theo tôi" msgid "All groups" msgstr "Nhóm" -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -5118,12 +4337,12 @@ msgid "Subscribed" msgstr "Theo bạn này" #: actions/subscribers.php:50 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers" msgstr "Bạn này theo tôi" #: actions/subscribers.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscribers, page %d" msgstr "Theo tôi" @@ -5133,17 +4352,17 @@ msgid "These are the people who listen to " msgstr "Có nhiều người nghe theo lời nhắn của %s." #: actions/subscribers.php:67 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people who " msgstr "Có nhiều người nghe theo lời nhắn của %s." #: actions/subscriptions.php:52 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions" msgstr "Tất cả đăng nhận" #: actions/subscriptions.php:54 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" msgstr "Tất cả đăng nhận" @@ -5153,7 +4372,7 @@ msgid "These are the people whose notices " msgstr "Có nhiều người gửi lời nhắn để %s nghe theo." #: actions/subscriptions.php:69 -#, fuzzy, php-format +#, php-format, fuzzy msgid "These are the people whose " msgstr "Có nhiều người nghe theo lời nhắn của %s." @@ -5164,15 +4383,10 @@ msgid "Jabber" msgstr "Không có Jabber ID." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" msgstr "Dòng tin nhắn cho %s" -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" - #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -5184,7 +4398,7 @@ msgid "No id argument." msgstr "Không có tài liệu nào." #: actions/tagother.php:65 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Tag %s" msgstr "Từ khóa" @@ -5193,51 +4407,26 @@ msgstr "Từ khóa" msgid "Tag user" msgstr "Từ khóa" -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - #: actions/tagother.php:164 #, fuzzy msgid "There was a problem with your session token." msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" - #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" - #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "Không có tin nhắn nào." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" msgstr "Microblog bởi %s" -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" - #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy @@ -5247,9 +4436,7 @@ msgstr "Không tìm thấy" #: actions/twittersettings.php:71 #, fuzzy msgid "Add your Twitter account to automatically send " -msgstr "" -"Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, " -"bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." +msgstr "Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." #: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy @@ -5267,12 +4454,8 @@ msgstr "Mật khẩu Twitter" msgid "Twitter Friends" msgstr "Thiết lập tài khoản Twitter" -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" - #: actions/twittersettings.php:341 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." @@ -5298,32 +4481,16 @@ msgstr "Hết theo" #: actions/usergroups.php:63 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s groups" msgstr "%s và nhóm" -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" - #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" - #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" @@ -5335,32 +4502,11 @@ msgstr "Cập nhật hình đại diện không thành công." msgid "Other" msgstr "Sau" -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "" - #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" - #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" @@ -5371,18 +4517,6 @@ msgstr "Giới thiệu" msgid "Change your email, avatar, password, profile" msgstr "Thay đổi mật khẩu của bạn" -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" - #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -5403,10 +4537,6 @@ msgstr "Hướng dẫn" msgid "Site notice" msgstr "Thông báo mới" -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" - #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -5417,40 +4547,17 @@ msgstr "Thông báo mới" msgid "Secondary site navigation" msgstr "Tôi theo" -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" - #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Ban user" -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "" - #: lib/disfavorform.php:114 lib/disfavorform.php:140 #, fuzzy msgid "Disfavor this notice" msgstr "cảnh báo tin nhắn" -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -5469,34 +4576,12 @@ msgstr "Công cộng" msgid "Favor this notice" msgstr "Bạn muốn cảnh báo tin nhắn này?" -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" - -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" - #: lib/galleryaction.php:137 lib/galleryaction.php:138 #: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "Từ khóa" -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -5515,47 +4600,23 @@ msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Bạn ở đâu, \"Thành phố, Tỉnh thành, Quốc gia\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Nhóm" -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" - #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Thoát" -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - #: lib/groupsbymemberssection.php:71 #, fuzzy msgid "Groups with most members" msgstr "Thành viên" -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" - #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -5581,51 +4642,23 @@ msgstr "Sai tên đăng nhập hoặc mật khẩu." msgid "Sign up for a new account" msgstr "Tạo tài khoản mới" -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" - #: lib/mail.php:236 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." #: lib/mail.php:254 lib/mail.php:253 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Location: %s\n" msgstr "Thành phố: %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Homepage: %s\n" msgstr "Trang chủ hoặc Blog: %s\n" -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "" - -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" - #: lib/mail.php:555 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" @@ -5697,15 +4730,10 @@ msgid "Send a nudge to this user" msgstr "Bạn đã theo những người này:" #: lib/personaltagcloudsection.php:56 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Tags in %s's notices" msgstr "cảnh báo tin nhắn" -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "" - #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Công cộng" @@ -5721,10 +4749,6 @@ msgstr "Hồ sơ" msgid "Recent tags" msgstr "Các từ khóa hiện tại" -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -5740,32 +4764,21 @@ msgstr "Tin nhắn" msgid "Find groups on this site" msgstr "Tìm kiếm mọi người trên trang web này" -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" - #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People %s subscribes to" msgstr "Đăng nhận từ xa" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "People subscribed to %s" msgstr "Theo nhóm này" -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invite friends and colleagues to join you on %s" -msgstr "" -"Điền địa chỉ email và nội dung tin nhắn để gửi thư mời bạn bè và đồng nghiệp " -"của bạn tham gia vào dịch vụ này." +msgstr "Điền địa chỉ email và nội dung tin nhắn để gửi thư mời bạn bè và đồng nghiệp của bạn tham gia vào dịch vụ này." #: lib/subs.php:53 lib/subs.php:52 #, fuzzy @@ -5802,17 +4815,17 @@ msgid "Unsubscribe from this user" msgstr "Ngừng đăng ký từ người dùng này" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" msgstr "Chọn những người bạn của %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" msgstr "Chọn những người bạn của %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" msgstr "Chọn những người bạn của %s" @@ -5822,29 +4835,18 @@ msgid "You and friends" msgstr "%s và bạn bè" #: actions/avatarsettings.php:78 -#, fuzzy, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" -"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin " -"về bạn." +msgstr "Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin về bạn." #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Hình đại diện đã được cập nhật." -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." msgstr "Bạn muốn xóa tin nhắn này? Sau khi xóa, bạn không thể lấy lại được." #: actions/deletenotice.php:127 actions/deletenotice.php:157 @@ -5857,58 +4859,15 @@ msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Gửi email báo cho tôi biết khi có ai đó gửi tin nhắn riêng cho tôi." -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" - #: actions/grouprss.php:136 actions/grouprss.php:137 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Microblog by %s group" msgstr "Microblog bởi %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, fuzzy, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" -"Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của " -"họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "Tìm kiếm những người trên %%site.name%% bằng tên, vị trí, hoặc sở thích của họ. Chia các cụm từ bởi khoảng trắng; và phải là 3 ký tự trở lên." #: actions/newmessage.php:102 #, fuzzy @@ -5916,18 +4875,14 @@ msgid "Only logged-in users can send direct messages." msgstr "Thư bạn đã gửi" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" msgstr " Tìm dòng thông tin cho \"%s\"" #: actions/openidlogin.php:66 -#, fuzzy, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" -"Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay " -"đổi trong điều chỉnh." +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "Vì lý do bảo mật, bạn hãy nhập lại tên đăng nhập và mật khẩu trước khi thay đổi trong điều chỉnh." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5944,32 +4899,9 @@ msgstr "Dòng tin công cộng" msgid "Public Stream Feed (Atom)" msgstr "Dòng tin công cộng" -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" - #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." +msgid " except this private data: password, email address, IM address, and phone number." msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, số điện thoại" #: actions/showgroup.php:378 actions/showgroup.php:424 @@ -5978,44 +4910,33 @@ msgstr " ngoại trừ thông tin riêng: mật khẩu, email, địa chỉ IM, msgid "Created" msgstr "Tạo" -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Thông tin nhóm" #: actions/showstream.php:149 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's profile" msgstr "Hồ sơ" #: actions/showstream.php:163 actions/showstream.php:128 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" msgstr "Dòng tin nhắn cho %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" msgstr "Dòng tin nhắn cho %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s" msgstr "Hộp thư đi của %s" @@ -6031,60 +4952,16 @@ msgstr "Hình đại diện" msgid "Edit profile settings" msgstr "Các thiết lập cho Hồ sơ cá nhân" -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" - #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" -"Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và " -"làm theo hướng dẫn." +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "Mã xác nhận đã được gửi tới địa chỉ email của bạn. Hãy kiểm tra hộp thư và làm theo hướng dẫn." #: actions/twitapifavorites.php:171 lib/mail.php:556 #: actions/twitapifavorites.php:222 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" -"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " -"mình.\n" -"\n" -"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" -"\n" -"%3$s\n" -"\n" -"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" -"\n" -"%4$s\n" -"\n" -"Chúc sức khỏe,\n" -"%5$s\n" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nIn case you forgot, you can see the text of your notice here:\n\n%3$s\n\nYou can see the list of %1$s's favorites here:\n\n%4$s\n\nFaithfully yours,\n%5$s\n" +msgstr "%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của mình.\n\nBạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n\n%3$s\n\nBạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n\n%4$s\n\nChúc sức khỏe,\n%5$s\n" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -6101,291 +4978,49 @@ msgstr "Không có user nào." #: actions/twittersettings.php:72 #, fuzzy -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" -"Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, " -"bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "Hãy đăng ký tài khoản Twitter của bạn để có thể gửi tin nhắn đến Twitter, bạn cũng có thể đăng ký theo các bạn của mình trên Twitter tại đây." #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Không thể lấy thông tin tài khoản của '%s' từ Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" -"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " -"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " -"của họ, hãy nhấn \"Hủy bỏ\"" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn của họ, hãy nhấn \"Hủy bỏ\"" #: lib/action.php:671 lib/action.php:721 lib/action.php:736 #, fuzzy msgid "Badge" msgstr "Tin đã gửi" -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" - #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, fuzzy, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" -"Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết " -"nối với OpenId của bạn." - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết nối với OpenId của bạn." #: lib/mail.php:175 lib/mail.php:174 -#, fuzzy, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" -"Chào, %1$s .\n" -"\n" -"Không biết có phải bạn là người vừa nhập địa chỉ email này trên %2$s.\n" -"\n" -"Nếu bạn là người nhập, và bạn muốn xác nhận lại, hãy nhấn chuột vào đường " -"dẫn dưới đây: \n" -"\n" -"\t%3$s\n" -"\n" -"Nếu không phải bạn, hãy bỏ qua tin nhắn này.\n" -"\n" -"Cảm ơn bạn đã bỏ thời gian để đọc thư,\n" -"\n" -"%4$s\n" -"\n" +#, php-format, fuzzy +msgid "Hey, %s.\n\nSomeone just entered this email address on %s.\n\nIf it was you, and you want to confirm your entry, use the URL below:\n\n %s\n\nIf not, just ignore this message.\n\nThanks for your time, \n%s\n" +msgstr "Chào, %1$s .\n\nKhông biết có phải bạn là người vừa nhập địa chỉ email này trên %2$s.\n\nNếu bạn là người nhập, và bạn muốn xác nhận lại, hãy nhấn chuột vào đường dẫn dưới đây: \n\n %3$s\n\nNếu không phải bạn, hãy bỏ qua tin nhắn này.\n\nCảm ơn bạn đã bỏ thời gian để đọc thư,\n\n%4$s\n\n" #: lib/mail.php:241 lib/mail.php:240 -#, fuzzy, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" -"%1$s đang theo dõi các tin nhắn của bạn trên %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Người bạn trung thành của bạn,\n" -"%4$s.\n" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s đang theo dõi các tin nhắn của bạn trên %2$s.\n\n %3$s\n\nNgười bạn trung thành của bạn,\n%4$s.\n" #: lib/mail.php:513 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" -"%1$s (%2$s) đã gửi đến bạn tin nhắn riêng:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"Bạn có thể trả lời tại:\n" -"\n" -"%4$s\n" -"\n" -"Đừng trả lời lại thư này; sẽ không có ai nhận thư.\n" -"\n" -"Chúc sức khỏe,\n" -"%5$s\n" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +msgid "%1$s (%2$s) sent you a private message:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nYou can reply to their message here:\n\n%4$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%5$s\n" +msgstr "%1$s (%2$s) đã gửi đến bạn tin nhắn riêng:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nBạn có thể trả lời tại:\n\n%4$s\n\nĐừng trả lời lại thư này; sẽ không có ai nhận thư.\n\nChúc sức khỏe,\n%5$s\n" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Tìm kiếm" -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" - #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -6402,19 +5037,15 @@ msgid "Block this user from this group" msgstr "Ban user" #: actions/blockedfromgroup.php:90 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles" msgstr "Hồ sơ" #: actions/blockedfromgroup.php:93 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" msgstr "%s và bạn bè" -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" - #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -6430,56 +5061,26 @@ msgstr "Không có mã số xác nhận." msgid "Do not delete this notice" msgstr "Không thể xóa tin nhắn này." -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" - #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" msgstr "Trang chủ '%s' không hợp lệ" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" - #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Không thể tạo favorite." -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" - #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -6490,28 +5091,11 @@ msgstr "Thông báo mới" msgid "No notice" msgstr "Thông báo mới" -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" - #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "Biệt hiệu không hợp lệ." -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -6528,18 +5112,6 @@ msgstr "Bạn chưa cập nhật thông tin riêng" msgid "Block user from group" msgstr "Ban user" -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -6550,12 +5122,6 @@ msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những msgid "Group design" msgstr "Nhóm" -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" - #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -6583,10 +5149,6 @@ msgstr "Các tính năng đã được lưu." msgid "Make user an admin of the group" msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - #: actions/groupmembers.php:470 actions/groupmembers.php:473 #, fuzzy msgid "Make this user an admin" @@ -6598,220 +5160,35 @@ msgstr "Kênh mà bạn tham gia" msgid "No results." msgstr "Không có kết quả nào" -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Người dùng không có thông tin." -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Tin mới nhất" -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" - #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - #: actions/openidsettings.php:70 -#, fuzzy, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" -"[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản " -"lý các OpenID của bạn ở đây." - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản lý các OpenID của bạn ở đây." #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Các thiết lập cho Hồ sơ cá nhân" -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" - #: actions/recoverpassword.php:152 #, fuzzy -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" -"Nếu bạn đã quên hoặc mất mật khẩu, bạn có thể tạo mới và được gửi đến địa " -"chỉ email lưu trong tài khoản của bạn." +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "Nếu bạn đã quên hoặc mất mật khẩu, bạn có thể tạo mới và được gửi đến địa chỉ email lưu trong tài khoản của bạn." #: actions/recoverpassword.php:158 #, fuzzy @@ -6833,172 +5210,54 @@ msgstr "Lỗi xảy ra với mã xác nhận." msgid "Subscribe to a remote user" msgstr "Theo nhóm này" -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - #: actions/showfavorites.php:79 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" msgstr "%s ưa thích các tin nhắn" -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - #: actions/showgroup.php:323 actions/showgroup.php:328 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" msgstr "Dòng tin nhắn cho %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" - #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Không có user nào." #: actions/showstream.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid " tagged %s" msgstr "Thông báo được gắn thẻ %s" #: actions/showstream.php:121 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" - #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" #: actions/tag.php:91 actions/tag.php:98 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" msgstr "Dòng tin nhắn cho %s" @@ -7018,34 +5277,22 @@ msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của b msgid "Could not determine source user." msgstr "Không thể lấy lại các tin nhắn ưa thích" -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" - #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Không tìm thấy bất kỳ trạng thái nào." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Các cập nhật đang trả lời tới %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" msgstr "Dòng tin nhắn cho %s" -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" - #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -7056,88 +5303,31 @@ msgstr "Tất cả đăng nhận" msgid "Profile design" msgstr "Các thiết lập cho Hồ sơ cá nhân" -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." msgstr "Bạn chưa cập nhật thông tin riêng" -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" - #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Có lỗi xảy ra khi lưu tin nhắn." #: classes/User.php:319 classes/User.php:327 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" msgstr "%s chào mừng bạn " -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Hồ sơ" -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Hồ sơ " -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - #: lib/designsettings.php:101 #, fuzzy msgid "Change background image" @@ -7148,23 +5338,6 @@ msgstr "Background Theme:" msgid "Upload file" msgstr "Tải file" -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - #: lib/designsettings.php:161 #, fuzzy msgid "Tile background image" @@ -7195,175 +5368,41 @@ msgstr "Tìm kiếm" msgid "Links" msgstr "Đăng nhập" -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - #: lib/designsettings.php:257 #, fuzzy msgid "Save design" msgstr "Lưu" -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" - #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Ban user" #: lib/groupnav.php:101 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s blocked users" msgstr "Ban user" -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - #: lib/mail.php:556 -#, fuzzy, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" -"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " -"mình.\n" -"\n" -"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" -"\n" -"%3$s\n" -"\n" -"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" -"\n" -"%4$s\n" -"\n" -"Chúc sức khỏe,\n" -"%5$s\n" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" +#, php-format, fuzzy +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" +msgstr "%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của mình.\n\nBạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n\n%3$s\n\nBạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n\n%4$s\n\nChúc sức khỏe,\n%5$s\n" #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "Không có nội dung!" -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "Tìm kiếm" -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" - #: lib/webcolor.php:82 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" msgstr "Trang chủ không phải là URL" -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" - #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -7371,12 +5410,12 @@ msgid "No such page" msgstr "Không có tin nhắn nào." #: actions/apidirectmessage.php:89 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Direct messages from %s" msgstr "Tin nhắn riêng" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." msgstr "Quá dài. Tối đa là 140 ký tự." @@ -7385,12 +5424,8 @@ msgstr "Quá dài. Tối đa là 140 ký tự." msgid "Could not unfollow user: User not found." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" - #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" @@ -7400,7 +5435,7 @@ msgid "You are already a member of that group." msgstr "Bạn đã theo những người này:" #: actions/apigroupjoin.php:138 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." @@ -7410,60 +5445,43 @@ msgid "You are not a member of this group." msgstr "Bạn chưa cập nhật thông tin riêng" #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." #: actions/apigrouplist.php:95 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s's groups" msgstr "%s và nhóm" #: actions/apigrouplist.php:103 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." msgstr "Thành viên" #: actions/apigrouplistall.php:94 -#, fuzzy, php-format +#, php-format, fuzzy msgid "groups on %s" msgstr "Mã nhóm" -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, fuzzy, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." msgstr "Quá dài. Tối đa là 140 ký tự." -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "Không hỗ trợ kiểu file ảnh này." -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" - #: actions/editgroup.php:201 actions/newgroup.php:145 -#, fuzzy, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" #: actions/favoritesrss.php:115 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" msgstr "Tất cả các cập nhật của %s" @@ -7497,11 +5515,6 @@ msgstr "Không có tin nhắn nào." msgid "Cannot read file." msgstr "Không có tin nhắn nào." -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" - #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." @@ -7509,38 +5522,16 @@ msgstr "Trang này không phải là phương tiện truyền thông mà bạn c #: actions/login.php:259 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" -"Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài " -"khoản, [hãy đăng ký](%%action.register%%) tài khoản mới." - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài khoản, [hãy đăng ký](%%action.register%%) tài khoản mới." #: actions/noticesearchrss.php:91 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Các thay đổi phù hợp với từ \"%s\"" -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/profilesettings.php:122 actions/register.php:454 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" @@ -7550,76 +5541,47 @@ msgid "Describe yourself and your interests" msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" #: actions/profilesettings.php:221 actions/register.php:217 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - #: actions/remotesubscribe.php:168 #, fuzzy -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Không phải là URL về hồ sơ cá nhân hợp lệ (không phải là " -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" - #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Không thể lấy token yêu cầu." -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - #: actions/replies.php:158 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" msgstr "Dòng tin nhắn cho %s" #: actions/repliesrss.php:72 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" msgstr "Trả lời cho %s" #: actions/showfavorites.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" #: actions/showfavorites.php:177 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" #: actions/showfavorites.php:184 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" msgstr "Tìm kiếm các tin nhắn ưa thích của %s" -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" - #: actions/showgroup.php:345 -#, fuzzy, php-format +#, php-format, fuzzy msgid "FOAF for %s group" msgstr "%s và nhóm" @@ -7634,79 +5596,32 @@ msgid "SMS is not available." msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." #: actions/tag.php:92 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - #: actions/userauthorization.php:110 #, fuzzy -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" -"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " -"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " -"của họ, hãy nhấn \"Hủy bỏ\"" +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn của họ, hãy nhấn \"Hủy bỏ\"" #: actions/userauthorization.php:249 #, fuzzy -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" -"Đăng nhận được phép, nhưng URL trả lại không được gởi trả. Hãy kiểm tra các " -"hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token " -"của bạn là:" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "Đăng nhận được phép, nhưng URL trả lại không được gởi trả. Hãy kiểm tra các hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token của bạn là:" #: actions/userauthorization.php:261 #, fuzzy -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" -"Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra " -"các hướng dẫn chi tiết trên site để " - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra các hướng dẫn chi tiết trên site để " #: actions/userauthorization.php:343 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." msgstr "Không thể đọc URL cho hình đại diện '%s'" #: actions/userauthorization.php:348 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." msgstr "Kiểu file ảnh không phù hợp với '%s'" @@ -7721,35 +5636,17 @@ msgid "Site content license" msgstr "Tìm theo nội dung của tin nhắn" #: lib/command.php:88 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - #: lib/command.php:99 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" msgstr "Tin đã gửi" -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - #: lib/command.php:439 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Reply to %s sent" msgstr "Trả lời tin nhắn này" @@ -7758,58 +5655,11 @@ msgstr "Trả lời tin nhắn này" msgid "Error saving notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Không có mã số xác nhận." -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - #: lib/galleryaction.php:139 #, fuzzy msgid "Select tag to filter" @@ -7821,83 +5671,30 @@ msgid "Describe the group or topic" msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" #: lib/groupeditform.php:170 -#, fuzzy, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" #: lib/jabber.php:192 -#, fuzzy, php-format +#, php-format, fuzzy msgid "notice id: %s" msgstr "Dòng tin nhắn cho %s" #: lib/mail.php:554 -#, fuzzy, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" #: lib/mail.php:556 -#, fuzzy, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" -"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " -"mình.\n" -"\n" -"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" -"\n" -"%3$s\n" -"\n" -"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" -"\n" -"%4$s\n" -"\n" -"Chúc sức khỏe,\n" -"%5$s\n" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" +msgstr "%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của mình.\n\nBạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n\n%3$s\n\nBạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n\n%4$s\n\nChúc sức khỏe,\n%5$s\n" #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " từ " -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -7907,3 +5704,4 @@ msgstr "Không thể tạo favorite." #, fuzzy msgid "Duplicate notice" msgstr "Xóa tin nhắn" + diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index c3fd815ec9..089aeae0f2 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -1,125 +1,96 @@ -# Translation of StatusNet to Chinese (China) +# Translation of StatusNet to Simplified Chinese # # -- +# Messages of identi.ca +# Copyright (C) 2008 Gouki +# This file is distributed under the same license as the identi.ca package. +# Gouki , 2008 +# msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 20:00:12+0000\n" -"Language-Team: Chinese (China)\n" +"PO-Revision-Date: 2009-11-06 12:24:51+0000\n" +"Language-Team: Simplified Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-Language-Code: zh-cn\n" +"X-Language-Code: zh-hans\n" "X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" -msgstr "" +msgstr "搜索有关\"%s\"的消息" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" +msgid " except this private data: password, email address, IM address, phone number." +msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " -msgstr "" +msgstr " 从 " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 #: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" -msgstr "" +msgstr "%1$s / 回复 %2$s 的消息" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 #: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" -msgstr "" +msgstr "%1$s 邀请您加入 %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgstr "%1$s 邀请你加入 %2$s (%3$s).\n\n%2$s 是一个能让你和你认识的、感兴趣的人保持联系的微博客服务。 \n你可以和你认识的人分享你的近况、想法或者你的网络生活。你也可以结交有共同兴趣的新朋友。\n\n%1$s 说:\n\n%4$s\n\n你可以在这里查阅 %1$s's 的资料 %2$s :\n\n%5$s\n\n如果你想使用这个服务,请点击一下链接接受邀请。\n%6$s\n\n如果你不愿意,请跳过这条信息。感谢您的耐心和时间。\n\n诚挚的感谢, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "" +msgstr "%1$s 开始关注您的 %2$s 信息。" #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "%1$s 开始关注您的 %2$s 信息。\n\n %3$s\n\n为您效力的 %4$s\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 #: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" +msgstr "回复 %2$s / %3$s 的 %1$s 更新。" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 #: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" -msgstr "" +msgstr "%1$s 的 %2$s 状态" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 #: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" -msgstr "" +msgstr "%s 公开聚合" #: ../actions/all.php:47 ../actions/allrss.php:60 #: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 @@ -134,7 +105,7 @@ msgstr "" #: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" -msgstr "" +msgstr "%s 及好友" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 #: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 @@ -142,12 +113,12 @@ msgstr "" #: actions/publicrss.php:103 #, php-format msgid "%s public timeline" -msgstr "" +msgstr "%s 公众时间表" #: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" -msgstr "" +msgstr "%s 状态" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 #: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 @@ -156,7 +127,7 @@ msgstr "" #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" -msgstr "" +msgstr "%s 时间表" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 #: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 @@ -164,32 +135,28 @@ msgstr "" #: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" -msgstr "" +msgstr "来自所有人的 %s 消息!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" +msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" +msgstr "(您将收到一封邮件,包含了如何确认邮件地址的说明。)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%** 是一个微博客服务,提供者为 [%%site.broughtby%%](%%site.broughtbyurl%%)。" #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " -msgstr "" +msgstr "**%%site.name%%** 是一个微博客服务。" #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "" +msgstr "。贡献者应当有全名或昵称。" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -197,49 +164,43 @@ msgstr "" #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" +msgstr "1 到 64 个小写字母或数字,不包含标点及空白" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" +msgstr "1 到 64 个小写字母或数字,不包含标点及空白。此项必填。" #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" -msgstr "" +msgstr "6 个或更多字符" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 #: actions/recoverpassword.php:220 actions/recoverpassword.php:233 #: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" -msgstr "" +msgstr "6 个或更多字符,不能忘记!" #: ../actions/register.php:154 actions/register.php:168 #: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." -msgstr "" +msgstr "6 个或更多字符。此项必填。" #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" +msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "验证码已被发送到您新增的电子邮件。请检查收件箱(和垃圾箱),找到验证码并按要求使用它。" #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" +msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgstr "验证码已被发送到您新增的电话号码。请检查收件箱(和垃圾箱),找到验证码并按要求使用它。" #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -288,7 +249,7 @@ msgstr "" #: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 #: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" -msgstr "" +msgstr "API 方法未实现!" #: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 #: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 @@ -316,18 +277,18 @@ msgstr "" #: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 #: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." -msgstr "" +msgstr "API 方法尚未实现。" #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 msgid "About" -msgstr "" +msgstr "关于" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 #: actions/userauthorization.php:143 actions/userauthorization.php:178 #: actions/userauthorization.php:209 msgid "Accept" -msgstr "" +msgstr "接受" #: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 #: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 @@ -340,17 +301,17 @@ msgstr "" #: actions/emailsettings.php:126 actions/imsettings.php:133 #: actions/smssettings.php:145 msgid "Add" -msgstr "" +msgstr "添加" #: ../actions/openidsettings.php:43 actions/openidsettings.php:44 #: actions/openidsettings.php:93 msgid "Add OpenID" -msgstr "" +msgstr "添加 OpenID" #: ../lib/settingsaction.php:97 lib/settingsaction.php:91 #: lib/accountsettingsaction.php:117 msgid "Add or remove OpenIDs" -msgstr "" +msgstr "添加或移除 OpenID" #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 @@ -359,29 +320,29 @@ msgstr "" #: actions/smssettings.php:92 actions/emailsettings.php:100 #: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" -msgstr "" +msgstr "地址" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 #: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" -msgstr "" +msgstr "要邀请的好友地址(每行一个)" #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" -msgstr "" +msgstr "所有订阅" #: ../actions/publicrss.php:64 actions/publicrss.php:50 #: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" -msgstr "" +msgstr "所有 %s 消息" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 #: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" -msgstr "" +msgstr "所有匹配搜索条件\"%s\"的消息" #: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 #: ../actions/openidlogin.php:29 ../actions/register.php:30 @@ -391,37 +352,36 @@ msgstr "" #: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 #: actions/login.php:79 msgid "Already logged in." -msgstr "" +msgstr "已登录。" #: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." -msgstr "" +msgstr "已订阅!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 #: actions/deletenotice.php:113 actions/deletenotice.php:114 #: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" -msgstr "" +msgstr "确定要删除这条消息吗?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 msgid "Authorize subscription" -msgstr "" +msgstr "确认订阅" #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" +msgstr "保持这台机器上的登录状态。不要在共用的机器上保持登录!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -430,36 +390,33 @@ msgstr "" #: actions/showgroup.php:216 actions/showgroup.php:221 #: lib/accountsettingsaction.php:111 msgid "Avatar" -msgstr "" +msgstr "头像" #: ../actions/avatar.php:113 actions/profilesettings.php:350 #: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." -msgstr "" +msgstr "头像已更新。" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "正在等待这个地址的确认。请查阅你Jabber/GTalk的帐户看有没有收到进一步的指示。(你是否已经添加 %s为你的好友?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" +msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgstr "等待确认此地址。请查看您的收件箱(和垃圾箱)是否收到了邮件,其中包含了进一步的指示。" #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." -msgstr "" +msgstr "等待确认此电话号码。" #: ../lib/util.php:1318 lib/util.php:1452 +#, fuzzy msgid "Before »" -msgstr "" +msgstr "下一页 »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 @@ -467,7 +424,7 @@ msgstr "" #: actions/register.php:448 actions/profilesettings.php:127 #: actions/register.php:459 msgid "Bio" -msgstr "" +msgstr "自述" #: ../actions/profilesettings.php:101 ../actions/register.php:82 #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 @@ -476,18 +433,18 @@ msgstr "" #: actions/updateprofile.php:107 actions/updateprofile.php:109 #: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." -msgstr "" +msgstr "自述过长(不能超过140字符)。" #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 #: actions/deletenotice.php:71 msgid "Can't delete this notice." -msgstr "" +msgstr "无法删除通告。" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" -msgstr "" +msgstr "无法访问头像URL '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 @@ -495,7 +452,7 @@ msgstr "" #: actions/passwordsettings.php:174 actions/recoverpassword.php:365 #: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." -msgstr "" +msgstr "无法保存新密码。" #: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 #: ../actions/smssettings.php:62 actions/emailsettings.php:58 @@ -504,48 +461,48 @@ msgstr "" #: actions/smssettings.php:114 actions/emailsettings.php:117 #: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" -msgstr "" +msgstr "取消" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 #: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." -msgstr "" +msgstr "无法创建 OpenID 用户对象。" #: ../actions/imsettings.php:163 actions/imsettings.php:171 #: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" -msgstr "" +msgstr "无法识别此Jabber ID" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 #: actions/emailsettings.php:311 actions/emailsettings.php:318 #: actions/emailsettings.php:326 msgid "Cannot normalize that email address" -msgstr "" +msgstr "无法识别此电子邮件" #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" -msgstr "" +msgstr "修改" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 #: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" -msgstr "" +msgstr "修改电子邮件" #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" -msgstr "" +msgstr "修改密码" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 #: lib/accountsettingsaction.php:115 msgid "Change your password" -msgstr "" +msgstr "修改密码" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 #: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" -msgstr "" +msgstr "修改您的个人信息" #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 @@ -557,12 +514,12 @@ msgstr "" #: actions/passwordsettings.php:111 actions/recoverpassword.php:239 #: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" -msgstr "" +msgstr "确认" #: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 #: actions/confirmaddress.php:144 msgid "Confirm Address" -msgstr "" +msgstr "确认地址" #: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 #: ../actions/smssettings.php:245 actions/emailsettings.php:256 @@ -572,60 +529,46 @@ msgstr "" #: actions/emailsettings.php:394 actions/imsettings.php:367 #: actions/smssettings.php:386 msgid "Confirmation cancelled." -msgstr "" +msgstr "已取消确认。" #: ../actions/smssettings.php:63 actions/smssettings.php:63 #: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" -msgstr "" +msgstr "确认码" #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." -msgstr "" +msgstr "未找到确认码。" #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgstr "恭喜, %s! 欢迎来到 %%%%site.name%%%%. 这里,你需要\n\n* 查看你的资料Go to [your profile](%s) 发布你的第一条消息.\n* 填加 [Jabber/GTalk address](%%%%action.imsettings%%%%) 然后你可以通过即时消息平台发布信息。\n* [Search for people](%%%%action.peoplesearch%%%%) 你认识的或和你有共同兴趣的朋友。 \n* 更新你的 [profile settings](%%%%action.profilesettings%%%%) 告诉大家更多关于你的情况。 \n* 请阅读 [online docs](%%%%doc.help%%%%) 有的功能也许你还不熟悉。\n\n感谢您的注册,希望您喜欢这个服务。" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 #: lib/action.php:425 lib/action.php:435 msgid "Connect" -msgstr "" +msgstr "连接" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 #: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" -msgstr "" +msgstr "连接现有帐号" #: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 #: lib/action.php:719 lib/action.php:734 msgid "Contact" -msgstr "" +msgstr "联系人" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 #: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" -msgstr "" +msgstr "无法创建 OpenID 表单:%s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 @@ -634,47 +577,47 @@ msgstr "" #: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "" +msgstr "无法订阅用户:%s 已在订阅列表中。" #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 #: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." -msgstr "" +msgstr "无法订阅用户:未找到。" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" -msgstr "" +msgstr "无法重定向到服务器:%s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 #: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" -msgstr "" +msgstr "无法保存头像" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 #: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" -msgstr "" +msgstr "无法保存个人信息" #: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." -msgstr "" +msgstr "无法订阅他人更新。" #: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." -msgstr "" +msgstr "无法订阅。" #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "" +msgstr "无法更新已确认的电子邮件。" #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "" +msgstr "无法将请求标记转换为访问令牌。" #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -685,21 +628,21 @@ msgstr "" #: actions/emailsettings.php:382 actions/emailsettings.php:390 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." -msgstr "" +msgstr "无法删除电子邮件确认。" #: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." -msgstr "" +msgstr "无法删除订阅。" #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 #: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." -msgstr "" +msgstr "找不到任何信息。" #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." -msgstr "" +msgstr "无法获得一份请求标记。" #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 @@ -709,25 +652,25 @@ msgstr "" #: actions/emailsettings.php:352 actions/imsettings.php:317 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." -msgstr "" +msgstr "无法插入验证码。" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 #: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." -msgstr "" +msgstr "无法添加新的订阅。" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 #: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." -msgstr "" +msgstr "无法保存个人信息。" #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 #: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." -msgstr "" +msgstr "无法更新用户的自动订阅选项。" #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 @@ -738,7 +681,7 @@ msgstr "" #: actions/emailsettings.php:455 actions/emailsettings.php:477 #: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." -msgstr "" +msgstr "无法更新用户记录。" #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 @@ -760,71 +703,71 @@ msgstr "" #: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/smssettings.php:420 msgid "Couldn't update user." -msgstr "" +msgstr "无法更新用户。" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 #: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" -msgstr "" +msgstr "创建" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 #: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." -msgstr "" +msgstr "创建使用此昵称的新用户。" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 #: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" -msgstr "" +msgstr "创建新帐号" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." -msgstr "" +msgstr "为 OpenID 用户产生新的帐号。" #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." -msgstr "" +msgstr "已确认的Jabber/GTalk帐号。" #: ../actions/smssettings.php:46 actions/smssettings.php:46 #: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." -msgstr "" +msgstr "已确认的可以发送SMS短消息的电话号码。" #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 #: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." -msgstr "" +msgstr "已确认的电子邮件。" #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" -msgstr "" +msgstr "目前" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 #: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" -msgstr "" +msgstr "添加标签时数据库出错:%s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" -msgstr "" +msgstr "添加回复时数据库出错:%s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 #: actions/deletenotice.php:79 actions/deletenotice.php:111 #: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" -msgstr "" +msgstr "删除通告" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 #: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" -msgstr "" +msgstr "用不超过140个字符描述您自己和您的爱好" #: ../actions/register.php:158 ../actions/register.php:161 #: ../lib/settingsaction.php:87 actions/register.php:172 @@ -833,108 +776,108 @@ msgstr "" #: actions/register.php:427 actions/register.php:431 actions/register.php:435 #: lib/accountsettingsaction.php:117 msgid "Email" -msgstr "" +msgstr "电子邮件" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 #: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" -msgstr "" +msgstr "电子邮件地址" #: ../actions/emailsettings.php:32 actions/emailsettings.php:32 #: actions/emailsettings.php:60 msgid "Email Settings" -msgstr "" +msgstr "电子邮件设置" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." -msgstr "" +msgstr "电子邮件地址已存在。" #: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" -msgstr "" +msgstr "电子邮件地址确认" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 #: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" -msgstr "" +msgstr "电子邮件,类似 \"UserName@example.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 #: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" -msgstr "" +msgstr "电子邮件地址" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." -msgstr "" +msgstr "输入昵称或电子邮件。" #: ../actions/smssettings.php:64 actions/smssettings.php:64 #: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." -msgstr "" +msgstr "输入手机收到的验证码。" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" -msgstr "" +msgstr "无法认证令牌" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 #: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 #: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." -msgstr "" +msgstr "无法将用户与 OpenID 连接。" #: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 #: actions/finishaddopenid.php:126 msgid "Error connecting user." -msgstr "" +msgstr "无法连接用户。" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 #: lib/oauthstore.php:291 msgid "Error inserting avatar" -msgstr "" +msgstr "添加头像出错" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 #: lib/oauthstore.php:283 msgid "Error inserting new profile" -msgstr "" +msgstr "添加个人信息出错" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 #: lib/oauthstore.php:311 msgid "Error inserting remote profile" -msgstr "" +msgstr "添加远程的个人信息出错" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 #: actions/recoverpassword.php:280 actions/recoverpassword.php:298 #: actions/recoverpassword.php:301 msgid "Error saving address confirmation." -msgstr "" +msgstr "保存地址确认时出错。" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 #: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" -msgstr "" +msgstr "保存远程的个人信息时出错" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 #: lib/openid.php:238 msgid "Error saving the profile." -msgstr "" +msgstr "保存个人信息时出错。" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 #: lib/openid.php:249 msgid "Error saving the user." -msgstr "" +msgstr "保存用户时出错。" #: ../actions/password.php:80 actions/profilesettings.php:399 #: actions/passwordsettings.php:164 actions/passwordsettings.php:169 #: actions/passwordsettings.php:175 msgid "Error saving user; invalid." -msgstr "" +msgstr "保存用户时出错;不正确。" #: ../actions/login.php:47 ../actions/login.php:73 #: ../actions/recoverpassword.php:307 ../actions/register.php:98 @@ -945,74 +888,72 @@ msgstr "" #: actions/register.php:235 actions/login.php:122 #: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." -msgstr "" +msgstr "保存用户设置时出错。" #: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 #: actions/finishaddopenid.php:131 msgid "Error updating profile" -msgstr "" +msgstr "更新个人信息时出错" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 #: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" -msgstr "" +msgstr "更新远程的个人信息时出错" #: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 #: actions/recoverpassword.php:86 msgid "Error with confirmation code." -msgstr "" +msgstr "验证码出错。" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 #: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" -msgstr "" +msgstr "昵称已被使用" #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 #: lib/action.php:708 lib/action.php:723 msgid "FAQ" -msgstr "" +msgstr "常见问题FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 #: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." -msgstr "" +msgstr "更新头像失败。" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 #: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" -msgstr "" +msgstr "%s 好友的聚合" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 #: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" -msgstr "" +msgstr "%s 回复的聚合" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 #: actions/tag.php:68 #, php-format msgid "Feed for tag %s" -msgstr "" +msgstr "%s 标签的聚合" #: ../lib/searchaction.php:105 lib/searchaction.php:105 #: lib/searchgroupnav.php:83 msgid "Find content of notices" -msgstr "" +msgstr "搜索通告内容" #: ../lib/searchaction.php:101 lib/searchaction.php:101 #: lib/searchgroupnav.php:81 msgid "Find people on this site" -msgstr "" +msgstr "搜索用户信息" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "由于安全原因,修改设置前需要输入用户名和密码。" #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1025,7 +966,7 @@ msgstr "" #: actions/profilesettings.php:111 actions/register.php:441 #: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" -msgstr "" +msgstr "全名" #: ../actions/profilesettings.php:98 ../actions/register.php:79 #: ../actions/updateprofile.php:93 actions/profilesettings.php:213 @@ -1039,19 +980,19 @@ msgstr "" #: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/register.php:214 msgid "Full name is too long (max 255 chars)." -msgstr "" +msgstr "全名过长(不能超过 255 个字符)。" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 #: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 #: lib/action.php:456 lib/action.php:719 msgid "Help" -msgstr "" +msgstr "帮助" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 #: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 #: lib/action.php:417 lib/action.php:430 msgid "Home" -msgstr "" +msgstr "主页" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 @@ -1060,7 +1001,7 @@ msgstr "" #: lib/groupeditform.php:161 actions/profilesettings.php:115 #: actions/register.php:446 msgid "Homepage" -msgstr "" +msgstr "主页" #: ../actions/profilesettings.php:95 ../actions/register.php:76 #: actions/profilesettings.php:210 actions/register.php:83 @@ -1072,140 +1013,132 @@ msgstr "" #: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/register.php:211 msgid "Homepage is not a valid URL." -msgstr "" +msgstr "主页的URL不正确。" #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 #: actions/emailsettings.php:173 actions/emailsettings.php:178 #: actions/emailsettings.php:185 msgid "I want to post notices by email." -msgstr "" +msgstr "我希望通过邮件发布信息。" #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 #: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" -msgstr "" +msgstr "即时通讯IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" -msgstr "" +msgstr "IM 帐号" #: ../actions/imsettings.php:33 actions/imsettings.php:33 #: actions/imsettings.php:59 msgid "IM Settings" -msgstr "" +msgstr "IM 设置" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "如果您已经拥有帐号,可以将它连接到您的 OpenID。请输入用户名和密码。" #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "如果您希望添加新的 OpenID,输入它并点击“添加”。" #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "如果您忘记了密码,可以使用此邮箱收到新的密码。" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 #: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" -msgstr "" +msgstr "发布用的电子邮件" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 #: actions/emailsettings.php:443 actions/emailsettings.php:450 #: actions/smssettings.php:518 actions/smssettings.php:519 #: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." -msgstr "" +msgstr "发布用的电子邮件被移除。" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 #: actions/passwordsettings.php:164 msgid "Incorrect old password" -msgstr "" +msgstr "旧密码不正确" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 #: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 #: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." -msgstr "" +msgstr "用户名或密码不正确。" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "恢复密码的指示已被发送到您的注册邮箱。" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" -msgstr "" +msgstr "头像URL '%s'不正确" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 #: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" -msgstr "" +msgstr "电子邮件地址 %s 不正确" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" -msgstr "" +msgstr "主页'%s'不正确" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 #: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" -msgstr "" +msgstr "授权方式URL '%s'不正确" #: ../actions/postnotice.php:61 actions/postnotice.php:62 #: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" -msgstr "" +msgstr "通告内容不正确" #: ../actions/postnotice.php:67 actions/postnotice.php:68 #: actions/postnotice.php:72 msgid "Invalid notice uri" -msgstr "" +msgstr "通告URI不正确" #: ../actions/postnotice.php:72 actions/postnotice.php:73 #: actions/postnotice.php:77 msgid "Invalid notice url" -msgstr "" +msgstr "通告URL不正确" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 #: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." -msgstr "" +msgstr "个人信息URL '%s'不正确。" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 #: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" -msgstr "" +msgstr "个人信息URL不正确(格式错误)" #: ../actions/finishremotesubscribe.php:77 #: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 msgid "Invalid profile URL returned by server." -msgstr "" +msgstr "服务器返回的个人信息URL不正确。" #: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." -msgstr "" +msgstr "大小不正确。" #: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 #: ../actions/register.php:111 actions/finishopenidlogin.php:241 @@ -1215,62 +1148,57 @@ msgstr "" #: actions/finishopenidlogin.php:307 actions/register.php:230 #: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." -msgstr "" +msgstr "用户名或密码不正确。" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 #: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" -msgstr "" +msgstr "已发送邀请" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 #: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" -msgstr "" +msgstr "已发送邀请给这些人:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 #: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 #: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" -msgstr "" +msgstr "邀请" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 #: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" -msgstr "" +msgstr "邀请新用户" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" +msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgstr "它运行[StatusNet](http://status.net/)微博客服务,版本 %s,采用[GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)授权。" #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." -msgstr "" +msgstr "Jabber ID 属于另一用户。" #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" +msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgstr "Jabber 或 GTalk 帐号,类似\"UserName@example.org\"。首先,必须在即时聊天工具或GTalk中将 %s 加为好友。" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 #: actions/profilesettings.php:144 msgid "Language" -msgstr "" +msgstr "语言" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 #: actions/profilesettings.php:217 actions/profilesettings.php:218 #: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." -msgstr "" +msgstr "语言过长(不能超过50个字符)。" #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -1287,7 +1215,7 @@ msgstr "" #: actions/userauthorization.php:158 lib/groupeditform.php:177 #: lib/profilelist.php:218 msgid "Location" -msgstr "" +msgstr "位置" #: ../actions/profilesettings.php:104 ../actions/register.php:85 #: ../actions/updateprofile.php:108 actions/profilesettings.php:219 @@ -1301,7 +1229,7 @@ msgstr "" #: actions/newgroup.php:148 actions/profilesettings.php:225 #: actions/register.php:221 msgid "Location is too long (max 255 chars)." -msgstr "" +msgstr "位置过长(不能超过255个字符)。" #: ../actions/login.php:97 ../actions/login.php:106 #: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 @@ -1315,69 +1243,64 @@ msgstr "" #: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" -msgstr "" +msgstr "登录" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 #: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "" +msgstr "使用[OpenID](%%doc.openid%%)帐号登录。" #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgstr "请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, 或使用 [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" -msgstr "" +msgstr "登出" #: ../actions/register.php:166 actions/register.php:180 #: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" -msgstr "" +msgstr "长名字,最好是“实名”" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" -msgstr "" +msgstr "忘记了密码?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 #: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "" +msgstr "生成新的电子邮件地址用于发布信息;取消旧的。" #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 #, php-format msgid "Manage how you get email from %%site.name%%." -msgstr "" +msgstr "设置 %%site.name%% 发送的邮件。" #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" -msgstr "" +msgstr "用户始于" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 #: actions/userrss.php:93 #, php-format msgid "Microblog by %s" -msgstr "" +msgstr "%s 的微博客服务" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" +msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgstr "电话的服务商。如果您的服务商支持通过电子邮件发送SMS短信,而这里尚未列出,请联系 %s 以告知。" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1385,36 +1308,36 @@ msgstr "" #: actions/register.php:430 actions/finishopenidlogin.php:106 #: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " -msgstr "" +msgstr "我的文字和文件采用的授权方式为" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 #: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" -msgstr "" +msgstr "新建" #: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" -msgstr "" +msgstr "新的电子邮件地址,用于发布 %s 信息" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 #: actions/emailsettings.php:465 actions/emailsettings.php:472 #: actions/smssettings.php:542 actions/smssettings.php:543 #: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." -msgstr "" +msgstr "已添加新的发布用的电子邮件地址。" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" -msgstr "" +msgstr "新昵称" #: ../actions/newnotice.php:87 actions/newnotice.php:96 #: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" -msgstr "" +msgstr "新通告" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 @@ -1422,12 +1345,12 @@ msgstr "" #: actions/recoverpassword.php:232 actions/passwordsettings.php:107 #: actions/recoverpassword.php:235 msgid "New password" -msgstr "" +msgstr "新密码" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "" +msgstr "新密码已保存,您现在已登录。" #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1443,7 +1366,7 @@ msgstr "" #: actions/profilesettings.php:106 actions/register.php:417 #: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" -msgstr "" +msgstr "昵称" #: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 #: ../actions/register.php:69 actions/finishopenidlogin.php:181 @@ -1457,7 +1380,7 @@ msgstr "" #: actions/newgroup.php:130 actions/profilesettings.php:231 #: actions/register.php:202 msgid "Nickname already in use. Try another one." -msgstr "" +msgstr "昵称已被使用,换一个吧。" #: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 #: ../actions/register.php:67 ../actions/updateprofile.php:77 @@ -1473,22 +1396,22 @@ msgstr "" #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" +msgstr "昵称只能使用小写字母和数字,不包含空格。" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." -msgstr "" +msgstr "不允许的昵称。" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 #: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "" +msgstr "希望订阅的用户的昵称" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 #: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" -msgstr "" +msgstr "昵称或电子邮件" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 @@ -1496,33 +1419,33 @@ msgstr "" #: actions/deletenotice.php:115 actions/groupblock.php:176 #: actions/deletenotice.php:145 msgid "No" -msgstr "" +msgstr "否" #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." -msgstr "" +msgstr "没有 Jabber ID。" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 #: actions/userauthorization.php:153 actions/userauthorization.php:192 #: actions/userauthorization.php:225 msgid "No authorization request!" -msgstr "" +msgstr "未收到认证请求!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 #: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." -msgstr "" +msgstr "未选择运营商。" #: ../actions/smssettings.php:316 actions/smssettings.php:324 #: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" -msgstr "" +msgstr "没有输入验证码" #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." -msgstr "" +msgstr "没有验证码" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 @@ -1531,35 +1454,35 @@ msgstr "" #: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 #: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" -msgstr "" +msgstr "没有内容!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 #: actions/emailsettings.php:304 actions/emailsettings.php:311 #: actions/emailsettings.php:319 msgid "No email address." -msgstr "" +msgstr "没有电子邮件地址。" #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." -msgstr "" +msgstr "没有 id。" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 #: actions/emailsettings.php:430 actions/emailsettings.php:437 #: actions/smssettings.php:505 actions/smssettings.php:506 #: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." -msgstr "" +msgstr "没有发布用的电子邮件地址。" #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." -msgstr "" +msgstr "远程服务器没有昵称。" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 #: actions/leavegroup.php:76 msgid "No nickname." -msgstr "" +msgstr "没有昵称。" #: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 #: ../actions/smssettings.php:229 actions/emailsettings.php:240 @@ -1569,40 +1492,40 @@ msgstr "" #: actions/emailsettings.php:378 actions/imsettings.php:351 #: actions/smssettings.php:370 msgid "No pending confirmation to cancel." -msgstr "" +msgstr "没有可以取消的确认。" #: ../actions/smssettings.php:176 actions/smssettings.php:184 #: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." -msgstr "" +msgstr "没有电话号码。" #: ../actions/finishremotesubscribe.php:72 #: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." -msgstr "" +msgstr "服务器没有返回个人信息URL。" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 msgid "No registered email address for that user." -msgstr "" +msgstr "用户没有注册电子邮件。" #: ../actions/userauthorization.php:49 actions/userauthorization.php:55 #: actions/userauthorization.php:57 msgid "No request found!" -msgstr "" +msgstr "没有找到请求!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 #: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" -msgstr "" +msgstr "没有结果" #: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 #: actions/avatarbynickname.php:64 msgid "No size." -msgstr "" +msgstr "没有大小。" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 @@ -1611,23 +1534,23 @@ msgstr "" #: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 #: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." -msgstr "" +msgstr "没有找到此ID的信息。" #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 #: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 #: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." -msgstr "" +msgstr "没有找到此ID的信息。" #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." -msgstr "" +msgstr "没有这个 OpenID。" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 #: actions/doc.php:69 msgid "No such document." -msgstr "" +msgstr "没有这份文档。" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 @@ -1635,17 +1558,17 @@ msgstr "" #: lib/deleteaction.php:51 actions/deletenotice.php:52 #: actions/shownotice.php:92 msgid "No such notice." -msgstr "" +msgstr "没有这份通告。" #: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 #: actions/recoverpassword.php:62 msgid "No such recovery code." -msgstr "" +msgstr "没有这个恢复码。" #: ../actions/postnotice.php:56 actions/postnotice.php:57 #: actions/postnotice.php:60 msgid "No such subscription" -msgstr "" +msgstr "没有这个订阅" #: ../actions/all.php:34 ../actions/allrss.php:35 #: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 @@ -1682,27 +1605,27 @@ msgstr "" #: lib/command.php:163 lib/command.php:311 lib/command.php:364 #: lib/command.php:411 lib/command.php:466 msgid "No such user." -msgstr "" +msgstr "没有这个用户。" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 #: actions/recoverpassword.php:272 msgid "No user with that email address or username." -msgstr "" +msgstr "没有拥有这个用户名或电子邮件的用户。" #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" -msgstr "" +msgstr "不显示任何人!" #: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 #: actions/recoverpassword.php:66 msgid "Not a recovery code." -msgstr "" +msgstr "不是恢复码。" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 #: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." -msgstr "" +msgstr "不是已注册用户。" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 @@ -1712,28 +1635,28 @@ msgstr "" #: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 #: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." -msgstr "" +msgstr "不支持的数据格式。" #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" -msgstr "" +msgstr "不是有效的 Jabber ID" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 #: lib/openid.php:143 msgid "Not a valid OpenID." -msgstr "" +msgstr "不是有效的 OpenID。" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 #: actions/emailsettings.php:315 actions/emailsettings.php:322 #: actions/emailsettings.php:330 msgid "Not a valid email address" -msgstr "" +msgstr "不是有效的电子邮件" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." -msgstr "" +msgstr "不是有效的电子邮件。" #: ../actions/profilesettings.php:91 ../actions/register.php:71 #: actions/profilesettings.php:206 actions/register.php:78 @@ -1745,45 +1668,45 @@ msgstr "" #: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/register.php:204 msgid "Not a valid nickname." -msgstr "" +msgstr "不是有效的昵称。" #: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 #: actions/remotesubscribe.php:159 msgid "Not a valid profile URL (incorrect services)." -msgstr "" +msgstr "不是有效的个人信息URL(不正确的服务)。" #: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 #: actions/remotesubscribe.php:152 msgid "Not a valid profile URL (no XRDS defined)." -msgstr "" +msgstr "不是有效的个人信息URL(未定义XRDS)。" #: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 #: actions/remotesubscribe.php:143 msgid "Not a valid profile URL (no YADIS document)." -msgstr "" +msgstr "不是有效的个人信息URL(没有YADIS数据)。" #: ../actions/avatar.php:95 actions/profilesettings.php:332 #: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 #: lib/imagefile.php:96 msgid "Not an image or corrupt file." -msgstr "" +msgstr "不是图片文件或文件已损坏。" #: ../actions/finishremotesubscribe.php:51 #: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 msgid "Not authorized." -msgstr "" +msgstr "未认证。" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 #: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" -msgstr "" +msgstr "未预料的响应!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 #: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 #: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" -msgstr "" +msgstr "未找到" #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 @@ -1803,28 +1726,28 @@ msgstr "" #: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 #: actions/unsubscribe.php:52 msgid "Not logged in." -msgstr "" +msgstr "未登录。" #: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." -msgstr "" +msgstr "未订阅!" #: ../actions/opensearch.php:35 actions/opensearch.php:35 #: actions/opensearch.php:67 msgid "Notice Search" -msgstr "" +msgstr "搜索通告" #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 #, php-format msgid "Notice feed for %s" -msgstr "" +msgstr "%s 的通告聚合" #: ../actions/shownotice.php:39 actions/shownotice.php:39 #: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" -msgstr "" +msgstr "通告没有关联个人信息" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 @@ -1832,7 +1755,7 @@ msgstr "" #: actions/conversation.php:149 lib/facebookaction.php:572 #: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" -msgstr "" +msgstr "通告" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 #: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 @@ -1840,28 +1763,28 @@ msgstr "" #: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" -msgstr "" +msgstr "带 %s 标签的通告" #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" -msgstr "" +msgstr "旧密码" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 #: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" -msgstr "" +msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 #: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" -msgstr "" +msgstr "OpenID 帐号设置" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 #: lib/openid.php:269 msgid "OpenID Auto-Submit" -msgstr "" +msgstr "OpenID 自动提交" #: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 @@ -1869,21 +1792,21 @@ msgstr "" #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 #: actions/openidlogin.php:89 msgid "OpenID Login" -msgstr "" +msgstr "OpenID 登录" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 #: actions/openidlogin.php:111 msgid "OpenID URL" -msgstr "" +msgstr "OpenID URL" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 #: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." -msgstr "" +msgstr "OpenID 认证已取消。" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 @@ -1891,33 +1814,33 @@ msgstr "" #: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" -msgstr "" +msgstr "OpenID 认证失败:%s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 #: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" -msgstr "" +msgstr "OpenID 失败:%s" #: ../actions/openidsettings.php:144 actions/openidsettings.php:153 #: actions/openidsettings.php:231 msgid "OpenID removed." -msgstr "" +msgstr "OpenID 已移除。" #: ../actions/openidsettings.php:37 actions/openidsettings.php:37 #: actions/openidsettings.php:59 msgid "OpenID settings" -msgstr "" +msgstr "OpenID 设置" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 #: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." -msgstr "" +msgstr "在邀请中加几句话(可选)。" #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." -msgstr "" +msgstr "部分上传。" #: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 #: ../actions/register.php:153 ../lib/settingsaction.php:93 @@ -1930,19 +1853,19 @@ msgstr "" #: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 #: lib/accountsettingsaction.php:114 msgid "Password" -msgstr "" +msgstr "密码" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 #: actions/recoverpassword.php:335 actions/recoverpassword.php:353 #: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." -msgstr "" +msgstr "密码和确认不匹配。" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 #: actions/recoverpassword.php:331 actions/recoverpassword.php:349 #: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." -msgstr "" +msgstr "密码必须是 6 个字符或更多。" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 @@ -1950,7 +1873,7 @@ msgstr "" #: actions/recoverpassword.php:207 actions/recoverpassword.php:319 #: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" -msgstr "" +msgstr "请求恢复密码" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 @@ -1958,7 +1881,7 @@ msgstr "" #: actions/passwordsettings.php:178 actions/recoverpassword.php:208 #: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." -msgstr "" +msgstr "密码已保存。" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 @@ -1966,49 +1889,46 @@ msgstr "" #: actions/passwordsettings.php:150 actions/register.php:220 #: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." -msgstr "" +msgstr "密码不匹配。" #: ../lib/searchaction.php:100 lib/searchaction.php:100 #: lib/searchgroupnav.php:80 msgid "People" -msgstr "" +msgstr "用户" #: ../actions/opensearch.php:33 actions/opensearch.php:33 #: actions/opensearch.php:64 msgid "People Search" -msgstr "" +msgstr "搜索用户" #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" -msgstr "" +msgstr "搜索用户" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 #: lib/personalgroupnav.php:99 msgid "Personal" -msgstr "" +msgstr "个人" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 #: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" -msgstr "" +msgstr "个人消息" #: ../actions/smssettings.php:69 actions/smssettings.php:69 #: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" +msgstr "电话号码,不带标点或空格,包含地区代码" #: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgstr "请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通告,请点击\"取消\"。" #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" +msgstr "当我的Jabber/GTalk状态改变时自动发布通告。" #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 @@ -2019,7 +1939,7 @@ msgstr "" #: actions/emailsettings.php:153 actions/imsettings.php:139 #: actions/smssettings.php:169 msgid "Preferences" -msgstr "" +msgstr "首选项" #: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 #: ../actions/smssettings.php:163 actions/emailsettings.php:180 @@ -2030,18 +1950,18 @@ msgstr "" #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." -msgstr "" +msgstr "首选项已保存。" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:129 actions/profilesettings.php:130 #: actions/profilesettings.php:145 msgid "Preferred language" -msgstr "" +msgstr "首选语言" #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" -msgstr "" +msgstr "隐私" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 @@ -2049,74 +1969,74 @@ msgstr "" #: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 #: classes/Notice.php:293 msgid "Problem saving notice." -msgstr "" +msgstr "保存通告时出错。" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 #: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 #: lib/accountsettingsaction.php:108 msgid "Profile" -msgstr "" +msgstr "个人信息" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 #: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" -msgstr "" +msgstr "个人信息URL" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 #: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" -msgstr "" +msgstr "个人设置" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 #: actions/updateprofile.php:58 msgid "Profile unknown" -msgstr "" +msgstr "未知的帐号" #: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 msgid "Public Stream Feed" -msgstr "" +msgstr "公开的聚合" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 #: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 #: actions/public.php:120 actions/public.php:131 msgid "Public timeline" -msgstr "" +msgstr "公开的时间表" #: ../actions/imsettings.php:79 actions/imsettings.php:80 #: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" +msgstr "公开Jabber/GTalk帐号的 MicroID。" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 #: actions/emailsettings.php:178 actions/emailsettings.php:183 #: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." -msgstr "" +msgstr "公开电子邮件的 MicroID。" #: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 #: actions/tag.php:76 msgid "Recent Tags" -msgstr "" +msgstr "最近的标签" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" -msgstr "" +msgstr "恢复" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 #: actions/recoverpassword.php:198 actions/recoverpassword.php:206 #: actions/recoverpassword.php:209 msgid "Recover password" -msgstr "" +msgstr "恢复密码" #: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 #: actions/recoverpassword.php:73 msgid "Recovery code for unknown user." -msgstr "" +msgstr "恢复码未知" #: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 #: actions/register.php:152 actions/register.php:207 lib/util.php:328 @@ -2127,42 +2047,42 @@ msgstr "" #: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 #: lib/logingroupnav.php:85 msgid "Register" -msgstr "" +msgstr "注册" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 #: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 #: actions/register.php:129 msgid "Registration not allowed." -msgstr "" +msgstr "不允许注册。" #: ../actions/register.php:200 actions/register.php:214 #: actions/register.php:67 actions/register.php:106 msgid "Registration successful" -msgstr "" +msgstr "注册成功。" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 msgid "Reject" -msgstr "" +msgstr "拒绝" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 #: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 #: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" -msgstr "" +msgstr "记住登录状态" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 #: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" -msgstr "" +msgstr "没有匹配的远程个人信息" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 #: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" -msgstr "" +msgstr "远程订阅" #: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 #: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 @@ -2178,23 +2098,21 @@ msgstr "" #: actions/emailsettings.php:140 actions/imsettings.php:108 #: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" -msgstr "" +msgstr "移除" #: ../actions/openidsettings.php:68 actions/openidsettings.php:69 #: actions/openidsettings.php:123 msgid "Remove OpenID" -msgstr "" +msgstr "移除OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" +msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgstr "移除唯一的OpenID可能使您无法登陆!如果需要移除它,请先添加一个新的。" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 msgid "Replies" -msgstr "" +msgstr "回复" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 @@ -2204,51 +2122,51 @@ msgstr "" #: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" -msgstr "" +msgstr "%s 的回复" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 #: actions/recoverpassword.php:223 actions/recoverpassword.php:240 #: actions/recoverpassword.php:243 msgid "Reset" -msgstr "" +msgstr "重置" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 #: actions/recoverpassword.php:197 actions/recoverpassword.php:205 #: actions/recoverpassword.php:208 msgid "Reset password" -msgstr "" +msgstr "重置密码" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 #: actions/subscriptions.php:125 actions/subscriptions.php:184 #: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" -msgstr "" +msgstr "SMS短信" #: ../actions/smssettings.php:67 actions/smssettings.php:67 #: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" -msgstr "" +msgstr "SMS短信电话号码" #: ../actions/smssettings.php:33 actions/smssettings.php:33 #: actions/smssettings.php:58 msgid "SMS Settings" -msgstr "" +msgstr "SMS短信设置" #: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" -msgstr "" +msgstr "SMS短信确认" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" -msgstr "" +msgstr "相同的密码" #: ../actions/register.php:156 actions/register.php:170 #: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." -msgstr "" +msgstr "相同的密码。此项必填。" #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 @@ -2269,38 +2187,34 @@ msgstr "" #: actions/profilesettings.php:167 actions/smssettings.php:181 #: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" -msgstr "" +msgstr "保存" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 #: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 #: lib/action.php:459 msgid "Search" -msgstr "" +msgstr "搜索" #: ../actions/noticesearch.php:80 actions/noticesearch.php:85 #: actions/noticesearch.php:127 msgid "Search Stream Feed" -msgstr "" +msgstr "搜索聚合" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" +msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgstr "在 %%site.name%% 的通告内容中搜索。搜索条件至少包含 3 个字符,多个搜索条件用空格分隔。" #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" +msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgstr "在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。搜索条件至少包含 3 个字符,多个搜索条件用空格分隔。" #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" -msgstr "" +msgstr "选择运营商" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -2309,84 +2223,82 @@ msgstr "" #: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 #: lib/noticeform.php:208 msgid "Send" -msgstr "" +msgstr "发送" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 #: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." -msgstr "" +msgstr "向这个电子邮件发信以发布新的通告。" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 #: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." -msgstr "" +msgstr "如果有新订阅,通过电子邮件告诉我。" #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." -msgstr "" +msgstr "通过Jabber/GTalk发送通告。" #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" +msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgstr "通过SMS短信将通告发给我;我了解这样也许会给我带来不菲的开支。" #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" +msgstr "如果我尚未订阅的用户回我消息,使用Jabber/GTalk通知我。" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" -msgstr "" +msgstr "设置" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 #: actions/profilesettings.php:319 actions/profilesettings.php:318 #: actions/profilesettings.php:344 msgid "Settings saved." -msgstr "" +msgstr "设置已保存。" #: ../actions/tag.php:60 actions/tag.php:60 msgid "Showing most popular tags from the last week" -msgstr "" +msgstr "显示上周以来最流行的标签" #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." -msgstr "" +msgstr "其他人已经使用了这个OpenID。" #: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 #: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 #: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 msgid "Something weird happened." -msgstr "" +msgstr "发生了奇怪的错误……" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 #: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." -msgstr "" +msgstr "对不起,发布用的电子邮件无法使用。" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 #: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." -msgstr "" +msgstr "对不起,这个发布用的电子邮件属于其他用户。" #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" -msgstr "" +msgstr "来源" #: ../actions/showstream.php:296 actions/showstream.php:311 #: actions/showstream.php:476 actions/showgroup.php:375 #: actions/showgroup.php:421 lib/profileaction.php:173 #: actions/showgroup.php:429 msgid "Statistics" -msgstr "" +msgstr "统计" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 @@ -2394,7 +2306,7 @@ msgstr "" #: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 #: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." -msgstr "" +msgstr "未找到已有的OpenID。" #: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 @@ -2403,7 +2315,7 @@ msgstr "" #: lib/subscribeform.php:139 actions/showstream.php:345 #: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" -msgstr "" +msgstr "订阅" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 @@ -2411,19 +2323,19 @@ msgstr "" #: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 #: lib/subgroupnav.php:90 msgid "Subscribers" -msgstr "" +msgstr "订阅者" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 #: actions/userauthorization.php:338 actions/userauthorization.php:344 #: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" -msgstr "" +msgstr "订阅已确认" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 #: actions/userauthorization.php:349 actions/userauthorization.php:355 #: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" -msgstr "" +msgstr "订阅被拒绝" #: ../actions/showstream.php:230 ../actions/showstream.php:307 #: ../actions/subscriptions.php:27 actions/showstream.php:240 @@ -2432,13 +2344,13 @@ msgstr "" #: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 #: lib/subgroupnav.php:82 msgid "Subscriptions" -msgstr "" +msgstr "订阅" #: ../actions/avatar.php:87 actions/profilesettings.php:324 #: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 #: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." -msgstr "" +msgstr "上传文件时出错。" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 @@ -2449,74 +2361,74 @@ msgstr "" #: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 #: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" -msgstr "" +msgstr "标签" #: ../lib/searchaction.php:104 lib/searchaction.php:104 #: lib/designsettings.php:217 msgid "Text" -msgstr "" +msgstr "文本" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 #: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" -msgstr "" +msgstr "搜索文本" #: ../actions/openidsettings.php:140 actions/openidsettings.php:149 #: actions/openidsettings.php:227 msgid "That OpenID does not belong to you." -msgstr "" +msgstr "此OpenID属于他人。" #: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 #: actions/confirmaddress.php:94 msgid "That address has already been confirmed." -msgstr "" +msgstr "此地址已被确认。" #: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 #: actions/confirmaddress.php:85 msgid "That confirmation code is not for you!" -msgstr "" +msgstr "此确认码不适用!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 #: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." -msgstr "" +msgstr "此电子邮件属于其他用户。" #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." -msgstr "" +msgstr "文件超出大小限制。" #: ../actions/imsettings.php:170 actions/imsettings.php:178 #: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." -msgstr "" +msgstr "您已登记此Jabber帐号。" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 #: actions/emailsettings.php:318 actions/emailsettings.php:325 #: actions/emailsettings.php:333 msgid "That is already your email address." -msgstr "" +msgstr "您已登记此电子邮件。" #: ../actions/smssettings.php:188 actions/smssettings.php:196 #: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." -msgstr "" +msgstr "您已登记此电话号码。" #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." -msgstr "" +msgstr "这不是您的Jabber帐号。" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 #: actions/emailsettings.php:397 actions/emailsettings.php:404 #: actions/emailsettings.php:412 msgid "That is not your email address." -msgstr "" +msgstr "这是他人的电子邮件。" #: ../actions/smssettings.php:257 actions/smssettings.php:265 #: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." -msgstr "" +msgstr "这是他人的电话号码。" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 @@ -2524,17 +2436,17 @@ msgstr "" #: actions/emailsettings.php:374 actions/emailsettings.php:382 #: actions/imsettings.php:355 msgid "That is the wrong IM address." -msgstr "" +msgstr "即时通讯帐号错误。" #: ../actions/smssettings.php:233 actions/smssettings.php:241 #: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." -msgstr "" +msgstr "确认码错误。" #: ../actions/smssettings.php:191 actions/smssettings.php:199 #: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." -msgstr "" +msgstr "这个电话号码属于另一个用户。" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 @@ -2544,19 +2456,19 @@ msgstr "" #: actions/twitapistatuses.php:251 lib/facebookaction.php:477 #: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." -msgstr "" +msgstr "超出长度限制。不能超过 140 个字符。" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 #: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 #: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." -msgstr "" +msgstr "超出长度限制。不能超过 255 个字符。" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." -msgstr "" +msgstr "地址 \"%s\" 已确认。" #: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 #: ../actions/smssettings.php:274 actions/emailsettings.php:282 @@ -2566,70 +2478,58 @@ msgstr "" #: actions/emailsettings.php:431 actions/imsettings.php:408 #: actions/smssettings.php:425 msgid "The address was removed." -msgstr "" +msgstr "地址被移除。" #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." -msgstr "" +msgstr "这些用户订阅了 %s 的通告。" #: ../actions/subscribers.php:33 actions/subscribers.php:33 #: actions/subscribers.php:63 msgid "These are the people who listen to your notices." -msgstr "" +msgstr "这些用户订阅了您的通告。" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 #: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." -msgstr "" +msgstr "这是 %s 订阅的用户。" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 #: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." -msgstr "" +msgstr "这是您订阅的用户。" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" +msgid "These people are already users and you were automatically subscribed to them:" +msgstr "这些好友已注册,您已自动订阅这些用户。" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." -msgstr "" +msgstr "验证码超时,请重来。" #: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" +msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgstr "此表单会自动提交。如果没有,点击“提交”以转向 OpenID 提供者。" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" +msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgstr "这是您第一次登陆 %s,我们需要将 OpenID 连接到这里的帐号。您可以创建新帐号,或者连接到已有的帐号。" #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2639,7 +2539,7 @@ msgstr "" #: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 #: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." -msgstr "" +msgstr "此方法接受POST或DELETE请求。" #: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 #: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 @@ -2657,38 +2557,35 @@ msgstr "" #: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 #: actions/apistatusesupdate.php:109 msgid "This method requires a POST." -msgstr "" +msgstr "此方法接受POST请求。" #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" -msgstr "" +msgstr "这个页面不提供您想要的媒体类型" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 #: actions/profilesettings.php:154 msgid "Timezone" -msgstr "" +msgstr "时区" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 #: actions/profilesettings.php:211 actions/profilesettings.php:212 #: actions/profilesettings.php:228 msgid "Timezone not selected." -msgstr "" +msgstr "未选择时区。" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" +msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "要订阅,你可以登录 (%%action.login%%), 或注册(%%action.register%%) 一个新帐号。如果你已经有在另一个兼容的微博客的帐号(%%doc.openmublog%%), 请填入你资料的互联网地址URL." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 #: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." -msgstr "" +msgstr "必须提供两个用户帐号或昵称。" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2696,12 +2593,12 @@ msgstr "" #: actions/register.php:444 actions/profilesettings.php:117 #: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" -msgstr "" +msgstr "您的主页、博客或在其他站点的URL" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 #: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" -msgstr "" +msgstr "您在其他兼容的微博客服务的个人信息URL" #: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 #: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 @@ -2717,63 +2614,61 @@ msgstr "" #: actions/emailsettings.php:255 actions/grouplogo.php:319 #: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." -msgstr "" +msgstr "未预料的表单提交。" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 #: actions/recoverpassword.php:323 actions/recoverpassword.php:341 #: actions/recoverpassword.php:344 msgid "Unexpected password reset." -msgstr "" +msgstr "未预料的密码重置。" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 #: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" -msgstr "" +msgstr "未知动作" #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." -msgstr "" +msgstr "此OMB协议版本无效。" #: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" +msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgstr "除非另外说明,此站点的内容由贡献者版权所有,授权方式为" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 #, php-format msgid "Unrecognized address type %s" -msgstr "" +msgstr "不可识别的地址类型 %s" #: ../actions/showstream.php:209 actions/showstream.php:219 #: lib/unsubscribeform.php:137 msgid "Unsubscribe" -msgstr "" +msgstr "退订" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 #: actions/updateprofile.php:51 msgid "Unsupported OMB version" -msgstr "" +msgstr "不支持此OMB版本" #: ../actions/avatar.php:105 actions/profilesettings.php:342 #: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 #: lib/imagefile.php:105 msgid "Unsupported image file format." -msgstr "" +msgstr "不支持这种图像格式。" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 #: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" -msgstr "" +msgstr "使用SMS短信更新" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 #: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" -msgstr "" +msgstr "使用即时通讯工具(IM)更新" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 #: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 @@ -2781,7 +2676,7 @@ msgstr "" #: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" -msgstr "" +msgstr "%2$s 上 %1$s 和好友的更新!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 #: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 @@ -2790,44 +2685,39 @@ msgstr "" #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" -msgstr "" +msgstr "%2$s 上 %1$s 的更新!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 #: actions/grouplogo.php:233 msgid "Upload" -msgstr "" +msgstr "上传" #: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" +msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." +msgstr "在这里上传新的头像。上传后无法修改,请尽量使用正方形图片。图片必须使用与站点相同的授权。请使用您希望分享的属于您的图片。" #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" -msgstr "" +msgstr "上传个人信息头像" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" +msgid "Use this form to invite your friends and colleagues to use this service." +msgstr "使用这个表单来邀请好友和同事加入。" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "" +msgstr "只用于更新、通告或密码恢复" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 msgid "User being listened to doesn't exist." -msgstr "" +msgstr "要查看的用户不存在。" #: ../actions/all.php:41 ../actions/avatarbynickname.php:48 #: ../actions/foaf.php:47 ../actions/replies.php:41 @@ -2850,28 +2740,28 @@ msgstr "" #: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 #: actions/apiusershow.php:108 msgid "User has no profile." -msgstr "" +msgstr "用户没有个人信息。" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 #: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" -msgstr "" +msgstr "昵称" #: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 msgid "User not found." -msgstr "" +msgstr "未找到用户。" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:139 actions/profilesettings.php:140 #: actions/profilesettings.php:155 msgid "What timezone are you normally in?" -msgstr "" +msgstr "您一般处于哪个时区?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" -msgstr "" +msgstr "怎么样,%s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 @@ -2879,19 +2769,19 @@ msgstr "" #: actions/register.php:456 actions/profilesettings.php:134 #: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "" +msgstr "你的位置,格式类似\"城市,省份,国家\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 #: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" -msgstr "" +msgstr "'%s' 图像格式错误" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 #: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" -msgstr "" +msgstr "图像大小 '%s' 错误" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 @@ -2900,67 +2790,60 @@ msgstr "" #: actions/block.php:150 actions/deletenotice.php:116 #: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" -msgstr "" +msgstr "是" #: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" -msgstr "" +msgstr "已登记此OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "您选择了永久删除通告。这样做是无法恢复的。" #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" -msgstr "" +msgstr "已登录!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 #: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" -msgstr "" +msgstr "您已订阅这些用户:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 #: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." -msgstr "" +msgstr "您与此用户并非好友。" #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" -msgstr "" +msgstr "在这里修改密码。选择一个好密码!" #: ../actions/register.php:135 actions/register.php:145 msgid "You can create a new account to start posting notices." -msgstr "" +msgstr "请创建新帐号,开始发布通告。" #: ../actions/smssettings.php:28 actions/smssettings.php:28 #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" +msgstr "您可以通过 %%site.name%% 的电子邮件接收SMS短信。" #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" +msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgstr "您可以点击\"移除\"按钮,移除帐号的 OpenID。" #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" +msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgstr "您可以通过Jabber/GTalk [即时通讯工具](%%doc.im%%)发送和接受通告。在这里配置它们。" #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" +msgid "You can update your personal profile info here so people know more about you." +msgstr "在这里更新个人信息,让大家对您了解得更多。" #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2968,159 +2851,148 @@ msgstr "" #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 #: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" -msgstr "" +msgstr "您可以在这里订阅!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 #: actions/finishopenidlogin.php:43 actions/register.php:149 #: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." -msgstr "" +msgstr "您必须同意此授权方可注册。" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 #: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" -msgstr "" +msgstr "您未告知此个人信息" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" +msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgstr "您的 %1$s 发布用地址已更新。\n\n发送邮件到 %2$s 来发布新消息。\n\n更多电子邮件的帮助请见 %3$s。\n\n为您效力的 %4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 #: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." -msgstr "" +msgstr "您不能删除其他用户的状态。" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "" +msgstr "您必须登录才能邀请其他人使用 %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" +msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgstr "如果其他人接受邀请并注册,您将得到通知。谢谢您推动了社区发展壮大!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " -msgstr "" +msgstr "您已得到确认。请输入新密码。" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 #: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" -msgstr "" +msgstr "您的OpenID URL" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "" +msgstr "您在此服务器的昵称,或注册邮箱。" #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已关联的 OpenID。" #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" -msgstr "" +msgstr "几秒前" #: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 #: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" -msgstr "" +msgstr "%d 天前" #: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 #: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" -msgstr "" +msgstr "%d 小时前" #: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 #: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" -msgstr "" +msgstr "%d 分钟前" #: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 #: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" -msgstr "" +msgstr "%d 个月前" #: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 #: lib/util.php:780 lib/util.php:826 msgid "about a day ago" -msgstr "" +msgstr "一天前" #: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 #: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" -msgstr "" +msgstr "一分钟前" #: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 #: lib/util.php:784 lib/util.php:830 msgid "about a month ago" -msgstr "" +msgstr "一个月前" #: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 #: lib/util.php:788 lib/util.php:834 msgid "about a year ago" -msgstr "" +msgstr "一年前" #: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 #: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" -msgstr "" +msgstr "一小时前" #: ../actions/showstream.php:423 ../lib/stream.php:132 #: actions/showstream.php:441 lib/stream.php:99 msgid "delete" -msgstr "" +msgstr "删除" #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 msgid "in reply to..." -msgstr "" +msgstr "先前……" #: ../actions/noticesearch.php:137 ../actions/showstream.php:415 #: ../lib/stream.php:124 actions/noticesearch.php:143 #: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 msgid "reply" -msgstr "" +msgstr "回复" #: ../actions/password.php:44 actions/profilesettings.php:183 #: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" -msgstr "" +msgstr "相同的密码" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 #: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 #: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 #: actions/twitapistatuses.php:575 msgid "unsupported file type" -msgstr "" +msgstr "不支持这种类型的文件" #: ../lib/util.php:1309 lib/util.php:1443 +#, fuzzy msgid "« After" -msgstr "" +msgstr "« 之后" #: actions/deletenotice.php:74 actions/disfavor.php:43 #: actions/emailsettings.php:127 actions/favor.php:45 @@ -3156,36 +3028,36 @@ msgstr "" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "" +msgstr "会话标识有问题,请重试。" #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" -msgstr "" +msgstr "此通告未被收藏!" #: actions/disfavor.php:63 actions/disfavor.php:87 #: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." -msgstr "" +msgstr "无法删除收藏。" #: actions/disfavor.php:72 lib/favorform.php:140 msgid "Favor" -msgstr "" +msgstr "收藏" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "" +msgstr "如果有人收藏我的通告,发邮件通知我。" #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." -msgstr "" +msgstr "如果收到私人信息,发邮件通知我。" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 #: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 #: actions/favor.php:79 msgid "This notice is already a favorite!" -msgstr "" +msgstr "已收藏此通告!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 @@ -3194,70 +3066,68 @@ msgstr "" #: actions/twitapifavorites.php:133 lib/command.php:145 #: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." -msgstr "" +msgstr "无法创建收藏。" #: actions/favor.php:70 msgid "Disfavor" -msgstr "" +msgstr "取消收藏" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 #: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" -msgstr "" +msgstr "%s 收藏的通告" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 #: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" -msgstr "" +msgstr "%s 的收藏的聚合" #: actions/inbox.php:28 actions/inbox.php:59 #, php-format msgid "Inbox for %s - page %d" -msgstr "" +msgstr "%s 的收件箱 - 第 %d 页" #: actions/inbox.php:30 actions/inbox.php:62 #, php-format msgid "Inbox for %s" -msgstr "" +msgstr "%s 的收件箱" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" +msgstr "这是您的收件箱,包含发给您的私人消息。" #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" +msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgstr "%1$s 邀请您加入 %2$s (%3$s)。\n\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 msgid "Automatically login in the future; " -msgstr "" +msgstr "保持登录状态;" #: actions/login.php:122 actions/login.php:264 msgid "For security reasons, please re-enter your " -msgstr "" +msgstr "由于安全原因,请重新输入" #: actions/login.php:126 actions/login.php:268 msgid "Login with your username and password. " -msgstr "" +msgstr "输入用户名和密码以登录。" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 #: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." -msgstr "" +msgstr "超出长度限制。不能超过 140 个字符。" #: actions/newmessage.php:65 actions/newmessage.php:128 #: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." -msgstr "" +msgstr "没有收件人。" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 @@ -3266,7 +3136,7 @@ msgstr "" #: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 #: lib/command.php:367 msgid "You can't send a message to this user." -msgstr "" +msgstr "无法向此用户发送消息。" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 @@ -3274,65 +3144,63 @@ msgstr "" #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" +msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "不要向自己发送消息;跟自己悄悄说就得了。" #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 #: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" -msgstr "" +msgstr "未找到用户" #: actions/newmessage.php:117 actions/newmessage.php:67 #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" -msgstr "" +msgstr "新消息" #: actions/noticesearch.php:95 actions/noticesearch.php:146 msgid "Notice without matching profile" -msgstr "" +msgstr "找不到匹配的通告" #: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" +msgstr "[OpenID](%%doc.openid%%)允许您登录许多不同的站点" #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " -msgstr "" +msgstr "如果您希望添加OpenID," #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" +msgstr "移除仅有的OpenID可能使您无法登陆!" #: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " -msgstr "" +msgstr "您可以移除一个OpenID" #: actions/outbox.php:28 actions/outbox.php:58 #, php-format msgid "Outbox for %s - page %d" -msgstr "" +msgstr "%s 的发件箱 - 第 %d 页" #: actions/outbox.php:30 actions/outbox.php:61 #, php-format msgid "Outbox for %s" -msgstr "" +msgstr "%s 的发件箱" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "" +msgstr "这是您的发件箱,包含您发送的私人消息。" #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" +msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgstr "在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。" #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " -msgstr "" +msgstr "您可以在这里更新个人信息。" #: actions/profilesettings.php:115 actions/remotesubscribe.php:320 #: actions/userauthorization.php:159 actions/userrss.php:76 @@ -3345,154 +3213,152 @@ msgstr "" #: actions/userrss.php:103 actions/grouplogo.php:178 #: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" -msgstr "" +msgstr "找不到匹配的用户。" #: actions/recoverpassword.php:91 actions/recoverpassword.php:97 msgid "This confirmation code is too old. " -msgstr "" +msgstr "验证码超时。" #: actions/recoverpassword.php:141 actions/recoverpassword.php:152 msgid "If you've forgotten or lost your" -msgstr "" +msgstr "如果您忘记或丢失了您的" #: actions/recoverpassword.php:154 actions/recoverpassword.php:158 msgid "You've been identified. Enter a " -msgstr "" +msgstr "您已得到确认。输入" #: actions/recoverpassword.php:169 actions/recoverpassword.php:188 msgid "Your nickname on this server, " -msgstr "" +msgstr "您在服务器上的昵称," #: actions/recoverpassword.php:271 actions/recoverpassword.php:304 msgid "Instructions for recovering your password " -msgstr "" +msgstr "恢复密码的步骤" #: actions/recoverpassword.php:327 actions/recoverpassword.php:361 msgid "New password successfully saved. " -msgstr "" +msgstr "新密码已保存。" #: actions/register.php:95 actions/register.php:180 #: actions/passwordsettings.php:147 actions/register.php:217 #: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." -msgstr "" +msgstr "密码必须包含 6 个或更多字符。" #: actions/register.php:216 #, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgstr "祝贺你,%s!欢迎来到 %%%%site.name%%%%。在这里,您可以……" #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " -msgstr "" +msgstr "(您将立即收到一封电子邮件,含有" #: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 #, php-format msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" +msgstr "要订阅,请先[登录](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 #: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" -msgstr "" +msgstr "%s 的收藏的聚合" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 #: actions/showfavorites.php:179 actions/showfavorites.php:209 #: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." -msgstr "" +msgstr "无法获取收藏的通告。" #: actions/showmessage.php:33 actions/showmessage.php:81 msgid "No such message." -msgstr "" +msgstr "未找到此消息。" #: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." -msgstr "" +msgstr "只有发送和接受双方可以阅读此消息。" #: actions/showmessage.php:61 actions/showmessage.php:108 #, php-format msgid "Message to %1$s on %2$s" -msgstr "" +msgstr "发送给 %1$s 的 %2$s 消息" #: actions/showmessage.php:66 actions/showmessage.php:113 #, php-format msgid "Message from %1$s on %2$s" -msgstr "" +msgstr "来自 %1$s 的 %2$s 消息" #: actions/showstream.php:154 msgid "Send a message" -msgstr "" +msgstr "发送消息" #: actions/smssettings.php:312 actions/smssettings.php:464 #, php-format msgid "Mobile carrier for your phone. " -msgstr "" +msgstr "手机的运营商。" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 #: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 #: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" -msgstr "" +msgstr "发给 %s 的直接消息" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 #: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 #: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" -msgstr "" +msgstr "发给 %s 的直接消息" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 #: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" -msgstr "" +msgstr "您已发送的直接消息" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 #: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 #: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" -msgstr "" +msgstr "%s 发送的直接消息" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 #: actions/twitapidirect_messages.php:146 #: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" -msgstr "" +msgstr "消息没有正文!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:159 #: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." -msgstr "" +msgstr "未找到收件人。" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "" +msgstr "无法向并非好友的用户发送直接消息。" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 #: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" -msgstr "" +msgstr "%s 的收藏 / %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 #: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 #: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." -msgstr "" +msgstr "%s 收藏了 %s 的 %s 通告。" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 @@ -3500,108 +3366,103 @@ msgstr "" #: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" -msgstr "" +msgstr "%s 收藏了您的通告" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" +msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" +msgstr "%1$s 收藏了您的 %2$s 通告。\n\n" #: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" +msgid "Add your Twitter account to automatically send your notices to Twitter, " +msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 msgid "Twitter settings" -msgstr "" +msgstr "Twitter 设置" #: actions/twittersettings.php:48 actions/twittersettings.php:105 #: actions/twittersettings.php:106 msgid "Twitter Account" -msgstr "" +msgstr "Twitter 帐号" #: actions/twittersettings.php:56 actions/twittersettings.php:113 #: actions/twittersettings.php:114 msgid "Current verified Twitter account." -msgstr "" +msgstr "已验证的 Twitter 帐号。" #: actions/twittersettings.php:63 msgid "Twitter Username" -msgstr "" +msgstr "Twitter 用户名" #: actions/twittersettings.php:65 actions/twittersettings.php:123 #: actions/twittersettings.php:126 msgid "No spaces, please." -msgstr "" +msgstr "请不要包含空格。" #: actions/twittersettings.php:67 msgid "Twitter Password" -msgstr "" +msgstr "Twitter 密码" #: actions/twittersettings.php:72 actions/twittersettings.php:139 #: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." -msgstr "" +msgstr "自动将我的通告转发到 Twitter。" #: actions/twittersettings.php:75 actions/twittersettings.php:146 #: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." -msgstr "" +msgstr "将这里的 \"@\" 回复发送到 Twitter。" #: actions/twittersettings.php:78 actions/twittersettings.php:153 #: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." -msgstr "" +msgstr "在这里订阅 Twitter 好友。" #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" +msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgstr "用户名只能包含数字,大写和小写字母和下划线。不能超过 15 个字符。" #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" -msgstr "" +msgstr "不能验证 Twitter 帐号!" #: actions/twittersettings.php:137 #, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" +msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 #: actions/twittersettings.php:352 actions/twittersettings.php:372 #: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" -msgstr "" +msgstr "无法保存 Twitter 设置!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 #: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." -msgstr "" +msgstr "Twitter 设置已保存。" #: actions/twittersettings.php:192 actions/twittersettings.php:395 #: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." -msgstr "" +msgstr "此 Twitter 帐号属于他人。" #: actions/twittersettings.php:200 actions/twittersettings.php:208 #: actions/twittersettings.php:403 actions/twittersettings.php:407 #: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." -msgstr "" +msgstr "无法移除 Twitter 用户。" #: actions/twittersettings.php:212 actions/twittersettings.php:407 #: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." -msgstr "" +msgstr "Twitter 帐号已移除。" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 @@ -3610,272 +3471,268 @@ msgstr "" #: actions/twittersettings.php:452 actions/twittersettings.php:463 #: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." -msgstr "" +msgstr "无法保存 Twitter 首选项。" #: actions/twittersettings.php:245 actions/twittersettings.php:461 #: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." -msgstr "" +msgstr "Twitter 首选项已保存。" #: actions/userauthorization.php:84 actions/userauthorization.php:86 msgid "Please check these details to make sure " -msgstr "" +msgstr "请检查详细信息" #: actions/userauthorization.php:324 actions/userauthorization.php:340 msgid "The subscription has been authorized, but no " -msgstr "" +msgstr "订阅已确认,但是" #: actions/userauthorization.php:334 actions/userauthorization.php:351 msgid "The subscription has been rejected, but no " -msgstr "" +msgstr "订阅已拒绝,但是" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" -msgstr "" +msgstr "执行结果" #: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" -msgstr "" +msgstr "执行完毕" #: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" -msgstr "" +msgstr "执行失败" #: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." -msgstr "" +msgstr "对不起,这个命令还没有实现。" #: classes/Command.php:96 classes/Command.php:113 #, php-format msgid "Subscriptions: %1$s\n" -msgstr "" +msgstr "订阅:%1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 #: classes/Command.php:276 lib/command.php:145 lib/command.php:276 #: lib/command.php:138 lib/command.php:269 lib/command.php:168 #: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" -msgstr "" +msgstr "用户没有通告。" #: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 #: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." -msgstr "" +msgstr "通告被标记为收藏。" #: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 #: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" -msgstr "" +msgstr "%1$s (%2$s)" #: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 #: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" -msgstr "" +msgstr "全名:%s" #: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 #: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" -msgstr "" +msgstr "位置:%s" #: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 #: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" -msgstr "" +msgstr "主页:%s" #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 #: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" -msgstr "" +msgstr "关于:%s" #: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 #: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" +msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 #: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 #: lib/command.php:375 #, php-format msgid "Direct message to %s sent" -msgstr "" +msgstr "已向 %s 发送消息" #: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 #: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." -msgstr "" +msgstr "发送消息出错。" #: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 #: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" -msgstr "" +msgstr "指定要订阅的用户名" #: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 #: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" -msgstr "" +msgstr "订阅 %s" #: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 #: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" -msgstr "" +msgstr "指定要取消订阅的用户名" #: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 #: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" -msgstr "" +msgstr "取消订阅 %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 #: classes/Command.php:376 lib/command.php:353 lib/command.php:376 #: lib/command.php:346 lib/command.php:369 lib/command.php:548 #: lib/command.php:571 msgid "Command not yet implemented." -msgstr "" +msgstr "命令尚未实现。" #: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 #: lib/command.php:349 lib/command.php:551 msgid "Notification off." -msgstr "" +msgstr "通告关闭。" #: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 #: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." -msgstr "" +msgstr "无法关闭通告。" #: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 #: lib/command.php:372 lib/command.php:574 msgid "Notification on." -msgstr "" +msgstr "通告开启。" #: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 #: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." -msgstr "" +msgstr "无法开启通告。" #: classes/Command.php:344 classes/Command.php:392 msgid "Commands:\n" -msgstr "" +msgstr "命令:\n" #: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." -msgstr "" +msgstr "无法添加信息。" #: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." -msgstr "" +msgstr "无法添加新URI的信息。" #: lib/gallery.php:46 msgid "User without matching profile in system." -msgstr "" +msgstr "系统中没有相应用户的信息。" #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" +msgid "You have a new posting address on %1$s.\n\n" +msgstr "您的新的发布用的地址是 %1$s。\n\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" -msgstr "" +msgstr "%s 发送了新的私人信息" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" +msgid "%1$s (%2$s) sent you a private message:\n\n" +msgstr "%1$s (%2$s) 发送了新的私人信息:\n\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." -msgstr "" +msgstr "只有用户自己可以访问邮箱。" #: lib/openid.php:195 lib/openid.php:203 msgid "This form should automatically submit itself. " -msgstr "" +msgstr "此表单会自动提交。" #: lib/personal.php:65 lib/personalgroupnav.php:113 #: lib/personalgroupnav.php:114 msgid "Favorites" -msgstr "" +msgstr "收藏夹" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: actions/favoritesrss.php:110 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" -msgstr "" +msgstr "%s 收藏的通告" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: lib/personalgroupnav.php:115 msgid "User" -msgstr "" +msgstr "用户" #: lib/personal.php:75 lib/personalgroupnav.php:123 #: lib/personalgroupnav.php:124 msgid "Inbox" -msgstr "" +msgstr "收件箱" #: lib/personal.php:76 lib/personalgroupnav.php:124 #: lib/personalgroupnav.php:125 msgid "Your incoming messages" -msgstr "" +msgstr "您接收的消息" #: lib/personal.php:80 lib/personalgroupnav.php:128 #: lib/personalgroupnav.php:129 msgid "Outbox" -msgstr "" +msgstr "发件箱" #: lib/personal.php:81 lib/personalgroupnav.php:129 #: lib/personalgroupnav.php:130 msgid "Your sent messages" -msgstr "" +msgstr "您发送的消息" #: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 msgid "Twitter" -msgstr "" +msgstr "Twitter" #: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 msgid "Twitter integration options" -msgstr "" +msgstr "Twitter 整合选项" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 #: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 #: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" -msgstr "" +msgstr "到" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 #: scripts/maildaemon.php:47 msgid "Could not parse message." -msgstr "" +msgstr "无法解析消息。" #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" -msgstr "" +msgstr "%s 及好友" #: actions/avatarsettings.php:76 msgid "You can upload your personal avatar." -msgstr "" +msgstr "您可以在这里上传个人头像。" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 #: actions/grouplogo.php:251 msgid "Avatar settings" -msgstr "" +msgstr "头像设置" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 @@ -3883,7 +3740,7 @@ msgstr "" #: actions/grouplogo.php:204 actions/grouplogo.php:264 #: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" -msgstr "" +msgstr "原来的" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 @@ -3891,13 +3748,13 @@ msgstr "" #: actions/grouplogo.php:215 actions/grouplogo.php:276 #: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" -msgstr "" +msgstr "预览" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 #: actions/avatarsettings.php:228 actions/grouplogo.php:291 #: actions/grouplogo.php:286 msgid "Crop" -msgstr "" +msgstr "剪裁" #: actions/avatarsettings.php:248 actions/deletenotice.php:133 #: actions/emailsettings.php:224 actions/grouplogo.php:307 @@ -3908,25 +3765,27 @@ msgstr "" #: actions/remotesubscribe.php:53 actions/smssettings.php:216 #: actions/subedit.php:38 actions/twittersettings.php:290 #: actions/userauthorization.php:39 +#, fuzzy msgid "There was a problem with your session token. " -msgstr "" +msgstr "会话标识有问题,请重试。" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 #: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" -msgstr "" +msgstr "请选择一块方形区域作为你的头像" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 #: actions/grouplogo.php:377 msgid "Lost our file data." -msgstr "" +msgstr "文件数据丢失" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 +#, fuzzy msgid "Lost our file." -msgstr "" +msgstr "没有这份通告。" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 @@ -3934,66 +3793,72 @@ msgstr "" #: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 #: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" -msgstr "" +msgstr "未知文件类型" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 +#, fuzzy msgid "No profile specified." -msgstr "" +msgstr "没有收件人。" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 #: actions/unblock.php:75 actions/groupblock.php:76 #: actions/groupunblock.php:76 actions/makeadmin.php:76 +#, fuzzy msgid "No profile with that ID." -msgstr "" +msgstr "没有找到此ID的信息。" #: actions/block.php:111 actions/block.php:134 +#, fuzzy msgid "Block user" -msgstr "" +msgstr "阻止用户" #: actions/block.php:129 +#, fuzzy msgid "Are you sure you want to block this user? " -msgstr "" +msgstr "确定要阻止该用户吗?" #: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." -msgstr "" +msgstr "您已成功阻止该用户:" #: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." -msgstr "" +msgstr "保存阻止信息失败。" #: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been " -msgstr "" +msgstr "该地址 \"%s\" 已被" #: actions/deletenotice.php:73 +#, fuzzy msgid "You are about to permanently delete a notice. " -msgstr "" +msgstr "您将要永久删除这条通告。" #: actions/disfavor.php:94 msgid "Add to favorites" -msgstr "" +msgstr "加入收藏" #: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" -msgstr "" +msgstr "编辑 %s 组" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 #: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 #: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +#, fuzzy msgid "Inboxes must be enabled for groups to work" -msgstr "" +msgstr "使用组功能前必须使能邮箱" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 #: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." -msgstr "" +msgstr "您必须登录才能创建小组。" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 @@ -4002,8 +3867,9 @@ msgstr "" #: actions/groupdesignsettings.php:89 actions/showgroup.php:126 #: actions/editgroup.php:84 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 +#, fuzzy msgid "No nickname" -msgstr "" +msgstr "没有昵称。" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 @@ -4014,7 +3880,7 @@ msgstr "" #: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 #: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" -msgstr "" +msgstr "没有这个组" #: actions/editgroup.php:106 actions/editgroup.php:165 #: actions/grouplogo.php:107 actions/grouplogo.php:111 @@ -4023,606 +3889,650 @@ msgstr "" #: actions/editgroup.php:168 actions/groupdesignsettings.php:104 #: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" -msgstr "" +msgstr "只有admin才能编辑这个组" #: actions/editgroup.php:157 actions/editgroup.php:159 #: actions/editgroup.php:154 msgid "Use this form to edit the group." -msgstr "" +msgstr "使用这个表单来编辑组" #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 +#, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "" +msgstr "昵称只能使用小写字母" #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." -msgstr "" +msgstr "描述过长(不能超过140字符)。" #: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." -msgstr "" +msgstr "无法更新组" #: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." -msgstr "" +msgstr "选项已保存。" #: actions/emailsettings.php:107 actions/imsettings.php:108 #, php-format msgid "Awaiting confirmation on this address. " -msgstr "" +msgstr "正在等待这个地址的确认。" #: actions/emailsettings.php:139 actions/smssettings.php:150 +#, fuzzy msgid "Make a new email address for posting to; " -msgstr "" +msgstr "新的电子邮件地址,用于发布 %s 信息" #: actions/emailsettings.php:157 +#, fuzzy msgid "Send me email when someone " -msgstr "" +msgstr "如果收到私人信息,发邮件通知我。" #: actions/emailsettings.php:168 actions/emailsettings.php:173 #: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." -msgstr "" +msgstr "允许朋友们呼叫并给我发送邮件。" #: actions/emailsettings.php:321 +#, fuzzy msgid "That email address already belongs " -msgstr "" +msgstr "此电子邮件属于其他用户。" #: actions/emailsettings.php:343 +#, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" +msgstr "验证码已被发送到您新增的即时通讯帐号。您必须允许 %s 向您发送信息。" #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" -msgstr "" +msgstr "服务器报错 -- 无法找到该用户。" #: actions/facebookhome.php:196 #, php-format msgid "If you would like the %s app to automatically update " -msgstr "" +msgstr "如果你想使用 %s 程序自动更新" #: actions/facebookhome.php:213 actions/facebooksettings.php:137 #, php-format msgid "Allow %s to update my Facebook status" -msgstr "" +msgstr "允许 %s 更新我Facebook 的状态" #: actions/facebookhome.php:218 actions/facebookhome.php:223 #: actions/facebookhome.php:217 msgid "Skip" -msgstr "" +msgstr "跳过" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 +#, fuzzy msgid "No notice content!" -msgstr "" +msgstr "没有内容!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 #: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 #: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 #: lib/action.php:1053 msgid "Pagination" -msgstr "" +msgstr "分页" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 #: lib/action.php:1062 +#, fuzzy msgid "After" -msgstr "" +msgstr "« 之后" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 #: lib/action.php:1070 +#, fuzzy msgid "Before" -msgstr "" +msgstr "之前 »" #: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" -msgstr "" +msgstr "感谢您邀请朋友使用 %s" #: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +#, fuzzy msgid "Invitations have been sent to the following users:" -msgstr "" +msgstr "已发送邀请给这些人:" #: actions/facebookinvite.php:96 actions/facebookinvite.php:102 #: actions/facebookinvite.php:94 -#, php-format +#, php-format, fuzzy msgid "You have been invited to %s" -msgstr "" +msgstr "您已被邀请到 %s" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" -msgstr "" +msgstr "%s 好友的聚合" #: actions/facebookinvite.php:113 actions/facebookinvite.php:126 #: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" -msgstr "" +msgstr "已经正在使用 %s 的朋友:" #: actions/facebookinvite.php:130 actions/facebookinvite.php:143 #: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" -msgstr "" +msgstr "发出邀请" #: actions/facebookremove.php:56 +#, fuzzy msgid "Couldn't remove Facebook user." -msgstr "" +msgstr "无法移除 facebook用户。" #: actions/facebooksettings.php:65 +#, fuzzy msgid "There was a problem saving your sync preferences!" -msgstr "" +msgstr "会话标识有问题,请重试。" #: actions/facebooksettings.php:67 msgid "Sync preferences saved." -msgstr "" +msgstr "同步选项已保存。" #: actions/facebooksettings.php:90 +#, fuzzy msgid "Automatically update my Facebook status with my notices." -msgstr "" +msgstr "自动将我的通告转发到 Twitter。" #: actions/facebooksettings.php:97 +#, fuzzy msgid "Send \"@\" replies to Facebook." -msgstr "" +msgstr "将这里的 \"@\" 回复发送到 Twitter。" #: actions/facebooksettings.php:106 +#, fuzzy msgid "Prefix" -msgstr "" +msgstr "个人信息" #: actions/facebooksettings.php:108 msgid "A string to prefix notices with." -msgstr "" +msgstr "消息以一字符串为前缀。" #: actions/facebooksettings.php:124 #, php-format msgid "If you would like %s to automatically update " -msgstr "" +msgstr "如果你希望 %s 自动更新。" #: actions/facebooksettings.php:147 msgid "Sync preferences" -msgstr "" +msgstr "同步设置" #: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 +#, fuzzy msgid "Disfavor favorite" -msgstr "" +msgstr "取消收藏" #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 #: lib/popularnoticesection.php:87 +#, fuzzy msgid "Popular notices" -msgstr "" +msgstr "没有这份通告。" #: actions/favorited.php:67 -#, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" -msgstr "" +msgstr "没有这份通告。" #: actions/favorited.php:79 +#, fuzzy msgid "The most popular notices on the site right now." -msgstr "" +msgstr "显示上周以来最流行的标签" #: actions/featured.php:69 lib/featureduserssection.php:82 #: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 #: lib/featureduserssection.php:87 msgid "Featured users" -msgstr "" +msgstr "推荐用户" #: actions/featured.php:71 #, php-format msgid "Featured users, page %d" -msgstr "" +msgstr "推荐用户,第 %d 页" #: actions/featured.php:99 #, php-format msgid "A selection of some of the great users on %s" -msgstr "" +msgstr "%s 优秀用户摘选" #: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." -msgstr "" +msgstr "那个用户阻止了你的订阅。" #: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" -msgstr "" +msgstr "没有ID" #: actions/grouplogo.php:138 actions/grouplogo.php:191 #: actions/grouplogo.php:144 actions/grouplogo.php:197 #: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" -msgstr "" +msgstr "组logo" #: actions/grouplogo.php:149 msgid "You can upload a logo image for your group." -msgstr "" +msgstr "你可以给你的组上载一个logo图。" #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 msgid "Logo updated." -msgstr "" +msgstr "logo已更新。" #: actions/grouplogo.php:450 actions/grouplogo.php:403 #: actions/grouplogo.php:398 +#, fuzzy msgid "Failed updating logo." -msgstr "" +msgstr "更新logo失败。" #: actions/groupmembers.php:93 lib/groupnav.php:91 #, php-format msgid "%s group members" -msgstr "" +msgstr "%s 组成员" #: actions/groupmembers.php:96 #, php-format msgid "%s group members, page %d" -msgstr "" +msgstr "%s 组成员, 第 %d 页" #: actions/groupmembers.php:111 msgid "A list of the users in this group." -msgstr "" +msgstr "该组成员列表。" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 #: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 #: lib/subgroupnav.php:98 msgid "Groups" -msgstr "" +msgstr "组" #: actions/groups.php:64 #, php-format msgid "Groups, page %d" -msgstr "" +msgstr "组,第 %d 页" #: actions/groups.php:90 -#, php-format +#, php-format, fuzzy msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" +msgstr "%%%%site.name%%%% 组你可以查找并联络" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 +#, fuzzy msgid "Create a new group" -msgstr "" +msgstr "创建新组" #: actions/groupsearch.php:57 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgstr "在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。" #: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" -msgstr "" +msgstr "组检索" #: actions/imsettings.php:70 +#, fuzzy msgid "You can send and receive notices through " -msgstr "" +msgstr "收发可以通过" #: actions/imsettings.php:120 #, php-format msgid "Jabber or GTalk address, " -msgstr "" +msgstr "Jabber 或者 GTalk 地址, " #: actions/imsettings.php:147 +#, fuzzy msgid "Send me replies through Jabber/GTalk " -msgstr "" +msgstr "通过Jabber/GTalk发送通告。" #: actions/imsettings.php:321 #, php-format msgid "A confirmation code was sent " -msgstr "" +msgstr "确认消息已经发送" #: actions/joingroup.php:65 actions/joingroup.php:60 +#, fuzzy msgid "You must be logged in to join a group." -msgstr "" +msgstr "您必须登录才能加入组。" #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" -msgstr "" +msgstr "您已经是该组成员" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" -msgstr "" +msgstr "无法把 %s 用户添加到 %s 组" #: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format +#, php-format, fuzzy msgid "%s joined group %s" -msgstr "" +msgstr "%s 加入 %s 组" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "" +msgstr "邮箱必须使能组才能工作。" #: actions/leavegroup.php:65 actions/leavegroup.php:60 +#, fuzzy msgid "You must be logged in to leave a group." -msgstr "" +msgstr "您必须登录才能邀请其他人使用 %s" #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 #: lib/command.php:212 lib/command.php:263 msgid "No such group." -msgstr "" +msgstr "没有这个组。" #: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +#, fuzzy msgid "You are not a member of that group." -msgstr "" +msgstr "您未告知此个人信息" #: actions/leavegroup.php:100 +#, fuzzy msgid "You may not leave a group while you are its administrator." -msgstr "" +msgstr "您不能删除其他用户的状态。" #: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 +#, fuzzy msgid "Could not find membership record." -msgstr "" +msgstr "无法更新用户记录。" #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" -msgstr "" +msgstr "无法订阅用户:未找到。" #: actions/leavegroup.php:145 actions/leavegroup.php:139 #: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" -msgstr "" +msgstr "%s 离开群 %s" #: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 #: actions/login.php:216 msgid "Login to site" -msgstr "" +msgstr "登录" #: actions/microsummary.php:69 msgid "No current status" -msgstr "" +msgstr "没有当前状态" #: actions/newgroup.php:53 msgid "New group" -msgstr "" +msgstr "新组" #: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." -msgstr "" +msgstr "使用此表格创建组。" #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." -msgstr "" +msgstr "无法创建组。" #: actions/newgroup.php:191 actions/newgroup.php:229 #: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy msgid "Could not set group membership." -msgstr "" +msgstr "无法删除订阅。" #: actions/newmessage.php:119 actions/newnotice.php:132 +#, fuzzy msgid "That's too long. " -msgstr "" +msgstr "文件超出大小限制。" #: actions/newmessage.php:134 +#, fuzzy msgid "Don't send a message to yourself; " -msgstr "" +msgstr "无法向此用户发送消息。" #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" -msgstr "" +msgstr "消息已发布。" #: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 #: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 #: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" -msgstr "" +msgstr "Ajax错误" #: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" +msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "此用户不允许振铃呼叫或者还没有确认或设置TA的电子邮件。" #: actions/nudge.php:94 msgid "Nudge sent" -msgstr "" +msgstr "振铃呼叫发出。" #: actions/nudge.php:97 msgid "Nudge sent!" -msgstr "" +msgstr "振铃呼叫已经发出!" #: actions/openidlogin.php:97 actions/openidlogin.php:106 +#, fuzzy msgid "OpenID login" -msgstr "" +msgstr "OpenID 登录" #: actions/openidsettings.php:128 +#, fuzzy msgid "Removing your only OpenID " -msgstr "" +msgstr "移除OpenID" #: actions/othersettings.php:60 +#, fuzzy msgid "Other Settings" -msgstr "" +msgstr "Twitter 设置" #: actions/othersettings.php:71 msgid "Manage various other options." -msgstr "" +msgstr "管理其他选项。" #: actions/othersettings.php:93 msgid "URL Auto-shortening" -msgstr "" +msgstr "URL自动缩短" #: actions/othersettings.php:112 msgid "Service" -msgstr "" +msgstr "服务" #: actions/othersettings.php:113 actions/othersettings.php:111 #: actions/othersettings.php:118 msgid "Automatic shortening service to use." -msgstr "" +msgstr "要使用的自动缩短服务。" #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 +#, fuzzy msgid "URL shortening service is too long (max 50 chars)." -msgstr "" +msgstr "URL缩短服务超长(最多50个字符)。" #: actions/passwordsettings.php:69 +#, fuzzy msgid "Change your password." -msgstr "" +msgstr "修改密码" #: actions/passwordsettings.php:89 actions/recoverpassword.php:228 #: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +#, fuzzy msgid "Password change" -msgstr "" +msgstr "密码已保存。" #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" -msgstr "" +msgstr "不是有效的电子邮件" #: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" -msgstr "" +msgstr "用户自加标签 %s - 第 %d 页" #: actions/peopletag.php:91 #, php-format msgid "These are users who have tagged themselves \"%s\" " -msgstr "" +msgstr "这些是自我标识为 \"%s\" 的用户" #: actions/profilesettings.php:91 actions/profilesettings.php:99 +#, fuzzy msgid "Profile information" -msgstr "" +msgstr "未知的帐号" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" +msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "你的标签 (字母letters, 数字numbers, -, ., 和 _), 以逗号或空格分隔" #: actions/profilesettings.php:144 +#, fuzzy msgid "Automatically subscribe to whoever " -msgstr "" +msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器人)" #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" -msgstr "" +msgstr "主页'%s'不正确" #: actions/profilesettings.php:311 actions/profilesettings.php:310 #: actions/profilesettings.php:336 +#, fuzzy msgid "Couldn't save tags." -msgstr "" +msgstr "无法保存个人信息。" #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, php-format +#, php-format, fuzzy msgid "Public timeline, page %d" -msgstr "" +msgstr "公开的时间表" #: actions/public.php:173 actions/public.php:184 actions/public.php:210 #: actions/public.php:92 +#, fuzzy msgid "Could not retrieve public stream." -msgstr "" +msgstr "无法获取收藏的通告。" #: actions/public.php:220 #, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) 服务" #: actions/publictagcloud.php:57 +#, fuzzy msgid "Public tag cloud" -msgstr "" +msgstr "公开的聚合" #: actions/publictagcloud.php:63 #, php-format msgid "These are most popular recent tags on %s " -msgstr "" +msgstr "这些是最近的 %s 流行标签 " #: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" -msgstr "" +msgstr "标签云聚集" #: actions/register.php:139 actions/register.php:349 actions/register.php:79 #: actions/register.php:177 actions/register.php:394 actions/register.php:183 #: actions/register.php:398 msgid "Sorry, only invited people can register." -msgstr "" +msgstr "对不起,请邀请那些能注册的人。" #: actions/register.php:149 +#, fuzzy msgid "You can't register if you don't " -msgstr "" +msgstr "您必须同意此授权方可注册。" #: actions/register.php:286 msgid "With this form you can create " -msgstr "" +msgstr "使用这个表格你可以创建" #: actions/register.php:368 +#, fuzzy msgid "1-64 lowercase letters or numbers, " -msgstr "" +msgstr "1 到 64 个小写字母或数字,不包含标点及空白" #: actions/register.php:382 actions/register.php:386 +#, fuzzy msgid "Used only for updates, announcements, " -msgstr "" +msgstr "只用于更新、通告或密码恢复" #: actions/register.php:398 +#, fuzzy msgid "URL of your homepage, blog, " -msgstr "" +msgstr "您的主页、博客或在其他站点的URL" #: actions/register.php:404 +#, fuzzy msgid "Describe yourself and your " -msgstr "" +msgstr "用不超过140个字符描述您自己和您的爱好" #: actions/register.php:410 +#, fuzzy msgid "Where you are, like \"City, " -msgstr "" +msgstr "你的位置,格式类似\"城市,省份,国家\"" #: actions/register.php:432 +#, fuzzy msgid " except this private data: password, " -msgstr "" +msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" #: actions/register.php:471 -#, php-format +#, php-format, fuzzy msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" +msgstr "祝贺你,%s!欢迎来到 %%%%site.name%%%%。在这里,您可以……" #: actions/register.php:495 +#, fuzzy msgid "(You should receive a message by email " -msgstr "" +msgstr "(您将立即收到一封电子邮件,含有" #: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." -msgstr "" +msgstr "那是一个本地资料!需要登录才能订阅。" #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, php-format +#, php-format, fuzzy msgid "Replies to %s, page %d" -msgstr "" +msgstr "%s 的回复,第 % 页" #: actions/showfavorites.php:79 -#, php-format +#, php-format, fuzzy msgid "%s favorite notices, page %d" -msgstr "" +msgstr "%s 收藏的通告" #: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" -msgstr "" +msgstr "%s 组" #: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" -msgstr "" +msgstr "%s 组, 第 %d 页" #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 +#, fuzzy msgid "Group profile" -msgstr "" +msgstr "组资料" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 @@ -4633,7 +4543,7 @@ msgstr "" #: actions/showstream.php:295 actions/userauthorization.php:167 #: lib/profilelist.php:230 msgid "URL" -msgstr "" +msgstr "URL 互联网地址" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 @@ -4643,25 +4553,27 @@ msgstr "" #: lib/profilelist.php:212 actions/showgroup.php:274 #: actions/showstream.php:312 actions/userauthorization.php:179 #: lib/profilelist.php:245 +#, fuzzy msgid "Note" -msgstr "" +msgstr "通告" #: actions/showgroup.php:270 actions/showgroup.php:272 #: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" -msgstr "" +msgstr "组动作" #: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format +#, php-format, fuzzy msgid "Notice feed for %s group" -msgstr "" +msgstr "%s 的通告聚合" #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 #: actions/showgroup.php:430 actions/showgroup.php:381 #: actions/showgroup.php:438 +#, fuzzy msgid "Members" -msgstr "" +msgstr "注册于" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 @@ -4670,970 +4582,938 @@ msgstr "" #: lib/profileaction.php:148 lib/profileaction.php:226 #: actions/showgroup.php:386 msgid "(None)" -msgstr "" +msgstr "(没有)" #: actions/showgroup.php:370 actions/showgroup.php:350 #: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" -msgstr "" +msgstr "所有成员" #: actions/showgroup.php:378 #, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showmessage.php:98 +#, fuzzy msgid "Only the sender and recipient " -msgstr "" +msgstr "只有发送和接受双方可以阅读此消息。" #: actions/showstream.php:73 actions/showstream.php:78 -#, php-format +#, php-format, fuzzy msgid "%s, page %d" -msgstr "" +msgstr "%s 的收件箱 - 第 %d 页" #: actions/showstream.php:143 +#, fuzzy msgid "'s profile" -msgstr "" +msgstr "个人信息" #: actions/showstream.php:236 actions/tagother.php:77 #: actions/showstream.php:220 actions/showstream.php:185 #: actions/showstream.php:193 +#, fuzzy msgid "User profile" -msgstr "" +msgstr "用户没有个人信息。" #: actions/showstream.php:240 actions/tagother.php:81 #: actions/showstream.php:224 actions/showstream.php:189 #: actions/showstream.php:220 msgid "Photo" -msgstr "" +msgstr "相片" #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 +#, fuzzy msgid "User actions" -msgstr "" +msgstr "未知动作" #: actions/showstream.php:342 actions/showstream.php:307 #: actions/showstream.php:390 +#, fuzzy msgid "Send a direct message to this user" -msgstr "" +msgstr "无法向此用户发送消息。" #: actions/showstream.php:343 actions/showstream.php:308 #: actions/showstream.php:391 +#, fuzzy msgid "Message" -msgstr "" +msgstr "新消息" #: actions/showstream.php:451 lib/profileaction.php:157 +#, fuzzy msgid "All subscribers" -msgstr "" +msgstr "订阅者" #: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" -msgstr "" +msgstr "所有组" #: actions/showstream.php:542 #, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgstr "**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/smssettings.php:128 +#, fuzzy msgid "Phone number, no punctuation or spaces, " -msgstr "" +msgstr "电话号码,不带标点或空格,包含地区代码" #: actions/smssettings.php:162 +#, fuzzy msgid "Send me notices through SMS; " -msgstr "" +msgstr "通过Jabber/GTalk发送通告。" #: actions/smssettings.php:335 +#, fuzzy msgid "A confirmation code was sent to the phone number you added. " -msgstr "" +msgstr "等待确认此电话号码。" #: actions/smssettings.php:453 actions/smssettings.php:465 +#, fuzzy msgid "Mobile carrier" -msgstr "" +msgstr "选择运营商" #: actions/subedit.php:70 +#, fuzzy msgid "You are not subscribed to that profile." -msgstr "" +msgstr "您未告知此个人信息" #: actions/subedit.php:83 +#, fuzzy msgid "Could not save subscription." -msgstr "" +msgstr "无法删除订阅。" #: actions/subscribe.php:55 +#, fuzzy msgid "Not a local user." -msgstr "" +msgstr "没有这个用户。" #: actions/subscribe.php:69 +#, fuzzy msgid "Subscribed" -msgstr "" +msgstr "订阅" #: actions/subscribers.php:50 -#, php-format +#, php-format, fuzzy msgid "%s subscribers" -msgstr "" +msgstr "订阅者" #: actions/subscribers.php:52 #, php-format msgid "%s subscribers, page %d" -msgstr "" +msgstr "%s 订阅者, 第 %d 页" #: actions/subscribers.php:63 +#, fuzzy msgid "These are the people who listen to " -msgstr "" +msgstr "这些用户订阅了 %s 的通告。" #: actions/subscribers.php:67 -#, php-format +#, php-format, fuzzy msgid "These are the people who " -msgstr "" +msgstr "这些用户订阅了 %s 的通告。" #: actions/subscriptions.php:52 -#, php-format +#, php-format, fuzzy msgid "%s subscriptions" -msgstr "" +msgstr "所有订阅" #: actions/subscriptions.php:54 -#, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" -msgstr "" +msgstr "所有订阅" #: actions/subscriptions.php:65 +#, fuzzy msgid "These are the people whose notices " -msgstr "" +msgstr "这是 %s 订阅的用户。" #: actions/subscriptions.php:69 -#, php-format +#, php-format, fuzzy msgid "These are the people whose " -msgstr "" +msgstr "这些用户订阅了 %s 的通告。" #: actions/subscriptions.php:122 actions/subscriptions.php:124 #: actions/subscriptions.php:183 actions/subscriptions.php:194 +#, fuzzy msgid "Jabber" -msgstr "" +msgstr "没有 Jabber ID。" #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" -msgstr "" +msgstr "带 %s 标签的通告" #: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" -msgstr "" +msgstr "有 \"%s\" 标签的消息,最近的排序在前" #: actions/tagother.php:33 +#, fuzzy msgid "Not logged in" -msgstr "" +msgstr "未登录。" #: actions/tagother.php:39 +#, fuzzy msgid "No id argument." -msgstr "" +msgstr "没有这份文档。" #: actions/tagother.php:65 -#, php-format +#, php-format, fuzzy msgid "Tag %s" -msgstr "" +msgstr "标签" #: actions/tagother.php:141 +#, fuzzy msgid "Tag user" -msgstr "" +msgstr "标签" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" +msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔" #: actions/tagother.php:164 +#, fuzzy msgid "There was a problem with your session token." -msgstr "" +msgstr "会话标识有问题,请重试。" #: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" +msgid "You can only tag people you are subscribed to or who are subscribed to you." +msgstr "你只能给你订阅的人或订阅你的人加标签。" #: actions/tagother.php:198 actions/tagother.php:200 +#, fuzzy msgid "Could not save tags." -msgstr "" +msgstr "无法保存头像" #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" +msgstr "使用这个表格给你的关注者或你的订阅加注标签。" #: actions/tagrss.php:35 +#, fuzzy msgid "No such tag." -msgstr "" +msgstr "未找到此消息。" #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" -msgstr "" +msgstr "带 %s 标签的通告" #: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 #: actions/apiblockcreate.php:108 msgid "Block user failed." -msgstr "" +msgstr "阻止用户失败。" #: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 #: actions/apiblockdestroy.php:107 msgid "Unblock user failed." -msgstr "" +msgstr "取消阻止用户失败。" #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 +#, fuzzy msgid "Not found." -msgstr "" +msgstr "未找到" #: actions/twittersettings.php:71 +#, fuzzy msgid "Add your Twitter account to automatically send " -msgstr "" +msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" #: actions/twittersettings.php:119 actions/twittersettings.php:122 +#, fuzzy msgid "Twitter user name" -msgstr "" +msgstr "Twitter 用户名" #: actions/twittersettings.php:126 actions/twittersettings.php:129 +#, fuzzy msgid "Twitter password" -msgstr "" +msgstr "Twitter 密码" #: actions/twittersettings.php:228 actions/twittersettings.php:232 #: actions/twittersettings.php:248 +#, fuzzy msgid "Twitter Friends" -msgstr "" +msgstr "Twitter 设置" #: actions/twittersettings.php:327 msgid "Username must have only numbers, " -msgstr "" +msgstr "用户名只能有数字," #: actions/twittersettings.php:341 -#, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " -msgstr "" +msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" #: actions/unblock.php:108 actions/groupunblock.php:128 +#, fuzzy msgid "Error removing the block." -msgstr "" +msgstr "保存用户时出错。" #: actions/unsubscribe.php:50 actions/unsubscribe.php:77 +#, fuzzy msgid "No profile id in request." -msgstr "" +msgstr "服务器没有返回个人信息URL。" #: actions/unsubscribe.php:57 actions/unsubscribe.php:84 +#, fuzzy msgid "No profile with that id." -msgstr "" +msgstr "没有找到此ID的信息。" #: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +#, fuzzy msgid "Unsubscribed" -msgstr "" +msgstr "退订" #: actions/usergroups.php:63 actions/usergroups.php:62 #: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" -msgstr "" +msgstr "%s 群组" #: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" -msgstr "" +msgstr "%s 群组, 第 %d 页" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 +#, fuzzy msgid "Problem saving notice. Unknown user." -msgstr "" +msgstr "保存通告时出错。" #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" +msgid "Too many notices too fast; take a breather and post again in a few minutes." +msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 msgid "You are banned from posting notices on this site." -msgstr "" +msgstr "在这个网站你被禁止发布消息。" #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" -msgstr "" +msgstr "上载一个头像。" #: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 #: lib/accountsettingsaction.php:123 msgid "Other" -msgstr "" +msgstr "其他" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 #: lib/accountsettingsaction.php:124 msgid "Other options" -msgstr "" +msgstr "其他选项" #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format +#, php-format, fuzzy msgid "%s - %s" -msgstr "" +msgstr "%s (%s)" #: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" -msgstr "" +msgstr "无标题页" #: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" -msgstr "" +msgstr "主站导航" #: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" -msgstr "" +msgstr "个人资料及朋友年表" #: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" -msgstr "" +msgstr "检索人或文字" #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" -msgstr "" +msgstr "帐号" #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#, fuzzy msgid "Change your email, avatar, password, profile" -msgstr "" +msgstr "修改资料" #: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" -msgstr "" +msgstr "与IM,手机短信,Twitter的连接" #: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" -msgstr "" +msgstr "登出本站" #: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" -msgstr "" +msgstr "登入本站" #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 +#, fuzzy msgid "Create an account" -msgstr "" +msgstr "创建新帐号" #: lib/action.php:341 lib/action.php:418 +#, fuzzy msgid "Login with OpenID" -msgstr "" +msgstr "没有这个 OpenID。" #: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 +#, fuzzy msgid "Help me!" -msgstr "" +msgstr "帮助" #: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 +#, fuzzy msgid "Site notice" -msgstr "" +msgstr "新通告" #: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" -msgstr "" +msgstr "本地显示" #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 +#, fuzzy msgid "Page notice" -msgstr "" +msgstr "新通告" #: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +#, fuzzy msgid "Secondary site navigation" -msgstr "" +msgstr "次项站导航" #: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 #: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" -msgstr "" +msgstr "StatusNet软件注册证" #: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " -msgstr "" +msgstr "全部" #: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." -msgstr "" +msgstr "注册证" #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 +#, fuzzy msgid "Block this user" -msgstr "" +msgstr "阻止该用户" #: lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 msgid "Block" -msgstr "" +msgstr "阻止" #: lib/disfavorform.php:114 lib/disfavorform.php:140 +#, fuzzy msgid "Disfavor this notice" -msgstr "" +msgstr "%s 收藏的通告" #: lib/facebookaction.php:268 #, php-format msgid "To use the %s Facebook Application you need to login " -msgstr "" +msgstr "你需要登录方能使用%sFacebook程序" #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 +#, fuzzy msgid " a new account." -msgstr "" +msgstr "一个新帐号" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 #: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 #: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" -msgstr "" +msgstr "已发布" #: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy msgid "Favor this notice" -msgstr "" +msgstr "%s 收藏的通告" #: lib/feedlist.php:64 msgid "Export data" -msgstr "" +msgstr "导出数据" #: lib/galleryaction.php:121 +#, fuzzy msgid "Filter tags" -msgstr "" +msgstr "%s 标签的聚合" #: lib/galleryaction.php:131 msgid "All" -msgstr "" +msgstr "全部" #: lib/galleryaction.php:137 lib/galleryaction.php:138 #: lib/galleryaction.php:140 +#, fuzzy msgid "Tag" -msgstr "" +msgstr "标签" #: lib/galleryaction.php:138 lib/galleryaction.php:139 #: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" -msgstr "" +msgstr "选择标签缩小清单" #: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" -msgstr "" +msgstr "执行" #: lib/groupeditform.php:148 lib/groupeditform.php:163 +#, fuzzy msgid "URL of the homepage or blog of the group or topic" -msgstr "" +msgstr "您的主页、博客或在其他站点的URL" #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 +#, fuzzy msgid "Description" -msgstr "" +msgstr "描述" #: lib/groupeditform.php:153 lib/groupeditform.php:168 +#, fuzzy msgid "Describe the group or topic in 140 chars" -msgstr "" +msgstr "用不超过140个字符描述您自己和您的爱好" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" +#, fuzzy +msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "你的位置,格式类似\"城市,省份,国家\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" -msgstr "" +msgstr "组" #: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" -msgstr "" +msgstr "admin管理员" #: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" -msgstr "" +msgstr "编辑 %s群选项" #: lib/groupnav.php:106 lib/groupnav.php:112 +#, fuzzy msgid "Logo" -msgstr "" +msgstr "Logo图标" #: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" -msgstr "" +msgstr "添加或编辑 %s 图标" #: lib/groupsbymemberssection.php:71 msgid "Groups with most members" -msgstr "" +msgstr "人气最旺的群" #: lib/groupsbypostssection.php:71 msgid "Groups with most posts" -msgstr "" +msgstr "消息最多的群" #: lib/grouptagcloudsection.php:56 #, php-format msgid "Tags in %s group's notices" -msgstr "" +msgstr "这个组所发布的消息的标签" #: lib/htmloutputter.php:104 +#, fuzzy msgid "This page is not available in a " -msgstr "" +msgstr "这个页面不提供您想要的媒体类型" #: lib/joinform.php:114 +#, fuzzy msgid "Join" -msgstr "" +msgstr "加入" #: lib/leaveform.php:114 +#, fuzzy msgid "Leave" -msgstr "" +msgstr "保存" #: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#, fuzzy msgid "Login with a username and password" -msgstr "" +msgstr "输入用户名和密码以登录。" #: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#, fuzzy msgid "Sign up for a new account" -msgstr "" +msgstr "创建新帐号" #: lib/logingroupnav.php:82 msgid "Login or register with OpenID" -msgstr "" +msgstr "使用openID登录或注册" #: lib/mail.php:175 #, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" +msgid "Hey, %s.\n\n" +msgstr "你好,%s.\n\n" #: lib/mail.php:236 -#, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " -msgstr "" +msgstr "%1$s 开始关注您的 %2$s 信息。" #: lib/mail.php:254 lib/mail.php:253 -#, php-format +#, php-format, fuzzy msgid "Location: %s\n" -msgstr "" +msgstr "位置:%s\n" #: lib/mail.php:256 lib/mail.php:255 -#, php-format +#, php-format, fuzzy msgid "Homepage: %s\n" -msgstr "" +msgstr "主页:%s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" +msgid "Bio: %s\n\n" +msgstr "自传Bio: %s\n\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" -msgstr "" +msgstr "%s 振铃呼叫你" #: lib/mail.php:465 -#, php-format +#, php-format, fuzzy msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" +msgstr "%1$s (%2$s) 发送了新的私人信息:" #: lib/mail.php:555 -#, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" -msgstr "" +msgstr "%1$s 收藏了您的 %2$s 通告" #: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 #: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +#, fuzzy msgid "From" -msgstr "" +msgstr "从 " #: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +#, fuzzy msgid "Send a direct notice" -msgstr "" +msgstr "删除通告" #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 +#, fuzzy msgid "Send a notice" -msgstr "" +msgstr "发送消息" #: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 #: lib/noticeform.php:173 +#, fuzzy msgid "Available characters" -msgstr "" +msgstr "6 个或更多字符" #: lib/noticelist.php:426 lib/noticelist.php:429 +#, fuzzy msgid "in reply to" -msgstr "" +msgstr "先前……" #: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 #: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 #: lib/noticelist.php:498 +#, fuzzy msgid "Reply to this notice" -msgstr "" +msgstr "无法删除通告。" #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 +#, fuzzy msgid "Reply" -msgstr "" +msgstr "回复" #: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 #: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 #: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 +#, fuzzy msgid "Delete this notice" -msgstr "" +msgstr "删除通告" #: lib/noticelist.php:474 actions/avatarsettings.php:148 #: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 +#, fuzzy msgid "Delete" -msgstr "" +msgstr "删除" #: lib/nudgeform.php:116 msgid "Nudge this user" -msgstr "" +msgstr "呼叫这个用户" #: lib/nudgeform.php:128 msgid "Nudge" -msgstr "" +msgstr "呼叫" #: lib/nudgeform.php:128 +#, fuzzy msgid "Send a nudge to this user" -msgstr "" +msgstr "呼叫这个用户" #: lib/personaltagcloudsection.php:56 -#, php-format +#, php-format, fuzzy msgid "Tags in %s's notices" -msgstr "" +msgstr "%s's 的消息的标签" #: lib/profilelist.php:182 lib/profilelist.php:180 #: lib/subscriptionlist.php:126 msgid "(none)" -msgstr "" +msgstr "(none 没有)" #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" -msgstr "" +msgstr "公告" #: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" -msgstr "" +msgstr "用户组" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +#, fuzzy msgid "Recent tags" -msgstr "" +msgstr "最近的标签" #: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" -msgstr "" +msgstr "特征" #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +#, fuzzy msgid "Popular" -msgstr "" +msgstr "用户" #: lib/searchgroupnav.php:82 +#, fuzzy msgid "Notice" -msgstr "" +msgstr "通告" #: lib/searchgroupnav.php:85 +#, fuzzy msgid "Find groups on this site" -msgstr "" +msgstr "搜索用户信息" #: lib/section.php:89 msgid "Untitled section" -msgstr "" +msgstr "无标题章节" #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format +#, php-format, fuzzy msgid "People %s subscribes to" -msgstr "" +msgstr "%s 订阅的人" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format +#, php-format, fuzzy msgid "People subscribed to %s" -msgstr "" +msgstr "订阅 %s" #: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" -msgstr "" +msgstr "%s 组是成员组成了" #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 -#, php-format +#, php-format, fuzzy msgid "Invite friends and colleagues to join you on %s" -msgstr "" +msgstr "使用这个表单来邀请好友和同事加入。" #: lib/subs.php:53 lib/subs.php:52 +#, fuzzy msgid "User has blocked you." -msgstr "" +msgstr "用户没有个人信息。" #: lib/subscribeform.php:115 lib/subscribeform.php:139 #: actions/userauthorization.php:178 actions/userauthorization.php:210 +#, fuzzy msgid "Subscribe to this user" -msgstr "" +msgstr "订阅 %s" #: lib/tagcloudsection.php:56 +#, fuzzy msgid "None" -msgstr "" +msgstr "否" #: lib/topposterssection.php:74 +#, fuzzy msgid "Top posters" -msgstr "" +msgstr "灌水精英" #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 +#, fuzzy msgid "Unblock this user" -msgstr "" +msgstr "取消阻止次用户" #: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" -msgstr "" +msgstr "取消阻止" #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +#, fuzzy msgid "Unsubscribe from this user" -msgstr "" +msgstr "取消订阅 %s" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" -msgstr "" +msgstr "%s 好友的聚合" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" -msgstr "" +msgstr "%s 好友的聚合" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" -msgstr "" +msgstr "%s 好友的聚合" #: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy msgid "You and friends" -msgstr "" +msgstr "%s 及好友" #: actions/avatarsettings.php:78 -#, php-format +#, php-format, fuzzy msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" +msgstr "您可以在这里上传个人头像。" #: actions/avatarsettings.php:373 +#, fuzzy msgid "Avatar deleted." -msgstr "" - -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" +msgstr "头像已更新。" #: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" +#, fuzzy +msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgstr "您选择了永久删除通告。这样做是无法恢复的。" #: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "" +msgstr "会话标识有问题,请重试。" #: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" +msgstr "如果收到私人信息,发邮件通知我。" #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" +#, php-format, fuzzy +msgid "You can upload a logo image for your group. The maximum file size is %s." +msgstr "你可以给你的组上载一个logo图。" #: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy msgid "Pick a square area of the image to be the logo." -msgstr "" +msgstr "请选择一块方形区域作为你的头像" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format +#, php-format, fuzzy msgid "Microblog by %s group" -msgstr "" +msgstr "%s 的微博客服务" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" +#, php-format, fuzzy +msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." +msgstr "在 %%site.name%% 的用户信息中搜索,可以搜索姓名、未知和爱好。搜索条件至少包含 3 个字符,多个搜索条件用空格分隔。" #: actions/newmessage.php:102 +#, fuzzy msgid "Only logged-in users can send direct messages." -msgstr "" +msgstr "发送消息出错。" #: actions/noticesearch.php:91 -#, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" -msgstr "" +msgstr "搜索有关\"%s\"的消息" #: actions/openidlogin.php:66 -#, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "由于安全原因,修改设置前需要输入用户名和密码。" #: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy msgid "Public Stream Feed (RSS 1.0)" -msgstr "" +msgstr "公开的聚合" #: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy msgid "Public Stream Feed (RSS 2.0)" -msgstr "" +msgstr "公开的聚合" #: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy msgid "Public Stream Feed (Atom)" -msgstr "" - -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" +msgstr "公开的聚合" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" +#, fuzzy +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "除了隐私内容:密码,电子邮件,即时通讯帐号,电话号码。" #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 +#, fuzzy msgid "Created" -msgstr "" - -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +msgstr "创建" #: actions/showstream.php:147 +#, fuzzy msgid "Your profile" -msgstr "" +msgstr "组资料" #: actions/showstream.php:149 -#, php-format +#, php-format, fuzzy msgid "%s's profile" -msgstr "" +msgstr "个人信息" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 1.0)" -msgstr "" +msgstr "%s 的通告聚合" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format +#, php-format, fuzzy msgid "Notice feed for %s (RSS 2.0)" -msgstr "" +msgstr "%s 的通告聚合" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format +#, php-format, fuzzy msgid "Notice feed for %s (Atom)" -msgstr "" +msgstr "%s 的通告聚合" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format +#, php-format, fuzzy msgid "FOAF for %s" -msgstr "" +msgstr "%s 的发件箱" #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 +#, fuzzy msgid "Edit Avatar" -msgstr "" +msgstr "头像" #: actions/showstream.php:316 actions/showstream.php:281 #: actions/showstream.php:366 +#, fuzzy msgid "Edit profile settings" -msgstr "" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +msgstr "个人设置" #: actions/smssettings.php:335 actions/smssettings.php:347 -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +#, fuzzy +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "验证码已被发送到您新增的电话号码。请检查收件箱(和垃圾箱),找到验证码并按要求使用它。" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5644,1647 +5524,792 @@ msgstr "" #: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 #: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy msgid "No such user!" -msgstr "" +msgstr "未找到用户" #: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" +#, fuzzy +msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." +msgstr "添加 Twitter 帐号,自动向 Twitter 发送更新。" #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" +msgstr "无法从 Twitter 获取\"%s\"的帐号信息。" #: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" +#, fuzzy +msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." +msgstr "请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通告,请点击\"取消\"。" #: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy msgid "Search for more groups" -msgstr "" +msgstr "检索人或文字" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" +#, fuzzy +msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." +msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" #: lib/action.php:406 lib/action.php:425 +#, fuzzy msgid "Connect to SMS, Twitter" -msgstr "" +msgstr "与IM,手机短信,Twitter的连接" #: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +msgstr "呼叫" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "你需要登录方能使用%sFacebook程序" #: lib/mail.php:241 lib/mail.php:240 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "%1$s 开始关注您的 %2$s 信息。\n\n %3$s\n\n为您效力的 %4$s\n" #: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy msgid "Search site" -msgstr "" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" +msgstr "搜索" #: actions/attachment.php:73 +#, fuzzy msgid "No such attachment." -msgstr "" +msgstr "没有这份文档。" #: actions/block.php:149 +#, fuzzy msgid "Do not block this user from this group" -msgstr "" +msgstr "该组成员列表。" #: actions/block.php:150 +#, fuzzy msgid "Block this user from this group" -msgstr "" +msgstr "该组成员列表。" #: actions/blockedfromgroup.php:90 -#, php-format +#, php-format, fuzzy msgid "%s blocked profiles" -msgstr "" +msgstr "用户没有个人信息。" #: actions/blockedfromgroup.php:93 -#, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" -msgstr "" +msgstr "%s 及好友" #: actions/blockedfromgroup.php:108 +#, fuzzy msgid "A list of the users blocked from joining this group." -msgstr "" +msgstr "该组成员列表。" #: actions/blockedfromgroup.php:281 +#, fuzzy msgid "Unblock user from group" -msgstr "" +msgstr "取消阻止用户失败。" #: actions/conversation.php:99 +#, fuzzy msgid "Conversation" -msgstr "" +msgstr "确认码" #: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy msgid "Do not delete this notice" -msgstr "" - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgstr "无法删除通告。" #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" -msgstr "" +msgstr "主页'%s'不正确" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." -msgstr "" - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" +msgstr "昵称已被使用,换一个吧。" #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy msgid "Could not create aliases." -msgstr "" - -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" +msgstr "无法创建收藏。" #: actions/file.php:34 +#, fuzzy msgid "No notice id" -msgstr "" +msgstr "新通告" #: actions/file.php:38 +#, fuzzy msgid "No notice" -msgstr "" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" +msgstr "新通告" #: actions/finishopenidlogin.php:211 +#, fuzzy msgid "Not a valid invitation code." -msgstr "" +msgstr "不是有效的昵称。" #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 +#, fuzzy msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" +msgstr "没有收件人。" #: actions/groupblock.php:95 +#, fuzzy msgid "User is already blocked from group." -msgstr "" +msgstr "用户没有个人信息。" #: actions/groupblock.php:100 +#, fuzzy msgid "User is not a member of group." -msgstr "" +msgstr "您未告知此个人信息" #: actions/groupblock.php:136 actions/groupmembers.php:311 #: actions/groupmembers.php:314 +#, fuzzy msgid "Block user from group" -msgstr "" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" +msgstr "阻止用户" #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy msgid "You must be logged in to edit a group." -msgstr "" +msgstr "您必须登录才能创建小组。" #: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +msgstr "组" #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 #: lib/designsettings.php:461 +#, fuzzy msgid "Couldn't update your design." -msgstr "" +msgstr "无法更新用户。" #: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy msgid "Unable to save your design settings!" -msgstr "" +msgstr "无法保存 Twitter 设置!" #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 +#, fuzzy msgid "Design preferences saved." -msgstr "" +msgstr "同步选项已保存。" #: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy msgid "Make user an admin of the group" -msgstr "" +msgstr "只有admin才能编辑这个组" #: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" +msgstr "admin管理员" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 +#, fuzzy msgid "No results." -msgstr "" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" +msgstr "没有结果" #: actions/groupunblock.php:95 +#, fuzzy msgid "User is not blocked from group." -msgstr "" - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" +msgstr "用户没有个人信息。" #: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" +msgstr "新消息" #: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy msgid "Couldn't save file." -msgstr "" - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" +msgstr "无法保存个人信息。" #: actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" +#, php-format, fuzzy +msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgstr "[OpenID](%%doc.openid%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已关联的 OpenID。" #: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy msgid "View profile designs" -msgstr "" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" +msgstr "个人设置" #: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +#, php-format, fuzzy +msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." +msgstr "这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) 服务" #: actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" +#, fuzzy +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "如果您忘记了密码,可以使用此邮箱收到新的密码。" #: actions/recoverpassword.php:158 +#, fuzzy msgid "You've been identified. Enter a new password below. " -msgstr "" +msgstr "您已得到确认。请输入新密码。" #: actions/recoverpassword.php:188 +#, fuzzy msgid "Password recover" -msgstr "" +msgstr "请求恢复密码" #: actions/register.php:86 +#, fuzzy msgid "Sorry, invalid invitation code." -msgstr "" +msgstr "验证码出错。" #: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy msgid "Subscribe to a remote user" -msgstr "" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" +msgstr "订阅 %s" #: actions/showfavorites.php:79 -#, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" -msgstr "" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" +msgstr "%s 收藏的通告" #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" +msgstr "%s 的通告聚合" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" +msgstr "%s 的通告聚合" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format +#, php-format, fuzzy msgid "Notice feed for %s group (Atom)" -msgstr "" +msgstr "%s 的通告聚合" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" +#, php-format, fuzzy +msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " +msgstr "**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy msgid "Admins" -msgstr "" +msgstr "admin管理员" #: actions/shownotice.php:101 +#, fuzzy msgid "Not a local notice" -msgstr "" +msgstr "没有这个用户。" #: actions/showstream.php:72 -#, php-format +#, php-format, fuzzy msgid " tagged %s" -msgstr "" +msgstr "带 %s 标签的通告" #: actions/showstream.php:121 -#, php-format +#, php-format, fuzzy msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" +msgstr "%s 的通告聚合" #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +#, php-format, fuzzy +msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " +msgstr "**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." -msgstr "" +msgstr "%1$s 开始关注您的 %2$s 信息。" #: actions/tag.php:77 actions/tag.php:86 -#, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" +msgstr "%s 的通告聚合" #: actions/tag.php:91 actions/tag.php:98 -#, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (Atom)" -msgstr "" +msgstr "%s 的通告聚合" #: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy msgid "This status is already a favorite!" -msgstr "" +msgstr "已收藏此通告!" #: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy msgid "That status is not a favorite!" -msgstr "" +msgstr "此通告未被收藏!" #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 +#, fuzzy msgid "Could not determine source user." -msgstr "" +msgstr "无法获取收藏的通告。" #: actions/twitapifriendships.php:215 +#, fuzzy msgid "Target user not specified." -msgstr "" +msgstr "没有收件人。" #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy msgid "Could not find target user." -msgstr "" +msgstr "找不到任何信息。" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" -msgstr "" +msgstr "%1$s / 回复 %2$s 的消息" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" -msgstr "" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" +msgstr "%2$s 上 %1$s 的更新!" #: actions/userauthorization.php:158 actions/userauthorization.php:188 +#, fuzzy msgid "License" -msgstr "" +msgstr "注册证" #: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy msgid "Reject this subscription" -msgstr "" +msgstr "所有订阅" #: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy msgid "Profile design" -msgstr "" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" +msgstr "个人设置" #: actions/usergroups.php:153 -#, php-format +#, php-format, fuzzy msgid "%s is not a member of any group." -msgstr "" - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" +msgstr "您未告知此个人信息" #: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy msgid "Problem saving notice. Too long." -msgstr "" +msgstr "保存通告时出错。" #: classes/User.php:319 classes/User.php:327 -#, php-format +#, php-format, fuzzy msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" +msgstr "发送给 %1$s 的 %2$s 消息" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy msgid "Design your profile" -msgstr "" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" +msgstr "用户没有个人信息。" #: lib/attachmentlist.php:278 +#, fuzzy msgid "Provider" -msgstr "" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" +msgstr "个人信息" #: lib/designsettings.php:105 +#, fuzzy msgid "Upload file" -msgstr "" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" +msgstr "上传" #: lib/designsettings.php:170 +#, fuzzy msgid "Change colours" -msgstr "" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" +msgstr "修改密码" #: lib/designsettings.php:191 +#, fuzzy msgid "Content" -msgstr "" +msgstr "连接" #: lib/designsettings.php:204 +#, fuzzy msgid "Sidebar" -msgstr "" +msgstr "搜索" #: lib/designsettings.php:230 +#, fuzzy msgid "Links" -msgstr "" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" +msgstr "登录" #: lib/groupnav.php:100 +#, fuzzy msgid "Blocked" -msgstr "" +msgstr "阻止" #: lib/groupnav.php:101 -#, php-format +#, php-format, fuzzy msgid "%s blocked users" -msgstr "" +msgstr "阻止用户" #: lib/groupnav.php:119 -#, php-format +#, php-format, fuzzy msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" +msgstr "添加或编辑 %s 图标" #: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy msgid "in context" -msgstr "" +msgstr "没有内容!" #: lib/profileaction.php:177 +#, fuzzy msgid "User ID" -msgstr "" +msgstr "用户" #: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy msgid "Search help" -msgstr "" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" +msgstr "搜索" #: lib/webcolor.php:82 -#, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" -msgstr "" - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" +msgstr "主页的URL不正确。" #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy msgid "No such page" -msgstr "" +msgstr "未找到此消息。" #: actions/apidirectmessage.php:89 -#, php-format +#, php-format, fuzzy msgid "Direct messages from %s" -msgstr "" +msgstr "发给 %s 的直接消息" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format +#, php-format, fuzzy msgid "That's too long. Max message size is %d chars." -msgstr "" +msgstr "超出长度限制。不能超过 140 个字符。" #: actions/apifriendshipsdestroy.php:109 +#, fuzzy msgid "Could not unfollow user: User not found." -msgstr "" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" +msgstr "无法订阅用户:未找到。" #: actions/apigroupcreate.php:261 -#, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." -msgstr "" +msgstr "描述过长(不能超过140字符)。" #: actions/apigroupjoin.php:110 +#, fuzzy msgid "You are already a member of that group." -msgstr "" +msgstr "您已经是该组成员" #: actions/apigroupjoin.php:138 -#, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." -msgstr "" +msgstr "无法把 %s 用户添加到 %s 组" #: actions/apigroupleave.php:114 +#, fuzzy msgid "You are not a member of this group." -msgstr "" +msgstr "您未告知此个人信息" #: actions/apigroupleave.php:124 -#, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." -msgstr "" +msgstr "无法订阅用户:未找到。" #: actions/apigrouplist.php:95 -#, php-format +#, php-format, fuzzy msgid "%s's groups" -msgstr "" +msgstr "%s 群组" #: actions/apigrouplist.php:103 -#, php-format +#, php-format, fuzzy msgid "Groups %s is a member of on %s." -msgstr "" +msgstr "%s 组是成员组成了" #: actions/apigrouplistall.php:94 -#, php-format +#, php-format, fuzzy msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" +msgstr "组动作" #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format +#, php-format, fuzzy msgid "That's too long. Max notice size is %d chars." -msgstr "" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" +msgstr "超出长度限制。不能超过 140 个字符。" #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy msgid "Unsupported format." -msgstr "" +msgstr "不支持这种图像格式。" #: actions/bookmarklet.php:50 +#, fuzzy msgid "Post to " -msgstr "" +msgstr "相片" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." -msgstr "" +msgstr "描述过长(不能超过140字符)。" #: actions/favoritesrss.php:115 -#, php-format +#, php-format, fuzzy msgid "Updates favored by %1$s on %2$s!" -msgstr "" +msgstr "%2$s 上 %1$s 的更新!" #: actions/finishremotesubscribe.php:80 +#, fuzzy msgid "User being listened to does not exist." -msgstr "" +msgstr "要查看的用户不存在。" #: actions/finishremotesubscribe.php:106 +#, fuzzy msgid "You are not authorized." -msgstr "" +msgstr "未认证。" #: actions/finishremotesubscribe.php:109 +#, fuzzy msgid "Could not convert request token to access token." -msgstr "" +msgstr "无法将请求标记转换为访问令牌。" #: actions/finishremotesubscribe.php:114 +#, fuzzy msgid "Remote service uses unknown version of OMB protocol." -msgstr "" +msgstr "此OMB协议版本无效。" #: actions/getfile.php:75 +#, fuzzy msgid "No such file." -msgstr "" +msgstr "没有这份通告。" #: actions/getfile.php:79 +#, fuzzy msgid "Cannot read file." -msgstr "" +msgstr "没有这份通告。" #: actions/grouprss.php:133 -#, php-format +#, php-format, fuzzy msgid "Updates from members of %1$s on %2$s!" -msgstr "" +msgstr "%2$s 上 %1$s 的更新!" #: actions/imsettings.php:89 +#, fuzzy msgid "IM is not available." -msgstr "" +msgstr "这个页面不提供您想要的媒体类型" #: actions/login.php:259 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +#, php-format, fuzzy +msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." +msgstr "请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, 或使用 [OpenID](%%action.openidlogin%%). " #: actions/noticesearchrss.php:91 -#, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "" - -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +msgstr "所有匹配搜索条件\"%s\"的消息" #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" -msgstr "" +msgstr "用不超过140个字符描述您自己和您的爱好" #: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy msgid "Describe yourself and your interests" -msgstr "" +msgstr "用不超过140个字符描述您自己和您的爱好" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." -msgstr "" - -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" +msgstr "自述过长(不能超过140字符)。" #: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" +#, fuzzy +msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "不是有效的个人信息URL(没有YADIS数据)。" #: actions/remotesubscribe.php:176 +#, fuzzy msgid "That’s a local profile! Login to subscribe." -msgstr "" +msgstr "那是一个本地资料!需要登录才能订阅。" #: actions/remotesubscribe.php:183 +#, fuzzy msgid "Couldn’t get a request token." -msgstr "" - -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" +msgstr "无法获得一份请求标记。" #: actions/replies.php:158 -#, php-format +#, php-format, fuzzy msgid "Replies feed for %s (Atom)" -msgstr "" +msgstr "%s 的通告聚合" #: actions/repliesrss.php:72 -#, php-format +#, php-format, fuzzy msgid "Replies to %1$s on %2$s!" -msgstr "" +msgstr "发送给 %1$s 的 %2$s 消息" #: actions/showfavorites.php:170 -#, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "" +msgstr "%s 的收藏的聚合" #: actions/showfavorites.php:177 -#, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "" +msgstr "%s 的收藏的聚合" #: actions/showfavorites.php:184 -#, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" -msgstr "" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" +msgstr "%s 的收藏的聚合" #: actions/showgroup.php:345 -#, php-format +#, php-format, fuzzy msgid "FOAF for %s group" -msgstr "" +msgstr "%s 组" #: actions/shownotice.php:90 +#, fuzzy msgid "Notice deleted." -msgstr "" +msgstr "消息已发布。" #: actions/smssettings.php:91 +#, fuzzy msgid "SMS is not available." -msgstr "" +msgstr "这个页面不提供您想要的媒体类型" #: actions/tag.php:92 -#, php-format +#, php-format, fuzzy msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +msgstr "%s 的通告聚合" #: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" +#, fuzzy +msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." +msgstr "请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通告,请点击\"取消\"。" #: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" +#, fuzzy +msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" +msgstr "订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" #: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +#, fuzzy +msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" #: actions/userauthorization.php:343 -#, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." -msgstr "" +msgstr "无法访问头像URL '%s'" #: actions/userauthorization.php:348 -#, php-format +#, php-format, fuzzy msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" +msgstr "'%s' 图像格式错误" #: lib/action.php:435 +#, fuzzy msgid "Connect to services" -msgstr "" +msgstr "无法重定向到服务器:%s" #: lib/action.php:785 +#, fuzzy msgid "Site content license" -msgstr "" +msgstr "StatusNet软件注册证" #: lib/command.php:88 -#, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" -msgstr "" - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" +msgstr "无法更新已确认的电子邮件。" #: lib/command.php:99 -#, php-format +#, php-format, fuzzy msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" +msgstr "振铃呼叫发出。" #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format +#, php-format, fuzzy msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" +msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" #: lib/command.php:431 -#, php-format +#, php-format, fuzzy msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" +msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" #: lib/command.php:439 -#, php-format +#, php-format, fuzzy msgid "Reply to %s sent" -msgstr "" +msgstr "无法删除通告。" #: lib/command.php:441 +#, fuzzy msgid "Error saving notice." -msgstr "" - -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +msgstr "保存通告时出错。" #: lib/common.php:191 +#, fuzzy msgid "No configuration file found. " -msgstr "" - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" +msgstr "没有验证码" #: lib/common.php:194 +#, fuzzy msgid "Go to the installer." -msgstr "" +msgstr "登入本站" #: lib/galleryaction.php:139 +#, fuzzy msgid "Select tag to filter" -msgstr "" +msgstr "选择运营商" #: lib/groupeditform.php:168 +#, fuzzy msgid "Describe the group or topic" -msgstr "" +msgstr "用不超过140个字符描述您自己和您的爱好" #: lib/groupeditform.php:170 -#, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" -msgstr "" +msgstr "用不超过140个字符描述您自己和您的爱好" #: lib/jabber.php:192 -#, php-format +#, php-format, fuzzy msgid "notice id: %s" -msgstr "" +msgstr "%s 的通告聚合" #: lib/mail.php:554 -#, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" +msgstr "%s 收藏了您的通告" #: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy msgid "from" -msgstr "" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" +msgstr " 从 " #: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy msgid "Could not determine file's mime-type!" -msgstr "" +msgstr "无法删除收藏。" #: lib/oauthstore.php:345 +#, fuzzy msgid "Duplicate notice" -msgstr "" +msgstr "删除通告" + diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index f3acfd99c2..570d7db63e 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -1,125 +1,59 @@ -# Translation of StatusNet to Chinese (Taiwan) +# Translation of StatusNet to Traditional Chinese # # -- +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" +"" "Project-Id-Version: StatusNet\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-02 10:50-0800\n" -"PO-Revision-Date: 2009-11-03 20:00:19+0000\n" -"Language-Team: Chinese (Taiwan)\n" +"PO-Revision-Date: 2009-11-06 12:24:52+0000\n" +"Language-Team: Traditional Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-Language-Code: zh-tw\n" +"X-Language-Code: zh-hant\n" "X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" -msgstr "" +msgstr "搜尋 \"%s\"相關資料" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid "" -" except this private data: password, email address, IM address, phone number." -msgstr "" - -#: ../actions/showstream.php:400 ../lib/stream.php:109 -#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 -msgid " from " -msgstr "" - -#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 -#, php-format -msgid "%1$s / Updates replying to %2$s" -msgstr "" - -#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 -#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 -#, php-format -msgid "%1$s has invited you to join them on %2$s" -msgstr "" - -#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 -#: actions/invite.php:228 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -"%2$s is a micro-blogging service that lets you keep up-to-date with people " -"you know and people who interest you.\n" -"\n" -"You can also share news about yourself, your thoughts, or your life online " -"with people who know about you. It's also great for meeting new people who " -"share your interests.\n" -"\n" -"%1$s said:\n" -"\n" -"%4$s\n" -"\n" -"You can see %1$s's profile page on %2$s here:\n" -"\n" -"%5$s\n" -"\n" -"If you'd like to try the service, click on the link below to accept the " -"invitation.\n" -"\n" -"%6$s\n" -"\n" -"If not, you can ignore this message. Thanks for your patience and your " -"time.\n" -"\n" -"Sincerely, %2$s\n" -msgstr "" +msgid " except this private data: password, email address, IM address, phone number." +msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." -msgstr "" +msgstr "現在%1$s在%2$s成為你的粉絲囉" #: ../lib/mail.php:126 #, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"Faithfully yours,\n" -"%4$s.\n" -msgstr "" - -#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 -#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 -#, php-format -msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "" +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgstr "現在%1$s在%2$s成為你的粉絲囉。\n\n %3$s\n\n\n%4$s.\n敬上。\n" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 #: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" -msgstr "" - -#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 -#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 -#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 -#, php-format -msgid "%s (%s)" -msgstr "" +msgstr "%1$s的狀態是%2$s" #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" -msgstr "" +msgstr "%s的公開內容" #: ../actions/all.php:47 ../actions/allrss.php:60 #: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47 @@ -134,62 +68,23 @@ msgstr "" #: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" -msgstr "" - -#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 -#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 -#: actions/publicrss.php:103 -#, php-format -msgid "%s public timeline" -msgstr "" - -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 -#, php-format -msgid "%s status" -msgstr "" - -#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 -#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 -#: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 -#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 -#: actions/publicrss.php:105 -#, php-format -msgid "%s updates from everyone!" -msgstr "" - -#: ../actions/register.php:213 actions/register.php:497 -#: actions/register.php:545 actions/register.php:555 -msgid "" -"(You should receive a message by email momentarily, with instructions on how " -"to confirm your email address.)" -msgstr "" +msgstr "%s與好友" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "" -"**%%site.name%%** is a microblogging service brought to you by [%%site." -"broughtby%%](%%site.broughtbyurl%%). " -msgstr "" +msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgstr "**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型部落格服務" #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " -msgstr "" +msgstr "**%%site.name%%**是個微型部落格" #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "" +msgstr "必須注明作者姓名或昵稱." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -197,137 +92,35 @@ msgstr "" #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" - -#: ../actions/register.php:152 actions/register.php:166 -#: actions/register.php:368 actions/register.php:414 actions/register.php:418 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "" +msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" -msgstr "" +msgstr "6個以上字元" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 #: actions/recoverpassword.php:220 actions/recoverpassword.php:233 #: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" -msgstr "" - -#: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 actions/register.php:419 actions/register.php:423 -msgid "6 or more characters. Required." -msgstr "" +msgstr "6個或6個以上字元,別忘了自己密碼喔" #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "" -"A confirmation code was sent to the IM address you added. You must approve %" -"s for sending messages to you." -msgstr "" - -#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 -#: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "" -"A confirmation code was sent to the email address you added. Check your " -"inbox (and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "" -"A confirmation code was sent to the phone number you added. Check your inbox " -"(and spam box!) for the code and instructions on how to use it." -msgstr "" - -#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 -#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 -#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 -#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 -#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 -#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 -#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 -#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 -#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 -#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 -#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 -#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 -#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 -#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 -#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 -#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 -#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 -#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 -#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 -#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 -#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 -#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 -#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 -#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 -#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 -#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 -#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 -#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 -#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 -#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 -#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 -#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 -#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 -#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 -#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 -#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 -#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 -#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 -#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 -#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 -msgid "API method not found!" -msgstr "" - -#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 -#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 -#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 -#: ../actions/twitapidirect_messages.php:49 -#: ../actions/twitapidirect_messages.php:56 -#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 -#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 -#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 -#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 -#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 -#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 -#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 -#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 -#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 -#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 -#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 -#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 -#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 -#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 -#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 -#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 -#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 -#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 -#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 -msgid "API method under construction." -msgstr "" +msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 msgid "About" -msgstr "" +msgstr "關於" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 #: actions/userauthorization.php:143 actions/userauthorization.php:178 #: actions/userauthorization.php:209 msgid "Accept" -msgstr "" +msgstr "接受" #: ../actions/emailsettings.php:62 ../actions/imsettings.php:63 #: ../actions/openidsettings.php:57 ../actions/smssettings.php:71 @@ -340,17 +133,12 @@ msgstr "" #: actions/emailsettings.php:126 actions/imsettings.php:133 #: actions/smssettings.php:145 msgid "Add" -msgstr "" +msgstr "新增" #: ../actions/openidsettings.php:43 actions/openidsettings.php:44 #: actions/openidsettings.php:93 msgid "Add OpenID" -msgstr "" - -#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 -#: lib/accountsettingsaction.php:117 -msgid "Add or remove OpenIDs" -msgstr "" +msgstr "新增OpenID" #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 @@ -359,29 +147,24 @@ msgstr "" #: actions/smssettings.php:92 actions/emailsettings.php:100 #: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" -msgstr "" - -#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 -#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 -msgid "Addresses of friends to invite (one per line)" -msgstr "" +msgstr "信箱" #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" -msgstr "" +msgstr "所有訂閱" #: ../actions/publicrss.php:64 actions/publicrss.php:50 #: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" -msgstr "" +msgstr "%s的所有新增內容" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 #: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" -msgstr "" +msgstr "所有符合 \"%s\"的更新" #: ../actions/finishopenidlogin.php:29 ../actions/login.php:31 #: ../actions/openidlogin.php:29 ../actions/register.php:30 @@ -391,37 +174,24 @@ msgstr "" #: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 #: actions/login.php:79 msgid "Already logged in." -msgstr "" +msgstr "已登入" #: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." -msgstr "" - -#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 actions/deletenotice.php:114 -#: actions/deletenotice.php:144 -msgid "Are you sure you want to delete this notice?" -msgstr "" +msgstr "此帳號已註冊" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 msgid "Authorize subscription" -msgstr "" +msgstr "註冊確認" #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "" - -#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 -#: actions/profilesettings.php:144 actions/profilesettings.php:145 -#: actions/profilesettings.php:160 -msgid "" -"Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "" +msgstr "未來在同一部電腦自動登入" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -430,36 +200,23 @@ msgstr "" #: actions/showgroup.php:216 actions/showgroup.php:221 #: lib/accountsettingsaction.php:111 msgid "Avatar" -msgstr "" +msgstr "個人圖像" #: ../actions/avatar.php:113 actions/profilesettings.php:350 #: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." -msgstr "" +msgstr "更新個人圖像" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "" -"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " -"message with further instructions. (Did you add %s to your buddy list?)" -msgstr "" - -#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 -#: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "" -"Awaiting confirmation on this address. Check your inbox (and spam box!) for " -"a message with further instructions." -msgstr "" - -#: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 actions/smssettings.php:123 -msgid "Awaiting confirmation on this phone number." -msgstr "" +msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgstr "等待確認此信箱。看看你的Jabber/GTalk是否有訊息指示下一步動作。(你加入%s到你的好友清單了嗎?)" #: ../lib/util.php:1318 lib/util.php:1452 +#, fuzzy msgid "Before »" -msgstr "" +msgstr "之前的內容»" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 @@ -467,7 +224,7 @@ msgstr "" #: actions/register.php:448 actions/profilesettings.php:127 #: actions/register.php:459 msgid "Bio" -msgstr "" +msgstr "自我介紹" #: ../actions/profilesettings.php:101 ../actions/register.php:82 #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 @@ -476,18 +233,13 @@ msgstr "" #: actions/updateprofile.php:107 actions/updateprofile.php:109 #: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." -msgstr "" - -#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 -#: actions/deletenotice.php:71 -msgid "Can't delete this notice." -msgstr "" +msgstr "自我介紹過長(共140個字元)" #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" -msgstr "" +msgstr "無法讀取此%sURL的圖像" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 @@ -495,7 +247,7 @@ msgstr "" #: actions/passwordsettings.php:174 actions/recoverpassword.php:365 #: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." -msgstr "" +msgstr "無法存取新密碼" #: ../actions/emailsettings.php:57 ../actions/imsettings.php:58 #: ../actions/smssettings.php:62 actions/emailsettings.php:58 @@ -504,48 +256,27 @@ msgstr "" #: actions/smssettings.php:114 actions/emailsettings.php:117 #: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" -msgstr "" +msgstr "取消" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 #: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." -msgstr "" +msgstr "無法初始化OpenID用戶對象(consumer object)" #: ../actions/imsettings.php:163 actions/imsettings.php:171 #: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" -msgstr "" - -#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 actions/emailsettings.php:318 -#: actions/emailsettings.php:326 -msgid "Cannot normalize that email address" -msgstr "" +msgstr "此JabberID錯誤" #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" -msgstr "" - -#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 -msgid "Change email handling" -msgstr "" +msgstr "更改" #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" -msgstr "" - -#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 -#: lib/accountsettingsaction.php:115 -msgid "Change your password" -msgstr "" - -#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 -msgid "Change your profile settings" -msgstr "" +msgstr "更改密碼" #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 @@ -557,12 +288,12 @@ msgstr "" #: actions/passwordsettings.php:111 actions/recoverpassword.php:239 #: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" -msgstr "" +msgstr "確認" #: ../actions/confirmaddress.php:90 actions/confirmaddress.php:90 #: actions/confirmaddress.php:144 msgid "Confirm Address" -msgstr "" +msgstr "確認信箱" #: ../actions/emailsettings.php:238 ../actions/imsettings.php:222 #: ../actions/smssettings.php:245 actions/emailsettings.php:256 @@ -572,109 +303,56 @@ msgstr "" #: actions/emailsettings.php:394 actions/imsettings.php:367 #: actions/smssettings.php:386 msgid "Confirmation cancelled." -msgstr "" - -#: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 actions/smssettings.php:130 -msgid "Confirmation code" -msgstr "" +msgstr "確認取消" #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." -msgstr "" - -#: ../actions/register.php:202 actions/register.php:473 -#: actions/register.php:521 actions/register.php:531 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to...\n" -"\n" -"* Go to [your profile](%s) and post your first message.\n" -"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " -"notices through instant messages.\n" -"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " -"share your interests. \n" -"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " -"others more about you. \n" -"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " -"missed. \n" -"\n" -"Thanks for signing up and we hope you enjoy using this service." -msgstr "" +msgstr "確認碼遺失" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 #: lib/action.php:425 lib/action.php:435 msgid "Connect" -msgstr "" +msgstr "連結" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 #: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" -msgstr "" +msgstr "與現有帳號連結" #: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 #: lib/action.php:719 lib/action.php:734 msgid "Contact" -msgstr "" +msgstr "好友名單" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 #: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" -msgstr "" - -#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 -#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 -#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 -#: actions/apifriendshipscreate.php:118 -#, php-format -msgid "Could not follow user: %s is already on your list." -msgstr "" - -#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 -#: actions/apifriendshipscreate.php:109 -msgid "Could not follow user: User not found." -msgstr "" +msgstr "無法從 %s 建立OpenID" #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" -msgstr "" +msgstr "無法連結到伺服器:%s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 #: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" -msgstr "" +msgstr "無法存取個人圖像資料" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 #: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" -msgstr "" - -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 -msgid "Could not subscribe other to you." -msgstr "" - -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 -msgid "Could not subscribe." -msgstr "" - -#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 -#: actions/recoverpassword.php:111 -msgid "Could not update user with confirmed email address." -msgstr "" +msgstr "無法存取新的個人資料" #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "" +msgstr "無法轉換請求標記以致無法存取標記" #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -685,21 +363,16 @@ msgstr "" #: actions/emailsettings.php:382 actions/emailsettings.php:390 #: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." -msgstr "" +msgstr "無法取消信箱確認" #: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." -msgstr "" - -#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 -msgid "Couldn't find any statuses." -msgstr "" +msgstr "無法刪除帳號" #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." -msgstr "" +msgstr "無法取得轉換標記" #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 @@ -709,36 +382,20 @@ msgstr "" #: actions/emailsettings.php:352 actions/imsettings.php:317 #: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." -msgstr "" +msgstr "無法輸入確認碼" #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 #: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." -msgstr "" +msgstr "無法新增訂閱" #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 #: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." -msgstr "" - -#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 actions/profilesettings.php:295 -msgid "Couldn't update user for autosubscribe." -msgstr "" - -#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 -#: actions/emailsettings.php:298 actions/emailsettings.php:312 -#: actions/emailsettings.php:440 actions/emailsettings.php:462 -#: actions/emailsettings.php:447 actions/emailsettings.php:469 -#: actions/smssettings.php:515 actions/smssettings.php:539 -#: actions/smssettings.php:516 actions/smssettings.php:540 -#: actions/emailsettings.php:455 actions/emailsettings.php:477 -#: actions/smssettings.php:528 actions/smssettings.php:552 -msgid "Couldn't update user record." -msgstr "" +msgstr "無法儲存個人資料" #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 @@ -760,71 +417,49 @@ msgstr "" #: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/smssettings.php:420 msgid "Couldn't update user." -msgstr "" +msgstr "無法更新使用者" #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 #: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" -msgstr "" +msgstr "新增" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 #: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." -msgstr "" +msgstr "以此暱稱新增使用者" #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 #: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" -msgstr "" +msgstr "新增帳號" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." -msgstr "" +msgstr "該OpenID已經注冊" #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." -msgstr "" - -#: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 actions/smssettings.php:112 -msgid "Current confirmed SMS-enabled phone number." -msgstr "" - -#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 actions/emailsettings.php:105 -msgid "Current confirmed email address." -msgstr "" +msgstr "目前已確認的Jabber/Gtalk地址" #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" -msgstr "" - -#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 -#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 -#, php-format -msgid "DB error inserting hashtag: %s" -msgstr "" +msgstr "目前" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" -msgstr "" - -#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 actions/deletenotice.php:111 -#: actions/deletenotice.php:109 actions/deletenotice.php:141 -msgid "Delete notice" -msgstr "" +msgstr "增加回覆時,資料庫發生錯誤: %s" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 #: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" -msgstr "" +msgstr "請在140個字以內描述你自己與你的興趣" #: ../actions/register.php:158 ../actions/register.php:161 #: ../lib/settingsaction.php:87 actions/register.php:172 @@ -833,108 +468,83 @@ msgstr "" #: actions/register.php:427 actions/register.php:431 actions/register.php:435 #: lib/accountsettingsaction.php:117 msgid "Email" -msgstr "" - -#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 actions/emailsettings.php:121 -msgid "Email Address" -msgstr "" - -#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 -#: actions/emailsettings.php:60 -msgid "Email Settings" -msgstr "" +msgstr "電子信箱" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." -msgstr "" +msgstr "此電子信箱已註冊過了" #: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" -msgstr "" - -#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 actions/emailsettings.php:123 -msgid "Email address, like \"UserName@example.org\"" -msgstr "" - -#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 -#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 -msgid "Email addresses" -msgstr "" +msgstr "確認信箱" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." -msgstr "" - -#: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 actions/smssettings.php:131 -msgid "Enter the code you received on your phone." -msgstr "" +msgstr "請輸入暱稱或電子信箱" #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" -msgstr "" +msgstr "授權錯誤(Error authorizing token)" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 #: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 #: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." -msgstr "" +msgstr "連接OpenID時發生錯誤" #: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 #: actions/finishaddopenid.php:126 msgid "Error connecting user." -msgstr "" +msgstr "連接用戶時發生錯誤(Error connecting user.)" #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 #: lib/oauthstore.php:291 msgid "Error inserting avatar" -msgstr "" +msgstr "個人圖像插入錯誤" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 #: lib/oauthstore.php:283 msgid "Error inserting new profile" -msgstr "" +msgstr "新的更人資料輸入錯誤" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 #: lib/oauthstore.php:311 msgid "Error inserting remote profile" -msgstr "" +msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 #: actions/recoverpassword.php:280 actions/recoverpassword.php:298 #: actions/recoverpassword.php:301 msgid "Error saving address confirmation." -msgstr "" +msgstr "儲存信箱確認發生錯誤" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 #: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" -msgstr "" +msgstr "儲存遠端個人資料發生錯誤" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 #: lib/openid.php:238 msgid "Error saving the profile." -msgstr "" +msgstr "儲存個人資料發生錯誤" #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 #: lib/openid.php:249 msgid "Error saving the user." -msgstr "" +msgstr "儲存使用者發生錯誤" #: ../actions/password.php:80 actions/profilesettings.php:399 #: actions/passwordsettings.php:164 actions/passwordsettings.php:169 #: actions/passwordsettings.php:175 msgid "Error saving user; invalid." -msgstr "" +msgstr "儲存使用者發生錯誤;使用者名稱無效" #: ../actions/login.php:47 ../actions/login.php:73 #: ../actions/recoverpassword.php:307 ../actions/register.php:98 @@ -945,74 +555,56 @@ msgstr "" #: actions/register.php:235 actions/login.php:122 #: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." -msgstr "" +msgstr "使用者設定發生錯誤" #: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 #: actions/finishaddopenid.php:131 msgid "Error updating profile" -msgstr "" +msgstr "更新個人資料發生錯誤" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 #: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" -msgstr "" +msgstr "更新遠端個人資料發生錯誤" #: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 #: actions/recoverpassword.php:86 msgid "Error with confirmation code." -msgstr "" +msgstr "確認碼發生錯誤" #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 #: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" -msgstr "" +msgstr "這個暱稱已有人用了喔" #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 #: lib/action.php:708 lib/action.php:723 msgid "FAQ" -msgstr "" +msgstr "常見問題" #: ../actions/avatar.php:115 actions/profilesettings.php:352 #: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." -msgstr "" +msgstr "無法上傳個人圖像" #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 #: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" -msgstr "" +msgstr "發送給%s好友的訂閱" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 #: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" -msgstr "" - -#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 -#: actions/tag.php:68 -#, php-format -msgid "Feed for tag %s" -msgstr "" - -#: ../lib/searchaction.php:105 lib/searchaction.php:105 -#: lib/searchgroupnav.php:83 -msgid "Find content of notices" -msgstr "" - -#: ../lib/searchaction.php:101 lib/searchaction.php:101 -#: lib/searchgroupnav.php:81 -msgid "Find people on this site" -msgstr "" +msgstr "回應給%s的訂閱" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "" -"For security reasons, please re-enter your user name and password before " -"changing your settings." -msgstr "" +msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更改設定。" #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1025,7 +617,7 @@ msgstr "" #: actions/profilesettings.php:111 actions/register.php:441 #: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" -msgstr "" +msgstr "全名" #: ../actions/profilesettings.php:98 ../actions/register.php:79 #: ../actions/updateprofile.php:93 actions/profilesettings.php:213 @@ -1039,19 +631,19 @@ msgstr "" #: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/register.php:214 msgid "Full name is too long (max 255 chars)." -msgstr "" +msgstr "全名過長(最多255字元)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 #: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 #: lib/action.php:456 lib/action.php:719 msgid "Help" -msgstr "" +msgstr "求救" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 #: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 #: lib/action.php:417 lib/action.php:430 msgid "Home" -msgstr "" +msgstr "主頁" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 @@ -1060,7 +652,7 @@ msgstr "" #: lib/groupeditform.php:161 actions/profilesettings.php:115 #: actions/register.php:446 msgid "Homepage" -msgstr "" +msgstr "個人首頁" #: ../actions/profilesettings.php:95 ../actions/register.php:76 #: actions/profilesettings.php:210 actions/register.php:83 @@ -1072,140 +664,71 @@ msgstr "" #: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/register.php:211 msgid "Homepage is not a valid URL." -msgstr "" - -#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 actions/emailsettings.php:178 -#: actions/emailsettings.php:185 -msgid "I want to post notices by email." -msgstr "" - -#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 -msgid "IM" -msgstr "" +msgstr "個人首頁位址錯誤" #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" -msgstr "" +msgstr "線上即時通信箱" #: ../actions/imsettings.php:33 actions/imsettings.php:33 #: actions/imsettings.php:59 msgid "IM Settings" -msgstr "" +msgstr "線上即時通設定" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "" -"If you already have an account, login with your username and password to " -"connect it to your OpenID." -msgstr "" +msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgstr "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "" -"If you want to add an OpenID to your account, enter it in the box below and " -"click \"Add\"." -msgstr "" - -#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 -#: actions/emailsettings.php:68 actions/smssettings.php:76 -#: actions/emailsettings.php:127 actions/smssettings.php:140 -#: actions/emailsettings.php:133 actions/smssettings.php:152 -msgid "Incoming email" -msgstr "" - -#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 actions/emailsettings.php:450 -#: actions/smssettings.php:518 actions/smssettings.php:519 -#: actions/emailsettings.php:458 actions/smssettings.php:531 -msgid "Incoming email address removed." -msgstr "" +msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgstr "若想新增OpenID到你的帳號,請在下方空格輸入並勾選『新增』" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 #: actions/passwordsettings.php:164 msgid "Incorrect old password" -msgstr "" +msgstr "舊密碼錯誤" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 #: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 #: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." -msgstr "" +msgstr "使用者名稱或密碼錯誤" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "" -"Instructions for recovering your password have been sent to the email " -"address registered to your account." -msgstr "" +msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgstr "我們已寄出一封信到你帳號中的信箱,告訴你如何取回你的密碼。" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" -msgstr "" - -#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 -#: actions/invite.php:72 -#, php-format -msgid "Invalid email address: %s" -msgstr "" +msgstr "個人圖像連結%s無效" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" -msgstr "" - -#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 actions/updateprofile.php:88 -#, php-format -msgid "Invalid license URL '%s'" -msgstr "" - -#: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 actions/postnotice.php:84 -msgid "Invalid notice content" -msgstr "" - -#: ../actions/postnotice.php:67 actions/postnotice.php:68 -#: actions/postnotice.php:72 -msgid "Invalid notice uri" -msgstr "" - -#: ../actions/postnotice.php:72 actions/postnotice.php:73 -#: actions/postnotice.php:77 -msgid "Invalid notice url" -msgstr "" +msgstr "個人首頁連結%s無效" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 #: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." -msgstr "" +msgstr "個人資料連結%s無效" #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 #: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" -msgstr "" - -#: ../actions/finishremotesubscribe.php:77 -#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 -msgid "Invalid profile URL returned by server." -msgstr "" +msgstr "個人資料連結無效(格式錯誤)" #: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." -msgstr "" +msgstr "尺寸錯誤" #: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 #: ../actions/register.php:111 actions/finishopenidlogin.php:241 @@ -1215,62 +738,12 @@ msgstr "" #: actions/finishopenidlogin.php:307 actions/register.php:230 #: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." -msgstr "" - -#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 -#: actions/invite.php:104 actions/invite.php:110 -msgid "Invitation(s) sent" -msgstr "" - -#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 -#: actions/invite.php:138 actions/invite.php:144 -msgid "Invitation(s) sent to the following people:" -msgstr "" - -#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 -#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 -msgid "Invite" -msgstr "" - -#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 -#: actions/invite.php:106 actions/invite.php:112 -msgid "Invite new users" -msgstr "" - -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 -#: lib/action.php:756 lib/action.php:771 -#, php-format -msgid "" -"It runs the [StatusNet](http://status.net/) microblogging software, version %" -"s, available under the [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)." -msgstr "" +msgstr "使用者名稱或密碼無效" #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." -msgstr "" - -#: ../actions/imsettings.php:62 actions/imsettings.php:63 -#: actions/imsettings.php:120 actions/imsettings.php:126 -#, php-format -msgid "" -"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " -"add %s to your buddy list in your IM client or on GTalk." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 actions/profilesettings.php:129 -#: actions/profilesettings.php:144 -msgid "Language" -msgstr "" - -#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 actions/profilesettings.php:218 -#: actions/profilesettings.php:234 -msgid "Language is too long (max 50 chars)." -msgstr "" +msgstr "此Jabber ID已有人使用" #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -1287,7 +760,7 @@ msgstr "" #: actions/userauthorization.php:158 lib/groupeditform.php:177 #: lib/profilelist.php:218 msgid "Location" -msgstr "" +msgstr "地點" #: ../actions/profilesettings.php:104 ../actions/register.php:85 #: ../actions/updateprofile.php:108 actions/profilesettings.php:219 @@ -1301,7 +774,7 @@ msgstr "" #: actions/newgroup.php:148 actions/profilesettings.php:225 #: actions/register.php:221 msgid "Location is too long (max 255 chars)." -msgstr "" +msgstr "地點過長(共255個字)" #: ../actions/login.php:97 ../actions/login.php:106 #: ../actions/openidlogin.php:68 ../lib/util.php:310 actions/login.php:97 @@ -1315,106 +788,45 @@ msgstr "" #: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" -msgstr "" +msgstr "登入" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 #: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "" - -#: ../actions/login.php:126 actions/login.php:251 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" -"%). " -msgstr "" +msgstr "用OpenID(%%doc.openid%%)帳號登入" #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" -msgstr "" - -#: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 actions/register.php:439 actions/register.php:443 -msgid "Longer name, preferably your \"real\" name" -msgstr "" +msgstr "登出" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" -msgstr "" - -#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 -#: actions/emailsettings.php:81 actions/smssettings.php:89 -#: actions/emailsettings.php:139 actions/smssettings.php:150 -#: actions/emailsettings.php:145 actions/smssettings.php:162 -msgid "Make a new email address for posting to; cancels the old one." -msgstr "" - -#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 -#: actions/emailsettings.php:71 -#, php-format -msgid "Manage how you get email from %%site.name%%." -msgstr "" +msgstr "遺失或忘記密碼了嗎?" #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" -msgstr "" +msgstr "何時加入會員的呢?" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 #: actions/userrss.php:93 #, php-format msgid "Microblog by %s" -msgstr "" - -#: ../actions/smssettings.php:304 actions/smssettings.php:464 -#: actions/smssettings.php:476 -#, php-format -msgid "" -"Mobile carrier for your phone. If you know a carrier that accepts SMS over " -"email but isn't listed here, send email to let us know at %s." -msgstr "" - -#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 -#: actions/finishopenidlogin.php:85 actions/register.php:202 -#: actions/finishopenidlogin.php:107 actions/register.php:429 -#: actions/register.php:430 actions/finishopenidlogin.php:106 -#: actions/register.php:477 actions/register.php:487 -msgid "My text and files are available under " -msgstr "" - -#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 -#: actions/emailsettings.php:83 actions/smssettings.php:91 -#: actions/emailsettings.php:142 actions/smssettings.php:152 -#: actions/emailsettings.php:148 actions/smssettings.php:164 -msgid "New" -msgstr "" - -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 -#, php-format -msgid "New email address for posting to %s" -msgstr "" - -#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 actions/emailsettings.php:472 -#: actions/smssettings.php:542 actions/smssettings.php:543 -#: actions/emailsettings.php:480 actions/smssettings.php:555 -msgid "New incoming email address added." -msgstr "" +msgstr "&s的微型部落格" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" -msgstr "" +msgstr "新暱稱" #: ../actions/newnotice.php:87 actions/newnotice.php:96 #: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" -msgstr "" +msgstr "新訊息" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 @@ -1422,12 +834,12 @@ msgstr "" #: actions/recoverpassword.php:232 actions/passwordsettings.php:107 #: actions/recoverpassword.php:235 msgid "New password" -msgstr "" +msgstr "新密碼" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "" +msgstr "新密碼已儲存成功。你已登入。" #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1443,7 +855,7 @@ msgstr "" #: actions/profilesettings.php:106 actions/register.php:417 #: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" -msgstr "" +msgstr "暱稱" #: ../actions/finishopenidlogin.php:175 ../actions/profilesettings.php:110 #: ../actions/register.php:69 actions/finishopenidlogin.php:181 @@ -1457,7 +869,7 @@ msgstr "" #: actions/newgroup.php:130 actions/profilesettings.php:231 #: actions/register.php:202 msgid "Nickname already in use. Try another one." -msgstr "" +msgstr "此暱稱已有人使用。再試試看別的吧。" #: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 #: ../actions/register.php:67 ../actions/updateprofile.php:77 @@ -1473,56 +885,38 @@ msgstr "" #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "" +msgstr "暱稱請用小寫字母或數字,勿加空格。" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." -msgstr "" +msgstr "此暱稱無法使用" #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 #: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" -msgstr "" +msgstr "你想成為誰的粉絲呢?請輸入他/她的暱稱。" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 #: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" -msgstr "" - -#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 -#: actions/block.php:147 actions/deletenotice.php:118 -#: actions/deletenotice.php:116 actions/block.php:149 -#: actions/deletenotice.php:115 actions/groupblock.php:176 -#: actions/deletenotice.php:145 -msgid "No" -msgstr "" +msgstr "暱稱或信箱" #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." -msgstr "" +msgstr "查無此Jabber ID" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 #: actions/userauthorization.php:153 actions/userauthorization.php:192 #: actions/userauthorization.php:225 msgid "No authorization request!" -msgstr "" - -#: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 actions/smssettings.php:311 -msgid "No carrier selected." -msgstr "" - -#: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 actions/smssettings.php:498 -msgid "No code entered" -msgstr "" +msgstr "無確認請求" #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." -msgstr "" +msgstr "無確認碼" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 @@ -1531,103 +925,51 @@ msgstr "" #: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 #: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" -msgstr "" - -#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 actions/emailsettings.php:311 -#: actions/emailsettings.php:319 -msgid "No email address." -msgstr "" - -#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 -msgid "No id." -msgstr "" - -#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 actions/emailsettings.php:437 -#: actions/smssettings.php:505 actions/smssettings.php:506 -#: actions/emailsettings.php:445 actions/smssettings.php:518 -msgid "No incoming email address." -msgstr "" +msgstr "無內容" #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." -msgstr "" +msgstr "無遠端伺服器提供的暱稱" #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 #: actions/leavegroup.php:76 msgid "No nickname." -msgstr "" - -#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 -#: ../actions/smssettings.php:229 actions/emailsettings.php:240 -#: actions/imsettings.php:214 actions/smssettings.php:237 -#: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 actions/emailsettings.php:370 -#: actions/emailsettings.php:378 actions/imsettings.php:351 -#: actions/smssettings.php:370 -msgid "No pending confirmation to cancel." -msgstr "" - -#: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 actions/smssettings.php:306 -msgid "No phone number." -msgstr "" - -#: ../actions/finishremotesubscribe.php:72 -#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 -msgid "No profile URL returned by server." -msgstr "" +msgstr "無暱稱" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 msgid "No registered email address for that user." -msgstr "" +msgstr "查無此使用者所註冊的信箱" #: ../actions/userauthorization.php:49 actions/userauthorization.php:55 #: actions/userauthorization.php:57 msgid "No request found!" -msgstr "" +msgstr "目前無請求" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 #: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" -msgstr "" +msgstr "無結果" #: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 #: actions/avatarbynickname.php:64 msgid "No size." -msgstr "" - -#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 -#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 -#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 -#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 -#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 -msgid "No status found with that ID." -msgstr "" - -#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 -#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 -msgid "No status with that ID found." -msgstr "" +msgstr "無尺寸" #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." -msgstr "" +msgstr "無此OpenID" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 #: actions/doc.php:69 msgid "No such document." -msgstr "" +msgstr "無此文件" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 @@ -1635,17 +977,17 @@ msgstr "" #: lib/deleteaction.php:51 actions/deletenotice.php:52 #: actions/shownotice.php:92 msgid "No such notice." -msgstr "" +msgstr "無此通知" #: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 #: actions/recoverpassword.php:62 msgid "No such recovery code." -msgstr "" +msgstr "無此恢復碼" #: ../actions/postnotice.php:56 actions/postnotice.php:57 #: actions/postnotice.php:60 msgid "No such subscription" -msgstr "" +msgstr "無此訂閱" #: ../actions/all.php:34 ../actions/allrss.php:35 #: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 @@ -1682,2318 +1024,54 @@ msgstr "" #: lib/command.php:163 lib/command.php:311 lib/command.php:364 #: lib/command.php:411 lib/command.php:466 msgid "No such user." -msgstr "" - -#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:272 -msgid "No user with that email address or username." -msgstr "" - -#: ../lib/gallery.php:80 lib/gallery.php:85 -msgid "Nobody to show!" -msgstr "" +msgstr "無此使用者" #: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 #: actions/recoverpassword.php:66 msgid "Not a recovery code." -msgstr "" - -#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 -msgid "Not a registered user." -msgstr "" - -#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 -#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 -#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 -#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 -#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 -#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 -msgid "Not a supported data format." -msgstr "" +msgstr "此恢復碼錯誤" #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" -msgstr "" +msgstr "此JabberID無效" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 #: lib/openid.php:143 msgid "Not a valid OpenID." -msgstr "" - -#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 actions/emailsettings.php:322 -#: actions/emailsettings.php:330 -msgid "Not a valid email address" -msgstr "" +msgstr "此OpenID無效" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." -msgstr "" - -#: ../actions/profilesettings.php:91 ../actions/register.php:71 -#: actions/profilesettings.php:206 actions/register.php:78 -#: actions/editgroup.php:186 actions/newgroup.php:137 -#: actions/profilesettings.php:195 actions/register.php:161 -#: actions/editgroup.php:188 actions/newgroup.php:138 -#: actions/profilesettings.php:196 actions/register.php:198 -#: actions/apigroupcreate.php:228 actions/editgroup.php:189 -#: actions/newgroup.php:133 actions/profilesettings.php:211 -#: actions/register.php:204 -msgid "Not a valid nickname." -msgstr "" - -#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 -#: actions/remotesubscribe.php:159 -msgid "Not a valid profile URL (incorrect services)." -msgstr "" - -#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 -#: actions/remotesubscribe.php:152 -msgid "Not a valid profile URL (no XRDS defined)." -msgstr "" - -#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 -#: actions/remotesubscribe.php:143 -msgid "Not a valid profile URL (no YADIS document)." -msgstr "" - -#: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 -#: lib/imagefile.php:96 -msgid "Not an image or corrupt file." -msgstr "" - -#: ../actions/finishremotesubscribe.php:51 -#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 -msgid "Not authorized." -msgstr "" - -#: ../actions/finishremotesubscribe.php:38 -#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 -#: actions/finishremotesubscribe.php:69 -msgid "Not expecting this response!" -msgstr "" - -#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 -#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 -msgid "Not found" -msgstr "" - -#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 -#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 -#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 -#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 -#: actions/finishaddopenid.php:29 actions/logout.php:33 -#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 -#: actions/unsubscribe.php:25 lib/deleteaction.php:38 -#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 -#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 -#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 -#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 -#: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 -#: actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/makeadmin.php:61 actions/newnotice.php:88 -#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 -#: actions/unsubscribe.php:52 -msgid "Not logged in." -msgstr "" - -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 -msgid "Not subscribed!." -msgstr "" - -#: ../actions/opensearch.php:35 actions/opensearch.php:35 -#: actions/opensearch.php:67 -msgid "Notice Search" -msgstr "" - -#: ../actions/showstream.php:82 actions/showstream.php:82 -#: actions/showstream.php:180 actions/showstream.php:187 -#: actions/showstream.php:192 -#, php-format -msgid "Notice feed for %s" -msgstr "" - -#: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 -msgid "Notice has no profile" -msgstr "" - -#: ../actions/showstream.php:316 actions/showstream.php:331 -#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 -#: actions/conversation.php:149 lib/facebookaction.php:572 -#: lib/profileaction.php:206 actions/conversation.php:154 -msgid "Notices" -msgstr "" - -#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 -#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 -#: actions/tag.php:66 -#, php-format -msgid "Notices tagged with %s" -msgstr "" - -#: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 -msgid "Old password" -msgstr "" - -#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 -#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 lib/action.php:418 -msgid "OpenID" -msgstr "" - -#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 -msgid "OpenID Account Setup" -msgstr "" - -#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 -#: lib/openid.php:269 -msgid "OpenID Auto-Submit" -msgstr "" - -#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 -#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 -#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 -#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 -#: actions/openidlogin.php:89 -msgid "OpenID Login" -msgstr "" - -#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 -#: actions/openidlogin.php:74 actions/openidsettings.php:50 -#: actions/openidlogin.php:102 actions/openidsettings.php:101 -#: actions/openidlogin.php:111 -msgid "OpenID URL" -msgstr "" - -#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 -#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 -#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 -#: actions/finishopenidlogin.php:129 -msgid "OpenID authentication cancelled." -msgstr "" - -#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 -#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 -#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 -#: actions/finishopenidlogin.php:133 -#, php-format -msgid "OpenID authentication failed: %s" -msgstr "" - -#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 -#: lib/openid.php:145 -#, php-format -msgid "OpenID failure: %s" -msgstr "" - -#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 -#: actions/openidsettings.php:231 -msgid "OpenID removed." -msgstr "" - -#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 -#: actions/openidsettings.php:59 -msgid "OpenID settings" -msgstr "" - -#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 -#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 -msgid "Optionally add a personal message to the invitation." -msgstr "" - -#: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 -msgid "Partial upload." -msgstr "" - -#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 -#: ../actions/register.php:153 ../lib/settingsaction.php:93 -#: actions/finishopenidlogin.php:96 actions/login.php:102 -#: actions/register.php:167 actions/finishopenidlogin.php:118 -#: actions/login.php:231 actions/register.php:372 -#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 -#: actions/login.php:214 lib/facebookaction.php:315 -#: actions/finishopenidlogin.php:117 actions/register.php:418 -#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 -#: lib/accountsettingsaction.php:114 -msgid "Password" -msgstr "" - -#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 -#: actions/recoverpassword.php:356 -msgid "Password and confirmation do not match." -msgstr "" - -#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 -#: actions/recoverpassword.php:352 -msgid "Password must be 6 chars or more." -msgstr "" - -#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 -#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 -msgid "Password recovery requested" -msgstr "" - -#: ../actions/password.php:89 ../actions/recoverpassword.php:313 -#: actions/profilesettings.php:408 actions/recoverpassword.php:326 -#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 -#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 -#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 -msgid "Password saved." -msgstr "" - -#: ../actions/password.php:61 ../actions/register.php:88 -#: actions/profilesettings.php:380 actions/register.php:98 -#: actions/passwordsettings.php:145 actions/register.php:183 -#: actions/passwordsettings.php:150 actions/register.php:220 -#: actions/passwordsettings.php:156 actions/register.php:227 -msgid "Passwords don't match." -msgstr "" - -#: ../lib/searchaction.php:100 lib/searchaction.php:100 -#: lib/searchgroupnav.php:80 -msgid "People" -msgstr "" - -#: ../actions/opensearch.php:33 actions/opensearch.php:33 -#: actions/opensearch.php:64 -msgid "People Search" -msgstr "" - -#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 -#: actions/peoplesearch.php:58 -msgid "People search" -msgstr "" - -#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 -#: lib/personalgroupnav.php:99 -msgid "Personal" -msgstr "" - -#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 -#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 -msgid "Personal message" -msgstr "" - -#: ../actions/smssettings.php:69 actions/smssettings.php:69 -#: actions/smssettings.php:128 actions/smssettings.php:140 -msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" - -#: ../actions/userauthorization.php:78 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Cancel\"." -msgstr "" - -#: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 actions/imsettings.php:148 -msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "" - -#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 -#: ../actions/smssettings.php:94 actions/emailsettings.php:86 -#: actions/imsettings.php:68 actions/smssettings.php:94 -#: actions/twittersettings.php:70 actions/emailsettings.php:147 -#: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 actions/twittersettings.php:137 -#: actions/emailsettings.php:153 actions/imsettings.php:139 -#: actions/smssettings.php:169 -msgid "Preferences" -msgstr "" - -#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 -#: ../actions/smssettings.php:163 actions/emailsettings.php:180 -#: actions/imsettings.php:152 actions/smssettings.php:171 -#: actions/emailsettings.php:286 actions/imsettings.php:258 -#: actions/othersettings.php:168 actions/smssettings.php:272 -#: actions/emailsettings.php:293 actions/othersettings.php:173 -#: actions/emailsettings.php:301 actions/imsettings.php:264 -#: actions/othersettings.php:180 actions/smssettings.php:284 -msgid "Preferences saved." -msgstr "" - -#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 actions/profilesettings.php:130 -#: actions/profilesettings.php:145 -msgid "Preferred language" -msgstr "" - -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 -#: lib/action.php:715 lib/action.php:730 -msgid "Privacy" -msgstr "" - -#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 -#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 -#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 -#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 -#: classes/Notice.php:293 -msgid "Problem saving notice." -msgstr "" - -#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 -#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 -#: lib/accountsettingsaction.php:108 -msgid "Profile" -msgstr "" - -#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 -msgid "Profile URL" -msgstr "" - -#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 actions/profilesettings.php:60 -msgid "Profile settings" -msgstr "" - -#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 -#: actions/postnotice.php:52 actions/updateprofile.php:53 -#: actions/postnotice.php:55 actions/updateprofile.php:56 -#: actions/updateprofile.php:58 -msgid "Profile unknown" -msgstr "" - -#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 -msgid "Public Stream Feed" -msgstr "" - -#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 -#: actions/public.php:120 actions/public.php:131 -msgid "Public timeline" -msgstr "" - -#: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 actions/imsettings.php:159 -msgid "Publish a MicroID for my Jabber/GTalk address." -msgstr "" - -#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 actions/emailsettings.php:183 -#: actions/emailsettings.php:191 -msgid "Publish a MicroID for my email address." -msgstr "" - -#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 -#: actions/tag.php:76 -msgid "Recent Tags" -msgstr "" - -#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 -msgid "Recover" -msgstr "" - -#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 -#: actions/recoverpassword.php:209 -msgid "Recover password" -msgstr "" - -#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 -#: actions/recoverpassword.php:73 -msgid "Recovery code for unknown user." -msgstr "" - -#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 -#: actions/register.php:152 actions/register.php:207 lib/util.php:328 -#: actions/register.php:69 actions/register.php:436 lib/action.php:338 -#: lib/facebookaction.php:277 lib/logingroupnav.php:78 -#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 -#: actions/register.php:108 actions/register.php:486 lib/action.php:440 -#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 -#: lib/logingroupnav.php:85 -msgid "Register" -msgstr "" - -#: ../actions/register.php:28 actions/register.php:28 -#: actions/finishopenidlogin.php:196 actions/register.php:90 -#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 -#: actions/register.php:129 -msgid "Registration not allowed." -msgstr "" - -#: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 actions/register.php:106 -msgid "Registration successful" -msgstr "" - -#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 actions/userauthorization.php:179 -#: actions/userauthorization.php:211 -msgid "Reject" -msgstr "" - -#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 -#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 -#: actions/register.php:461 actions/login.php:225 actions/register.php:471 -msgid "Remember me" -msgstr "" - -#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 actions/updateprofile.php:76 -msgid "Remote profile with no matching profile" -msgstr "" - -#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 -msgid "Remote subscribe" -msgstr "" - -#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 -#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 -#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 -#: actions/emailsettings.php:48 actions/emailsettings.php:76 -#: actions/imsettings.php:49 actions/openidsettings.php:108 -#: actions/smssettings.php:50 actions/smssettings.php:84 -#: actions/twittersettings.php:59 actions/emailsettings.php:101 -#: actions/emailsettings.php:134 actions/imsettings.php:102 -#: actions/openidsettings.php:166 actions/smssettings.php:103 -#: actions/smssettings.php:146 actions/twittersettings.php:115 -#: actions/twittersettings.php:118 actions/emailsettings.php:107 -#: actions/emailsettings.php:140 actions/imsettings.php:108 -#: actions/smssettings.php:115 actions/smssettings.php:158 -msgid "Remove" -msgstr "" - -#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 -#: actions/openidsettings.php:123 -msgid "Remove OpenID" -msgstr "" - -#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "" -"Removing your only OpenID would make it impossible to log in! If you need to " -"remove it, add another OpenID first." -msgstr "" - -#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 -#: lib/personalgroupnav.php:104 -msgid "Replies" -msgstr "" - -#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 -#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 -#: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 actions/replies.php:118 -#: actions/replies.php:117 lib/personalgroupnav.php:105 -#: actions/replies.php:125 actions/repliesrss.php:68 -#, php-format -msgid "Replies to %s" -msgstr "" - -#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "" - -#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 -#: actions/recoverpassword.php:208 -msgid "Reset password" -msgstr "" - -#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 -#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 -#: actions/subscriptions.php:125 actions/subscriptions.php:184 -#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 -msgid "SMS" -msgstr "" - -#: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 actions/smssettings.php:138 -msgid "SMS Phone number" -msgstr "" - -#: ../actions/smssettings.php:33 actions/smssettings.php:33 -#: actions/smssettings.php:58 -msgid "SMS Settings" -msgstr "" - -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 -msgid "SMS confirmation" -msgstr "" - -#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 -#: actions/recoverpassword.php:240 -msgid "Same as password above" -msgstr "" - -#: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 actions/register.php:423 actions/register.php:427 -msgid "Same as password above. Required." -msgstr "" - -#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 -#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 -#: actions/emailsettings.php:104 actions/imsettings.php:82 -#: actions/profilesettings.php:101 actions/smssettings.php:100 -#: actions/twittersettings.php:83 actions/emailsettings.php:182 -#: actions/facebooksettings.php:114 actions/imsettings.php:157 -#: actions/othersettings.php:117 actions/profilesettings.php:150 -#: actions/smssettings.php:169 actions/subscriptions.php:124 -#: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 actions/emailsettings.php:187 -#: actions/subscriptions.php:126 actions/tagother.php:154 -#: actions/twittersettings.php:164 actions/othersettings.php:119 -#: actions/profilesettings.php:152 actions/subscriptions.php:185 -#: actions/twittersettings.php:180 lib/designsettings.php:256 -#: lib/groupeditform.php:196 actions/emailsettings.php:195 -#: actions/imsettings.php:163 actions/othersettings.php:126 -#: actions/profilesettings.php:167 actions/smssettings.php:181 -#: actions/subscriptions.php:203 lib/groupeditform.php:202 -msgid "Save" -msgstr "" - -#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 -#: lib/action.php:459 -msgid "Search" -msgstr "" - -#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 -#: actions/noticesearch.php:127 -msgid "Search Stream Feed" -msgstr "" - -#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 actions/noticesearch.php:68 -#, php-format -msgid "" -"Search for notices on %%site.name%% by their contents. Separate search terms " -"by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 actions/smssettings.php:469 -msgid "Select a carrier" -msgstr "" - -#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 -#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 -#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 -#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 -#: lib/noticeform.php:208 -msgid "Send" -msgstr "" - -#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 -#: actions/emailsettings.php:74 actions/smssettings.php:82 -#: actions/emailsettings.php:132 actions/smssettings.php:145 -#: actions/emailsettings.php:138 actions/smssettings.php:157 -msgid "Send email to this address to post new notices." -msgstr "" - -#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 actions/emailsettings.php:158 -msgid "Send me notices of new subscriptions through email." -msgstr "" - -#: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 actions/imsettings.php:143 -msgid "Send me notices through Jabber/GTalk." -msgstr "" - -#: ../actions/smssettings.php:97 actions/smssettings.php:97 -#: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "" -"Send me notices through SMS; I understand I may incur exorbitant charges " -"from my carrier." -msgstr "" - -#: ../actions/imsettings.php:76 actions/imsettings.php:77 -#: actions/imsettings.php:147 actions/imsettings.php:153 -msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "" - -#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 -#: lib/facebookaction.php:228 lib/facebookaction.php:230 -msgid "Settings" -msgstr "" - -#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 actions/profilesettings.php:318 -#: actions/profilesettings.php:344 -msgid "Settings saved." -msgstr "" - -#: ../actions/tag.php:60 actions/tag.php:60 -msgid "Showing most popular tags from the last week" -msgstr "" - -#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 -#: actions/finishaddopenid.php:114 -msgid "Someone else already has this OpenID." -msgstr "" - -#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 -#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 -#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 -msgid "Something weird happened." -msgstr "" - -#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 -msgid "Sorry, no incoming email allowed." -msgstr "" - -#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 -msgid "Sorry, that is not your incoming email address." -msgstr "" - -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 -#: lib/action.php:717 lib/action.php:732 -msgid "Source" -msgstr "" - -#: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 actions/showgroup.php:375 -#: actions/showgroup.php:421 lib/profileaction.php:173 -#: actions/showgroup.php:429 -msgid "Statistics" -msgstr "" - -#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 -#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 -#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 -#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 -#: actions/finishopenidlogin.php:318 -msgid "Stored OpenID not found." -msgstr "" - -#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 -#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 -#: actions/showstream.php:197 actions/showstream.php:206 -#: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 actions/showstream.php:345 -#: actions/remotesubscribe.php:137 actions/showstream.php:439 -msgid "Subscribe" -msgstr "" - -#: ../actions/showstream.php:313 ../actions/subscribers.php:27 -#: actions/showstream.php:328 actions/subscribers.php:27 -#: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 -#: lib/subgroupnav.php:90 -msgid "Subscribers" -msgstr "" - -#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 actions/userauthorization.php:344 -#: actions/userauthorization.php:378 actions/userauthorization.php:247 -msgid "Subscription authorized" -msgstr "" - -#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 actions/userauthorization.php:355 -#: actions/userauthorization.php:389 actions/userauthorization.php:259 -msgid "Subscription rejected" -msgstr "" - -#: ../actions/showstream.php:230 ../actions/showstream.php:307 -#: ../actions/subscriptions.php:27 actions/showstream.php:240 -#: actions/showstream.php:322 actions/subscriptions.php:27 -#: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 -#: lib/subgroupnav.php:82 -msgid "Subscriptions" -msgstr "" - -#: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 -#: lib/imagefile.php:88 lib/mediafile.php:170 -msgid "System error uploading file." -msgstr "" - -#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 -#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 -#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 -#: actions/tagother.php:209 lib/profilelist.php:160 -#: actions/profilesettings.php:123 actions/showstream.php:255 -#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 -#: actions/profilesettings.php:138 actions/showstream.php:327 -msgid "Tags" -msgstr "" - -#: ../lib/searchaction.php:104 lib/searchaction.php:104 -#: lib/designsettings.php:217 -msgid "Text" -msgstr "" - -#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 actions/noticesearch.php:78 -msgid "Text search" -msgstr "" - -#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 -#: actions/openidsettings.php:227 -msgid "That OpenID does not belong to you." -msgstr "" - -#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 -#: actions/confirmaddress.php:94 -msgid "That address has already been confirmed." -msgstr "" - -#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 -#: actions/confirmaddress.php:85 -msgid "That confirmation code is not for you!" -msgstr "" - -#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 -#: actions/emailsettings.php:328 actions/emailsettings.php:336 -msgid "That email address already belongs to another user." -msgstr "" - -#: ../actions/avatar.php:80 actions/profilesettings.php:317 -#: lib/imagefile.php:71 -msgid "That file is too big." -msgstr "" - -#: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 actions/imsettings.php:299 -msgid "That is already your Jabber ID." -msgstr "" - -#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 actions/emailsettings.php:325 -#: actions/emailsettings.php:333 -msgid "That is already your email address." -msgstr "" - -#: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 actions/smssettings.php:318 -msgid "That is already your phone number." -msgstr "" - -#: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 actions/imsettings.php:387 -msgid "That is not your Jabber ID." -msgstr "" - -#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 actions/emailsettings.php:404 -#: actions/emailsettings.php:412 -msgid "That is not your email address." -msgstr "" - -#: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 actions/smssettings.php:405 -msgid "That is not your phone number." -msgstr "" - -#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 -#: actions/emailsettings.php:244 actions/imsettings.php:218 -#: actions/emailsettings.php:367 actions/imsettings.php:349 -#: actions/emailsettings.php:374 actions/emailsettings.php:382 -#: actions/imsettings.php:355 -msgid "That is the wrong IM address." -msgstr "" - -#: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 actions/smssettings.php:374 -msgid "That is the wrong confirmation number." -msgstr "" - -#: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 actions/smssettings.php:321 -msgid "That phone number already belongs to another user." -msgstr "" - -#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 -#: actions/newnotice.php:49 actions/twitapistatuses.php:330 -#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 -#: actions/newnotice.php:136 actions/twitapistatuses.php:294 -#: lib/facebookaction.php:485 actions/newnotice.php:166 -#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 -#: scripts/maildaemon.php:70 -msgid "That's too long. Max notice size is 140 chars." -msgstr "" - -#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 -#: actions/twitapiaccount.php:66 -msgid "That's too long. Max notice size is 255 chars." -msgstr "" - -#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been confirmed for your account." -msgstr "" - -#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 -#: ../actions/smssettings.php:274 actions/emailsettings.php:282 -#: actions/imsettings.php:258 actions/smssettings.php:282 -#: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 actions/emailsettings.php:423 -#: actions/emailsettings.php:431 actions/imsettings.php:408 -#: actions/smssettings.php:425 -msgid "The address was removed." -msgstr "" - -#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 -#: actions/userauthorization.php:380 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site's instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 -#: actions/userauthorization.php:391 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site's instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: ../actions/subscribers.php:35 actions/subscribers.php:35 -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who listen to %s's notices." -msgstr "" - -#: ../actions/subscribers.php:33 actions/subscribers.php:33 -#: actions/subscribers.php:63 -msgid "These are the people who listen to your notices." -msgstr "" - -#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose notices %s listens to." -msgstr "" - -#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 -#: actions/subscriptions.php:65 -msgid "These are the people whose notices you listen to." -msgstr "" - -#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 -#: actions/invite.php:130 actions/invite.php:136 -msgid "" -"These people are already users and you were automatically subscribed to them:" -msgstr "" - -#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. Please start again." -msgstr "" - -#: ../lib/openid.php:195 lib/openid.php:206 -msgid "" -"This form should automatically submit itself. If not, click the submit " -"button to go to your OpenID provider." -msgstr "" - -#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 -#, php-format -msgid "" -"This is the first time you've logged into %s so we must connect your OpenID " -"to a local account. You can either create a new account, or connect with " -"your existing account, if you have one." -msgstr "" - -#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 -#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 -#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 -#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 -#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 -#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 -#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 -msgid "This method requires a POST or DELETE." -msgstr "" - -#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 -#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 -#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 -#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 -#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 -#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 -#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 -#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 -#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 -#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 -#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 -#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 -#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 -#: actions/apistatusesupdate.php:109 -msgid "This method requires a POST." -msgstr "" - -#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 -msgid "This page is not available in a media type you accept" -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 actions/profilesettings.php:139 -#: actions/profilesettings.php:154 -msgid "Timezone" -msgstr "" - -#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 actions/profilesettings.php:212 -#: actions/profilesettings.php:228 -msgid "Timezone not selected." -msgstr "" - -#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 -#: actions/remotesubscribe.php:98 -#, php-format -msgid "" -"To subscribe, you can [login](%%action.login%%), or [register](%%action." -"register%%) a new account. If you already have an account on a [compatible " -"microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "" - -#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 -#: actions/apifriendshipsexists.php:103 -msgid "Two user ids or screen_names must be supplied." -msgstr "" - -#: ../actions/profilesettings.php:48 ../actions/register.php:169 -#: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 actions/register.php:398 -#: actions/register.php:444 actions/profilesettings.php:117 -#: actions/register.php:448 -msgid "URL of your homepage, blog, or profile on another site" -msgstr "" - -#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 -msgid "URL of your profile on another compatible microblogging service" -msgstr "" - -#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 -#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 -#: actions/emailsettings.php:144 actions/imsettings.php:118 -#: actions/recoverpassword.php:39 actions/smssettings.php:143 -#: actions/twittersettings.php:108 actions/avatarsettings.php:258 -#: actions/emailsettings.php:242 actions/grouplogo.php:317 -#: actions/imsettings.php:214 actions/recoverpassword.php:44 -#: actions/smssettings.php:236 actions/twittersettings.php:302 -#: actions/avatarsettings.php:263 actions/emailsettings.php:247 -#: actions/grouplogo.php:324 actions/twittersettings.php:306 -#: actions/twittersettings.php:322 lib/designsettings.php:301 -#: actions/emailsettings.php:255 actions/grouplogo.php:319 -#: actions/imsettings.php:220 actions/smssettings.php:248 -msgid "Unexpected form submission." -msgstr "" - -#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 -#: actions/recoverpassword.php:344 -msgid "Unexpected password reset." -msgstr "" - -#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 -#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 -msgid "Unknown action" -msgstr "" - -#: ../actions/finishremotesubscribe.php:58 -#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 -msgid "Unknown version of OMB protocol." -msgstr "" - -#: ../lib/util.php:269 lib/util.php:285 -msgid "" -"Unless otherwise specified, contents of this site are copyright by the " -"contributors and available under the " -msgstr "" - -#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 -#: actions/confirmaddress.php:90 -#, php-format -msgid "Unrecognized address type %s" -msgstr "" - -#: ../actions/showstream.php:209 actions/showstream.php:219 -#: lib/unsubscribeform.php:137 -msgid "Unsubscribe" -msgstr "" - -#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 -#: actions/postnotice.php:45 actions/updateprofile.php:46 -#: actions/postnotice.php:48 actions/updateprofile.php:49 -#: actions/updateprofile.php:51 -msgid "Unsupported OMB version" -msgstr "" - -#: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 -#: lib/imagefile.php:105 -msgid "Unsupported image file format." -msgstr "" - -#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 -msgid "Updates by SMS" -msgstr "" - -#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 -msgid "Updates by instant messenger (IM)" -msgstr "" - -#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 -#: actions/twitapistatuses.php:94 actions/allrss.php:119 -#: actions/apitimelinefriends.php:121 -#, php-format -msgid "Updates from %1$s and friends on %2$s!" -msgstr "" - -#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 -#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - -#: ../actions/avatar.php:68 actions/profilesettings.php:161 -#: actions/avatarsettings.php:162 actions/grouplogo.php:232 -#: actions/avatarsettings.php:165 actions/grouplogo.php:238 -#: actions/grouplogo.php:233 -msgid "Upload" -msgstr "" - -#: ../actions/avatar.php:27 -msgid "" -"Upload a new \"avatar\" (user image) here. You can't edit the picture after " -"you upload it, so make sure it's more or less square. It must be under the " -"site license, also. Use a picture that belongs to you and that you want to " -"share." -msgstr "" - -#: ../lib/settingsaction.php:91 -msgid "Upload a new profile image" -msgstr "" - -#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 -#: actions/invite.php:156 actions/invite.php:162 -msgid "" -"Use this form to invite your friends and colleagues to use this service." -msgstr "" - -#: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 actions/register.php:382 -#: actions/register.php:386 actions/register.php:428 actions/register.php:432 -#: actions/register.php:436 -msgid "Used only for updates, announcements, and password recovery" -msgstr "" - -#: ../actions/finishremotesubscribe.php:86 -#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 -msgid "User being listened to doesn't exist." -msgstr "" - -#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 -#: ../actions/foaf.php:47 ../actions/replies.php:41 -#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 -#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 -#: ../actions/twitapiusers.php:82 actions/all.php:41 -#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 -#: actions/showfavorites.php:41 actions/showstream.php:44 -#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 -#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 -#: actions/twitapiusers.php:87 lib/mailbox.php:50 -#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 -#: actions/showstream.php:107 actions/twitapiaccount.php:70 -#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 -#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 -#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 -#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 -#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 -#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 -#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 -#: actions/apiusershow.php:108 -msgid "User has no profile." -msgstr "" - -#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 -msgid "User nickname" -msgstr "" - -#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 -msgid "User not found." -msgstr "" - -#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 actions/profilesettings.php:140 -#: actions/profilesettings.php:155 -msgid "What timezone are you normally in?" -msgstr "" - -#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 -#: lib/noticeform.php:158 -#, php-format -msgid "What's up, %s?" -msgstr "" - -#: ../actions/profilesettings.php:54 ../actions/register.php:175 -#: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 actions/register.php:410 -#: actions/register.php:456 actions/profilesettings.php:134 -#: actions/register.php:466 -msgid "Where you are, like \"City, State (or Region), Country\"" -msgstr "" - -#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 actions/updateprofile.php:134 -#, php-format -msgid "Wrong image type for '%s'" -msgstr "" - -#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 actions/updateprofile.php:129 -#, php-format -msgid "Wrong size image at '%s'" -msgstr "" - -#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 -#: actions/deletenotice.php:64 actions/deletenotice.php:79 -#: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 actions/deletenotice.php:115 -#: actions/block.php:150 actions/deletenotice.php:116 -#: actions/groupblock.php:177 actions/deletenotice.php:146 -msgid "Yes" -msgstr "" - -#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 -#: actions/finishaddopenid.php:112 -msgid "You already have this OpenID!" -msgstr "" - -#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 -#: actions/recoverpassword.php:36 -msgid "You are already logged in!" -msgstr "" - -#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 -#: actions/invite.php:122 actions/invite.php:128 -msgid "You are already subscribed to these users:" -msgstr "" - -#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 -msgid "You are not friends with the specified user." -msgstr "" - -#: ../actions/password.php:27 -msgid "You can change your password here. Choose a good one!" -msgstr "" - -#: ../actions/register.php:135 actions/register.php:145 -msgid "You can create a new account to start posting notices." -msgstr "" - -#: ../actions/smssettings.php:28 actions/smssettings.php:28 -#: actions/smssettings.php:69 -#, php-format -msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "" - -#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "" -"You can remove an OpenID from your account by clicking the button marked " -"\"Remove\"." -msgstr "" - -#: ../actions/imsettings.php:28 actions/imsettings.php:28 -#: actions/imsettings.php:70 -#, php-format -msgid "" -"You can send and receive notices through Jabber/GTalk [instant messages](%%" -"doc.im%%). Configure your address and settings below." -msgstr "" - -#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 -#: actions/profilesettings.php:71 -msgid "" -"You can update your personal profile info here so people know more about you." -msgstr "" - -#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 -#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 -#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 -msgid "You can use the local subscription!" -msgstr "" - -#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 -#: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 actions/register.php:149 -#: actions/register.php:186 actions/register.php:192 -msgid "You can't register if you don't agree to the license." -msgstr "" - -#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 actions/updateprofile.php:69 -msgid "You did not send us that profile" -msgstr "" - -#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -"Send email to %2$s to post new messages.\n" -"\n" -"More email instructions at %3$s.\n" -"\n" -"Faithfully yours,\n" -"%4$s" -msgstr "" - -#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 -#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 -msgid "You may not delete another user's status." -msgstr "" - -#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 -#: actions/invite.php:41 -#, php-format -msgid "You must be logged in to invite other users to use %s" -msgstr "" - -#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 -#: actions/invite.php:144 actions/invite.php:150 -msgid "" -"You will be notified when your invitees accept the invitation and register " -"on the site. Thanks for growing the community!" -msgstr "" - -#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" - -#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 actions/openidlogin.php:113 -msgid "Your OpenID URL" -msgstr "" - -#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:193 -msgid "Your nickname on this server, or your registered email address." -msgstr "" - -#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" - -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 -#: lib/util.php:770 lib/util.php:816 -msgid "a few seconds ago" -msgstr "" - -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 -#: lib/util.php:782 lib/util.php:828 -#, php-format -msgid "about %d days ago" -msgstr "" - -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 -#: lib/util.php:778 lib/util.php:824 -#, php-format -msgid "about %d hours ago" -msgstr "" - -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 -#: lib/util.php:774 lib/util.php:820 -#, php-format -msgid "about %d minutes ago" -msgstr "" - -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 -#: lib/util.php:786 lib/util.php:832 -#, php-format -msgid "about %d months ago" -msgstr "" - -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 -#: lib/util.php:780 lib/util.php:826 -msgid "about a day ago" -msgstr "" - -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 -#: lib/util.php:772 lib/util.php:818 -msgid "about a minute ago" -msgstr "" - -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 -#: lib/util.php:784 lib/util.php:830 -msgid "about a month ago" -msgstr "" - -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 -#: lib/util.php:788 lib/util.php:834 -msgid "about a year ago" -msgstr "" - -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 -#: lib/util.php:776 lib/util.php:822 -msgid "about an hour ago" -msgstr "" - -#: ../actions/showstream.php:423 ../lib/stream.php:132 -#: actions/showstream.php:441 lib/stream.php:99 -msgid "delete" -msgstr "" - -#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 -#: ../lib/stream.php:117 actions/noticesearch.php:136 -#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 -msgid "in reply to..." -msgstr "" - -#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 -#: ../lib/stream.php:124 actions/noticesearch.php:143 -#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 -msgid "reply" -msgstr "" - -#: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 -msgid "same as password above" -msgstr "" - -#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 -#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 -#: actions/twitapistatuses.php:575 -msgid "unsupported file type" -msgstr "" - -#: ../lib/util.php:1309 lib/util.php:1443 -msgid "« After" -msgstr "" - -#: actions/deletenotice.php:74 actions/disfavor.php:43 -#: actions/emailsettings.php:127 actions/favor.php:45 -#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 -#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 -#: actions/openidsettings.php:123 actions/profilesettings.php:47 -#: actions/recoverpassword.php:282 actions/register.php:42 -#: actions/remotesubscribe.php:40 actions/smssettings.php:124 -#: actions/subscribe.php:44 actions/twittersettings.php:97 -#: actions/unsubscribe.php:41 actions/userauthorization.php:35 -#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 -#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 -#: actions/openidlogin.php:37 actions/recoverpassword.php:316 -#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 -#: actions/avatarsettings.php:251 actions/emailsettings.php:229 -#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 -#: actions/newmessage.php:133 actions/newnotice.php:96 -#: actions/openidsettings.php:188 actions/othersettings.php:136 -#: actions/passwordsettings.php:131 actions/profilesettings.php:172 -#: actions/register.php:113 actions/remotesubscribe.php:53 -#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 -#: actions/twittersettings.php:294 actions/userauthorization.php:39 -#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 -#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 -#: actions/othersettings.php:138 actions/recoverpassword.php:334 -#: actions/register.php:153 actions/twittersettings.php:310 -#: lib/designsettings.php:291 actions/emailsettings.php:237 -#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 -#: actions/newmessage.php:135 actions/newnotice.php:103 -#: actions/othersettings.php:145 actions/passwordsettings.php:137 -#: actions/profilesettings.php:187 actions/recoverpassword.php:337 -#: actions/register.php:159 actions/remotesubscribe.php:77 -#: actions/smssettings.php:228 actions/unsubscribe.php:69 -#: actions/userauthorization.php:52 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/disfavor.php:55 actions/disfavor.php:81 -msgid "This notice is not a favorite!" -msgstr "" - -#: actions/disfavor.php:63 actions/disfavor.php:87 -#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 -msgid "Could not delete favorite." -msgstr "" - -#: actions/disfavor.php:72 lib/favorform.php:140 -msgid "Favor" -msgstr "" - -#: actions/emailsettings.php:92 actions/emailsettings.php:157 -#: actions/emailsettings.php:163 -msgid "Send me email when someone adds my notice as a favorite." -msgstr "" - -#: actions/emailsettings.php:95 actions/emailsettings.php:163 -#: actions/emailsettings.php:169 -msgid "Send me email when someone sends me a private message." -msgstr "" - -#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 -#: actions/favor.php:79 -msgid "This notice is already a favorite!" -msgstr "" - -#: actions/favor.php:60 actions/twitapifavorites.php:151 -#: classes/Command.php:132 actions/favor.php:86 -#: actions/twitapifavorites.php:125 classes/Command.php:152 -#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 -#: actions/twitapifavorites.php:133 lib/command.php:145 -#: actions/apifavoritecreate.php:130 lib/command.php:176 -msgid "Could not create favorite." -msgstr "" - -#: actions/favor.php:70 -msgid "Disfavor" -msgstr "" - -#: actions/favoritesrss.php:60 actions/showfavorites.php:47 -#: actions/favoritesrss.php:100 actions/showfavorites.php:77 -#: actions/favoritesrss.php:110 -#, php-format -msgid "%s favorite notices" -msgstr "" - -#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 -#: actions/favoritesrss.php:114 -#, php-format -msgid "Feed of favorite notices of %s" -msgstr "" - -#: actions/inbox.php:28 actions/inbox.php:59 -#, php-format -msgid "Inbox for %s - page %d" -msgstr "" - -#: actions/inbox.php:30 actions/inbox.php:62 -#, php-format -msgid "Inbox for %s" -msgstr "" - -#: actions/inbox.php:53 actions/inbox.php:115 -msgid "This is your inbox, which lists your incoming private messages." -msgstr "" - -#: actions/invite.php:178 actions/invite.php:213 -#, php-format -msgid "" -"%1$s has invited you to join them on %2$s (%3$s).\n" -"\n" -msgstr "" - -#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 -#: actions/register.php:416 -msgid "Automatically login in the future; " -msgstr "" - -#: actions/login.php:122 actions/login.php:264 -msgid "For security reasons, please re-enter your " -msgstr "" - -#: actions/login.php:126 actions/login.php:268 -msgid "Login with your username and password. " -msgstr "" - -#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:145 -msgid "That's too long. Max message size is 140 chars." -msgstr "" - -#: actions/newmessage.php:65 actions/newmessage.php:128 -#: actions/newmessage.php:155 actions/newmessage.php:158 -msgid "No recipient specified." -msgstr "" - -#: actions/newmessage.php:68 actions/newmessage.php:113 -#: classes/Command.php:206 actions/newmessage.php:131 -#: actions/newmessage.php:168 classes/Command.php:237 -#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 -#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 -#: lib/command.php:367 -msgid "You can't send a message to this user." -msgstr "" - -#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 -#: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 actions/newmessage.php:161 -#: actions/twitapidirect_messages.php:167 lib/command.php:240 -#: actions/twitapidirect_messages.php:163 lib/command.php:233 -#: actions/newmessage.php:164 lib/command.php:370 -msgid "" -"Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "" - -#: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 actions/newmessage.php:114 -#: actions/newmessage.php:116 actions/remotesubscribe.php:154 -msgid "No such user" -msgstr "" - -#: actions/newmessage.php:117 actions/newmessage.php:67 -#: actions/newmessage.php:71 actions/newmessage.php:231 -msgid "New message" -msgstr "" - -#: actions/noticesearch.php:95 actions/noticesearch.php:146 -msgid "Notice without matching profile" -msgstr "" - -#: actions/openidsettings.php:28 actions/openidsettings.php:70 -#, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "" - -#: actions/openidsettings.php:46 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, " -msgstr "" - -#: actions/openidsettings.php:74 -msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "" - -#: actions/openidsettings.php:87 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account " -msgstr "" - -#: actions/outbox.php:28 actions/outbox.php:58 -#, php-format -msgid "Outbox for %s - page %d" -msgstr "" - -#: actions/outbox.php:30 actions/outbox.php:61 -#, php-format -msgid "Outbox for %s" -msgstr "" - -#: actions/outbox.php:53 actions/outbox.php:116 -msgid "This is your outbox, which lists private messages you have sent." -msgstr "" - -#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 -#, php-format -msgid "" -"Search for people on %%site.name%% by their name, location, or interests. " -msgstr "" - -#: actions/profilesettings.php:27 actions/profilesettings.php:69 -msgid "You can update your personal profile info here " -msgstr "" - -#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 -#: actions/userauthorization.php:159 actions/userrss.php:76 -#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 -#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 -#: actions/userauthorization.php:176 actions/userrss.php:82 -#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 -#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 -#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 -#: actions/userrss.php:103 actions/grouplogo.php:178 -#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 -msgid "User without matching profile" -msgstr "" - -#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 -msgid "This confirmation code is too old. " -msgstr "" - -#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your" -msgstr "" - -#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 -msgid "You've been identified. Enter a " -msgstr "" - -#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 -msgid "Your nickname on this server, " -msgstr "" - -#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 -msgid "Instructions for recovering your password " -msgstr "" - -#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 -msgid "New password successfully saved. " -msgstr "" - -#: actions/register.php:95 actions/register.php:180 -#: actions/passwordsettings.php:147 actions/register.php:217 -#: actions/passwordsettings.php:153 actions/register.php:224 -msgid "Password must be 6 or more characters." -msgstr "" - -#: actions/register.php:216 -#, php-format -msgid "" -"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " -"want to..." -msgstr "" - -#: actions/register.php:227 -msgid "(You should receive a message by email momentarily, with " -msgstr "" - -#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 -#, php-format -msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "" - -#: actions/showfavorites.php:61 actions/showfavorites.php:145 -#: actions/showfavorites.php:147 -#, php-format -msgid "Feed for favorites of %s" -msgstr "" - -#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 -#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 -#: actions/showfavorites.php:179 actions/showfavorites.php:209 -#: actions/showfavorites.php:132 -msgid "Could not retrieve favorite notices." -msgstr "" - -#: actions/showmessage.php:33 actions/showmessage.php:81 -msgid "No such message." -msgstr "" - -#: actions/showmessage.php:42 actions/showmessage.php:98 -msgid "Only the sender and recipient may read this message." -msgstr "" - -#: actions/showmessage.php:61 actions/showmessage.php:108 -#, php-format -msgid "Message to %1$s on %2$s" -msgstr "" - -#: actions/showmessage.php:66 actions/showmessage.php:113 -#, php-format -msgid "Message from %1$s on %2$s" -msgstr "" - -#: actions/showstream.php:154 -msgid "Send a message" -msgstr "" - -#: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format -msgid "Mobile carrier for your phone. " -msgstr "" - -#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 -#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 -#: actions/apidirectmessage.php:101 -#, php-format -msgid "Direct messages to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 -#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 -#: actions/apidirectmessage.php:105 -#, php-format -msgid "All the direct messages sent to %s" -msgstr "" - -#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 -#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 -msgid "Direct Messages You've Sent" -msgstr "" - -#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 -#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 -#: actions/apidirectmessage.php:93 -#, php-format -msgid "All the direct messages sent from %s" -msgstr "" - -#: actions/twitapidirect_messages.php:128 -#: actions/twitapidirect_messages.php:137 -#: actions/twitapidirect_messages.php:146 -#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 -msgid "No message text!" -msgstr "" - -#: actions/twitapidirect_messages.php:138 -#: actions/twitapidirect_messages.php:150 -#: actions/twitapidirect_messages.php:159 -#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 -msgid "Recipient user not found." -msgstr "" - -#: actions/twitapidirect_messages.php:141 -#: actions/twitapidirect_messages.php:153 -#: actions/twitapidirect_messages.php:162 -#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 -msgid "Can't send direct messages to users who aren't your friend." -msgstr "" - -#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 -#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 -#: actions/apitimelinefavorites.php:107 -#, php-format -msgid "%s / Favorites from %s" -msgstr "" - -#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 -#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 -#: actions/apitimelinefavorites.php:119 -#, php-format -msgid "%s updates favorited by %s / %s." -msgstr "" - -#: actions/twitapifavorites.php:187 lib/mail.php:275 -#: actions/twitapifavorites.php:164 lib/mail.php:553 -#: actions/twitapifavorites.php:170 lib/mail.php:554 -#: actions/twitapifavorites.php:221 -#, php-format -msgid "%s added your notice as a favorite" -msgstr "" - -#: actions/twitapifavorites.php:188 lib/mail.php:276 -#: actions/twitapifavorites.php:165 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -msgstr "" - -#: actions/twittersettings.php:27 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, " -msgstr "" - -#: actions/twittersettings.php:41 actions/twittersettings.php:60 -#: actions/twittersettings.php:61 -msgid "Twitter settings" -msgstr "" - -#: actions/twittersettings.php:48 actions/twittersettings.php:105 -#: actions/twittersettings.php:106 -msgid "Twitter Account" -msgstr "" - -#: actions/twittersettings.php:56 actions/twittersettings.php:113 -#: actions/twittersettings.php:114 -msgid "Current verified Twitter account." -msgstr "" - -#: actions/twittersettings.php:63 -msgid "Twitter Username" -msgstr "" - -#: actions/twittersettings.php:65 actions/twittersettings.php:123 -#: actions/twittersettings.php:126 -msgid "No spaces, please." -msgstr "" - -#: actions/twittersettings.php:67 -msgid "Twitter Password" -msgstr "" - -#: actions/twittersettings.php:72 actions/twittersettings.php:139 -#: actions/twittersettings.php:142 -msgid "Automatically send my notices to Twitter." -msgstr "" - -#: actions/twittersettings.php:75 actions/twittersettings.php:146 -#: actions/twittersettings.php:149 -msgid "Send local \"@\" replies to Twitter." -msgstr "" - -#: actions/twittersettings.php:78 actions/twittersettings.php:153 -#: actions/twittersettings.php:156 -msgid "Subscribe to my Twitter friends here." -msgstr "" - -#: actions/twittersettings.php:122 actions/twittersettings.php:331 -#: actions/twittersettings.php:348 -msgid "" -"Username must have only numbers, upper- and lowercase letters, and " -"underscore (_). 15 chars max." -msgstr "" - -#: actions/twittersettings.php:128 actions/twittersettings.php:334 -#: actions/twittersettings.php:338 actions/twittersettings.php:355 -msgid "Could not verify your Twitter credentials!" -msgstr "" - -#: actions/twittersettings.php:137 -#, php-format -msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "" - -#: actions/twittersettings.php:151 actions/twittersettings.php:170 -#: actions/twittersettings.php:348 actions/twittersettings.php:368 -#: actions/twittersettings.php:352 actions/twittersettings.php:372 -#: actions/twittersettings.php:369 actions/twittersettings.php:389 -msgid "Unable to save your Twitter settings!" -msgstr "" - -#: actions/twittersettings.php:174 actions/twittersettings.php:376 -#: actions/twittersettings.php:380 actions/twittersettings.php:399 -msgid "Twitter settings saved." -msgstr "" - -#: actions/twittersettings.php:192 actions/twittersettings.php:395 -#: actions/twittersettings.php:399 actions/twittersettings.php:418 -msgid "That is not your Twitter account." -msgstr "" - -#: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 actions/twittersettings.php:407 -#: actions/twittersettings.php:426 -msgid "Couldn't remove Twitter user." -msgstr "" - -#: actions/twittersettings.php:212 actions/twittersettings.php:407 -#: actions/twittersettings.php:411 actions/twittersettings.php:430 -msgid "Twitter account removed." -msgstr "" - -#: actions/twittersettings.php:225 actions/twittersettings.php:239 -#: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 actions/twittersettings.php:432 -#: actions/twittersettings.php:443 actions/twittersettings.php:457 -#: actions/twittersettings.php:452 actions/twittersettings.php:463 -#: actions/twittersettings.php:477 -msgid "Couldn't save Twitter preferences." -msgstr "" - -#: actions/twittersettings.php:245 actions/twittersettings.php:461 -#: actions/twittersettings.php:465 actions/twittersettings.php:485 -msgid "Twitter preferences saved." -msgstr "" - -#: actions/userauthorization.php:84 actions/userauthorization.php:86 -msgid "Please check these details to make sure " -msgstr "" - -#: actions/userauthorization.php:324 actions/userauthorization.php:340 -msgid "The subscription has been authorized, but no " -msgstr "" - -#: actions/userauthorization.php:334 actions/userauthorization.php:351 -msgid "The subscription has been rejected, but no " -msgstr "" - -#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 -#: lib/channel.php:138 lib/channel.php:158 -msgid "Command results" -msgstr "" - -#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 -msgid "Command complete" -msgstr "" - -#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 -msgid "Command failed" -msgstr "" - -#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 -msgid "Sorry, this command is not yet implemented." -msgstr "" - -#: classes/Command.php:96 classes/Command.php:113 -#, php-format -msgid "Subscriptions: %1$s\n" -msgstr "" - -#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 -#: lib/command.php:138 lib/command.php:269 lib/command.php:168 -#: lib/command.php:416 lib/command.php:471 -msgid "User has no last notice" -msgstr "" - -#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 -#: lib/command.php:159 lib/command.php:190 -msgid "Notice marked as fave." -msgstr "" - -#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 -#: lib/command.php:182 lib/command.php:315 -#, php-format -msgid "%1$s (%2$s)" -msgstr "" - -#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 -#: lib/command.php:185 lib/command.php:318 -#, php-format -msgid "Fullname: %s" -msgstr "" - -#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 -#: lib/command.php:188 lib/command.php:321 -#, php-format -msgid "Location: %s" -msgstr "" - -#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 -#: lib/command.php:191 lib/command.php:324 -#, php-format -msgid "Homepage: %s" -msgstr "" - -#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 -#: lib/command.php:194 lib/command.php:327 -#, php-format -msgid "About: %s" -msgstr "" - -#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 -#: lib/command.php:221 -#, php-format -msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "" - -#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 -#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 -#: lib/command.php:375 -#, php-format -msgid "Direct message to %s sent" -msgstr "" - -#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 -#: lib/command.php:240 lib/command.php:377 -msgid "Error sending direct message." -msgstr "" - -#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 -#: lib/command.php:293 lib/command.php:495 -msgid "Specify the name of the user to subscribe to" -msgstr "" - -#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 -#: lib/command.php:300 lib/command.php:502 -#, php-format -msgid "Subscribed to %s" -msgstr "" - -#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 -#: lib/command.php:321 lib/command.php:523 -msgid "Specify the name of the user to unsubscribe from" -msgstr "" - -#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 -#: lib/command.php:328 lib/command.php:530 -#, php-format -msgid "Unsubscribed from %s" -msgstr "" - -#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 -#: lib/command.php:346 lib/command.php:369 lib/command.php:548 -#: lib/command.php:571 -msgid "Command not yet implemented." -msgstr "" - -#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 -#: lib/command.php:349 lib/command.php:551 -msgid "Notification off." -msgstr "" - -#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 -#: lib/command.php:351 lib/command.php:553 -msgid "Can't turn off notification." -msgstr "" - -#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 -#: lib/command.php:372 lib/command.php:574 -msgid "Notification on." -msgstr "" - -#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 -#: lib/command.php:374 lib/command.php:576 -msgid "Can't turn on notification." -msgstr "" - -#: classes/Command.php:344 classes/Command.php:392 -msgid "Commands:\n" -msgstr "" - -#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 -msgid "Could not insert message." -msgstr "" - -#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 -msgid "Could not update message with new URI." -msgstr "" - -#: lib/gallery.php:46 -msgid "User without matching profile in system." -msgstr "" - -#: lib/mail.php:147 lib/mail.php:289 -#, php-format -msgid "" -"You have a new posting address on %1$s.\n" -"\n" -msgstr "" - -#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 -#, php-format -msgid "New private message from %s" -msgstr "" - -#: lib/mail.php:253 lib/mail.php:512 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -msgstr "" - -#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 -msgid "Only the user can read their own mailboxes." -msgstr "" - -#: lib/openid.php:195 lib/openid.php:203 -msgid "This form should automatically submit itself. " -msgstr "" - -#: lib/personal.php:65 lib/personalgroupnav.php:113 -#: lib/personalgroupnav.php:114 -msgid "Favorites" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: actions/favoritesrss.php:110 actions/showfavorites.php:77 -#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format -msgid "%s's favorite notices" -msgstr "" - -#: lib/personal.php:66 lib/personalgroupnav.php:114 -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - -#: lib/personal.php:75 lib/personalgroupnav.php:123 -#: lib/personalgroupnav.php:124 -msgid "Inbox" -msgstr "" - -#: lib/personal.php:76 lib/personalgroupnav.php:124 -#: lib/personalgroupnav.php:125 -msgid "Your incoming messages" -msgstr "" - -#: lib/personal.php:80 lib/personalgroupnav.php:128 -#: lib/personalgroupnav.php:129 -msgid "Outbox" -msgstr "" - -#: lib/personal.php:81 lib/personalgroupnav.php:129 -#: lib/personalgroupnav.php:130 -msgid "Your sent messages" -msgstr "" - -#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 -msgid "Twitter" -msgstr "" - -#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 -msgid "Twitter integration options" -msgstr "" - -#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 -#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 -#: lib/noticelist.php:433 lib/messageform.php:146 -msgid "To" -msgstr "" - -#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 -#: scripts/maildaemon.php:47 -msgid "Could not parse message." -msgstr "" +msgstr "此信箱無效" #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format +#, php-format, fuzzy msgid "%s and friends, page %d" -msgstr "" - -#: actions/avatarsettings.php:76 -msgid "You can upload your personal avatar." -msgstr "" +msgstr "%s與好友" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 #: actions/grouplogo.php:251 +#, fuzzy msgid "Avatar settings" -msgstr "" - -#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 -#: actions/grouplogo.php:198 actions/grouplogo.php:258 -#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 -#: actions/grouplogo.php:204 actions/grouplogo.php:264 -#: actions/grouplogo.php:199 actions/grouplogo.php:259 -msgid "Original" -msgstr "" - -#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 -#: actions/grouplogo.php:209 actions/grouplogo.php:270 -#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 -#: actions/grouplogo.php:215 actions/grouplogo.php:276 -#: actions/grouplogo.php:210 actions/grouplogo.php:271 -msgid "Preview" -msgstr "" - -#: actions/avatarsettings.php:225 actions/grouplogo.php:284 -#: actions/avatarsettings.php:228 actions/grouplogo.php:291 -#: actions/grouplogo.php:286 -msgid "Crop" -msgstr "" - -#: actions/avatarsettings.php:248 actions/deletenotice.php:133 -#: actions/emailsettings.php:224 actions/grouplogo.php:307 -#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 -#: actions/newnotice.php:96 actions/openidsettings.php:188 -#: actions/othersettings.php:136 actions/passwordsettings.php:131 -#: actions/profilesettings.php:172 actions/register.php:113 -#: actions/remotesubscribe.php:53 actions/smssettings.php:216 -#: actions/subedit.php:38 actions/twittersettings.php:290 -#: actions/userauthorization.php:39 -msgid "There was a problem with your session token. " -msgstr "" - -#: actions/avatarsettings.php:303 actions/grouplogo.php:360 -#: actions/avatarsettings.php:308 -msgid "Pick a square area of the image to be your avatar" -msgstr "" - -#: actions/avatarsettings.php:327 actions/grouplogo.php:384 -#: actions/avatarsettings.php:323 actions/grouplogo.php:382 -#: actions/grouplogo.php:377 -msgid "Lost our file data." -msgstr "" +msgstr "線上即時通設定" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 +#, fuzzy msgid "Lost our file." -msgstr "" - -#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 -#: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 -#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 -#: lib/imagefile.php:150 lib/imagefile.php:197 -msgid "Unknown file type" -msgstr "" - -#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 -#: actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 actions/groupblock.php:76 -#: actions/groupunblock.php:76 actions/makeadmin.php:76 -msgid "No profile with that ID." -msgstr "" +msgstr "無此通知" #: actions/block.php:111 actions/block.php:134 +#, fuzzy msgid "Block user" -msgstr "" - -#: actions/block.php:129 -msgid "Are you sure you want to block this user? " -msgstr "" - -#: actions/block.php:162 actions/block.php:165 -msgid "You have already blocked this user." -msgstr "" - -#: actions/block.php:167 actions/block.php:170 -msgid "Failed to save block information." -msgstr "" - -#: actions/confirmaddress.php:159 -#, php-format -msgid "The address \"%s\" has been " -msgstr "" - -#: actions/deletenotice.php:73 -msgid "You are about to permanently delete a notice. " -msgstr "" - -#: actions/disfavor.php:94 -msgid "Add to favorites" -msgstr "" - -#: actions/editgroup.php:54 actions/editgroup.php:56 -#, php-format -msgid "Edit %s group" -msgstr "" - -#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 -#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 -#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 -#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 -msgid "Inboxes must be enabled for groups to work" -msgstr "" - -#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 -#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 -#: actions/grouplogo.php:70 actions/newgroup.php:65 -msgid "You must be logged in to create a group." -msgstr "" +msgstr "無此使用者" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 @@ -4002,8 +1080,9 @@ msgstr "" #: actions/groupdesignsettings.php:89 actions/showgroup.php:126 #: actions/editgroup.php:84 actions/groupdesignsettings.php:84 #: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 +#, fuzzy msgid "No nickname" -msgstr "" +msgstr "無暱稱" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 @@ -4013,1627 +1092,538 @@ msgstr "" #: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 #: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 #: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +#, fuzzy msgid "No such group" -msgstr "" - -#: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 actions/grouplogo.php:111 -#: actions/editgroup.php:108 actions/editgroup.php:167 -#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 -#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 -#: actions/grouplogo.php:106 -msgid "You must be an admin to edit the group" -msgstr "" - -#: actions/editgroup.php:157 actions/editgroup.php:159 -#: actions/editgroup.php:154 -msgid "Use this form to edit the group." -msgstr "" +msgstr "無此通知" #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 +#, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "" +msgstr "暱稱請用小寫字母或數字,勿加空格。" #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 +#, fuzzy msgid "description is too long (max 140 chars)." -msgstr "" +msgstr "自我介紹過長(共140個字元)" #: actions/editgroup.php:218 actions/editgroup.php:253 +#, fuzzy msgid "Could not update group." -msgstr "" - -#: actions/editgroup.php:226 actions/editgroup.php:269 -msgid "Options saved." -msgstr "" +msgstr "無法更新使用者" #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format +#, php-format, fuzzy msgid "Awaiting confirmation on this address. " -msgstr "" - -#: actions/emailsettings.php:139 actions/smssettings.php:150 -msgid "Make a new email address for posting to; " -msgstr "" - -#: actions/emailsettings.php:157 -msgid "Send me email when someone " -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:173 -#: actions/emailsettings.php:179 -msgid "Allow friends to nudge me and send me an email." -msgstr "" +msgstr "確認碼發生錯誤" #: actions/emailsettings.php:321 +#, fuzzy msgid "That email address already belongs " -msgstr "" +msgstr "此電子信箱已註冊過了" #: actions/emailsettings.php:343 +#, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "" - -#: actions/facebookhome.php:110 actions/facebookhome.php:109 -msgid "Server error - couldn't get user!" -msgstr "" - -#: actions/facebookhome.php:196 -#, php-format -msgid "If you would like the %s app to automatically update " -msgstr "" - -#: actions/facebookhome.php:213 actions/facebooksettings.php:137 -#, php-format -msgid "Allow %s to update my Facebook status" -msgstr "" - -#: actions/facebookhome.php:218 actions/facebookhome.php:223 -#: actions/facebookhome.php:217 -msgid "Skip" -msgstr "" +msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 +#, fuzzy msgid "No notice content!" -msgstr "" - -#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 -#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 -#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 -#: lib/action.php:1053 -msgid "Pagination" -msgstr "" - -#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 -#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 -#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 -#: lib/action.php:1062 -msgid "After" -msgstr "" +msgstr "無內容" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 #: lib/action.php:1070 +#, fuzzy msgid "Before" -msgstr "" - -#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format -msgid "Thanks for inviting your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 -msgid "Invitations have been sent to the following users:" -msgstr "" - -#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 -#: actions/facebookinvite.php:94 -#, php-format -msgid "You have been invited to %s" -msgstr "" +msgstr "之前的內容»" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format +#, php-format, fuzzy msgid "Invite your friends to use %s" -msgstr "" - -#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 -#: actions/facebookinvite.php:124 -#, php-format -msgid "Friends already using %s:" -msgstr "" - -#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 -#: actions/facebookinvite.php:142 -#, php-format -msgid "Send invitations" -msgstr "" +msgstr "發送給%s好友的訂閱" #: actions/facebookremove.php:56 +#, fuzzy msgid "Couldn't remove Facebook user." -msgstr "" - -#: actions/facebooksettings.php:65 -msgid "There was a problem saving your sync preferences!" -msgstr "" - -#: actions/facebooksettings.php:67 -msgid "Sync preferences saved." -msgstr "" - -#: actions/facebooksettings.php:90 -msgid "Automatically update my Facebook status with my notices." -msgstr "" - -#: actions/facebooksettings.php:97 -msgid "Send \"@\" replies to Facebook." -msgstr "" - -#: actions/facebooksettings.php:106 -msgid "Prefix" -msgstr "" - -#: actions/facebooksettings.php:108 -msgid "A string to prefix notices with." -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "If you would like %s to automatically update " -msgstr "" - -#: actions/facebooksettings.php:147 -msgid "Sync preferences" -msgstr "" - -#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 -msgid "Disfavor favorite" -msgstr "" +msgstr "無法更新使用者" #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 #: lib/popularnoticesection.php:87 +#, fuzzy msgid "Popular notices" -msgstr "" +msgstr "無此通知" #: actions/favorited.php:67 -#, php-format +#, php-format, fuzzy msgid "Popular notices, page %d" -msgstr "" - -#: actions/favorited.php:79 -msgid "The most popular notices on the site right now." -msgstr "" - -#: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 -#: lib/featureduserssection.php:87 -msgid "Featured users" -msgstr "" - -#: actions/featured.php:71 -#, php-format -msgid "Featured users, page %d" -msgstr "" - -#: actions/featured.php:99 -#, php-format -msgid "A selection of some of the great users on %s" -msgstr "" - -#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 -msgid "That user has blocked you from subscribing." -msgstr "" - -#: actions/groupbyid.php:79 actions/groupbyid.php:74 -msgid "No ID" -msgstr "" - -#: actions/grouplogo.php:138 actions/grouplogo.php:191 -#: actions/grouplogo.php:144 actions/grouplogo.php:197 -#: actions/grouplogo.php:139 actions/grouplogo.php:192 -msgid "Group logo" -msgstr "" - -#: actions/grouplogo.php:149 -msgid "You can upload a logo image for your group." -msgstr "" +msgstr "無此通知" #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 +#, fuzzy msgid "Logo updated." -msgstr "" +msgstr "更新個人圖像" #: actions/grouplogo.php:450 actions/grouplogo.php:403 #: actions/grouplogo.php:398 +#, fuzzy msgid "Failed updating logo." -msgstr "" - -#: actions/groupmembers.php:93 lib/groupnav.php:91 -#, php-format -msgid "%s group members" -msgstr "" - -#: actions/groupmembers.php:96 -#, php-format -msgid "%s group members, page %d" -msgstr "" - -#: actions/groupmembers.php:111 -msgid "A list of the users in this group." -msgstr "" - -#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 -#: lib/subgroupnav.php:98 -msgid "Groups" -msgstr "" - -#: actions/groups.php:64 -#, php-format -msgid "Groups, page %d" -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "" +msgstr "無法上傳個人圖像" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 +#, fuzzy msgid "Create a new group" -msgstr "" - -#: actions/groupsearch.php:57 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -msgstr "" - -#: actions/groupsearch.php:63 actions/groupsearch.php:58 -msgid "Group search" -msgstr "" - -#: actions/imsettings.php:70 -msgid "You can send and receive notices through " -msgstr "" - -#: actions/imsettings.php:120 -#, php-format -msgid "Jabber or GTalk address, " -msgstr "" - -#: actions/imsettings.php:147 -msgid "Send me replies through Jabber/GTalk " -msgstr "" +msgstr "新增帳號" #: actions/imsettings.php:321 -#, php-format +#, php-format, fuzzy msgid "A confirmation code was sent " -msgstr "" - -#: actions/joingroup.php:65 actions/joingroup.php:60 -msgid "You must be logged in to join a group." -msgstr "" - -#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 -msgid "You are already a member of that group" -msgstr "" +msgstr "無確認碼" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s" -msgstr "" - -#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format -msgid "%s joined group %s" -msgstr "" - -#: actions/leavegroup.php:60 -msgid "Inboxes must be enabled for groups to work." -msgstr "" - -#: actions/leavegroup.php:65 actions/leavegroup.php:60 -msgid "You must be logged in to leave a group." -msgstr "" +msgstr "無法連結到伺服器:%s" #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 #: lib/command.php:212 lib/command.php:263 +#, fuzzy msgid "No such group." -msgstr "" - -#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 -msgid "You are not a member of that group." -msgstr "" - -#: actions/leavegroup.php:100 -msgid "You may not leave a group while you are its administrator." -msgstr "" - -#: actions/leavegroup.php:130 actions/leavegroup.php:124 -#: actions/leavegroup.php:119 lib/command.php:278 -msgid "Could not find membership record." -msgstr "" +msgstr "無此通知" #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s" -msgstr "" - -#: actions/leavegroup.php:145 actions/leavegroup.php:139 -#: actions/leavegroup.php:134 lib/command.php:289 -#, php-format -msgid "%s left group %s" -msgstr "" - -#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 -#: actions/login.php:216 -msgid "Login to site" -msgstr "" - -#: actions/microsummary.php:69 -msgid "No current status" -msgstr "" - -#: actions/newgroup.php:53 -msgid "New group" -msgstr "" - -#: actions/newgroup.php:115 actions/newgroup.php:110 -msgid "Use this form to create a new group." -msgstr "" +msgstr "無法從 %s 建立OpenID" #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 +#, fuzzy msgid "Could not create group." -msgstr "" +msgstr "無法存取個人圖像資料" #: actions/newgroup.php:191 actions/newgroup.php:229 #: actions/apigroupcreate.php:166 actions/newgroup.php:224 +#, fuzzy msgid "Could not set group membership." -msgstr "" - -#: actions/newmessage.php:119 actions/newnotice.php:132 -msgid "That's too long. " -msgstr "" - -#: actions/newmessage.php:134 -msgid "Don't send a message to yourself; " -msgstr "" - -#: actions/newnotice.php:166 actions/newnotice.php:174 -#: actions/newnotice.php:272 actions/newnotice.php:199 -msgid "Notice posted" -msgstr "" - -#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 -#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 -#: actions/newmessage.php:210 actions/newnotice.php:233 -msgid "Ajax Error" -msgstr "" - -#: actions/nudge.php:85 -msgid "" -"This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "" - -#: actions/nudge.php:94 -msgid "Nudge sent" -msgstr "" - -#: actions/nudge.php:97 -msgid "Nudge sent!" -msgstr "" - -#: actions/openidlogin.php:97 actions/openidlogin.php:106 -msgid "OpenID login" -msgstr "" - -#: actions/openidsettings.php:128 -msgid "Removing your only OpenID " -msgstr "" +msgstr "註冊失敗" #: actions/othersettings.php:60 +#, fuzzy msgid "Other Settings" -msgstr "" - -#: actions/othersettings.php:71 -msgid "Manage various other options." -msgstr "" - -#: actions/othersettings.php:93 -msgid "URL Auto-shortening" -msgstr "" - -#: actions/othersettings.php:112 -msgid "Service" -msgstr "" - -#: actions/othersettings.php:113 actions/othersettings.php:111 -#: actions/othersettings.php:118 -msgid "Automatic shortening service to use." -msgstr "" +msgstr "線上即時通設定" #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 +#, fuzzy msgid "URL shortening service is too long (max 50 chars)." -msgstr "" +msgstr "地點過長(共255個字)" #: actions/passwordsettings.php:69 +#, fuzzy msgid "Change your password." -msgstr "" - -#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 -#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 -msgid "Password change" -msgstr "" +msgstr "更改密碼" #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format +#, php-format, fuzzy msgid "Not a valid people tag: %s" -msgstr "" - -#: actions/peopletag.php:47 actions/peopletag.php:144 -#, php-format -msgid "Users self-tagged with %s - page %d" -msgstr "" - -#: actions/peopletag.php:91 -#, php-format -msgid "These are users who have tagged themselves \"%s\" " -msgstr "" - -#: actions/profilesettings.php:91 actions/profilesettings.php:99 -msgid "Profile information" -msgstr "" - -#: actions/profilesettings.php:124 actions/profilesettings.php:125 -#: actions/profilesettings.php:140 -msgid "" -"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "" - -#: actions/profilesettings.php:144 -msgid "Automatically subscribe to whoever " -msgstr "" +msgstr "此信箱無效" #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, php-format +#, php-format, fuzzy msgid "Invalid tag: \"%s\"" -msgstr "" +msgstr "個人首頁連結%s無效" #: actions/profilesettings.php:311 actions/profilesettings.php:310 #: actions/profilesettings.php:336 +#, fuzzy msgid "Couldn't save tags." -msgstr "" - -#: actions/public.php:107 actions/public.php:110 actions/public.php:118 -#: actions/public.php:129 -#, php-format -msgid "Public timeline, page %d" -msgstr "" - -#: actions/public.php:173 actions/public.php:184 actions/public.php:210 -#: actions/public.php:92 -msgid "Could not retrieve public stream." -msgstr "" - -#: actions/public.php:220 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service " -msgstr "" - -#: actions/publictagcloud.php:57 -msgid "Public tag cloud" -msgstr "" - -#: actions/publictagcloud.php:63 -#, php-format -msgid "These are most popular recent tags on %s " -msgstr "" - -#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 -msgid "Tag cloud" -msgstr "" - -#: actions/register.php:139 actions/register.php:349 actions/register.php:79 -#: actions/register.php:177 actions/register.php:394 actions/register.php:183 -#: actions/register.php:398 -msgid "Sorry, only invited people can register." -msgstr "" - -#: actions/register.php:149 -msgid "You can't register if you don't " -msgstr "" - -#: actions/register.php:286 -msgid "With this form you can create " -msgstr "" +msgstr "無法儲存個人資料" #: actions/register.php:368 +#, fuzzy msgid "1-64 lowercase letters or numbers, " -msgstr "" - -#: actions/register.php:382 actions/register.php:386 -msgid "Used only for updates, announcements, " -msgstr "" - -#: actions/register.php:398 -msgid "URL of your homepage, blog, " -msgstr "" +msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" #: actions/register.php:404 +#, fuzzy msgid "Describe yourself and your " -msgstr "" - -#: actions/register.php:410 -msgid "Where you are, like \"City, " -msgstr "" +msgstr "請在140個字以內描述你自己與你的興趣" #: actions/register.php:432 +#, fuzzy msgid " except this private data: password, " -msgstr "" - -#: actions/register.php:471 -#, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "" - -#: actions/register.php:495 -msgid "(You should receive a message by email " -msgstr "" - -#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 -msgid "That's a local profile! Login to subscribe." -msgstr "" - -#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 -#: actions/replies.php:127 -#, php-format -msgid "Replies to %s, page %d" -msgstr "" - -#: actions/showfavorites.php:79 -#, php-format -msgid "%s favorite notices, page %d" -msgstr "" - -#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 -#, php-format -msgid "%s group" -msgstr "" - -#: actions/showgroup.php:79 actions/showgroup.php:84 -#, php-format -msgid "%s group, page %d" -msgstr "" +msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 +#, fuzzy msgid "Group profile" -msgstr "" - -#: actions/showgroup.php:251 actions/showstream.php:278 -#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 -#: actions/showgroup.php:253 actions/showstream.php:271 -#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 -#: actions/showstream.php:236 actions/userauthorization.php:137 -#: lib/profilelist.php:197 actions/showgroup.php:263 -#: actions/showstream.php:295 actions/userauthorization.php:167 -#: lib/profilelist.php:230 -msgid "URL" -msgstr "" - -#: actions/showgroup.php:262 actions/showstream.php:289 -#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 -#: actions/showgroup.php:264 actions/showstream.php:282 -#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 -#: actions/showstream.php:247 actions/userauthorization.php:149 -#: lib/profilelist.php:212 actions/showgroup.php:274 -#: actions/showstream.php:312 actions/userauthorization.php:179 -#: lib/profilelist.php:245 -msgid "Note" -msgstr "" - -#: actions/showgroup.php:270 actions/showgroup.php:272 -#: actions/showgroup.php:288 actions/showgroup.php:293 -msgid "Group actions" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format -msgid "Notice feed for %s group" -msgstr "" +msgstr "無此通知" #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 #: actions/showgroup.php:430 actions/showgroup.php:381 #: actions/showgroup.php:438 +#, fuzzy msgid "Members" -msgstr "" - -#: actions/showgroup.php:363 actions/showstream.php:413 -#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 actions/showgroup.php:344 -#: actions/showgroup.php:378 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:226 -#: actions/showgroup.php:386 -msgid "(None)" -msgstr "" - -#: actions/showgroup.php:370 actions/showgroup.php:350 -#: actions/showgroup.php:384 actions/showgroup.php:392 -msgid "All members" -msgstr "" - -#: actions/showgroup.php:378 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" - -#: actions/showmessage.php:98 -msgid "Only the sender and recipient " -msgstr "" - -#: actions/showstream.php:73 actions/showstream.php:78 -#, php-format -msgid "%s, page %d" -msgstr "" +msgstr "何時加入會員的呢?" #: actions/showstream.php:143 +#, fuzzy msgid "'s profile" -msgstr "" +msgstr "無此通知" #: actions/showstream.php:236 actions/tagother.php:77 #: actions/showstream.php:220 actions/showstream.php:185 #: actions/showstream.php:193 +#, fuzzy msgid "User profile" -msgstr "" - -#: actions/showstream.php:240 actions/tagother.php:81 -#: actions/showstream.php:224 actions/showstream.php:189 -#: actions/showstream.php:220 -msgid "Photo" -msgstr "" - -#: actions/showstream.php:317 actions/showstream.php:309 -#: actions/showstream.php:274 actions/showstream.php:354 -msgid "User actions" -msgstr "" - -#: actions/showstream.php:342 actions/showstream.php:307 -#: actions/showstream.php:390 -msgid "Send a direct message to this user" -msgstr "" - -#: actions/showstream.php:343 actions/showstream.php:308 -#: actions/showstream.php:391 -msgid "Message" -msgstr "" +msgstr "無此通知" #: actions/showstream.php:451 lib/profileaction.php:157 +#, fuzzy msgid "All subscribers" -msgstr "" - -#: actions/showstream.php:533 lib/profileaction.php:235 -msgid "All groups" -msgstr "" - -#: actions/showstream.php:542 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service " -msgstr "" +msgstr "所有訂閱" #: actions/smssettings.php:128 +#, fuzzy msgid "Phone number, no punctuation or spaces, " -msgstr "" - -#: actions/smssettings.php:162 -msgid "Send me notices through SMS; " -msgstr "" +msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" #: actions/smssettings.php:335 +#, fuzzy msgid "A confirmation code was sent to the phone number you added. " -msgstr "" - -#: actions/smssettings.php:453 actions/smssettings.php:465 -msgid "Mobile carrier" -msgstr "" - -#: actions/subedit.php:70 -msgid "You are not subscribed to that profile." -msgstr "" +msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" #: actions/subedit.php:83 +#, fuzzy msgid "Could not save subscription." -msgstr "" +msgstr "註冊失敗" #: actions/subscribe.php:55 +#, fuzzy msgid "Not a local user." -msgstr "" +msgstr "無此使用者" #: actions/subscribe.php:69 +#, fuzzy msgid "Subscribed" -msgstr "" +msgstr "此帳號已註冊" #: actions/subscribers.php:50 -#, php-format +#, php-format, fuzzy msgid "%s subscribers" -msgstr "" - -#: actions/subscribers.php:52 -#, php-format -msgid "%s subscribers, page %d" -msgstr "" - -#: actions/subscribers.php:63 -msgid "These are the people who listen to " -msgstr "" - -#: actions/subscribers.php:67 -#, php-format -msgid "These are the people who " -msgstr "" +msgstr "此帳號已註冊" #: actions/subscriptions.php:52 -#, php-format +#, php-format, fuzzy msgid "%s subscriptions" -msgstr "" +msgstr "所有訂閱" #: actions/subscriptions.php:54 -#, php-format +#, php-format, fuzzy msgid "%s subscriptions, page %d" -msgstr "" - -#: actions/subscriptions.php:65 -msgid "These are the people whose notices " -msgstr "" - -#: actions/subscriptions.php:69 -#, php-format -msgid "These are the people whose " -msgstr "" +msgstr "所有訂閱" #: actions/subscriptions.php:122 actions/subscriptions.php:124 #: actions/subscriptions.php:183 actions/subscriptions.php:194 +#, fuzzy msgid "Jabber" -msgstr "" +msgstr "查無此Jabber ID" #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format +#, php-format, fuzzy msgid "Notices tagged with %s, page %d" -msgstr "" - -#: actions/tag.php:66 actions/tag.php:73 -#, php-format -msgid "Messages tagged \"%s\", most recent first" -msgstr "" +msgstr "&s的微型部落格" #: actions/tagother.php:33 +#, fuzzy msgid "Not logged in" -msgstr "" +msgstr "已登入" #: actions/tagother.php:39 +#, fuzzy msgid "No id argument." -msgstr "" - -#: actions/tagother.php:65 -#, php-format -msgid "Tag %s" -msgstr "" - -#: actions/tagother.php:141 -msgid "Tag user" -msgstr "" - -#: actions/tagother.php:149 actions/tagother.php:151 -msgid "" -"Tags for this user (letters, numbers, -, ., and _), comma- or space- " -"separated" -msgstr "" - -#: actions/tagother.php:164 -msgid "There was a problem with your session token." -msgstr "" - -#: actions/tagother.php:191 actions/tagother.php:193 -msgid "" -"You can only tag people you are subscribed to or who are subscribed to you." -msgstr "" +msgstr "無此文件" #: actions/tagother.php:198 actions/tagother.php:200 +#, fuzzy msgid "Could not save tags." -msgstr "" - -#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 -msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "" +msgstr "無法存取個人圖像資料" #: actions/tagrss.php:35 +#, fuzzy msgid "No such tag." -msgstr "" +msgstr "無此通知" #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format +#, php-format, fuzzy msgid "Microblog tagged with %s" -msgstr "" - -#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 -#: actions/apiblockcreate.php:108 -msgid "Block user failed." -msgstr "" - -#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 -#: actions/apiblockdestroy.php:107 -msgid "Unblock user failed." -msgstr "" +msgstr "&s的微型部落格" #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 +#, fuzzy msgid "Not found." -msgstr "" - -#: actions/twittersettings.php:71 -msgid "Add your Twitter account to automatically send " -msgstr "" - -#: actions/twittersettings.php:119 actions/twittersettings.php:122 -msgid "Twitter user name" -msgstr "" +msgstr "目前無請求" #: actions/twittersettings.php:126 actions/twittersettings.php:129 +#, fuzzy msgid "Twitter password" -msgstr "" - -#: actions/twittersettings.php:228 actions/twittersettings.php:232 -#: actions/twittersettings.php:248 -msgid "Twitter Friends" -msgstr "" - -#: actions/twittersettings.php:327 -msgid "Username must have only numbers, " -msgstr "" +msgstr "新密碼" #: actions/twittersettings.php:341 -#, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information " -msgstr "" +msgstr "無法取消信箱確認" #: actions/unblock.php:108 actions/groupunblock.php:128 +#, fuzzy msgid "Error removing the block." -msgstr "" +msgstr "儲存使用者發生錯誤" #: actions/unsubscribe.php:50 actions/unsubscribe.php:77 +#, fuzzy msgid "No profile id in request." -msgstr "" - -#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 -msgid "No profile with that id." -msgstr "" +msgstr "無確認請求" #: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +#, fuzzy msgid "Unsubscribed" -msgstr "" - -#: actions/usergroups.php:63 actions/usergroups.php:62 -#: actions/apigrouplistall.php:90 -#, php-format -msgid "%s groups" -msgstr "" - -#: actions/usergroups.php:65 actions/usergroups.php:64 -#, php-format -msgid "%s groups, page %d" -msgstr "" +msgstr "此帳號已註冊" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 +#, fuzzy msgid "Problem saving notice. Unknown user." -msgstr "" - -#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 -#: classes/Notice.php:188 -msgid "" -"Too many notices too fast; take a breather and post again in a few minutes." -msgstr "" - -#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 -#: classes/Notice.php:202 -msgid "You are banned from posting notices on this site." -msgstr "" +msgstr "儲存使用者發生錯誤" #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 +#, fuzzy msgid "Upload an avatar" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 -#: lib/accountsettingsaction.php:123 -msgid "Other" -msgstr "" - -#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 -#: lib/accountsettingsaction.php:124 -msgid "Other options" -msgstr "" - -#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format -msgid "%s - %s" -msgstr "" - -#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 -msgid "Untitled page" -msgstr "" - -#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 -msgid "Primary site navigation" -msgstr "" - -#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 -msgid "Personal profile and friends timeline" -msgstr "" - -#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 -msgid "Search for people or text" -msgstr "" +msgstr "無法上傳個人圖像" #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +#, fuzzy msgid "Account" -msgstr "" - -#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 -msgid "Change your email, avatar, password, profile" -msgstr "" - -#: lib/action.php:330 lib/action.php:403 lib/action.php:422 -msgid "Connect to IM, SMS, Twitter" -msgstr "" - -#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 -msgid "Logout from the site" -msgstr "" - -#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 -msgid "Login to the site" -msgstr "" +msgstr "關於" #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 +#, fuzzy msgid "Create an account" -msgstr "" +msgstr "新增帳號" #: lib/action.php:341 lib/action.php:418 +#, fuzzy msgid "Login with OpenID" -msgstr "" +msgstr "無此OpenID" #: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 +#, fuzzy msgid "Help me!" -msgstr "" +msgstr "求救" #: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 +#, fuzzy msgid "Site notice" -msgstr "" - -#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 -msgid "Local views" -msgstr "" +msgstr "新訊息" #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 +#, fuzzy msgid "Page notice" -msgstr "" - -#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 -msgid "Secondary site navigation" -msgstr "" - -#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 -#: lib/action.php:749 lib/action.php:770 lib/action.php:764 -msgid "StatusNet software license" -msgstr "" - -#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 -msgid "All " -msgstr "" - -#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 -msgid "license." -msgstr "" +msgstr "新訊息" #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 +#, fuzzy msgid "Block this user" -msgstr "" - -#: lib/blockform.php:153 actions/groupmembers.php:343 -#: actions/groupmembers.php:346 -msgid "Block" -msgstr "" - -#: lib/disfavorform.php:114 lib/disfavorform.php:140 -msgid "Disfavor this notice" -msgstr "" - -#: lib/facebookaction.php:268 -#, php-format -msgid "To use the %s Facebook Application you need to login " -msgstr "" +msgstr "無此使用者" #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 +#, fuzzy msgid " a new account." -msgstr "" - -#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 -#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 -#: lib/mailbox.php:217 lib/noticelist.php:361 -msgid "Published" -msgstr "" +msgstr "新增帳號" #: lib/favorform.php:114 lib/favorform.php:140 +#, fuzzy msgid "Favor this notice" -msgstr "" - -#: lib/feedlist.php:64 -msgid "Export data" -msgstr "" - -#: lib/galleryaction.php:121 -msgid "Filter tags" -msgstr "" - -#: lib/galleryaction.php:131 -msgid "All" -msgstr "" - -#: lib/galleryaction.php:137 lib/galleryaction.php:138 -#: lib/galleryaction.php:140 -msgid "Tag" -msgstr "" - -#: lib/galleryaction.php:138 lib/galleryaction.php:139 -#: lib/galleryaction.php:141 -msgid "Choose a tag to narrow list" -msgstr "" - -#: lib/galleryaction.php:139 lib/galleryaction.php:141 -#: lib/galleryaction.php:143 -msgid "Go" -msgstr "" - -#: lib/groupeditform.php:148 lib/groupeditform.php:163 -msgid "URL of the homepage or blog of the group or topic" -msgstr "" +msgstr "無此通知" #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 +#, fuzzy msgid "Description" -msgstr "" +msgstr "所有訂閱" #: lib/groupeditform.php:153 lib/groupeditform.php:168 +#, fuzzy msgid "Describe the group or topic in 140 chars" -msgstr "" - -#: lib/groupeditform.php:158 lib/groupeditform.php:173 -#: lib/groupeditform.php:179 -msgid "" -"Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "" - -#: lib/groupnav.php:84 lib/searchgroupnav.php:84 -msgid "Group" -msgstr "" - -#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 -msgid "Admin" -msgstr "" - -#: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format -msgid "Edit %s group properties" -msgstr "" +msgstr "請在140個字以內描述你自己與你的興趣" #: lib/groupnav.php:106 lib/groupnav.php:112 +#, fuzzy msgid "Logo" -msgstr "" - -#: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format -msgid "Add or edit %s logo" -msgstr "" - -#: lib/groupsbymemberssection.php:71 -msgid "Groups with most members" -msgstr "" - -#: lib/groupsbypostssection.php:71 -msgid "Groups with most posts" -msgstr "" - -#: lib/grouptagcloudsection.php:56 -#, php-format -msgid "Tags in %s group's notices" -msgstr "" +msgstr "登出" #: lib/htmloutputter.php:104 +#, fuzzy msgid "This page is not available in a " -msgstr "" +msgstr "個人首頁位址錯誤" #: lib/joinform.php:114 +#, fuzzy msgid "Join" -msgstr "" - -#: lib/leaveform.php:114 -msgid "Leave" -msgstr "" +msgstr "登入" #: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +#, fuzzy msgid "Login with a username and password" -msgstr "" +msgstr "使用者名稱或密碼無效" #: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +#, fuzzy msgid "Sign up for a new account" -msgstr "" - -#: lib/logingroupnav.php:82 -msgid "Login or register with OpenID" -msgstr "" - -#: lib/mail.php:175 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -msgstr "" +msgstr "新增帳號" #: lib/mail.php:236 -#, php-format +#, php-format, fuzzy msgid "%1$s is now listening to " -msgstr "" - -#: lib/mail.php:254 lib/mail.php:253 -#, php-format -msgid "Location: %s\n" -msgstr "" - -#: lib/mail.php:256 lib/mail.php:255 -#, php-format -msgid "Homepage: %s\n" -msgstr "" - -#: lib/mail.php:258 lib/mail.php:257 -#, php-format -msgid "" -"Bio: %s\n" -"\n" -msgstr "" - -#: lib/mail.php:461 lib/mail.php:462 -#, php-format -msgid "You've been nudged by %s" -msgstr "" - -#: lib/mail.php:465 -#, php-format -msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "" +msgstr "現在%1$s在%2$s成為你的粉絲囉" #: lib/mail.php:555 -#, php-format +#, php-format, fuzzy msgid "%1$s just added your notice from %2$s" -msgstr "" - -#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 -#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 -msgid "From" -msgstr "" - -#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 -msgid "Send a direct notice" -msgstr "" +msgstr "現在%1$s在%2$s成為你的粉絲囉" #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 +#, fuzzy msgid "Send a notice" -msgstr "" +msgstr "新訊息" #: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 #: lib/noticeform.php:173 +#, fuzzy msgid "Available characters" -msgstr "" - -#: lib/noticelist.php:426 lib/noticelist.php:429 -msgid "in reply to" -msgstr "" - -#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 -#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 -#: lib/noticelist.php:498 -msgid "Reply to this notice" -msgstr "" - -#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 -#: lib/noticelist.php:499 -msgid "Reply" -msgstr "" - -#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 -#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 -#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 -msgid "Delete this notice" -msgstr "" - -#: lib/noticelist.php:474 actions/avatarsettings.php:148 -#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 -msgid "Delete" -msgstr "" - -#: lib/nudgeform.php:116 -msgid "Nudge this user" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Nudge" -msgstr "" - -#: lib/nudgeform.php:128 -msgid "Send a nudge to this user" -msgstr "" - -#: lib/personaltagcloudsection.php:56 -#, php-format -msgid "Tags in %s's notices" -msgstr "" - -#: lib/profilelist.php:182 lib/profilelist.php:180 -#: lib/subscriptionlist.php:126 -msgid "(none)" -msgstr "" - -#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 -msgid "Public" -msgstr "" - -#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 -msgid "User groups" -msgstr "" - -#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 -#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 -msgid "Recent tags" -msgstr "" - -#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 -msgid "Featured" -msgstr "" - -#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 -msgid "Popular" -msgstr "" +msgstr "6個以上字元" #: lib/searchgroupnav.php:82 +#, fuzzy msgid "Notice" -msgstr "" - -#: lib/searchgroupnav.php:85 -msgid "Find groups on this site" -msgstr "" - -#: lib/section.php:89 -msgid "Untitled section" -msgstr "" +msgstr "新訊息" #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format +#, php-format, fuzzy msgid "People %s subscribes to" -msgstr "" +msgstr "無此訂閱" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format +#, php-format, fuzzy msgid "People subscribed to %s" -msgstr "" - -#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format -msgid "Groups %s is a member of" -msgstr "" - -#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 -#: lib/action.php:440 -#, php-format -msgid "Invite friends and colleagues to join you on %s" -msgstr "" - -#: lib/subs.php:53 lib/subs.php:52 -msgid "User has blocked you." -msgstr "" - -#: lib/subscribeform.php:115 lib/subscribeform.php:139 -#: actions/userauthorization.php:178 actions/userauthorization.php:210 -msgid "Subscribe to this user" -msgstr "" - -#: lib/tagcloudsection.php:56 -msgid "None" -msgstr "" - -#: lib/topposterssection.php:74 -msgid "Top posters" -msgstr "" +msgstr "此帳號已註冊" #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 +#, fuzzy msgid "Unblock this user" -msgstr "" - -#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 -msgid "Unblock" -msgstr "" - -#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 -msgid "Unsubscribe from this user" -msgstr "" +msgstr "無此使用者" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 1.0)" -msgstr "" +msgstr "發送給%s好友的訂閱" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (RSS 2.0)" -msgstr "" +msgstr "發送給%s好友的訂閱" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format +#, php-format, fuzzy msgid "Feed for friends of %s (Atom)" -msgstr "" +msgstr "發送給%s好友的訂閱" #: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy msgid "You and friends" -msgstr "" - -#: actions/avatarsettings.php:78 -#, php-format -msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "" +msgstr "%s與好友" #: actions/avatarsettings.php:373 +#, fuzzy msgid "Avatar deleted." -msgstr "" - -#: actions/block.php:129 actions/block.php:136 -msgid "" -"Are you sure you want to block this user? Afterwards, they will be " -"unsubscribed from you, unable to subscribe to you in the future, and you " -"will not be notified of any @-replies from them." -msgstr "" - -#: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "" -"You are about to permanently delete a notice. Once this is done, it cannot " -"be undone." -msgstr "" - -#: actions/deletenotice.php:127 actions/deletenotice.php:157 -msgid "There was a problem with your session token. Try again, please." -msgstr "" - -#: actions/emailsettings.php:168 actions/emailsettings.php:174 -msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "" - -#: actions/facebookhome.php:193 actions/facebookhome.php:187 -#, php-format -msgid "" -"If you would like the %s app to automatically update your Facebook status " -"with your latest notice, you need to give it permission." -msgstr "" - -#: actions/facebookhome.php:217 actions/facebookhome.php:211 -#, php-format -msgid "Okay, do it!" -msgstr "" - -#: actions/facebooksettings.php:124 -#, php-format -msgid "" -"If you would like %s to automatically update your Facebook status with your " -"latest notice, you need to give it permission." -msgstr "" - -#: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format -msgid "" -"You can upload a logo image for your group. The maximum file size is %s." -msgstr "" - -#: actions/grouplogo.php:367 actions/grouplogo.php:362 -msgid "Pick a square area of the image to be the logo." -msgstr "" +msgstr "更新個人圖像" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format +#, php-format, fuzzy msgid "Microblog by %s group" -msgstr "" - -#: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format -msgid "" -"Search for groups on %%site.name%% by their name, location, or description. " -"Separate the terms by spaces; they must be 3 characters or more." -msgstr "" - -#: actions/groups.php:90 -#, php-format -msgid "" -"%%%%site.name%%%% groups let you find and talk with people of similar " -"interests. After you join a group you can send messages to all other members " -"using the syntax \"!groupname\". Don't see a group you like? Try [searching " -"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" -"%%%%)" -msgstr "" - -#: actions/newmessage.php:102 -msgid "Only logged-in users can send direct messages." -msgstr "" +msgstr "&s的微型部落格" #: actions/noticesearch.php:91 -#, php-format +#, php-format, fuzzy msgid "Search results for \"%s\" on %s" -msgstr "" +msgstr "搜尋 \"%s\"相關資料" #: actions/openidlogin.php:66 -#, php-format -msgid "" -"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " -"before changing your settings." -msgstr "" - -#: actions/public.php:125 actions/public.php:133 actions/public.php:151 -msgid "Public Stream Feed (RSS 1.0)" -msgstr "" - -#: actions/public.php:130 actions/public.php:138 actions/public.php:155 -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" +#, php-format, fuzzy +msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更改設定。" #: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy msgid "Public Stream Feed (Atom)" -msgstr "" - -#: actions/public.php:210 actions/public.php:241 actions/public.php:233 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool. [Join now](%%action.register%%) to share notices about yourself with " -"friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "" - -#: actions/register.php:286 actions/register.php:329 -#, php-format -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " -"Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "" - -#: actions/register.php:432 actions/register.php:479 actions/register.php:489 -msgid "Creative Commons Attribution 3.0" -msgstr "" +msgstr "%s的公開內容" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 -msgid "" -" except this private data: password, email address, IM address, and phone " -"number." -msgstr "" +#, fuzzy +msgid " except this private data: password, email address, IM address, and phone number." +msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 +#, fuzzy msgid "Created" -msgstr "" - -#: actions/showgroup.php:393 actions/showgroup.php:440 -#: actions/showgroup.php:448 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. [Join now](%%%%action.register%%%%) to become part " -"of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +msgstr "新增" #: actions/showstream.php:147 +#, fuzzy msgid "Your profile" -msgstr "" +msgstr "無此通知" #: actions/showstream.php:149 -#, php-format +#, php-format, fuzzy msgid "%s's profile" -msgstr "" - -#: actions/showstream.php:163 actions/showstream.php:128 -#, php-format -msgid "Notice feed for %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:170 actions/showstream.php:135 -#, php-format -msgid "Notice feed for %s (RSS 2.0)" -msgstr "" - -#: actions/showstream.php:177 actions/showstream.php:142 -#, php-format -msgid "Notice feed for %s (Atom)" -msgstr "" - -#: actions/showstream.php:182 actions/showstream.php:147 -#, php-format -msgid "FOAF for %s" -msgstr "" +msgstr "無此通知" #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 +#, fuzzy msgid "Edit Avatar" -msgstr "" +msgstr "個人圖像" #: actions/showstream.php:316 actions/showstream.php:281 #: actions/showstream.php:366 +#, fuzzy msgid "Edit profile settings" -msgstr "" - -#: actions/showstream.php:317 actions/showstream.php:282 -#: actions/showstream.php:367 -msgid "Edit" -msgstr "" - -#: actions/showstream.php:542 actions/showstream.php:388 -#: actions/showstream.php:487 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " -"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "" +msgstr "線上即時通設定" #: actions/smssettings.php:335 actions/smssettings.php:347 -msgid "" -"A confirmation code was sent to the phone number you added. Check your phone " -"for the code and instructions on how to use it." -msgstr "" - -#: actions/twitapifavorites.php:171 lib/mail.php:556 -#: actions/twitapifavorites.php:222 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"In case you forgot, you can see the text of your notice here:\n" -"\n" -"%3$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%4$s\n" -"\n" -"Faithfully yours,\n" -"%5$s\n" -msgstr "" +#, fuzzy +msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5644,1647 +1634,376 @@ msgstr "" #: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 #: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 #: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy msgid "No such user!" -msgstr "" - -#: actions/twittersettings.php:72 -msgid "" -"Add your Twitter account to automatically send your notices to Twitter, and " -"subscribe to Twitter friends already here." -msgstr "" +msgstr "無此使用者" #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format +#, php-format, fuzzy msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "" - -#: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user's notices. If you didn't just ask to subscribe to someone's notices, " -"click \"Reject\"." -msgstr "" - -#: actions/usergroups.php:131 actions/usergroups.php:130 -msgid "Search for more groups" -msgstr "" - -#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "" -"Too many duplicate messages too quickly; take a breather and post again in a " -"few minutes." -msgstr "" - -#: lib/action.php:406 lib/action.php:425 -msgid "Connect to SMS, Twitter" -msgstr "" - -#: lib/action.php:671 lib/action.php:721 lib/action.php:736 -msgid "Badge" -msgstr "" - -#: lib/command.php:113 lib/command.php:106 lib/command.php:126 -#, php-format -msgid "" -"Subscriptions: %1$s\n" -"Subscribers: %2$s\n" -"Notices: %3$s" -msgstr "" - -#: lib/command.php:392 lib/command.php:385 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - not yet implemented.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" - -#: lib/dberroraction.php:60 -msgid "Database error" -msgstr "" +msgstr "無法取消信箱確認" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format -msgid "" -"To use the %s Facebook Application you need to login with your username and " -"password. Don't have a username yet? " -msgstr "" - -#: lib/feed.php:85 -msgid "RSS 1.0" -msgstr "" - -#: lib/feed.php:87 -msgid "RSS 2.0" -msgstr "" - -#: lib/feed.php:89 -msgid "Atom" -msgstr "" - -#: lib/feed.php:91 -msgid "FOAF" -msgstr "" - -#: lib/imagefile.php:75 -#, php-format -msgid "That file is too big. The maximum file size is %d." -msgstr "" - -#: lib/mail.php:175 lib/mail.php:174 -#, php-format -msgid "" -"Hey, %s.\n" -"\n" -"Someone just entered this email address on %s.\n" -"\n" -"If it was you, and you want to confirm your entry, use the URL below:\n" -"\n" -"\t%s\n" -"\n" -"If not, just ignore this message.\n" -"\n" -"Thanks for your time, \n" -"%s\n" -msgstr "" +#, php-format, fuzzy +msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +msgstr "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" #: lib/mail.php:241 lib/mail.php:240 -#, php-format -msgid "" -"%1$s is now listening to your notices on %2$s.\n" -"\n" -"\t%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"Faithfully yours,\n" -"%7$s.\n" -"\n" -"----\n" -"Change your email address or notification options at %8$s\n" -msgstr "" - -#: lib/mail.php:466 -#, php-format -msgid "" -"%1$s (%2$s) is wondering what you are up to these days and is inviting you " -"to post some news.\n" -"\n" -"So let's hear from you :)\n" -"\n" -"%3$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%4$s\n" -msgstr "" - -#: lib/mail.php:513 -#, php-format -msgid "" -"%1$s (%2$s) sent you a private message:\n" -"\n" -"------------------------------------------------------\n" -"%3$s\n" -"------------------------------------------------------\n" -"\n" -"You can reply to their message here:\n" -"\n" -"%4$s\n" -"\n" -"Don't reply to this email; it won't get to them.\n" -"\n" -"With kind regards,\n" -"%5$s\n" -msgstr "" - -#: lib/mail.php:598 lib/mail.php:600 -#, php-format -msgid "%s sent a notice to your attention" -msgstr "" - -#: lib/mail.php:600 lib/mail.php:602 -#, php-format -msgid "" -"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -"You can reply back here:\n" -"\n" -"\t%5$s\n" -"\n" -"The list of all @-replies for you here:\n" -"\n" -"%6$s\n" -"\n" -"Faithfully yours,\n" -"%2$s\n" -"\n" -"P.S. You can turn off these email notifications here: %7$s\n" -msgstr "" - -#: lib/searchaction.php:122 lib/searchaction.php:120 -msgid "Search site" -msgstr "" - -#: lib/section.php:106 -msgid "More..." -msgstr "" - -#: actions/all.php:80 actions/all.php:127 -#, php-format -msgid "" -"This is the timeline for %s and friends but no one has posted anything yet." -msgstr "" - -#: actions/all.php:85 actions/all.php:132 -#, php-format -msgid "" -"Try subscribing to more people, [join a group](%%action.groups%%) or post " -"something yourself." -msgstr "" - -#: actions/all.php:87 actions/all.php:134 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) from his profile or [post something to his " -"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 -#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " -"post a notice to his or her attention." -msgstr "" +#, php-format, fuzzy +msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" +msgstr "現在%1$s在%2$s成為你的粉絲囉。\n\n %3$s\n\n\n%4$s.\n敬上。\n" #: actions/attachment.php:73 +#, fuzzy msgid "No such attachment." -msgstr "" +msgstr "無此文件" #: actions/block.php:149 +#, fuzzy msgid "Do not block this user from this group" -msgstr "" +msgstr "無法連結到伺服器:%s" #: actions/block.php:150 +#, fuzzy msgid "Block this user from this group" -msgstr "" +msgstr "無此使用者" #: actions/blockedfromgroup.php:90 -#, php-format +#, php-format, fuzzy msgid "%s blocked profiles" -msgstr "" +msgstr "無此通知" #: actions/blockedfromgroup.php:93 -#, php-format +#, php-format, fuzzy msgid "%s blocked profiles, page %d" -msgstr "" - -#: actions/blockedfromgroup.php:108 -msgid "A list of the users blocked from joining this group." -msgstr "" +msgstr "%s與好友" #: actions/blockedfromgroup.php:281 +#, fuzzy msgid "Unblock user from group" -msgstr "" +msgstr "無此使用者" #: actions/conversation.php:99 +#, fuzzy msgid "Conversation" -msgstr "" +msgstr "地點" #: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy msgid "Do not delete this notice" -msgstr "" - -#: actions/editgroup.php:214 actions/newgroup.php:164 -#: actions/apigroupcreate.php:291 actions/editgroup.php:215 -#: actions/newgroup.php:159 -#, php-format -msgid "Too many aliases! Maximum %d." -msgstr "" +msgstr "無此通知" #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format +#, php-format, fuzzy msgid "Invalid alias: \"%s\"" -msgstr "" +msgstr "個人首頁連結%s無效" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format +#, php-format, fuzzy msgid "Alias \"%s\" already in use. Try another one." -msgstr "" - -#: actions/editgroup.php:233 actions/newgroup.php:183 -#: actions/apigroupcreate.php:334 actions/editgroup.php:234 -#: actions/newgroup.php:178 -msgid "Alias can't be the same as nickname." -msgstr "" +msgstr "此暱稱已有人使用。再試試看別的吧。" #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy msgid "Could not create aliases." -msgstr "" - -#: actions/favorited.php:150 -msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "" - -#: actions/favorited.php:153 -msgid "" -"Be the first to add a notice to your favorites by clicking the fave button " -"next to any notice you like." -msgstr "" - -#: actions/favorited.php:156 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to add a " -"notice to your favorites!" -msgstr "" +msgstr "無法存取個人圖像資料" #: actions/file.php:34 +#, fuzzy msgid "No notice id" -msgstr "" +msgstr "新訊息" #: actions/file.php:38 +#, fuzzy msgid "No notice" -msgstr "" - -#: actions/file.php:42 -msgid "No attachments" -msgstr "" - -#: actions/file.php:51 -msgid "No uploaded attachments" -msgstr "" +msgstr "新訊息" #: actions/finishopenidlogin.php:211 +#, fuzzy msgid "Not a valid invitation code." -msgstr "" - -#: actions/groupblock.php:81 actions/groupunblock.php:81 -#: actions/makeadmin.php:81 -msgid "No group specified." -msgstr "" - -#: actions/groupblock.php:91 -msgid "Only an admin can block group members." -msgstr "" - -#: actions/groupblock.php:95 -msgid "User is already blocked from group." -msgstr "" - -#: actions/groupblock.php:100 -msgid "User is not a member of group." -msgstr "" +msgstr "此信箱無效" #: actions/groupblock.php:136 actions/groupmembers.php:311 #: actions/groupmembers.php:314 +#, fuzzy msgid "Block user from group" -msgstr "" - -#: actions/groupblock.php:155 -#, php-format -msgid "" -"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " -"be removed from the group, unable to post, and unable to subscribe to the " -"group in the future." -msgstr "" - -#: actions/groupblock.php:193 -msgid "Database error blocking user from group." -msgstr "" - -#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 -msgid "You must be logged in to edit a group." -msgstr "" - -#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 -msgid "Group design" -msgstr "" - -#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "" -"Customize the way your group looks with a background image and a colour " -"palette of your choice." -msgstr "" +msgstr "無此使用者" #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 #: lib/designsettings.php:461 +#, fuzzy msgid "Couldn't update your design." -msgstr "" - -#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 -#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 -#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 -#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 -msgid "Unable to save your design settings!" -msgstr "" - -#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 -#: actions/groupdesignsettings.php:307 -msgid "Design preferences saved." -msgstr "" - -#: actions/groupmembers.php:438 actions/groupmembers.php:441 -msgid "Make user an admin of the group" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make Admin" -msgstr "" - -#: actions/groupmembers.php:470 actions/groupmembers.php:473 -msgid "Make this user an admin" -msgstr "" +msgstr "無法更新使用者" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 +#, fuzzy msgid "No results." -msgstr "" - -#: actions/groupsearch.php:82 -#, php-format -msgid "" -"If you can't find the group you're looking for, you can [create it](%%action." -"newgroup%%) yourself." -msgstr "" - -#: actions/groupsearch.php:85 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and [create the group](%%" -"action.newgroup%%) yourself!" -msgstr "" - -#: actions/groupunblock.php:91 -msgid "Only an admin can unblock group members." -msgstr "" - -#: actions/groupunblock.php:95 -msgid "User is not blocked from group." -msgstr "" - -#: actions/invite.php:39 -msgid "Invites have been disabled." -msgstr "" - -#: actions/joingroup.php:100 actions/apigroupjoin.php:119 -#: actions/joingroup.php:95 lib/command.php:221 -msgid "You have been blocked from that group by the admin." -msgstr "" - -#: actions/makeadmin.php:91 -msgid "Only an admin can make another user an admin." -msgstr "" - -#: actions/makeadmin.php:95 -#, php-format -msgid "%s is already an admin for group \"%s\"." -msgstr "" - -#: actions/makeadmin.php:132 -#, php-format -msgid "Can't get membership record for %s in group %s" -msgstr "" - -#: actions/makeadmin.php:145 -#, php-format -msgid "Can't make %s an admin for group %s" -msgstr "" - -#: actions/newmessage.php:178 actions/newmessage.php:181 -msgid "Message sent" -msgstr "" - -#: actions/newnotice.php:93 lib/designsettings.php:281 -#: actions/newnotice.php:94 -#, php-format -msgid "" -"The server was unable to handle that much POST data (%s bytes) due to its " -"current configuration." -msgstr "" - -#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 -#, php-format -msgid " Try using another %s format." -msgstr "" - -#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 -#, php-format -msgid "%s is not a supported filetype on this server." -msgstr "" - -#: actions/newnotice.php:205 lib/mediafile.php:142 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "" - -#: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form." -msgstr "" - -#: actions/newnotice.php:211 lib/mediafile.php:152 -msgid "The uploaded file was only partially uploaded." -msgstr "" - -#: actions/newnotice.php:214 lib/mediafile.php:159 -msgid "Missing a temporary folder." -msgstr "" - -#: actions/newnotice.php:217 lib/mediafile.php:162 -msgid "Failed to write file to disk." -msgstr "" - -#: actions/newnotice.php:220 lib/mediafile.php:165 -msgid "File upload stopped by extension." -msgstr "" +msgstr "無結果" #: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy msgid "Couldn't save file." -msgstr "" - -#: actions/newnotice.php:246 scripts/maildaemon.php:101 -msgid "Max notice size is 140 chars, including attachment URL." -msgstr "" - -#: actions/newnotice.php:297 -msgid "Somehow lost the login in saveFile" -msgstr "" - -#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 -#: lib/mediafile.php:233 -msgid "File could not be moved to destination directory." -msgstr "" - -#: actions/newnotice.php:336 actions/newnotice.php:360 -#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 -#: lib/mediafile.php:123 -msgid "There was a database error while saving your file. Please try again." -msgstr "" - -#: actions/noticesearch.php:121 -#, php-format -msgid "" -"Be the first to [post on this topic](%%%%action.newnotice%%%%?" -"status_textarea=%s)!" -msgstr "" - -#: actions/noticesearch.php:124 -#, php-format -msgid "" -"Why not [register an account](%%%%action.register%%%%) and be the first to " -"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "" - -#: actions/openidsettings.php:70 -#, php-format -msgid "" -"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " -"account. Manage your associated OpenIDs from here." -msgstr "" - -#: actions/othersettings.php:110 actions/othersettings.php:117 -msgid "Shorten URLs with" -msgstr "" - -#: actions/othersettings.php:115 actions/othersettings.php:122 -msgid "View profile designs" -msgstr "" - -#: actions/othersettings.php:116 actions/othersettings.php:123 -msgid "Show or hide profile designs." -msgstr "" - -#: actions/public.php:82 actions/public.php:83 -#, php-format -msgid "Beyond the page limit (%s)" -msgstr "" - -#: actions/public.php:179 -#, php-format -msgid "" -"This is the public timeline for %%site.name%% but no one has posted anything " -"yet." -msgstr "" - -#: actions/public.php:182 -msgid "Be the first to post!" -msgstr "" - -#: actions/public.php:186 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" - -#: actions/public.php:245 actions/public.php:238 -#, php-format -msgid "" -"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" -"blogging) service based on the Free Software [StatusNet](http://status.net/) " -"tool." -msgstr "" - -#: actions/publictagcloud.php:69 -#, php-format -msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" - -#: actions/publictagcloud.php:72 -msgid "Be the first to post one!" -msgstr "" - -#: actions/publictagcloud.php:75 -#, php-format -msgid "" -"Why not [register an account](%%action.register%%) and be the first to post " -"one!" -msgstr "" +msgstr "無法儲存個人資料" #: actions/recoverpassword.php:152 -msgid "" -"If you've forgotten or lost your password, you can get a new one sent to the " -"email address you have stored in your account." -msgstr "" - -#: actions/recoverpassword.php:158 -msgid "You've been identified. Enter a new password below. " -msgstr "" - -#: actions/recoverpassword.php:188 -msgid "Password recover" -msgstr "" +#, fuzzy +msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgstr "若忘記或遺失密碼,我們會寄新的密碼到你帳號中的信箱。" #: actions/register.php:86 +#, fuzzy msgid "Sorry, invalid invitation code." -msgstr "" - -#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 -msgid "Subscribe to a remote user" -msgstr "" - -#: actions/replies.php:179 actions/replies.php:198 -#, php-format -msgid "" -"This is the timeline showing replies to %s but %s hasn't received a notice " -"to his attention yet." -msgstr "" - -#: actions/replies.php:184 actions/replies.php:203 -#, php-format -msgid "" -"You can engage other users in a conversation, subscribe to more people or " -"[join groups](%%action.groups%%)." -msgstr "" - -#: actions/replies.php:186 actions/replies.php:205 -#, php-format -msgid "" -"You can try to [nudge %s](../%s) or [post something to his or her attention]" -"(%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "" +msgstr "確認碼發生錯誤" #: actions/showfavorites.php:79 -#, php-format +#, php-format, fuzzy msgid "%s's favorite notices, page %d" -msgstr "" - -#: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "" -"You haven't chosen any favorite notices yet. Click the fave button on " -"notices you like to bookmark them for later or shed a spotlight on them." -msgstr "" - -#: actions/showfavorites.php:172 actions/showfavorites.php:207 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Post something interesting " -"they would add to their favorites :)" -msgstr "" - -#: actions/showfavorites.php:176 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to thier favorites :)" -msgstr "" - -#: actions/showfavorites.php:226 actions/showfavorites.php:242 -msgid "This is a way to share what you like." -msgstr "" - -#: actions/showgroup.php:279 lib/groupeditform.php:178 -#: actions/showgroup.php:284 lib/groupeditform.php:184 -msgid "Aliases" -msgstr "" - -#: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format -msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" - -#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format -msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" - -#: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format -msgid "Notice feed for %s group (Atom)" -msgstr "" - -#: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format -msgid "" -"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. Its members share short messages about " -"their life and interests. " -msgstr "" - -#: actions/showgroup.php:474 actions/showgroup.php:482 -msgid "Admins" -msgstr "" +msgstr "無此通知" #: actions/shownotice.php:101 +#, fuzzy msgid "Not a local notice" -msgstr "" - -#: actions/showstream.php:72 -#, php-format -msgid " tagged %s" -msgstr "" - -#: actions/showstream.php:121 -#, php-format -msgid "Notice feed for %s tagged %s (RSS 1.0)" -msgstr "" - -#: actions/showstream.php:350 actions/showstream.php:444 -#, php-format -msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "" - -#: actions/showstream.php:355 actions/showstream.php:449 -msgid "" -"Seen anything interesting recently? You haven't posted any notices yet, now " -"would be a good time to start :)" -msgstr "" - -#: actions/showstream.php:357 actions/showstream.php:451 -#, php-format -msgid "" -"You can try to nudge %s or [post something to his or her attention](%%%%" -"action.newnotice%%%%?status_textarea=%s)." -msgstr "" - -#: actions/showstream.php:393 actions/showstream.php:492 -#, php-format -msgid "" -"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." -"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " -"[StatusNet](http://status.net/) tool. " -msgstr "" - -#: actions/subscribers.php:108 -msgid "" -"You have no subscribers. Try subscribing to people you know and they might " -"return the favor" -msgstr "" - -#: actions/subscribers.php:110 -#, php-format -msgid "%s has no subscribers. Want to be the first?" -msgstr "" - -#: actions/subscribers.php:114 -#, php-format -msgid "" -"%s has no subscribers. Why not [register an account](%%%%action.register%%%" -"%) and be the first?" -msgstr "" - -#: actions/subscriptions.php:115 actions/subscriptions.php:121 -#, php-format -msgid "" -"You're not listening to anyone's notices right now, try subscribing to " -"people you know. Try [people search](%%action.peoplesearch%%), look for " -"members in groups you're interested in and in our [featured users](%%action." -"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " -"automatically subscribe to people you already follow there." -msgstr "" +msgstr "無此使用者" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format +#, php-format, fuzzy msgid "%s is not listening to anyone." -msgstr "" - -#: actions/tag.php:77 actions/tag.php:86 -#, php-format -msgid "Notice feed for tag %s (RSS 1.0)" -msgstr "" - -#: actions/tag.php:91 actions/tag.php:98 -#, php-format -msgid "Notice feed for tag %s (Atom)" -msgstr "" - -#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 -msgid "This status is already a favorite!" -msgstr "" - -#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 -msgid "That status is not a favorite!" -msgstr "" +msgstr "現在%1$s在%2$s成為你的粉絲囉" #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 +#, fuzzy msgid "Could not determine source user." -msgstr "" - -#: actions/twitapifriendships.php:215 -msgid "Target user not specified." -msgstr "" +msgstr "無法更新使用者" #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy msgid "Could not find target user." -msgstr "" +msgstr "無法更新使用者" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format +#, php-format, fuzzy msgid "%1$s / Updates mentioning %2$s" -msgstr "" +msgstr "%1$s的狀態是%2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format +#, php-format, fuzzy msgid "Updates tagged with %1$s on %2$s!" -msgstr "" - -#: actions/twittersettings.php:165 -msgid "Import my Friends Timeline." -msgstr "" - -#: actions/userauthorization.php:158 actions/userauthorization.php:188 -msgid "License" -msgstr "" +msgstr "&s的微型部落格" #: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy msgid "Reject this subscription" -msgstr "" - -#: actions/userdesignsettings.php:76 lib/designsettings.php:65 -msgid "Profile design" -msgstr "" - -#: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "" -"Customize the way your profile looks with a background image and a colour " -"palette of your choice." -msgstr "" - -#: actions/userdesignsettings.php:282 -msgid "Enjoy your hotdog!" -msgstr "" - -#: actions/usergroups.php:153 -#, php-format -msgid "%s is not a member of any group." -msgstr "" - -#: actions/usergroups.php:158 -#, php-format -msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "" - -#: classes/File.php:127 classes/File.php:137 -#, php-format -msgid "" -"No file may be larger than %d bytes and the file you sent was %d bytes. Try " -"to upload a smaller version." -msgstr "" - -#: classes/File.php:137 classes/File.php:147 -#, php-format -msgid "A file this large would exceed your user quota of %d bytes." -msgstr "" - -#: classes/File.php:145 classes/File.php:154 -#, php-format -msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "" +msgstr "所有訂閱" #: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy msgid "Problem saving notice. Too long." -msgstr "" - -#: classes/User.php:319 classes/User.php:327 -#, php-format -msgid "Welcome to %1$s, @%2$s!" -msgstr "" - -#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 -#: lib/accountsettingsaction.php:120 -msgid "Design" -msgstr "" +msgstr "儲存使用者發生錯誤" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy msgid "Design your profile" -msgstr "" - -#: lib/action.php:712 lib/action.php:727 -msgid "TOS" -msgstr "" - -#: lib/attachmentlist.php:87 -msgid "Attachments" -msgstr "" - -#: lib/attachmentlist.php:265 -msgid "Author" -msgstr "" - -#: lib/attachmentlist.php:278 -msgid "Provider" -msgstr "" - -#: lib/attachmentnoticesection.php:67 -msgid "Notices where this attachment appears" -msgstr "" - -#: lib/attachmenttagcloudsection.php:48 -msgid "Tags for this attachment" -msgstr "" - -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" +msgstr "無此通知" #: lib/designsettings.php:105 +#, fuzzy msgid "Upload file" -msgstr "" - -#: lib/designsettings.php:109 -msgid "" -"You can upload your personal background image. The maximum file size is 2Mb." -msgstr "" - -#: lib/designsettings.php:139 -msgid "On" -msgstr "" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "" - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "" +msgstr "無此通知" #: lib/designsettings.php:170 +#, fuzzy msgid "Change colours" -msgstr "" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" +msgstr "更改密碼" #: lib/designsettings.php:191 +#, fuzzy msgid "Content" -msgstr "" - -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "" +msgstr "連結" #: lib/designsettings.php:230 +#, fuzzy msgid "Links" -msgstr "" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "" - -#: lib/designsettings.php:378 lib/designsettings.php:369 -msgid "Bad default color settings: " -msgstr "" - -#: lib/designsettings.php:474 lib/designsettings.php:465 -msgid "Design defaults restored." -msgstr "" - -#: lib/groupeditform.php:181 lib/groupeditform.php:187 -#, php-format -msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "" +msgstr "登入" #: lib/groupnav.php:100 +#, fuzzy msgid "Blocked" -msgstr "" +msgstr "無此使用者" #: lib/groupnav.php:101 -#, php-format +#, php-format, fuzzy msgid "%s blocked users" -msgstr "" - -#: lib/groupnav.php:119 -#, php-format -msgid "Add or edit %s design" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:646 -#, php-format -msgid "Your Twitter bridge has been disabled." -msgstr "" - -#: lib/mail.php:648 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " -"disabled. Your Twitter credentials have either changed (did you recently " -"change your Twitter password?) or you have otherwise revoked our access to " -"your Twitter account.\n" -"\n" -"You can re-enable your Twitter bridge by visiting your Twitter settings " -"page:\n" -"\n" -"\t%2$s\n" -"\n" -"Regards,\n" -"%3$s\n" -msgstr "" - -#: lib/mail.php:682 -#, php-format -msgid "Your %s Facebook application access has been disabled." -msgstr "" - -#: lib/mail.php:685 -#, php-format -msgid "" -"Hi, %1$s. We're sorry to inform you that we are unable to update your " -"Facebook status from %s, and have disabled the Facebook application for your " -"account. This may be because you have removed the Facebook application's " -"authorization, or have deleted your Facebook account. You can re-enable the " -"Facebook application and automatic status updating by re-installing the %1$s " -"Facebook application.\n" -"\n" -"Regards,\n" -"\n" -"%1$s" -msgstr "" - -#: lib/mailbox.php:139 -msgid "" -"You have no private messages. You can send private message to engage other " -"users in conversation. People can send you messages for your eyes only." -msgstr "" - -#: lib/noticeform.php:154 lib/noticeform.php:180 -msgid "Attach" -msgstr "" - -#: lib/noticeform.php:158 lib/noticeform.php:184 -msgid "Attach a file" -msgstr "" +msgstr "無此使用者" #: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy msgid "in context" -msgstr "" - -#: lib/profileaction.php:177 -msgid "User ID" -msgstr "" - -#: lib/searchaction.php:156 lib/searchaction.php:162 -msgid "Search help" -msgstr "" - -#: lib/subscriberspeopleselftagcloudsection.php:48 -#: lib/subscriptionspeopleselftagcloudsection.php:48 -msgid "People Tagcloud as self-tagged" -msgstr "" - -#: lib/subscriberspeopletagcloudsection.php:48 -#: lib/subscriptionspeopletagcloudsection.php:48 -msgid "People Tagcloud as tagged" -msgstr "" +msgstr "無內容" #: lib/webcolor.php:82 -#, php-format +#, php-format, fuzzy msgid "%s is not a valid color!" -msgstr "" - -#: lib/webcolor.php:123 -#, php-format -msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "" +msgstr "個人首頁位址錯誤" #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy msgid "No such page" -msgstr "" - -#: actions/apidirectmessage.php:89 -#, php-format -msgid "Direct messages from %s" -msgstr "" - -#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format -msgid "That's too long. Max message size is %d chars." -msgstr "" +msgstr "無此通知" #: actions/apifriendshipsdestroy.php:109 +#, fuzzy msgid "Could not unfollow user: User not found." -msgstr "" - -#: actions/apifriendshipsdestroy.php:120 -msgid "You cannot unfollow yourself!" -msgstr "" +msgstr "無法連結到伺服器:%s" #: actions/apigroupcreate.php:261 -#, php-format +#, php-format, fuzzy msgid "Description is too long (max %d chars)." -msgstr "" - -#: actions/apigroupjoin.php:110 -msgid "You are already a member of that group." -msgstr "" +msgstr "自我介紹過長(共140個字元)" #: actions/apigroupjoin.php:138 -#, php-format +#, php-format, fuzzy msgid "Could not join user %s to group %s." -msgstr "" - -#: actions/apigroupleave.php:114 -msgid "You are not a member of this group." -msgstr "" +msgstr "無法連結到伺服器:%s" #: actions/apigroupleave.php:124 -#, php-format +#, php-format, fuzzy msgid "Could not remove user %s to group %s." -msgstr "" - -#: actions/apigrouplist.php:95 -#, php-format -msgid "%s's groups" -msgstr "" - -#: actions/apigrouplist.php:103 -#, php-format -msgid "Groups %s is a member of on %s." -msgstr "" - -#: actions/apigrouplistall.php:94 -#, php-format -msgid "groups on %s" -msgstr "" - -#: actions/apistatusesshow.php:138 -msgid "Status deleted." -msgstr "" - -#: actions/apistatusesupdate.php:132 -msgid "Unable to handle that much POST data!" -msgstr "" - -#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 -#: scripts/maildaemon.php:71 -#, php-format -msgid "That's too long. Max notice size is %d chars." -msgstr "" - -#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format -msgid "Max notice size is %d chars, including attachment URL." -msgstr "" - -#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 -msgid "Unsupported format." -msgstr "" - -#: actions/bookmarklet.php:50 -msgid "Post to " -msgstr "" +msgstr "無法從 %s 建立OpenID" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format +#, php-format, fuzzy msgid "description is too long (max %d chars)." -msgstr "" - -#: actions/favoritesrss.php:115 -#, php-format -msgid "Updates favored by %1$s on %2$s!" -msgstr "" - -#: actions/finishremotesubscribe.php:80 -msgid "User being listened to does not exist." -msgstr "" - -#: actions/finishremotesubscribe.php:106 -msgid "You are not authorized." -msgstr "" +msgstr "自我介紹過長(共140個字元)" #: actions/finishremotesubscribe.php:109 +#, fuzzy msgid "Could not convert request token to access token." -msgstr "" - -#: actions/finishremotesubscribe.php:114 -msgid "Remote service uses unknown version of OMB protocol." -msgstr "" +msgstr "無法轉換請求標記以致無法存取標記" #: actions/getfile.php:75 +#, fuzzy msgid "No such file." -msgstr "" +msgstr "無此通知" #: actions/getfile.php:79 +#, fuzzy msgid "Cannot read file." -msgstr "" - -#: actions/grouprss.php:133 -#, php-format -msgid "Updates from members of %1$s on %2$s!" -msgstr "" +msgstr "無此通知" #: actions/imsettings.php:89 +#, fuzzy msgid "IM is not available." -msgstr "" - -#: actions/login.php:259 -#, php-format -msgid "" -"Login with your username and password. Don't have a username yet? [Register]" -"(%%action.register%%) a new account." -msgstr "" - -#: actions/noticesearchrss.php:89 -#, php-format -msgid "Updates with \"%s\"" -msgstr "" +msgstr "個人首頁位址錯誤" #: actions/noticesearchrss.php:91 -#, php-format +#, php-format, fuzzy msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "" - -#: actions/oembed.php:157 -msgid "content type " -msgstr "" - -#: actions/oembed.php:160 -msgid "Only " -msgstr "" - -#: actions/postnotice.php:90 -#, php-format -msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" +msgstr "所有符合 \"%s\"的更新" #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format +#, php-format, fuzzy msgid "Describe yourself and your interests in %d chars" -msgstr "" +msgstr "請在140個字以內描述你自己與你的興趣" #: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy msgid "Describe yourself and your interests" -msgstr "" +msgstr "請在140個字以內描述你自己與你的興趣" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format +#, php-format, fuzzy msgid "Bio is too long (max %d chars)." -msgstr "" - -#: actions/register.php:336 -msgid "" -"With this form you can create a new account. You can then post notices and " -"link up to friends and colleagues. " -msgstr "" - -#: actions/remotesubscribe.php:168 -msgid "" -"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "" - -#: actions/remotesubscribe.php:176 -msgid "That’s a local profile! Login to subscribe." -msgstr "" +msgstr "自我介紹過長(共140個字元)" #: actions/remotesubscribe.php:183 +#, fuzzy msgid "Couldn’t get a request token." -msgstr "" - -#: actions/replies.php:144 -#, php-format -msgid "Replies feed for %s (RSS 1.0)" -msgstr "" - -#: actions/replies.php:151 -#, php-format -msgid "Replies feed for %s (RSS 2.0)" -msgstr "" - -#: actions/replies.php:158 -#, php-format -msgid "Replies feed for %s (Atom)" -msgstr "" - -#: actions/repliesrss.php:72 -#, php-format -msgid "Replies to %1$s on %2$s!" -msgstr "" +msgstr "無法取得轉換標記" #: actions/showfavorites.php:170 -#, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "" +msgstr "發送給%s好友的訂閱" #: actions/showfavorites.php:177 -#, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "" +msgstr "發送給%s好友的訂閱" #: actions/showfavorites.php:184 -#, php-format +#, php-format, fuzzy msgid "Feed for favorites of %s (Atom)" -msgstr "" - -#: actions/showfavorites.php:211 -#, php-format -msgid "" -"%s hasn't added any notices to his favorites yet. Why not [register an " -"account](%%%%action.register%%%%) and then post something interesting they " -"would add to their favorites :)" -msgstr "" +msgstr "發送給%s好友的訂閱" #: actions/showgroup.php:345 -#, php-format +#, php-format, fuzzy msgid "FOAF for %s group" -msgstr "" - -#: actions/shownotice.php:90 -msgid "Notice deleted." -msgstr "" +msgstr "無此通知" #: actions/smssettings.php:91 +#, fuzzy msgid "SMS is not available." -msgstr "" - -#: actions/tag.php:92 -#, php-format -msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "" - -#: actions/updateprofile.php:62 actions/userauthorization.php:330 -#, php-format -msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." -msgstr "" - -#: actions/userauthorization.php:110 -msgid "" -"Please check these details to make sure that you want to subscribe to this " -"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " -"click “Reject”." -msgstr "" - -#: actions/userauthorization.php:249 -msgid "" -"The subscription has been authorized, but no callback URL was passed. Check " -"with the site’s instructions for details on how to authorize the " -"subscription. Your subscription token is:" -msgstr "" - -#: actions/userauthorization.php:261 -msgid "" -"The subscription has been rejected, but no callback URL was passed. Check " -"with the site’s instructions for details on how to fully reject the " -"subscription." -msgstr "" - -#: actions/userauthorization.php:296 -#, php-format -msgid "Listener URI ‘%s’ not found here" -msgstr "" - -#: actions/userauthorization.php:301 -#, php-format -msgid "Listenee URI ‘%s’ is too long." -msgstr "" - -#: actions/userauthorization.php:307 -#, php-format -msgid "Listenee URI ‘%s’ is a local user." -msgstr "" - -#: actions/userauthorization.php:322 -#, php-format -msgid "Profile URL ‘%s’ is for a local user." -msgstr "" - -#: actions/userauthorization.php:338 -#, php-format -msgid "Avatar URL ‘%s’ is not valid." -msgstr "" +msgstr "個人首頁位址錯誤" #: actions/userauthorization.php:343 -#, php-format +#, php-format, fuzzy msgid "Can’t read avatar URL ‘%s’." -msgstr "" - -#: actions/userauthorization.php:348 -#, php-format -msgid "Wrong image type for avatar URL ‘%s’." -msgstr "" +msgstr "無法讀取此%sURL的圖像" #: lib/action.php:435 +#, fuzzy msgid "Connect to services" -msgstr "" +msgstr "無法連結到伺服器:%s" #: lib/action.php:785 +#, fuzzy msgid "Site content license" -msgstr "" +msgstr "新訊息" #: lib/command.php:88 -#, php-format +#, php-format, fuzzy msgid "Could not find a user with nickname %s" -msgstr "" - -#: lib/command.php:92 -msgid "It does not make a lot of sense to nudge yourself!" -msgstr "" - -#: lib/command.php:99 -#, php-format -msgid "Nudge sent to %s" -msgstr "" - -#: lib/command.php:152 lib/command.php:400 -msgid "Notice with that id does not exist" -msgstr "" - -#: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format -msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:431 -#, php-format -msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "" - -#: lib/command.php:439 -#, php-format -msgid "Reply to %s sent" -msgstr "" +msgstr "無法連結到伺服器:%s" #: lib/command.php:441 +#, fuzzy msgid "Error saving notice." -msgstr "" - -#: lib/command.php:587 -msgid "" -"Commands:\n" -"on - turn on notifications\n" -"off - turn off notifications\n" -"help - show this help\n" -"follow - subscribe to user\n" -"leave - unsubscribe from user\n" -"d - direct message to user\n" -"get - get last notice from user\n" -"whois - get profile info on user\n" -"fav - add user's last notice as a 'fave'\n" -"fav # - add notice with the given id as a 'fave'\n" -"reply # - reply to notice with a given id\n" -"reply - reply to the last notice from user\n" -"join - join group\n" -"drop - leave group\n" -"stats - get your stats\n" -"stop - same as 'off'\n" -"quit - same as 'off'\n" -"sub - same as 'follow'\n" -"unsub - same as 'leave'\n" -"last - same as 'get'\n" -"on - not yet implemented.\n" -"off - not yet implemented.\n" -"nudge - remind a user to update.\n" -"invite - not yet implemented.\n" -"track - not yet implemented.\n" -"untrack - not yet implemented.\n" -"track off - not yet implemented.\n" -"untrack all - not yet implemented.\n" -"tracks - not yet implemented.\n" -"tracking - not yet implemented.\n" -msgstr "" +msgstr "新增訊息時發生錯誤" #: lib/common.php:191 +#, fuzzy msgid "No configuration file found. " -msgstr "" - -#: lib/common.php:192 -msgid "I looked for configuration files in the following places: " -msgstr "" - -#: lib/common.php:193 -msgid "You may wish to run the installer to fix this." -msgstr "" - -#: lib/common.php:194 -msgid "Go to the installer." -msgstr "" - -#: lib/galleryaction.php:139 -msgid "Select tag to filter" -msgstr "" +msgstr "無確認碼" #: lib/groupeditform.php:168 +#, fuzzy msgid "Describe the group or topic" -msgstr "" +msgstr "請在140個字以內描述你自己與你的興趣" #: lib/groupeditform.php:170 -#, php-format +#, php-format, fuzzy msgid "Describe the group or topic in %d characters" -msgstr "" - -#: lib/jabber.php:192 -#, php-format -msgid "notice id: %s" -msgstr "" +msgstr "請在140個字以內描述你自己與你的興趣" #: lib/mail.php:554 -#, php-format +#, php-format, fuzzy msgid "%s (@%s) added your notice as a favorite" -msgstr "" - -#: lib/mail.php:556 -#, php-format -msgid "" -"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" -"\n" -"The URL of your notice is:\n" -"\n" -"%3$s\n" -"\n" -"The text of your notice is:\n" -"\n" -"%4$s\n" -"\n" -"You can see the list of %1$s's favorites here:\n" -"\n" -"%5$s\n" -"\n" -"Faithfully yours,\n" -"%6$s\n" -msgstr "" - -#: lib/mail.php:611 -#, php-format -msgid "%s (@%s) sent a notice to your attention" -msgstr "" - -#: lib/mail.php:613 -#, php-format -msgid "" -"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" -"\n" -"The notice is here:\n" -"\n" -"\t%3$s\n" -"\n" -"It reads:\n" -"\n" -"\t%4$s\n" -"\n" -msgstr "" - -#: lib/mailbox.php:227 lib/noticelist.php:424 -msgid "from" -msgstr "" - -#: lib/mediafile.php:179 lib/mediafile.php:216 -msgid "File exceeds user's quota!" -msgstr "" - -#: lib/mediafile.php:201 lib/mediafile.php:237 -msgid "Could not determine file's mime-type!" -msgstr "" +msgstr "現在%1$s在%2$s成為你的粉絲囉" #: lib/oauthstore.php:345 +#, fuzzy msgid "Duplicate notice" -msgstr "" +msgstr "新訊息" + From 87543292d18409e7b4f3c4876172d414d39183fd Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Fri, 6 Nov 2009 15:26:13 +0100 Subject: [PATCH 81/92] Fixed some group list styles --- lib/grouplist.php | 2 +- theme/base/css/display.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/grouplist.php b/lib/grouplist.php index 39a9b2d948..d9547acb99 100644 --- a/lib/grouplist.php +++ b/lib/grouplist.php @@ -105,7 +105,7 @@ class GroupList extends Widget 'alt' => ($this->group->fullname) ? $this->group->fullname : $this->group->nickname)); - $hasFN = ($this->group->fullname) ? 'nickname url' : 'fn org nickname url'; + $hasFN = ($this->group->fullname) ? 'nickname' : 'fn org nickname'; $this->out->elementStart('span', $hasFN); $this->out->raw($this->highlight($this->group->nickname)); $this->out->elementEnd('span'); diff --git a/theme/base/css/display.css b/theme/base/css/display.css index f9ed80aa9a..1bab7d965d 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -787,7 +787,7 @@ display:none; list-style-type:none; } .profile .entity_profile .fn.nickname, -.profile .entity_profile .url[rel=contact] { +.profile .entity_profile .url[rel~=contact] { margin-left:0; display:inline; } From 0994fa31d6281167f410b659761ceb332ace7913 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Fri, 6 Nov 2009 15:28:58 +0100 Subject: [PATCH 82/92] Added missing closing span tag --- lib/grouplist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/grouplist.php b/lib/grouplist.php index d9547acb99..cc734bdd06 100644 --- a/lib/grouplist.php +++ b/lib/grouplist.php @@ -119,6 +119,7 @@ class GroupList extends Widget if ($this->group->location) { $this->out->elementStart('span', 'label'); $this->out->raw($this->highlight($this->group->location)); + $this->out->elementEnd('span'); } if ($this->group->homepage) { $this->out->elementStart('a', array('href' => $this->group->homepage, From 4b7a36ea1932cfd2245560fa9949dc32fe2d2fc7 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 6 Nov 2009 14:31:39 +0100 Subject: [PATCH 83/92] console.php terminal script provides interactive PHP console in StatusNet environment, handy for testing! Uses readline for line input editing if available; falls back to bash+readline if not native, and takes fgets() in worst case. Currently a bit awkward in that each input line is parsed separately, so loops and function defs have to be squished to one line. --- scripts/console.php | 153 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100755 scripts/console.php diff --git a/scripts/console.php b/scripts/console.php new file mode 100755 index 0000000000..e65529a8d2 --- /dev/null +++ b/scripts/console.php @@ -0,0 +1,153 @@ +#!/usr/bin/env php +. + */ + +# Abort if called from a web server + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$helptext = << + * + * @param string $prompt + * @return mixed string on success, false on fail or EOF + */ +function readline_emulation($prompt) +{ + if(file_exists(trim(shell_exec('which bash')))) { + $encPrompt = escapeshellarg($prompt); + $command = "read -er -p $encPrompt && echo \"\$REPLY\""; + $encCommand = escapeshellarg($command); + $metaCommand = "bash -c $encCommand"; + + // passthru passes our STDIN and TTY to the child... + // We can pull the returned string via output buffering. + ob_start(); + $retval = false; + passthru($metaCommand, $retval); + $line = ob_get_contents(); + ob_end_clean(); + + if ($retval == 0) { + return $line; + } elseif ($retval == 127) { + // Couldn't execute bash even though we thought we saw it. + // Shell probably spit out an error message, sorry :( + // Fall through to fgets()... + } else { + // EOF/ctrl+D + return false; + } + } + + // Fallback... we'll have no editing controls, EWWW + if (feof(STDIN)) { + return false; + } + print $prompt; + return fgets(STDIN); +} + +function console_help() +{ + print "Welcome to StatusNet's interactive PHP console!\n"; + print "Type some PHP code and it'll run!\n"; + print "\n"; + print "Note that PHP is cranky and you can easily kill your session.\n"; +} + + +$prompt = common_config('site', 'name') . '> '; +while (!feof(STDIN)) { + $line = read_input_line($prompt); + if ($line === false) { + print "\n"; + break; + } elseif ($line !== '') { + try { + if ($line == 'exit') { + break; + } elseif ($line == 'help') { + console_help(); + continue; + } + + // Let's do this + $result = eval($line); + if ($result === false) { + // parse error + } elseif ($result === null) { + // no return + } else { + // return value from eval'd code + var_export($result); + } + } catch(Exception $e) { + print get_class($e) . ": " . $e->getMessage() . "\n"; + } + } + print "\n"; +} + +if (CONSOLE_READLINE && CONSOLE_INTERACTIVE) { + @readline_write_history(CONSOLE_HISTORY); +} From 1e1b2f778387bdbd0a22a06e94b1e145565b43dd Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 6 Nov 2009 15:03:03 +0100 Subject: [PATCH 84/92] console.php: fix up the help and include a handy cut-n-paste'able example --- scripts/console.php | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/scripts/console.php b/scripts/console.php index e65529a8d2..f1b089a7cd 100755 --- a/scripts/console.php +++ b/scripts/console.php @@ -110,12 +110,21 @@ function readline_emulation($prompt) function console_help() { print "Welcome to StatusNet's interactive PHP console!\n"; - print "Type some PHP code and it'll run!\n"; + print "Type some PHP code and it'll execute...\n"; print "\n"; - print "Note that PHP is cranky and you can easily kill your session.\n"; + print "Hint: return a value of any time to output it via var_export():\n"; + print " \$profile = new Profile();\n"; + print " \$profile->find();\n"; + print " \$profile->fetch();\n"; + print " return \$profile;\n"; + print "\n"; + print "Note that PHP is cranky and you can easily kill your session by mistyping.\n"; + print "\n"; + print "Type ctrl+D or enter 'exit' to exit.\n"; } +print "StatusNet interactive PHP console... type ctrl+D or enter 'exit' to exit.\n"; $prompt = common_config('site', 'name') . '> '; while (!feof(STDIN)) { $line = read_input_line($prompt); @@ -124,14 +133,14 @@ while (!feof(STDIN)) { break; } elseif ($line !== '') { try { - if ($line == 'exit') { + if (trim($line) == 'exit') { break; - } elseif ($line == 'help') { + } elseif (trim($line) == 'help') { console_help(); continue; } - // Let's do this + // Let's do this! $result = eval($line); if ($result === false) { // parse error From 8516c4eef0f5c1a5d1a0a1a6c077475875eed297 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 6 Nov 2009 15:04:23 +0100 Subject: [PATCH 85/92] typo :P --- scripts/console.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/console.php b/scripts/console.php index f1b089a7cd..41dd43f281 100755 --- a/scripts/console.php +++ b/scripts/console.php @@ -112,7 +112,7 @@ function console_help() print "Welcome to StatusNet's interactive PHP console!\n"; print "Type some PHP code and it'll execute...\n"; print "\n"; - print "Hint: return a value of any time to output it via var_export():\n"; + print "Hint: return a value of any type to output it via var_export():\n"; print " \$profile = new Profile();\n"; print " \$profile->find();\n"; print " \$profile->fetch();\n"; From 8beef3eab3db4e60da56cd5f535c3eae2f2f5283 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 6 Nov 2009 16:40:54 +0100 Subject: [PATCH 86/92] * add language code conversion for translatewiki.net where needed * skip update of code 'en' (as English is the source language) --- scripts/update_translations.php | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/scripts/update_translations.php b/scripts/update_translations.php index 4f3ebb1a2d..88780898d5 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -39,12 +39,28 @@ set_time_limit(60); $languages = get_all_languages(); /* Update the languages */ +// Language code conversion for translatewiki.net +$codeMap = array( + 'nb' => 'no', + 'pt_BR' => 'pt-br', + 'zh_CN' => 'zh-hans', + 'zh_TW' => 'zh-hant' +); foreach ($languages as $language) { + $code = $language['lang']; - $code = $language['lang']; + // Skip export of source language + if( $language == 'en' ) { + continue; + } - // Fetch updates from TranslateWiki... + // Convert code if needed + if( isset( $codeMap[$code] ) ) { + $code = $codeMap[$code]; + } + + // Fetch updates from translatewiki.net... $twcode = str_replace('_', '-', strtolower($code)); // pt_BR -> pt-br $file_url = 'http://translatewiki.net/w/i.php?' . http_build_query(array( From 814b513aa5d86a38e7b6db220d36fca253bdabfe Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 6 Nov 2009 16:53:07 +0100 Subject: [PATCH 87/92] Fix a few bugs I added in previous revision --- scripts/update_translations.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/scripts/update_translations.php b/scripts/update_translations.php index 88780898d5..88b85dc123 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -39,7 +39,7 @@ set_time_limit(60); $languages = get_all_languages(); /* Update the languages */ -// Language code conversion for translatewiki.net +// Language code conversion for translatewiki.net (these are MediaWiki codes) $codeMap = array( 'nb' => 'no', 'pt_BR' => 'pt-br', @@ -51,17 +51,19 @@ foreach ($languages as $language) { $code = $language['lang']; // Skip export of source language - if( $language == 'en' ) { + // and duplicates + if( $code == 'en' || $code = 'no' ) { continue; } // Convert code if needed if( isset( $codeMap[$code] ) ) { - $code = $codeMap[$code]; + $twnCode = $codeMap[$code]; + } else { + $twnCode = str_replace('_', '-', strtolower($code)); // pt_BR -> pt-br } // Fetch updates from translatewiki.net... - $twcode = str_replace('_', '-', strtolower($code)); // pt_BR -> pt-br $file_url = 'http://translatewiki.net/w/i.php?' . http_build_query(array( 'title' => 'Special:Translate', From 023d5c17ab2abe6a221d6db54778d8d585b6dd86 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 6 Nov 2009 17:16:43 +0100 Subject: [PATCH 88/92] More bug fixes. --- scripts/update_translations.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/update_translations.php b/scripts/update_translations.php index 88b85dc123..baa377caca 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -52,7 +52,7 @@ foreach ($languages as $language) { // Skip export of source language // and duplicates - if( $code == 'en' || $code = 'no' ) { + if( $code == 'en' || $code == 'no' ) { continue; } @@ -69,7 +69,7 @@ foreach ($languages as $language) { 'title' => 'Special:Translate', 'task' => 'export-to-file', 'group' => 'out-statusnet', - 'language' => $twcode)); + 'language' => $twnCode)); $lcdir = INSTALLDIR . '/locale/' . $code; $msgdir = "$lcdir/LC_MESSAGES"; From 769e5b7622445cf49cbaf5a416fb6b250b072866 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 6 Nov 2009 17:40:52 +0100 Subject: [PATCH 89/92] Localisation updates from translatewiki.net (2009-11-06) * fixes incorrect formatting in previous l10n update --- locale/bg/LC_MESSAGES/statusnet.mo | Bin 119582 -> 119903 bytes locale/bg/LC_MESSAGES/statusnet.po | 2252 ++++++++-- locale/ca/LC_MESSAGES/statusnet.mo | Bin 103213 -> 103555 bytes locale/ca/LC_MESSAGES/statusnet.po | 2057 +++++++-- locale/cs/LC_MESSAGES/statusnet.mo | Bin 51879 -> 52513 bytes locale/cs/LC_MESSAGES/statusnet.po | 4383 ++++++++++++++++++- locale/de/LC_MESSAGES/statusnet.mo | Bin 103700 -> 104141 bytes locale/de/LC_MESSAGES/statusnet.po | 2193 ++++++++-- locale/el/LC_MESSAGES/statusnet.mo | Bin 37203 -> 37891 bytes locale/el/LC_MESSAGES/statusnet.po | 5781 ++++++++++++++++++++++++- locale/en_GB/LC_MESSAGES/statusnet.mo | Bin 96102 -> 96399 bytes locale/en_GB/LC_MESSAGES/statusnet.po | 1953 +++++++-- locale/es/LC_MESSAGES/statusnet.mo | Bin 102031 -> 102370 bytes locale/es/LC_MESSAGES/statusnet.po | 2065 +++++++-- locale/fi/LC_MESSAGES/statusnet.mo | Bin 105047 -> 105510 bytes locale/fi/LC_MESSAGES/statusnet.po | 2044 +++++++-- locale/fr/LC_MESSAGES/statusnet.mo | Bin 108987 -> 109998 bytes locale/fr/LC_MESSAGES/statusnet.po | 2097 +++++++-- locale/ga/LC_MESSAGES/statusnet.mo | Bin 106769 -> 107521 bytes locale/ga/LC_MESSAGES/statusnet.po | 2714 ++++++++++-- locale/he/LC_MESSAGES/statusnet.mo | Bin 56120 -> 56866 bytes locale/he/LC_MESSAGES/statusnet.po | 4300 +++++++++++++++++- locale/is/LC_MESSAGES/statusnet.mo | Bin 85990 -> 92855 bytes locale/is/LC_MESSAGES/statusnet.po | 2622 ++++++++++- locale/it/LC_MESSAGES/statusnet.mo | Bin 102115 -> 102451 bytes locale/it/LC_MESSAGES/statusnet.po | 2024 +++++++-- locale/ja/LC_MESSAGES/statusnet.mo | Bin 60867 -> 65244 bytes locale/ja/LC_MESSAGES/statusnet.po | 3960 ++++++++++++++++- locale/ko/LC_MESSAGES/statusnet.mo | Bin 108795 -> 109104 bytes locale/ko/LC_MESSAGES/statusnet.po | 1906 ++++++-- locale/mk/LC_MESSAGES/statusnet.mo | Bin 67529 -> 68322 bytes locale/mk/LC_MESSAGES/statusnet.po | 4420 ++++++++++++++++++- locale/nl/LC_MESSAGES/statusnet.mo | Bin 90517 -> 91106 bytes locale/nl/LC_MESSAGES/statusnet.po | 2750 ++++++++++-- locale/nn/LC_MESSAGES/statusnet.mo | Bin 98278 -> 98575 bytes locale/nn/LC_MESSAGES/statusnet.po | 1955 +++++++-- locale/pl/LC_MESSAGES/statusnet.mo | Bin 135699 -> 135673 bytes locale/pl/LC_MESSAGES/statusnet.po | 1807 ++++++-- locale/pt/LC_MESSAGES/statusnet.mo | Bin 32927 -> 33607 bytes locale/pt/LC_MESSAGES/statusnet.po | 5671 +++++++++++++++++++++++- locale/ru/LC_MESSAGES/statusnet.mo | Bin 135183 -> 138074 bytes locale/ru/LC_MESSAGES/statusnet.po | 2105 +++++++-- locale/sv/LC_MESSAGES/statusnet.mo | Bin 85632 -> 86433 bytes locale/sv/LC_MESSAGES/statusnet.po | 2837 ++++++++++-- locale/te/LC_MESSAGES/statusnet.mo | Bin 60079 -> 62487 bytes locale/te/LC_MESSAGES/statusnet.po | 4490 ++++++++++++++++++- locale/tr/LC_MESSAGES/statusnet.mo | Bin 50492 -> 51229 bytes locale/tr/LC_MESSAGES/statusnet.po | 4526 ++++++++++++++++++- locale/uk/LC_MESSAGES/statusnet.mo | Bin 133948 -> 134254 bytes locale/uk/LC_MESSAGES/statusnet.po | 2033 +++++++-- locale/vi/LC_MESSAGES/statusnet.mo | Bin 99159 -> 99647 bytes locale/vi/LC_MESSAGES/statusnet.po | 2811 ++++++++++-- locale/zh_CN/LC_MESSAGES/statusnet.mo | Bin 496 -> 94043 bytes locale/zh_CN/LC_MESSAGES/statusnet.po | 1851 ++++++-- locale/zh_TW/LC_MESSAGES/statusnet.mo | Bin 497 -> 26115 bytes locale/zh_TW/LC_MESSAGES/statusnet.po | 5590 +++++++++++++++++++++++- 56 files changed, 78596 insertions(+), 6601 deletions(-) diff --git a/locale/bg/LC_MESSAGES/statusnet.mo b/locale/bg/LC_MESSAGES/statusnet.mo index ad9e7b624038420b83a56f162da9e9cb6810e8c3..698158b1db95e293e03fe3d429cc37978ba82ac4 100644 GIT binary patch delta 22297 zcmZYH2b@jE|NrrGm915=ggd$a}W9c|4Y`SxVbik=SKQu@earPq>dAU zsojp#Jh|h%tDsWHX%XW%nXo1L;{eQwW3dr_jrH&~`e2P_j^l^*F%`DN{1}UQa1Lg} zeVE;GJkC{H@fM3xk+ZquG)}^a7)-perQ;OD_ZUR{Gp6JE&OI{W6uiW=n5B&waURS-TnR%k2Gij{TRz^FCtym-cVK!v zfNngCneiEF#Hrev`n=Y1n3C%|4aw-jtxy-}fg1S;)D+G|H!ees>@cdsOSb-BOii4m zooVlndIVXqH|9b;nm8LTM9pZ5_RN1dGR4V6;9x9+^RYUf$BdY@gX84I!k8UfVfj#Gewa;OXU zLUlX<^WiAe1=nIS+-U2!q8`yc)b2Qe0eBg6;6v2f^6zS%eH7*-u4dz29x|HZ&rwqx zhuSU&P^gSD zHO|GKus?R{VMhK7CMW)Y>L@u6JSC<^%}5YxO=LkgmbUe+QRl^?F5C;%ZY28QBIJ>I zoHb-pP_PfR>W^X;yn&hVHEL0&?`5`OeauSS3w1-2F)z+UU0@GJ;1$%P_z%O-pRJ(w zMNqq~BnE2#*C3-iY>WA^59*ODL@lb#7=p)87ycc!sNSPG^6z8nv!VJagML^CHLzy3 zydCOI+81?WlQ4wqJM+nuz@69>pP=4=mHV0w;&~pLiLX#MunX1EIn-)@h`P{wtIq)Q zK1hp&DbI>-tc#lAKByU`~@v`V9jzKNvp{VOD8pQmo;4lSxM)y#6<~!It%LvreSHXU8$33I`PZB54+=E06hloMff`9A)P=gBUQCm0 z{c2l(1T#>64}0@Ov}Sf(a3XQeyog|%6_(d zKI#$eKrN;#s44UtVcvXYQ8!W(gRwtqMy8_rU1H0>#Z1KKQ8V%weYO9Sj5H%og&C;` zMLoMHREI55k75wk#(9_yZ((M9hN&>sDARE!)QhJ8YNSO`+q4quQ8&aa*cbC^|9?S7 z`*sKFLPxz7j&mP%$LU9#sm+Ue#&xWnFe~wJ)Y^zg-S7@nKc`Ux`Ww~G=W|mZj_Ri@ zX4U?0LM9aZp{8zzZLr*y@3vkP)2)w%&ye+o6jw=o+& zN8NDxvCO|Nlx?iJP;qMm%tv{5?0|Ez8@|9~*mj&*-JMWtr8lO=IMkFcLydH&E#HfJ zC7(d8iC=8_t#OP<+u|t&8tDtvNYjotaY57wYM@5Y4s`>4Q8P9O)$u4>KG~K}#}LZn zQ8%^?b>V~P#-A_=KJ}1M2Y;icz}E#nT5hL*r2wSd4mc zZMPmrwZDRHe2%#>;}kRUvZzH@8?{#2Am@9W5oGkNXJ8cWK_7gKh449QzejvwPK?I= z#Enty(oHoZ$%MLr%E(i6+F&xgiN1ITbKn!yjHREZH!IISGZ_`QQ4Mop4J?E?@iWvj z{0j99*Q46+MvdeEYGl`}PcfWWpS~JE1ZpOl;6faU{V`|;H^}v!$z;^=bkv9zqSnB2 zjKp227syT2GkuGB&~K*s?2bk~z4SLid<1F*c!>}ZA zDJ+Ep(H}RW*1$g08aRh(@e%66Z;+?tWcku;$Ca3r_#{T)X-tXFFbv;eD$F*U`PU8P zoo#kO2~=De)vy7UzyYWkSciH<$51nH8uQ{StcnqH%#C(OP5I{-fNN0OZ8z%C?Zq^B zcn+e=l~Enm#|+p3)qXJQ(M>@8xJ<)zxCV7zBId#) zr~y7i&B#j+ne=2_b4^7?)Zz(4bx_sDF{m3IhI$lpP>*7*^)Tv9`YUQio}q3uG~Uc? zA=HhOM$KS#)O9@#$Y`XUtYc6kT7nsH6RM-{P*Zl^`a5b3{Dr#F52*9f%`*dWquvt* zFe6sAXD2`y^@!p+U@n0^Zd_}DL}zv)YN5}Z$31tp>F6))C}!M-Pl!BM~_g?(075E z;`FE)3PsIKKGe*VMh&D6YK=5RwQG+4T;GW$qY)0lV4Q-wzzXX@%uIX@wcTEz)<__4 z6Il|qxLTubbR4>Ine{Mg#J{6v>=o(;{1-9*CCG%5QO7Z;7sU`%!_l^UE^6v`phk2Y zwT&*JA6~cR4^WHjHEO1kFE(o-5DOBAqkjJzVKnw%%=6DjW;F$xnzN{9dl@w&Pf**% z`N~`<4Y~<4TT7wZwL-P)gSzkt>r~W*7NQ=>XZ12usAUoroxctU}u%XWQPr1_clg^qMwT9g2#uAtVTiE*1NPiw@A{jk` z*{FTH3^lSHs3|&zx`7L*3*A87z+DW+R~Uln8J;YJI=?RJ{I;k8^}&KT3H7LUVoI*> zTqmQE-M2nRb^HM}Gr_A(hhdnVI0|(`jZy7dqaN81)D6x+U2ra{-)~SC+=E(-w@^12 zw1)Ov-^ooz&$=LH!LnE$o8thShq@8puT6bA3?ljCaC1vj8} z*FIZ*7CoB!OJtJbJygSosO|LD#=dLK3nUoTaUs;|u8zsDJNjTB)T0@Ub#XFI$MdN3 zI<8}D;xMd@&(|^kQ^}NHZ>I7G)Rf&ujqpz!r`cfYgHbnF6g85ns2gaBYTpjSag?oJ ziW=Y!)XW?~J+iY{2p?@={?%dDjpoGssQuXhOJXl9j;m1H=qeV)G~bwS!%CA5-Bu)Cg~2PP~n3mvXaNj1j0u zQ3VTOEat;_)FU~Jy3h$Mj4#j+b8Rs<;weH#i>?xC5w$`6stvK_9@K>wqMqR)R0o$Z z9sZ8G(dVdL@B#H>lWD7&@&c#bDmkIv#4N!$u^;dooV9`y)Mqxawcl596qnHeLfD2ZA`ZBT2$ zgPP(+sQtemv*C5rvww%WK$acmjadm*KN$5W;xGUYVnIBMh0xi_cZc?WVKS;{XPto> z@jfhumr#!;%`S6dF6955X8f^R<%!%J9>=e+6NN?4*<+r46c!+Cj}>tSR>0Hf2_}>F zTQl-VEKFS2IvO3%QL_O=DP&057 zGho{9%*=(O2HF%gQv*C?G$m^>3Lju@%zDK9-L8stENUAb#2k1RH3Gk*=7Q-_H;@B$ zqh(Py*aFkyAk>YGLpRPvJsQtWGPku-W%i3F#kH? zECn_3Kh(3VewH63?1j3aZ_tfrQ5SxO8d2mqQ{Dj8u0Lu9=c0GUur%?nsP=)sm`73; z703R<{Hw$1w%|L|2>-z07;xUyPs3>9!>C8_FZ!eZ1@i*Rj#?YVu>!_mYK+J9xB@j( zJ8?8V#*x_5bCHXXxo3TaI>GOfSuCNLfjA0v!Rn~`W~lRepmxJZ8&AhH#7oczH=+i# z9km#*qIWl3HaF-=Nyd+gAWVf}m=+75FP24hSPhe76AZ$Z7>NB*?Iz(jF8*SIn)-6T znjf8R*n>D8d*TOc&#T@W^f(vDXy0E$-N1Wnj()tzD`F?qc3WvZf~ARXV++i7oyEnF zK0{6Yt6RpBzngzS9cI0TZK$t!n_pV|3d?E#zatY)LFqf@1<@8O5y#s2Yb-&$88hL1 zTmJzy6P50oRo?fx0-Qmd^s(8Fv#~1iHtS2&Oq6|Mz5{w$BcC$=fh?N4 zPt7xb`zOzuxXE9}L4Wg4Zk!nR%y<#25eGjvQ{Eo+;+ck;k&~zqUP0}O$Cw)bv$5Yl zX2!Cj22}DN=3kjn6coin7>WO&MilzOxWQWLUo$h`qZa8o^u@d{&2}w{b%|@DE*y_( za0O<xyEtc4|#y1aiC8;iQ3AFu_U$Ew=@1(La(h7=6MoOlG);UB0)RXDlJ zabpE6g&l0X5Y=w4jg$De96ibiRJ&@Z8}y*o)IqF>4^WRLPYTMpzSEVAR_iRxg3B;J z?!^-L0QCsmzAo=-uZH!ACs@y6?PS!aG&9pHjm!H#$N3!V&~BgAH?2m@cL8c(3(%vf zTuVk5*o*z}H>`vW{f%?1=dldsLFruHpXjm(vjk zq0YOI-sSNYWXfPFhNGVORn(nk%V^3wTaTeel$)1^Iv9j{#ye5l_yg*ZR0%RuKNS_9 z#AXn`TcSqgGmzg|fs-98Mih{zK%?PGpZQ_4XGg2wo<^7b}in?%$EM{c2P}_4L zs{LBjjXy`-XvwVR1}C8EPoriqIK&v^Ayb-y*{DT$3bnmLLyetL7g&eh-GTXtpJ5Zs zmd)k;yWK$RGE}?Ms8{qY8`t5rTAa8Y*2H+!bv-x8=*<`Gc6mQ2>S250_Na~yVqQFF z{SP&=$S~tz>mk$tQimJcS~pogpcZ+<2($k?Vgau2>>`t!iaV%nkvfOjCbdx8ajJC- zs)LKx`>3DQSEx0UDW`ent*{O8LY#*$Q3IHn%RHJrs8{oQ^nU-R%5C0EQJ9sA@~Ago zE7bn|982N>)D6DGP>hZ=+p{q?AfAev$zM^gb;2sffS`~x*rISQE!YQGHi!n%rjfn_LctZ40H zU1J9~d6u62RQ)38mCUj#oYO%%G`oXAe=&^3Vg2b1sKE++$ zkJe(Seq*d1P#5lnn#r*qGFo&qQHy3hYUJ10$#@feF6a6Sf< zG;3o$ZY6$&yKsFeW5?3w(Pb`UeylvX$>`Ur7G}cns29*8)S|hCdWZXzHB(#&*AWj# zZQF=)W_8!WXyS3GN0DgDUFFT2t|V%A47RRC9<9f@Mn=D887r7qY$psS-i^AzRV<82 zE1K0Dje5nlv#vx<Y^>-b$i0`4!%TS#UAMO9b zWHjPhs72Kq_0FG97Fk0Yqh%O1LnB(7HS6GVRp<` z&#Z;=_&xE6dhCBa`^xpr$i76~=>p7vzoGW~Kd4<&qJhi%k=g{cSo@%Ecp?_UMW|Qt zkErdKwV@e6ZLCY&7PU*(TdOqkm^a?FMlPo{6~T?olnudT#EZ}$m!WQG3##LzmJeYF@dwlz%IRt9^8UMD6l#0Kq87&j)K}^*8~ewY5$8vB zT-C;%F@|^~YR#NQZQm5ljP+0#jzhiqcA;h{NprKUJ&noKpkO5GReA(9)laQ{EnMEe z<>o@IfpVx0I$5`&W+F*TGtxZP2G${{HLwWXxE~|&hN<^BDO#BZ1yDba4Nx7vhbkFh@G`P!LR_6XF^_bF>wdo!a$QETP^>JgknE!r2>G#yy9+W$F~!5Gvw znTTm|wRH!ogCjP+hnk@m){u@Su43(Joo(H1y=nF7WZD-%k2-2<3r1R3pho@!R>Ehf z8;b61_Inj9Lwpof?sPGa&>!`sQv|&;h#J^J)O+M4>J50^>KDuYFF-+wShIR#QB$-C z^wnf#CMEz_}N6pL@)Ic6%MoiYz+(0mD-`B?4 z*xW-#FNhVWsXl?)j()w&o3F7o9@XwL=EnEvi@AE65f!r5wf4X))K5aq#B$V)Z^W*6 z(&{PF$K26;>_o+Ct8ZVX*u|HMbznae5AScD<(L8Hna81?`A%$&k5MD6IncC=LCs`$ z)Z(6p+7-Kywc~M4lF^-BLCwHF*5ZTAoeo2FcoX%A9-|g*s=+3XLdA_xBOHcmKMwBBk5orgZkNChFV;wFbe-b zy%$10GmC8is(dQu!TqTJ>8^91j81%mnwm_*>lKrpklAny8Q8mEoBb)C_p+5gdGrc*Ew4`Vz=e{QDgB;F?e4+r2a zwyWx!jImRU>L_HanbLfyI0kjYT~IeP+`0(08}_4a=)_n$)F)HeIP>#667v#oMy-Kg zQ7;zPc$d=)OQ5E1B{sto*a)*vFasEXitkv9Pc$#ADX1TxC)RwET;BgVP7eI64cTpoOGsTqGMosZB)C*@FYUGEpJYGb-$^*YJzk21ZLs8q- zvx$sm;4TJYg{kIeHO9IJ)nVu~^M;E;U9cHyKTk&8=+~&3`WCC_GS0843niUl7E@*{NgR!ufj(Fn7ole82CAb+);HFaGtG=<#{ASbL(RZ= z)U)4+dXFSxYwiDwWb`W)HOs7lPN)mb!{&I!TI5U9(HE$Wx1nBGH&N}wW}EshsHvTS z`djf))HeQr-d!@sJen5RL;F90j9xIVII}A2q4xV4RQV}u=D9BKf4S&lJ%W1WhR2)s zpQEOJm5m=_J>qopT+YAP&Ki^8a?TLfozMPPCUk+z`yYd!Vin@n3r)P#ntG9mhod^Y zXN_KL;&G_IKb)~~maohj>26(snu(J*1d}f@{|Gg53Hx9B{wM|NxWrPI^BN~&br-8+ znalhCUhnvFm-j!%m0w|Qa5rkPy+eJBMy)h6H4gRSIc<$zW$G8A7WYHc_I6gA&-;9< z+5fy-oWc~$r+o7omy?J!zcxB+&0^V&DJZ{$+GaOVKQ=Eh7z5Xt-;P2UOrEWtArnABI~#)3ZkTg}afbB;s$JWS=ATs0VH@H~-x!xz-(qdb zTWm6}#LUD`u?(izZ1hwiqiyCvt>WFNFPXQfH(>THX7yIbJ;dWtzjo!entj~^^(aQ! zcpJKjk6}T)hpjMho3TIY*Y8KP$*bcYjQtkiri7sat1>3CocAFQ`D(fE9h)<)Y`i-^u z9`hr#11nK}AN3x|!_}j(B`Th7<9(8br1L;Ynm z&mm)5)M}rN4RJH-#p4_{BWz=xj{1PvhaKDdG33Wra zQ8OO;1N%ROO#2_q)Q_@W!0wb6JZWAa3D*1QeNp{r{sY29)Hb`1M=SRNvzJl3F16>h`NyMb=%(NZYSrICO;MJgUCxg<&RYMB`H{(T*1SlnU>NnC zQNI}zts77SJB#7?6x|qb&csoudQS`){eBO$PQ<3f^Q}+Nhq&@D=2x#4W+NVoT14>} zj2kfx9!HJzJZif=Mtv{5MZHh*pEv*7-UMCR|1XnJ%JB|sB;|LR(ilubDo4I9>gYlK zqPx_mrF~ypewJ9*ce+t9oosH>AqqFz20MsLal$Y7 z1!c)eT2%eLCz9d#n|kf>ARJ724m^xLv^`AueKq1}Z2MIH68Xop$wcz^@JBsPT8N{l zEQu^yXBqh%Dcljw&w2j-^bGqX_+LfpMS?Zb+N0BxWx1*fp ziqJkO^~10x=^$k*hq(FHXmT_R47 zD@mPcmy^_;w1&6~>Ekhn&fBYvEy!T&^mC?TjQ3C8AGE7u^P}nK$0TO`IsbCPRSGKL zBO3ihN=3tTq$K1UV_uv?oAG#ocrFgXTNPBHR_DBDPSN#Zxz*-G6+@}sEJC&+Ws$KwEXDQGj5 zRGa!hD*ECSQY%sd^sW$aGR#ESvT%SMYVE+H1vLh8b>KU9|l;xmI zUu?zg$uDf1Z|K19V>`!i3T65WU|Pj`{>Mq_ zDAeBo_}FuX(rH0#Z7=v5zb4j~{~zSnqK+a4ry(5;B2}kNX3F%rspA|ejIxhM0eb_A z=TbhI*wc?c`V(xh7rRD0oO}(+3X?xa(vgvPG3sOd24%Bt`50V8s!9DE%x}xf($1fh zfwYVMqDj3-`ht9ii|~^6|4lM~a&jZmY4Tg}8VweZzM`|`xQ4PXsr!NaUzG7p?zAU8 zC5@!)By}M=m!wZlhc>0)GdzkZX_pg66F5NGZAp8`uOn@y?m1>A`OtP5wy@{VqHZDi1+*`%bI5nX3jA%vd*s2H zHs689Pf5SpIEl5mY3f8!my-NN%E>w%@N;E2+T(7V=Z*MJR@}rk%D%<#Xt#)bYx46+ zgNZ$v_(R793^Q5ppWoAPJdJde#dy;1Hl9pf9QjwU zugM2u0pc%_)3p9s$yD?vYJ`5Ip;TtawWyAAkRQb7Bywxb0Z&3(=9kjeF2I3;C>gl+?>!3iClI_L*3pr8lx?Uulza?n3aJ-$pOb2lQWM`q z9Tm91I+Ok1pJk|fN%?EsPU)Wi)$m(Exehb`WExPANW;dq!=J5DTx2YH7padebJMmn zX&~oyqh6~p9d+N3Uq?D^+nu4j6=^a}W~m*=S61aC_5S~jg8TM_Nx0ND2qf>eS4ho$~#Y$2^8>`{hq^hLK_5xeDv7yBIh*RKBTupm_+)AwD4CxeQU)w=dqHZ}U z8|61ht;s(y*YG$`$h5N!o8dX)5;ST_qb8(-BppMjbCa(^zNIc4f*3WabD6`@;7Mn0ev`MM}6YKqBpnFZL2tmt>22)i+ ziBv8mmA0|UTImmt8FZSIx-Phy`j0=`$B1)WFucD8EI0 zRnjBsE9q-=3xyMHN6Br&Zz%hC+@$Uy?apIUQYiUPkFm7vMp-d?PJQyfk)9JL&@d}$ zfjy@MW!vnvdZH&El@q8ONor&p{YS+l%73+S7xFqPk|xkWb6jQXj@gTjz;7wPY&-vo zypEzazGp)3|0qk@SQC5nA7-3toLrfL2IQ+_4Cy)-$W1Ctz6MFhecRb%>k-atOR7Se zZg1!~b#ux8M9QZ++)h~tX%lHAX$EDRNZ)Dy?K6ElC#Z-dwI*K1i37-&C+P^MaV?W| zR^WJ>|Bv!wHh+fv2U2=_jxYJWfEpI;Ml%{-Ghhs zk99ld1gA^ft>L-1r?`~d*%VVaHqB_Aff$Omrp|4II&% zkqLdaxq=gJY;&bdtgzknGBjZMnQdpMo*i>0@yxa}Th8o1vokUJtgDeLVM0?^=7f#s HTm%0f=fhej delta 22106 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, 2008 -# Stoyan Zhekov , 2008 -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:22:53+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:42:55+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: out-statusnet\n" @@ -30,7 +24,8 @@ msgstr " Търсене на \"%s\" в потока" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." +msgid "" +" except this private data: password, email address, IM address, phone number." msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." #: ../actions/showstream.php:400 ../lib/stream.php:109 @@ -53,8 +48,60 @@ msgstr "%1$s ви кани да ползвате заедно %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s ви кани да се присъедините към %2$s (%3$s).\n\n%2$s е услуга за микроблогване, чрез която лесно поддържате връзка с хората, които познавате или които са ви интересни.\n\nСъщо така можете да публикувате кратки новини за себе си, свои размисли и да ги обсъждате в мрежата с хора, които ви познават. Това също е и добър начин за запознаване с нови хора, които споделят интересите ви.\n\n%1$s ви казва:\n\n%4$s\n\nМожете да видите профила на %1$s в %2$s тук:\n\n%5$s\n\nАко искате да опитате услугата на сайта, проследете препратката по-долу, за да приемете поканата.\n\n%6$s\n\nАко не желаете, пропуснете това писмо. Благодарим ви за търпението и отделеното време.\n\nИскрено ваши, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s ви кани да се присъедините към %2$s (%3$s).\n" +"\n" +"%2$s е услуга за микроблогване, чрез която лесно поддържате връзка с хората, " +"които познавате или които са ви интересни.\n" +"\n" +"Също така можете да публикувате кратки новини за себе си, свои размисли и да " +"ги обсъждате в мрежата с хора, които ви познават. Това също е и добър начин " +"за запознаване с нови хора, които споделят интересите ви.\n" +"\n" +"%1$s ви казва:\n" +"\n" +"%4$s\n" +"\n" +"Можете да видите профила на %1$s в %2$s тук:\n" +"\n" +"%5$s\n" +"\n" +"Ако искате да опитате услугата на сайта, проследете препратката по-долу, за " +"да приемете поканата.\n" +"\n" +"%6$s\n" +"\n" +"Ако не желаете, пропуснете това писмо. Благодарим ви за търпението и " +"отделеното време.\n" +"\n" +"Искрено ваши, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -64,8 +111,20 @@ msgstr "%1$s вече получава бележките ви в %2$s." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s вече получава бележките ви в %2$s.\n\n %3$s\n\nС уважение,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s вече получава бележките ви в %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"С уважение,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -131,16 +190,32 @@ msgstr "Състояние на %s" msgid "%s timeline" msgstr "Поток на %s" +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "" + #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Трябва да получите веднага електронно писмо с указания за потвърждаване адреса на е-пощата ви.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Трябва да получите веднага електронно писмо с указания за потвърждаване " +"адреса на е-пощата ви.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." +"broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -163,7 +238,9 @@ msgstr "От 1 до 64 малки букви или цифри, без пунк #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали. Задължително поле." +msgstr "" +"От 1 до 64 малки букви или цифри, без пунктоация и интервали. Задължително " +"поле." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -184,17 +261,31 @@ msgstr "6 или повече знака. Задължително поле." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения от %s, трябва да го одобрите." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения " +"от %s, трябва да го одобрите." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "На адреса на е-поща, който сте въвели, беше изпратен код за потвърждение. Проверете кутията (или папката за спам) за кода и указанията за използването му." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"На адреса на е-поща, който сте въвели, беше изпратен код за потвърждение. " +"Проверете кутията (или папката за спам) за кода и указанията за използването " +"му." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "На телефонния номер, който сте въвели, беше изпратен код за потвърждение. Проверете съобщенията (или папката за спам) за кода и указанията за използването му." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. " +"Проверете съобщенията (или папката за спам) за кода и указанията за " +"използването му." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -374,8 +465,11 @@ msgstr "Автоматично влизане занапред. Да не се #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Автоматично абониране за всеки, който се абонира за мен (подходящо за ботове)." +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Автоматично абониране за всеки, който се абонира за мен (подходящо за " +"ботове)." #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -394,13 +488,21 @@ msgstr "Аватарът е обновен." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Oчаква се потвърждение на този адрес. Проверете акаунта си в Jabber/GTalk за съобщение с инструкции. (Добавихте ли %s в списъка си там?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Oчаква се потвърждение на този адрес. Проверете акаунта си в Jabber/GTalk за " +"съобщение с инструкции. (Добавихте ли %s в списъка си там?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Очаква се потвърждение за този адрес. Проверете кутията си (или папката за спам) за съобщение с указания." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Очаква се потвърждение за този адрес. Проверете кутията си (или папката за " +"спам) за съобщение с указания." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -537,8 +639,36 @@ msgstr "Кодът за потвърждение не е открит." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Поздравления, %s! И добре дошли в %%%%site.name%%%%! от тук можете да...\n\n* Отидете в [профила си](%s) и да публикувате първата си бележка.\n* Добавите [адрес в Jabber/GTalk](%%%%action.imsettings%%%%), за да изпращате бележки от програмата си за моментни съобщения.\n* [Търсите хора](%%%%action.peoplesearch%%%%), които познавате или с които споделяте общи интереси. \n* Обновите [настройките на профила(%%%%action.profilesettings%%%%) си, за да кажете повече за себе си на другите. \n* Прочетете наличната [документация](%%%%doc.help%%%%) на сайта, за да се запознаете с възможностите му. \n\nБлагодарим, че се включихте в сайта и дано ползването на услугата ви носи само приятни мигове!" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Поздравления, %s! И добре дошли в %%%%site.name%%%%! от тук можете да...\n" +"\n" +"* Отидете в [профила си](%s) и да публикувате първата си бележка.\n" +"* Добавите [адрес в Jabber/GTalk](%%%%action.imsettings%%%%), за да " +"изпращате бележки от програмата си за моментни съобщения.\n" +"* [Търсите хора](%%%%action.peoplesearch%%%%), които познавате или с които " +"споделяте общи интереси. \n" +"* Обновите [настройките на профила(%%%%action.profilesettings%%%%) си, за да " +"кажете повече за себе си на другите. \n" +"* Прочетете наличната [документация](%%%%doc.help%%%%) на сайта, за да се " +"запознаете с възможностите му. \n" +"\n" +"Благодарим, че се включихте в сайта и дано ползването на услугата ви носи " +"само приятни мигове!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -660,6 +790,11 @@ msgstr "Грешка при добавяне на нов абонамент." msgid "Couldn't save profile." msgstr "Грешка при запазване на профила." +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "" + #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 @@ -732,6 +867,12 @@ msgstr "Текущ потвърден адрес на е-поща." msgid "Currently" msgstr "В момента" +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format @@ -934,8 +1075,12 @@ msgid "Find people on this site" msgstr "Търсене на хора в сайта" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "За по-голяма сигурност, моля въведете отново потребителското си име и парола при промяна на настройките." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"За по-голяма сигурност, моля въведете отново потребителското си име и парола " +"при промяна на настройките." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1020,16 +1165,28 @@ msgstr "IM настройки" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си име и парола." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си " +"име и парола." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Ако искате да добавите OpenID към сметката си, въведете го в кутийката отдолу и натиснете \"Добавяне\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Ако искате да добавите OpenID към сметката си, въведете го в кутийката " +"отдолу и натиснете \"Добавяне\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Ако сте забравили или загубили паролата си, може да получите нова на е-пощата, въведена в профила ви." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Ако сте забравили или загубили паролата си, може да получите нова на е-" +"пощата, въведена в профила ви." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1059,8 +1216,12 @@ msgstr "Грешно име или парола." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "На е-пощата, с която сте регистрирани са изпратени инструкции за възстановяване на паролата." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"На е-пощата, с която сте регистрирани са изпратени инструкции за " +"възстановяване на паролата." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1156,8 +1317,14 @@ msgstr "Покани за нови потребители" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Ползва [StatusNet](http://status.net/) версия %s, система за микроблогване, достъпна под [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Ползва [StatusNet](http://status.net/) версия %s, система за микроблогване, " +"достъпна под [GNU Affero General Public License](http://www.fsf.org/" +"licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1167,8 +1334,12 @@ msgstr "Този Jabber ID принадлежи на друг потребите #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Jabber или GTalk адрес, като \"UserName@example.org\". Първо се уверете, че сте добавили %s в списъка си с приятели в IM или GTalk клиента си." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber или GTalk адрес, като \"UserName@example.org\". Първо се уверете, че " +"сте добавили %s в списъка си с приятели в IM или GTalk клиента си." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1235,8 +1406,13 @@ msgstr "Влизане с [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " +"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1281,8 +1457,12 @@ msgstr "Микроблог на %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Мобилен оператор за SMS. Ако знаете оператор, поддържащ SMS от е-поща, който не фигурира тук, пишете ни на адрес %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Мобилен оператор за SMS. Ако знаете оператор, поддържащ SMS от е-поща, който " +"не фигурира тук, пишете ни на адрес %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1378,7 +1558,9 @@ msgstr "Опитайте друг псевдоним, този вече е за #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Псевдонимът може да съдържа само малки букви, числа и никакво разстояние между тях." +msgstr "" +"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние " +"между тях." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1904,8 +2086,13 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Телефонен номер — с код, без пунктоация и без интервали." #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Проверете тези детайли и се уверете, че искате да се абонирате за бележките на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " +"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2088,8 +2275,12 @@ msgid "Remove OpenID" msgstr "Премахване на OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Премахването на единствения OpenID ще направи влизането в системата невъзможно. За да го изтриете, първо добавете друг OpenID." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Премахването на единствения OpenID ще направи влизането в системата " +"невъзможно. За да го изтриете, първо добавете друг OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2185,13 +2376,21 @@ msgstr "Търсене в емисията на потока" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Търсене на бележки в %%site.name%% по съдържанието им. Отделяйте фразите за търсене (трябва да са по-дълги от 3 символа) с интервали." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Търсене на бележки в %%site.name%% по съдържанието им. Отделяйте фразите за " +"търсене (трябва да са по-дълги от 3 символа) с интервали." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Търсене на хора в %%site.name%% по техните име, място или интереси. Отделяйте фразите за " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Търсене на хора в %%site.name%% по техните име, място или интереси. " +"Отделяйте фразите за " #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2226,8 +2425,12 @@ msgstr "Изпращане на бележките по Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Получаване на бележки в SMS. Имайте предвид, че може да има допълнителни такси от оператора." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Получаване на бележки в SMS. Имайте предвид, че може да има допълнителни " +"такси от оператора." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 @@ -2464,13 +2667,23 @@ msgstr "Адресът е премахнат." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Абонаментът е одобрен, но не е зададен callback URL. За да завършите одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Абонаментът е одобрен, но не е зададен callback URL. За да завършите " +"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно абонамента, проверете инструкциите на сайта." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " +"абонамента, проверете инструкциите на сайта." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2496,7 +2709,8 @@ msgstr "Няма хора, чийто бележки четете." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "Тези хора са потребители тук и автоматично сте абонирани за тях:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 @@ -2504,14 +2718,24 @@ msgid "This confirmation code is too old. Please start again." msgstr "Кодът за потвърждение е твърде стар. Започнете процеса отново." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Формата би трябвало да се изпрати автоматично. Ако това не се случи, за да преминете към OpenID доставчика си натиснете бутона за изпращане." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Формата би трябвало да се изпрати автоматично. Ако това не се случи, за да " +"преминете към OpenID доставчика си натиснете бутона за изпращане." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "За първи път влизате в системата като %s, затова трябва да присъединим OpenID към локалния ви профил. Можете да създадете нова сметка или да използвате съществуваща, ако имате такава." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"За първи път влизате в системата като %s, затова трябва да присъединим " +"OpenID към локалния ви профил. Можете да създадете нова сметка или да " +"използвате съществуваща, ако имате такава." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2560,8 +2784,15 @@ msgstr "Не е избран часови пояс" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "За да се абонирате, можете да [влезете](%%action.login%%) или да [регистрирате](%%action.register%%) нова сметка. Ако имате сметка на друга, [подобна услуга за микроблогване](%%doc.openmublog%%), въведете адреса на профила си в нея по-долу." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"За да се абонирате, можете да [влезете](%%action.login%%) или да " +"[регистрирате](%%action.register%%) нова сметка. Ако имате сметка на друга, " +"[подобна услуга за микроблогване](%%doc.openmublog%%), въведете адреса на " +"профила си в нея по-долу." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2615,8 +2846,12 @@ msgid "Unknown version of OMB protocol." msgstr "Непозната версия на протокола OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Освен ако не е указано друго, съдържанието на този сайт принадлежи на създателите му и е достъпно под " +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Освен ако не е указано друго, съдържанието на този сайт принадлежи на " +"създателите му и е достъпно под " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2677,8 +2912,16 @@ msgid "Upload" msgstr "Качване" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Качете нов \"аватар\" (потребителско изображение) тук. Не можете да го промените по-късно, затова се уверете, че е поне приблизително квадратен. Трябва да е с лиценз като самия сайт. Използвайте картинка, която ви принадлежи и искате да споделите." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Качете нов \"аватар\" (потребителско изображение) тук. Не можете да го " +"промените по-късно, затова се уверете, че е поне приблизително квадратен. " +"Трябва да е с лиценз като самия сайт. Използвайте картинка, която ви " +"принадлежи и искате да споделите." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2686,8 +2929,11 @@ msgstr "Качване на нова снимка за профила" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Използвайте това поле, за да поканите приятели и колеги да използват услугата на сайта." +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Използвайте това поле, за да поканите приятели и колеги да използват " +"услугата на сайта." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2780,7 +3026,9 @@ msgid "You already have this OpenID!" msgstr "Вече използвате този OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 @@ -2813,18 +3061,27 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Можете да премахнете OpenID от сметката си, като натиснете бутона \"Премахване\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Можете да премахнете OpenID от сметката си, като натиснете бутона " +"\"Премахване\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%%). Въведете адреса си в настройките по-долу." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%" +"%). Въведете адреса си в настройките по-долу." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." +msgid "" +"You can update your personal profile info here so people know more about you." msgstr "Можете да обновите личния си профил, за да знаят хората повече за вас." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 @@ -2847,6 +3104,19 @@ msgstr "Не можете да се регистрате, ако не сте с msgid "You did not send us that profile" msgstr "Не сте ни изпратили този профил" +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 #: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 @@ -2861,8 +3131,12 @@ msgstr "За да каните хора в %s, трябва да сте влез #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Ще ви уведомим при приемане на покана и записване в сайта. Благодарим ви за увеличаването на общността тук!" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Ще ви уведомим при приемане на покана и записване в сайта. Благодарим ви за " +"увеличаването на общността тук!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2880,8 +3154,12 @@ msgstr "Псевдонимът ви на този сървър или е-пощ #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и същ акаунт. От тук се управляват съответните OpenID." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и " +"същ акаунт. От тук се управляват съответните OpenID." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3077,8 +3355,12 @@ msgstr "Това е входящата ви кутия с лични съобщ #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s използва %2$s (%3$s) и ви кани да се присъедините.\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s използва %2$s (%3$s) и ви кани да се присъедините.\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3120,8 +3402,11 @@ msgstr "Не може да изпращате съобщения до този #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Не може да изпращате съобщения до себе си. По-добре си го кажете на себе си тихичко." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Не може да изпращате съобщения до себе си. По-добре си го кажете на себе си " +"тихичко." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3171,7 +3456,8 @@ msgstr "Това е изходящата ви кутия с лични съоб #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " msgstr "Търсене на хора в %%site.name%% по име, местоположение или интереси. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3195,6 +3481,14 @@ msgstr "Потребител без съответстващ профил" msgid "This confirmation code is too old. " msgstr "Кодът ви за потвърждение е твърде стар. " +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" +msgstr "" + +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " +msgstr "" + #: actions/recoverpassword.php:169 actions/recoverpassword.php:188 msgid "Your nickname on this server, " msgstr "Псевдонимът ви на този сървър, " @@ -3215,9 +3509,20 @@ msgstr "Паролата трябва да е 6 или повече знака." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." msgstr "Поздравления, %s! И добре дошли в %%%%site.name%%%%. " +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " +msgstr "" + +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#, php-format +msgid "To subscribe, you can [login](%%action.login%%)," +msgstr "" + #: actions/showfavorites.php:61 actions/showfavorites.php:145 #: actions/showfavorites.php:147 #, php-format @@ -3303,7 +3608,9 @@ msgstr "Получателят не е открит" #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Не може да изпращате преки съобщения до хора, които не са в списъка ви с приятели." +msgstr "" +"Не може да изпращате преки съобщения до хора, които не са в списъка ви с " +"приятели." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3330,12 +3637,19 @@ msgstr "%s отбеляза бележката ви като любима" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "%1$s току-що отбеляза като любима бележката ви от %2$s.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"%1$s току-що отбеляза като любима бележката ви от %2$s.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и там." +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " +"там." #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3382,8 +3696,12 @@ msgstr "Абониране за приятелите ми от Twitter тук" #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "Потребителското име може да съдържа само цифри, малки и главни букви и добна черта. Може да е най-много 15 знака." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"Потребителското име може да съдържа само цифри, малки и главни букви и добна " +"черта. Може да е най-много 15 знака." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3437,6 +3755,18 @@ msgstr "Грешка при записване настройките за Twitt msgid "Twitter preferences saved." msgstr "Настройките за Twitter са запазени." +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " +msgstr "" + +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " +msgstr "" + +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " +msgstr "" + #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" @@ -3505,7 +3835,8 @@ msgstr "Относно: %s" #: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." +msgstr "" +"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 #: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 @@ -3584,6 +3915,13 @@ msgstr "Грешка при обновяване на бележката с но msgid "User without matching profile in system." msgstr "Потребител без съответстващ профил в системата." +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" @@ -3591,8 +3929,12 @@ msgstr "Ново лично съобщение от %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "%1$s (%2$s) ви изпрати лично съобщение:\n\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"%1$s (%2$s) ви изпрати лично съобщение:\n" +"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -3716,6 +4058,12 @@ msgstr "Имаше проблем със сесията ви в сайта. Мо msgid "Pick a square area of the image to be your avatar" msgstr "Изберете квадратна област от изображението за аватар" +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -3760,7 +4108,7 @@ msgid "Failed to save block information." msgstr "Грешка при записване данните за блокирането." #: actions/confirmaddress.php:159 -#, php-format, fuzzy +#, fuzzy, php-format msgid "The address \"%s\" has been " msgstr "Адресът е премахнат." @@ -3772,6 +4120,18 @@ msgstr "Ще изтриете напълно бележката. " msgid "Add to favorites" msgstr "Добавяне към любимите" +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 #: actions/grouplogo.php:70 actions/newgroup.php:65 @@ -3808,10 +4168,17 @@ msgstr "Няма такава група." msgid "You must be an admin to edit the group" msgstr "За да редактирате групата, трябва да сте й администратор." +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "Псевдонимът може да съдържа само малки букви, числа и никакво разстояние между тях." +msgstr "" +"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние " +"между тях." #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -3842,6 +4209,11 @@ msgstr "Нов адрес на е-поща за публикщуване в %s" msgid "Send me email when someone " msgstr "Изпращане на писмо при ново лично съобщение." +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -3850,7 +4222,23 @@ msgstr "Тази е-поща вече се използва от друг пот #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения от %s, трябва да го одобрите." +msgstr "" +"На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения " +"от %s, трябва да го одобрите." + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" #: actions/facebookhome.php:218 actions/facebookhome.php:223 #: actions/facebookhome.php:217 @@ -3895,16 +4283,22 @@ msgstr "Изпратени са покани до следните хора:" #: actions/facebookinvite.php:96 actions/facebookinvite.php:102 #: actions/facebookinvite.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You have been invited to %s" msgstr "\"Побутване\" от %s" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Емисия с приятелите на %s" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + #: actions/facebookinvite.php:130 actions/facebookinvite.php:143 #: actions/facebookinvite.php:142 #, php-format @@ -3941,6 +4335,11 @@ msgstr "Прeдставка" msgid "A string to prefix notices with." msgstr "Представка за добавяне към бележките." +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + #: actions/facebooksettings.php:147 msgid "Sync preferences" msgstr "Синхронизиране на настройките" @@ -3977,6 +4376,11 @@ msgstr "Избрани потребители" msgid "Featured users, page %d" msgstr "Избрани потребители, страница %d" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + #: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Потребителят е забранил да се абонирате за него." @@ -4005,6 +4409,16 @@ msgstr "Лотого е обновено." msgid "Failed updating logo." msgstr "Неуспешно обновяване на логото." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + #: actions/groupmembers.php:111 msgid "A list of the users in this group." msgstr "Списък с потребителите в тази група." @@ -4020,6 +4434,11 @@ msgstr "Групи" msgid "Groups, page %d" msgstr "Групи, страница %d" +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" @@ -4027,7 +4446,8 @@ msgstr "Създаване на нова група" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " msgstr "Търсене на групи в %%site.name%% по име, местоположение или описание." #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4049,7 +4469,7 @@ msgid "Send me replies through Jabber/GTalk " msgstr "Изпращане на бележките по Jabber/GTalk " #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "Няма код за потвърждение." @@ -4062,7 +4482,7 @@ msgid "You are already a member of that group" msgstr "Вече членувате в тази група." #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Грешка при проследяване — потребителят не е намерен." @@ -4071,6 +4491,10 @@ msgstr "Грешка при проследяване — потребителя msgid "%s joined group %s" msgstr "%s се присъедини към групата %s" +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + #: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "За напуснете група, трябва да сте влезли." @@ -4099,10 +4523,25 @@ msgstr "Грешка при обновяване записа на потреб #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Грешка при проследяване — потребителят не е намерен." +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" + #: actions/newgroup.php:53 msgid "New group" msgstr "Нова група" @@ -4143,6 +4582,11 @@ msgstr "Бележки" msgid "Ajax Error" msgstr "Грешка в Ajax" +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + #: actions/nudge.php:94 msgid "Nudge sent" msgstr "Побутването е изпратено" @@ -4198,18 +4642,36 @@ msgid "Password change" msgstr "Паролата е записана." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Това не е правилен адрес на е-поща." +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "" + +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" + #: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "Данни на профила" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + #: actions/profilesettings.php:144 #, fuzzy msgid "Automatically subscribe to whoever " -msgstr "Автоматично абониране за всеки, който се абонира за мен (подходящо за ботове)." +msgstr "" +"Автоматично абониране за всеки, който се абонира за мен (подходящо за " +"ботове)." #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 @@ -4234,16 +4696,42 @@ msgstr "Общ поток, страница %d" msgid "Could not retrieve public stream." msgstr "Грешка при изтегляне на общия поток" +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Емисия на общия поток" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 +msgid "Sorry, only invited people can register." +msgstr "" + #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза." +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -4279,6 +4767,14 @@ msgstr "освен тези лични данни: парола, е-поща, м msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " msgstr "Поздравления, %s! И добре дошли в %%%%site.name%%%%. " +#: actions/register.php:495 +msgid "(You should receive a message by email " +msgstr "" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" + #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 #, php-format @@ -4290,11 +4786,32 @@ msgstr "Отговори на %s, страница %d" msgid "%s favorite notices, page %d" msgstr "Любими бележки на %s, страница %d" +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "Профил на групата" +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4307,8 +4824,13 @@ msgstr "Профил на групата" msgid "Note" msgstr "Бележки" +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Емисия с бележки на %s" @@ -4319,11 +4841,27 @@ msgstr "Емисия с бележки на %s" msgid "Members" msgstr "Членове" +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" +msgstr "" + #: actions/showgroup.php:370 actions/showgroup.php:350 #: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "Всички членове" +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient " @@ -4374,6 +4912,13 @@ msgstr "Всички абонати" msgid "All groups" msgstr "Всички групи" +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -4413,17 +4958,22 @@ msgid "Subscribed" msgstr "Абониране" #: actions/subscribers.php:50 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscribers" msgstr "Абонати" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Това са хората, които четат бележките на %s." #: actions/subscribers.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people who " msgstr "Това са хората, които четат бележките на %s." @@ -4443,7 +4993,7 @@ msgid "These are the people whose notices " msgstr "Хора, чийто бележки %s чете." #: actions/subscriptions.php:69 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people whose " msgstr "Това са хората, които четат бележките на %s." @@ -4457,6 +5007,11 @@ msgstr "Jabber" msgid "Notices tagged with %s, page %d" msgstr "Бележки с етикет %s, страница %d" +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -4468,7 +5023,7 @@ msgid "No id argument." msgstr "Няма такъв документ." #: actions/tagother.php:65 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Tag %s" msgstr "Етикети" @@ -4477,23 +5032,48 @@ msgstr "Етикети" msgid "Tag user" msgstr "Етикети" +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Имаше проблем със сесията ви в сайта." +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Грешка при запазване на етикетите." +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + #: actions/tagrss.php:35 msgid "No such tag." msgstr "Няма такъв етикет." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Бележки с етикет %s" +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" + +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" + #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." @@ -4502,7 +5082,9 @@ msgstr "Не е открито." #: actions/twittersettings.php:71 #, fuzzy msgid "Add your Twitter account to automatically send " -msgstr "Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и там." +msgstr "" +"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " +"там." #: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" @@ -4517,8 +5099,12 @@ msgstr "Парола за Twitter" msgid "Twitter Friends" msgstr "Приятели от Twitter" +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + #: actions/twittersettings.php:341 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information " msgstr "Грешка при извличане данните на профила \"%s\" от Twitter." @@ -4560,8 +5146,11 @@ msgstr "Грешка при записване на бележката. Непо #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте отново след няколко минути." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " +"отново след няколко минути." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -4583,7 +5172,7 @@ msgid "Other options" msgstr "Други настройки" #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" @@ -4591,6 +5180,14 @@ msgstr "%s (%s)" msgid "Untitled page" msgstr "Неозаглавена страница" +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + #: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Търсене за хора или бележки" @@ -4633,6 +5230,10 @@ msgstr "Помощ" msgid "Site notice" msgstr "Нова бележка" +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -4671,6 +5272,11 @@ msgstr "Блокиране" msgid "Disfavor this notice" msgstr "%s любими бележки" +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -4709,6 +5315,11 @@ msgstr "Етикет" msgid "Choose a tag to narrow list" msgstr "Изберете етикет за конкретизиране" +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + #: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Адрес на страница, блог или профил в друг сайт на групата" @@ -4724,13 +5335,19 @@ msgstr "Опишете групата или темата й в до 140 бук #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Къде се намира групата — град, община, държава и т.н. (ако е приложимо)" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" +"Къде се намира групата — град, община, държава и т.н. (ако е приложимо)" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "Група" +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + #: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" @@ -4785,11 +5402,15 @@ msgstr "Вход или записване с OpenID" #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Здрасти, %s!\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Здрасти, %s!\n" +"\n" #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "%1$s вече получава бележките ви в %2$s." @@ -4805,8 +5426,12 @@ msgstr "Лична страница: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "Биография: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Биография: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -4819,7 +5444,7 @@ msgid "%1$s (%2$s) is wondering what you are up to " msgstr "%1$s (%2$s) се чуди с какво се занимавате напоследък " #: lib/mail.php:555 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s just added your notice from %2$s" msgstr "%1$s току-що отбеляза като любима бележката ви от %2$s." @@ -4893,6 +5518,10 @@ msgstr "(няма)" msgid "Public" msgstr "Общ поток" +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" @@ -4970,17 +5599,17 @@ msgid "Unsubscribe from this user" msgstr "Отписване от този потребител" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Емисия с приятелите на %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Емисия с приятелите на %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Емисия с приятелите на %s" @@ -4990,7 +5619,7 @@ msgid "You and friends" msgstr "%s и приятели" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Можете да качите личен аватар тук." @@ -4999,9 +5628,18 @@ msgstr "Можете да качите личен аватар тук." msgid "Avatar deleted." msgstr "Аватарът е обновен." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "Ще изтриете напълно бележката. Изтриването е невъзвратимо." #: actions/deletenotice.php:127 actions/deletenotice.php:157 @@ -5014,9 +5652,29 @@ msgstr "Имаше проблем със сесията ви в сайта. Мо msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Изпращане на писмо при ново лично съобщение." +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format, fuzzy -msgid "You can upload a logo image for your group. The maximum file size is %s." +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "Може да качите лого за групата ви." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5025,14 +5683,28 @@ msgid "Pick a square area of the image to be the logo." msgstr "Изберете квадратна област от изображението за аватар" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Микроблог на %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Търсене на хора в %%site.name%% по техните име, място или интереси. Отделяйте фразите за " +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Търсене на хора в %%site.name%% по техните име, място или интереси. " +"Отделяйте фразите за " + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" #: actions/newmessage.php:102 #, fuzzy @@ -5040,14 +5712,18 @@ msgid "Only logged-in users can send direct messages." msgstr "Грешка при изпращане на прякото съобщение" #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr " Търсене на \"%s\" в потока" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "За по-голяма сигурност, моля въведете отново потребителското си име и парола при промяна на настройките." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"За по-голяма сигурност, моля въведете отново потребителското си име и парола " +"при промяна на настройките." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5064,9 +5740,32 @@ msgstr "Емисия на общия поток" msgid "Public Stream Feed (Atom)" msgstr "Емисия на общия поток" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." #: actions/showgroup.php:378 actions/showgroup.php:424 @@ -5075,33 +5774,44 @@ msgstr " освен тези лични данни: парола, е-поща, msgid "Created" msgstr "Създаване" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Профил на групата" #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "Профил на " #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Емисия с бележки на %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Емисия с бележки на %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Емисия с бележки на %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Изходяща кутия за %s" @@ -5117,10 +5827,48 @@ msgstr "Аватар" msgid "Edit profile settings" msgstr "Настройки на профила" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "На телефонния номер, който сте въвели, беше изпратен код за потвърждение. Проверете съобщенията (или папката за спам) за кода и указанията за използването му." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"На телефонния номер, който сте въвели, беше изпратен код за потвърждение. " +"Проверете съобщенията (или папката за спам) за кода и указанията за " +"използването му." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5137,18 +5885,27 @@ msgstr "Няма такъв потребител" #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и там." +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Добавяне на профила ви в Twitter за автоматично препращане на бележките ви и " +"там." #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Грешка при извличане данните на профила \"%s\" от Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Проверете тези детайли и се уверете, че искате да се абонирате за бележките на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " +"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5157,8 +5914,12 @@ msgstr "Търсене за хора или бележки" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте отново след няколко минути." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " +"отново след няколко минути." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5170,21 +5931,220 @@ msgstr "Свързване към моментни съобщения, SMS, Twit msgid "Badge" msgstr "Побутване" +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си име и парола." +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Ако вече имате сметка, за да я свържете с OpenID влезте с потребителско си " +"име и парола." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s вече получава бележките ви в %2$s.\n\n %3$s\n\nС уважение,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s вече получава бележките ви в %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"С уважение,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Търсене" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5201,12 +6161,12 @@ msgid "Block this user from this group" msgstr "Списък с потребителите в тази група." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Потребителски профил" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s и приятели, страница %d" @@ -5230,26 +6190,56 @@ msgstr "Код за потвърждение" msgid "Do not delete this notice" msgstr "Грешка при изтриване на бележката." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Неправилен етикет: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Опитайте друг псевдоним, този вече е зает." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Грешка при отбелязване като любима." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5260,6 +6250,14 @@ msgstr "Нова бележка" msgid "No notice" msgstr "Нова бележка" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5271,6 +6269,10 @@ msgstr "Неправилен псевдоним." msgid "No group specified." msgstr "Не е указан профил." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5287,6 +6289,18 @@ msgstr "Не членувате в тази група." msgid "Block user from group" msgstr "Блокиране на потребителя" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5297,6 +6311,12 @@ msgstr "За да създавате група, трябва да сте вле msgid "Group design" msgstr "Групи" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5324,41 +6344,234 @@ msgstr "Настройките са запазени." msgid "Make user an admin of the group" msgstr "За да редактирате групата, трябва да сте й администратор." +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Няма резултати" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Потребителят ви е блокирал." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Съобщение" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Грешка при запазване на профила." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и същ акаунт. От тук се управляват съответните OpenID." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) ви позволява влизане в различни сайтове с един и " +"същ акаунт. От тук се управляват съответните OpenID." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Настройки на профила" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Ако сте забравили или загубили паролата си, може да получите нова на е-пощата, въведена в профила ви." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Ако сте забравили или загубили паролата си, може да получите нова на е-" +"пощата, въведена в профила ви." #: actions/recoverpassword.php:158 #, fuzzy @@ -5380,54 +6593,172 @@ msgstr "Грешка в кода за потвърждение." msgid "Subscribe to a remote user" msgstr "Абониране за този потребител" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "Любими бележки на %s, страница %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Емисия с бележки на %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Емисия с бележки на %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Емисия с бележки на %s" +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Няма такъв потребител" #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Бележки с етикет %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Емисия с бележки на %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s вече получава бележките ви в %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Емисия с бележки на %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Емисия с бележки на %s" @@ -5458,16 +6789,20 @@ msgid "Could not find target user." msgstr "Не са открити бележки." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Реплики на %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5483,41 +6818,127 @@ msgstr "Абонаменти на %s" msgid "Profile design" msgstr "Настройки на профила" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Не членувате в тази група." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблем при записване на бележката." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Съобщение до %1$s в %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Потребителски профил" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Профил" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Качване" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Смяна на паролата" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5533,21 +6954,127 @@ msgstr "Търсене" msgid "Links" msgstr "Списък" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Блокиране" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Блокиране на потребителя" #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "Добавяне или редактиране логото на %s" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5563,11 +7090,26 @@ msgstr "Потребител" msgid "Search help" msgstr "Търсене" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "Адресът на личната страница не е правилен URL." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5575,12 +7117,12 @@ msgid "No such page" msgstr "Няма такъв етикет." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Преки съобщения до %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Твърде дълго. Може да е най-много 140 знака." @@ -5589,8 +7131,12 @@ msgstr "Твърде дълго. Може да е най-много 140 знак msgid "Could not unfollow user: User not found." msgstr "Грешка при проследяване — потребителят не е намерен." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Автобиографията е твърде дълга (до 140 символа)." @@ -5600,7 +7146,7 @@ msgid "You are already a member of that group." msgstr "Вече членувате в тази група." #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Грешка при проследяване — потребителят не е намерен." @@ -5610,31 +7156,45 @@ msgid "You are not a member of this group." msgstr "Не членувате в тази група." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Грешка при проследяване — потребителят не е намерен." #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "Групи на %s" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "Групи, в които участва %s" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Търсене на групи в сайта" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Аватарът е обновен." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -5646,12 +7206,12 @@ msgid "Post to " msgstr "Снимка" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Автобиографията е твърде дълга (до 140 символа)." #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -5686,7 +7246,7 @@ msgid "Cannot read file." msgstr "Няма такава бележка." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." @@ -5696,17 +7256,40 @@ msgid "IM is not available." msgstr "Страницата не е достъпна във вида медия, който приемате" #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " +"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Бележки от %1$s в %2$s." #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Всички бележки, намерени с \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Свързване" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Опишете себе си и интересите си в до 140 букви" @@ -5716,49 +7299,78 @@ msgid "Describe yourself and your interests" msgstr "Опишете себе си и интересите си в до 140 букви" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Автобиографията е твърде дълга (до 140 символа)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Неправилен адрес на профил (няма YADIS документ)." +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Не е получен token за одобрение." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Емисия с бележки на %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Емисия с бележки на %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Емисия с бележки на %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Съобщение до %1$s в %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Емисия с любимите бележки на %s" +msgstr "Емисия с приятелите на %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Емисия с любимите бележки на %s" +msgstr "Емисия с приятелите на %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Емисия с любимите бележки на %s" +msgstr "Емисия с приятелите на %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "Емисия с бележки на %s" +msgstr "Изходяща кутия за %s" #: actions/shownotice.php:90 #, fuzzy @@ -5771,32 +7383,77 @@ msgid "SMS is not available." msgstr "Страницата не е достъпна във вида медия, който приемате" #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Емисия с бележки на %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Проверете тези детайли и се уверете, че искате да се абонирате за бележките на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " +"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Абонаментът е одобрен, но не е зададен callback URL. За да завършите одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Абонаментът е одобрен, но не е зададен callback URL. За да завършите " +"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно абонамента, проверете инструкциите на сайта." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " +"абонамента, проверете инструкциите на сайта." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Грешка при четене адреса на аватара '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Грешен вид изображение за '%s'" @@ -5811,27 +7468,37 @@ msgid "Site content license" msgstr "Лиценз на програмата StatusNet" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Грешка при обновяване на потребител с потвърден email адрес." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Побутването е изпратено" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." +msgstr "" +"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." +msgstr "" +"Съобщението е твърде дълго. Най-много може да е 140 знака, а сте въвели %d." #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Отговаряне на тази бележка" @@ -5840,11 +7507,54 @@ msgstr "Отговаряне на тази бележка" msgid "Error saving notice." msgstr "Проблем при записване на бележката." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Няма код за потвърждение." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -5861,32 +7571,76 @@ msgid "Describe the group or topic" msgstr "Опишете групата или темата й в до 140 букви" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Опишете групата или темата й в до 140 букви" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Емисия с бележки на %s" +msgstr "Нова бележка" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s отбеляза бележката ви като любима" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " от " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Грешка при изтриване на любима бележка." +msgstr "Грешка при изтегляне на общия поток" #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Изтриване на бележката" - diff --git a/locale/ca/LC_MESSAGES/statusnet.mo b/locale/ca/LC_MESSAGES/statusnet.mo index 9ca4379fcdd009e6c2d49bce5b092a6383788549..3d48e40e3a1ec60e062596cb0d83fdee5be28452 100644 GIT binary patch delta 23700 zcmZYH1$>p&1OM^ove6seY~yaklCd#1x_fkYGg=TBA$95Q4kZO81Yv}L5+X ziy%q~2>;Lbp2P3Y>;HdVufzM)bDopWy&LEk>(Y!{pT=`7o9_aLtE#W#1Yn5}$4N=; zICZNj*KzW+ah%+k7c*ll7RJih2)koF+>L24ZCl65fSIra=EaOyAEU4}hT|j*avYDd zl}G_H&e(##FphM-c8=3H6*ppD(yKZ+PBiYtkMTY>z)2lVhkn5-r2j)bxKby_$%%t7 zEl$HQoM+QtV=kWWd`Bb;1(%V*I}b1uX6|f89)#IRCtv_3qUv|I`9p2~bWBJ7dRx8? z)$v1^6|Z7?e1zHXUv%?)$FB?1j75VQcjlIi3EILrlve!Qj5k1}^asQG>r>QM`|OaGrkV zfkCKrVbp^nF%lC{9q5d{*v*#rMlIoB%#34En{O@_!cS2%a16D_JP(KzCi2!=_(Rjv zI;aZ6QA;rsBXA9B>P}-We1&Q_TYty9lqFG1&<4YCvCaP$Ym>f>r7&iIw_T6ZlZd8v z6lTT=)&OIjP^W#j^05_m!a4YIL zSFj+@cU}|8itfQ|3@nbip($pykGgR$mc$F#6tfI9ujnMy{a+0;GjRabfs2?M zpQ28M|8P?;*cv{Z`S+tBmW&vzfNt!En&R1*4>zD1I&9NdQJeM!x-n=3>x>mqGuRFD z<76z3pW5BZ$Rbeb8mN(U zMLlQ|2H|>C`B7B)ZPXH^A7hSfAS&%CK}5%^7HR|^qBh$Mn_hzjNFP9L${VOtaR)Us zFVVYs$C~`&sJ&1fbRYlEcGU^Sv4nuYRw-M2%xP+RLC#Z(gO)&X| zP-|5IH8agI9ri(ud=P5QC!v<|V^n*GFa)n+B03Yzajb(HNL$Rq^POHq)T42z2h76M zxE57$BkKI_M(>)UPQ`81UU5w_=Q#@Xz;dYk4ycY#MK`X-TzJTO2|XI=VewCB45pr9%JZV~W32U2Gu8(+;89bUe;*=KZN^Mn zVJT`)Y(kCTG-_sUqh{tcs-aX<&7R4D=|~5mW-1hQUjpjYTpzWGyQ2m+$+}@G^RJPd zB11jBiEd0a%~%jsUJdoiY=fGq-k1@mq8_vm^`Onx?=h0}4eW@1(|I_4fZ7{Bqc1-4 z5J^wu2^PUO=!b=8&{Y8=~s9#|+rp<`1^{<1r2Sb5I>yjGBS1HhmT~ zFwcD=8kuXR=}}hHROUi8T)^f>*!*IsV_6E-foABBozaaSqB=eYb^mdjhUM!pc$ zfrB^}FQYbD`-NsnyI>*GeNZzv2R&(tEV3CZP;0dowFkChP27WpG1Ve7YCX-4;}j-Al{^3Zq6ChdHnehG7HL z3u!23$N8wW{v5UGc40Vvi{IN)G#%9#};71I` zE2t%TgX&0zPs|8&qtYR$dd09LHp2Wk1+|20Q8Td_bviC!HS}3-I_jxKL~GF=wPq7h z=XWt`ZI_|edKGF$wxE{c7;41VFc2T2M((%5bT|anUbM9mYN;Bd?(2put;ZQmBp(?g zQM-IGYQ*bNQ?vs$(krN$xraJ-|JeLAE6wK0j=Dd=rfZ@)+zZvQ@u($PYE8l1I{zn$ zXlibvdYpNcnc`qnN1{+uSqk;w%BT@HwGKdyXf|quD^cxiN6p+3>p9e3_zl(3$C#Pt zJE>Ni5oW_&qzj;?IKk%Ev9?4tm}DJ@QKZM9IbsWt*N8H&HB%Fanwlu|#qy~0Uj?x=eGZ2m;l)UQJg z=qpT($512x!RBA`5YZ<412wYesNJ6SbMvc|92i8pDwe>`7>SE84IVZ0m-IuOx=`&dVy9yA@bTMuG7JcAm+MVo&eH6ssE9eHijJ{!!N zGAn9e;i!(pqn=X<)m}pk)%kB_3&vnD1#_?nrl6+o66%fi2daUz8_iVbMm;zh^=ghs zb*P@Tjm__gdf*sTdsDG6F2gXL|ARyl$heOhVelsNDHV#bq+4JZPC+)Vv(4J#3yvJ= z*O(SJl28XzP@C@%7RM{74rJb9W+V@42?|M`@028>ktCuTYJ?h5E1T|*+FT!@8)su7 z+-l3uV@A@~FcaQK9p`^hBliE&bSwzfk!aNON}@+SsX#=>s1fQI^|nsNETq?BX55Jy z*%6G!>&O~9nYNm9oq*~{C2L(&yDd=z8-Q7G80z#)+sgc_M;mR$?WmETM)mME>Vbcv z8cws#JTMz-la@g>*bh~IG-?k_LcPEiU?gL@}4Qozs~=7GURI10}r4Y zx`>+kJE*b?o6WBWOl!tXEv|HD`;vD^C# z50BH0h|c3u)PoOTE4*g&OYJdVLffNeY8`3~kD~U@8Pw*yh*5aYmgm}QIv9i+U@6od zs)rhAD=e(@-=0WbGRC8J<#N=6_F)*_K#ef{*XGq*8nr}8s0a4J7+iuG@HnbNKVv?; zg?Uil+0#Q_RDMA$%=4WJM6?;Yq8b>En#zf&9xuY&xCXU(_M$fDS=7j`qv}6F)l0q4 z9OFRLW-Np1a0OHcs-tGE0eUnQEs4~}c32NLp?dfd^?;oFO*#TqzdEX8i5P*+u^^5? z&DdHjf~Rf%Q;Z{>_kbBdJuE=F%K_$JH;yAio8~jjkH=90qQYoZ>I zgvD{XE#Hrkq_0^sd}}_26HqU#TBxNQf<^JOZ#|~qXIsJdkST~m%|IuN#}TMC+=go4 z1ge2o$cb~pzvD9=Z=gD`5Z$-~HFM`}x!-A~pL8)yheMG~?{UTu zNkztDRF9Y86+DS*VEqr~-F+SPUTAcN-wEPI%!to1E&7}_$1bBaKV~66(pnC+g!ND} z*Ug*n;oB+^t@S)_1|vlsqy3l_f5B+Hhd!9+NAvL-fU%@wFaSHFrq+X+v7J~PpJ6D5 z|73m`ZDgH=-t&KoNFgfxgBnSmbLPQr)bT5h>QGHo&pV(xJRCFOLR3fBq8oRimh=Lu zW7U5)Gu0V&UtjdYDd@>TWFZkfU?XP7L#Va<1^w|EYASutn+N8^VA6%qjWtkvqC4sV zGqEtP$0+;(RsS`rqd~uz7gEeGtp9B?N|K=)gD#i{l}4>?B5Ep|qh@F!x^XXRGhIPF zxbQ{uS1)zZm-J-ROwK@!bOEZ~YE;LLq1u0Rk@e3>6<160Q{Ts50EA2ugl8=K)u)J!}>ZAwqzH8b_qF@lVa zs9ik`)#GohzoL4a`np-uKvV;X7>@%`9sV43Jg;K~jJ#pqh`q2e>4m5P+{4j4-^u=~ zd8N+BdK7$zk(li_v&I!rYd;Aq<0e$c9-$ z(=eRpJD(9LL%~^81Ae#68pfg0ZBZi}XVbe;Bfo(kVY=Jqfn!ni)?f*|h+3jdcg&K6 zVlL7pF$n8pMV{|`Kt!A93(SUlP*ZsdN22dt^PA7HsN?g-n&qCUAA;Ic@u=gQh}r|~ zZFyhRePd9^c%DsviXQFeokY^$cNmH%P`mga^u>Vtrh~zlfpj$L_>@L%+Ul4No1)rl zhpDkQYQ+69Cr(DyTaFuD%=~@kUn6ev!1TBqYU&1~)@-A-6oe*GVR6^H5H7!P4#(j(s**Pu4pF^s~OsP;o0mv;th zpa#|j{X9f^646u*MopE+IuZRz&%oTc%$kCl@)MX9Z((VCj;%1(Wt@iEGqv)N#CeGdI+x=ce(vyuUVIN5-cVT*C=CF0ISEDbuGjOH&cklV1z< z!f9;N?NOVzhjlsX^qjNhH&Fw5h#Eke^k&JTumI@_9-Gk~^?(mipHjn6BVUd>PDfBv z_a{bTTn01c9Z(&bigCCQb>DF;kAGu+jLB&7>!S8VGAiFQf=E6hi&0aQf+g{LTj8zE z&+li}wis%yTcX|r<4_}Bh#Jv4)D#~;B&8>zbx6z zxeQ13tOn{7bh6IEDx|+bJ;=%K@_y9{!$gubuq@6&?fO%w2mNIY$YBOp3w3`_j8=WA z^M8Pdj>jX^gA3#|ySpB0O-G^jz&6w-x`>*ox2UBkk;^Py2UJG}qB^n#HB&#L29P?p zS=w5t85xZpZIZ)8)H9zvW@M45H&<;`PY2udTI-M2x2RWgR9-W}_Erz7qbpGzIAZ-5 zwYj7685`!~{Oduk8|)=qCS`HBF$)`!}Sa)_$nt zxC?cP4x#qKE7WNT4Kka!47y3T^$^huVx)Bes;6I|UXfp+_QWaFl)geuVQ>L6vg%ll zbT9PI9O{_u#6UcX`b@cv+Vy{;I+Dh1j;kjx5lvBP)KauZZN_P+O|utuuHT?W6clW1 zjyf$fQ5{-u)2C1ax{LbMb3#l<3ZObr9yKG)F+iVnV{L^Mw!$~4hR>sx;4!L$ISQJF zN~0QXfyy6@s<#Zabo8XCY{q7hw5k} z)SCCfk+|L(8frSU7PaQzpf=-osAG5r^{Vy>Gp8mydjI|}kIjfi9k)2tF{_4}%0$$S zEl~~ju;t09jt{fWL(Rk{)XW@0&DdpBdw-&4_#f0~!mBXOzY0=^n+In^ozDQ&18bnx zv^nZc*a!8%m8ea(8&&@*>inmTaC!f2Xff3JUx`id7;19|M!LK|2PC5Q(6~sC%b7=H zH5oD?%5>y7Y6O>2o9rK~jCqQhFBq*+OR*94;3KG|duY>s(dHDDz~1C{MSUusL3R8- z>QrU&6f^JkXjG4zp&mF2wX4@ykDzY6hkE7u$Cy`hMbu37MLl2?>OHX-IbO~_)HkKe zSQ`Ce%@Wi=wd1KzM8{+_>O*D$?!&K9n`n4(^F?ATYU&T*X1s{nE0g0)y(Jh;dL?RY ze?aY(i>P|HPZ+8){GdjXEXi z;>{k&kEKXgM=i-H+==U~?Gntc&r#AmCoiVa`Hv)`87PjCSQE8215q6Wggf8waF%-I=me<;`69oe-rgSd4SqmPnG8Rj(=&hnR1~TjI}1CrgRr- z(mf7?M)SlRmTGJb-sZ3SL<+w2t_29aw$%!}=fUyyvT8rn&^`{@SRS>x3#FhMKAQsE%(# zH(s{+p4UXY4OKOkKuuMB)GN0q>R5h)KDfn}r&v#;Hs3weDN0|>%t#PsCtU`0e|=PY z9Z^$1-;{fteJ0}kh+6yGs9o<@-ONN;)J$}<&POfDx2UChh# zM0Kbh>c!T{E9b8V5q)a)vra@+{KUG|df0jqHDiBT)7CWUU~5@xGgLeMtmCYUP@8ij z2Jn1m9}#unGV1*QjoLi%wMpv?Wpj$6!f3fSRHgsI`5I>Og@+Go>X_Us9{1I@%DmNe80d8w*fVzs{z& zqdIaJbsR6D+RIXh^RJ$V)iDo@MIDn;sI{$+8eu!suI`80Ba=}LZbo(F5USp3)Q8Ru zjKv42_JZo#k7F!Nx+`iEF0bn`k)vd&;@_x|q^oB>EFw@3E{1Bj7HVWoZGLCe0EVMF zFdp?8un>#mA*_tg&=*V9H$U8#x6beoQID=-3g&KLJYn@TG#?&ujm#RBMNN5Q)H{9< zs^Lwjj%`JCct2`D7f?(25H+JuQSSra#%AU`Aw=|IDQZnb?Sby78&{xiT!(6S2Wm5& zw&`1_k-tIJ&(g$nI5(;T1+4MbI@V6ed&c7oA)Or-w zZBR4u0qPAp8}-1Ys3rIk^`UkZwO8)j^0%lZ%h^numGc)wL=6 zn2dg{T;Bg2Zw#vZD5|_(Ytv9iRJyxO4@12##-PskD(h}re%6*>K)uLbwC4Ql=))YANg8dE{tdFk9w)r3nVN>Ekq<=ma45#%MAXOa9@OqWhdSS{Q5_0T zGQSOLhI+G2MNRqV7=}ktd*!js&)?0oQ`RfzuL}`Xn1*F>2gd3K)DjfzZfNJs2N&@9!=3+BHG1<97$OIiI0kRK7z^eje0$4@G@{ zsER62LLJkOP_OV$Q15{hRD0(=L^S2MQ1AAjk4!@$sAEczDWHS!Cn0Y0_){^Q8!`A#SiRjh`ZiT0QW z2ckCNbktO@!1A~cb=+R#2rM$*O#K?veLtX<>@I5Nd?uJp8;N?)lt#VSTA;^GWCoE! zxY_y>YS+F%ZOVX&=Ci?#8Az8zy)UYuW@?1>SJWw}G0E5&HAACNGc*_VhW!dPBTpuA z{uRkO*&K&x)Do0Ob)YxuL96 z)^eJ0+%z_aj=^R!V{mi%x0{HGe{3Yt(nhk(@?OrBWlmAKz#??ZPO=EujpIY z1~bhuo3R&aPYgrtp#?Y&JwMqA*RE2s25T<>vHtf`9DuY-(D}HUWpITA79!0^z+Sw^PwJG1l3>+y0J8Bsam5R zI2c`cgpi6Syu11l$?La0Il-(x$!+q7r`--@(c7&~zhtd8X@~e=ZiNgrG3ivYq zyWFImT8>J;db9ahq(TYO!KCxr$`7eGiTF4g98S1S*)OPTA@(M$qmDM2E?yDN6Y776 z4@}no{+vkNOthcMJOBU7CPL-1w$TJ!YU62aCsg%k^0eXJT{VdC-ud7433Wa1)z4+y z2*Iz&zk)tIJSXuHn(CIeLT)m0*@o)icJhncGPS;&aP+;jAMr}${f?1@VT4>XT#;~z z`#+*gS3LQ9P1Nz{8T|+yDc?c9Cxysj!X#Uv7V#rg$W0+9(5X+DM*6BPuS@<$@>-BS zM*RIN74?o&c7x2jgv-S9(3um&2U7P3Y)D>4>gn>+TRJTntH>Bkg;G@3HH6TE{6EO= zOxQ|#qrGW2KBi39Ih$Aiy^gFlMb2CDT+|DsPKvF!%=(J_sl>~;>gZpi=wGn#eI1M9 zKKzzOaudEMo`p_5M_oS=>QLvJO}mKe;`^kNZr?5T335<1o$ZCMRlcRIEr>?gdX z{&woPh>su?r0!!i#1%_fOA~b>$$v^nBz!<br z3K36Z?(sOjL`qTN|Gmyr@d9OoDR5K%`+F5a>BM@j_@*cKMA`D3uHO|9pwP3_cf<}7UF#G@&1#s`IPhR&gr1@UyQ=>gq?&Qgw^Ef>W=lWB6+&1 z;&bxq+j8XAp@1Kk(Z4M z!8DXWSVmqLVIZL>`Bm-ByQo)~@|)!6BxEHtAq1;Yt|gTHLHvCXrs6W5hOK0g6?uLi_R5YfOI<2g$Vtrqw64kOxn|$#62o>A?T`PN4}d1`d3w75NZ=jn_|a@ zcv)@?v1zf*HmZ1e%5?pK8^|9{{qdyR6aR?#``0SH*7a2_oQEE_B>`0YhWL*(a1sY| zQ)lw@m9Hjwb%?(q{xczhbfoQYInufYQT{3UBkaQtTBFDxN&HK^LcN8=z5iRc)l@F! zy_H|t63C}yX!EVdy1H=!s&moJTWAwH0J z37e<<&xv27jmpG(6X&M@CzQ0VF5XYLxpsK`=EP}cOY{SSuCbJLC;vYFLRoR*ImypL z{26v2Jr5gFzK{4~^557t$aXT37ljkayF)x5^-dAqT?zW)SeW6QC37B?N)t-h22OE< zuGxeD>MSKc!j`R~{;$L{*eUT=u1ee(K$u3n6ZO*3=ta_P3A*(2TN-=+T^!-fCEw=V#8lMnWAoFI zPVXVZO$Z@$wFPcFsu?_7*D@*&!)jQLFqHhPgo3u-Z`>P2XyC1F{urnFWRZotiMk*1vB3fU@@F51^i|!sIt4JS6_NzQy06Ac%&ZQfUmKJ?XuKOH{al=g5mD zBy&?n+vpq8x<*m1D~T}2#`oB=BBT!yA4}O=LQTSQ@&@5k!dA-WYcou@Hztr7Pv}89 zp2E~TtOhF#Mcnl)q*-FZD(qmEXO;k#1B$$4COm)yTeHrA*8kSdfNNukT+S| zH;#;sm~1PEGK34{kD}81*Blam6AsgO0O1XFE@C6{W)jX5l1XnvT@?t=XyYGTK$uI} zeLPBD2JZD#<_}%JQ?Qcor%m6$0;K<=VsBH$`G&k5q)*s7Ikb(q@=-6D{6i+`tfBk` zdB5S8mu~e2`F_MlVH9Q0$#bwFAvIwc$tskcBL15A3QV$X zy+D2|?flB`)V$YO68lZm$!06rq?3soTa))8VFj5F^q}{ya-@GDj3#dsp)esk_f%lS z3vl#%?fKYyACUI}@uhk-=_*3T=eFWiZaPigM#7KeWh0%Lu#j{=(i^xZhWK(^iMlcq zkE4z*e}nh8{EAklBL%rHHR`HMy|;vw+~Xa85tHxar_y(19;GmryspF_lBa8wCfw z$~qFl$$LrqH1)0%&rF`K{5*V-y;te#_Flzxt*5M~&2w|lG}7N;DA>K@?P{pbME_+Z&INudB8-4+fen=X;xXn)?5dcbQO`y#6-7 z5$$au?-SDg)LBCKfbbXTzPOjLM(h6r^7p1CTu*Ap_=5|XGi z6?Gk_(h$NJ;*AMY2!|vbOb*mc_dzC3SUo>o>q%c%VD1ag!$Q*yxyWr*YDU zeR?JhbpL;)#iL_VvZVy3Pw(!U)F&x9scUpf*w^Lq&3p87n)E|@CiifM6do9o(&_x9 zZ2n#P^-WIdo9s^h=))v;%ALFMt_%t8*tjyW36U`|^NQRLQZl|wiQ;AAOV6u+e~M2+ ziBc(-?r$!#C@zPq^sdcWT?4Z&nwIFwvnZ^f>+zylgLBuH)(I_Z#HyH2BaLi!RJ{HTypd2w=7V delta 23508 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, YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:22:57+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:42:59+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: out-statusnet\n" @@ -28,8 +24,11 @@ msgstr "Cerca \"%s\" al flux" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "excepte les següents dades privades: contrasenya, adreça de correu electrònic, adreça de missatgeria instantània, número de telèfon." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"excepte les següents dades privades: contrasenya, adreça de correu " +"electrònic, adreça de missatgeria instantània, número de telèfon." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -51,8 +50,60 @@ msgstr "%1$s t'ha convidat us ha convidat a unir-te al grup %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s us ha convidat a unir-vos a %2$s (%3$s).\n\n%2$s és un servei de micro-blogging que us permetrà estar al dia amb gent que conegueu i gent que us interessi.\n\nPodeu també compartir notícies sobre vosaltres mateixos, el que penseu, o la vostra vida a la xarxa amb gent que conegueu. És també força bo per conèixer nova gent amb qui compartir els vostres interessos.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s us ha convidat a unir-vos a %2$s (%3$s).\n" +"\n" +"%2$s és un servei de micro-blogging que us permetrà estar al dia amb gent " +"que conegueu i gent que us interessi.\n" +"\n" +"Podeu també compartir notícies sobre vosaltres mateixos, el que penseu, o la " +"vostra vida a la xarxa amb gent que conegueu. És també força bo per conèixer " +"nova gent amb qui compartir els vostres interessos.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -62,8 +113,20 @@ msgstr "%1$s ara està escoltant els teus avisos a %2$s." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s ara està escoltant els teus avisos a %2$s.\n\n %3$s\n\nAtentament,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s ara està escoltant els teus avisos a %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentament,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -139,14 +202,22 @@ msgstr "%s notificacions de tots!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb instruccions sobre com confirmar la teva direcció de correu electrònic.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb " +"instruccions sobre com confirmar la teva direcció de correu electrònic.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%site.broughtbyurl%%)." +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" +"site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -156,7 +227,8 @@ msgstr "**%%site.name%%** és un servei de microblogging." #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Els col·laboradors han de ser citats pel seu nom complet o sobrenom. " +msgstr "" +". Els col·laboradors han de ser citats pel seu nom complet o sobrenom. " #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -164,12 +236,14 @@ msgstr ". Els col·laboradors han de ser citats pel seu nom complet o sobrenom. #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 lletres en minúscula o números, sense signes de puntuació o espais" +msgstr "" +"1-64 lletres en minúscula o números, sense signes de puntuació o espais" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 lletres en minúscula o números, sense puntuacions ni espais. Requerit." +msgstr "" +"1-64 lletres en minúscula o números, sense puntuacions ni espais. Requerit." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -190,17 +264,31 @@ msgstr "6 o més caràcters. Requerit." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que has afegit. Has d'acceptar que %s et pugui enviar missatges." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que " +"has afegit. Has d'acceptar que %s et pugui enviar missatges." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "S'ha enviat un codi de confirmació al correu electrònic que has afegit. Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les instruccions per utilitzar-lo." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"S'ha enviat un codi de confirmació al correu electrònic que has afegit. " +"Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest " +"codi i les instruccions per utilitzar-lo." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les instruccions per utilitzar-lo." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa " +"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les " +"instruccions per utilitzar-lo." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -375,13 +463,18 @@ msgstr "Autoritzar subscripció" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Iniciar sessió automàticament en el futur; no utilitzar en ordinadors compartits!" +msgstr "" +"Iniciar sessió automàticament en el futur; no utilitzar en ordinadors " +"compartits!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Automàticament subscriure's a qualsevol que ho estigui a tu mateix (ideal per no-humans)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Automàticament subscriure's a qualsevol que ho estigui a tu mateix (ideal " +"per no-humans)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -400,13 +493,22 @@ msgstr "Avatar actualitzat." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "A l'espera d'una confirmació per a aquesta adreça. Busca al teu compte Jabber/GTalk un missatge amb més instruccions. (Has afegit a %s a la teva llista d'amics?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"A l'espera d'una confirmació per a aquesta adreça. Busca al teu compte " +"Jabber/GTalk un missatge amb més instruccions. (Has afegit a %s a la teva " +"llista d'amics?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Esperant a confirmar aquesta direcció. Revisa la teva safata d'entrada (i la carpeta de spam!) per al missatge amb les instruccions." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Esperant a confirmar aquesta direcció. Revisa la teva safata d'entrada (i la " +"carpeta de spam!) per al missatge amb les instruccions." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -543,8 +645,34 @@ msgstr "Codi de confirmació no trobat. " #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, podries...\n\n* Anar al teu [teu perfil](%s) i publicar el teu primer missatge.\n* Afegir una [direcció Jabber/GTalk](%%%%action.imsettings%%%%) i així poder publicar les notificacions a través de missatgeria instantània.\n* [Buscar gent](%%%%action.peoplesearch%%%%) que puguis conèixer o que comparteixi els teus interessos. \n* Actualitzar les [preferències del teu perfil](%%%%action.profilesettings%%%%) per explicar als demés més sobre tu. * Llegir els [documents de la xarxa](%%%%doc.help%%%%) per conèixer les característiques del nostre servei. \n\nGràcies per registrar-te i esperem que gaudeixis d'aquest servei." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, podries...\n" +"\n" +"* Anar al teu [teu perfil](%s) i publicar el teu primer missatge.\n" +"* Afegir una [direcció Jabber/GTalk](%%%%action.imsettings%%%%) i així poder " +"publicar les notificacions a través de missatgeria instantània.\n" +"* [Buscar gent](%%%%action.peoplesearch%%%%) que puguis conèixer o que " +"comparteixi els teus interessos. \n" +"* Actualitzar les [preferències del teu perfil](%%%%action.profilesettings%%%" +"%) per explicar als demés més sobre tu. * Llegir els [documents de la xarxa]" +"(%%%%doc.help%%%%) per conèixer les característiques del nostre servei. \n" +"\n" +"Gràcies per registrar-te i esperem que gaudeixis d'aquest servei." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -576,7 +704,8 @@ msgstr "No s'ha pogut crear el formulari OpenID: %s" #: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "No pots subscriure't de nou a aquest usuari: %s ja està a la teva llista." +msgstr "" +"No pots subscriure't de nou a aquest usuari: %s ja està a la teva llista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 @@ -951,8 +1080,12 @@ msgid "Find people on this site" msgstr "Trobar gent en aquest lloc" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i contrasenya abans de canviar la teva configuració." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i " +"contrasenya abans de canviar la teva configuració." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1037,16 +1170,28 @@ msgstr "Configuració de missatgeria instantània" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Si ja tens un compte, inicia una sessió amb el teu nom d'usuari i contrasenya per a connectar-lo al teu OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Si ja tens un compte, inicia una sessió amb el teu nom d'usuari i " +"contrasenya per a connectar-lo al teu OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Si vols afegir un compte OpenID, introdueix-lo en el camp de sota i clica \"Afegir\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Si vols afegir un compte OpenID, introdueix-lo en el camp de sota i clica " +"\"Afegir\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova que t'enviarem al correu electrònic que tinguis posat al teu compte." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova " +"que t'enviarem al correu electrònic que tinguis posat al teu compte." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1076,8 +1221,12 @@ msgstr "Nom d'usuari o contrasenya incorrectes." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "S'han enviat instruccions per a recuperar la teva contrasenya a l'adreça de correu electrònic registrada." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"S'han enviat instruccions per a recuperar la teva contrasenya a l'adreça de " +"correu electrònic registrada." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1173,8 +1322,14 @@ msgstr "Invitar nous usuaris" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Utilitza el software de microblogging [StatusNet](http://status.net), versió %s, disponible sota la [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Utilitza el software de microblogging [StatusNet](http://status.net), versió " +"%s, disponible sota la [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1184,8 +1339,13 @@ msgstr "Aquest Jabber ID ja està sent utilitzat per un altre usuari." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Adreça Jabber o GTalk, per exemple \"NomUsuari@exemple.org\". Primer, assegura't d'afegir a %s a la teva llista d'amics en el teu client de missatgeria instantània o a GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Adreça Jabber o GTalk, per exemple \"NomUsuari@exemple.org\". Primer, " +"assegura't d'afegir a %s a la teva llista d'amics en el teu client de " +"missatgeria instantània o a GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1252,8 +1412,14 @@ msgstr "Inici de sessió amb un compte [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova [OpenID] (%%action.openidlogin%%)." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no " +"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " +"[OpenID] (%%action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1298,8 +1464,13 @@ msgstr "Microblog de %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Capacitat per al teu telèfon mòbil. Si vostè coneix una companyia que accepti SMS a través del correu electrònic, però no està a la llista, envia'ns un correu electrònic per fer-nos-ho saber %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Capacitat per al teu telèfon mòbil. Si vostè coneix una companyia que " +"accepti SMS a través del correu electrònic, però no està a la llista, " +"envia'ns un correu electrònic per fer-nos-ho saber %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1395,7 +1566,9 @@ msgstr "Aquest sobrenom ja existeix. Prova un altre. " #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "El sobrenom ha de tenir només lletres minúscules i números i no pot tenir espais." +msgstr "" +"El sobrenom ha de tenir només lletres minúscules i números i no pot tenir " +"espais." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1921,8 +2094,14 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de telèfon, no puntuació ni espais, en l'àrea del codi" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Si us plau, revisa aquestes dades per a estar segur que desitges subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als avisos de ningú, clica \"Cancel·lar\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Si us plau, revisa aquestes dades per a estar segur que desitges " +"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " +"avisos de ningú, clica \"Cancel·lar\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2105,8 +2284,12 @@ msgid "Remove OpenID" msgstr "Eliminar OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Si elimines el teu únic OpenID no podràs tornar a entrar! Si necessites eliminar-lo, afegeix un altre abans." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Si elimines el teu únic OpenID no podràs tornar a entrar! Si necessites " +"eliminar-lo, afegeix un altre abans." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2202,13 +2385,21 @@ msgstr "Feed del flux de cerca" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Troba avisos a %%site.name%% per contingut. Separa els termes de cerca amb espais; han de ser majors a 3 caràcters." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Troba avisos a %%site.name%% per contingut. Separa els termes de cerca amb " +"espais; han de ser majors a 3 caràcters." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes de cerca amb espais; han de ser majors a 3 caràcters." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes " +"de cerca amb espais; han de ser majors a 3 caràcters." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2229,12 +2420,15 @@ msgstr "Enviar" #: actions/emailsettings.php:132 actions/smssettings.php:145 #: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." -msgstr "Enviar correu electrònic a aquesta direcció per publicar noves notificacions." +msgstr "" +"Enviar correu electrònic a aquesta direcció per publicar noves notificacions." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 #: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." -msgstr "Envia'm notificacions quan algú nou se'm subscrigui, al meu correu electrònic." +msgstr "" +"Envia'm notificacions quan algú nou se'm subscrigui, al meu correu " +"electrònic." #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 @@ -2243,13 +2437,19 @@ msgstr "Enviar-me avisos per Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Enviar-me avisos a través de SMS; puc entendre que això repercutirà en una exorbitant càrrega del meu transport." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Enviar-me avisos a través de SMS; puc entendre que això repercutirà en una " +"exorbitant càrrega del meu transport." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic subscrita." +msgstr "" +"Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic " +"subscrita." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2481,13 +2681,24 @@ msgstr "L'adreça ha estat eliminada." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. Llegeix de nou les instruccions per a saber com autoritzar la subscripció. El teu identificador de subscripció és:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. " +"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " +"El teu identificador de subscripció és:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix de nou les instruccions per a saber com rebutjar la subscripció completament." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix " +"de nou les instruccions per a saber com rebutjar la subscripció completament." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2513,22 +2724,34 @@ msgstr "Aquestes són les persones que escoltes." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" -msgstr "Aquestes persona ja són usuaris i tu estàs subscrit automàticament a ells:" +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Aquestes persona ja són usuaris i tu estàs subscrit automàticament a ells:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Aquest codi de confirmació és massa vell. Si us plau comença de nou." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Aquest formulari s'hauria d'enviar automàticament. En cas contrari, clica el botó d'enviament per a anar al teu proveïdor d'OpenID." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Aquest formulari s'hauria d'enviar automàticament. En cas contrari, clica el " +"botó d'enviament per a anar al teu proveïdor d'OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Aquesta és la primera vegada que accedeixes a %s. Per tant, hem de connectar el teu OpenID a un compte local. Pots crear-ne un de nou o connectar-te amb el teu, si el tens." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Aquesta és la primera vegada que accedeixes a %s. Per tant, hem de connectar " +"el teu OpenID a un compte local. Pots crear-ne un de nou o connectar-te amb " +"el teu, si el tens." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2577,8 +2800,15 @@ msgstr "Franja horària no seleccionada." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Per a subscriure't, pots [iniciar una sessió](%%action.login%%), o [registrar](%%action.register%%) un nou compte. Si ja tens un en un [servei de microblogging compatible](%%doc.openmublog%%), escriu l'URL del teu perfil a sota." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Per a subscriure't, pots [iniciar una sessió](%%action.login%%), o " +"[registrar](%%action.register%%) un nou compte. Si ja tens un en un [servei " +"de microblogging compatible](%%doc.openmublog%%), escriu l'URL del teu " +"perfil a sota." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2632,8 +2862,12 @@ msgid "Unknown version of OMB protocol." msgstr "Versió desconeguda del protocol OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Tret que s'especifiqui el contrari, el contingut d'aquest web és propietat dels seus col·laboradors i està disponible sota la" +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Tret que s'especifiqui el contrari, el contingut d'aquest web és propietat " +"dels seus col·laboradors i està disponible sota la" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2694,8 +2928,16 @@ msgid "Upload" msgstr "Pujar" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Puja un nou \"avatar\" (imatge d'usuari) aquí. No pots editar la imatge una vegada carregada, per tant assegura't que sigui més o menys quadrada. A més, ha d'estar sota la llicència del lloc web. Utilitza una foto que sigui teva i que vulguis compartir." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Puja un nou \"avatar\" (imatge d'usuari) aquí. No pots editar la imatge una " +"vegada carregada, per tant assegura't que sigui més o menys quadrada. A més, " +"ha d'estar sota la llicència del lloc web. Utilitza una foto que sigui teva " +"i que vulguis compartir." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2703,15 +2945,19 @@ msgstr "Carregar una nova imatge per al perfil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Utilitza aquest formulari per convidar els teus amics i col·legues perquè utilitzin aquest servei." +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Utilitza aquest formulari per convidar els teus amics i col·legues perquè " +"utilitzin aquest servei." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenyes" +msgstr "" +"Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenyes" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -2797,8 +3043,12 @@ msgid "You already have this OpenID!" msgstr "Ja tens aquest OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, no ho podràs desfer." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, " +"no ho podràs desfer." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2827,22 +3077,33 @@ msgstr "Pots crear un nou compte i començar a enviar avisos." #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Pots rebre missatges SMS a través del teu coreu electrònic des de %%site.name%%." +msgstr "" +"Pots rebre missatges SMS a través del teu coreu electrònic des de %%site.name" +"%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." msgstr "Pots eliminar un OpenID del teu compte clicant el botó \"Eliminar\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Pots enviar i rebre avisos via [missatges instantanis](%%doc.im%%) de Jabber/GTalk. Configura la teva adreça i opcions a sota." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Pots enviar i rebre avisos via [missatges instantanis](%%doc.im%%) de Jabber/" +"GTalk. Configura la teva adreça i opcions a sota." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Pots actualitzar la informació del teu perfil personal per a que la gent sàpiga més sobre tu." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Pots actualitzar la informació del teu perfil personal per a que la gent " +"sàpiga més sobre tu." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2866,8 +3127,24 @@ msgstr "No ens vas enviar aquest perfil" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "Tens una nova direcció per publicar a %1$s.\n\nEnvia un correu electrònic a %2$s per publicar un nou missatge.\n\nMés instruccions per al correu electrònic a %3$s.\n\nSincerament teus,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Tens una nova direcció per publicar a %1$s.\n" +"\n" +"Envia un correu electrònic a %2$s per publicar un nou missatge.\n" +"\n" +"Més instruccions per al correu electrònic a %3$s.\n" +"\n" +"Sincerament teus,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2879,12 +3156,18 @@ msgstr "No pots eliminar l'estatus d'un altre usuari." #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "Has d'estar dins del servei per poder convidar altres usuaris a utilitzar-lo %s" +msgstr "" +"Has d'estar dins del servei per poder convidar altres usuaris a utilitzar-lo " +"%s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Seràs avisat quan les teves invitacions siguin acceptades i els teus convidats es registrin al lloc. Gràcies per fer créixer la comunitat." +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Seràs avisat quan les teves invitacions siguin acceptades i els teus " +"convidats es registrin al lloc. Gràcies per fer créixer la comunitat." #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2898,12 +3181,18 @@ msgstr "El teu URL OpenID" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "El teu nom d'usuari en aquest servidor, o la teva adreça de correu electrònic registrada." +msgstr "" +"El teu nom d'usuari en aquest servidor, o la teva adreça de correu " +"electrònic registrada." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix compte d'usuari. Administra els teus OpenID associats aquí." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix " +"compte d'usuari. Administra els teus OpenID associats aquí." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3026,7 +3315,9 @@ msgstr "« Posterior" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si us plau." +msgstr "" +"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " +"us plau." #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" @@ -3044,7 +3335,8 @@ msgstr "Favorit" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "Envia'm un correu electrònic quan algú afegeixi una nota meva com a favorit." +msgstr "" +"Envia'm un correu electrònic quan algú afegeixi una nota meva com a favorit." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 @@ -3095,12 +3387,18 @@ msgstr "Safata d'entrada per %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Aquesta és la teva safata d'entrada, que et mostrarà els teus missatges privats." +msgstr "" +"Aquesta és la teva safata d'entrada, que et mostrarà els teus missatges " +"privats." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s t'ha convidat a participar a %2$s (%3$s).\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s t'ha convidat a participar a %2$s (%3$s).\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3142,7 +3440,8 @@ msgstr "No pots enviar un missatge a aquest usuari." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3189,11 +3488,14 @@ msgstr "Safata de sortida per %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Aquesta és la teva safata de sortida, que et mostrarà els missatges privats que has enviat." +msgstr "" +"Aquesta és la teva safata de sortida, que et mostrarà els missatges privats " +"que has enviat." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " msgstr "Cercar gent a %%site.name%% pel seu nom, localització, o interessos. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3245,12 +3547,17 @@ msgstr "La contrasenya hauria de ser d'entre 6 a més caràcters." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, potser vols..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Felicitats, %s! I benvingut/da a %%%%site.name%%%%. Des d'aquí, potser " +"vols..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " -msgstr "(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb " +msgstr "" +"(Hauries de rebre un missatge per correu electrònic d'aquí uns moments, amb " #: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 #, php-format @@ -3369,12 +3676,19 @@ msgstr "%s ha afegit la teva nota com a favorita" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "%1$s acaba d'afegir la teva nota des de %2$s com a favorita.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"%1$s acaba d'afegir la teva nota des de %2$s com a favorita.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes a Twitter, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes " +"a Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3421,8 +3735,12 @@ msgstr "Subscriure'm als meus amics de Twitter aquí." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "El nom d'usuari sols pot contenir números, lletres en majúscules i minúscules, i guions baixos (_). 15 caràcters màxim." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"El nom d'usuari sols pot contenir números, lletres en majúscules i " +"minúscules, i guions baixos (_). 15 caràcters màxim." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3637,8 +3955,12 @@ msgstr "L'usuari no té cap perfil que coincideixi en aquest sistema." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "You have a new posting address on %1$s.\n\n" -msgstr "Tens una nova direcció per publicar a %1$s.\n\n" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" +"Tens una nova direcció per publicar a %1$s.\n" +"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3647,8 +3969,12 @@ msgstr "Nou missatge privat de %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "%1$s (%2$s) t'ha enviat un nou missatge privat:\n\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"%1$s (%2$s) t'ha enviat un nou missatge privat:\n" +"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -3769,7 +4095,9 @@ msgstr "Ha ocorregut un error amb la teva sessió. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 #: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" -msgstr "Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu avatar." +msgstr "" +"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " +"avatar." #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 @@ -3887,7 +4215,9 @@ msgstr "Utilitza aquest formulari per editar el grup." #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 msgid "Nickname must have only lowercase letters " -msgstr "El sobrenom ha de tenir només lletres minúscules i números i no pot tenir espais. " +msgstr "" +"El sobrenom ha de tenir només lletres minúscules i números i no pot tenir " +"espais. " #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -3926,7 +4256,9 @@ msgstr "L'adreça de correu electrònic ja pertany " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que has afegit. " +msgstr "" +"S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que " +"has afegit. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" @@ -4012,7 +4344,8 @@ msgstr "No s'ha pogut eliminar l'usuari de Facebook." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" -msgstr "Ha ocorregut un problema al guardar les preferències de sincronització!" +msgstr "" +"Ha ocorregut un problema al guardar les preferències de sincronització!" #: actions/facebooksettings.php:67 msgid "Sync preferences saved." @@ -4020,7 +4353,9 @@ msgstr "Preferències de sincronització guardades." #: actions/facebooksettings.php:90 msgid "Automatically update my Facebook status with my notices." -msgstr "Actualitzar automàticament el meu estat a Facebook amb les meves notificacions." +msgstr "" +"Actualitzar automàticament el meu estat a Facebook amb les meves " +"notificacions." #: actions/facebooksettings.php:97 msgid "Send \"@\" replies to Facebook." @@ -4144,7 +4479,8 @@ msgstr "Crear nou grup" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " msgstr "Troba grups a %%site.name%% per nom, ubicació o descripció. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4189,7 +4525,9 @@ msgstr "%s s'ha pogut afegir al grup %s" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "Les safates d'entrada han d'estar activades per entrar a formar part dels grups." +msgstr "" +"Les safates d'entrada han d'estar activades per entrar a formar part dels " +"grups." #: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -4274,8 +4612,11 @@ msgid "Ajax Error" msgstr "Ajax Error" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Aquest usuari no permet reclamacions o no ha confirmar encara cap correu electrònic." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Aquest usuari no permet reclamacions o no ha confirmar encara cap correu " +"electrònic." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4317,7 +4658,8 @@ msgstr "Servei d'auto-escurçament a utilitzar." #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." -msgstr "El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)." +msgstr "" +"El servei d'auto-escurçament d'URL és massa llarga (màx. 50 caràcters)." #: actions/passwordsettings.php:69 msgid "Change your password." @@ -4349,8 +4691,11 @@ msgstr "Informació del perfil" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat por espais" +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat " +"por espais" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4381,8 +4726,12 @@ msgstr "No s'ha pogut recuperar la conversa pública." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging) " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" +"wiki/Microblogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4413,7 +4762,8 @@ msgstr "Amb aquest formulari pots crear " #: actions/register.php:368 msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 lletres en minúscula o números, sense signes de puntuació o espais, " +msgstr "" +"1-64 lletres en minúscula o números, sense signes de puntuació o espais, " #: actions/register.php:382 actions/register.php:386 msgid "Used only for updates, announcements, " @@ -4529,8 +4879,12 @@ msgstr "Tots els membres" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging)" +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" +"(http://ca.wikipedia.org/wiki/Microblogging)" #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4582,8 +4936,12 @@ msgstr "Tots els grups" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging) " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" +"ca.wikipedia.org/wiki/Microblogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4595,7 +4953,8 @@ msgstr "Enviar-me avisos per SMS; " #: actions/smssettings.php:335 msgid "A confirmation code was sent to the phone number you added. " -msgstr "El codi de confirmació s'ha enviat al número de telèfon que tens afegit. " +msgstr "" +"El codi de confirmació s'ha enviat al número de telèfon que tens afegit. " #: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" @@ -4688,16 +5047,23 @@ msgid "Tag user" msgstr "Etiqueta usuari" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Etiquetes per aquest usuari (lletres, números,, -, ., i _), comes o separat per espais" +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Etiquetes per aquest usuari (lletres, números,, -, ., i _), comes o separat " +"per espais" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Només pots etiquetar gent a la que estiguis subscrit o que s'hagin subscrit a tu." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Només pots etiquetar gent a la que estiguis subscrit o que s'hagin subscrit " +"a tu." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4705,7 +5071,9 @@ msgstr "No s'han pogut guardar les etiquetes." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Utilitza aquest formulari per afegir etiquetes als teus subscriptors i subscripcions." +msgstr "" +"Utilitza aquest formulari per afegir etiquetes als teus subscriptors i " +"subscripcions." #: actions/tagrss.php:35 msgid "No such tag." @@ -4791,8 +5159,11 @@ msgstr "Problema al guardar la notificació. Usuari desconegut." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Masses notificacions massa ràpid; pren un respir i publica de nou en uns minuts." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " +"minuts." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -4971,8 +5342,10 @@ msgstr "Descriu el grup amb 140 caràcters" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Localització del grup, si n'hi ha, com \"Ciutat, Estat (o Regió), País\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" +"Localització del grup, si n'hi ha, com \"Ciutat, Estat (o Regió), País\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" @@ -5035,8 +5408,12 @@ msgstr "Accedir o registrar-se amb OpenID" #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Ei, %s.\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Ei, %s.\n" +"\n" #: lib/mail.php:236 #, php-format @@ -5055,8 +5432,12 @@ msgstr "Pàgina personal: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "Biografia: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Biografia: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5224,17 +5605,17 @@ msgid "Unsubscribe from this user" msgstr "Deixar d'estar subscrit des d'aquest usuari" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed per a amics de %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed per a amics de %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed per a amics de %s" @@ -5244,7 +5625,7 @@ msgid "You and friends" msgstr "%s i amics" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Pots pujar el teu avatar personal." @@ -5253,40 +5634,89 @@ msgstr "Pots pujar el teu avatar personal." msgid "Avatar deleted." msgstr "Avatar actualitzat." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, no ho podràs desfer." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Estàs a punt d'eliminar permanentment una notificació. Una vegada ho facis, " +"no ho podràs desfer." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si us plau." +msgstr "" +"Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " +"us plau." #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Envia'm un correu electrònic quan algú m'envii un missatge privat." +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format, fuzzy -msgid "You can upload a logo image for your group. The maximum file size is %s." +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "Pots pujar una imatge de logo per al grup." #: actions/grouplogo.php:367 actions/grouplogo.php:362 #, fuzzy msgid "Pick a square area of the image to be the logo." -msgstr "Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu avatar." +msgstr "" +"Selecciona un quadrat de l'àrea de la imatge que vols que sigui el teu " +"avatar." #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Microblog de %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes de cerca amb espais; han de ser majors a 3 caràcters." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Troba gent a %%site.name%% per nom, ubicació o interessos. Separa els termes " +"de cerca amb espais; han de ser majors a 3 caràcters." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" #: actions/newmessage.php:102 #, fuzzy @@ -5294,14 +5724,18 @@ msgid "Only logged-in users can send direct messages." msgstr "Error al enviar el missatge directe." #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "Cerca \"%s\" al flux" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i contrasenya abans de canviar la teva configuració." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Per raons de seguretat, si us plau torna a escriure el teu nom d'usuari i " +"contrasenya abans de canviar la teva configuració." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5318,10 +5752,35 @@ msgstr "Feed del flux públic" msgid "Public Stream Feed (Atom)" msgstr "Feed del flux públic" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr "excepte les següents dades privades: contrasenya, adreça de correu electrònic, adreça de missatgeria instantània, número de telèfon." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"excepte les següents dades privades: contrasenya, adreça de correu " +"electrònic, adreça de missatgeria instantània, número de telèfon." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5329,33 +5788,44 @@ msgstr "excepte les següents dades privades: contrasenya, adreça de correu ele msgid "Created" msgstr "Crear" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Perfil del grup" #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "perfil" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Feed d'avisos de %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Feed d'avisos de %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Feed d'avisos de %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Safata de sortida per %s" @@ -5371,10 +5841,48 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Configuració del perfil" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les instruccions per utilitzar-lo." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"S'ha enviat un codi de confirmació al número de telèfon has afegit. Revisa " +"la teva safata d'entrada (i la carpeta de spam!) per veure aquest codi i les " +"instruccions per utilitzar-lo." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5391,18 +5899,28 @@ msgstr "Aquest usuari no existeix" #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes a Twitter, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Afegit el teu compte Twitter per tal d'enviar automàticament les teves notes " +"a Twitter, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "No es pot recuperar la informació del compte per \"%s\" de Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Si us plau, revisa aquestes dades per a estar segur que desitges subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als avisos de ningú, clica \"Cancel·lar\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Si us plau, revisa aquestes dades per a estar segur que desitges " +"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " +"avisos de ningú, clica \"Cancel·lar\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5411,8 +5929,12 @@ msgstr "Cercar gent o text" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "Masses notificacions massa ràpid; pren un respir i publica de nou en uns minuts." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " +"minuts." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5424,21 +5946,218 @@ msgstr "Connectar a missatgeria instantània, SMS, Twitter" msgid "Badge" msgstr "Reclamar" +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "Per utilitzar la Aplicació de Facebook %s necessites haver accedit " +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s ara està escoltant els teus avisos a %2$s.\n\n %3$s\n\nAtentament,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s ara està escoltant els teus avisos a %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentament,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Cercar" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5455,12 +6174,12 @@ msgid "Block this user from this group" msgstr "La llista dels usuaris d'aquest grup." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Perfil de l'usuari" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s i amics, pàgina %d" @@ -5484,26 +6203,56 @@ msgstr "Codi de confirmació" msgid "Do not delete this notice" msgstr "No es pot esborrar la notificació." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Etiqueta no vàlida: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Aquest sobrenom ja existeix. Prova un altre. " +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "No es pot crear favorit." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5514,6 +6263,14 @@ msgstr "Nou avís" msgid "No notice" msgstr "Nou avís" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5525,6 +6282,10 @@ msgstr "Sobrenom no vàlid." msgid "No group specified." msgstr "No s'ha especificat perfil." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5541,6 +6302,18 @@ msgstr "No ets membre d'aquest grup." msgid "Block user from group" msgstr "Usuari bloquejat." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5551,6 +6324,12 @@ msgstr "Has d'haver entrat per crear un grup." msgid "Group design" msgstr "Grups" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5583,46 +6362,232 @@ msgstr "Has de ser admin per editar aquest grup" msgid "Make Admin" msgstr "Admin" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Cap resultat" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Un usuari t'ha bloquejat." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Missatge" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "No s'ha pogut guardar el perfil." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix compte d'usuari. Administra els teus OpenID associats aquí." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) et permet accedir a molts llocs amb un mateix " +"compte d'usuari. Administra els teus OpenID associats aquí." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Configuració del perfil" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging) " +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/" +"wiki/Microblogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova que t'enviarem al correu electrònic que tinguis posat al teu compte." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si has oblidat o has perdut la teva contrasenya, pots obtenir-ne una de nova " +"que t'enviarem al correu electrònic que tinguis posat al teu compte." #: actions/recoverpassword.php:158 #, fuzzy @@ -5644,30 +6609,87 @@ msgstr "Error amb el codi de confirmació." msgid "Subscribe to a remote user" msgstr "Subscriure's a aquest usuari" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "%s notificacions favorites, pàgina %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed d'avisos del grup %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed d'avisos del grup %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed d'avisos del grup %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging)" +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" +"(http://ca.wikipedia.org/wiki/Microblogging)" #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -5680,33 +6702,84 @@ msgid "Not a local notice" msgstr "No existeix aquest usuari." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Aviso etiquetats amb %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Feed d'avisos del grup %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://ca.wikipedia.org/wiki/Microblogging) " +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" +"ca.wikipedia.org/wiki/Microblogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s ara està escoltant " #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed d'avisos de %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed d'avisos de %s" @@ -5737,16 +6810,20 @@ msgid "Could not find target user." msgstr "No es pot trobar cap estatus." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Notificacions contestant a %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5762,41 +6839,127 @@ msgstr "%s subscripcions" msgid "Profile design" msgstr "Configuració del perfil" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "No ets membre d'aquest grup." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problema en guardar l'avís." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Missatge per a %1$s a %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Perfil de l'usuari" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Perfil" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Pujar" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Canviar la teva contrasenya" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5812,21 +6975,127 @@ msgstr "Cercar" msgid "Links" msgstr "Inici de sessió" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Bloquejar" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Usuari bloquejat." #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "Afegir o editar logo %s" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5842,11 +7111,26 @@ msgstr "Usuari" msgid "Search help" msgstr "Cercar" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "La pàgina personal no és un URL vàlid." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5854,12 +7138,12 @@ msgid "No such page" msgstr "No existeix aquesta etiqueta." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Missatges directes a %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "És massa llarg. Màxim del missatge és 140 caràcters." @@ -5868,8 +7152,12 @@ msgstr "És massa llarg. Màxim del missatge és 140 caràcters." msgid "Could not unfollow user: User not found." msgstr "No pots subscriure't a aquest usuari: L'usuari no existeix." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "la descripció és massa llarga (màx. 140 caràcters)." @@ -5879,7 +7167,7 @@ msgid "You are already a member of that group." msgstr "Ja ets membre d'aquest grup" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "No s'ha pogut afegir l'usuari %s al grup %s" @@ -5889,31 +7177,45 @@ msgid "You are not a member of this group." msgstr "No ets membre d'aquest grup." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "%s grups" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "%s grups són membres de" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Accions del grup" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar actualitzat." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Massa llarg. La longitud màxima és de 140 caràcters." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -5925,12 +7227,12 @@ msgid "Post to " msgstr "Foto" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "la descripció és massa llarga (màx. 140 caràcters)." #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" @@ -5965,7 +7267,7 @@ msgid "Cannot read file." msgstr "Hem perdut el nostre arxiu." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualitzacions de %1$s a %2$s!" @@ -5975,17 +7277,41 @@ msgid "IM is not available." msgstr "Aquesta pàgina no està disponible en " #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova [OpenID] (%%action.openidlogin%%)." +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Inicia una sessió amb el teu nom d'usuari i la teva contrasenya. Encara no " +"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " +"[OpenID] (%%action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Actualitzacions de %1$s a %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" " +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Connectar-se" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Explica'ns alguna cosa sobre tu i els teus interessos en 140 caràcters" @@ -5995,13 +7321,20 @@ msgid "Describe yourself and your interests" msgstr "Explica'ns alguna cosa sobre tu " #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "La biografia és massa llarga (màx. 140 caràcters)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "URL de perfil no vàlid (cap document YADIS)." #: actions/remotesubscribe.php:176 @@ -6014,35 +7347,53 @@ msgstr "Aquest és un perfil local! Entra per subscriure-t'hi." msgid "Couldn’t get a request token." msgstr "No s'ha pogut obtenir un senyal de petició." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed d'avisos de %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed d'avisos de %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Feed d'avisos del grup %s" +msgstr "Feed d'avisos de %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Missatge per a %1$s a %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed per favorits de %s" +msgstr "Feed per a amics de %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed per favorits de %s" +msgstr "Feed per a amics de %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Feed per favorits de %s" +msgstr "Feed per a amics de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "%s grup" +msgstr "Safata de sortida per %s" #: actions/shownotice.php:90 #, fuzzy @@ -6055,32 +7406,79 @@ msgid "SMS is not available." msgstr "Aquesta pàgina no està disponible en " #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed d'avisos de %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Si us plau, revisa aquestes dades per a estar segur que desitges subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als avisos de ningú, clica \"Cancel·lar\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Si us plau, revisa aquestes dades per a estar segur que desitges " +"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " +"avisos de ningú, clica \"Cancel·lar\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. Llegeix de nou les instruccions per a saber com autoritzar la subscripció. El teu identificador de subscripció és:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"S'ha autoritzat la subscripció, però no s'ha enviat un URL de retorn. " +"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " +"El teu identificador de subscripció és:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix de nou les instruccions per a saber com rebutjar la subscripció completament." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix " +"de nou les instruccions per a saber com rebutjar la subscripció completament." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "No es pot llegir l'URL de l'avatar '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipus d'imatge incorrecte per a '%s'" @@ -6095,27 +7493,35 @@ msgid "Site content license" msgstr "Llicència del programari StatusNet" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "No es pot actualitzar l'usuari amb el correu electrònic confirmat" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Reclamació enviada" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "respondre a aquesta nota" @@ -6124,11 +7530,54 @@ msgstr "respondre a aquesta nota" msgid "Error saving notice." msgstr "Problema en guardar l'avís." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Cap codi de confirmació." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6145,32 +7594,76 @@ msgid "Describe the group or topic" msgstr "Descriu el grup amb 140 caràcters" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Descriu el grup amb 140 caràcters" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Feed d'avisos de %s" +msgstr "Nou avís" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s ha afegit la teva nota com a favorita" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " de " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "No pots eliminar favorits." +msgstr "No s'ha pogut recuperar la conversa pública." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Eliminar nota." - diff --git a/locale/cs/LC_MESSAGES/statusnet.mo b/locale/cs/LC_MESSAGES/statusnet.mo index 4984f5882afa692538726303606b67671bd9ef3b..69d67bfa2987bfdb6fa0d4cf5315b9595f4414e8 100644 GIT binary patch delta 13338 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 OrA=O+KkeSBs{aQv`jG$t diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 860ec15949..ddb48f0502 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -1,41 +1,84 @@ # Translation of StatusNet to Czech # # -- -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:02+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:43:04+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: out-statusnet\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid " Search Stream for \"%s\"" msgstr " Hledej \"%s\" ve Streamu" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr " až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní číslo." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní " +"číslo." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " msgstr " od " +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#, php-format +msgid "%1$s / Updates replying to %2$s" +msgstr "" + +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "" + +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" + #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 #, php-format @@ -44,8 +87,27 @@ msgstr "%1 od teď naslouchá tvým sdělením v %2" #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1 naslouchá vašim sdělením na %s. \n\n %3\n\nS úctou váš,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1 naslouchá vašim sdělením na %s. \n" +"\n" +"\t%3\n" +"\n" +"S úctou váš,\n" +"%4$s.\n" + +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -54,6 +116,13 @@ msgstr "%1 naslouchá vašim sdělením na %s. \n\n %3\n\nS úctou váš,\n%4$s. msgid "%1$s's status on %2$s" msgstr "%1 statusů na %2" +#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 +#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "" + #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format @@ -75,11 +144,52 @@ msgstr "Veřejný \"Stream\"" msgid "%s and friends" msgstr "%s a přátelé" +#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "" + +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "" + +#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "" + +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "" + +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" + #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." +"broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -99,6 +209,11 @@ msgstr "Přispěvatelá by měly být zmíněny přezdívkou nebo celým jménem msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" +#: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" + #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" @@ -110,11 +225,110 @@ msgstr "6 a více znaků" msgid "6 or more characters, and don't forget it!" msgstr "6 a více znaků, a nezapomeňte" +#: ../actions/register.php:154 actions/register.php:168 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 +msgid "6 or more characters. Required." +msgstr "" + #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro posílání zpráv." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro " +"posílání zpráv." + +#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/smssettings.php:216 actions/smssettings.php:224 +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 +#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 +#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 +#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 +#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 +#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 +#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 +#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 +#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 +#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 +#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 +#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 +#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 +#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 +#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "" + +#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 +#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 +#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 +#: ../actions/twitapidirect_messages.php:49 +#: ../actions/twitapidirect_messages.php:56 +#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 +#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 +#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 +#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 +#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 +#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 +#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 +#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 +#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 +#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 +#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 +#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 +#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 +msgid "API method under construction." +msgstr "" #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 @@ -145,6 +359,11 @@ msgstr "Přidat" msgid "Add OpenID" msgstr "Přidej OpenID" +#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 +#: lib/accountsettingsaction.php:117 +msgid "Add or remove OpenIDs" +msgstr "" + #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 @@ -154,6 +373,11 @@ msgstr "Přidej OpenID" msgid "Address" msgstr "Adresa" +#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" + #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" @@ -185,6 +409,12 @@ msgstr "Již přihlášen" msgid "Already subscribed!." msgstr "Již přihlášeno" +#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "" + #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 @@ -198,6 +428,13 @@ msgstr "Autorizovaný odběr" msgid "Automatically login in the future; not for shared computers!" msgstr "Příště automaticky přihlásit; ne pro počítače, které používá " +#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" + #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 @@ -215,8 +452,24 @@ msgstr "Obrázek nahrán" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Čakám na potvrzení této adresy. Zkontrolujte zprávy na vašem Jabber/GTalk účtu. (Přidal jste si %s do vašich kontaktů?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Čakám na potvrzení této adresy. Zkontrolujte zprávy na vašem Jabber/GTalk " +"účtu. (Přidal jste si %s do vašich kontaktů?)" + +#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" + +#: ../actions/smssettings.php:58 actions/smssettings.php:58 +#: actions/smssettings.php:111 actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "" #: ../lib/util.php:1318 lib/util.php:1452 #, fuzzy @@ -240,6 +493,11 @@ msgstr "O mě" msgid "Bio is too long (max 140 chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" +#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "" + #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format @@ -273,16 +531,37 @@ msgstr "Nelze dolozit zákaznický objekt OpenID" msgid "Cannot normalize that Jabber ID" msgstr "Nelze normalizovat JabberID" +#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "" + #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Změnit" +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "" + #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "Změnit heslo" +#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "" + +#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "" + #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 #: actions/profilesettings.php:182 actions/recoverpassword.php:187 @@ -310,11 +589,36 @@ msgstr "Potvrď adresu" msgid "Confirmation cancelled." msgstr "Potvrď zrušení" +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "" + #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Potvrzující kód nebyl nalezen" +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" + #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -338,6 +642,21 @@ msgstr "Kontakt" msgid "Could not create OpenID form: %s" msgstr "Nelze vytvořit OpenID z: %s" +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "" + +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" + #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format @@ -354,6 +673,19 @@ msgstr "Nelze uložin informace o obrázku" msgid "Could not save new profile info" msgstr "Nelze uložit nové informace do profilu" +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "" + +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 +msgid "Could not subscribe." +msgstr "" + +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." @@ -374,6 +706,11 @@ msgstr "Nelze smazat potvrzení emailu" msgid "Couldn't delete subscription." msgstr "Nelze smazat odebírání" +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 +msgid "Couldn't find any statuses." +msgstr "" + #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." @@ -402,6 +739,22 @@ msgstr "Nelze vložit odebírání" msgid "Couldn't save profile." msgstr "Nelze uložit profil" +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "" + +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -449,16 +802,38 @@ msgstr "Pro toto OpenID již uživatel existuje" msgid "Current confirmed Jabber/GTalk address." msgstr "Potvrzené Jabber/GTalk adresy" +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" + +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" + #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "Nyní" +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Chyba v DB při vkládání odpovědi: %s" +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "" + #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -475,6 +850,16 @@ msgstr "Popiš sebe a své zájmy ve 140 znacích" msgid "Email" msgstr "Email" +#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 +msgid "Email Address" +msgstr "" + +#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "" + #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." @@ -484,12 +869,27 @@ msgstr "Emailová adresa již existuje" msgid "Email address confirmation" msgstr "Potvrzení emailové adresy" +#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "" + +#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 +msgid "Email addresses" +msgstr "" + #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Zadej přezdívku nebo emailovou adresu" +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" + #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" @@ -596,19 +996,37 @@ msgstr "Nahrávání obrázku selhalo." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 #: actions/allrss.php:110 actions/allrss.php:118 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s" msgstr "Feed přítel uživatele: %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 #: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for replies to %s" msgstr "Feed odpovědí na %s" +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 +#, php-format +msgid "Feed for tag %s" +msgstr "" + +#: ../lib/searchaction.php:105 lib/searchaction.php:105 +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "" + +#: ../lib/searchaction.php:101 lib/searchaction.php:101 +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "" + #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo." #: ../actions/profilesettings.php:44 ../actions/register.php:164 @@ -671,6 +1089,17 @@ msgstr "Moje stránky" msgid "Homepage is not a valid URL." msgstr "Stránka není platnou URL." +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "" + +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "" + #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -683,12 +1112,40 @@ msgstr "IM nastavení" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte účet s OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte " +"účet s OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Pokud chcete přidat OpenID k vašemu účtu, zadejte OpenID do pole níže a klikněte na \"Přidat\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Pokud chcete přidat OpenID k vašemu účtu, zadejte OpenID do pole níže a " +"klikněte na \"Přidat\"." + +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" + +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 @@ -704,8 +1161,12 @@ msgstr "Neplatné jméno nebo heslo" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Návod jak obnovit heslo byl odeslát na vaší emailovou adresu zaregistrovanou u vašeho účtu." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Návod jak obnovit heslo byl odeslát na vaší emailovou adresu zaregistrovanou " +"u vašeho účtu." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -713,6 +1174,12 @@ msgstr "Návod jak obnovit heslo byl odeslát na vaší emailovou adresu zaregis msgid "Invalid avatar URL '%s'" msgstr "Neplatná adresa obrázku '%s'" +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "" + #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format @@ -771,11 +1238,38 @@ msgstr "Neplatná velikost" msgid "Invalid username or password." msgstr "Neplatné jméno nebo heslo" +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "" + +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" + +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 +msgid "Invite" +msgstr "" + +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 +msgid "Invite new users" +msgstr "" + #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Běží na [StatusNet](http://status.net/) mikroblogovací program, verze %s, dostupná pod [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Běží na [StatusNet](http://status.net/) mikroblogovací program, verze %s, " +"dostupná pod [GNU Affero General Public License](http://www.fsf.org/" +"licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -785,8 +1279,24 @@ msgstr "Jabber ID již patří jinému uživateli" #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Jabber nebo GTalk adresy, například \"jmeno@neco.cz\". Neprve se ujistěte že jste přidal %s do vašeho seznamu kontaktů." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber nebo GTalk adresy, například \"jmeno@neco.cz\". Neprve se ujistěte že " +"jste přidal %s do vašeho seznamu kontaktů." + +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "" + +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "" #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -841,20 +1351,44 @@ msgstr "Přihlaste se pomocí [OpenID](%%doc.openid%%) účtu." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? [Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%action.openidlogin%%)." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? " +"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" +"action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Odhlásit" +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 +msgid "Longer name, preferably your \"real\" name" +msgstr "" + #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Ztracené nebo zapomenuté heslo?" +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "" + #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -866,6 +1400,14 @@ msgstr "Členem od" msgid "Microblog by %s" msgstr "Mikroblog od %s" +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 @@ -874,6 +1416,25 @@ msgstr "Mikroblog od %s" msgid "My text and files are available under " msgstr "Mé texty a soubory jsou k dispozici pod" +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "" + +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "" + #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -958,6 +1519,14 @@ msgstr "Přezdívka uživatele, kterého chcete sledovat" msgid "Nickname or email" msgstr "Přezdívka nebo email" +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 +msgid "No" +msgstr "" + #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." @@ -969,6 +1538,16 @@ msgstr "Žádné Jabber ID." msgid "No authorization request!" msgstr "Žádné potvrení!" +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" + +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 +msgid "No code entered" +msgstr "" + #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -983,10 +1562,23 @@ msgstr "Žádný potvrzující kód." msgid "No content!" msgstr "Žádný obsah!" +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "" + #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "Žádné id" +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -1008,6 +1600,11 @@ msgstr "Žádná přezdívka." msgid "No pending confirmation to cancel." msgstr "Nečeká žádné potvrzení na zrušení." +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 +msgid "No phone number." +msgstr "" + #: ../actions/finishremotesubscribe.php:72 #: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." @@ -1036,6 +1633,21 @@ msgstr "Žádné výsledky." msgid "No size." msgstr "Žádná velikost" +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" + +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "" + #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1101,6 +1713,12 @@ msgstr "Žádné takové odebírání" msgid "No such user." msgstr "Žádný takový uživatel." +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" + #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "Nikdo k zobrazení!" @@ -1110,6 +1728,21 @@ msgstr "Nikdo k zobrazení!" msgid "Not a recovery code." msgstr "Není obnovujícím kódem" +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 +msgid "Not a registered user." +msgstr "" + +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 +msgid "Not a supported data format." +msgstr "" + #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1120,6 +1753,12 @@ msgstr "Není platným Jabber ID" msgid "Not a valid OpenID." msgstr "Není platným OpenID." +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "" + #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." @@ -1169,6 +1808,12 @@ msgstr "Neautorizován." msgid "Not expecting this response!" msgstr "Nečekaná odpověď." +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 +msgid "Not found" +msgstr "" + #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 #: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 @@ -1193,10 +1838,15 @@ msgstr "Nepřihlášen" msgid "Not subscribed!." msgstr "Nepřihlášen!" +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" + #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s" msgstr "Feed sdělení pro %s" @@ -1213,6 +1863,14 @@ msgstr "Sdělení nemá profil" msgid "Notices" msgstr "Sdělení" +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" + #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1280,6 +1938,11 @@ msgstr "OpenID odstraněno" msgid "OpenID settings" msgstr "Nastavení OpenID" +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "" + #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -1334,6 +1997,16 @@ msgstr "Heslo uloženo" msgid "Passwords don't match." msgstr "Hesla nesouhlasí" +#: ../lib/searchaction.php:100 lib/searchaction.php:100 +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "" + +#: ../actions/opensearch.php:33 actions/opensearch.php:33 +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" + #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" @@ -1344,9 +2017,25 @@ msgstr "Hledání lidí" msgid "Personal" msgstr "Osobní" +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 +msgid "Personal message" +msgstr "" + +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, klikněte na \"Zrušit\"" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " +"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " +"klikněte na \"Zrušit\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -1375,6 +2064,12 @@ msgstr "Nastavení" msgid "Preferences saved." msgstr "Nastavení uloženo" +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "" + #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" @@ -1423,6 +2118,22 @@ msgstr "Veřejný Stream Feed" msgid "Public timeline" msgstr "Veřejné zprávy" +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "" + +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "" + +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 +#: actions/tag.php:76 +msgid "Recent Tags" +msgstr "" + #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -1451,6 +2162,18 @@ msgstr "Obnovyt kód pro neznámého uživatele" msgid "Register" msgstr "Registrovat" +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 +msgid "Registration not allowed." +msgstr "" + +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 +msgid "Registration successful" +msgstr "" + #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -1496,8 +2219,12 @@ msgid "Remove OpenID" msgstr "Odstranit OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Odstranění jediného OpenID, bude mít za následek nemožnost dalšího přihlášení, nejprve přidejte jiné OpenID" +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Odstranění jediného OpenID, bude mít za následek nemožnost dalšího " +"přihlášení, nejprve přidejte jiné OpenID" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -1526,12 +2253,38 @@ msgstr "Reset" msgid "Reset password" msgstr "Resetovat heslo" +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" + +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "" + +#: ../actions/smssettings.php:33 actions/smssettings.php:33 +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "" + +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 +msgid "SMS confirmation" +msgstr "" + #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Stejné jako heslo výše" +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 +msgid "Same as password above. Required." +msgstr "" + #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -1568,13 +2321,26 @@ msgstr "Hledat ve Stream Feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Hledej sdělení na %%site.name%% podle obsahu. Minimální délka musí být alespoň 3 znaky" +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Hledej sdělení na %%site.name%% podle obsahu. Minimální délka musí být " +"alespoň 3 znaky" #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. Minimální délka musí být alespoň 3 znaky" +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " +"Minimální délka musí být alespoň 3 znaky" + +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -1585,11 +2351,35 @@ msgstr "Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zá msgid "Send" msgstr "Odeslat" +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" + +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" + #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Zasílat oznámení pomocí Jabber/GTalk" +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -1601,6 +2391,10 @@ msgstr "Nastavení" msgid "Settings saved." msgstr "Nastavení uloženo" +#: ../actions/tag.php:60 actions/tag.php:60 +msgid "Showing most popular tags from the last week" +msgstr "" + #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -1612,6 +2406,16 @@ msgstr "Někdo jiný již má toto OpenID" msgid "Something weird happened." msgstr "Něco zvláštního se stalo" +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 +msgid "Sorry, no incoming email allowed." +msgstr "" + +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 +msgid "Sorry, that is not your incoming email address." +msgstr "" + #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -1676,6 +2480,22 @@ msgstr "Odběry" msgid "System error uploading file." msgstr "Chyba systému při nahrávání souboru" +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 +msgid "Tags" +msgstr "" + +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 +msgid "Text" +msgstr "" + #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 #: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" @@ -1696,6 +2516,11 @@ msgstr "Adresa již byla potvrzena" msgid "That confirmation code is not for you!" msgstr "Tento potvrzující kód vám nepatří!" +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "" + #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." @@ -1706,11 +2531,33 @@ msgstr "Soubor je příliš velký" msgid "That is already your Jabber ID." msgstr "Toto je již vaše Jabber" +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" + +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" + #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Toto není váš Jabber" +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "" + +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "" + #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -1719,6 +2566,16 @@ msgstr "Toto není váš Jabber" msgid "That is the wrong IM address." msgstr "Toto je špatná IM adresa" +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "" + +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" + #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -1729,6 +2586,12 @@ msgstr "Toto je špatná IM adresa" msgid "That's too long. Max notice size is 140 chars." msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 +msgid "That's too long. Max notice size is 255 chars." +msgstr "" + #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format @@ -1747,13 +2610,24 @@ msgstr "Adresa byla odstraněna" #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru je:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v " +"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " +"je:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v nápovědě jak správně postupovat při zamítání odběru" +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v " +"nápovědě jak správně postupovat při zamítání odběru" #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -1777,29 +2651,97 @@ msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" msgid "These are the people whose notices you listen to." msgstr "Toto jsou lidé, jejiž sdělením nasloucháte" +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" + #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Tento potvrzující kód je příliš starý Prosím zkuste znovu" #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Tento formulář by se měl odeslat sám, pokud ne tak klikněte na tlašítko pro přechod k vašemu OpenID poskytovately." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Tento formulář by se měl odeslat sám, pokud ne tak klikněte na tlašítko pro " +"přechod k vašemu OpenID poskytovately." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Toto je poprvé co jste se přihlásil na %s proto musíme propojit vaše OpenID k našemu účtu. Můžete buď vytvořit nový účet, nebo propojit OpenID k vašemu již existujícímu účtu, pokud již takový máte." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Toto je poprvé co jste se přihlásil na %s proto musíme propojit vaše OpenID " +"k našemu účtu. Můžete buď vytvořit nový účet, nebo propojit OpenID k vašemu " +"již existujícímu účtu, pokud již takový máte." + +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" + +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "" #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Tato stránka není k dispozici v typu média která přijímáte." +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "" + +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "" + #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Pro odebírání, se musíte [přihlásit](%%action.login%%), nebo [registrovat](%%action.register%%) nový účet. Pokud již máte účet na [kompatibilních mikroblozích](%%doc.openmublog%%), vložte níže asdresu " +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Pro odebírání, se musíte [přihlásit](%%action.login%%), nebo [registrovat](%%" +"action.register%%) nový účet. Pokud již máte účet na [kompatibilních " +"mikroblozích](%%doc.openmublog%%), vložte níže asdresu " + +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 +msgid "Two user ids or screen_names must be supplied." +msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -1836,14 +2778,23 @@ msgstr "Nečekaná forma submission." msgid "Unexpected password reset." msgstr "Nečekané resetování hesla." +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" + #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "Neznámá verze OMB protokolu." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Pokud není uvedeno jinak, obsah těchto stránek chráněn autorským právem, patří přispěvatelů a je k dipozici pod" +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Pokud není uvedeno jinak, obsah těchto stránek chráněn autorským právem, " +"patří přispěvatelů a je k dipozici pod" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -1869,6 +2820,33 @@ msgstr "Nepodporovaná verze OMB." msgid "Unsupported image file format." msgstr "Nepodporovaný formát obrázku." +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" + +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -1877,8 +2855,24 @@ msgid "Upload" msgstr "Upload" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Zde nahrajte nový obrázek k vašemu profilu. Po tom co nahrajete obrázek ho již nemůžete editovat, proto se ujistěte že jde víceméně o čtverec." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Zde nahrajte nový obrázek k vašemu profilu. Po tom co nahrajete obrázek ho " +"již nemůžete editovat, proto se ujistěte že jde víceméně o čtverec." + +#: ../lib/settingsaction.php:91 +msgid "Upload a new profile image" +msgstr "" + +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -1920,6 +2914,16 @@ msgstr "Uživatel nemá profil." msgid "User nickname" msgstr "Přezdívka" +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 +msgid "User not found." +msgstr "" + +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" + #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -1946,16 +2950,41 @@ msgstr "Neplatný typ obrázku pro '%s'" msgid "Wrong size image at '%s'" msgstr "Neplatná velikost obrázku '%s'" +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 +msgid "Yes" +msgstr "" + #: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "Již máte toto OpenID!" +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "Již jste přihlášen" +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" + +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 +msgid "You are not friends with the specified user." +msgstr "" + #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "Zde můžeze změnit heslo." @@ -1964,20 +2993,36 @@ msgstr "Zde můžeze změnit heslo." msgid "You can create a new account to start posting notices." msgstr "Můžete vytvožit nový účet a začít posílat oznámení." +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Můžete odstranit OpenID z vašeho účtu, kliknutím na tlačítko \"Odebrat\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Můžete odstranit OpenID z vašeho účtu, kliknutím na tlačítko \"Odebrat\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Můžete odesílat nebo přijámat sdělení pomocí Jabber/GTalk [zpráv](%%doc.im%%).Zadejte svou adresu níže." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Můžete odesílat nebo přijámat sdělení pomocí Jabber/GTalk [zpráv](%%doc.im%" +"%).Zadejte svou adresu níže." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Zde můžete aktualizovat informace o vašem profilu, aby se lidé o vás mohli více dozvědět." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Zde můžete aktualizovat informace o vašem profilu, aby se lidé o vás mohli " +"více dozvědět." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -1999,6 +3044,38 @@ msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." msgid "You did not send us that profile" msgstr "Neodeslal jste nám profil" +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "" + +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" + +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Byl jste identifikován. Zadejte nové heslo" @@ -2015,8 +3092,12 @@ msgstr "Vaše přezdívka na tomto servu, nebo váš email zadaný při registra #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. Zde může spravovat vaše OpenID" +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. " +"Zde může spravovat vaše OpenID" #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -2072,6 +3153,11 @@ msgstr "asi před rokem" msgid "about an hour ago" msgstr "asi před hodinou" +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 +msgid "delete" +msgstr "" + #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 @@ -2089,18 +3175,766 @@ msgstr "odpověď" msgid "same as password above" msgstr "stejné jako heslo výše" +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 +msgid "unsupported file type" +msgstr "" + #: ../lib/util.php:1309 lib/util.php:1443 #, fuzzy msgid "« After" msgstr "« Novější" +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/disfavor.php:55 actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" + +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 +msgid "Could not delete favorite." +msgstr "" + +#: actions/disfavor.php:72 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" + +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" + +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "" + +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" + +#: actions/favor.php:70 +msgid "Disfavor" +msgstr "" + +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 +#, php-format +msgid "%s favorite notices" +msgstr "" + +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 +#, php-format +msgid "Feed of favorite notices of %s" +msgstr "" + +#: actions/inbox.php:28 actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "" + +#: actions/inbox.php:30 actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "" + +#: actions/inbox.php:53 actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" + +#: actions/invite.php:178 actions/invite.php:213 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" + +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 +msgid "Automatically login in the future; " +msgstr "" + +#: actions/login.php:122 actions/login.php:264 +msgid "For security reasons, please re-enter your " +msgstr "" + +#: actions/login.php:126 actions/login.php:268 +msgid "Login with your username and password. " +msgstr "" + +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 +msgid "That's too long. Max message size is 140 chars." +msgstr "" + +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "" + +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" + +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 +msgid "No such user" +msgstr "" + +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "" + +#: actions/noticesearch.php:95 actions/noticesearch.php:146 +msgid "Notice without matching profile" +msgstr "" + +#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgstr "" + +#: actions/openidsettings.php:46 actions/openidsettings.php:96 +msgid "If you want to add an OpenID to your account, " +msgstr "" + +#: actions/openidsettings.php:74 +msgid "Removing your only OpenID would make it impossible to log in! " +msgstr "" + +#: actions/openidsettings.php:87 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account " +msgstr "" + +#: actions/outbox.php:28 actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:30 actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:53 actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" + +#: actions/profilesettings.php:27 actions/profilesettings.php:69 +msgid "You can update your personal profile info here " +msgstr "" + +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +msgid "User without matching profile" +msgstr "" + +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. " +msgstr "" + +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" +msgstr "" + +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " +msgstr "" + +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 +msgid "Your nickname on this server, " +msgstr "" + +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 +msgid "Instructions for recovering your password " +msgstr "" + +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 +msgid "New password successfully saved. " +msgstr "" + +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/register.php:216 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" + +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " +msgstr "" + +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#, php-format +msgid "To subscribe, you can [login](%%action.login%%)," +msgstr "" + +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 +#, php-format +msgid "Feed for favorites of %s" +msgstr "" + +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showmessage.php:33 actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:42 actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:61 actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:66 actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/showstream.php:154 +msgid "Send a message" +msgstr "" + +#: actions/smssettings.php:312 actions/smssettings.php:464 +#, php-format +msgid "Mobile carrier for your phone. " +msgstr "" + +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 +msgid "Direct Messages You've Sent" +msgstr "" + +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "" + +#: actions/twitapidirect_messages.php:128 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "" + +#: actions/twitapidirect_messages.php:138 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" + +#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" + +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "" + +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "" + +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 +#, php-format +msgid "%s added your notice as a favorite" +msgstr "" + +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" + +#: actions/twittersettings.php:27 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" + +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 +msgid "Twitter settings" +msgstr "" + +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 +msgid "Twitter Account" +msgstr "" + +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 +msgid "Current verified Twitter account." +msgstr "" + +#: actions/twittersettings.php:63 +msgid "Twitter Username" +msgstr "" + +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 +msgid "No spaces, please." +msgstr "" + +#: actions/twittersettings.php:67 +msgid "Twitter Password" +msgstr "" + +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" + +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 +msgid "Could not verify your Twitter credentials!" +msgstr "" + +#: actions/twittersettings.php:137 +#, php-format +msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgstr "" + +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 +msgid "Unable to save your Twitter settings!" +msgstr "" + +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 +msgid "Twitter settings saved." +msgstr "" + +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 +msgid "That is not your Twitter account." +msgstr "" + +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 +msgid "Couldn't remove Twitter user." +msgstr "" + +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 +msgid "Twitter account removed." +msgstr "" + +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 +msgid "Couldn't save Twitter preferences." +msgstr "" + +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 +msgid "Twitter preferences saved." +msgstr "" + +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " +msgstr "" + +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " +msgstr "" + +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " +msgstr "" + +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 +msgid "Command complete" +msgstr "" + +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: classes/Command.php:96 classes/Command.php:113 +#, php-format +msgid "Subscriptions: %1$s\n" +msgstr "" + +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" + +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "" + +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "" + +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "" + +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "" + +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "" + +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 +#, php-format +msgid "Message too long - maximum is 140 characters, you sent %d" +msgstr "" + +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." +msgstr "" + +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" + +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." +msgstr "" + +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: classes/Command.php:344 classes/Command.php:392 +msgid "Commands:\n" +msgstr "" + +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:253 lib/mail.php:512 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" + +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " +msgstr "" + +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "" + +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" + +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" + +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" + +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 +msgid "Twitter" +msgstr "" + +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 +msgid "Twitter integration options" +msgstr "" + +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 +msgid "To" +msgstr "" + +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 +msgid "Could not parse message." +msgstr "" + #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s a přátelé" +#: actions/avatarsettings.php:76 +msgid "You can upload your personal avatar." +msgstr "" + #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -2109,6 +3943,51 @@ msgstr "%s a přátelé" msgid "Avatar settings" msgstr "Nastavení" +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +msgid "There was a problem with your session token. " +msgstr "" + +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -2116,21 +3995,75 @@ msgstr "Nastavení" msgid "Lost our file." msgstr "Žádné takové oznámení." +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 +msgid "No profile specified." +msgstr "" + +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 +msgid "No profile with that ID." +msgstr "" + #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Žádný takový uživatel." +#: actions/block.php:129 +msgid "Are you sure you want to block this user? " +msgstr "" + #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Již jste přihlášen" +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + #: actions/confirmaddress.php:159 -#, php-format, fuzzy +#, fuzzy, php-format msgid "The address \"%s\" has been " msgstr "Adresa byla odstraněna" +#: actions/deletenotice.php:73 +msgid "You are about to permanently delete a notice. " +msgstr "" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "" + +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -2154,6 +4087,20 @@ msgstr "Žádná přezdívka." msgid "No such group" msgstr "Žádné takové oznámení." +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "" + +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -2176,10 +4123,23 @@ msgid "Options saved." msgstr "Nastavení uloženo" #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Awaiting confirmation on this address. " msgstr "Chyba v ověřovacím kódu" +#: actions/emailsettings.php:139 actions/smssettings.php:150 +msgid "Make a new email address for posting to; " +msgstr "" + +#: actions/emailsettings.php:157 +msgid "Send me email when someone " +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -2188,7 +4148,28 @@ msgstr "Emailová adresa již existuje" #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro posílání zpráv." +msgstr "" +"Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat %s pro " +"posílání zpráv." + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -2196,6 +4177,13 @@ msgstr "Ověřující kód byl poslán na vloženou IM adresu. Musíte prokázat msgid "No notice content!" msgstr "Žádný obsah!" +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -2212,32 +4200,84 @@ msgstr "« Novější" msgid "Before" msgstr "Starší »" +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" +msgstr "" + #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Feed přítel uživatele: %s" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "Nelze aktualizovat uživatele" +#: actions/facebooksettings.php:65 +msgid "There was a problem saving your sync preferences!" +msgstr "" + #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "Nastavení uloženo" +#: actions/facebooksettings.php:90 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: actions/facebooksettings.php:97 +msgid "Send \"@\" replies to Facebook." +msgstr "" + #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "Profil" +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "Nastavení" +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 +msgid "Disfavor favorite" +msgstr "" + #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -2247,10 +4287,48 @@ msgid "Popular notices" msgstr "Žádné takové oznámení." #: actions/favorited.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Popular notices, page %d" msgstr "Žádné takové oznámení." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" + +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 +msgid "Featured users" +msgstr "" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" + +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" + +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" + +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -2263,6 +4341,36 @@ msgstr "Obrázek nahrán" msgid "Failed updating logo." msgstr "Nahrávání obrázku selhalo." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -2270,35 +4378,64 @@ msgid "Create a new group" msgstr "Vytvořit nový účet" #: actions/groupsearch.php:57 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. Minimální délka musí být alespoň 3 znaky" +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " +"Minimální délka musí být alespoň 3 znaky" #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Hledání lidí" +#: actions/imsettings.php:70 +msgid "You can send and receive notices through " +msgstr "" + +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Zasílat oznámení pomocí Jabber/GTalk" #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "Žádný potvrzující kód." +#: actions/joingroup.php:65 actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "" + #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Již jste přihlášen" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Nelze přesměrovat na server: %s" +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "" + +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "" + #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -2312,12 +4449,44 @@ msgstr "Žádné takové oznámení." msgid "You are not a member of that group." msgstr "Neodeslal jste nám profil" +#: actions/leavegroup.php:100 +msgid "You may not leave a group while you are its administrator." +msgstr "" + +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" + #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Nelze vytvořit OpenID z: %s" +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -2335,12 +4504,35 @@ msgstr "Nelze vytvořit odebírat" msgid "That's too long. " msgstr "Soubor je příliš velký" +#: actions/newmessage.php:134 +msgid "Don't send a message to yourself; " +msgstr "" + #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Sdělení" +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 +msgid "Ajax Error" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" + #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -2356,11 +4548,24 @@ msgstr "Odstranit OpenID" msgid "Other Settings" msgstr "Nastavení" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" + +#: actions/othersettings.php:93 +msgid "URL Auto-shortening" +msgstr "" + #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "Hledat" +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "" + #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -2379,19 +4584,39 @@ msgid "Password change" msgstr "Heslo uloženo" #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Není platnou mailovou adresou." +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "" + +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" + #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Neznámý profil" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + +#: actions/profilesettings.php:144 +msgid "Automatically subscribe to whoever " +msgstr "" + #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Neplatná adresa '%s'" @@ -2403,20 +4628,51 @@ msgstr "Nelze uložit profil" #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Veřejné zprávy" +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Veřejný Stream Feed" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 +msgid "Sorry, only invited people can register." +msgstr "" + #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí." +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -2445,20 +4701,60 @@ msgstr "Místo. Město, stát." #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní číslo." +msgstr "" +"až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní číslo." + +#: actions/register.php:471 +#, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgstr "" + +#: actions/register.php:495 +msgid "(You should receive a message by email " +msgstr "" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Odpovědi na %s" +#: actions/showfavorites.php:79 +#, php-format +msgid "%s favorite notices, page %d" +msgstr "" + +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Žádné takové oznámení." +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -2471,8 +4767,13 @@ msgstr "Žádné takové oznámení." msgid "Note" msgstr "Sdělení" +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Feed sdělení pro %s" @@ -2484,6 +4785,36 @@ msgstr "Feed sdělení pro %s" msgid "Members" msgstr "Členem od" +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" +msgstr "" + +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient " +msgstr "" + +#: actions/showstream.php:73 actions/showstream.php:78 +#, php-format +msgid "%s, page %d" +msgstr "" + #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -2496,11 +4827,43 @@ msgstr "Profil" msgid "User profile" msgstr "Uživatel nemá profil." +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 +msgid "User actions" +msgstr "" + +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 +msgid "Send a direct message to this user" +msgstr "" + +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 +msgid "Message" +msgstr "" + #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Odběratelé" +#: actions/showstream.php:533 lib/profileaction.php:235 +msgid "All groups" +msgstr "" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -2516,6 +4879,10 @@ msgstr "Zasílat oznámení pomocí Jabber/GTalk" msgid "A confirmation code was sent to the phone number you added. " msgstr "Tento potvrzující kód vám nepatří!" +#: actions/smssettings.php:453 actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -2537,27 +4904,32 @@ msgid "Subscribed" msgstr "Odebírat" #: actions/subscribers.php:50 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscribers" msgstr "Odběratelé" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" #: actions/subscribers.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people who " msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "Všechny odběry" #: actions/subscriptions.php:54 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions, page %d" msgstr "Všechny odběry" @@ -2567,7 +4939,7 @@ msgid "These are the people whose notices " msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" #: actions/subscriptions.php:69 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people whose " msgstr "Toto jsou lidé, kteří naslouchají %s sdělením" @@ -2578,10 +4950,15 @@ msgid "Jabber" msgstr "Žádné Jabber ID." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Mikroblog od %s" +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -2592,34 +4969,89 @@ msgstr "Nepřihlášen" msgid "No id argument." msgstr "Žádný takový dokument." +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:164 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Nelze uložin informace o obrázku" +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "Žádné takové oznámení." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Mikroblog od %s" +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" + +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" + #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Žádný požadavek nebyl nalezen!" +#: actions/twittersettings.php:71 +msgid "Add your Twitter account to automatically send " +msgstr "" + +#: actions/twittersettings.php:119 actions/twittersettings.php:122 +msgid "Twitter user name" +msgstr "" + #: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Nové heslo" +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 +msgid "Twitter Friends" +msgstr "" + +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + #: actions/twittersettings.php:341 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information " msgstr "Nelze smazat potvrzení emailu" @@ -2643,22 +5075,91 @@ msgstr "Vzdálený profil s nesouhlasícím profilem" msgid "Unsubscribed" msgstr "Odhlásit" +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" +msgstr "" + +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Problém při ukládání sdělení" +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Nahrávání obrázku selhalo." +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "" + +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#, php-format +msgid "%s - %s" +msgstr "" + +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "O nás" +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "" + +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -2679,6 +5180,10 @@ msgstr "Nápověda" msgid "Site notice" msgstr "Nové sdělení" +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -2689,12 +5194,39 @@ msgstr "Nové sdělení" msgid "Secondary site navigation" msgstr "Odběry" +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +msgid "All " +msgstr "" + +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Žádný takový uživatel." +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block" +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -2713,6 +5245,33 @@ msgstr "Veřejné" msgid "Favor this notice" msgstr "Žádné takové oznámení." +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "" + +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -2732,14 +5291,46 @@ msgstr "Popiš sebe a své zájmy ve 140 znacích" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Místo. Město, stát." +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" + +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Odhlásit" +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -2765,26 +5356,63 @@ msgstr "Neplatné jméno nebo heslo" msgid "Sign up for a new account" msgstr "Vytvořit nový účet" +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "%1 od teď naslouchá tvým sdělením v %2" #: lib/mail.php:254 lib/mail.php:253 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Location: %s\n" msgstr "Umístění %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Moje stránky: %s\n" +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + +#: lib/mail.php:461 lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:465 +#, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" + #: lib/mail.php:555 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s just added your notice from %2$s" msgstr "%1 od teď naslouchá tvým sdělením v %2" +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +msgid "From" +msgstr "" + +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "" + #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -2801,16 +5429,68 @@ msgstr "6 a více znaků" msgid "in reply to" msgstr "odpověd na ..." +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "" + #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "odpověď" +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "" + +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 +msgid "Delete" +msgstr "" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "" + #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Veřejné" +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" + +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -2821,16 +5501,35 @@ msgstr "Hledání lidí" msgid "Notice" msgstr "Sdělení" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People %s subscribes to" msgstr "Vzdálený odběr" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People subscribed to %s" msgstr "Vzdálený odběr" +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -2842,24 +5541,40 @@ msgstr "Uživatel nemá profil." msgid "Subscribe to this user" msgstr "Odběr autorizován" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Žádný takový uživatel." +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 +msgid "Unblock" +msgstr "" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed přítel uživatele: %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed přítel uživatele: %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed přítel uživatele: %s" @@ -2868,29 +5583,104 @@ msgstr "Feed přítel uživatele: %s" msgid "You and friends" msgstr "%s a přátelé" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Obrázek nahrán" +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Mikroblog od %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. Minimální délka musí být alespoň 3 znaky" +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Hledej uživatele na %%site.name%% podle jejich jména, místa, nebo zájmů. " +"Minimální délka musí být alespoň 3 znaky" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr " Hledej \"%s\" ve Streamu" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." msgstr "Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 @@ -2908,10 +5698,35 @@ msgstr "Veřejný Stream Feed" msgid "Public Stream Feed (Atom)" msgstr "Veřejný Stream Feed" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr " až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní číslo." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" až na tyto privátní data: heslo, emailová adresa, IM adresa, telefonní " +"číslo." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -2919,31 +5734,47 @@ msgstr " až na tyto privátní data: heslo, emailová adresa, IM adresa, telefo msgid "Created" msgstr "Vytvořit" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Žádné takové oznámení." #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "Profil" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Feed sdělení pro %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Feed sdělení pro %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Feed sdělení pro %s" +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -2956,11 +5787,46 @@ msgstr "Obrázek" msgid "Edit profile settings" msgstr "Nastavené Profilu" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." msgstr "Tento potvrzující kód vám nepatří!" +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -2974,31 +5840,260 @@ msgstr "Tento potvrzující kód vám nepatří!" msgid "No such user!" msgstr "Žádný takový uživatel." +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Nelze smazat potvrzení emailu" #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, klikněte na \"Zrušit\"" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " +"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " +"klikněte na \"Zrušit\"" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte účet s OpenID." +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Pokud již máte účet, přihlašte se pomocí přezdívky a hesla. A poté propojte " +"účet s OpenID." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1 naslouchá vašim sdělením na %s. \n\n %3\n\nS úctou váš,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1 naslouchá vašim sdělením na %s. \n" +"\n" +"\t%3\n" +"\n" +"S úctou váš,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Hledat" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -3015,15 +6110,19 @@ msgid "Block this user from this group" msgstr "Žádný takový uživatel." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Uživatel nemá profil." #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s a přátelé" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -3039,26 +6138,56 @@ msgstr "Umístění" msgid "Do not delete this notice" msgstr "Žádné takové oznámení." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Neplatná adresa '%s'" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Přezdívku již někdo používá. Zkuste jinou" +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Nelze uložin informace o obrázku" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -3069,11 +6198,28 @@ msgstr "Nové sdělení" msgid "No notice" msgstr "Nové sdělení" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "Není platnou přezdívkou." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -3090,6 +6236,32 @@ msgstr "Neodeslal jste nám profil" msgid "Block user from group" msgstr "Žádný takový uživatel." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -3098,42 +6270,250 @@ msgstr "Žádný takový uživatel." msgid "Couldn't update your design." msgstr "Nelze aktualizovat uživatele" +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "Nastavení uloženo" +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Žádné výsledky." +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Uživatel nemá profil." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Nelze uložit profil" +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. Zde může spravovat vaše OpenID" +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) vám dovoluje použít stejný účet na více stránkách. " +"Zde může spravovat vaše OpenID" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Nastavené Profilu" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Pokud jste zapomněl nebo stratil heslo, můžete si nechat zaslat nové na vaší emailovou adresu uloženou u vašeho účtu." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Pokud jste zapomněl nebo stratil heslo, můžete si nechat zaslat nové na vaší " +"emailovou adresu uloženou u vašeho účtu." #: actions/recoverpassword.php:158 #, fuzzy @@ -3155,74 +6535,217 @@ msgstr "Chyba v ověřovacím kódu" msgid "Subscribe to a remote user" msgstr "Odběr autorizován" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "Žádné takové oznámení." +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed sdělení pro %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed sdělení pro %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed sdělení pro %s" +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Žádný takový uživatel." +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Feed sdělení pro %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1 od teď naslouchá tvým sdělením v %2" #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed sdělení pro %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed sdělení pro %s" +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "Nelze aktualizovat uživatele" +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Nelze aktualizovat uživatele" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1 statusů na %2" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Mikroblog od %s" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -3233,36 +6756,127 @@ msgstr "Všechny odběry" msgid "Profile design" msgstr "Nastavené Profilu" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Neodeslal jste nám profil" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problém při ukládání sdělení" +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Uživatel nemá profil." +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profil" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Upload" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Změnit heslo" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -3278,39 +6892,174 @@ msgstr "Hledat" msgid "Links" msgstr "Přihlásit" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Žádný takový uživatel." #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Žádný takový uživatel." +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "Žádný obsah!" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "Hledat" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "Stránka není platnou URL." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "Žádné takové oznámení." +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" @@ -3319,8 +7068,12 @@ msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" msgid "Could not unfollow user: User not found." msgstr "Nelze přesměrovat na server: %s" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" @@ -3330,7 +7083,7 @@ msgid "You are already a member of that group." msgstr "Již jste přihlášen" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Nelze přesměrovat na server: %s" @@ -3340,26 +7093,64 @@ msgid "You are not a member of this group." msgstr "Neodeslal jste nám profil" #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Nelze vytvořit OpenID z: %s" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Profil" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Neodeslal jste nám profil" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Obrázek nahrán" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "Nepodporovaný formát obrázku." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Mikroblog od %s" + #: actions/finishremotesubscribe.php:80 #, fuzzy msgid "User being listened to does not exist." @@ -3390,23 +7181,52 @@ msgstr "Žádné takové oznámení." msgid "Cannot read file." msgstr "Žádné takové oznámení." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Mikroblog od %s" + #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "Tato stránka není k dispozici v typu média která přijímáte." #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? [Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%action.openidlogin%%)." +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Přihlaste se pomocí vaší prezdívky a hesla. Zatím nejste zaregistrován? " +"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" +"action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Mikroblog od %s" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Všechny položky obsahující \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Připojit" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Popiš sebe a své zájmy ve 140 znacích" @@ -3416,47 +7236,76 @@ msgid "Describe yourself and your interests" msgstr "Popiš sebe a své zájmy ve 140 znacích" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Není platnou adresou profilu (není YADIS dokumentem)." +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Nelze získat řetězec požadavku." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed sdělení pro %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed sdělení pro %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Feed sdělení pro %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Odpovědi na %s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed přítel uživatele: %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed přítel uživatele: %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Feed přítel uživatele: %s" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" msgstr "Feed sdělení pro %s" @@ -3471,32 +7320,79 @@ msgid "SMS is not available." msgstr "Tato stránka není k dispozici v typu média která přijímáte." #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed sdělení pro %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, klikněte na \"Zrušit\"" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat " +"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " +"klikněte na \"Zrušit\"" #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru je:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Odběr byl potvrzen, ale neprošla žádná callback adresa. Zkontrolujte v " +"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " +"je:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v nápovědě jak správně postupovat při zamítání odběru" +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v " +"nápovědě jak správně postupovat při zamítání odběru" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Nelze přečíst adresu obrázku '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Neplatný typ obrázku pro '%s'" @@ -3511,12 +7407,35 @@ msgid "Site content license" msgstr "Nové sdělení" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "Nelze přesměrovat na server: %s" +msgstr "Nelze aktualizovat uživatele" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Odpovědi na %s" @@ -3525,38 +7444,138 @@ msgstr "Odpovědi na %s" msgid "Error saving notice." msgstr "Problém při ukládání sdělení" +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Žádný potvrzující kód." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "Popiš sebe a své zájmy ve 140 znacích" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Popiš sebe a své zájmy ve 140 znacích" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Feed sdělení pro %s" +msgstr "Nové sdělení" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1 od teď naslouchá tvým sdělením v %2" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " od " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Nelze aktualizovat uživatele" + #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Nové sdělení" - diff --git a/locale/de/LC_MESSAGES/statusnet.mo b/locale/de/LC_MESSAGES/statusnet.mo index 47a10db8ba23528823527e1668fd7b6e67f527b5..5687793fa5f12cabcae29c830367b47c244f536e 100644 GIT binary patch delta 24620 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 Xif2Mqh zZ6g&wB|n|;7x^yXw*DeI);4@|N1>i$yYD!;BP8dJoBI;NcEo=@BY4M$H>$ev@t(?Y zwG!eg#MOw4%hkSJg^tN%Qqoh>QY$o0%1Ex|iI0n`S)p>}3UO6Dm21{Ys9vi|^~Ggx z&h)QZGhxTBn~!s5?=o^A71MX@|0CLOaj!p<7B~NM@#5Z(o?E>8&!`=}AHDDACM^zq zT5fTlC#81`ei|3xdUh>y`ERv6Sr1*ex9sBY=64Ht8jQ|JtI+D`zEKlKrw&f{WMu@n zbt%r=5$KMjR_Sc+j{yPEQR&fH`E$GN-R#_uJ~*j=R!SZ>!1b?Kv0~=)dEIr2WEIZm zPWR7@E$9}=oEhXMWL^()g91k+r3_En9qe{v2wB|=yFJwS#ZWiKlDTuDTOzZ55jQ5Y zY!SC)){r7@d%vJjp3Y-aGBT1!c^V8DkTyCsBkM$%+c!tfsB}-WQKLtWOwOuN$_;Zf zYm|1w{{1mN^HFK{)BMTlo+c@&gOmFwr+Nk^r)Qmxa{Y1zMn;)38E^MwH@BP3(<&`BBQ0~@AU8B?${?26FDX6qm%(nmXJ%y# zaibZPo@;%Io0-i-8;*2q1kwus6n@dKuW5yUwl)*rbX4-_)Pc$WrrRf_r;kk=mGN&z z!{pS_855F6r6!H|UoE>_p5)YwK@??F{I`1M&T(!;u;>3Ylj#}nM*4Z0WF8*p7GzT> z35~|PEn(hx_qYGENi!Eta1Ui>pXip#95>O;r!C~k+BDHU@0Z!b>xO4OoXoD+H`z_h z%uq7i>z4C9aAsStTPAD1*WKp#>;Pr8ndUz6cat+)yyUht`+UVqZsGiydzZTJXLe}f M7R#LWs@v-S0Z&&ZZU6uP diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index d63660b843..269a68711c 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -2,20 +2,16 @@ # # Author@translatewiki.net: Umherirrender # -- -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:04+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:43:08+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: out-statusnet\n" @@ -29,8 +25,11 @@ msgstr "Suche im Stream nach „%s“" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, Telefonnummer." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, " +"Telefonnummer." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -52,8 +51,59 @@ msgstr "%1$s hat Dich eingeladen, auch bei %2$s mitzumachen." #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s hat Dich eingeladen, auch bei %2$s mitzumachen. (%3$s).\n\n%2$s ist ein Microblogging-Service der Dich über Deine Freunde auf dem Laufenden hält und Deine Freunde über Dich informiert. \n\nDu kannst Neuigkeiten über Dich und Deine Gedanken verbreiten. Lerne neue Leute mit ähnlichen Interessen kennen. \n\n%1$s sagte:\n\n%4$s\n\nDu kannst die Profilseite von %1$s bei %2$s hier finden:\n\n%5$s\n\nWenn Du den Service ausprobieren möchtest klicke den Link unten an, um die Einladung anzunehmen.\n\n%6$s\n\nWenn nicht, ignoriere diese Nachricht. Danke für Deine Geduld und Deine Zeit\n\nSchöne Grüße von %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s hat Dich eingeladen, auch bei %2$s mitzumachen. (%3$s).\n" +"\n" +"%2$s ist ein Microblogging-Service der Dich über Deine Freunde auf dem " +"Laufenden hält und Deine Freunde über Dich informiert. \n" +"\n" +"Du kannst Neuigkeiten über Dich und Deine Gedanken verbreiten. Lerne neue " +"Leute mit ähnlichen Interessen kennen. \n" +"\n" +"%1$s sagte:\n" +"\n" +"%4$s\n" +"\n" +"Du kannst die Profilseite von %1$s bei %2$s hier finden:\n" +"\n" +"%5$s\n" +"\n" +"Wenn Du den Service ausprobieren möchtest klicke den Link unten an, um die " +"Einladung anzunehmen.\n" +"\n" +"%6$s\n" +"\n" +"Wenn nicht, ignoriere diese Nachricht. Danke für Deine Geduld und Deine " +"Zeit\n" +"\n" +"Schöne Grüße von %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -63,8 +113,20 @@ msgstr "%1$s hat deine Nachrichten auf %2$s abonniert." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s hat deine Nachrichten auf %2$s abonniert.\n\n %3$s\n\nGruß,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s hat deine Nachrichten auf %2$s abonniert.\n" +"\n" +"\t%3$s\n" +"\n" +"Gruß,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -140,14 +202,22 @@ msgstr "%s Nachrichten von allen!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Sie sollten in Kürze eine E-Mail mit der Anleitung zur Überprüfung Ihrer Mailadresse erhalten.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Sie sollten in Kürze eine E-Mail mit der Anleitung zur Überprüfung Ihrer " +"Mailadresse erhalten.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%site.broughtbyurl%%)." +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" +"site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -157,7 +227,9 @@ msgstr "**%%site.name%%** ist ein Microbloggingdienst." #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "Lizenz. Die ursprünglichen Autoren sollten mit ihrem vollen Namen oder Nutzernamen genannt werden." +msgstr "" +"Lizenz. Die ursprünglichen Autoren sollten mit ihrem vollen Namen oder " +"Nutzernamen genannt werden." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -170,7 +242,9 @@ msgstr "1-64 Kleinbuchstaben oder Ziffern, keine Sonder- oder Leerzeichen" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 kleingeschriebene Buchstaben oder Zahlen, keine Satz- oder Leerzeichen. Pflicht." +msgstr "" +"1-64 kleingeschriebene Buchstaben oder Zahlen, keine Satz- oder Leerzeichen. " +"Pflicht." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -191,17 +265,31 @@ msgstr "6 oder mehr Buchstaben. Pflicht." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Ein Bestätigungscode wurde an die IM Adresse geschickt, die du hinzugefügt hast. Du musst zulassen, dass %s dir Nachrichten schicken darf." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Ein Bestätigungscode wurde an die IM Adresse geschickt, die du hinzugefügt " +"hast. Du musst zulassen, dass %s dir Nachrichten schicken darf." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Ein Bestätigungscode wurde an die angegebene E-Mail Adresse geschickt. Überprüfen Sie Ihren Posteingang (auch den Spamordner!) für den Code und Anweisungen, wie dieser benutzt wird." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Ein Bestätigungscode wurde an die angegebene E-Mail Adresse geschickt. " +"Überprüfen Sie Ihren Posteingang (auch den Spamordner!) für den Code und " +"Anweisungen, wie dieser benutzt wird." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf den Code und die Anweisungen, um ihn zu benutzen." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer " +"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf " +"den Code und die Anweisungen, um ihn zu benutzen." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -326,7 +414,9 @@ msgstr "Adresse" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 #: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" -msgstr "Addressen von Freunden, die Du einladen möchtest. (Jeweils eine Addresse pro Zeile)" +msgstr "" +"Addressen von Freunden, die Du einladen möchtest. (Jeweils eine Addresse pro " +"Zeile)" #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 @@ -381,8 +471,11 @@ msgstr "Automatisch anmelden; nicht bei gemeinsam genutzten PCs einsetzen!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-Menschen)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-" +"Menschen)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -401,13 +494,22 @@ msgstr "Avatar aktualisiert." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Warte auf Bestätigung dieser Adresse. Eine Nachricht mit weiteren Anweisung sollte in deinem Jabber/GTalk Konto eingehen. (Hast du %s zu deiner Freundeliste hinzugefügt?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Warte auf Bestätigung dieser Adresse. Eine Nachricht mit weiteren Anweisung " +"sollte in deinem Jabber/GTalk Konto eingehen. (Hast du %s zu deiner " +"Freundeliste hinzugefügt?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Warte auf die Bestätigung dieser Adresse. Prüfe Deinen Nachrichteneingang (auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Warte auf die Bestätigung dieser Adresse. Prüfe Deinen Nachrichteneingang " +"(auch den Spam-Ordner) auf eine Nachricht mit weiteren Instruktionen." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -544,8 +646,37 @@ msgstr "Bestätigungscode nicht gefunden." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Hallo %s, herzlich willkommen auf %%%%site.name%%%%.\n\nDanke für deine Anmeldung, wir hoffen das dir der Service gefällt.\n\nAls nächstes möchtest du eventuell …\n\n* zu [deinem Profil gehen](%s) und deine erste Nachricht schreiben\n* deine [Jabber/GTalk Adresse](%%%%action.imsettings%%%%) eintragen damit du Nachrichten über diese Dienste schreiben kannst.\n* [Leute suchen](%%%%action.peoplesearch%%%%) die du kennst oder die gleichen Interessen wie du haben.\n* deine [Profildaten ergänzen](%%%%action.profilesettings%%%%) um mehr über dich zu veröffentlichen\n* die [Dokumentation](%%%%doc.help%%%%) lesen um mehr über weitere Features zu erfahren" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Hallo %s, herzlich willkommen auf %%%%site.name%%%%.\n" +"\n" +"Danke für deine Anmeldung, wir hoffen das dir der Service gefällt.\n" +"\n" +"Als nächstes möchtest du eventuell …\n" +"\n" +"* zu [deinem Profil gehen](%s) und deine erste Nachricht schreiben\n" +"* deine [Jabber/GTalk Adresse](%%%%action.imsettings%%%%) eintragen damit du " +"Nachrichten über diese Dienste schreiben kannst.\n" +"* [Leute suchen](%%%%action.peoplesearch%%%%) die du kennst oder die " +"gleichen Interessen wie du haben.\n" +"* deine [Profildaten ergänzen](%%%%action.profilesettings%%%%) um mehr über " +"dich zu veröffentlichen\n" +"* die [Dokumentation](%%%%doc.help%%%%) lesen um mehr über weitere Features " +"zu erfahren" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -952,8 +1083,12 @@ msgid "Find people on this site" msgstr "Finde Leute auf dieser Seite" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort ein, bevor die Änderungen an ihren Einstellungen übernommen werden." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort " +"ein, bevor die Änderungen an ihren Einstellungen übernommen werden." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1013,7 +1148,8 @@ msgstr "Homepage" #: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/register.php:211 msgid "Homepage is not a valid URL." -msgstr "Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." +msgstr "" +"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 #: actions/emailsettings.php:173 actions/emailsettings.php:178 @@ -1038,16 +1174,29 @@ msgstr "IM Einstellungen" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Wenn du schon ein Konto hast, dann melde dich mit Nutzernamen und Passwort an, um deine OpenID zu verknüpfen." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Wenn du schon ein Konto hast, dann melde dich mit Nutzernamen und Passwort " +"an, um deine OpenID zu verknüpfen." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Wenn du deinem Konto eine OpenID hinzufügen möchtest, dann trage sie hier ein und klicke auf „Hinzufügen“." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Wenn du deinem Konto eine OpenID hinzufügen möchtest, dann trage sie hier " +"ein und klicke auf „Hinzufügen“." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-Mail-Adresse, die in deinem Benutzerkonto eingetragen ist, ein neues zusenden lassen." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-" +"Mail-Adresse, die in deinem Benutzerkonto eingetragen ist, ein neues " +"zusenden lassen." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1077,8 +1226,12 @@ msgstr "Falscher Benutzername oder Passwort." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Anweisungen für die Wiederherstellung deines Passworts wurden an deine hinterlegte E-Mail-Adresse geschickt." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Anweisungen für die Wiederherstellung deines Passworts wurden an deine " +"hinterlegte E-Mail-Adresse geschickt." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1174,8 +1327,14 @@ msgstr "Lade neue Leute ein" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr " Es wird mit der Microbloggingsoftware [StatusNet](http://status.net/) (Version %s) betrieben, die unter der [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +" Es wird mit der Microbloggingsoftware [StatusNet](http://status.net/) " +"(Version %s) betrieben, die unter der [GNU Affero General Public License]" +"(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1185,8 +1344,13 @@ msgstr "Diese Jabber ID wird bereits von einem anderen Benutzer verwendet." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Jabber- oder GoogleTalk-Adresse, z.B. \"UserName@example.org\". Aber versichere dich zuerst, dass du %s in deine Kontaktliste in deinem IM Programm oder GTalk aufgenommen hast." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber- oder GoogleTalk-Adresse, z.B. \"UserName@example.org\". Aber " +"versichere dich zuerst, dass du %s in deine Kontaktliste in deinem IM " +"Programm oder GTalk aufgenommen hast." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1253,8 +1417,14 @@ msgstr "Mit [OpenID](%%doc.openid%%)-Konto anmelden." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? [Registriere](%%action.register%%) ein neues Konto oder versuche es mit [OpenID](%%action.openidlogin%%)." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? " +"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit " +"[OpenID](%%action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1277,7 +1447,9 @@ msgstr "Passwort vergessen?" #: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "Neue E-Mail-Adresse für Postings aktivieren; die alte wird automatisch deaktiviert." +msgstr "" +"Neue E-Mail-Adresse für Postings aktivieren; die alte wird automatisch " +"deaktiviert." #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 @@ -1299,8 +1471,13 @@ msgstr "Microblog von %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Netzbetreiber deines Telefons. Falls du einen Betreiber kennst, der SMS-via-Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Netzbetreiber deines Telefons. Falls du einen Betreiber kennst, der SMS-via-" +"Email beherrscht, aber noch in der Liste fehlt, schicke uns eine Mail unter %" +"s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1396,7 +1573,9 @@ msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. Leerzeichen sind nicht erlaubt." +msgstr "" +"Der Nutzername darf nur aus Kleinbuchstaben und Ziffern bestehen. " +"Leerzeichen sind nicht erlaubt." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1835,7 +2014,9 @@ msgstr "OpenID-Einstellungen" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 #: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." -msgstr "Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht anfügen." +msgstr "" +"Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht " +"anfügen." #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 @@ -1922,8 +2103,14 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf „Abbrechen“." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " +"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " +"„Abbrechen“." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2106,8 +2293,12 @@ msgid "Remove OpenID" msgstr "Entferne OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Wenn du deine einzige OpenID entfernst, kannst du dich nicht mehr anmelden! Falls du sie also entfernen musst, füge zuerst eine neue OpenID hinzu." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Wenn du deine einzige OpenID entfernst, kannst du dich nicht mehr anmelden! " +"Falls du sie also entfernen musst, füge zuerst eine neue OpenID hinzu." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2203,13 +2394,23 @@ msgstr "Stream-Feed suchen" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Dursuche den Inhalt der Nachrichten auf %%site.name%%. Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 Zeichen bestehen." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Dursuche den Inhalt der Nachrichten auf %%site.name%%. Trenne mehrere " +"Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 " +"Zeichen bestehen." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 Zeichen bestehen." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. " +"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " +"mindestens 3 Zeichen bestehen." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2244,13 +2445,19 @@ msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Schicke mir Nachrichten per SMS; ich weiss, dass mir dadurch hohe Kosten bei meinem Netzbetreiber entstehen können." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Schicke mir Nachrichten per SMS; ich weiss, dass mir dadurch hohe Kosten bei " +"meinem Netzbetreiber entstehen können." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/GTalk." +msgstr "" +"Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/" +"GTalk." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2456,13 +2663,15 @@ msgstr "Diese Telefonnummer wird bereits von einem anderen Benutzer verwendet." #: actions/twitapistatuses.php:251 lib/facebookaction.php:477 #: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." -msgstr "Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." +msgstr "" +"Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 #: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 #: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." -msgstr "Das war zu lang. Die Länge einer Nachricht ist auf 255 Zeichen beschränkt." +msgstr "" +"Das war zu lang. Die Länge einer Nachricht ist auf 255 Zeichen beschränkt." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 @@ -2482,13 +2691,25 @@ msgstr "Die Adresse wurde entfernt." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements bestätigt werden. Dein Abonnement-Token ist:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL " +"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " +"bestätigt werden. Dein Abonnement-Token ist:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements vollständig abgelehnt werden. Dein Abonnement-Token ist:" +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " +"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " +"vollständig abgelehnt werden. Dein Abonnement-Token ist:" #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2514,22 +2735,35 @@ msgstr "Dies sind die Leute, deren Nachrichten du liest." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" -msgstr "Diese Leute sind bereits registrierte Benutzer und Du hast Sie automatisch abonniert." +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Diese Leute sind bereits registrierte Benutzer und Du hast Sie automatisch " +"abonniert." #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Der Bestätigungscode ist zu alt. Bitte fange nochmal von vorne an." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Dieses Formular sollte automatisch übermittelt werden. Wenn nicht, dann klicke auf „Senden“, um zu deinem OpenID-Anbieter zu gelangen." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Dieses Formular sollte automatisch übermittelt werden. Wenn nicht, dann " +"klicke auf „Senden“, um zu deinem OpenID-Anbieter zu gelangen." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Dies ist das erste Mal, dass du dich bei %s anmeldest. Deshalb müssen wir deine OpenID mit einem lokalen Konto verbinden. Du kannst entweder ein neues Konto erstellen oder mit einem vorhandenen Konto anmelden." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Dies ist das erste Mal, dass du dich bei %s anmeldest. Deshalb müssen wir " +"deine OpenID mit einem lokalen Konto verbinden. Du kannst entweder ein neues " +"Konto erstellen oder mit einem vorhandenen Konto anmelden." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2578,8 +2812,15 @@ msgstr "Keine Zeitzone ausgewählt." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Für ein Abonnement kannst du dich entweder [anmelden](%%action.login%%) oder ein neues Konto [registrieren](%%action.register%%). Wenn du schon ein Konto auf einer [kompatiblen Microbloggingsite](%%doc.openmublog%%) hast, dann gib deine Profil-URL unten an." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Für ein Abonnement kannst du dich entweder [anmelden](%%action.login%%) oder " +"ein neues Konto [registrieren](%%action.register%%). Wenn du schon ein Konto " +"auf einer [kompatiblen Microbloggingsite](%%doc.openmublog%%) hast, dann gib " +"deine Profil-URL unten an." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2593,7 +2834,8 @@ msgstr "Zwei IDs oder Benutzernamen müssen angegeben werden." #: actions/register.php:444 actions/profilesettings.php:117 #: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" -msgstr "URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen Site" +msgstr "" +"URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen Site" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 #: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 @@ -2633,8 +2875,12 @@ msgid "Unknown version of OMB protocol." msgstr "Unbekannte OMB-Protokollversion." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Wenn nicht anders angegeben unterstehen die Inhalte dieser Site dem Urheberrecht der Autoren und sind unter der" +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Wenn nicht anders angegeben unterstehen die Inhalte dieser Site dem " +"Urheberrecht der Autoren und sind unter der" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2695,8 +2941,17 @@ msgid "Upload" msgstr "Hochladen" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Hier kannst du einen neuen „Avatar“ (Nutzerbild) hochladen. Du kannst das Bild nach dem Hochladen nicht mehr verändern, also stell bitte sicher, dass es halbwegs quadratisch ist. Es muss auch unter der Lizenz der Site zur Verfügung gestellt werden. Nutze also ein Bild, das dir gehört und das du auch weitergeben möchtest." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Hier kannst du einen neuen „Avatar“ (Nutzerbild) hochladen. Du kannst das " +"Bild nach dem Hochladen nicht mehr verändern, also stell bitte sicher, dass " +"es halbwegs quadratisch ist. Es muss auch unter der Lizenz der Site zur " +"Verfügung gestellt werden. Nutze also ein Bild, das dir gehört und das du " +"auch weitergeben möchtest." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2704,7 +2959,8 @@ msgstr "Neues Bild für dein Profil hochladen" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "Lade deine Freunde und Kollegen ein diesen Dienst zu nutzen." #: ../actions/register.php:159 ../actions/register.php:162 @@ -2712,7 +2968,9 @@ msgstr "Lade deine Freunde und Kollegen ein diesen Dienst zu nutzen." #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "Wird nur für Updates, wichtige Mitteilungen und zur Passwortwiederherstellung verwendet" +msgstr "" +"Wird nur für Updates, wichtige Mitteilungen und zur " +"Passwortwiederherstellung verwendet" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -2798,8 +3056,12 @@ msgid "You already have this OpenID!" msgstr "Diese OpenID hast du schon angegeben!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion ist irreversibel." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion " +"ist irreversibel." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2831,19 +3093,30 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kannst SMS per E-Mail empfangen von %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Du kannst eine OpenID aus deinem Konto entfernen, indem du auf „Entfernen“ klickst." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Du kannst eine OpenID aus deinem Konto entfernen, indem du auf „Entfernen“ " +"klickst." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und senden. Stelle deine Adresse und Einstellungen unten ein." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und " +"senden. Stelle deine Adresse und Einstellungen unten ein." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Du kannst dein Profil auf den neusten Stand bringen, damit andere Leute mehr über dich erfahren können." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Du kannst dein Profil auf den neusten Stand bringen, damit andere Leute mehr " +"über dich erfahren können." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2858,7 +3131,8 @@ msgstr "Du kannst ein lokales Abonnement erstellen!" #: actions/finishopenidlogin.php:43 actions/register.php:149 #: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." -msgstr "Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." +msgstr "" +"Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 #: actions/updateprofile.php:67 actions/updateprofile.php:69 @@ -2867,8 +3141,24 @@ msgstr "Dieses Profil hast du uns nicht geschickt" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n\nSchicke eine E-Mail an %2$s um eine neue Nachricht hinzuzufügen.\n\nWeitere E-Mail-Anweisungen unter %3$s.\n\nViele Grüße,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n" +"\n" +"Schicke eine E-Mail an %2$s um eine neue Nachricht hinzuzufügen.\n" +"\n" +"Weitere E-Mail-Anweisungen unter %3$s.\n" +"\n" +"Viele Grüße,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2884,8 +3174,13 @@ msgstr "Du musst angemeldet sein, um andere Benutzer zu %s einzuladen" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Du wirst benachrichtigt, wenn deine Einladungen angenommen wurden und sich die Empfänger auf der Seite registriert haben. Danke, dass du uns hilfst zu wachsen!" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Du wirst benachrichtigt, wenn deine Einladungen angenommen wurden und sich " +"die Empfänger auf der Seite registriert haben. Danke, dass du uns hilfst zu " +"wachsen!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2903,8 +3198,12 @@ msgstr "Dein Benutzername oder E-Mail-Adresse auf diesem Server." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben " +"Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3045,12 +3344,14 @@ msgstr "Zu Favoriten hinzufügen" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert." +msgstr "" +"Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." -msgstr "Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." +msgstr "" +"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 #: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 @@ -3098,12 +3399,18 @@ msgstr "Posteingang von %s" #: actions/inbox.php:53 actions/inbox.php:115 #, fuzzy msgid "This is your inbox, which lists your incoming private messages." -msgstr "Das hier ist dein Posteingang, der deine eingehenden privaten Nachrichten enthält." +msgstr "" +"Das hier ist dein Posteingang, der deine eingehenden privaten Nachrichten " +"enthält." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s hat dich zu %2$s (%3$s) eingeladen.\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s hat dich zu %2$s (%3$s) eingeladen.\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3123,7 +3430,8 @@ msgstr "Anmelden mit deinem Benutzernamen und Passwort. " #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." -msgstr "Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." +msgstr "" +"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." #: actions/newmessage.php:65 actions/newmessage.php:128 #: actions/newmessage.php:155 actions/newmessage.php:158 @@ -3145,8 +3453,10 @@ msgstr "Du kannst diesem Benutzer keine Nachricht schicken." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach leise." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Schicke dir selbst keine Nachrichten; sag es dir stattdessen einfach leise." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3166,7 +3476,8 @@ msgstr "Nachricht ohne entsprechendes Profil" #: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "Mit [OpenID](%%doc.openid%%) kannst du dich auf mehreren Seiten anmelden " +msgstr "" +"Mit [OpenID](%%doc.openid%%) kannst du dich auf mehreren Seiten anmelden " #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " @@ -3174,7 +3485,8 @@ msgstr "Wenn du deinem Konto eine OpenID hinzufügen möchtest, " #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Das Entfernen deiner einzigen OpenID würde die Anmeldung unmöglich machen!" +msgstr "" +"Das Entfernen deiner einzigen OpenID würde die Anmeldung unmöglich machen!" #: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " @@ -3192,11 +3504,13 @@ msgstr "Postausgang von %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten." +msgstr "" +"Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " msgstr "Suche nach Leuten auf %%site.name%% nach Name, Ort oder Interessen. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3248,8 +3562,12 @@ msgstr "Das Passwort muss aus 6 oder mehr Zeichen bestehen." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Gratuliere, %s! Und willkommen auf %%%%site.name%%%%. Jetzt möchtest du vielleicht …" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Gratuliere, %s! Und willkommen auf %%%%site.name%%%%. Jetzt möchtest du " +"vielleicht …" #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3345,7 +3663,9 @@ msgstr "Empfänger nicht gefunden." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen du nicht befreundet bist." +msgstr "" +"Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen " +"du nicht befreundet bist." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3372,12 +3692,19 @@ msgstr "%s hat deine Nachricht als Favorit gespeichert" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "%1$s hat soeben deine Nachricht von %2$s zu seinen Favoriten hinzugefügt.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"%1$s hat soeben deine Nachricht von %2$s zu seinen Favoriten hinzugefügt.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter zu übermitteln, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter " +"zu übermitteln, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3424,8 +3751,12 @@ msgstr "Hier meine Twitter-Freunde abonnieren." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "Der Benutzername darf nur Zahlen, Groß- und Kleinbuchstaben und Unterstriche (_) enthalten. Maximal 15 Zeichen." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"Der Benutzername darf nur Zahlen, Groß- und Kleinbuchstaben und Unterstriche " +"(_) enthalten. Maximal 15 Zeichen." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3435,7 +3766,8 @@ msgstr "Das Überprüfen deiner Twitter-Berechtigungen war nicht erfolgreich!" #: actions/twittersettings.php:137 #, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Es konnten keine Kontoinformationen zu „%s“ von Twitter empfangen werden." +msgstr "" +"Es konnten keine Kontoinformationen zu „%s“ von Twitter empfangen werden." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 @@ -3642,9 +3974,13 @@ msgid "User without matching profile in system." msgstr "Benutzer ohne entsprechendes Profil im System." #: lib/mail.php:147 lib/mail.php:289 -#, php-format, fuzzy -msgid "You have a new posting address on %1$s.\n\n" -msgstr "Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n\n" +#, fuzzy, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" +"Du hast eine neue Adresse zum Hinzufügen von Nachrichten auf %1$s.\n" +"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3653,8 +3989,12 @@ msgstr "Neue private Nachricht von %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "%1$s (%2$s) hat dir einen private Nachricht geschickt:\n\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"%1$s (%2$s) hat dir einen private Nachricht geschickt:\n" +"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 #, fuzzy @@ -3674,7 +4014,7 @@ msgstr "Favoriten" #: lib/personal.php:66 lib/personalgroupnav.php:114 #: actions/favoritesrss.php:110 actions/showfavorites.php:77 #: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices" msgstr "%ss favorisierte Nachrichten" @@ -3726,7 +4066,7 @@ msgstr "Konnte Nachricht nicht parsen." #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s und Freunde, Seite %d" @@ -3780,7 +4120,8 @@ msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." #: actions/avatarsettings.php:308 #, fuzzy msgid "Pick a square area of the image to be your avatar" -msgstr "Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" +msgstr "" +"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 @@ -3924,7 +4265,7 @@ msgid "Options saved." msgstr "Einstellungen gespeichert." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Awaiting confirmation on this address. " msgstr "Warte auf die Bestätigung dieser Adresse. " @@ -3947,7 +4288,9 @@ msgstr "Diese E-Mail-Adresse gehört " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "Ein Bestätigungscode wurde an die E-Mail-Adresse geschickt, die du hinzugefügt hast. " +msgstr "" +"Ein Bestätigungscode wurde an die E-Mail-Adresse geschickt, die du " +"hinzugefügt hast. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 #, fuzzy @@ -3955,7 +4298,7 @@ msgid "Server error - couldn't get user!" msgstr "Serverfehler - Benutzer nicht gefunden!" #: actions/facebookhome.php:196 -#, php-format, fuzzy +#, fuzzy, php-format msgid "If you would like the %s app to automatically update " msgstr "Wenn du automatische Aktualisierungen der Anwendung %s möchtest " @@ -3999,7 +4342,7 @@ msgid "Before" msgstr "Vorher" #: actions/facebookinvite.php:70 actions/facebookinvite.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Danke, dass du deine Freunde zu %s einlädst" @@ -4010,13 +4353,13 @@ msgstr "Einladung(en) an folgende Personen geschickt:" #: actions/facebookinvite.php:96 actions/facebookinvite.php:102 #: actions/facebookinvite.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You have been invited to %s" msgstr "Du wurdest von %s angestupst" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Lade deine Freunde ein %s zu nutzen" @@ -4039,7 +4382,8 @@ msgstr "Konnte Facebook-Benutzer nicht entfernen." #: actions/facebooksettings.php:65 #, fuzzy msgid "There was a problem saving your sync preferences!" -msgstr "Es gab ein Problem beim Speichern deiner Synchronisationseinstellungen." +msgstr "" +"Es gab ein Problem beim Speichern deiner Synchronisationseinstellungen." #: actions/facebooksettings.php:67 #, fuzzy @@ -4048,7 +4392,8 @@ msgstr "Synchronisationseinstellungen gespeichert." #: actions/facebooksettings.php:90 msgid "Automatically update my Facebook status with my notices." -msgstr "Meinen Facebook-Status automatisch über meine Nachrichten aktualisieren." +msgstr "" +"Meinen Facebook-Status automatisch über meine Nachrichten aktualisieren." #: actions/facebooksettings.php:97 msgid "Send \"@\" replies to Facebook." @@ -4102,12 +4447,12 @@ msgid "Featured users" msgstr "Featured Benutzer" #: actions/featured.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Featured users, page %d" msgstr "Featured Benutzer, Seite %d" #: actions/featured.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A selection of some of the great users on %s" msgstr "Eine Auswahl der tollen Benutzer auf %s" @@ -4168,7 +4513,7 @@ msgid "Groups, page %d" msgstr "Gruppen, Seite %d" #: actions/groups.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "%%%%site.name%%%% Gruppen - finde und tausche dich aus mit " @@ -4178,9 +4523,11 @@ msgid "Create a new group" msgstr "Neue Gruppe erstellen" #: actions/groupsearch.php:57 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Suche nach Gruppen auf %%site.name%% nach Name, Ort oder Beschreibung. " +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Suche nach Gruppen auf %%site.name%% nach Name, Ort oder Beschreibung. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy @@ -4203,7 +4550,7 @@ msgid "Send me replies through Jabber/GTalk " msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "Es wurde ein Bestätigungscode gesendet " @@ -4217,7 +4564,7 @@ msgid "You are already a member of that group" msgstr "Du bist bereits Mitglied dieser Gruppe" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" @@ -4251,7 +4598,8 @@ msgstr "Du bist kein Mitglied dieser Gruppe." #: actions/leavegroup.php:100 #, fuzzy msgid "You may not leave a group while you are its administrator." -msgstr "Du kannst eine Gruppe nicht verlassen solange du der Administrator bist." +msgstr "" +"Du kannst eine Gruppe nicht verlassen solange du der Administrator bist." #: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 @@ -4261,7 +4609,7 @@ msgstr "Konnte Mitgliedseintrag nicht finden." #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" @@ -4324,8 +4672,11 @@ msgid "Ajax Error" msgstr "Ajax-Fehler" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Dieser Benutzer erlaubt keine Stupser oder hat seine E-Mail-Adresse noch nicht bestätigt." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Dieser Benutzer erlaubt keine Stupser oder hat seine E-Mail-Adresse noch " +"nicht bestätigt." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4383,7 +4734,7 @@ msgid "Password change" msgstr "Passwort gespeichert" #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Ungültiger Tag: %s" @@ -4404,8 +4755,11 @@ msgstr "Profilinformation" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder Leerzeichen getrennt" +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder " +"Leerzeichen getrennt" #: actions/profilesettings.php:144 #, fuzzy @@ -4426,7 +4780,7 @@ msgstr "Konnte Tags nicht speichern." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Öffentliche Zeitleiste, Seite %d" @@ -4437,8 +4791,12 @@ msgstr "Konnte öffentlichen Stream nicht abrufen." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/" +"Mikro-blogging) Dienst " #: actions/publictagcloud.php:57 #, fuzzy @@ -4499,7 +4857,7 @@ msgid " except this private data: password, " msgstr " außer folgende private Daten: Passwort, " #: actions/register.php:471 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " msgstr "Gratuliere, %s! Und willkommen auf %%%%site.name%%%%. " @@ -4515,12 +4873,12 @@ msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Antworten an %s, Seite %d" #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s favorite notices, page %d" msgstr "%ss favorisierte Nachrichten, Seite %d" @@ -4570,7 +4928,7 @@ msgid "Group actions" msgstr "Gruppenaktionen" #: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Nachrichtenfeed der Gruppe %s" @@ -4599,8 +4957,12 @@ msgstr "Alle Mitglieder" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [mikro-blogging-Dienst](http://de.wikipedia.org/wiki/Mikro-blogging) " +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [mikro-blogging-" +"Dienst](http://de.wikipedia.org/wiki/Mikro-blogging) " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4658,8 +5020,12 @@ msgstr "Alle Gruppen" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** hat ein Konto auf %%%%site.name%%%%, einem [mikro-blogging-Dienst](http://de.wikipedia.org/wiki/Mikro-blogging) " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** hat ein Konto auf %%%%site.name%%%%, einem [mikro-blogging-Dienst]" +"(http://de.wikipedia.org/wiki/Mikro-blogging) " #: actions/smssettings.php:128 #, fuzzy @@ -4674,7 +5040,9 @@ msgstr "Schicke mir Nachrichten per SMS; " #: actions/smssettings.php:335 #, fuzzy msgid "A confirmation code was sent to the phone number you added. " -msgstr "Ein Bestätigungscode wurde an die Telefonnummer gesendet, die du hinzugefügt hast. " +msgstr "" +"Ein Bestätigungscode wurde an die Telefonnummer gesendet, die du hinzugefügt " +"hast. " #: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy @@ -4701,12 +5069,12 @@ msgid "Subscribed" msgstr "Abonniert" #: actions/subscribers.php:50 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscribers" msgstr "%s Abonnenten" #: actions/subscribers.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscribers, page %d" msgstr "%s Abonnenten, Seite %d" @@ -4716,17 +5084,17 @@ msgid "These are the people who listen to " msgstr "Folgende Leute lesen " #: actions/subscribers.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people who " msgstr "Folgende Leute " #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "%s Abonnements" #: actions/subscriptions.php:54 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions, page %d" msgstr "%s Abonnements, Seite %d" @@ -4736,7 +5104,7 @@ msgid "These are the people whose notices " msgstr "Dies sind die Leute, deren Nachrichten " #: actions/subscriptions.php:69 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people whose " msgstr "Dies sind die Leute, deren " @@ -4746,7 +5114,7 @@ msgid "Jabber" msgstr "Jabber" #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Nachrichten, die mit %s getagt sind, Seite %d" @@ -4766,7 +5134,7 @@ msgid "No id argument." msgstr "Kein id Argument." #: actions/tagother.php:65 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Tag %s" msgstr "Tag %s" @@ -4776,8 +5144,12 @@ msgid "Tag user" msgstr "Benutzer taggen" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Tags für diesen Benutzer (Buchstaben, Nummer, -, ., und _), durch Komma oder Leerzeichen getrennt" +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Tags für diesen Benutzer (Buchstaben, Nummer, -, ., und _), durch Komma oder " +"Leerzeichen getrennt" #: actions/tagother.php:164 #, fuzzy @@ -4785,8 +5157,11 @@ msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert haben." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Du kannst nur Benutzer taggen, die du abonniert hast oder die dich abonniert " +"haben." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4795,7 +5170,9 @@ msgstr "Konnte Tags nicht speichern." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 #, fuzzy msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Benutze dieses Formular, um Tags zu deinen Abonnenten oder Abonnements hinzuzufügen." +msgstr "" +"Benutze dieses Formular, um Tags zu deinen Abonnenten oder Abonnements " +"hinzuzufügen." #: actions/tagrss.php:35 #, fuzzy @@ -4803,7 +5180,7 @@ msgid "No such tag." msgstr "Tag nicht vorhanden." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Microblog getaggt mit %s" @@ -4846,7 +5223,7 @@ msgid "Username must have only numbers, " msgstr "Für den Benutzernamen gelten nur Nummern, " #: actions/twittersettings.php:341 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information " msgstr "Konnte Kontoinformationen nicht abrufen " @@ -4889,13 +5266,17 @@ msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in ein paar Minuten ab." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " +"ein paar Minuten ab." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 msgid "You are banned from posting notices on this site." -msgstr "Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." +msgstr "" +"Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy @@ -4915,7 +5296,7 @@ msgid "Other options" msgstr "Sonstige Optionen" #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" @@ -5097,7 +5478,8 @@ msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Ort der Gruppe, optional, z.B. \"Stadt, Gebiet (oder Region), Land\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5110,7 +5492,7 @@ msgid "Admin" msgstr "Admin" #: lib/groupnav.php:101 lib/groupnav.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Edit %s group properties" msgstr "%s Gruppeneinstellungen bearbeiten" @@ -5120,7 +5502,7 @@ msgid "Logo" msgstr "Logo" #: lib/groupnav.php:107 lib/groupnav.php:113 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s logo" msgstr "%s Logo hinzufügen oder bearbeiten" @@ -5133,7 +5515,7 @@ msgid "Groups with most posts" msgstr "Gruppen mit den meisten Beiträgen" #: lib/grouptagcloudsection.php:56 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Tags in %s group's notices" msgstr "Tags in den Nachrichten der Gruppe %s" @@ -5167,29 +5549,37 @@ msgid "Login or register with OpenID" msgstr "Anmelden oder registrieren mit OpenID" #: lib/mail.php:175 -#, php-format, fuzzy -msgid "Hey, %s.\n\n" -msgstr "Hallo, %s.\n\n" +#, fuzzy, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Hallo, %s.\n" +"\n" #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "%1$s liest ab sofort " #: lib/mail.php:254 lib/mail.php:253 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Location: %s\n" msgstr "Standort: %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Homepage: %s\n" #: lib/mail.php:258 lib/mail.php:257 -#, php-format, fuzzy -msgid "Bio: %s\n\n" -msgstr "Biografie: %s\n\n" +#, fuzzy, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Biografie: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5197,12 +5587,12 @@ msgid "You've been nudged by %s" msgstr "Du wurdest von %s angestupst" #: lib/mail.php:465 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s (%2$s) is wondering what you are up to " msgstr "%s$s (%2$s) fragt sich was du so machst " #: lib/mail.php:555 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s just added your notice from %2$s" msgstr "%1$s hat deine Nachrichten von %2$s hinzugefügt" @@ -5275,7 +5665,7 @@ msgid "Send a nudge to this user" msgstr "Sende diesem Benutzer einen Stupser" #: lib/personaltagcloudsection.php:56 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Tags in %s's notices" msgstr "Tags in %ss Nachrichten" @@ -5320,23 +5710,23 @@ msgid "Untitled section" msgstr "Abschnitt ohne Titel" #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People %s subscribes to" msgstr "Leute, die %s abonniert hat" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People subscribed to %s" msgstr "Leute, die %s abonniert haben" #: lib/subgroupnav.php:97 lib/subgroupnav.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of" msgstr "Gruppen zu denen %s gehört" #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein dir auf %s beizutreten" @@ -5373,17 +5763,17 @@ msgid "Unsubscribe from this user" msgstr "Lösche dein Abonnement von diesem Benutzer" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed der Freunde von %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed der Freunde von %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed der Freunde von %s" @@ -5393,7 +5783,7 @@ msgid "You and friends" msgstr "%s und Freunde" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Du kannst dein persönliches Avatar hochladen." @@ -5402,10 +5792,21 @@ msgstr "Du kannst dein persönliches Avatar hochladen." msgid "Avatar deleted." msgstr "Avatar aktualisiert." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion ist irreversibel." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du bist gerade dabei eine Nachricht unwiderruflich zu löschen. Diese Aktion " +"ist irreversibel." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5415,27 +5816,64 @@ msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut." #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." +msgstr "" +"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format, fuzzy -msgid "You can upload a logo image for your group. The maximum file size is %s." +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "Du kannst ein Logo für Deine Gruppe hochladen." #: actions/grouplogo.php:367 actions/grouplogo.php:362 #, fuzzy msgid "Pick a square area of the image to be the logo." -msgstr "Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" +msgstr "" +"Wähle eine quadratische Fläche aus dem Bild, um dein Avatar zu speichern" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Microblog von %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 Zeichen bestehen." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Durchsuche die Namen, Orten oder Interessen der Nutzer von %%site.name%%. " +"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus " +"mindestens 3 Zeichen bestehen." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" #: actions/newmessage.php:102 #, fuzzy @@ -5443,14 +5881,18 @@ msgid "Only logged-in users can send direct messages." msgstr "Fehler beim Senden der Nachricht" #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "Suche im Stream nach \"%s\"" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort ein, bevor die Änderungen an ihren Einstellungen übernommen werden." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Bitte geben Sie aus Sicherheitsgründen ihren Benutzernamen und ihr Passwort " +"ein, bevor die Änderungen an ihren Einstellungen übernommen werden." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5467,10 +5909,35 @@ msgstr "Feed des öffentlichen Streams" msgid "Public Stream Feed (Atom)" msgstr "Feed des öffentlichen Streams" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr "außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, Telefonnummer." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, " +"Telefonnummer." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5478,33 +5945,44 @@ msgstr "außer folgende private Daten: Passwort, E-Mail, Adresse, IM Adresse, Te msgid "Created" msgstr "Erstellen" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Gruppenprofil" #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "s Profil" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Feed der Nachrichten von %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Feed der Nachrichten von %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Feed der Nachrichten von %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Postausgang von %s" @@ -5520,10 +5998,48 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Profil Einstellungen" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf den Code und die Anweisungen, um ihn zu benutzen." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Ein Bestätigungscode wurde an die von Ihnen angegebene Telefonnummer " +"gesandt. Überprüfen Sie bitte Ihren Posteingang (auch den Spamordner!) auf " +"den Code und die Anweisungen, um ihn zu benutzen." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5540,18 +6056,29 @@ msgstr "Kein solcher Benutzer" #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter zu übermitteln, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Füge dein Twitter-Konto hinzu, um automatisch deine Nachrichten an Twitter " +"zu übermitteln, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden." +msgstr "" +"Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf \"Abbrechen\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " +"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " +"\"Abbrechen\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5560,8 +6087,12 @@ msgstr "Suche nach Leuten oder Text" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in ein paar Minuten ab." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " +"ein paar Minuten ab." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5573,21 +6104,218 @@ msgstr "Verbinde zu IM, SMS, Twitter" msgid "Badge" msgstr "Stups" +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "Um die %s Facebookanwendung zu benutzen, musst du dich anmelden " +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s hat deine Nachrichten auf %2$s abonniert.\n\n %3$s\n\nGruß,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s hat deine Nachrichten auf %2$s abonniert.\n" +"\n" +"\t%3$s\n" +"\n" +"Gruß,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Suchen" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5604,12 +6332,12 @@ msgid "Block this user from this group" msgstr "Liste der Benutzer in dieser Gruppe." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Benutzerprofil" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s und Freunde, Seite %d" @@ -5633,26 +6361,56 @@ msgstr "Bestätigungscode" msgid "Do not delete this notice" msgstr "Die Nachricht konnte nicht gelöscht werden." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Ungültiger Tag: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Konnte keinen Favoriten erstellen." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5663,6 +6421,14 @@ msgstr "Neue Nachricht" msgid "No notice" msgstr "Neue Nachricht" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5674,6 +6440,10 @@ msgstr "Ungültiger Nutzername." msgid "No group specified." msgstr "Kein Profil angegeben." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5690,6 +6460,18 @@ msgstr "Du bist kein Mitglied dieser Gruppe." msgid "Block user from group" msgstr "Benutzer blockieren" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5700,6 +6482,12 @@ msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen." msgid "Group design" msgstr "Gruppen" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5732,46 +6520,233 @@ msgstr "Du musst ein Administrator sein, um die Gruppe zu bearbeiten" msgid "Make Admin" msgstr "Admin" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Keine Ergebnisse" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Dieser Benutzer hat dich blockiert." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Nachricht" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Konnte Profil nicht speichern." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"Mit [OpenID](%%doc.openid%%) kannst du dich bei mehreren Sites mit demselben " +"Nutzerkonto anmelden. Hier kannst du deine verknüpften OpenIDs verwalten." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profil Einstellungen" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Dies ist %%site.name%%, ein [mikro-blogging] (http://de.wikipedia.org/wiki/" +"Mikro-blogging) Dienst " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-Mail Adresse, die in deinem Account eingetragen ist, ein neues zusenden lassen." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Wenn du dein Passwort vergessen oder verloren hast kannst du dir an die E-" +"Mail Adresse, die in deinem Account eingetragen ist, ein neues zusenden " +"lassen." #: actions/recoverpassword.php:158 #, fuzzy @@ -5793,30 +6768,87 @@ msgstr "Fehler beim Bestätigungscode." msgid "Subscribe to a remote user" msgstr "Abonniere diesen Benutzer" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "%ss favorisierte Nachrichten, Seite %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Nachrichtenfeed der Gruppe %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Nachrichtenfeed der Gruppe %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Nachrichtenfeed der Gruppe %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] (http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] " +"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -5829,33 +6861,84 @@ msgid "Not a local notice" msgstr "Kein lokaler Benutzer." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Nachrichten, die mit %s getagt sind" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Nachrichtenfeed der Gruppe %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de.wikipedia.org/wiki/Mikro-blogging) Dienst " +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de." +"wikipedia.org/wiki/Mikro-blogging) Dienst " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s liest ab sofort " #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed der Nachrichten von %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed der Nachrichten von %s" @@ -5886,16 +6969,20 @@ msgid "Could not find target user." msgstr "Konnte keine Statusmeldungen finden." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s Antworten an %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates von %1$s auf %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5911,41 +6998,127 @@ msgstr "%s Abonnements" msgid "Profile design" msgstr "Profil Einstellungen" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Du bist kein Mitglied dieser Gruppe." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problem bei Speichern der Nachricht." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Nachricht an %1$s auf %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Benutzerprofil" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profil" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Hochladen" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Ändere dein Passwort" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5961,21 +7134,127 @@ msgstr "Suchen" msgid "Links" msgstr "Liste" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Blockieren" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Benutzer blockieren" #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "%s Logo hinzufügen oder bearbeiten" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5991,10 +7270,26 @@ msgstr "Benutzer" msgid "Search help" msgstr "Suchen" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" -msgstr "Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." +msgstr "" +"Homepage ist kein gültiger URL. URL´s müssen ein Präfix wie http enthalten." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 @@ -6003,22 +7298,27 @@ msgid "No such page" msgstr "Tag nicht vorhanden." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Direkte Nachricht an %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." -msgstr "Das ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." +msgstr "" +"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." msgstr "Kann Nutzer %s nicht folgen: Nutzer nicht gefunden" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." @@ -6028,7 +7328,7 @@ msgid "You are already a member of that group." msgstr "Du bist bereits Mitglied dieser Gruppe" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Konnte Benutzer %s nicht der Gruppe %s hinzufügen" @@ -6038,30 +7338,45 @@ msgid "You are not a member of this group." msgstr "Du bist kein Mitglied dieser Gruppe." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "%s Gruppen" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "Gruppen zu denen %s gehört" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Gruppenaktionen" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar aktualisiert." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." -msgstr "Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." +msgstr "" +"Das war zu lang. Die Länge einer Nachricht ist auf 140 Zeichen beschränkt." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy @@ -6074,14 +7389,14 @@ msgid "Post to " msgstr "Foto" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)." #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "Updates von %1$s auf %2$s!" +msgstr "Aktualisierungen von %1$s auf %2$s!" #: actions/finishremotesubscribe.php:80 #, fuzzy @@ -6114,9 +7429,9 @@ msgid "Cannot read file." msgstr "Daten verloren." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" -msgstr "Updates von %1$s auf %2$s!" +msgstr "Aktualisierungen von %1$s auf %2$s!" #: actions/imsettings.php:89 #, fuzzy @@ -6124,17 +7439,41 @@ msgid "IM is not available." msgstr "Diese Seite liegt in nicht verfügbar in einem " #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? [Registriere](%%action.register%%) ein neues Konto oder versuche es mit [OpenID](%%action.openidlogin%%)." +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? " +"[Registriere](%%action.register%%) ein neues Konto oder versuche es mit " +"[OpenID](%%action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Updates von %1$s auf %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Alle Aktualisierungen, die den Suchbegriff \"%s\" enthalten" +msgstr "Alle Aktualisierungen, die den Suchbegriff „%s“ enthalten" + +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Verbinden" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Beschreibe dich selbst in 140 Zeichen" @@ -6144,13 +7483,20 @@ msgid "Describe yourself and your interests" msgstr "Beschreibe dich selbst und deine " #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Die Biografie ist zu lang (max. 140 Zeichen)" +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Ungültige Profil-URL (kein YADIS-Dokument)." #: actions/remotesubscribe.php:176 @@ -6163,35 +7509,53 @@ msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." msgid "Couldn’t get a request token." msgstr "Konnte keinen Anfrage-Token bekommen." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed der Nachrichten von %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed der Nachrichten von %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Nachrichtenfeed der Gruppe %s" +msgstr "Feed der Nachrichten von %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Nachricht an %1$s auf %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed der Favoriten von %s" +msgstr "Feed der Freunde von %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed der Favoriten von %s" +msgstr "Feed der Freunde von %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Feed der Favoriten von %s" +msgstr "Feed der Freunde von %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "%s Gruppe" +msgstr "Postausgang von %s" #: actions/shownotice.php:90 #, fuzzy @@ -6204,34 +7568,82 @@ msgid "SMS is not available." msgstr "Diese Seite liegt in nicht verfügbar in einem " #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed der Nachrichten von %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf \"Abbrechen\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten " +"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " +"\"Abbrechen\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements bestätigt werden. Dein Abonnement-Token ist:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Das Abonnement wurde bestätigt, aber es wurde keine Callback-URL " +"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " +"bestätigt werden. Dein Abonnement-Token ist:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements vollständig abgelehnt werden. Dein Abonnement-Token ist:" +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " +"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " +"vollständig abgelehnt werden. Dein Abonnement-Token ist:" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." -msgstr "Konnte Avatar-URL nicht öffnen '%s'" +msgstr "Konnte Avatar-URL nicht öffnen „%s“" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Falscher Bildtyp für '%s'" +msgstr "Falscher Bildtyp für „%s“" #: lib/action.php:435 #, fuzzy @@ -6241,30 +7653,38 @@ msgstr "Konnte nicht zum Server umleiten: %s" #: lib/action.php:785 #, fuzzy msgid "Site content license" -msgstr "StatusNet Software Lizenz" +msgstr "StatusNet-Software-Lizenz" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "Die bestätigte Emailadresse konnte nicht gespeichert werden." +msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Stups abgeschickt" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Nachricht zu lange - maximal 140 Zeichen erlaubt, du hast %s gesendet" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Auf diese Nachricht antworten" @@ -6273,11 +7693,54 @@ msgstr "Auf diese Nachricht antworten" msgid "Error saving notice." msgstr "Problem bei Speichern der Nachricht." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Kein Bestätigungs-Code." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6294,32 +7757,76 @@ msgid "Describe the group or topic" msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Feed der Nachrichten von %s" +msgstr "Neue Nachricht" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s hat deine Nachricht als Favorit gespeichert" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "von" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Konnte Favoriten nicht löschen." +msgstr "Konnte öffentlichen Stream nicht abrufen." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Notiz löschen" - diff --git a/locale/el/LC_MESSAGES/statusnet.mo b/locale/el/LC_MESSAGES/statusnet.mo index 6f2e5f0830aed432cabf4953fe5e3a60454d26d0..cd2deb78984a720bb8fd7d60d456df2e404a66d1 100644 GIT binary patch delta 6963 zcmZ|T33yJ&9>?*C#1>g3BqFvqgh+`d5ld1bu`jj7QY}Tuix3eKOHprar3;sarm9t~ zHo8)xXi;4)y@Xn-+ih>J-YQC|?!DUk{beSeKKHqu$N&Az%sFSyod3)@v?rgcviR95 zzR$t~)*4EZpD_*b>6*r@qu#oXdW~6C-Dq^| z4efT^T;0fGILQWEWO!_1Ba2-Fy~!=E%L}%#)FzrA8d=+n1pLlH#~^i%okA;tH}mp6-{&0c)d}Xn2g#Z zz6GvhE%K1&In;#SN2UIac;ah7#~4BK`C;Lc?*?+Z;|CSQM}|@vUF4i^05|fMBV5`)DoUT zJ@IANu5z>e&NRd*z5fYR^rStpDvrWn9ETxTfJ&(kwRVpq*)_W{6wjhkd=33El36Je z(O3gpqcYbHb>1-N9E{}tW<3?%U^{y7xbvz`pdHTR>9vZ-vDg(S;wB8hTI{@1jWZK9?n?A&fM=*^rq5#_mZADzcl~dpmgWd*!1L(ApOClBM6nZf zT?5n-v_NgX-kusepO+RZo|wTtsG z4A-D$T#8EZJE%23j=JH;s0p5P{(zd8f0{iWjym21^*{-z2k|9S38j*X9_)h}aI)*4 z?OcW$umtr4rKkyRb;r+O4DEAR8*AQT$Bo8F+Bc!D%S2_SFY+KhlSL(*j?t(YO~?8; z$DUvw!YJAsFdBEEGI7Fr1tVyObh7=isO!6;9&8lqx;)fGmZ2uN0qg1g-%6$8(}^Aq zT*T=Zlx|bK05#D4s0$xOEy)YW3t;xS{wt^tm0xFjT^nZ_Dx*D785)8bZ>IXWzgbE} zYx58)r5mv&9zw0vRn!1KqR#X0!e`o#NubW(lfeeXv$zkVGOZt=GP-p1TUdo=dJoybE}H2nNnQ#vPM_r5FH)@ZPjdikV9-E2fe2JP7PW*4sJ}%!4OTdfrIR(?10(}eNm~~>pYEm zg3IW^A%pEdI*V{B?Ms4`<>fAC)6i#t*R>NE~W+?|A3kScfMq z!Q-6w!Z7|~!uiAPd7ool+P~mv3?Y4TDr(msL1pqBDl_$pYyFvP|LWSYckr2}KLho8Ex}f}9ux2&X5tT6HGsV{(oP_qbac@B ze=8N1&n!U=a02zAIgjD^Gmgbt{A6GrYJx90&tod>=GoRUSV(&vYTRJbbvKU0@%RyP z$fVQgulN56DjM(-vY$*m3#$`mI?tevr+QsK-bMQiHp9Ua?7%Zo=Y52lK*U5l@%ykV z?F-l*6DHY-)eU_G2ijS#y6uT+b7-Z`~t_)-+*^ZdtpAN z;A&(anggyKm1q0=qt07|zOhtFsN9M_BXcl4*uvT@TTpxAdn9XSaK3%w9XOKqht8B~ zw!I2x)BlY#r@*#9MJ?sf>2`BYL}lW@bn>q!zD`FUOr2qGuoyFFZ^mx;HCDyekKk10Z1IRWqUtl2ioMR_4*hfXFSmAsJ`_ldmLv$iLO%B6I z%)uHs59{L+%)kxU7(d6J_&Ww*kGb|s*Vj1?Gw7d-d(pRt%6=+y=5Y~roNw*GJEIh~ zUtl-U5NtvF8BD<=coO}{Ap6UlcA3n)$F6mbb2jP$?sx5V$bL01;vIVb>n*f1oPiZ5 zqV~c%?1E=;Fg9Dn-->>`md*`}?YI2k61$r}bY8+voL^q~DqCF48aE-GR>+AjB zO{E?OPGC4*z#P1eWYLVf*ZL`HLc^EY_x)jPK>JtB#K`4#Nk(80?HNuVYSTUFJmd_x zkACiNGE~9&s0(*H-^Kd0PheC0#oFVOKuxge3TqGNB+Q`y0gS^VsJ-(& zYU1%L$$w`m-B$9|!$qhYzlpl>ho}jL{>={56}4*@V?1W8vI9-VMzoipHtAEy<}!y- z6OCPM|61;Y%JeSO(p_6k{?!rskTHX>A8MwLq59v!5H!X1%N6R($7*yR#TYz=LHHxG zM=Of>y^U(VQ!qqyB}Xo9-c0dRfd(^nXNMoAR%U*Buz+RCZK` z6Z%knPIMsx80&S+BAQb7y+cLiNg|C1r?V$^AdV4#5S8UaD(S9q&RK>-iE!6$gBywO zh$o1nL}mGv%Jal8uA{Er|H=}}ja42eekKBmA;bxyCZQ5T)Z#pUVm)s6zcBs%URjCmQPORayE|Ng?WTqDm6+3~`ufLtiKc<2oEgsCWqWV#WU_ zgo?u3Wa@*5zUBYgvv?csfwEY ztF$%eeM@^0aR+gks75rQU;p>K5A_&SDJG6o)ZBlPx%wqMOWaL#B3k*}1=K6bc779G zUnA;+iK?_mRvfiIE#Orm+MUMEhs%Q2dmLM$M55i0YDw}{ikK|&>ixQA#$RF?5nnlVm^>)3{yUH$Ks@Bf{2 zj3eG8YIE{696{_RS`oh!_Yv2LPl@`3N%@lirtzn~1f9KH{ff4)G(=l9*4ZJVd-$QL{fQp%Ld-mfNW$&`!Xe#C~Ed@h_qp z{Wb6a@i4I>gP-Yy$|j;V(c({ot)jhmI*F_Q`l!Y(ej;s9NKtmt%)%S< zDZ7*wS0#A-wEQA(evwD>_7vZe-ncj^y=P#)oqBFgT5)0eu;lihq_$~E?OP>M0tXFD z$nwt0EzF&kpU^$K$eZR#PE1TqNJ>gbC$|Mn>z%a(MW7*qVqq_nb& zW7@PVK3N#MeR;S)#upb9W)z1%u%Y;mWzl6XKd>(#c+;^J<@?Hal)rLparv&|DXYE? TE`O|iOZmQIOUw6`Z!`Y|qe^)J delta 6508 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 diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index 3751720a54..0cd27cf8dc 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -1,20 +1,16 @@ # Translation of StatusNet to Greek # # -- -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:08+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:43:14+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: out-statusnet\n" @@ -28,14 +24,92 @@ msgstr "Αναζήτηση ροής για \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, διεύθυνση IM, τηλεφωνικό νούμερο." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, " +"διεύθυνση IM, τηλεφωνικό νούμερο." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 msgid " from " msgstr "από" +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#, php-format +msgid "%1$s / Updates replying to %2$s" +msgstr "" + +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "" + +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" + +#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "" + +#: ../lib/mail.php:126 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" + +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" + +#: ../actions/shownotice.php:45 actions/shownotice.php:45 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 #: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 @@ -64,6 +138,14 @@ msgstr "Δημόσια ροή %s" msgid "%s and friends" msgstr "%s και οι φίλοι του/της" +#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "" + #: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" @@ -74,26 +156,47 @@ msgstr "Κατάσταση του/της %s" #: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 #: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s timeline" msgstr "Χρονοδιάγραμμα του χρήστη %s" +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "" + #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Σύντομα θα λάβετε μέσω ηλεκτρονικού ταχυδρομείου ένα μήνυμα με οδηγίες για την επιβεβαίωση της ηλεκτρονικής σας διεύθυνσης.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Σύντομα θα λάβετε μέσω ηλεκτρονικού ταχυδρομείου ένα μήνυμα με οδηγίες για " +"την επιβεβαίωση της ηλεκτρονικής σας διεύθυνσης.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 -#, php-format, fuzzy -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " +"έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 -#, php-format, fuzzy +#, fuzzy, php-format msgid "**%%site.name%%** is a microblogging service. " -msgstr "Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " +msgstr "" +"Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " + +#: ../lib/util.php:274 lib/util.php:290 +msgid ". Contributors should be attributed by full name or nickname." +msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -127,17 +230,31 @@ msgstr "6 ή περισσότεροι χαρακτήρες. Απαραίτητο #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση IM που προσθέσατε. Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. " +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση IM που προσθέσατε. " +"Πρέπει να αποδεχτείτε τον/την %s για αποστολή μηνυμάτων προς εσας. " #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση email που προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στην διεύθυνση email που " +"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " +"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που " +"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " +"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -318,20 +435,46 @@ msgstr "Αυτόματη σύνδεση στο μέλλον. ΟΧΙ για κο #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 #, fuzzy -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση κυρίως από λογισμικό και όχι ανθρώπους)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση " +"κυρίως από λογισμικό και όχι ανθρώπους)" + +#: ../actions/avatar.php:32 ../lib/settingsaction.php:90 +#: actions/profilesettings.php:34 actions/avatarsettings.php:65 +#: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 +msgid "Avatar" +msgstr "" + +#: ../actions/avatar.php:113 actions/profilesettings.php:350 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 +msgid "Avatar updated." +msgstr "" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format, fuzzy -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το Jabber/GTalk λογαριασμό σου για μήνυμα με περαιτέρω οδηγίες. (Πρόσθεσες το χρήστη %s στη λίστα φίλων?)" +#, fuzzy, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το Jabber/GTalk " +"λογαριασμό σου για μήνυμα με περαιτέρω οδηγίες. (Πρόσθεσες το χρήστη %s στη " +"λίστα φίλων?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 #, fuzzy -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το mail σου (και το φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. " +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Αναμένωντας επιβεβαίωση σε αυτή τη διεύθυνση. Έλεγξε το mail σου (και το " +"φάκελο spam!) για μήνυμα με περαιτέρω οδηγίες. " #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -366,6 +509,12 @@ msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστ msgid "Can't delete this notice." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." +#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#, php-format +msgid "Can't read avatar URL '%s'" +msgstr "" + #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 @@ -404,6 +553,11 @@ msgstr "Αδυναμία κανονικοποίησης αυτής της email msgid "Change" msgstr "Αλλαγή" +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "" + #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" @@ -446,6 +600,11 @@ msgstr "Επιβεβαίωση διεύθυνσης" msgid "Confirmation cancelled." msgstr "Η επιβεβαίωση ακυρώθηκε." +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "" + #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." @@ -453,9 +612,38 @@ msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 -#, php-format, fuzzy -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Συγχαρητήρια, %s! και καλωσήρθες στο %%%%site.name%%%%. Από εδώ μπορείς να...\n\n* Πας στο [your profile](%s) και να στείλεις το πρώτο σου μήνυμα.\n* Προσθέσεις ένα [Jabber/GTalk address](%%%%action.imsettings%%%%) ώστε να δέχεσε μηνύματα στο instant messager σου.\n* [Search for people](%%%%action.peoplesearch%%%%) που μπορεί να ξέρεις ή που έχουν τα ίδια ενδιαφέροντα με σένα. \n* Ενημερώσεις το προφίλ σου [profile settings](%%%%action.profilesettings%%%%) για να μάθουν οι άλλοι περισσότερα για σένα. \n* Διαβάσεις τα [online docs](%%%%doc.help%%%%) για λειτουργίες που μπορεί να μην έχεις μάθει ακόμα. \n\nΕυχαριστούμε που εγγράφηκες και ευχόμαστε να περάσεις καλά με την υπηρεσία μας." +#, fuzzy, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Συγχαρητήρια, %s! και καλωσήρθες στο %%%%site.name%%%%. Από εδώ μπορείς " +"να...\n" +"\n" +"* Πας στο [your profile](%s) και να στείλεις το πρώτο σου μήνυμα.\n" +"* Προσθέσεις ένα [Jabber/GTalk address](%%%%action.imsettings%%%%) ώστε να " +"δέχεσε μηνύματα στο instant messager σου.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) που μπορεί να ξέρεις ή " +"που έχουν τα ίδια ενδιαφέροντα με σένα. \n" +"* Ενημερώσεις το προφίλ σου [profile settings](%%%%action.profilesettings%%%" +"%) για να μάθουν οι άλλοι περισσότερα για σένα. \n" +"* Διαβάσεις τα [online docs](%%%%doc.help%%%%) για λειτουργίες που μπορεί να " +"μην έχεις μάθει ακόμα. \n" +"\n" +"Ευχαριστούμε που εγγράφηκες και ευχόμαστε να περάσεις καλά με την υπηρεσία " +"μας." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -487,7 +675,8 @@ msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s " #: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." +msgstr "" +"Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 @@ -549,6 +738,11 @@ msgstr "Απέτυχε η διαγραφή συνδρομής." msgid "Couldn't find any statuses." msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." +#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 +#: actions/remotesubscribe.php:178 +msgid "Couldn't get a request token." +msgstr "" + #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 @@ -646,6 +840,10 @@ msgstr "Τρέχων επιβεβαιωμένο, μέσω SMS, νούμερο κ msgid "Current confirmed email address." msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση." +#: ../actions/showstream.php:356 actions/showstream.php:367 +msgid "Currently" +msgstr "" + #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 #: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format @@ -715,11 +913,114 @@ msgstr "Διευθύνσεις email" msgid "Enter a nickname or email address." msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email." +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" + +#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 +msgid "Error authorizing token" +msgstr "" + +#: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 +msgid "Error connecting user to OpenID." +msgstr "" + +#: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 +#: actions/finishaddopenid.php:126 +msgid "Error connecting user." +msgstr "" + +#: ../actions/finishremotesubscribe.php:151 +#: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "" + +#: ../actions/finishremotesubscribe.php:143 +#: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "" + +#: ../actions/finishremotesubscribe.php:167 +#: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "" + +#: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "" + +#: ../actions/userauthorization.php:140 actions/userauthorization.php:147 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 +msgid "Error saving remote profile" +msgstr "" + +#: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 +msgid "Error saving the profile." +msgstr "" + +#: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 +msgid "Error saving the user." +msgstr "" + +#: ../actions/password.php:80 actions/profilesettings.php:399 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 +msgid "Error saving user; invalid." +msgstr "" + +#: ../actions/login.php:47 ../actions/login.php:73 +#: ../actions/recoverpassword.php:307 ../actions/register.php:98 +#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 +#: actions/register.php:108 actions/login.php:112 actions/login.php:138 +#: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 +msgid "Error setting user." +msgstr "" + +#: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 +#: actions/finishaddopenid.php:131 +msgid "Error updating profile" +msgstr "" + +#: ../actions/finishremotesubscribe.php:161 +#: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "" + +#: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "" + +#: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 +msgid "Existing nickname" +msgstr "" + #: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 #: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "Συχνές ερωτήσεις" +#: ../actions/avatar.php:115 actions/profilesettings.php:352 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 +msgid "Failed updating avatar." +msgstr "" + #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 #: actions/allrss.php:110 actions/allrss.php:118 @@ -734,9 +1035,29 @@ msgstr "Ροή φίλων του/της %s" msgid "Feed for replies to %s" msgstr "Ροή απαντήσεων προς τον/την %s" +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 +#, php-format +msgid "Feed for tag %s" +msgstr "" + +#: ../lib/searchaction.php:105 lib/searchaction.php:105 +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "" + +#: ../lib/searchaction.php:101 lib/searchaction.php:101 +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "" + #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό σας, πριν αλλάξετε τις ρυθμίσεις σας." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό " +"σας, πριν αλλάξετε τις ρυθμίσεις σας." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -821,16 +1142,28 @@ msgstr "Ρυθμίσεις ΙΜ" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για να τον συνδέσετε στο OpenID σας." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για " +"να τον συνδέσετε στο OpenID σας." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Εάν θέλετε να προσθέσετε ένα OpenID στον λογαριασμό σας, πληκτρολογήστε τον από κάτω και πατήστε \"Προσθήκη\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Εάν θέλετε να προσθέσετε ένα OpenID στον λογαριασμό σας, πληκτρολογήστε τον " +"από κάτω και πατήστε \"Προσθήκη\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί " +"καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -860,8 +1193,137 @@ msgstr "Λάθος όνομα χρήστη ή κωδικός" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Οδηγίες για την ανάκτηση του κωδικού σας έχουν σταλεί στην διεύθυνση email που έχετε καταχωρίσει στον λογαριασμό σας." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Οδηγίες για την ανάκτηση του κωδικού σας έχουν σταλεί στην διεύθυνση email " +"που έχετε καταχωρίσει στον λογαριασμό σας." + +#: ../actions/updateprofile.php:114 actions/updateprofile.php:115 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 +#, php-format +msgid "Invalid avatar URL '%s'" +msgstr "" + +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "" + +#: ../actions/updateprofile.php:98 actions/updateprofile.php:99 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 +#, php-format +msgid "Invalid homepage '%s'" +msgstr "" + +#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 +#, php-format +msgid "Invalid license URL '%s'" +msgstr "" + +#: ../actions/postnotice.php:61 actions/postnotice.php:62 +#: actions/postnotice.php:66 actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "" + +#: ../actions/postnotice.php:67 actions/postnotice.php:68 +#: actions/postnotice.php:72 +msgid "Invalid notice uri" +msgstr "" + +#: ../actions/postnotice.php:72 actions/postnotice.php:73 +#: actions/postnotice.php:77 +msgid "Invalid notice url" +msgstr "" + +#: ../actions/updateprofile.php:87 actions/updateprofile.php:88 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 +#, php-format +msgid "Invalid profile URL '%s'." +msgstr "" + +#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "" + +#: ../actions/finishremotesubscribe.php:77 +#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 +msgid "Invalid profile URL returned by server." +msgstr "" + +#: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "" + +#: ../actions/finishopenidlogin.php:235 ../actions/register.php:93 +#: ../actions/register.php:111 actions/finishopenidlogin.php:241 +#: actions/register.php:103 actions/register.php:121 +#: actions/finishopenidlogin.php:279 actions/register.php:193 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 +msgid "Invalid username or password." +msgstr "" + +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "" + +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" + +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 +msgid "Invite" +msgstr "" + +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 +msgid "Invite new users" +msgstr "" + +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" + +#: ../actions/imsettings.php:173 actions/imsettings.php:181 +#: actions/imsettings.php:296 actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "" + +#: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" + +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "" + +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "" #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -916,30 +1378,100 @@ msgstr "Συνδεθείτε με έναν λογαριασμό [OpenID](%%doc.o #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή δοκιμάστε το [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη " +"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " +"δοκιμάστε το [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Αποσύνδεση" +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 +msgid "Longer name, preferably your \"real\" name" +msgstr "" + #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Χάσατε ή ξεχάσατε τον κωδικό σας;" +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "" + #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Μέλος από" +#: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 +#, php-format +msgid "Microblog by %s" +msgstr "" + +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + +#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 +#: actions/finishopenidlogin.php:85 actions/register.php:202 +#: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 +msgid "My text and files are available under " +msgstr "" + +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "" + +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "" + #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Νέο ψευδώνυμο" +#: ../actions/newnotice.php:87 actions/newnotice.php:96 +#: actions/newnotice.php:68 actions/newnotice.php:69 +msgid "New notice" +msgstr "" + #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 @@ -948,6 +1480,11 @@ msgstr "Νέο ψευδώνυμο" msgid "New password" msgstr "Νέος κωδικός" +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "" + #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 #: actions/profilesettings.php:74 actions/register.php:165 @@ -1009,6 +1546,415 @@ msgstr "Το ψευδώνυμο του χρήστη που θέλετε να π msgid "Nickname or email" msgstr "Ψευδώνυμο ή email" +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 +msgid "No" +msgstr "" + +#: ../actions/imsettings.php:156 actions/imsettings.php:164 +#: actions/imsettings.php:279 actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "" + +#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "" + +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" + +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 +msgid "No code entered" +msgstr "" + +#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "" + +#: ../actions/newnotice.php:44 actions/newmessage.php:53 +#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 +#: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 +msgid "No content!" +msgstr "" + +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "" + +#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 +msgid "No id." +msgstr "" + +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" + +#: ../actions/finishremotesubscribe.php:65 +#: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 +msgid "No nickname provided by remote server." +msgstr "" + +#: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 +#: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 +msgid "No nickname." +msgstr "" + +#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 +#: ../actions/smssettings.php:229 actions/emailsettings.php:240 +#: actions/imsettings.php:214 actions/smssettings.php:237 +#: actions/emailsettings.php:363 actions/imsettings.php:345 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "" + +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 +msgid "No phone number." +msgstr "" + +#: ../actions/finishremotesubscribe.php:72 +#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 +msgid "No profile URL returned by server." +msgstr "" + +#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "" + +#: ../actions/userauthorization.php:49 actions/userauthorization.php:55 +#: actions/userauthorization.php:57 +msgid "No request found!" +msgstr "" + +#: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 +#: actions/noticesearch.php:69 actions/peoplesearch.php:69 +#: actions/groupsearch.php:81 actions/noticesearch.php:104 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 +msgid "No results" +msgstr "" + +#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "" + +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" + +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "" + +#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 +#: actions/openidsettings.php:222 +msgid "No such OpenID." +msgstr "" + +#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 +msgid "No such document." +msgstr "" + +#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 +#: ../lib/deleteaction.php:30 actions/shownotice.php:32 +#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 +msgid "No such notice." +msgstr "" + +#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "" + +#: ../actions/postnotice.php:56 actions/postnotice.php:57 +#: actions/postnotice.php:60 +msgid "No such subscription" +msgstr "" + +#: ../actions/all.php:34 ../actions/allrss.php:35 +#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 +#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 +#: ../actions/replies.php:57 ../actions/repliesrss.php:35 +#: ../actions/showstream.php:110 ../actions/userbyid.php:36 +#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 +#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 +#: actions/allrss.php:35 actions/avatarbynickname.php:43 +#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 +#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 +#: actions/replies.php:57 actions/repliesrss.php:35 +#: actions/showfavorites.php:34 actions/showstream.php:110 +#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 +#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 +#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 +#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 +#: actions/foaf.php:41 actions/remotesubscribe.php:123 +#: actions/remotesubscribe.php:130 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/showstream.php:100 actions/userbyid.php:74 +#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 +#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 +#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 +msgid "No such user." +msgstr "" + +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" + +#: ../lib/gallery.php:80 lib/gallery.php:85 +msgid "Nobody to show!" +msgstr "" + +#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "" + +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 +msgid "Not a registered user." +msgstr "" + +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 +msgid "Not a supported data format." +msgstr "" + +#: ../actions/imsettings.php:167 actions/imsettings.php:175 +#: actions/imsettings.php:290 actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "" + +#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 +msgid "Not a valid OpenID." +msgstr "" + +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "" + +#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 +msgid "Not a valid email address." +msgstr "" + +#: ../actions/profilesettings.php:91 ../actions/register.php:71 +#: actions/profilesettings.php:206 actions/register.php:78 +#: actions/editgroup.php:186 actions/newgroup.php:137 +#: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 +msgid "Not a valid nickname." +msgstr "" + +#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 +#: actions/remotesubscribe.php:159 +msgid "Not a valid profile URL (incorrect services)." +msgstr "" + +#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 +#: actions/remotesubscribe.php:152 +msgid "Not a valid profile URL (no XRDS defined)." +msgstr "" + +#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 +#: actions/remotesubscribe.php:143 +msgid "Not a valid profile URL (no YADIS document)." +msgstr "" + +#: ../actions/avatar.php:95 actions/profilesettings.php:332 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "" + +#: ../actions/finishremotesubscribe.php:51 +#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 +msgid "Not authorized." +msgstr "" + +#: ../actions/finishremotesubscribe.php:38 +#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "" + +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 +msgid "Not found" +msgstr "" + +#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 +#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 +#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 +#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 +#: actions/finishaddopenid.php:29 actions/logout.php:33 +#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 +#: actions/unsubscribe.php:25 lib/deleteaction.php:38 +#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 +#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 +#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 +#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 +#: actions/unsubscribe.php:27 lib/deleteaction.php:66 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 +msgid "Not logged in." +msgstr "" + +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 +msgid "Not subscribed!." +msgstr "" + +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" + +#: ../actions/showstream.php:82 actions/showstream.php:82 +#: actions/showstream.php:180 actions/showstream.php:187 +#: actions/showstream.php:192 +#, php-format +msgid "Notice feed for %s" +msgstr "" + +#: ../actions/shownotice.php:39 actions/shownotice.php:39 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "" + +#: ../actions/showstream.php:316 actions/showstream.php:331 +#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 +msgid "Notices" +msgstr "" + +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" + +#: ../actions/password.php:39 actions/profilesettings.php:178 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 +msgid "Old password" +msgstr "" + +#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 +#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 +#: lib/logingroupnav.php:81 lib/action.php:418 +msgid "OpenID" +msgstr "" + +#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 +msgid "OpenID Account Setup" +msgstr "" + +#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 +msgid "OpenID Auto-Submit" +msgstr "" + +#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 +#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 +#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 +#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 +msgid "OpenID Login" +msgstr "" + +#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 +#: actions/openidlogin.php:74 actions/openidsettings.php:50 +#: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 +msgid "OpenID URL" +msgstr "" + +#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 +#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 +#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 +msgid "OpenID authentication cancelled." +msgstr "" + +#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 +#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 +#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 +#, php-format +msgid "OpenID authentication failed: %s" +msgstr "" + +#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 +#, php-format +msgid "OpenID failure: %s" +msgstr "" + #: ../actions/openidsettings.php:144 actions/openidsettings.php:153 #: actions/openidsettings.php:231 msgid "OpenID removed." @@ -1019,6 +1965,16 @@ msgstr "Το OpenID αφαιρέθηκε." msgid "OpenID settings" msgstr "Ρυθμίσεις OpenID" +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "" + +#: ../actions/avatar.php:84 actions/profilesettings.php:321 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 +msgid "Partial upload." +msgstr "" + #: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 #: ../actions/register.php:153 ../lib/settingsaction.php:93 #: actions/finishopenidlogin.php:96 actions/login.php:102 @@ -1044,6 +2000,14 @@ msgstr "Ο κωδικός και η επιβεβαίωση του δεν ταυ msgid "Password must be 6 chars or more." msgstr "Ο κωδικός πρέπει να είναι 6 χαρακτήρες ή περισσότεροι." +#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 +#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "" + #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 @@ -1060,11 +2024,48 @@ msgstr "Ο κωδικός αποθηκεύτηκε." msgid "Passwords don't match." msgstr "Οι κωδικοί δεν ταυτίζονται." +#: ../lib/searchaction.php:100 lib/searchaction.php:100 +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "" + +#: ../actions/opensearch.php:33 actions/opensearch.php:33 +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" + +#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "" + #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 #: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Προσωπικά" +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 +msgid "Personal message" +msgstr "" + +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + +#: ../actions/userauthorization.php:78 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" + +#: ../actions/imsettings.php:73 actions/imsettings.php:74 +#: actions/imsettings.php:142 actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "" + #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 #: actions/imsettings.php:68 actions/smssettings.php:94 @@ -1087,13 +2088,1844 @@ msgstr "Προτιμήσεις" msgid "Preferences saved." msgstr "Οι προτιμήσεις αποθηκεύτηκαν" +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "" + +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 +msgid "Privacy" +msgstr "" + +#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 +#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "" + +#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 +#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 +msgid "Profile" +msgstr "" + +#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "" + +#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "" + +#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 +#: actions/postnotice.php:52 actions/updateprofile.php:53 +#: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 +msgid "Profile unknown" +msgstr "" + +#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 +msgid "Public Stream Feed" +msgstr "" + +#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 +msgid "Public timeline" +msgstr "" + +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "" + +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "" + +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 +#: actions/tag.php:76 +msgid "Recent Tags" +msgstr "" + +#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "" + +#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "" + +#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "" + +#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 +#: actions/register.php:152 actions/register.php:207 lib/util.php:328 +#: actions/register.php:69 actions/register.php:436 lib/action.php:338 +#: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "" + +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 +msgid "Registration not allowed." +msgstr "" + +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 +msgid "Registration successful" +msgstr "" + +#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "" + +#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 +#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 +msgid "Remember me" +msgstr "" + +#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 +msgid "Remote profile with no matching profile" +msgstr "" + +#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "" + +#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 +#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 +#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 +#: actions/emailsettings.php:48 actions/emailsettings.php:76 +#: actions/imsettings.php:49 actions/openidsettings.php:108 +#: actions/smssettings.php:50 actions/smssettings.php:84 +#: actions/twittersettings.php:59 actions/emailsettings.php:101 +#: actions/emailsettings.php:134 actions/imsettings.php:102 +#: actions/openidsettings.php:166 actions/smssettings.php:103 +#: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 +msgid "Remove" +msgstr "" + +#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 +#: actions/openidsettings.php:123 +msgid "Remove OpenID" +msgstr "" + +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" + +#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "" + +#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 +#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 +#: actions/replies.php:116 actions/repliesrss.php:67 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 +#, php-format +msgid "Replies to %s" +msgstr "" + +#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "" + +#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "" + +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" + +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "" + +#: ../actions/smssettings.php:33 actions/smssettings.php:33 +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "" + +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 +msgid "SMS confirmation" +msgstr "" + +#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "" + +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 +msgid "Same as password above. Required." +msgstr "" + +#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 +#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 +#: actions/emailsettings.php:104 actions/imsettings.php:82 +#: actions/profilesettings.php:101 actions/smssettings.php:100 +#: actions/twittersettings.php:83 actions/emailsettings.php:182 +#: actions/facebooksettings.php:114 actions/imsettings.php:157 +#: actions/othersettings.php:117 actions/profilesettings.php:150 +#: actions/smssettings.php:169 actions/subscriptions.php:124 +#: actions/tagother.php:152 actions/twittersettings.php:161 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 +msgid "Save" +msgstr "" + +#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 +msgid "Search" +msgstr "" + +#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 +#: actions/noticesearch.php:127 +msgid "Search Stream Feed" +msgstr "" + +#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" + +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" + +#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 +#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 +msgid "Send" +msgstr "" + +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" + +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" + +#: ../actions/imsettings.php:70 actions/imsettings.php:71 +#: actions/imsettings.php:137 actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "" + +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + +#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 +msgid "Settings" +msgstr "" + +#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "" + +#: ../actions/tag.php:60 actions/tag.php:60 +msgid "Showing most popular tags from the last week" +msgstr "" + +#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 +#: actions/finishaddopenid.php:114 +msgid "Someone else already has this OpenID." +msgstr "" + +#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 +#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 +#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 +msgid "Something weird happened." +msgstr "" + +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 +msgid "Sorry, no incoming email allowed." +msgstr "" + +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 +msgid "Sorry, that is not your incoming email address." +msgstr "" + +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 +msgid "Source" +msgstr "" + +#: ../actions/showstream.php:296 actions/showstream.php:311 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 +msgid "Statistics" +msgstr "" + +#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 +#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 +#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 +msgid "Stored OpenID not found." +msgstr "" + +#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 +#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 +#: actions/showstream.php:197 actions/showstream.php:206 +#: actions/remotesubscribe.php:113 actions/showstream.php:376 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 +msgid "Subscribe" +msgstr "" + +#: ../actions/showstream.php:313 ../actions/subscribers.php:27 +#: actions/showstream.php:328 actions/subscribers.php:27 +#: actions/showstream.php:436 actions/showstream.php:498 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "" + +#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "" + +#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "" + +#: ../actions/showstream.php:230 ../actions/showstream.php:307 +#: ../actions/subscriptions.php:27 actions/showstream.php:240 +#: actions/showstream.php:322 actions/subscriptions.php:27 +#: actions/showstream.php:407 actions/showstream.php:489 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "" + +#: ../actions/avatar.php:87 actions/profilesettings.php:324 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "" + +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 +msgid "Tags" +msgstr "" + +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 +msgid "Text" +msgstr "" + +#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 +msgid "Text search" +msgstr "" + +#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 +#: actions/openidsettings.php:227 +msgid "That OpenID does not belong to you." +msgstr "" + +#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "" + +#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "" + +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "" + +#: ../actions/avatar.php:80 actions/profilesettings.php:317 +#: lib/imagefile.php:71 +msgid "That file is too big." +msgstr "" + +#: ../actions/imsettings.php:170 actions/imsettings.php:178 +#: actions/imsettings.php:293 actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "" + +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" + +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" + +#: ../actions/imsettings.php:233 actions/imsettings.php:241 +#: actions/imsettings.php:381 actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "" + +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "" + +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "" + +#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 +#: actions/emailsettings.php:244 actions/imsettings.php:218 +#: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "" + +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "" + +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" + +#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 +#: actions/newnotice.php:49 actions/twitapistatuses.php:330 +#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 +msgid "That's too long. Max notice size is 140 chars." +msgstr "" + +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 +msgid "That's too long. Max notice size is 255 chars." +msgstr "" + +#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "" + +#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 +#: ../actions/smssettings.php:274 actions/emailsettings.php:282 +#: actions/imsettings.php:258 actions/smssettings.php:282 +#: actions/emailsettings.php:416 actions/imsettings.php:402 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "" + +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "" + +#: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "" + +#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "" + +#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "" + +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" + +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "" + +#: ../lib/openid.php:195 lib/openid.php:206 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" + +#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" + +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" + +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "" + +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "" + +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "" + +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "" + +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" + +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 +msgid "Two user ids or screen_names must be supplied." +msgstr "" + +#: ../actions/profilesettings.php:48 ../actions/register.php:169 +#: actions/profilesettings.php:81 actions/register.php:183 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "" + +#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "" + +#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 +#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 +#: actions/emailsettings.php:144 actions/imsettings.php:118 +#: actions/recoverpassword.php:39 actions/smssettings.php:143 +#: actions/twittersettings.php:108 actions/avatarsettings.php:258 +#: actions/emailsettings.php:242 actions/grouplogo.php:317 +#: actions/imsettings.php:214 actions/recoverpassword.php:44 +#: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 +msgid "Unexpected form submission." +msgstr "" + +#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "" + +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" + +#: ../actions/finishremotesubscribe.php:58 +#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 +msgid "Unknown version of OMB protocol." +msgstr "" + +#: ../lib/util.php:269 lib/util.php:285 +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" + +#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "" + +#: ../actions/showstream.php:209 actions/showstream.php:219 +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "" + +#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 +#: actions/postnotice.php:45 actions/updateprofile.php:46 +#: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 +msgid "Unsupported OMB version" +msgstr "" + +#: ../actions/avatar.php:105 actions/profilesettings.php:342 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "" + +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" + +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + +#: ../actions/avatar.php:68 actions/profilesettings.php:161 +#: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 +msgid "Upload" +msgstr "" + +#: ../actions/avatar.php:27 +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" + +#: ../lib/settingsaction.php:91 +msgid "Upload a new profile image" +msgstr "" + +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" + +#: ../actions/register.php:159 ../actions/register.php:162 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + +#: ../actions/finishremotesubscribe.php:86 +#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 +msgid "User being listened to doesn't exist." +msgstr "" + +#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 +#: ../actions/foaf.php:47 ../actions/replies.php:41 +#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 +#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 +#: ../actions/twitapiusers.php:82 actions/all.php:41 +#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 +#: actions/showfavorites.php:41 actions/showstream.php:44 +#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 +#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 +#: actions/twitapiusers.php:87 lib/mailbox.php:50 +#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 +#: actions/showstream.php:107 actions/twitapiaccount.php:70 +#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 +#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 +#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 +msgid "User has no profile." +msgstr "" + +#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "" + +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 +msgid "User not found." +msgstr "" + +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" + +#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "" + +#: ../actions/profilesettings.php:54 ../actions/register.php:175 +#: actions/profilesettings.php:87 actions/register.php:189 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "" + +#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 +#, php-format +msgid "Wrong image type for '%s'" +msgstr "" + +#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#, php-format +msgid "Wrong size image at '%s'" +msgstr "" + +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 +msgid "Yes" +msgstr "" + +#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 +#: actions/finishaddopenid.php:112 +msgid "You already have this OpenID!" +msgstr "" + +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "" + +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" + +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 +msgid "You are not friends with the specified user." +msgstr "" + +#: ../actions/password.php:27 +msgid "You can change your password here. Choose a good one!" +msgstr "" + +#: ../actions/register.php:135 actions/register.php:145 +msgid "You can create a new account to start posting notices." +msgstr "" + +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" + +#: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" + +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" + +#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 +#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "" + +#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 +#: actions/finishopenidlogin.php:38 actions/register.php:68 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 +msgid "You can't register if you don't agree to the license." +msgstr "" + +#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 +msgid "You did not send us that profile" +msgstr "" + +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "" + +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" + +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 +msgid "Your OpenID URL" +msgstr "" + +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" + +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 +msgid "a few seconds ago" +msgstr "" + +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 +#, php-format +msgid "about %d days ago" +msgstr "" + +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 +#, php-format +msgid "about %d hours ago" +msgstr "" + +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 +#, php-format +msgid "about %d minutes ago" +msgstr "" + +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 +#, php-format +msgid "about %d months ago" +msgstr "" + +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 +msgid "about a day ago" +msgstr "" + +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 +msgid "about a minute ago" +msgstr "" + +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 +msgid "about a month ago" +msgstr "" + +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 +msgid "about a year ago" +msgstr "" + +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 +msgid "about an hour ago" +msgstr "" + +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 +msgid "delete" +msgstr "" + +#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 +#: ../lib/stream.php:117 actions/noticesearch.php:136 +#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 +msgid "in reply to..." +msgstr "" + +#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 +#: ../lib/stream.php:124 actions/noticesearch.php:143 +#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 +msgid "reply" +msgstr "" + +#: ../actions/password.php:44 actions/profilesettings.php:183 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "" + +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 +msgid "unsupported file type" +msgstr "" + +#: ../lib/util.php:1309 lib/util.php:1443 +msgid "« After" +msgstr "" + +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/disfavor.php:55 actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" + +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 +msgid "Could not delete favorite." +msgstr "" + +#: actions/disfavor.php:72 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" + +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" + +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "" + +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" + +#: actions/favor.php:70 +msgid "Disfavor" +msgstr "" + +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 +#, php-format +msgid "%s favorite notices" +msgstr "" + +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 +#, php-format +msgid "Feed of favorite notices of %s" +msgstr "" + +#: actions/inbox.php:28 actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "" + +#: actions/inbox.php:30 actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "" + +#: actions/inbox.php:53 actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" + +#: actions/invite.php:178 actions/invite.php:213 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" + +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 +msgid "Automatically login in the future; " +msgstr "" + +#: actions/login.php:122 actions/login.php:264 +msgid "For security reasons, please re-enter your " +msgstr "" + +#: actions/login.php:126 actions/login.php:268 +msgid "Login with your username and password. " +msgstr "" + +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 +msgid "That's too long. Max message size is 140 chars." +msgstr "" + +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "" + +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" + +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 +msgid "No such user" +msgstr "" + +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "" + +#: actions/noticesearch.php:95 actions/noticesearch.php:146 +msgid "Notice without matching profile" +msgstr "" + +#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgstr "" + +#: actions/openidsettings.php:46 actions/openidsettings.php:96 +msgid "If you want to add an OpenID to your account, " +msgstr "" + +#: actions/openidsettings.php:74 +msgid "Removing your only OpenID would make it impossible to log in! " +msgstr "" + +#: actions/openidsettings.php:87 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account " +msgstr "" + +#: actions/outbox.php:28 actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:30 actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:53 actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" + +#: actions/profilesettings.php:27 actions/profilesettings.php:69 +msgid "You can update your personal profile info here " +msgstr "" + +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +msgid "User without matching profile" +msgstr "" + +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. " +msgstr "" + +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" +msgstr "" + +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " +msgstr "" + +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 +msgid "Your nickname on this server, " +msgstr "" + +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 +msgid "Instructions for recovering your password " +msgstr "" + +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 +msgid "New password successfully saved. " +msgstr "" + +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/register.php:216 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" + +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " +msgstr "" + +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#, php-format +msgid "To subscribe, you can [login](%%action.login%%)," +msgstr "" + +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 +#, php-format +msgid "Feed for favorites of %s" +msgstr "" + +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showmessage.php:33 actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:42 actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:61 actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:66 actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/showstream.php:154 +msgid "Send a message" +msgstr "" + +#: actions/smssettings.php:312 actions/smssettings.php:464 +#, php-format +msgid "Mobile carrier for your phone. " +msgstr "" + +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 +msgid "Direct Messages You've Sent" +msgstr "" + +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "" + +#: actions/twitapidirect_messages.php:128 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "" + +#: actions/twitapidirect_messages.php:138 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" + +#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" + +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "" + +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "" + +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 +#, php-format +msgid "%s added your notice as a favorite" +msgstr "" + +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" + +#: actions/twittersettings.php:27 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" + +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 +msgid "Twitter settings" +msgstr "" + +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 +msgid "Twitter Account" +msgstr "" + +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 +msgid "Current verified Twitter account." +msgstr "" + +#: actions/twittersettings.php:63 +msgid "Twitter Username" +msgstr "" + +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 +msgid "No spaces, please." +msgstr "" + +#: actions/twittersettings.php:67 +msgid "Twitter Password" +msgstr "" + +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" + +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 +msgid "Could not verify your Twitter credentials!" +msgstr "" + +#: actions/twittersettings.php:137 +#, php-format +msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgstr "" + +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 +msgid "Unable to save your Twitter settings!" +msgstr "" + +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 +msgid "Twitter settings saved." +msgstr "" + +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 +msgid "That is not your Twitter account." +msgstr "" + +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 +msgid "Couldn't remove Twitter user." +msgstr "" + +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 +msgid "Twitter account removed." +msgstr "" + +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 +msgid "Couldn't save Twitter preferences." +msgstr "" + +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 +msgid "Twitter preferences saved." +msgstr "" + +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " +msgstr "" + +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " +msgstr "" + +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " +msgstr "" + +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 +msgid "Command complete" +msgstr "" + +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: classes/Command.php:96 classes/Command.php:113 +#, php-format +msgid "Subscriptions: %1$s\n" +msgstr "" + +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" + +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "" + +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "" + +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "" + +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "" + +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "" + +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 +#, php-format +msgid "Message too long - maximum is 140 characters, you sent %d" +msgstr "" + +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." +msgstr "" + +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" + +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." +msgstr "" + +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: classes/Command.php:344 classes/Command.php:392 +msgid "Commands:\n" +msgstr "" + +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:253 lib/mail.php:512 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" + +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " +msgstr "" + +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "" + +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" + +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" + +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" + +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 +msgid "Twitter" +msgstr "" + +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 +msgid "Twitter integration options" +msgstr "" + +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 +msgid "To" +msgstr "" + +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 +msgid "Could not parse message." +msgstr "" + #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s και οι φίλοι του/της" +#: actions/avatarsettings.php:76 +msgid "You can upload your personal avatar." +msgstr "" + #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -1102,6 +3934,51 @@ msgstr "%s και οι φίλοι του/της" msgid "Avatar settings" msgstr "Ρυθμίσεις OpenID" +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +msgid "There was a problem with your session token. " +msgstr "" + +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -1109,6 +3986,73 @@ msgstr "Ρυθμίσεις OpenID" msgid "Lost our file." msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 +msgid "No profile specified." +msgstr "" + +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 +msgid "No profile with that ID." +msgstr "" + +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "" + +#: actions/block.php:129 +msgid "Are you sure you want to block this user? " +msgstr "" + +#: actions/block.php:162 actions/block.php:165 +msgid "You have already blocked this user." +msgstr "" + +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been " +msgstr "" + +#: actions/deletenotice.php:73 +msgid "You are about to permanently delete a notice. " +msgstr "" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "" + +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -1132,6 +4076,20 @@ msgstr "Νέο ψευδώνυμο" msgid "No such group" msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "" + +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -1148,44 +4106,309 @@ msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστ msgid "Could not update group." msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/editgroup.php:226 actions/editgroup.php:269 +msgid "Options saved." +msgstr "" + +#: actions/emailsettings.php:107 actions/imsettings.php:108 +#, php-format +msgid "Awaiting confirmation on this address. " +msgstr "" + +#: actions/emailsettings.php:139 actions/smssettings.php:150 +msgid "Make a new email address for posting to; " +msgstr "" + +#: actions/emailsettings.php:157 +msgid "Send me email when someone " +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " msgstr "Η διεύθυνση email υπάρχει ήδη." +#: actions/emailsettings.php:343 +msgid "A confirmation code was sent to the email address you added. " +msgstr "" + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" + +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 +msgid "No notice content!" +msgstr "" + +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + +#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 +msgid "After" +msgstr "" + +#: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 +msgid "Before" +msgstr "" + +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" +msgstr "" + #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Ροή φίλων του/της %s" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + +#: actions/facebookremove.php:56 +msgid "Couldn't remove Facebook user." +msgstr "" + +#: actions/facebooksettings.php:65 +msgid "There was a problem saving your sync preferences!" +msgstr "" + #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "Οι προτιμήσεις αποθηκεύτηκαν" +#: actions/facebooksettings.php:90 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: actions/facebooksettings.php:97 +msgid "Send \"@\" replies to Facebook." +msgstr "" + +#: actions/facebooksettings.php:106 +msgid "Prefix" +msgstr "" + +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "Προτιμήσεις" +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 +msgid "Disfavor favorite" +msgstr "" + +#: actions/favorited.php:65 lib/popularnoticesection.php:76 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 +msgid "Popular notices" +msgstr "" + +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "" + +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" + +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 +msgid "Featured users" +msgstr "" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" + +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" + +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" + +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Αποσύνδεση" +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "" + +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Δημιουργία νέου λογαριασμού" +#: actions/groupsearch.php:57 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" + +#: actions/groupsearch.php:63 actions/groupsearch.php:58 +msgid "Group search" +msgstr "" + +#: actions/imsettings.php:70 +msgid "You can send and receive notices through " +msgstr "" + +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + +#: actions/imsettings.php:147 +msgid "Send me replies through Jabber/GTalk " +msgstr "" + #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." +#: actions/joingroup.php:65 actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "" + +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "" + +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "" + +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "" + +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "" + #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -1194,6 +4417,48 @@ msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." msgid "No such group." msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "" + +#: actions/leavegroup.php:100 +msgid "You may not leave a group while you are its administrator." +msgstr "" + +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" + +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "" + +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -1206,16 +4471,69 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "Could not set group membership." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" +#: actions/newmessage.php:119 actions/newnotice.php:132 +msgid "That's too long. " +msgstr "" + +#: actions/newmessage.php:134 +msgid "Don't send a message to yourself; " +msgstr "" + +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 +msgid "Notice posted" +msgstr "" + +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 +msgid "Ajax Error" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" + #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Ρυθμίσεις OpenID" +#: actions/openidsettings.php:128 +msgid "Removing your only OpenID " +msgstr "" + #: actions/othersettings.php:60 #, fuzzy msgid "Other Settings" msgstr "Ρυθμίσεις OpenID" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" + +#: actions/othersettings.php:93 +msgid "URL Auto-shortening" +msgstr "" + +#: actions/othersettings.php:112 +msgid "Service" +msgstr "" + +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "" + #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -1233,18 +4551,189 @@ msgstr "Αλλαγή κωδικού" msgid "Password change" msgstr "Ο κωδικός αποθηκεύτηκε." +#: actions/peopletag.php:35 actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "" + +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "" + +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" + +#: actions/profilesettings.php:91 actions/profilesettings.php:99 +msgid "Profile information" +msgstr "" + +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + +#: actions/profilesettings.php:144 +msgid "Automatically subscribe to whoever " +msgstr "" + +#: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "" + #: actions/profilesettings.php:311 actions/profilesettings.php:310 #: actions/profilesettings.php:336 #, fuzzy msgid "Couldn't save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "" + +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "" + +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 +msgid "Sorry, only invited people can register." +msgstr "" + +#: actions/register.php:149 +msgid "You can't register if you don't " +msgstr "" + +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + +#: actions/register.php:368 +msgid "1-64 lowercase letters or numbers, " +msgstr "" + +#: actions/register.php:382 actions/register.php:386 +msgid "Used only for updates, announcements, " +msgstr "" + +#: actions/register.php:398 +msgid "URL of your homepage, blog, " +msgstr "" + +#: actions/register.php:404 +msgid "Describe yourself and your " +msgstr "" + +#: actions/register.php:410 +msgid "Where you are, like \"City, " +msgstr "" + +#: actions/register.php:432 +msgid " except this private data: password, " +msgstr "" + +#: actions/register.php:471 +#, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgstr "" + +#: actions/register.php:495 +msgid "(You should receive a message by email " +msgstr "" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" + +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%s favorite notices, page %d" +msgstr "" + +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + +#: actions/showgroup.php:262 actions/showstream.php:289 +#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 +msgid "Note" +msgstr "" + +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:304 +#, php-format +msgid "Notice feed for %s group" +msgstr "" + #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 #: actions/showgroup.php:430 actions/showgroup.php:381 @@ -1253,6 +4742,36 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "Members" msgstr "Μέλος από" +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" +msgstr "" + +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient " +msgstr "" + +#: actions/showstream.php:73 actions/showstream.php:78 +#, php-format +msgid "%s, page %d" +msgstr "" + #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -1265,21 +4784,197 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "User profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 +msgid "User actions" +msgstr "" + +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 +msgid "Send a direct message to this user" +msgstr "" + +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 +msgid "Message" +msgstr "" + +#: actions/showstream.php:451 lib/profileaction.php:157 +msgid "All subscribers" +msgstr "" + +#: actions/showstream.php:533 lib/profileaction.php:235 +msgid "All groups" +msgstr "" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/smssettings.php:128 +msgid "Phone number, no punctuation or spaces, " +msgstr "" + +#: actions/smssettings.php:162 +msgid "Send me notices through SMS; " +msgstr "" + +#: actions/smssettings.php:335 +msgid "A confirmation code was sent to the phone number you added. " +msgstr "" + +#: actions/smssettings.php:453 actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" + +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "" + #: actions/subedit.php:83 #, fuzzy msgid "Could not save subscription." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "" + +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "" + +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" +msgstr "" + +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + +#: actions/subscribers.php:63 +msgid "These are the people who listen to " +msgstr "" + +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who " +msgstr "" + #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" +#: actions/subscriptions.php:54 +#, php-format +msgid "%s subscriptions, page %d" +msgstr "" + +#: actions/subscriptions.php:65 +msgid "These are the people whose notices " +msgstr "" + +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose " +msgstr "" + +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 +msgid "Jabber" +msgstr "" + +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "" + +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "" + +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "" + +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:164 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "" + +#: actions/tagrss.php:66 actions/tagrss.php:64 +#, php-format +msgid "Microblog tagged with %s" +msgstr "" + +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" + +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" + +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 +msgid "Not found." +msgstr "" + +#: actions/twittersettings.php:71 +msgid "Add your Twitter account to automatically send " +msgstr "" + #: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Όνομα χρήστη στο Twitter" @@ -1297,27 +4992,219 @@ msgstr "Φίλοι στο Twitter" msgid "Username must have only numbers, " msgstr "Το όνομα χρήστη πρέπει να έχει μόνο νούμερα," +#: actions/twittersettings.php:341 +#, php-format +msgid "Unable to retrieve account information " +msgstr "" + +#: actions/unblock.php:108 actions/groupunblock.php:128 +msgid "Error removing the block." +msgstr "" + +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "" + +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "" + +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "" + +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" +msgstr "" + +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "" + +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "" + +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#, php-format +msgid "%s - %s" +msgstr "" + +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Περί" +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "" + +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Δημιουργία νέου λογαριασμού" +#: lib/action.php:341 lib/action.php:418 +msgid "Login with OpenID" +msgstr "" + #: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 #, fuzzy msgid "Help me!" msgstr "Βοήθεια" +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 +msgid "Site notice" +msgstr "" + +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 +msgid "Page notice" +msgstr "" + +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +msgid "Secondary site navigation" +msgstr "" + +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +msgid "All " +msgstr "" + +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block this user" +msgstr "" + +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block" +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "Δημιουργία νέου λογαριασμού" +#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 +msgid "Published" +msgstr "" + +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "" + +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + +#: lib/groupeditform.php:148 lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "" + #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 msgid "Description" @@ -1329,7 +5216,8 @@ msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \"Πόλη, Περιοχή, Χώρα)" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -1362,6 +5250,11 @@ msgstr "Ομάδες με τα περισσότερα μέλη" msgid "Groups with most posts" msgstr "Ομάδες με τις περισσότερες δημοσιεύσεις" +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -1391,35 +5284,114 @@ msgstr "Σύνδεση ή δημιουργία λογαριασμού με OpenI #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Γεια σου, %s.\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Γεια σου, %s.\n" +"\n" + +#: lib/mail.php:236 +#, php-format +msgid "%1$s is now listening to " +msgstr "" #: lib/mail.php:254 lib/mail.php:253 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Location: %s\n" msgstr "Τοποθεσία: %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Αρχική σελίδα: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "Βιογραφικό: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Βιογραφικό: %s\n" +"\n" + +#: lib/mail.php:461 lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:465 +#, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" + +#: lib/mail.php:555 +#, php-format +msgid "%1$s just added your notice from %2$s" +msgstr "" #: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 #: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "Από" +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "" + +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 +msgid "Send a notice" +msgstr "" + #: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 #: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 ή περισσότεροι χαρακτήρες" +#: lib/noticelist.php:426 lib/noticelist.php:429 +msgid "in reply to" +msgstr "" + +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "" + +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "" + +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "" + +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 +msgid "Delete" +msgstr "" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + #: lib/profilelist.php:182 lib/profilelist.php:180 #: lib/subscriptionlist.php:126 #, fuzzy @@ -1459,12 +5431,31 @@ msgstr "Βρες ομάδες στο site" msgid "Untitled section" msgstr "Ενότητα χωρίς τίτλο" +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" +msgstr "" + +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 +#, php-format +msgid "People subscribed to %s" +msgstr "" + +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" +#: lib/subs.php:53 lib/subs.php:52 +msgid "User has blocked you." +msgstr "" + #: lib/subscribeform.php:115 lib/subscribeform.php:139 #: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" @@ -1478,18 +5469,31 @@ msgstr "Κανένα" msgid "Top posters" msgstr "Κορυφαίοι δημοσιευτές" +#: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 +msgid "Unblock this user" +msgstr "" + +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 +msgid "Unblock" +msgstr "" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Ροή φίλων του/της %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Ροή φίλων του/της %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Ροή φίλων του/της %s" @@ -1498,30 +5502,148 @@ msgstr "Ροή φίλων του/της %s" msgid "You and friends" msgstr "%s και οι φίλοι του/της" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Ρυθμίσεις OpenID" +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, php-format +msgid "Microblog by %s group" +msgstr "" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "Αναζήτηση ροής για \"%s\"" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό σας, πριν αλλάξετε τις ρυθμίσεις σας." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό " +"σας, πριν αλλάξετε τις ρυθμίσεις σας." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" #: actions/public.php:135 actions/public.php:143 actions/public.php:159 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Δημόσια ροή %s" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr "εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, διεύθυνση IM, τηλεφωνικό νούμερο." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, " +"διεύθυνση IM, τηλεφωνικό νούμερο." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -1529,26 +5651,100 @@ msgstr "εκτός από τα εξής προσωπικά δεδομένα: κ msgid "Created" msgstr "Δημιουργία" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +msgid "Edit Avatar" +msgstr "" + #: actions/showstream.php:316 actions/showstream.php:281 #: actions/showstream.php:366 #, fuzzy msgid "Edit profile settings" msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Έχει αποσταλεί ένας κωδικός επιβεβαίωσης στο τηλεφωνικό νούμερο που " +"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης " +"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -1563,21 +5759,279 @@ msgstr "Έχει αποσταλεί ένας κωδικός επιβεβαίωσ msgid "No such user!" msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για να τον συνδέσετε στο OpenID σας." +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Εάν έχετε ήδη λογαριασμό, συνδεθείτε με το όνομα χρήστη και τον κωδικό για " +"να τον συνδέσετε στο OpenID σας." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "" + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s και οι φίλοι του/της" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" +msgstr "" + #: actions/conversation.php:99 #, fuzzy msgid "Conversation" @@ -1588,19 +6042,56 @@ msgstr "Τοποθεσία" msgid "Do not delete this notice" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "" + #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -1611,6 +6102,66 @@ msgstr "Μήνυμα" msgid "No notice" msgstr "Μήνυμα" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +msgid "Not a valid invitation code." +msgstr "" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "" + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -1619,149 +6170,888 @@ msgstr "Μήνυμα" msgid "Couldn't update your design." msgstr "Απέτυχε η ενημέρωση του χρήστη." +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "Οι προτιμήσεις αποθηκεύτηκαν" +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + #: actions/groupmembers.php:470 actions/groupmembers.php:473 #, fuzzy msgid "Make Admin" msgstr "Διαχειριστής" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Απέτυχε η αποθήκευση του προφίλ." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Εάν έχετε ξεχάσει ή χάσει τον κωδικό σας, μπορεί να σας αποσταλλεί " +"καινούριος στην διεύθυνση email που έχετε καταχωρήσει στον λογαριασμό σας." + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" #: actions/recoverpassword.php:188 #, fuzzy msgid "Password recover" msgstr "Ο κωδικός αποθηκεύτηκε." +#: actions/register.php:86 +msgid "Sorry, invalid invitation code." +msgstr "" + #: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 #, fuzzy msgid "Subscribe to a remote user" msgstr "Γίνε συνδρομητής αυτού του χρήστη" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "%s και οι φίλοι του/της" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy msgid "Admins" msgstr "Διαχειριστής" +#: actions/shownotice.php:101 +msgid "Not a local notice" +msgstr "" + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" + +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "Απέτυχε η ενημέρωση του χρήστη." +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Αλλάξτε τον κωδικό σας" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "Σύνδεση" +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + #: lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "Σύνδεση" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "" + +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" +msgstr "" + #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "Προσθήκη ή επεξεργασία λογότυπου για την ομάδα %s" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +msgid "in context" +msgstr "" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." msgstr "Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης δε βρέθηκε." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "" + #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "Ομάδες χρηστών" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "Ομάδες με τα περισσότερα μέλη" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Βρες ομάδες στο site" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Ρυθμίσεις OpenID" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + #: actions/finishremotesubscribe.php:109 #, fuzzy msgid "Could not convert request token to access token." msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + #: actions/getfile.php:75 #, fuzzy msgid "No such file." @@ -1772,23 +7062,52 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "Cannot read file." msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή δοκιμάστε το [OpenID](%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη " +"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " +"δοκιμάστε το [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Σύνδεση" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" @@ -1798,72 +7117,332 @@ msgid "Describe yourself and your interests" msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Ροή φίλων του/της %s" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Ροή φίλων του/της %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Ροή φίλων του/της %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Ροή φίλων του/της %s" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Ρυθμίσεις OpenID" + #: actions/smssettings.php:91 #, fuzzy msgid "SMS is not available." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Ροή φίλων του/της %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + #: lib/action.php:435 #, fuzzy msgid "Connect to services" msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" +#: lib/action.php:785 +msgid "Site content license" +msgstr "" + #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" +msgstr "" + +#: lib/command.php:441 +msgid "Error saving notice." +msgstr "" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες" +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Μήνυμα" + +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "από" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Απέτυχε η ενημέρωση του χρήστη." + #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Διαγραφή μηνύματος" - diff --git a/locale/en_GB/LC_MESSAGES/statusnet.mo b/locale/en_GB/LC_MESSAGES/statusnet.mo index a00d7cd6eaa87008cbbf2acb690e3dfb3a464723..4a42208bd3483a6b9af0a86f095b49d924073569 100644 GIT binary patch delta 23762 zcmZwP2Y8Ry!~gL+#7Kw`Gf47Hh)56-i9Kt_-g}F^#U5X)_6}mT)U453MNz9pOU;(r zqpDVwDn(I!-kG5O)B6{(2orzyHsF^Nb<9E(cNMD5{X)Sj-!2;7LJ@h9w!eu<`h1S&la zwMCCH34^*aIGl%rv1T{Nd5Qb6Jnrny`sX9^yu0I+#aum@JvPB?xD=ys3x?oT48k|q z69f4}4Nb(E_$`*h2E80-2F}D$n48h*Or&5Kp2WiVq&MsDB9ga{S(@^wrD=?5a3K2N zFw{znM;)fAm>TDzFD^hW?F!Uc*=f@!P+M~gi{eupilKd34P5Ldq6Tkc5qya1I9ET@ zVK6Ekj_Rlo7Qzy!0dzud>}tz-y$J9pZS@cVYnM!C9yYZa}TzR#ZRN zFdzLpZ;50<*ANZ{#-d(mf|;;2X2+hWfsRFO!5qwn`)v7-sE+TWI!?n$%Z#C@c4ATG zl~L`qL$_wymxyLI+!l<(oTTTX2DTpc;$AF?m#_(D9%eq#iKzF#9${AEAZh@YF(>|w zx)pvSO}$WS<% z!B|{v%P*qZeTTXQxkj`8`T&(3ZARW6U8IMhPW56`NBeF14yps6F=k+ePxBwda#jTe%F?-eC;G>zIJfBy$~WqbAY@bJ4%klZZw%0oB25OoMAs z6*r>p?{4($De6|-MV%F|$>u&6Ms-*YmERsU@M-A6m6!t$Td$y7Gkr=#OYS$tjJzP&1x&EPa@W$vO@<}IqBRMX6v$%g4k2cuRh0`*=A)Tg-~>JWEBO>DAt!!*`kGdV?u zMtTQbm}XX?TwNkw>15QJAv=G(Nm)7sF5b0ak0W;2^bL@jU8yC{q}y=?vvn?DiLl0O$Uutlg9*lN?~P!n@M zB%+yl%`zj(f?CQPsD?vqew58Gin^AiPy=X+e%J|J*dI0Uxv2N&V+LG~n#e}%j0Z7V z_dow^$7w-EV=RK3Fdna<3p39#zrz*7k)*#wtwhvZGk_S>Ov+;vHbE`D8#CcX)Xevw z>Rqwvrx>OCpJg5=oPu(w)4LY6r+ZL)^&{%=Jwh#Is$|np9tmZSD+4eAVR#TvK=!!cEgS@MFY8O5U-s)8C= zEt}sBHPgY?$*60$7&W19P%HB&h4o)TB-s{AD8#LHL; zpJHi@T54v}1^r3S!0fmTbyl{a2KEDL09SAdzQzJL!M)7|*l~7yN2=!i9WNY2d5F)wB7>zpR zi%>IOk6NM~sF_|vt;_?|wR>js)2=XwD=X^#5;k1}HQ=78flWkh$r9^!%&Gf-l8Bb( z4r;{ypP3~NMGd4dYAH*hI?&ie=#p+TgCco zX^Iii$ZMdMtTk#&2BRv@LDl=h<{!o)q;H^BF5_zR8%{~ofX1U%XftYHr%>%&M{VJ2 z)HU^9!}@DR{%g$A1fiCuFnVKo)cyYmRj(GR!RDwLc0&z#1geAi)~%?$K8+!G55q9s zT4NOIY}H-M`fH>~WVmpibvtUt=TS@c5H$d=b>^D+qZ+P(>98BBUO$^Z3AOZVQ4{(a z)8KK`%+J{TD{dk>WWS?k_7Zj4(|vCKDJ2^Qldghs*a-_^3Z})wsJ%UbT9KQm_y0n5 z^dGv=cfGL?s$LybJ$HK|>bSRc6sn^csMC4~)8kpx3@+RJo2V6ej2g&Wn@+vKd?~Y_ zCKibrNIa^aN~rc4V1({}OIt7wLn)Yx1#mlR>8_x@XuqQxNVm}}bxu^r(Wp;zJZeC7 zt*vc-4^)TaQ0+~_a9oN7b^i|$DM7|V)C@y6nV(V-Sd4UYEQnK)gX?UwHvfVvNBS+M z!;K^~!0o8RcNk;w8fpOko6U;kLTy2QN&iksBAQ78s-cFc8MU}!bTVx<_qqgXAeF3jQ0=xrO>7`$#u2F7Gkq)TuMusu6~98w{4{EWcTpYwfoeGI zHq&7M>X4Q}HP{bTe=O<@Oh$dc7GMS3f&=ggY9JlAoAMspS%2OCiDbx?s16UJ8oG>H z`g^Fe@eb9Y_gCiHWk=;lp_V=dQ)5L`y(*Xyo7i+m)OTeds@*AWB0BZUQD3}6sF@tY z06c|t@D|R%B0J2BdvFBlbC`g2c5<>Y1-0a1yUdD}LrtuvO?O3=4@3>nJ%dO#BA=iJ zunqOXF4QOUf-QfAnxWs=VdI64{Ujky=H*Hs0o%rouRs@ ziMGUW-T!t(0?C+&I+dTII@*r~@fK=^KHr#6Z)wyPC89d)jWM_weencpKo>AK{)V|w zzq9*5ASyo}hSR@Ofrt)67gPfyQA;@qHR2S^iK|eDXD{k-oZ4mr(Sk@lY>Rbq6KaI7Q5|GIVA4^j`qfYaOTZ{>hWT(DYQ@%I z0X%K<|Hk5^0}q-B)Ws0eoe#49dT|07IyCDr51v46!Ch3v^oPt(!Gah>x(2F)M2y85 zw)_AVB7MW^`>pvgTmtpMs)^dlp;!dhed{&_7ib*E8;1PM8EINp)85{ zNH;_svccB1sFk{C%b%gHRnFtaTB!OX(X*wfc3z{dVeknvad%T9y~&t}?eQrt$A&-f z_cWzZ1N-u%8R%ow(ic5t4p}n{BRvR%aUr^J2WsVhw&fX5v;3rsVtO2g9D27ijz}sp z7NJJG6tCe)R0HeJm~Zz@)OVrbS^iBBH(~~SiRm!)IdknYSo2_J@(WqZp|-FtYUR3m z^48Ic0w(!8?|CPF&1B71V;X3 z{xaIoIvYLr{}hq@RCtD(Nv`vzV;AcB#i9mO12yvYr~!|}Ot=s=&^747U8pU+gc?}2 z3udJ{q2B9@8F4DQvk_THL>+9ztauo;mlx3wU!a!K`)AW(b_^w*A6-}-btbx@I+%sw zxE>4R8C3nZsDTDwG#{jxi|qehGD?!67lSXEj!L8UHUYJi%}^_}5M8(zb(pT9Iu5^V z{->8Z=uLVGY9(i)X1V}XZzXDA$5HJ+xy=4&C-R02tw5G5X2~N_*QEk#B|2dUjzg`; zXXuZcQ5_sWeV9&SL41gsan`Hm-~ZxK?JY#D_#RY$XWT?|eeR+5(wC#32LrJL#-j$% z8v}7VM&cUGg=bKQ@;+(+k5B{iy>1R|Zfr)n7B@%{1O6O!J#S(KEOg6!5qn}I(hE@&cz|Q+-^u!m`J~Rr zx)dD2LKtw{>~RIu-cQELxCu3|$LPX&}S1})UyJJ>(I!4mJ zvyMm^3eKS#$oQMt!{VrP8`KOZ*z|7H%x~dvOn=vOI387R6~^IZ)D~sBXSO5)bC52H z!B`I~(!bM(hz`*g7=U|FOL+=MqxXIDFQ4O4*XNxz^8-^q40WjDQP(#Cbq3nm^1i6| z#-XlpvQ4i>w@&j;B5CmmM&J*qQ~V6QG4De&z)VH&KDTH>y#fh@(sxDF%n zJci&qYw%-}Ujd7g-yQYemMnYB`s-Rf`O{n%pQq+ODk){1f*Q~ztfB@{9e?zfnbA;8 zM|vjea4oRu-KdEjLM{1aTmBF;kmvqZ(X^ z8u)h1f~U|2Z(;yGKn>_E=0(?YQ@=c_yg8~JcTbx!64k&g)Cd=$X0Q%b@c^pBv#2G1 zh@tqx=I8p`Y)vd`z_n2Abwf>P0P4L_Ha!J7b8aV@hz{El)HOVeees>C;PiRHK_Z=m zMer6TVWyYH2{@SaD{J3Z=Ev+E)Cz?CV}3SN$LgfVV>UdFo`3(pK}3he=d~GmB=#g- z1N8;lhO_V~mcy}c%wNU!SrguxPxwXaYt&&3`qz9H5->aIUZ{IN4s|>HmboFsJ+kl&U`_Gu_ozy))Z8Gw@@p0AJuV=|BQLjt&A`t z>Zl;<`V>bEpe^d!b+qMOQF}N5^?@0U8o*4E6j(i>1Ku)}RLzDK?A69(dC%#F{`^Ft(!m*+n&iNL(%cSil5Fcvk#WvHcI zg?jHeYUS>ruCq^Clb;J!zc}g^xXTdHQrAa~v@7bc46zkfqYm3{RL5sf9X~>S7t*IQ z9R#Av3!>VohMH+p)FJF(^Sh(IE5nep<96l{(TgjwBp$#f_!9Mvu9Mz0u-w;(~x=$I|If%>w&w&u;~<@upe0hK=x z)xdm=#VuF>e?@Jbub1BeWKs^9JaRQ&Anw!a}$cHQ?J;@2uw97C=oP1~s7iS-Jmeus0cgI0!X> zai||k^R4@=cTs!qpUqeZwUjli!%<(zji~o`p|;`{>c{*m)ca|&o3j$?CZZ)NYi)@7 zz;r_mWPr_|h}w!Js6)2TrY~Xw>DQ53Q4<`2x~}7FdLHV#;9g8b_w{qs z(tM2?;YHL^K1012lGA*GV^D{v3917(x^NNd4D3eD_$+FP@1qWJnp|e!;i!pJMC!Yp zPDE63xUI0z6gXQ@1NjbhMt(&dDz8A(L3Y%Di=fKupw3E9)E10F&3p=KWoBDHL7k0_ z==tCOP7%=-{Dykr4QlCA;)11@JSzJmMRl!CGw)a;rVQSG^&Aew!9WMT4!b(A*P3@9sV&q7i4tDwqj+VZC8BHbA~<3x9AbME)j24sw~5c#7)aC2A(#q2|=*K`niC)XWB=3&*4CtwL?#9@H(l zf;}-!m^qyNQCm75^<#R8n}`nI4%AZqfNJOt>JYxMX3A&wHWXdtmqmT?+MrJNMATN! zL*0hesQ14`4fq1aqE~*iwQ*RKw7V=3-S1wg7f0bfT!K0SEyB%A+M`bUG#rnsQCksF z!0c&Z%uhNVb(UJ${0=tV19hnT+5C}ML-&6o5q;}VqL%zG)QtW^HRKmz29_0-Uko+V ziq?jx4@zg$j3%L0W+yJe8`j|k&49B-nsx#)E&V$YMD$}d8uiVtg8K0EMtyLmpzi%L z)POdk_I4{)#A~SQl{d;9vMQ*R9Dth8Y)psCtgBHgxk+jIca9O!p*W4D@vhZX$jqb_ z>adNs&O@D*m8gO3MIE{mI1L}71~j;^`6YE3YHL=Yz6VE9D|QAw|NZ}8L^RTO=!+SO zm~;*dC7lmTVl~vtj7Ht##TbbzQ7dv1tKm!3p)Mb7CeRpl7)PQ$JhMJVivYR*7jRKwAzdX-V{HAfxZZm0qGMIG{KsP~tmR%l&O z?!RV!nheeSDyqS|HvJE3sk~!M0}-fnDb#>lqdFdp+LGzk)u=7qho0+)I<#KJOg~wz z!EPd2%1Bhlv8cmS&Dt3?qj9JP=2}FCKcQxN+m=5=O)zz=`L1L}t#AY? z-(Ai|YFV418tjZkZ~$rm%Tf1zGio4TS&yL_yoCC2{ek*~dlxq=6NZ+uF^P zyPXLp;w(me5;vndK7l$^udp!Yi!(Mrt`rIQ0DdPavWJ zbVS|%eyIDr9`)fkj#}DtHvc|q3(}V~dz~9~oeH65Ud&n!b=qs7X5JXJ=bce2*dN{c z6>1idIQ#;2T5qGSPo`34Z?mIj5`}7@JgTDvbYWBL5LCSsRJ{$Tj(1tVL-lhJwIvx# zbN_Yv^OQC-$d4+BLaj(?)Ie(3bUoCyYJ-|t5^5l0Q5{W3wYL=YGhnsNKZ*K~T|?db zcc{Y{UWWUxNaZr7fwrin?t|)hBC5mbr~$3AZngObP#s=GUAtQtj!&^5<}B;w`KR1U zs4W_b#c;HBvzv%2{(`H~x14dawMlt%2L3_K(5r$ud|5D-bQG%Lwx|{9jM{>J*72x` zEI`i>A=HFc+qC-|BAW3L>s8bbi@$7zoE1&OA*dM^Lfz+bHr)U2B10|jvB~V zYqE8%bvM$U+c`-@4O~ZEt3NOr(^fJo6OX#r?NBr9ZcRdcg2$pdUV<9nO4RMyj@p`^ zQ1z~%X8r;-z)Y1@pP#?kiKyWMs6!KrE^LKra3t!58K^UmjQUW0h86G|9Dr|71L^aT znfYMr6zfvd0KP=Ea|}KA|2z@x;qRzV=~HXkDkeV<>Q;oJ{?RE0HLy6;HLGURjnGB9 zGipmGqE7u%)E93bY9imFw&pmx>kzp{WEw_RHB0psjv##+6R=h_Q$8QHlp)nkL#0tO zs$|nGQ047W0~~Ihh8n<9)Q4vU>Zj=b>fC?L_!lxX!xyNfNmIi#loex07eO`H4)tO` z)Hi<~mch+f5+7Q_YMKvCD-0)pHmc(t*b;xT`9*5EJ->xIjceJZLha!`)ZsabI-IAm zFy25dVTJ@VzyQ=)D2zHoHBd8cjOw@rYDLDN2CxVax^;2mp zY74$YZOsML3lCBC-k_E~Yh8O7Q3H-c4WKM)<*K1pq8`@6##k3uq6Ypa(!SftP|q~% zLcLH5HL~&;g|#prCZU#W5f;Ehm>=(B9QxHa6Zi;q|68EShoP4I6V#{vAbNflpiB4v z9TEK$3~6BYr~;~kHmFbR1XP1Nu@L@jP1Vr+7>>rG+Ze5I8suQU4yQrU9zAcR9Q1$zw_H;R_-XB;3v$QlTP!oHT z9*XVpj73T&#*a}yUZu3&VXVed^g;*ZGYf0<6k4ycJtLUlX~b-mpyY-9&|_8c|hyQojHS7-A= zW^|DbL+xo5)WEi&uInk(dzUdIK1X%n)y2#>2kMqZTk9g<8Mo7$h?a5$s>A81!?Xm| z;C|GZxNOr-qRG#Lnqdi>ZetyaY0005cX6@JAKTURvlLan2`lRUZzrM;#WQqau5MnQ z{~4_`s^jrk7T2RbP`_CpqGtL8HITQ~uYNEcVO;CH@6SX4aZGH;oqkrcMn{f_V z66YT3u>FndAWaYRVG2Nf0b?)}TVe+siCVF1sFiejnhvv|RxlE^vQ<%A+!%G1`l09d z|FuN)Q|hSoCh9c*gF2J}z03e|pc;z9Xsm+GaG>=#YQC&EC%-LuX(sYCu1u3tyuKkY|9IQA1SzFjPm2aV8!{z1MJ{S>nN{ z^0`1NCEH;0#mkSn zW@WJwwnCk$rKsQe)}vPP8yt!5XExGrh`Hy#TmMD9;6K!y+A#F|Js#CzZB%({)CZ+6 z>hO)V>A9#6&MHic8&NagX1$8sCjR|*m>HoD>O+##nh$l@ilV;h6;Qvy)W9^@2yp3GOjiNOWnd&$Vo;H+fZ%%iu_nxrp9*@zW*Sdk$5HYe#JtB5riBx zT#;~v_x1hI6HoqL6LtLPqaUFIFc(<4*46& zYfkz&@eiL=)H^}hEi&&Dt`g71V16Jzh`ML60eKmyrzaynf1Gq=d`89)DwLwKo}mPO z_&L9m--)o5^hW#AZhT6ap7S=Z-UkC&X^Ncx$n&CJ5OucOdP}Wu$e%{Mj8|>`@<_!^ zBnDy;+>hVVNKV3c#4|Ifm#F6_LT&2YuxT&idiaPs>64!(WKESVmC&{BV9To8x-+mP z;Q--3>VHKYFXE#J`KbF;4e=DCtc8j4AF}Xk03m_UhtP()6YwT=c2MUd)U$@rf_yz= z$#Z*Y*=+{D7I^+kiv1M!BySs`JPnm5=<%m+kX`vVFL9{JKTAB8 zj*enB%4cH(LKJyVa36U;6I$_JGwNq1K8Y}cviXGZ#M|rs7o~6_VJD$GVI_Hbx}km< zsYsrlD)^GTdbV77;WY9UVVSMd4aeH@pUBt4?=ntT^8HQH^Jh*5smHDNHu1+(LMnnU zm2Z$2K!s2mDnVFEUO~bjLJ{)y{{l?UEj=w;>)B5JXgbkTpLj{)XHicj{0C#myG#8p_8pb| zX5*W27hx)4dTQN2`>e)-G!R0_ZD)9pO4&(wrNPOB->LHo^&Fr~ztSzIybR&}Q-t_G zl<6-$dJ5V4ieDg}iSm<_zeXRee?AHl$tbQGJfD&`4S%C@AmI-}2Ety#`)3XHOOq~$ zdhQXv;Ju2Zza*@q%$rI4LH;As=}G4&44{slL%58zyA_ECROn35Q_0SJHx<4j?+ZdL zLTOX%q$XaL7sG5?Y_p9jUY;^NzvBk-M^b+x>2}126aVn}OrLfADi%qnCu~VxD()lx zBMqFyA-vRyJpGDSgS^_r-x0q+h$3Cc4!9g?J%cGYnuok$#P!rC{x$IjI)CSF=I6w3^HP5TfAMj?!S~NAA`i&BMkvg{a!|INyq$#V z#G}b;f~^UWw5MNuBMEv^$oql!W)So=BRse9wwEZZNMahHs9nmk*qroVgdzkz-ZaYJ z)SW@Z<7}StKPP^JHYyYEMSLD1g0!B_o}X~@?DY71g45KN==XO$<0Z(pZFs3-`O_Eb~2HtzXwht?;i2o)H_9Z|CG=#j^Rw_9GS^fDou#9 z4V>ZyJ#z?osk4OqC|mX!^?xDmYnQ}Rkw3Iw-|*fO`)&~Rz9%n~dS|KMo3M#8A6%>O z{tMIFj%too4W6Mw6+%HJcq;K?Ucz+Z9jTX|MlX|YL(rqYKBcwq-^Wp&T=H$+9ZW^t z-ZnoyX&*NkE5` zTdA8L^`zsSDB`av)06x%!B5Q$@EnE+VnLL&B%I@|T=uOvRpps$(@`er`7)*8Yp^Sf;a|TjRPdNEa2#<;XrQhQ3Q4mZ+e^Y53p&jYHgez3I zh3CnOCM5Av2HWU6(t5^Ft|yT&*T(nQvI3+J6CY36e}o!@PstmMe-pM+HeZKfhJCRF znel|~q~j?}Lub|TC3y#lZzjHqxSr+fYvh!VB7X zh6@PuD0_(CljqC3?#le3=T{0=5dN^~TNpz6Un=%8Rh)g~?I8Vwt&>g1h$lDolE^=7 zlFlm1Uy*kkw~+TI@uS55z~a1fA9s=dDHZ>~@C6mVNv_;D>%7|D?xM8v{#i{8JxA~= zAqVXJ|0_Ceomn9Tq6i=`?^#&4tqnyX> z>?U!U*g7ir#|4;+k0I!(N!~5$9w*)mSCXHR_!ulq*-P>qY(PjuSW5CE%1#k~ zOME#d+O}RH|E9u!1FzG-bB@FT6LkV?C7X0I@nS3T`V*Fu`A8jo@RTEckua9LF@$hJ zR^F+=j2Gb8586v@-+e@0AL2{&Y0^`GjL&Vw>%4TDyp4n($qOLuPgqF0AL$Le6GQw{ zT!DK0i5I7i9zTQU|AtM`$_ykQ@1;RKb*T3rVFmAa=3l_%J9(&dgv{?LEJj`z;*ZJG zv(c(}HS*Kh^de>O#Ms7*^6mu6lPT|stXX;yfdBjw^&E}A5Xzz zGTLHYEJ zqA?rqeWG7}uMn=0@%}kNB!#?x38fj#KwB`FI?V{_ZQU%C}2hm4G{D-_ksB;%fo_n53?em<> zHH1VeO+!5=s5F!?j(8)&RKiipUy!$lxSpznd(;mhzbpAIJ-M7G+lEbg{)gH~>P#ko zA@W2zC5U8YNj@Sxw>7mwzBIIpvJ+IEh{@xAADrB;b?)sYTmRNPwrgTy7gyJQ16|>R zTm>67ZtN-+9TVv^O6=deN8%vY|0<1*j@cftJ;=w$)g`faVp3w4=#;YwUV+;yf0HkF z@{h1~)9~8E|*Otm&p+5eVhjdKpIM6k?f0vG$%`RrMG%&@#3$6F);*}*JU6p=)`zCfy(%3)s YNgV3x+b^j{=fvb$58_hV4E6H;AIaM(2><{9 delta 23547 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 PO2@l`Qks3_s`P&VtsD6} diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index bed732a7a2..8e36a39662 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -9,13 +9,14 @@ # msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:43:22+0000\n" "Language-Team: British English\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: out-statusnet\n" @@ -29,8 +30,11 @@ msgstr " Search Stream for \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr " except this private data: password, e-mail address, IM address, phone number." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +" except this private data: password, e-mail address, IM address, phone " +"number." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -52,8 +56,60 @@ msgstr "%1$s has invited you to join them on %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -63,8 +119,20 @@ msgstr "%1$s is now listening to your notices on %2$s." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -140,14 +208,22 @@ msgstr "%s updates from everyone!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(You should receive a message by e-mail momentarily, with instructions on how to confirm your e-mail address.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(You should receive a message by e-mail momentarily, with instructions on " +"how to confirm your e-mail address.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%)." +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -191,17 +267,29 @@ msgstr "6 or more characters. Required." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "A confirmation code was sent to the e-mail address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"A confirmation code was sent to the e-mail address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -381,8 +469,10 @@ msgstr "Automatically login in the future; not for shared computers!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -400,14 +490,22 @@ msgstr "Avatar updated." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 -#, php-format, fuzzy -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +#, fuzzy, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -544,8 +642,36 @@ msgstr "Confirmation code not found." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -952,8 +1078,12 @@ msgid "Find people on this site" msgstr "Find people on this site" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "For security reasons, please re-enter your user name and password before changing your settings." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1038,16 +1168,28 @@ msgstr "I.M. Settings" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "If you already have an account, login with your username and password to connect it to your OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "If you've forgotten or lost your password, you can get a new one sent to the e-mail address you have stored in your account." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"e-mail address you have stored in your account." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1077,8 +1219,12 @@ msgstr "Incorrect username or password." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Instructions for recovering your password have been sent to the e-mail address registered to your account." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Instructions for recovering your password have been sent to the e-mail " +"address registered to your account." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1174,8 +1320,14 @@ msgstr "Invite new users" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public Licence](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public Licence](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1185,8 +1337,12 @@ msgstr "Jabber ID already belongs to another user." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1253,8 +1409,14 @@ msgstr "Login with an [OpenID](%%doc.openid%%) account." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1298,9 +1460,13 @@ msgstr "Microblog by %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 -#, php-format, fuzzy -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Mobile carrier for your phone. If you know a carrier that accepts SMS over e-mail but isn't listed here, send e-mail to let us know at %s." +#, fuzzy, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over e-" +"mail but isn't listed here, send e-mail to let us know at %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1923,8 +2089,14 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Phone number, no punctuation or spaces, with area code" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2107,8 +2279,12 @@ msgid "Remove OpenID" msgstr "Remove OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2204,13 +2380,21 @@ msgstr "Search Stream Feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2247,13 +2431,18 @@ msgstr "Send me notices through Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 #, fuzzy -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" +"Send me replies through Jabber/GTalk from people I'm not subscribed to." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2485,13 +2674,25 @@ msgstr "The address was removed." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "The subscription has been authorised, but no callback URL was passed. Check with the site's instructions for details on how to authorise the subscription. Your subscription token is:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"The subscription has been authorised, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorise the " +"subscription. Your subscription token is:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2517,22 +2718,34 @@ msgstr "These are the people whose notices you listen to." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" -msgstr "These people are already users and you were automatically subscribed to them:" +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"These people are already users and you were automatically subscribed to them:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "This confirmation code is too old. Please start again." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2581,8 +2794,14 @@ msgstr "Timezone not selected." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2636,8 +2855,12 @@ msgid "Unknown version of OMB protocol." msgstr "Unknown version of OMB protocol." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2698,8 +2921,16 @@ msgid "Upload" msgstr "Upload" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site licence, also. Use a picture that belongs to you and that you want to share." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site licence, also. Use a picture that belongs to you and that you want to " +"share." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2707,8 +2938,10 @@ msgstr "Upload a new profile image" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Use this form to invite your friends and colleagues to use this service." +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Use this form to invite your friends and colleagues to use this service." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2801,8 +3034,12 @@ msgid "You already have this OpenID!" msgstr "You already have this OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2834,19 +3071,29 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "You can receive SMS messages through e-mail from %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "You can update your personal profile info here so people know more about you." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"You can update your personal profile info here so people know more about you." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2870,8 +3117,24 @@ msgstr "You did not send us that profile" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "You have a new posting address on %1$s.\n\nSend e-mail to %2$s to post new messages.\n\nMore e-mail instructions at %3$s.\n\nFaithfully yours,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"You have a new posting address on %1$s.\n" +"\n" +"Send e-mail to %2$s to post new messages.\n" +"\n" +"More e-mail instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2887,8 +3150,12 @@ msgstr "You must be logged in to invite other users to use %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2906,8 +3173,12 @@ msgstr "Your nickname on this server, or your registered e-mail address." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3103,8 +3374,12 @@ msgstr "This is your inbox, which lists your incoming private messages." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3146,8 +3421,10 @@ msgstr "You can't send a message to this user." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Don't send a message to yourself; just say it to yourself quietly instead." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Don't send a message to yourself; just say it to yourself quietly instead." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3197,8 +3474,10 @@ msgstr "This is your outbox, which lists private messages you have sent." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Search for people on %%site.name%% by their name, location, or interests. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" +"Search for people on %%site.name%% by their name, location, or interests. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3249,8 +3528,12 @@ msgstr "Password must be 6 or more characters." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to…" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to…" #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3297,7 +3580,7 @@ msgid "Send a message" msgstr "Send a message" #: actions/smssettings.php:312 actions/smssettings.php:464 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Mobile carrier for your phone. " msgstr "Mobile carrier for your phone. " @@ -3373,12 +3656,18 @@ msgstr "%s added your notice as a favourite" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "%1$s just added your notice from %2$s as one of their favourites.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"%1$s just added your notice from %2$s as one of their favourites.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Add your Twitter account to automatically send your notices to Twitter, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Add your Twitter account to automatically send your notices to Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3425,8 +3714,12 @@ msgstr "Subscribe to my Twitter friends here." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3641,8 +3934,12 @@ msgstr "User without matching profile in system." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "You have a new posting address on %1$s.\n\n" -msgstr "You have a new posting address on %1$s.\n\n" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" +"You have a new posting address on %1$s.\n" +"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3651,8 +3948,12 @@ msgstr "New private message from %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "%1$s (%2$s) sent you a private message:\n\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"%1$s (%2$s) sent you a private message:\n" +"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4148,8 +4449,10 @@ msgstr "Create a new group" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Search for groups on %%site.name%% by their name, location, or description. " +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Search for groups on %%site.name%% by their name, location, or description. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" @@ -4278,8 +4581,10 @@ msgid "Ajax Error" msgstr "Ajax Error" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "This user doesn't allow nudges or hasn't confirmed or set his e-mail yet." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"This user doesn't allow nudges or hasn't confirmed or set his e-mail yet." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4353,8 +4658,10 @@ msgstr "Profile information" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4385,8 +4692,12 @@ msgstr "Could not retrieve public stream." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4533,8 +4844,12 @@ msgstr "All members" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4586,8 +4901,12 @@ msgstr "All groups" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4693,16 +5012,22 @@ msgid "Tag user" msgstr "Tag user" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "You can only tag people you are subscribed to or who are subscribed to you." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"You can only tag people you are subscribed to or who are subscribed to you." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4796,8 +5121,10 @@ msgstr "Problem saving notice. Unknown user." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Too many notices too fast; take a breather and post again in a few minutes." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Too many notices too fast; take a breather and post again in a few minutes." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -4976,8 +5303,10 @@ msgstr "Describe the group or topic in 140 chars" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" +"Location for the group, if any, like \"City, State (or Region), Country\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" @@ -5040,8 +5369,12 @@ msgstr "Login or register with OpenID" #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Hey, %s.\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Hey, %s.\n" +"\n" #: lib/mail.php:236 #, php-format @@ -5060,8 +5393,12 @@ msgstr "Homepage: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "Bio: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Bio: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5229,17 +5566,17 @@ msgid "Unsubscribe from this user" msgstr "Unsubscribe from this user" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed for friends of %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed for friends of %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed for friends of %s" @@ -5249,7 +5586,7 @@ msgid "You and friends" msgstr "%s and friends" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "You can upload your personal avatar." @@ -5258,10 +5595,21 @@ msgstr "You can upload your personal avatar." msgid "Avatar deleted." msgstr "Avatar updated." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5273,9 +5621,29 @@ msgstr "There was a problem with your session token. Try again, please." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Send me e-mail when someone sends me a private message." +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format, fuzzy -msgid "You can upload a logo image for your group. The maximum file size is %s." +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "You can upload a logo image for your group." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5284,14 +5652,28 @@ msgid "Pick a square area of the image to be the logo." msgstr "Pick a square area of the image to be your avatar" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Microblog by %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" #: actions/newmessage.php:102 #, fuzzy @@ -5299,14 +5681,18 @@ msgid "Only logged-in users can send direct messages." msgstr "Error sending direct message." #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr " Search Stream for \"%s\"" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "For security reasons, please re-enter your user name and password before changing your settings." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5323,10 +5709,35 @@ msgstr "Public Stream Feed" msgid "Public Stream Feed (Atom)" msgstr "Public Stream Feed" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr " except this private data: password, e-mail address, IM address, phone number." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" except this private data: password, e-mail address, IM address, phone " +"number." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5334,33 +5745,44 @@ msgstr " except this private data: password, e-mail address, IM address, phone n msgid "Created" msgstr "Create" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Group profile" #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "'s profile" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Notice feed for %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Notice feed for %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Notice feed for %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Outbox for %s" @@ -5376,10 +5798,47 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Profile settings" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5396,18 +5855,27 @@ msgstr "No such user" #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Add your Twitter account to automatically send your notices to Twitter, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Add your Twitter account to automatically send your notices to Twitter, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Unable to retrieve account information for \"%s\" from Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5416,8 +5884,11 @@ msgstr "Search for people or text" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "Too many notices too fast; take a breather and post again in a few minutes." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Too many notices too fast; take a breather and post again in a few minutes." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5429,21 +5900,218 @@ msgstr "Connect to IM, SMS, Twitter" msgid "Badge" msgstr "Nudge" +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "To use the %s Facebook Application you need to login " +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Search" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5460,12 +6128,12 @@ msgid "Block this user from this group" msgstr "A list of the users in this group." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "User profile" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s and friends, page %d" @@ -5489,26 +6157,56 @@ msgstr "Confirmation code" msgid "Do not delete this notice" msgstr "Can't delete this notice." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Invalid tag: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Nickname already in use. Try another one." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Could not create favourite." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5519,6 +6217,14 @@ msgstr "New notice" msgid "No notice" msgstr "New notice" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5530,6 +6236,10 @@ msgstr "Not a valid nickname." msgid "No group specified." msgstr "No profile specified." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5546,6 +6256,18 @@ msgstr "You are not a member of that group." msgid "Block user from group" msgstr "Block user" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5556,6 +6278,12 @@ msgstr "You must be logged in to create a group." msgid "Group design" msgstr "Groups" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5588,46 +6316,232 @@ msgstr "You must be an admin to edit the group" msgid "Make Admin" msgstr "Admin" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "No results" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "User has blocked you." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Message" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Couldn't save profile." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profile settings" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "If you've forgotten or lost your password, you can get a new one sent to the e-mail address you have stored in your account." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"e-mail address you have stored in your account." #: actions/recoverpassword.php:158 #, fuzzy @@ -5649,30 +6563,87 @@ msgstr "Error with confirmation code." msgid "Subscribe to a remote user" msgstr "Subscribe to this user" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "%s favourite notices, page %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Notice feed for %s group" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Notice feed for %s group" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Notice feed for %s group" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -5685,33 +6656,84 @@ msgid "Not a local notice" msgstr "Not a local user." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Notices tagged with %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Notice feed for %s group" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s is now listening to " #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Notice feed for %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Notice feed for %s" @@ -5742,16 +6764,20 @@ msgid "Could not find target user." msgstr "Couldn't find any statuses." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Updates replying to %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5767,41 +6793,127 @@ msgstr "%s subscriptions" msgid "Profile design" msgstr "Profile settings" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "You are not a member of that group." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problem saving notice." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Message to %1$s on %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "User profile" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profile" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Upload" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Change your password" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5817,21 +6929,127 @@ msgstr "Search" msgid "Links" msgstr "Login" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Block" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Block user" #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "Add or edit %s logo" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5847,11 +7065,26 @@ msgstr "User" msgid "Search help" msgstr "Search" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "Homepage is not a valid URL." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5859,12 +7092,12 @@ msgid "No such page" msgstr "No such tag." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Direct messages to %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "That's too long. Max message size is 140 chars." @@ -5873,8 +7106,12 @@ msgstr "That's too long. Max message size is 140 chars." msgid "Could not unfollow user: User not found." msgstr "Could not follow user: User not found." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "description is too long (max 140 chars)." @@ -5884,7 +7121,7 @@ msgid "You are already a member of that group." msgstr "You are already a member of that group" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Could not join user %s to group %s" @@ -5894,31 +7131,45 @@ msgid "You are not a member of this group." msgstr "You are not a member of that group." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Could not remove user %s to group %s" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "%s groups" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "Groups %s is a member of" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Group actions" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar updated." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "That's too long. Max notice size is 140 chars." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -5930,12 +7181,12 @@ msgid "Post to " msgstr "Photo" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "description is too long (max 140 chars)." #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" @@ -5970,7 +7221,7 @@ msgid "Cannot read file." msgstr "Lost our file." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Updates from %1$s on %2$s!" @@ -5980,17 +7231,41 @@ msgid "IM is not available." msgstr "This page is not available in a " #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Updates from %1$s on %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "All updates matching search term \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Connect" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Describe yourself and your interests in 140 chars" @@ -6000,13 +7275,20 @@ msgid "Describe yourself and your interests" msgstr "Describe yourself and your " #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Bio is too long (max 140 chars)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Not a valid profile URL (no YADIS document)." #: actions/remotesubscribe.php:176 @@ -6019,35 +7301,53 @@ msgstr "That's a local profile! Login to subscribe." msgid "Couldn’t get a request token." msgstr "Couldn't get a request token." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Notice feed for %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Notice feed for %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Notice feed for %s group" +msgstr "Notice feed for %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Message to %1$s on %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed for favourites of %s" +msgstr "Feed for friends of %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed for favourites of %s" +msgstr "Feed for friends of %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Feed for favourites of %s" +msgstr "Feed for friends of %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "%s group" +msgstr "Outbox for %s" #: actions/shownotice.php:90 #, fuzzy @@ -6060,32 +7360,80 @@ msgid "SMS is not available." msgstr "This page is not available in a " #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Notice feed for %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "The subscription has been authorised, but no callback URL was passed. Check with the site's instructions for details on how to authorise the subscription. Your subscription token is:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"The subscription has been authorised, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorise the " +"subscription. Your subscription token is:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Can't read avatar URL '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Wrong image type for '%s'" @@ -6100,27 +7448,35 @@ msgid "Site content license" msgstr "StatusNet software licence" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Couldn't update user with confirmed e-mail address." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Nudge sent" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Message too long - maximum is 140 characters, you sent %d" #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Message too long - maximum is 140 characters, you sent %d" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Reply to this notice" @@ -6129,11 +7485,54 @@ msgstr "Reply to this notice" msgid "Error saving notice." msgstr "Problem saving notice." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "No confirmation code." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6150,32 +7549,76 @@ msgid "Describe the group or topic" msgstr "Describe the group or topic in 140 chars" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Describe the group or topic in 140 chars" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Notice feed for %s" +msgstr "New notice" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s added your notice as a favourite" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "from" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Could not delete favourite." +msgstr "Could not retrieve public stream." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Delete notice" - diff --git a/locale/es/LC_MESSAGES/statusnet.mo b/locale/es/LC_MESSAGES/statusnet.mo index f2534940f1267430f721a4584116794a8dbda082..a9e9e6bc7610debd1ab0896afc7ff0005701f009 100644 GIT binary patch delta 23696 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 YlcC{&_<_CL?FV-4*DI;=RM$uU11|YYM*si- delta 23543 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 - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "Para usar la Aplicación de Facebook %s debes ingresar" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr " %1$s ahora está escuchando tus avisos en %2$s.\n\n %3$s\n\nAtentamente,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"\t%1$s ahora está escuchando tus avisos en %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentamente,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Buscar" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5568,12 +6269,12 @@ msgid "Block this user from this group" msgstr "Lista de los usuarios en este grupo." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Perfil de usuario" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s y amigos, página %d" @@ -5597,26 +6298,56 @@ msgstr "Código de confirmación" msgid "Do not delete this notice" msgstr "No se puede eliminar este aviso." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Tag no válido: '%s' " #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "El apodo ya existe. Prueba otro." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "No se pudo crear favorito." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5627,6 +6358,14 @@ msgstr "Nuevo aviso" msgid "No notice" msgstr "Nuevo aviso" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5638,6 +6377,10 @@ msgstr "Apodo no válido" msgid "No group specified." msgstr "No se especificó perfil." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5654,6 +6397,18 @@ msgstr "No eres miembro de ese grupo" msgid "Block user from group" msgstr "Bloquear usuario." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5664,6 +6419,12 @@ msgstr "Debes estar conectado para crear un grupo" msgid "Group design" msgstr "Grupos" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5696,46 +6457,232 @@ msgstr "Debes ser un admin para editar el grupo" msgid "Make Admin" msgstr "Admin" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Ningún resultado" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "El usuario te ha bloqueado." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Mensaje" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "No se pudo guardar el perfil." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) te permite ingresar a muchos sitios con la misma cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) te permite ingresar a muchos sitios con la misma " +"cuenta de usuario. Puedes administrar tus OpenID asociados desde aquí." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Configuración del perfil" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) " +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Es un %%site.name%%, un servicio [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Si has olvidado o perdido tu contraseña, puedes obtener una nueva enviada a la dirección de correo electrónico que almacenaste en tu cuenta." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si has olvidado o perdido tu contraseña, puedes obtener una nueva enviada a " +"la dirección de correo electrónico que almacenaste en tu cuenta." #: actions/recoverpassword.php:158 #, fuzzy @@ -5757,30 +6704,87 @@ msgstr "Error con el código de confirmación." msgid "Subscribe to a remote user" msgstr "Suscribirse a este usuario" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "%s avisos favoritos, página %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed de avisos de grupo %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed de avisos de grupo %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed de avisos de grupo %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) " +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-" +"blogging](http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -5793,33 +6797,84 @@ msgid "Not a local notice" msgstr "No es usuario local." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Avisos marcados con %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Feed de avisos de grupo %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) " +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s ahora está escuchando " #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed de avisos de %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed de avisos de %s" @@ -5850,16 +6905,20 @@ msgid "Could not find target user." msgstr "No se pudo encontrar ningún estado." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Actualizaciones en respuesta a %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5875,41 +6934,127 @@ msgstr "Suscripciones %s" msgid "Profile design" msgstr "Configuración del perfil" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "No eres miembro de ese grupo" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Hubo un problema al guardar el aviso." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Mensaje a %1$s en %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Perfil de usuario" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Perfil" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Cargar" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Cambia tu contraseña" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5925,21 +7070,127 @@ msgstr "Buscar" msgid "Links" msgstr "Inicio de sesión" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Bloquear" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Bloquear usuario." #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "Agregar o editar el logo de %s" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5955,11 +7206,26 @@ msgstr "Usuario" msgid "Search help" msgstr "Buscar" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "La página de inicio no es un URL válido." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5967,12 +7233,12 @@ msgid "No such page" msgstr "No existe ese tag." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Mensajes directos a %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Demasiado largo. Máximo 140 caracteres. " @@ -5981,8 +7247,12 @@ msgstr "Demasiado largo. Máximo 140 caracteres. " msgid "Could not unfollow user: User not found." msgstr "No puede seguir al usuario. Usuario no encontrado" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Descripción es demasiado larga (máx. 140 caracteres)." @@ -5992,7 +7262,7 @@ msgid "You are already a member of that group." msgstr "Ya eres miembro de ese grupo" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "No se puede unir usuario %s a grupo %s" @@ -6002,31 +7272,45 @@ msgid "You are not a member of this group." msgstr "No eres miembro de ese grupo" #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "No se pudo eliminar a usuario %s de grupo %s" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "Grupos %s" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "%s es miembro de los grupos" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Acciones del grupo" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar actualizado" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Demasiado largo. La longitud máxima es de 140 caracteres. " +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -6038,12 +7322,12 @@ msgid "Post to " msgstr "Foto" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Descripción es demasiado larga (máx. 140 caracteres)." #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" @@ -6078,7 +7362,7 @@ msgid "Cannot read file." msgstr "Se perdió nuestro archivo" #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "¡Actualizaciones de %1$s en %2$s!" @@ -6088,17 +7372,41 @@ msgid "IM is not available." msgstr "Esta página no está disponible en un " #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Inicia una sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea](%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Inicia una sesión con tu usuario y contraseña. ¿Aún no tienes usuario? [Crea]" +"(%%action.register%%) una cuenta nueva o prueba [OpenID] (%%action." +"openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "¡Actualizaciones de %1$s en %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Conectarse" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Cuéntanos algo sobre ti y tus intereses en 140 caracteres" @@ -6108,13 +7416,20 @@ msgid "Describe yourself and your interests" msgstr "Descríbete y cuenta de tus " #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "La biografía es demasiado larga (máx. 140 caracteres)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "URL de perfil no válido (ningún documento YADIS)." #: actions/remotesubscribe.php:176 @@ -6127,35 +7442,53 @@ msgstr "¡Es un perfil local! Ingresa para suscribirte" msgid "Couldn’t get a request token." msgstr "No se pudo obtener la señal de petición." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed de avisos de %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed de avisos de %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Feed de avisos de grupo %s" +msgstr "Feed de avisos de %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Mensaje a %1$s en %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed para favoritos de %s" +msgstr "Feed de los amigos de %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed para favoritos de %s" +msgstr "Feed de los amigos de %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Feed para favoritos de %s" +msgstr "Feed de los amigos de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "Grupo %s" +msgstr "Bandeja de salida para %s" #: actions/shownotice.php:90 #, fuzzy @@ -6168,32 +7501,80 @@ msgid "SMS is not available." msgstr "Esta página no está disponible en un " #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed de avisos de %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Por favor revisa estos detalles para asegurar que deseas suscribirte a los avisos de este usuario. Si no pediste esta suscripción, haz clic en \"Cancelar\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Por favor revisa estos detalles para asegurar que deseas suscribirte a los " +"avisos de este usuario. Si no pediste esta suscripción, haz clic en " +"\"Cancelar\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Se ha autorizado la suscripción, pero no se ha enviado un URL de retorno. Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu identificador de suscripción es:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Se ha autorizado la suscripción, pero no se ha enviado un URL de retorno. " +"Lee de nuevo las instrucciones para saber cómo autorizar la suscripción. Tu " +"identificador de suscripción es:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Se ha rechazado la suscripción, pero no se ha enviado un URL de retorno. Lee de nuevo las instrucciones para saber cómo rechazar la suscripción completamente." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Se ha rechazado la suscripción, pero no se ha enviado un URL de retorno. Lee " +"de nuevo las instrucciones para saber cómo rechazar la suscripción " +"completamente." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "No se puede leer el URL del avatar '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo de imagen incorrecto para '%s'" @@ -6208,27 +7589,36 @@ msgid "Site content license" msgstr "Licencia de software de StatusNet" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "No se pudo actualizar el usuario con la dirección de correo confirmada." +msgstr "" +"No se pudo actualizar el usuario con la dirección de correo confirmada." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Se envió zumbido" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Mensaje muy largo - máximo 140 caracteres, enviaste %d" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Responder este aviso." @@ -6237,11 +7627,54 @@ msgstr "Responder este aviso." msgid "Error saving notice." msgstr "Hubo un problema al guardar el aviso." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Ningún código de confirmación." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6258,32 +7691,76 @@ msgid "Describe the group or topic" msgstr "Describir al grupo o tema en 140 caracteres" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Describir al grupo o tema en 140 caracteres" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Feed de avisos de %s" +msgstr "Nuevo aviso" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s agregó tu aviso a favoritos" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "desde" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "No se pudo borrar favorito." +msgstr "No se pudo acceder a corriente pública." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Borrar aviso" - diff --git a/locale/fi/LC_MESSAGES/statusnet.mo b/locale/fi/LC_MESSAGES/statusnet.mo index 9a02d0a2a9cb6af075b768f963382d3caa6fe7b8..ee82807b2301a0807c52cc15cf7bfd1899d55d62 100644 GIT binary patch delta 24023 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 QS^R+bgu#i)=DX_sFSgy|DF6Tf delta 23568 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 V$(a|q_9dUK - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "Käyttääksesi %s Facebook-sovellusta sinun pitää kirjautua sisään " +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s.\n\n %3$s\n\nTerveisin,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s seuraa nyt päivityksiäsi palvelussa %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Terveisin,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Haku" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5456,12 +6181,12 @@ msgid "Block this user from this group" msgstr "Lista ryhmän käyttäjistä." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Käyttäjän profiili" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s ja kaverit, sivu %d" @@ -5485,26 +6210,56 @@ msgstr "Vahvistuskoodi" msgid "Do not delete this notice" msgstr "Tätä päivitystä ei voi poistaa." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Virheellinen tagi: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Ei voitu lisätä suosikiksi." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5515,6 +6270,14 @@ msgstr "Uusi päivitys" msgid "No notice" msgstr "Uusi päivitys" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5526,6 +6289,10 @@ msgstr "Tuo ei ole kelvollinen tunnus." msgid "No group specified." msgstr "Profiilia ei ole määritelty." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5542,6 +6309,18 @@ msgstr "Sinä et kuulu tähän ryhmään." msgid "Block user from group" msgstr "Estä käyttäjä" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5552,6 +6331,12 @@ msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän." msgid "Group design" msgstr "Ryhmät" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5584,46 +6369,232 @@ msgstr "Sinun pitää olla ylläpitäjä, jotta voit muokata ryhmää" msgid "Make Admin" msgstr "Ylläpito" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Ei hakutuloksia" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Käyttäjä on asettanut eston sinulle." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Viesti" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Ei voitu tallentaa profiilia." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) mahdollistaa kirjautumisen sisään useaan palveluun yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) mahdollistaa kirjautumisen sisään useaan palveluun " +"yhdellä tunnuksella. Voit hallinnoida OpenID-tunnuksiasi täällä." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profiiliasetukset" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-blogging)palvelu " +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-" +"blogging)palvelu " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Jos olet unohtanut tai hukannut salasanasi, voit saada uuden sähköpostiisi, jonka olet tallettanut käyttäjätunnuksellesi." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Jos olet unohtanut tai hukannut salasanasi, voit saada uuden sähköpostiisi, " +"jonka olet tallettanut käyttäjätunnuksellesi." #: actions/recoverpassword.php:158 #, fuzzy @@ -5645,30 +6616,87 @@ msgstr "Virhe vahvistuskoodin kanssa." msgid "Subscribe to a remote user" msgstr "Tilaa tämä käyttäjä" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "Käyttäjän %s suosikkipäivitykset, sivu %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Päivityssyöte ryhmälle %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Päivityssyöte ryhmälle %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Päivityssyöte ryhmälle %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -5681,33 +6709,84 @@ msgid "Not a local notice" msgstr "Käyttäjä ei ole rekisteröitynyt tähän palveluun." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Päivitykset joilla on tagi %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Päivityssyöte ryhmälle %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " +"[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s seuraa nyt käyttäjää" #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Päivityksien syöte käyttäjälle %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Päivityksien syöte käyttäjälle %s" @@ -5738,16 +6817,20 @@ msgid "Could not find target user." msgstr "Ei löytynyt yhtään päivitystä." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Vastaukset päivitykseen %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5763,41 +6846,127 @@ msgstr "Käyttäjän %s tilaukset" msgid "Profile design" msgstr "Profiiliasetukset" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Sinä et kuulu tähän ryhmään." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Käyttäjän profiili" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profiili" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Lataa" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Vaihda salasanasi" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5813,21 +6982,127 @@ msgstr "Haku" msgid "Links" msgstr "Kirjaudu sisään" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Estä" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Estä käyttäjä" #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "Lisää ryhmälle %s logo tai muokkaa sitä " +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5843,11 +7118,26 @@ msgstr "Käyttäjä" msgid "Search help" msgstr "Haku" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "Kotisivun verkko-osoite ei ole toimiva." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5855,12 +7145,12 @@ msgid "No such page" msgstr "Tuota tagia ei ole." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Suorat viestit käyttäjälle %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on 140 merkkiä." @@ -5869,8 +7159,12 @@ msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on 140 merkkiä." msgid "Could not unfollow user: User not found." msgstr "Ei voitu tilata käyttäjää: Käyttäjää ei löytynyt." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "kuvaus on liian pitkä (max 140 merkkiä)." @@ -5880,7 +7174,7 @@ msgid "You are already a member of that group." msgstr "Sinä kuulut jo tähän ryhmään " #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Käyttäjää %s ei voinut liittää ryhmään %s" @@ -5890,31 +7184,45 @@ msgid "You are not a member of this group." msgstr "Sinä et kuulu tähän ryhmään." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "Käyttäjän %s ryhmät" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "Ryhmät, joiden jäsen %s on" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Ryhmän toiminnot" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Kuva poistettu." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Päivitys on liian pitkä. Maksimipituus on 140 merkkiä." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -5926,12 +7234,12 @@ msgid "Post to " msgstr "Kuva" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "kuvaus on liian pitkä (max 140 merkkiä)." #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" @@ -5966,7 +7274,7 @@ msgid "Cannot read file." msgstr "Tiedosto hävisi." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" @@ -5976,17 +7284,41 @@ msgid "IM is not available." msgstr "Tämä sivu ei ole saatavilla " #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Kirjaud sisään käyttäjätunnuksella ja salasanalla. Ei vielä käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Kirjaud sisään käyttäjätunnuksella ja salasanalla. Ei vielä " +"käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " +"kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Kaikki päivitykset hakuehdolla \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Yhdistä" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Kuvaile itseäsi ja kiinnostuksiasi 140 merkillä" @@ -5996,54 +7328,82 @@ msgid "Describe yourself and your interests" msgstr "Kuvaile itseäsi ja" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei löytynyt)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" +"Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei " +"löytynyt)." #: actions/remotesubscribe.php:176 #, fuzzy msgid "That’s a local profile! Login to subscribe." -msgstr "Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." +msgstr "" +"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Ei saatu request tokenia." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Päivityksien syöte käyttäjälle %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Päivityssyöte ryhmälle %s" +msgstr "Päivityksien syöte käyttäjälle %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Käyttäjän %s suosikkien syöte" +msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Käyttäjän %s suosikkien syöte" +msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Käyttäjän %s suosikkien syöte" +msgstr "Käyttäjän %s kavereiden syöte (Atom)" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "Ryhmä %s" +msgstr "Käyttäjän %s lähetetyt viestit" #: actions/shownotice.php:90 #, fuzzy @@ -6056,32 +7416,79 @@ msgid "SMS is not available." msgstr "Tämä sivu ei ole saatavilla " #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Päivityksien syöte käyttäjälle %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, paina \"Peruuta\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " +"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " +"paina \"Peruuta\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. Tilauskoodisi on:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei ole " +"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " +"Tilauskoodisi on:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " +"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Kuvan URL-osoitetta '%s' ei voi avata." #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Kuvan '%s' tyyppi on väärä" @@ -6096,27 +7503,35 @@ msgid "Site content license" msgstr "StatusNet-ohjelmiston lisenssi" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Tönäisy lähetetty" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Vastaa tähän päivitykseen" @@ -6125,11 +7540,54 @@ msgstr "Vastaa tähän päivitykseen" msgid "Error saving notice." msgstr "Ongelma päivityksen tallentamisessa." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Varmistuskoodia ei ole annettu." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6146,32 +7604,76 @@ msgid "Describe the group or topic" msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Päivityksien syöte käyttäjälle %s" +msgstr "Uusi päivitys" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s lisäsi päivityksesi suosikkeihinsa" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " lähteestä " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Ei voitu poistaa suosikkia." +msgstr "Julkista päivitysvirtaa ei saatu." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Poista päivitys" - diff --git a/locale/fr/LC_MESSAGES/statusnet.mo b/locale/fr/LC_MESSAGES/statusnet.mo index 562b9dceea8ebeaa7a7b55db63bc39f3757d91bc..c85377e96471ad7ab1a0d5a55554e418ea213000 100644 GIT binary patch delta 25295 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 Ht}6cr=z(d= delta 24453 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�yN4Rx&Up#~C|-gF=q3y^ML)BREPr(hoR&LX1CumfZ89Jay~8B9YRupsGa zs26vjM!pv{q9@kyjAqj{M77rzHGsjWO*$HN9G9RvdJy?x---kvX;9$ zDvN30d^XpA(OgGWd}}QeYDS!hnu$fIB#X>D#DfEwUzsq>#i zM4Rgp>VgT#;rf5hzmMUhCt^)pgO%_;Y9vuP%~CY7jzV3{+fhq%+2#j_nR*pbAMS(t z-YoR$7lJ)RD&jNDk0o-MP171Rl95;zH=)+<4^&6o+@@X?tU$UeY5*%x?L9%wNbztp zpuVV%uR;y%XgKFzH`*U$=tG%2X3eXkc5wn~*DpeCx>KlMwUR{`^P@IrebhPckL7R$ zYVTaNrp#k*&Qhpj+7UI7u6ev>sz#Eb3uuEa*lR2Pg!Rb3hU#&_yk=L|MRo8!)Y5oS zQ+f!s1P?F-Ge`P&xf5Y+jXE7OFePsA647o=vVM=6%Insg`AoVMddQz;-G& z+#f|zGf)owGlIH^R-i7XU8os6Y4g30Z6sv@(~$^N#Zoq12Q|{RsLeA8HPZFi2rr-p z5LwX7Oj*=1t%ll5tx!`w!sd@d-3tqm8TUFXiKvI$QM>je>O+5{_C~HkrbBg6A8vyh z;aJp<*S)A?dKJ~tEQQU7YoOZeVfCSI!b4aE?_p7${~}RlleIy8aH>rwp?2{d)Ccny zG4(p4Hr;2apB1}MH`_hb+GZ$fW}rCg>aK;lAL^mjygin}ZdictJ4=XYO^%>$th=Zw zb&HvcCJXAW&xM+)f~aFu6*bkJt)Ez@TUVmm*@@b`r%*Hdz?z{r=U>O5BoS3?gc?C7 zoA#ncHVgIQ*VfCZbNw$)#H!K8V;DxdSqazwPcDh5-wXO-ERH~(vMs0|atBLr{xcFe zMus-Y71ZYY6?Mh_g=z5(>cx;4Gefyhdrkg{eIB`@dt|5_c2TAEmFj;*a5P&1XR zyxFXoP)k}1)xkK_rk#vK(YuR?_CT2mX6l-vj#VGjTF$Wf>roA#KyA{i)@P`CsVkb} zRS-*%Zi-sk(Wv(4pgOP-v*USWPk5b&CgS9+WR{>6mZd@m^x!;H1K;5Hcowx+mQ*&! z^9xjiH*p#MgF0r5tC)JLu_Wn@s3ratgYi$ys6~24M0a(Hs%CR!#+sx(s9hV68u@(G zW?F|D*>2Podm44V-`f1l)lB^YsC%O<>Pqj2s=pD};x(yFGO@bZoiR1c2g;!T!m#P~ zs2BU#{AD(OJ8DyYhuYN_uqxg}{o0k>(2g`42|SI z>L&aL)1jxX$&a>HLCs8KtcY>g1ec-C{Ug-gNMFy~{n=16Q4`yt7jeP}moGyZ^@nQN%E3TbG52IN4EARlVRDxgMQAGLHnP(Sr1TDPM+h%zyhMEb&S8L0c=OVof4Sbsuw z{GLrGYvM2WI@yTmr&1S~sJn^aAQCeTcfS@-;O-RBEEysc%h0 zUD>ly7tmgez*`um^Pl29GvY|p?k$Cyi6%C`hjl1w2BxBxW*us(FQR{Hn;A=@ej$lN zEzv^M$k(Bc=|0pFpFsbA|MxQyReXe+>bDqxY2G)xIU{O{v!m)2Ma@V>>-*Lo)={W) zKF_+{de-{T8q%EeuZ9W{kyWj&P-~fBos9bMD%3r&9W{k%T9|WO9JM56P&3pN)qwYSHpW!Anj>cj0& zn|CPcH>Rnmj`~oW^&8Z&`wdm^MJvv~&TDXMQxJ-}v!hU(C>~Wl8Ff=GKsB)3=5I&M z%wg1SKZn|kcTo33@CWwTqTb7gTKlqC7HfHlXsSk_cJo48@B`|6rfOr1MQzRxu>cN2 z{ghjR`p_EG67IDAfa=&EsCq9@_1v~*MlxYZ(%w=;bcOan{Z6(MtK&Xv@(<1ZP#cev zKg!y$ok?eFZ$@|%HNyL-0XZF9|3BB~Lbcl+wYd{fduupS-|NgL5=_Q=)D&;G751Rk z=x5Y%yK4>YXnudMjoJg_Q4LQ+?WKj*udLspX5uQU{ypnc^#A<-+aF;!cQPaJSYuIB zRvWc@TcbYE1xw%%RL9n%I)2G|(|Q**BTuY>oy`)4qS}kWocj4+nMgFYL5+9{>Zjl$ z)J3!p^?}Q%4*iO1_%GBR363*sS^{;GzK@#Go~ZT)pgKMdJL5u}j{l-pn`2rRvt~Z@ zklu#c_2*HW?iQ-vTht~?8E^EUrnU@f*Vjh)~E}YxDPZb)7k+f5kR9xSJ_Ihk9>Tchk<-=plU&)$!j@ z_rz5J!cwF!d5IJvlD@a;X?g5Lx-II)I*M)aDOScN38tgdQM-OF>bR{$jc7mW z=6i;^lHa069GYmBsx;~p)I!aaw;>UYw6D$Zp>C$#SPB2a3K-kR{K}PxYG6Iq#I0Bd zU!rcds(sA|8=>y{o~XU!MRjx%Ho#RT?RB0I(QZxG&x|M(mCld4Qj4Rez9wpqv_dr; zhZ^z6=)rZUssA2zEMKEeO`-ngy%MOIsf1auF8crb-}Xdw<8{ME_$BIBrdOz&Dr|sR z%d!|qx)Z8HU9kWTLDgT5TJyuG4m`kO7&g%SZMgwzFHJ+O{c0?%^M93yPC@V>GlEj6 zhT>6sV>;%?uTk}`V`&We*yPtheW(ZOcft9nnfV5_boWrluiz){a z&cAw?e1!S=Ud8$uYAtV}Hcb|esm`zdx~`egukE@(`k|(DE^3B0V>JGRIz7Q7O~+%g z2I-Gb@2x`({M1M)#u7<6%Ju($DzAhekiKLsIhvljECC)S|IirMc^@Z_HGAb6Mv*Qu z&fI{lQ9m0#MlHo!)ag2g+FK88d8P5L)1Gvqmx!*=Q>YPK#pD<;!SpZ~9sXYptVMp! ziN?vOo9~P@YLc0$@u*$D0(E-6L|wuAZ2Ao9^xQ&iTJI|&Iu2oz%?mN85!6BD4@OPt z4AfNbL+$QMsE!6tG3gL%dDO_eVHKQ+>iAKtjcKQvwQqsk8(wFMi8w!EMJnW+W^9c* zuX8X5E<>&9F6(X74VGcL=|E}JNV}jm?Es9xsn`cMqB<5n!_0UU%&p)58xzsR(i?TR z4@T|sDX7i1)_NAxkbaFi|0zE;GZKcHkq^Fg@n&cN9Lif&UM%jw_#OuXPK+HIyNUg67{p;JSJe~*=9gvtTRwQ3l^egWSjK@ z`hWj_NkmhVZjR|danyzK0V;nYY8S7u=~JjFet>E?Xs$_zqw1BxGT09FOXeJ0fyYss zF2QH^)=VGg-$TY~GBnjkQB(UEl^-zAT+R7V9qEP|!9?pi)Ks59ZN{fI{{`yC%Rb)> zq%dlxKCo^?y_b9e=UMOg;7^Li%KLbUEG1(xY79D27k5DtV8P(yR zQ5{IR%zUU3`ezFDV|pEK#fPX4ulU^l{69%Vo978O#uCd-10zvux6Aqn>ypm5!mMoq z>Sw?zT!~juGcszW`6csfYtApshen{5WCiL1+J>AmuXB`$K71QPu+%EEIjSQUgwq-q z;4*84)#lh;K%MtTsD_<2=G0`sv?TMQj%y66UR9fJit0dnOsn(XkBE-hDAbxyu^z@` zq~D_Mg=A|@Lzz(@h(zVbVldW1{g7&mYA+u1Vj}83nPv08LYH)L?O49=f6nmdEJF4G zer{8+n;P4&v}*Fqq$eeaYo@LdLMYQd(bHB9@sy;zGVc#D$^ZN3Vq30^{Iv6m5J6r& z>UvXZh&=tsNNy{xMGyHWv7#+6jSXx(iVuB5e5>u;Xx_g^ypK)4XX{-cf2ob@H>ode zc^2ATPn-?x^&f|L5_zfc?s;fmQu=Qy$5E~|4y4B!DQiRgL&9|8%kctr>QUza7NO2% z^7Q1SJdV7K2GiRHvaHK~nnRI>L3HVRFayFg{lhL7HsMmoy8~?Ze`5&JsY(ZE+ z1wGt1&LQIT!T;#jtWRuN4V&4YI@ihLN4qna2LH8nMMLrq6JC(Nlc1+1X0q{V{v75% z6^-doBP!RqPC?!g97X;b!Y&o?jG=yG(pOdAcIbWTJ|g|rUxPb>{4wO| z=|_GA)#b@g-e<(W_Y$c}L;UD>{vacQ7d|0=$kg-y`Kj%327Ew>B)17>wfUQ=pUcKu zQgS8FE_^v zqD_z=@!tdF1Jbg`UY|E+DKnN&j!jyD9&Y^acA-74@XfY{FvV6Uc9E%k=aATk_vM zzZ3WW`>!&-Abdc@ezr6_4Sz-Y7py_hvx9UMJV>}~8*NA_8F>h~nE`&icm5{)Kv`W=-~SI2xyc((ok4hy{Ku51 zBjh3Ir<{xTDa%99^9AW_v=>Oa8R32Mijr4{c*y{}{vlM*!>?uj-+B~p#z&qIJhqHq ze*OQ6ft)l_bGeo zC4*ml{LeWu^cznh()yL`FlEJvhm&91RB>(+FH2ZW$V~YX!pFq*TprmU`{yO8cr zyei>^Eh|F4p05d0ZM?V9>+GSD%ZJX|%Bnbx!Zh^u4=iN!tB~GLdjEeq7;EDR)G0$) zN#NH+$47p0;>8Ic5|6g^;_(Wh24RvvkMXCZ;qkoGgvv=|wjdNDZw(!pNO zlAH$X@zQfLI+4DK6;MwtLRQMh;}3+f9#gLn7@De|5f8WnFsAh?@+jch6)fG*gV^=Glz759Ytg6RkHCo-Y-S^ z5#@KN+?RMy@(Po_Mtq5Frw?Vv37aWT2g;Q^#ZQEa{ ze~QjYMg*y1yl|e%TZo?~-jjGyTe&F?A$^1J-{&&*Zcx?=3(wl$D3kZ9E#5}XM}%dh zbMe^{gayRwQacOr;)G9Wtpa(q@nh=h`4IoHUv;T-g1n35l_qZkLI19D%9dB8`~YRm z2`30q`h6-Tjg_LH0F?%jnFg1tWu7L4s+7MV{7YG3>g^{liS&HiXkk_4VP>3ilpmws zZOUsBg2*dM-Y}d)ep>P-5Z9B9^bLESo$(|d(qKa>>t6{bQBluDgYyezDJYwVZ^--E z=5HchhPo$7Zz60bKGv3vpv@x0Qxal`e@We=Se5WTp*87qx|*gC-aT7vyeSQpB>viV zBopy{RQiPQBQL&t>JwRH)4vh#Lp+v_?!vD~cm7Y?+ikrN+B|C8_2#e@N?5D&(kqzcPPpkW{ofyF$U9=+*-720q{rd|Tg5}!N47j2v-0qNuR6ih z4bl3KBl7O)NagfYoI=K*gzCig)TYr(lvN~Ni~1c2JBWWpzMg7$m-6YvD^WI#_+9LQ zzY^vU^t3lP^Qr%gyi$==(lfz&n#|(1vhx2Xw3*fSgG}CKyz;%RrIIN7X~p$Sv2PWl z%U@A1>_2t?qCCGHit1M4-B8jQFg0c(bR+*WLQ}%0Y%}y zB|J$uOa4W|@5J9d+bGwJCfU5_r1eZB{WT%8NjkHMry!m;fZDH!tfXR){m>lJDTvpn z(&xmtP!>ZNWy^1WOOhT+g+l1D6-!&iWI}i9j>Pxu2U1b@9Pu@Tp~Oc~_TQ%(vv7y}oRoX; zJcakQ{sZ{nEJArQ>)H#+>Q3tp^7J&J;Vgt{yi>*I<)95c zWH~t~>xz3&PXw9ywEnw@RI@M4vRGFZhd=gY{soKAD47f#du0YmoF7vG`j4p(@%1ziuIHzSH4u)@+D$t zy?8P)dC796W{rNjs8G{h1N(LARkU_uzux`JdlLHill?2jRPdN+rGg2b%AOL1Ds0X5 ztYxxU6JBKBI^o5pAh)_NF^!uwne)Eyml!w8oS|<1SyTS)=R38;&F}M;aZ6{*S0b{% zr~kn213aDL1`Lev)hoVte8K?F)-G=+rSfG-<%TAuPUX&Ylg0N-TAtc{lq_j&TK9E8 zuv5KPV&8%B{d}9k-0VrGGr2chU-_(V*y_Vs+@PR@__zVQa4e@A>iYJExs80ABi$6f zin-iG-}5|f5nqJ}-g=$OeJ{w@H`2|U)F;x73G{6!8A5th<2Y>?cU4NCBDDsqfUbo z`*rV6+>@`rQ~UovHz_*CjmeO+SNFL1gt+)(PLqLy`gQN;8JH07=^x*}fA_?Mq{JF- z>i}P$Rc-|z|55MSr1f>(n#q!0)^~R&_qA!tQ26gcXC`w!N!{Ob`zQCkZ0=@A;*Sl% zA#|sAr-UvC`M+A;%vW!on=9#1JGXw2Z`49Jt1q&PTOqhHa_i~#0yj|QXNndtx zH@g|Cbxur3@UMv-Pg4Jn+?B2`wv`*^+fdhyNE+77{WTy}v-r4f@%M;f zec*pGefRRYIg(EIb4w-j@n`O&k^|ix;YopW+=S$Ai=<)mv{L?EF?y(*%{OJfn=Fq@sig9&-Ex7xq3hjQ>8cHk8<^mUOH3FLpD@r9;mf_jjq;so$xE#_xGnz= D#gJMy diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 2967b594f9..6e10e917ca 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -3,35 +3,19 @@ # Author@translatewiki.net: IAlex # Author@translatewiki.net: Jean-Frédéric # -- -# #-#-#-#-# statusnet-no-duplicates.po (0.43) #-#-#-#-# -# French translations for StatusNet package -# Traductions françaises du paquet StatusNet. -# Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the StatusNet package. -# Florian Birée , 2008. -# For translation choices and other informations, please read -# -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-# -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -# -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:16+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:43:37+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: out-statusnet\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -42,8 +26,11 @@ msgstr " Flux de recherche pour « %s »" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. " +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"à l'exception de ces données personnelles : mot de passe, adresse e-mail, " +"adresse de messagerie instantanée, numéro de téléphone. " #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -65,8 +52,62 @@ msgstr "%1$s vous invite à vous inscrire sur %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s vous invite à vous inscrire sur %2$s (%3$s).\n\n%2$s est un service de micro-blogging qui vous permet de rester en contact avec des personnes que vous connaissez et des personnes qui vous intéressent.\n\nVous pouvez aussi partager des informations sur vous, vos idées, ou votre vie en ligne avec les personnes qui vous connaissent. C'est également un outil utile pour rencontrer de nouvelles personnes qui partagent vos intérêts.\n\n%1$s dit:\n\n%4$s\n\nVous pouvez voir le profil de %1$s sur %2$s ici:\n\n%5$s\n\nSi vous souhaitez essayez ce service, cliquez sur le lien ci-dessous pour accepter l'invitation\n\n%6$s\n\nSinon, vous pouvez ignorer ce message. Merci pour votre patience et votre temps.\n\nCordialement, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s vous invite à vous inscrire sur %2$s (%3$s).\n" +"\n" +"%2$s est un service de micro-blogging qui vous permet de rester en contact " +"avec des personnes que vous connaissez et des personnes qui vous " +"intéressent.\n" +"\n" +"Vous pouvez aussi partager des informations sur vous, vos idées, ou votre " +"vie en ligne avec les personnes qui vous connaissent. C'est également un " +"outil utile pour rencontrer de nouvelles personnes qui partagent vos " +"intérêts.\n" +"\n" +"%1$s dit:\n" +"\n" +"%4$s\n" +"\n" +"Vous pouvez voir le profil de %1$s sur %2$s ici:\n" +"\n" +"%5$s\n" +"\n" +"Si vous souhaitez essayez ce service, cliquez sur le lien ci-dessous pour " +"accepter l'invitation\n" +"\n" +"%6$s\n" +"\n" +"Sinon, vous pouvez ignorer ce message. Merci pour votre patience et votre " +"temps.\n" +"\n" +"Cordialement, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -76,8 +117,20 @@ msgstr "%1$s suit maintenant vos statuts dans %2$s." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s suit maintenant vos statuts dans %2$s.\n\n %3$s\n\nCordialement,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s suit maintenant vos statuts dans %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordialement,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -153,14 +206,22 @@ msgstr "%s statuts " #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Vous recevrez bientôt un courriel contenant les instructions pour confirmer votre adresse.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Vous recevrez bientôt un courriel contenant les instructions pour confirmer " +"votre adresse.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** est un service de microblogging qui vous est proposé par [%%site.broughtby%%](%%site.broughtbyurl%%)." +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** est un service de microblogging qui vous est proposé par " +"[%%site.broughtby%%](%%site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -170,7 +231,8 @@ msgstr "**%%site.name%%** est un service de micro-blogging." #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr "Les utilisateurs doivent être désignés par leur nom complet ou leur pseudo." +msgstr "" +"Les utilisateurs doivent être désignés par leur nom complet ou leur pseudo." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -183,7 +245,8 @@ msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces. Requis." +msgstr "" +"1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces. Requis." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -204,17 +267,29 @@ msgstr "6 caractères ou plus. Requis." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Un code de confirmation a été envoyé à votre adresse de messagerie instantanée. Vous devez approuver %s pour recevoir des messages." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Un code de confirmation a été envoyé à votre adresse de messagerie " +"instantanée. Vous devez approuver %s pour recevoir des messages." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Un code de confirmation a été envoyé à l'adresse courriel indiquée. Vérifiez votre boîte de réception pour récupérer le code et les instructions." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Un code de confirmation a été envoyé à l'adresse courriel indiquée. Vérifiez " +"votre boîte de réception pour récupérer le code et les instructions." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Un code de confirmation a été envoyé au numéro de téléphone indiqué. Vérifiez votre boîte de réception pour récupérer le code et les instructions." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Un code de confirmation a été envoyé au numéro de téléphone indiqué. " +"Vérifiez votre boîte de réception pour récupérer le code et les instructions." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -389,13 +464,18 @@ msgstr "Autoriser l'abonnement" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Ouvrir automatiquement ma session à l'avenir (déconseillé pour les ordinateurs publics ou partagés)" +msgstr "" +"Ouvrir automatiquement ma session à l'avenir (déconseillé pour les " +"ordinateurs publics ou partagés)" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "M'abonner automatiquement à tous ceux qui s'abonnent à moi (recommandé pour les utilisateurs non-humains)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"M'abonner automatiquement à tous ceux qui s'abonnent à moi (recommandé pour " +"les utilisateurs non-humains)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -414,13 +494,22 @@ msgstr "Avatar mis à jour." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "En attente d'une confirmation pour cette adresse. Vérifiez votre compte Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à votre liste de contacts ?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " +"Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à " +"votre liste de contacts ?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "En attente d'une confirmation pour cette adresse. Vérifiez votre compte Jabber/GTalk pour recevoir de nouvelles instructions." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"En attente d'une confirmation pour cette adresse. Vérifiez votre compte " +"Jabber/GTalk pour recevoir de nouvelles instructions." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -557,8 +646,37 @@ msgstr "Code de confirmation non trouvé." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Félicitations, %s! Bienvenue dans %%%%site.name%%%%. Vous pouvez maintenant :\n\n* Visiter [votre profil](%s) et publier votre premier statut.\n* Ajouter une adresse [Jabber/GTalk](%%%%action.imsettings%%%%) afin d'envoyer et recevoir vos statuts par messagerie instantanée.\n* [Chercher des personnes](%%%%action.peoplesearch%%%%) que vous pourriez connaître ou qui partagent vos intêrets.\n* Mettre votre [profil](%%%%action.profilesettings%%%%) à jour pour en dire plus à votre sujet.\n* Parcourir la [documentation](%%%%doc.help%%%%) en ligne pour en savoir plus sur le fonctionnement du service.\n\nMerci pour votre inscription ! Nous vous souhaitons d'apprécier notre service." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Félicitations, %s! Bienvenue dans %%%%site.name%%%%. Vous pouvez " +"maintenant :\n" +"\n" +"* Visiter [votre profil](%s) et publier votre premier statut.\n" +"* Ajouter une adresse [Jabber/GTalk](%%%%action.imsettings%%%%) afin " +"d'envoyer et recevoir vos statuts par messagerie instantanée.\n" +"* [Chercher des personnes](%%%%action.peoplesearch%%%%) que vous pourriez " +"connaître ou qui partagent vos intêrets.\n" +"* Mettre votre [profil](%%%%action.profilesettings%%%%) à jour pour en dire " +"plus à votre sujet.\n" +"* Parcourir la [documentation](%%%%doc.help%%%%) en ligne pour en savoir " +"plus sur le fonctionnement du service.\n" +"\n" +"Merci pour votre inscription ! Nous vous souhaitons d'apprécier notre " +"service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -625,7 +743,8 @@ msgstr "Impossible de s'abonner." #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." +msgstr "" +"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 @@ -965,8 +1084,12 @@ msgid "Find people on this site" msgstr "Chercher des personnes sur ce site" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et votre mot de passe afin d'enregistrer vos préférences." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " +"votre mot de passe afin d'enregistrer vos préférences." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1051,16 +1174,28 @@ msgstr "Paramètres de messagerie instantanée" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Si vous avez déjà un compte, ouvrez une session avec votre identifiant et votre mot de passe pour les relier à votre OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Si vous avez déjà un compte, ouvrez une session avec votre identifiant et " +"votre mot de passe pour les relier à votre OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Pour ajouter un OpenID à votre compte, entrez-le dans le champ ci-dessous et cliquez sur « Ajouter »." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Pour ajouter un OpenID à votre compte, entrez-le dans le champ ci-dessous et " +"cliquez sur « Ajouter »." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un nouveau à l'adresse courriel indiquée dans votre compte. " +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un " +"nouveau à l'adresse courriel indiquée dans votre compte. " #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1090,8 +1225,12 @@ msgstr "Identifiant ou mot de passe incorrect." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Les instructions pour récupérer votre mot de passe ont été envoyées à l'adresse courriel indiquée dans votre compte." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Les instructions pour récupérer votre mot de passe ont été envoyées à " +"l'adresse courriel indiquée dans votre compte." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1187,8 +1326,14 @@ msgstr "Inviter de nouveaux utilisateurs" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), version %s, disponible sous la licence [GNU Affero General Public License] (http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Il utilise le logiciel de micro-blogging [StatusNet](http://status.net/), " +"version %s, disponible sous la licence [GNU Affero General Public License] " +"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1198,8 +1343,13 @@ msgstr "Identifiant Jabber déjà utilisé par un autre utilisateur." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Adresse Jabber ou GTalk (ex : nom@mondomaine.com). Assurez-vous d'ajouter %s à votre liste d'amis dans votre logiciel de messagerie instantanée ou dans GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Adresse Jabber ou GTalk (ex : nom@mondomaine.com). Assurez-vous d'ajouter %s " +"à votre liste d'amis dans votre logiciel de messagerie instantanée ou dans " +"GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1266,8 +1416,14 @@ msgstr "Ouvrir une session avec un compte [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%action.openidlogin%%)." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez " +"un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%" +"action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1312,8 +1468,13 @@ msgstr "Micro-blogging par %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Votre fournisseur de téléphonie mobile. Si vous connaissez un fournisseur qui accepte la réception de SMS par courriel mais qui n'est pas listé ici, écrivez-nous à %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Votre fournisseur de téléphonie mobile. Si vous connaissez un fournisseur " +"qui accepte la réception de SMS par courriel mais qui n'est pas listé ici, " +"écrivez-nous à %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1363,7 +1524,8 @@ msgstr "Nouveau mot de passe" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte." +msgstr "" +"Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte." #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1409,7 +1571,9 @@ msgstr "Pseudo déjà utilisé. Essayez-en un autre." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Les pseudos ne peuvent contenir que des caractères minuscules et des chiffres, sans espaces." +msgstr "" +"Les pseudos ne peuvent contenir que des caractères minuscules et des " +"chiffres, sans espaces." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1932,16 +2096,24 @@ msgstr "Message personnel" #: ../actions/smssettings.php:69 actions/smssettings.php:69 #: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" -msgstr "Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" +msgstr "" +"Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous abonner aux statuts de quelqu'un, cliquez \"Annuler\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " +"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " +"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Publier un statut chaque fois que mon statut est modifié dans Jabber/GTalk" +msgstr "" +"Publier un statut chaque fois que mon statut est modifié dans Jabber/GTalk" #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 @@ -2119,8 +2291,12 @@ msgid "Remove OpenID" msgstr "Retirer l'OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Vous ne pourrez plus ouvrir de session si vous retirez votre seul OpenID ! Si vous avez besoin de le retirer, ajoutez d'abord un autre OpenID." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Vous ne pourrez plus ouvrir de session si vous retirez votre seul OpenID ! " +"Si vous avez besoin de le retirer, ajoutez d'abord un autre OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2216,13 +2392,22 @@ msgstr "Rechercher dans le flux de recherche" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Recherchez les statuts %%site.name%% par leur contenu. Séparez les termes de recherche par des espaces. Ils doivent contenir au moins 3 caractères." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Recherchez les statuts %%site.name%% par leur contenu. Séparez les termes de " +"recherche par des espaces. Ils doivent contenir au moins 3 caractères." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils doivent contenir au moins 3 caractères." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " +"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " +"doivent contenir au moins 3 caractères." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2257,13 +2442,19 @@ msgstr "Envoyez-moi les statuts par Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Envoyez-moi les statuts par SMS ; je comprends que cela pourrait affecter ma facture de téléphonie mobile." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Envoyez-moi les statuts par SMS ; je comprends que cela pourrait affecter ma " +"facture de téléphonie mobile." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne suis pas abonné." +msgstr "" +"Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne " +"suis pas abonné." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2495,13 +2686,25 @@ msgstr "L'adresse a été supprimée." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment compléter l'autorisation de l'abonnement. Votre jeton d'abonnement est :" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. " +"Vérifiez les instructions du site pour savoir comment compléter " +"l'autorisation de l'abonnement. Votre jeton d'abonnement est :" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment refuser pleinement l'abonnement. " +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez " +"les instructions du site pour savoir comment refuser pleinement " +"l'abonnement. " #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2527,7 +2730,8 @@ msgstr "Vous suivez les statuts de ces personnes. " #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "Vous avez été automatiquement abonné aux utilisateurs suivants :" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 @@ -2535,14 +2739,25 @@ msgid "This confirmation code is too old. Please start again." msgstr "Ce code de validation est périmé. Veuillez recommencer. " #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Ce formulaire devrait se transmettre automatiquement. Si ce n'est pas le cas, cliquez sur le bouton de soumission pour accéder à votre fournisseur OpenID." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Ce formulaire devrait se transmettre automatiquement. Si ce n'est pas le " +"cas, cliquez sur le bouton de soumission pour accéder à votre fournisseur " +"OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "C'est votre première ouverture de session dans %s, et nous devons relier votre OpenID à un compte local. Vous pouvez soit créer un nouveau compte, soit relier votre OpenID à un compte existant." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"C'est votre première ouverture de session dans %s, et nous devons relier " +"votre OpenID à un compte local. Vous pouvez soit créer un nouveau compte, " +"soit relier votre OpenID à un compte existant." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2574,7 +2789,8 @@ msgstr "Ce processus requiert un POST." #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" -msgstr "Cette page n'est pas disponible dans un des formats que vous avez autorisés." +msgstr "" +"Cette page n'est pas disponible dans un des formats que vous avez autorisés." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 @@ -2591,8 +2807,15 @@ msgstr "Aucun fuseau horaire n'a été choisi." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Pour vous abonner, vous devez [ouvrir une session](%%action.login%%), ou [créer un nouveau compte](%%action.register%%). Si vous avez déjà un compte sur un [site de micro-blogging compatible](%%doc.openmublog%%), entrez l'URL de votre profil ci-dessous." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Pour vous abonner, vous devez [ouvrir une session](%%action.login%%), ou " +"[créer un nouveau compte](%%action.register%%). Si vous avez déjà un compte " +"sur un [site de micro-blogging compatible](%%doc.openmublog%%), entrez l'URL " +"de votre profil ci-dessous." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2646,8 +2869,12 @@ msgid "Unknown version of OMB protocol." msgstr "Version inconnue du protocole OMB" #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Sauf précision contraire, les contenus de ce site sont la propriété de leurs auteurs et sont disponibles sous" +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Sauf précision contraire, les contenus de ce site sont la propriété de leurs " +"auteurs et sont disponibles sous" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2708,8 +2935,17 @@ msgid "Upload" msgstr "Transfert" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Ajoutez un nouvel « avatar » (votre image d'utilisateur). Vous ne pouvez modifier l'image après l'envoi, alors faites en sorte qu'elle soit plus ou moins carrée. Elle doit aussi être compatible avec la licence d'utilisation du site ; utilisez de préférence une image qui vous appartient et que vous voulez partager." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Ajoutez un nouvel « avatar » (votre image d'utilisateur). Vous ne pouvez " +"modifier l'image après l'envoi, alors faites en sorte qu'elle soit plus ou " +"moins carrée. Elle doit aussi être compatible avec la licence d'utilisation " +"du site ; utilisez de préférence une image qui vous appartient et que vous " +"voulez partager." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2717,15 +2953,20 @@ msgstr "Ajouter une nouvelle image pour le profil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Remplissez ce formulaire pour inviter vos amis et collègues à utiliser ce service." +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Remplissez ce formulaire pour inviter vos amis et collègues à utiliser ce " +"service." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "Utilisé uniquement pour les mises à jour de statut, les avertissements, et la récupération de mot de passe" +msgstr "" +"Utilisé uniquement pour les mises à jour de statut, les avertissements, et " +"la récupération de mot de passe" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -2811,8 +3052,12 @@ msgid "You already have this OpenID!" msgstr "Vous utilisez déjà cet OpenID !" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Ce message va être définitivement supprimé. Il sera impossible de le récupérer." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Ce message va être définitivement supprimé. Il sera impossible de le " +"récupérer." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2841,22 +3086,36 @@ msgstr "Créez un nouveau compte pour commencer à envoyer des messages." #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Vous pouvez recevoir des messages SMS par courriel en provenance de %%site.name%%." +msgstr "" +"Vous pouvez recevoir des messages SMS par courriel en provenance de %%site." +"name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Vous pouvez retirer un OpenID de votre compte en cliquant sur le bouton « Retirer »." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Vous pouvez retirer un OpenID de votre compte en cliquant sur le bouton « " +"Retirer »." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée](%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-dessous." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée]" +"(%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-" +"dessous." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Vous pouvez mettre à jour les informations de votre profil pour qu'on en sache plus à votre sujet." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Vous pouvez mettre à jour les informations de votre profil pour qu'on en " +"sache plus à votre sujet." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2880,8 +3139,25 @@ msgstr "Vous n'avez pas envoyé ce profil" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "Une nouvelle adresse vous a été attribuée pour publier vos statuts dans %1$s.\n\nÉcrivez à %2$s pour mettre à jour votre statut.\n\nPlus d'info : %3$s.\n\nAmicalement vôtre,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Une nouvelle adresse vous a été attribuée pour publier vos statuts dans %1" +"$s.\n" +"\n" +"Écrivez à %2$s pour mettre à jour votre statut.\n" +"\n" +"Plus d'info : %3$s.\n" +"\n" +"Amicalement vôtre,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2893,16 +3169,24 @@ msgstr "Vous ne pouvez pas supprimer le statut d'un autre utilisateur." #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "Vous devez ouvrir une session pour inviter d'autres utilisateurs dans %s" +msgstr "" +"Vous devez ouvrir une session pour inviter d'autres utilisateurs dans %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Un avertissement vous sera envoyé quand vos invités auront accepté votre invitation et se seront inscrits sur le site. Merci de faire grandir notre communauté !" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Un avertissement vous sera envoyé quand vos invités auront accepté votre " +"invitation et se seront inscrits sur le site. Merci de faire grandir notre " +"communauté !" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " -msgstr "Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de passe ci-dessous." +msgstr "" +"Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de " +"passe ci-dessous." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 #: actions/openidlogin.php:104 actions/openidlogin.php:113 @@ -2912,12 +3196,17 @@ msgstr "Votre URL OpenID" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "Votre pseudo sur ce serveur, ou l'adresse courriel que vous avez enregistrée." +msgstr "" +"Votre pseudo sur ce serveur, ou l'adresse courriel que vous avez enregistrée." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites " +"avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3040,7 +3329,9 @@ msgstr "« Après" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "Un problème est survenu avec votre jeton de session. Veuillez essayer à nouveau." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" @@ -3058,7 +3349,9 @@ msgstr "Ajouter à mes favoris" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "Envoyez-moi un courriel quand un utilisateur ajoute un de mes statuts à ses favoris." +msgstr "" +"Envoyez-moi un courriel quand un utilisateur ajoute un de mes statuts à ses " +"favoris." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 @@ -3109,12 +3402,18 @@ msgstr "Boîte de réception de %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Cette boîte de réception regroupe les messages personnels qui vous sont envoyés." +msgstr "" +"Cette boîte de réception regroupe les messages personnels qui vous sont " +"envoyés." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s vous invite à vous inscrire à %2$s (%3$s).\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s vous invite à vous inscrire à %2$s (%3$s).\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3156,8 +3455,10 @@ msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "N'envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"N'envoyez pas de message à vous-même ; dites-le plutôt dans votre tête..." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3181,11 +3482,14 @@ msgstr "[OpenID](%%doc.openid%%) permet de vous connecter à de nombreux sites " #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " -msgstr "Si vous ne souhaitez pas ajouter un identifiant OpenID à votre compte, " +msgstr "" +"Si vous ne souhaitez pas ajouter un identifiant OpenID à votre compte, " #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "C'est votre seul identifiant OpenID ; si vous le supprimez, vous ne pourrez plus vous identifier !" +msgstr "" +"C'est votre seul identifiant OpenID ; si vous le supprimez, vous ne pourrez " +"plus vous identifier !" #: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " @@ -3203,12 +3507,16 @@ msgstr "Boîte d'envoi de %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Cette boîte d'envoi regroupe les messages personnels que vous avez envoyés." +msgstr "" +"Cette boîte d'envoi regroupe les messages personnels que vous avez envoyés." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Recherchez des utilisateurs de %%site.name%% par nom, par emplacement, ou par intérêts. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" +"Recherchez des utilisateurs de %%site.name%% par nom, par emplacement, ou " +"par intérêts. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3259,8 +3567,12 @@ msgstr "Votre mot de passe doit contenir au moins 6 caractères." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. Plusieurs choix s'offrent maintenant à vous :" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Félicitations, %s ! Bienvenue dans %%%%site.name%%%%. Plusieurs choix " +"s'offrent maintenant à vous :" #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3290,7 +3602,9 @@ msgstr "Message introuvable." #: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." -msgstr "Ce message personnel ne peut être lu que par son expéditeur et son destinataire." +msgstr "" +"Ce message personnel ne peut être lu que par son expéditeur et son " +"destinataire." #: actions/showmessage.php:61 actions/showmessage.php:108 #, php-format @@ -3356,7 +3670,9 @@ msgstr "Destinataire non trouvé." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Vous ne pouvez envoyer des messages personnels qu'aux utilisateurs inscrits comme amis." +msgstr "" +"Vous ne pouvez envoyer des messages personnels qu'aux utilisateurs inscrits " +"comme amis." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3383,12 +3699,19 @@ msgstr "%s a ajouté un de vos messages à ses favoris" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "%1$s a ajouté à ses favoris un de vos statuts dans %2$s.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"%1$s a ajouté à ses favoris un de vos statuts dans %2$s.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Inscrivez votre compte Twitter pour transférer automatiquement vos statuts vers Twitter, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Inscrivez votre compte Twitter pour transférer automatiquement vos statuts " +"vers Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3431,12 +3754,18 @@ msgstr "Envoyer mes réponses locales \"@\" dans Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 #: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." -msgstr "Je veux m'abonner à mes amis de Twitter qui ont enregistré un compte ici." +msgstr "" +"Je veux m'abonner à mes amis de Twitter qui ont enregistré un compte ici." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "L'identifiant ne doit pas dépasser 15 caractères, et ne peut contenir que des chiffres, des lettres minuscules ou majuscules, et des barres de soulignement (_). " +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"L'identifiant ne doit pas dépasser 15 caractères, et ne peut contenir que " +"des chiffres, des lettres minuscules ou majuscules, et des barres de " +"soulignement (_). " #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3446,7 +3775,8 @@ msgstr "La vérification de vos informations de Twitter a échoué !" #: actions/twittersettings.php:137 #, php-format msgid "Unable to retrieve account information for \"%s\" from Twitter." -msgstr "Impossible de récupérer l'information du compte de \"%s\" dans Twitter." +msgstr "" +"Impossible de récupérer l'information du compte de \"%s\" dans Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 @@ -3570,7 +3900,9 @@ msgstr "À propos : %s" #: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" -msgstr "Message trop long ! La taille maximale est de 140 caractères ; vous en avez entré %d." +msgstr "" +"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " +"entré %d." #: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 #: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 @@ -3651,8 +3983,12 @@ msgstr "Utilisateur sans profil correspondant dans le système." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "You have a new posting address on %1$s.\n\n" -msgstr "Vous avez une nouvelle adresse pour publier vos statuts dans %1$s.\n\n" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" +"Vous avez une nouvelle adresse pour publier vos statuts dans %1$s.\n" +"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3661,8 +3997,12 @@ msgstr "Nouveau message personnel de %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "%1$s (%2$s) vous a envoyé un message personnel :\n\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"%1$s (%2$s) vous a envoyé un message personnel :\n" +"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -3856,7 +4196,9 @@ msgstr "Modifier le groupe %s" #: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 #: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" -msgstr "Les boîtes de réception doivent être activées pour que les groupes fonctionnent " +msgstr "" +"Les boîtes de réception doivent être activées pour que les groupes " +"fonctionnent " #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 @@ -3949,7 +4291,8 @@ msgstr "Erreur du serveur - impossible d'accéder à cet utilisateur !" #: actions/facebookhome.php:196 #, php-format msgid "If you would like the %s app to automatically update " -msgstr "Si vous souhaitez que l'application %s soit mise à jour automatiquement " +msgstr "" +"Si vous souhaitez que l'application %s soit mise à jour automatiquement " #: actions/facebookhome.php:213 actions/facebooksettings.php:137 #, php-format @@ -4026,7 +4369,9 @@ msgstr "Impossible de retirer l'utilisateur Facebook." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" -msgstr "Un problème est survenu lors de l'enregistrement de vos préférences de synchronisation !" +msgstr "" +"Un problème est survenu lors de l'enregistrement de vos préférences de " +"synchronisation !" #: actions/facebooksettings.php:67 msgid "Sync preferences saved." @@ -4158,8 +4503,12 @@ msgstr "Créer un nouveau groupe" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Recherchez des groupes dans %%site.name%% par nom, par emplacement ou par intérêts. Séparez les termes de recherches par des espaces. Ils doivent contenir au moins 3 caractères." +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Recherchez des groupes dans %%site.name%% par nom, par emplacement ou par " +"intérêts. Séparez les termes de recherches par des espaces. Ils doivent " +"contenir au moins 3 caractères." #: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" @@ -4203,7 +4552,9 @@ msgstr "%s a rejoint le groupe %s" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "Les boîtes de réception doivent être activées pour que les groupes fonctionnent." +msgstr "" +"Les boîtes de réception doivent être activées pour que les groupes " +"fonctionnent." #: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -4222,7 +4573,8 @@ msgstr "Vous n'êtes pas membre de ce groupe." #: actions/leavegroup.php:100 msgid "You may not leave a group while you are its administrator." -msgstr "Il est recommandé de ne pas quitter un groupe dont vous êtes administrateur." +msgstr "" +"Il est recommandé de ne pas quitter un groupe dont vous êtes administrateur." #: actions/leavegroup.php:130 actions/leavegroup.php:124 #: actions/leavegroup.php:119 lib/command.php:278 @@ -4288,8 +4640,11 @@ msgid "Ajax Error" msgstr "Erreur Ajax" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Cet utilisateur n'accepte pas les clins d'œil ou n'a pas encore validé son adresse courriel." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Cet utilisateur n'accepte pas les clins d'œil ou n'a pas encore validé son " +"adresse courriel." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4363,8 +4718,10 @@ msgstr "Information de profil" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4395,8 +4752,12 @@ msgstr "Impossible de récupérer le flux public." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) " #: actions/publictagcloud.php:57 #, fuzzy @@ -4553,8 +4914,12 @@ msgstr "Tous les membres" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." +"wikipedia.org/wiki/Microblog) %%%%site.name%%%%" #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4607,8 +4972,12 @@ msgstr "Tous les groupes" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) %%%%site.name%%%%" #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4621,7 +4990,8 @@ msgstr "M'envoyer les statuts par SMS ; " #: actions/smssettings.php:335 msgid "A confirmation code was sent to the phone number you added. " -msgstr "Un code de confirmation vient d'être envoyé au numéro de téléphone indiqué. " +msgstr "" +"Un code de confirmation vient d'être envoyé au numéro de téléphone indiqué. " #: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" @@ -4716,7 +5086,9 @@ msgid "Tag user" msgstr "Marquer l'utilisateur" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" msgstr "Marquer cet utilisateur (séparer par des espaces ou des virgules)" #: actions/tagother.php:164 @@ -4724,8 +5096,11 @@ msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) ou qui sont abonnées à vous." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) " +"ou qui sont abonnées à vous." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4733,7 +5108,8 @@ msgstr "Impossible d'enregistrer les marquages." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." +msgstr "" +"Remplissez les champs suivants pour marquer vos abonnés ou vos abonnements." #: actions/tagrss.php:35 msgid "No such tag." @@ -4819,8 +5195,11 @@ msgstr "Erreur lors de l'enregistrement du statut. Utilisateur inconnu." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans quelques minutes." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " +"quelques minutes." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -5001,7 +5380,8 @@ msgstr "Description du groupe ou du sujet (140 caractères maximum)" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Emplacement du groupe, s'il y a lieu \"Ville, État ou région, Pays\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5066,8 +5446,12 @@ msgstr "Ouvrir une session ou s'enregistrer avec OpenID" #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Bonjour, %s.\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Bonjour, %s.\n" +"\n" #: lib/mail.php:236 #, php-format @@ -5086,8 +5470,12 @@ msgstr "Site Web : %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "Bio : %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Bio : %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5274,7 +5662,7 @@ msgid "You and friends" msgstr "Vous et vos amis" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Vous pouvez associer un « avatar » (image personnelle) à votre profil." @@ -5283,18 +5671,30 @@ msgid "Avatar deleted." msgstr "Avatar supprimé." #: actions/block.php:129 actions/block.php:136 -msgid "Are you sure you want to block this user? Afterwards, they will be unsubscribed from you, unable to subscribe to you in the future, and you will not be notified of any @-replies from them." -msgstr "Êtes-vous certain de vouloir bloquer cet utilisateur ? Après cela, il ne sera plus abonné à votre compte, ne pourra plus s’y abonner de nouveau, et vous ne serez pas informé des @-réponses de sa part." +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" +"Êtes-vous certain de vouloir bloquer cet utilisateur ? Après cela, il ne " +"sera plus abonné à votre compte, ne pourra plus s’y abonner de nouveau, et " +"vous ne serez pas informé des @-réponses de sa part." #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Ce message va être définitivement supprimé. Il sera impossible de le récupérer." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Ce message va être définitivement supprimé. Il sera impossible de le " +"récupérer." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "Un problème est survenu avec votre jeton de session. Veuillez essayer à nouveau." +msgstr "" +"Un problème est survenu avec votre jeton de session. Veuillez essayer à " +"nouveau." #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy @@ -5303,17 +5703,31 @@ msgstr "Envoyez-moi un courriel quand quelqu'un m'envoie un message personnel." #: actions/facebookhome.php:193 actions/facebookhome.php:187 #, php-format -msgid "If you would like the %s app to automatically update your Facebook status with your latest notice, you need to give it permission." -msgstr "Si vous souhaitez que l’application %s mette automatiquement à jour votre statut Facebook avec votre dernier message, vous devez lui donner ce droit." +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" +"Si vous souhaitez que l’application %s mette automatiquement à jour votre " +"statut Facebook avec votre dernier message, vous devez lui donner ce droit." + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" #: actions/facebooksettings.php:124 #, php-format -msgid "If you would like %s to automatically update your Facebook status with your latest notice, you need to give it permission." -msgstr "Si vous souhaitez que %s mette automatiquement à jour votre statut Facebook avec votre dernier message, vous devez lui donner ce droit." +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" +"Si vous souhaitez que %s mette automatiquement à jour votre statut Facebook " +"avec votre dernier message, vous devez lui donner ce droit." #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format, fuzzy -msgid "You can upload a logo image for your group. The maximum file size is %s." +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "Choisissez un logo pour votre groupe." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5322,28 +5736,47 @@ msgid "Pick a square area of the image to be the logo." msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Micro-blogging par %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils doivent contenir au moins 3 caractères." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Recherchez des personnes dans %%site.name%% par leur nom, leur emplacement " +"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils " +"doivent contenir au moins 3 caractères." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" #: actions/newmessage.php:102 msgid "Only logged-in users can send direct messages." msgstr "Seuls les utilisateurs connectés peuvent envoyer des messages directs." #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr " Flux de recherche pour « %s »" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et votre mot de passe afin d'enregistrer vos préférences." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et " +"votre mot de passe afin d'enregistrer vos préférences." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5362,8 +5795,25 @@ msgstr "Fil du flux public" #: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "Vous êtes sur %%site.name%% un service de [microblog] (http://fr.wikipedia.org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://status.net/). [Inscrivez-vous](%%action.register%%) pour partager des messages sur vous avec vos amis, famille et collègues ! ([Plus d’informations](%%doc.help%%))" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" +"Vous êtes sur %%site.name%% un service de [microblog] (http://fr.wikipedia." +"org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://status." +"net/). [Inscrivez-vous](%%action.register%%) pour partager des messages sur " +"vous avec vos amis, famille et collègues ! ([Plus d’informations](%%doc.help%" +"%))" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" #: actions/register.php:432 actions/register.php:479 actions/register.php:489 msgid "Creative Commons Attribution 3.0" @@ -5371,14 +5821,29 @@ msgstr "Creative Commons Paternité 3.0" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr "à l'exception de ces données personnelles : mot de passe, adresse e-mail, adresse de messagerie instantanée, numéro de téléphone. " +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"à l'exception de ces données personnelles : mot de passe, adresse e-mail, " +"adresse de messagerie instantanée, numéro de téléphone. " #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 msgid "Created" msgstr "Créé" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 msgid "Your profile" msgstr "Votre profil" @@ -5389,22 +5854,22 @@ msgid "%s's profile" msgstr "Profil de %s" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Flux des statuts de %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Flux des statuts de %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Flux des statuts de %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Boîte d'envoi de %s" @@ -5423,16 +5888,55 @@ msgstr "Modifier les paramètres du profil" msgid "Edit" msgstr "Modifier" +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "Un code de confirmation a été envoyé au numéro de téléphone indiqué. Vérifiez votre boîte de réception pour récupérer le code et les instructions." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Un code de confirmation a été envoyé au numéro de téléphone indiqué. " +"Vérifiez votre boîte de réception pour récupérer le code et les instructions." #: actions/twitapifavorites.php:171 lib/mail.php:556 #: actions/twitapifavorites.php:222 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nIn case you forgot, you can see the text of your notice here:\n\n%3$s\n\nYou can see the list of %1$s's favorites here:\n\n%4$s\n\nFaithfully yours,\n%5$s\n" -msgstr "%1$s vient de marquer votre message de %2$s comme un de ses favoris.\n\nDans le cas où vous l’auriez oublié, vous pouvez lire le texte de votre message ici :\n\n%3$s\n\nVous pouvez consulter la liste des favoris de %1$s ici :\n\n%4$s\n\nCordialement,\n%5$s\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" +"%1$s vient de marquer votre message de %2$s comme un de ses favoris.\n" +"\n" +"Dans le cas où vous l’auriez oublié, vous pouvez lire le texte de votre " +"message ici :\n" +"\n" +"%3$s\n" +"\n" +"Vous pouvez consulter la liste des favoris de %1$s ici :\n" +"\n" +"%4$s\n" +"\n" +"Cordialement,\n" +"%5$s\n" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5448,18 +5952,29 @@ msgstr "Aucun utilisateur n'a été trouvé !" #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Inscrivez votre compte Twitter pour transférer automatiquement vos statuts vers Twitter, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Inscrivez votre compte Twitter pour transférer automatiquement vos statuts " +"vers Twitter, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Impossible de récupérer l'information du compte de \"%s\" dans Twitter." +msgstr "" +"Impossible de récupérer l'information du compte de \"%s\" dans Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous abonner aux statuts de quelqu'un, cliquez \"Annuler\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " +"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " +"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5468,8 +5983,12 @@ msgstr "Rechercher des personnes ou du texte" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans quelques minutes." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " +"quelques minutes." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5483,16 +6002,54 @@ msgstr "Clin d'œil" #: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format -msgid "Subscriptions: %1$s\nSubscribers: %2$s\nNotices: %3$s" -msgstr "Abonnements : %1$s\nAbonnés : %2$s\nMessages : %3$s" +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" +"Abonnements : %1$s\n" +"Abonnés : %2$s\n" +"Messages : %3$s" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" #: lib/dberroraction.php:60 msgid "Database error" msgstr "Erreur de la base de données" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "Vous devez ouvrir une session pour utiliser l'application Facebook %s" #: lib/feed.php:85 @@ -5507,6 +6064,10 @@ msgstr "RSS 2.0" msgid "Atom" msgstr "Atom" +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + #: lib/imagefile.php:75 #, php-format msgid "That file is too big. The maximum file size is %d." @@ -5514,13 +6075,121 @@ msgstr "Ce fichier est trop lourd. La taille maximale est %d." #: lib/mail.php:175 lib/mail.php:174 #, php-format -msgid "Hey, %s.\n\nSomeone just entered this email address on %s.\n\nIf it was you, and you want to confirm your entry, use the URL below:\n\n %s\n\nIf not, just ignore this message.\n\nThanks for your time, \n%s\n" -msgstr "Bonjour %s.\n\nQuelqu’un vient d’utiliser cette adresse électronique sur %s.\n\nS’il s’agit bien de vous, et que vous souhaitez confirmer cette adresse, utilisez le lien qui suit :\n\n%s\n\nDans le cas contraire, il vous suffit d’ignorer ce message.\n\nMerci de votre attention,\n%s\n" +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" +"Bonjour %s.\n" +"\n" +"Quelqu’un vient d’utiliser cette adresse électronique sur %s.\n" +"\n" +"S’il s’agit bien de vous, et que vous souhaitez confirmer cette adresse, " +"utilisez le lien qui suit :\n" +"\n" +"%s\n" +"\n" +"Dans le cas contraire, il vous suffit d’ignorer ce message.\n" +"\n" +"Merci de votre attention,\n" +"%s\n" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s suit maintenant vos statuts dans %2$s.\n\n %3$s\n\nCordialement,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s suit maintenant vos statuts dans %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordialement,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 msgid "Search site" @@ -5530,6 +6199,34 @@ msgstr "Rechercher sur le site" msgid "More..." msgstr "Plus..." +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 msgid "No such attachment." msgstr "Pièce jointe non trouvée." @@ -5545,12 +6242,12 @@ msgid "Block this user from this group" msgstr "Liste des utilisateurs inscrits à ce groupe." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Profil de l'utilisateur" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s et ses amis - page %d" @@ -5573,26 +6270,56 @@ msgstr "Code de confirmation" msgid "Do not delete this notice" msgstr "Ne pas supprimer cet avis" +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Marquage invalide : \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Pseudo déjà utilisé. Essayez-en un autre." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Impossible de créer le favori." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5606,6 +6333,10 @@ msgstr "Aucun avis" msgid "No attachments" msgstr "Aucune pièce jointe" +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 msgid "Not a valid invitation code." msgstr "Code d'invitation invalide." @@ -5615,6 +6346,10 @@ msgstr "Code d'invitation invalide." msgid "No group specified." msgstr "Aucun groupe n'a été spécifié." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5629,6 +6364,18 @@ msgstr "L'utilisateur n'est pas membre du groupe." msgid "Block user from group" msgstr "Bloquer cet utilisateur du groupe" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." msgstr "Vous devez ouvrir une session pour modifier un groupe." @@ -5638,6 +6385,12 @@ msgstr "Vous devez ouvrir une session pour modifier un groupe." msgid "Group design" msgstr "Groupes" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5669,48 +6422,236 @@ msgstr "Faire de cet utilisateur un administrateur du groupe" msgid "Make Admin" msgstr "Administrer" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 msgid "No results." msgstr "Aucun résultat." +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Cet utilisateur vous a bloqué." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 msgid "Message sent" msgstr "Message envoyé" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 msgid "Couldn't save file." msgstr "Impossible d'enregistrer le fichier." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) vous permet de vous connecter à différents sites " +"avec le même compte utilisateur. Gérez vos OpenID associés à partir d'ici." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Paramètres du profil" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) " +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un nouveau à l'adresse courriel indiquée dans votre compte. " +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Si vous avez oublié ou perdu votre mot de passe, vous pouvez en recevoir un " +"nouveau à l'adresse courriel indiquée dans votre compte. " #: actions/recoverpassword.php:158 #, fuzzy msgid "You've been identified. Enter a new password below. " -msgstr "Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de passe ci-dessous." +msgstr "" +"Vous avez été identifié(e) avec succès. Veuillez entrer votre nouveau mot de " +"passe ci-dessous." #: actions/recoverpassword.php:188 msgid "Password recover" @@ -5726,30 +6667,87 @@ msgstr "Erreur dans le code de confirmation." msgid "Subscribe to a remote user" msgstr "S'abonner à cet utilisateur" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "Statuts favoris de %s - page %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fil des statuts du groupe %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fil des statuts du groupe %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fil des statuts du groupe %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** est un groupe d'utilisateurs du service de [micro-blogging](http://fr." +"wikipedia.org/wiki/Microblog) %%%%site.name%%%%" #: actions/showgroup.php:474 actions/showgroup.php:482 msgid "Admins" @@ -5761,19 +6759,70 @@ msgid "Not a local notice" msgstr "Ceci n'est pas un utilisateur local." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Statuts marqués avec %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Fil des statuts du groupe %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/wiki/Microblog) %%%%site.name%%%%" +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" +"wiki/Microblog) %%%%site.name%%%%" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 @@ -5782,12 +6831,12 @@ msgid "%s is not listening to anyone." msgstr "%s ne suit actuellement personne." #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Flux des statuts de %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Flux des statuts de %s" @@ -5815,16 +6864,20 @@ msgid "Could not find target user." msgstr "Impossible de trouver l'utilisateur cible." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Réponses à %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 msgid "License" msgstr "Licence" @@ -5837,18 +6890,50 @@ msgstr "Rejeter cet souscription" msgid "Profile design" msgstr "Conception de profile" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 #, php-format msgid "%s is not a member of any group." msgstr "%s n'est pas membre d'aucun groupe." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problème lors de l'enregistrement du statut." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Message adressé à %1$s le %2$s" @@ -5861,6 +6946,10 @@ msgstr "Conception" msgid "Design your profile" msgstr "Concevez votre profile" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Pièces jointes" @@ -5873,15 +6962,52 @@ msgstr "Auteur" msgid "Provider" msgstr "Fournisseur" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Transfert" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 msgid "Change colours" msgstr "Modifier les couleurs" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 msgid "Content" msgstr "Contenu" @@ -5894,6 +7020,35 @@ msgstr "Barre latérale" msgid "Links" msgstr "Liens" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 msgid "Blocked" msgstr "Bloqué" @@ -5908,6 +7063,83 @@ msgstr "%s utilisateurs bloqués" msgid "Add or edit %s design" msgstr "Ajouter ou modifier la conception de %s" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 msgid "in context" msgstr "dans le contexte" @@ -5920,11 +7152,26 @@ msgstr "ID de l'utilisateur" msgid "Search help" msgstr "Aide sur la recherche" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 #, php-format msgid "%s is not a valid color!" msgstr "&s n'est pas une couleur valide !" +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5932,12 +7179,12 @@ msgid "No such page" msgstr "Aucun marquage trouvé." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Messages envoyés à %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." @@ -5946,8 +7193,12 @@ msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." msgid "Could not unfollow user: User not found." msgstr "Impossible de suivre l'utilisateur : Utilisateur non trouvé." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "la description est trop longue (140 caractères maximum)." @@ -5957,7 +7208,7 @@ msgid "You are already a member of that group." msgstr "Vous êtes déjà membre de ce groupe " #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Impossible d'inscrire l'utilisateur %s au groupe %s" @@ -5967,31 +7218,45 @@ msgid "You are not a member of this group." msgstr "Vous n'êtes pas membre de ce groupe." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Impossible de retirer l'utilisateur %s du groupe %s" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "Groupes de %s" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "Groupes de %s" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Actions du groupe" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar supprimé." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "C'est trop long ! Vous n'avez droit qu'à 140 caractères." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -6003,12 +7268,12 @@ msgid "Post to " msgstr "Photo" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "la description est trop longue (140 caractères maximum)." #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" @@ -6038,11 +7303,12 @@ msgid "No such file." msgstr "Statut non trouvé. " #: actions/getfile.php:79 +#, fuzzy msgid "Cannot read file." -msgstr "Impossible de lire le fichier" +msgstr "Fichier perdu." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Statuts de %1$s dans %2$s!" @@ -6052,17 +7318,41 @@ msgid "IM is not available." msgstr "Cette page n'est pas disponible dans " #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%action.openidlogin%%)." +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Ouvrez une session avec votre identifiant et votre mot de passe, ou [créez " +"un compte](%%action.register%%), ou utilisez un identifiant [OpenID](%%" +"action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Statuts de %1$s dans %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Statuts correspondant au(x) terme(s) \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Contenu" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Décrivez vos intérêts en 140 caractères" @@ -6072,13 +7362,20 @@ msgid "Describe yourself and your interests" msgstr "Décrivez qui vous êtes et vos " #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "La bio est trop longue (140 caractères maximum)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "URL de profil invalide (aucun document YADIS)." #: actions/remotesubscribe.php:176 @@ -6091,35 +7388,53 @@ msgstr "Ce profil est local ! Ouvrez une session pour vous abonner." msgid "Couldn’t get a request token." msgstr "Impossible d'obtenir le jeton de requête." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Flux des statuts de %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Flux des statuts de %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Fil des statuts du groupe %s" +msgstr "Flux des statuts de %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Message adressé à %1$s le %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Fil des favoris de %s" +msgstr "Flux pour les amis de %s (RSS 1.0)" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Fil des favoris de %s" +msgstr "Flux pour les amis de %s (RSS 2.0)" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Fil des favoris de %s" +msgstr "Flux pour les amis de %s (Atom)" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "Groupe %s" +msgstr "Boîte d'envoi de %s" #: actions/shownotice.php:90 #, fuzzy @@ -6132,32 +7447,80 @@ msgid "SMS is not available." msgstr "Cette page n'est pas disponible dans " #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Flux des statuts de %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous abonner aux statuts de quelqu'un, cliquez \"Annuler\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " +"abonner aux statuts de cet utilisateur. Si vous n'avez pas demandé à vous " +"abonner aux statuts de quelqu'un, cliquez \"Annuler\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment compléter l'autorisation de l'abonnement. Votre jeton d'abonnement est :" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"L'abonnement a été autorisé, mais l'URL de rappel n'a pas été validé. " +"Vérifiez les instructions du site pour savoir comment compléter " +"l'autorisation de l'abonnement. Votre jeton d'abonnement est :" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez les instructions du site pour savoir comment refuser pleinement l'abonnement. " +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abonnement a été refusé, mais l'URL de rappel n'a pas été validé. Vérifiez " +"les instructions du site pour savoir comment refuser pleinement " +"l'abonnement. " + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Impossible de lire l'URL '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Format d'image invalide pour '%s'" @@ -6172,27 +7535,40 @@ msgid "Site content license" msgstr "Licence du logiciel StatusNet" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." +msgstr "" +"Impossible de mettre l'utilisateur à jour avec l'adresse courriel confirmée." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Clin d'œil envoyé" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Message trop long ! La taille maximale est de 140 caractères ; vous en avez entré %d." +msgstr "" +"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " +"entré %d." #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" -msgstr "Message trop long ! La taille maximale est de 140 caractères ; vous en avez entré %d." +msgstr "" +"Message trop long ! La taille maximale est de 140 caractères ; vous en avez " +"entré %d." #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Répondre à ce statut" @@ -6201,11 +7577,54 @@ msgstr "Répondre à ce statut" msgid "Error saving notice." msgstr "Problème lors de l'enregistrement du statut." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Aucun code de confirmation." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6222,31 +7641,89 @@ msgid "Describe the group or topic" msgstr "Description du groupe ou du sujet (140 caractères maximum)" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Description du groupe ou du sujet (140 caractères maximum)" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Flux des statuts de %s" +msgstr "Nouveau statut" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s a ajouté un de vos messages à ses favoris" +#: lib/mail.php:556 +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s vient de marquer votre message de %2$s comme un de ses favoris.\n" +"\n" +"Dans le cas où vous l’auriez oublié, vous pouvez lire le texte de votre " +"message ici :\n" +"\n" +"%3$s\n" +"\n" +"Vous pouvez consulter la liste des favoris de %1$s ici :\n" +"\n" +"%4$s\n" +"\n" +"Cordialement,\n" +"%5$s\n" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy msgid "from" msgstr "de" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Impossible de supprimer le favori." +msgstr "Impossible de récupérer le flux public." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Supprimer ce statut" - diff --git a/locale/ga/LC_MESSAGES/statusnet.mo b/locale/ga/LC_MESSAGES/statusnet.mo index b510569de929dacc3cf58824dec7deb4b3105f86..479e91256b2f790f58c1096e49a345672349b82b 100644 GIT binary patch delta 22379 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 z≀is6dAlme+~Cr6E6Nyg{VjNF}XqFZnR)?%_4sWg^c{i2ohSEccN30s3_NPu<(Z zbc}HXym%VyB)EwbPntnRI2~@04*sWO4(evQPQiaZquiJD9c@Ms*=>V+Zf*F}A^1D* zW6Ei0r(+vdciG@?!P<$q|IBn;PvhCxjs`c$@5jZYmNe#%74MFnTz&tfeA7;Hp16L| z=om{nMR^PTV(~KNd$^o(3^pRYKGMF!n#4+wzfBrKz8Zb>V^`Pr@=-`i=k?@2BNd=Q20LkL zj3z}<|5S}R8dATASbF@)+J$2^$~q2`N|QEQT@w2CBu%mU&DflBCS8BFHEK#g#~g>p z-y{D!^ovHv4U08(Men4Y@FR==VdcHl|4gh6sT=1XX!Y%^Uj<_6i7nUjPflT^b-Y4Q zKf`pSCmu#Q65Ermlm8WU{6ZQP%>BQA%q3fk`gg63YPQj5Aa*9Ulysc@JiAsM@;kfI z;5O+9mB~@ZhvYX|J_S~x!+XRcNIF*Fx5UH97bHJ{bdUT}+O;7+o}@!RY-`WkR6lDV z&LRziaXxJ}gg+>cvwRcU^d?`ASas}xCAmrp;(e^2xMBJJ#EYuE^`{s-Hd4+?;TsE- z*585OQ|Lq*Oyw)mU{2fuchKcB@onTINUezPCizLZi9f>pviN74tBJKGslSKitv--~!wD<7f!nDkH;c6@@{NDXQC zChZRDyS0J91_I?tQ%G4zGq~VKq$V`FL;XaOj$00IENyhmb_D;qn)dqRX$E}?;t`A^ z>3E0szfk`azarL)ypC2{w|xj!w1!s+X0-g*xP`h@n9X8;;V_bxn~pi;Kg4gW{Mb%B zg7~K-9dBApdHu1ZqbDhs;#^<t2|a@)yK) zOfyT-=Q!yv>wDT&dvj{m9?N0hoZxNV{mi-`Y&V?Zl>7*}?UHq){?Ev4WM!zky4zIURJIB|WD6 zj}0V*{6f+XlrLgZ(qU3c(nZ=fQYVgL^#7MO>#!so@(abR{4LqDXre^XwI2^LF&4QUssPi7&R zPf0r3QNC-9(owELs!d%DV!v{d^%zAt75V+7r0T@+iS_rBPigti^)q7a zaX#wUP5X<~7s6Ad8RS3E-z_yL=y*xPJLKz8@hPbb<*Qa#+D@_>4^el3cr2+6<&Q`Y zh`l~mStf?qY1$01zPHSC#J5|%zt(>?8l@wckyMQIr&adEwv=;_PLS4;F41-Z{!PE7 zq>AMKvJ3XGejADD7=Ry>-XXt|y6nLyA5L6Kd<(HaaSAmlyupe0;18IKihZOI^5NK) zRFZaGQAc;$6{YSR@U|B|F*CFyf!R1KK7b`G~#52eeCU=jlSZ zAmxpezaZa${9Nld8y|6f?@uaT9~Eez;|;Sa`2(c9lpAo8F{FJY9XGKZCuvN2i`0@f z)2&}6%uiZJTt^oiOL-nvb0P2jpjr95#ZGvE!25QB-SgJB%o#XDO*E0cq(0Va0e)bu zqU}^CiQVVa6-e69Bk^luv#eca%3oSO9r5k7sY?nWz5-uRHDx=8lk=M6T$B& z#A995kw8jKT1>iXCnfv8qm{K=MxX5Dx6&p9>Dd3LZ64~Uk)o(8Mf#O=-TL27)X|;u zF5D)Vl@o3z>1dC=EuRU?krL6l33Wqgdx7%blyx*9A4>iPsUqd>q+rH>pn8E&tSbwl}!nQe! zL&E9>J1W>G)*t2XAKkxO^k9EXPk+n+f+Z4~yx$`%Vb_*ciRWEemnB!r=z;zEM92Dj zMo0H}eX>F=Teb3+DN!mRWcz2yQ%A)OiS_r0?iU>w-J?XpXL~E=NZTVSjxNLc#P#;) zjfl;gaOS?^)vbdo6vX;+IGHs>h!$;L9BUL3&^I_$vi`DU?ec zpQf9ypF822ZoVhUoP*(uBo_&EOnsXZVVwh~G5N7asp$o^MY4&H29EJC@J) zbxN83jhF$^-Q%JLd(r*+^zSnuYH<9KbiR&RnDzlZqWxa8A#sDFV*N1#yZ4D15F6ib Txvz3))0m+#HrPGOeXaiw1@%uL delta 22044 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 W_mtRwm9J_df02|UanmYaoBsoj_}h&D diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 6ac8c15738..39404b3dfc 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -1,19 +1,16 @@ # Translation of StatusNet to Irish # # -- -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Francisco Diéguez , 2008. msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:18+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:43:41+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: out-statusnet\n" @@ -27,8 +24,11 @@ msgstr "Buscar \"%s\" na Liña de tempo" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr " agás esta informción privada: contrasinal, dirección de correo electrónico, dirección IM, número de teléfono." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +" agás esta informción privada: contrasinal, dirección de correo electrónico, " +"dirección IM, número de teléfono." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -50,8 +50,58 @@ msgstr "%1$s invitoute a unirse a él en %2$s." #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s invitoute a unirte a el en %2$s (%3$s).\n\n%2$s é un servizo de microbloguexo que che permite manterte actualizado coa xente que coñeces e xente na que tes interese.\n\nTamén podes compartir novas contigo mesmo, ou pensamentos, ou vivir en liña con xente que te coñece. Tamén está moi ben para coñecer xente que comparte os mesmos intereses..\n\n%1$s dixo:\n\n%4$s\n\nPodes ollar a súa páxina de perfil %1$s's en %2$s here:\n\n%5$s\n\nSe queres probar, fai clic na ligazón de abaixo para aceptar a invitación..\n\n%6$s\n\nSe non, pois ignora esta mensaxe. Pero aló ti, aquí se pasa moi ben.\n\nSaudiños, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s invitoute a unirte a el en %2$s (%3$s).\n" +"\n" +"%2$s é un servizo de microbloguexo que che permite manterte actualizado coa " +"xente que coñeces e xente na que tes interese.\n" +"\n" +"Tamén podes compartir novas contigo mesmo, ou pensamentos, ou vivir en liña " +"con xente que te coñece. Tamén está moi ben para coñecer xente que comparte " +"os mesmos intereses..\n" +"\n" +"%1$s dixo:\n" +"\n" +"%4$s\n" +"\n" +"Podes ollar a súa páxina de perfil %1$s's en %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"Se queres probar, fai clic na ligazón de abaixo para aceptar a invitación..\n" +"\n" +"%6$s\n" +"\n" +"Se non, pois ignora esta mensaxe. Pero aló ti, aquí se pasa moi ben.\n" +"\n" +"Saudiños, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -61,8 +111,20 @@ msgstr "%1$s está a escoitar os teus chíos %2$s." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s está a escoitar os teus chíos en %2$s.\n\n %3$s\n\nAtentamente todo seu,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s está a escoitar os teus chíos en %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentamente todo seu,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -138,14 +200,22 @@ msgstr "%s chíos de calquera!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Deberías recibir unha mensaxe no teu email nun intre, coas instrucións de como confirmar a túa dirección de correo.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Deberías recibir unha mensaxe no teu email nun intre, coas instrucións de " +"como confirmar a túa dirección de correo.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." +"broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -163,12 +233,15 @@ msgstr ". Os contribuíntes deben atribuiselles polo nome completo ou apodo." #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" +msgstr "" +"De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "De 1 a 64 letras minúsculas ou números, nin espazos nin signos de puntuación. Requerido." +msgstr "" +"De 1 a 64 letras minúsculas ou números, nin espazos nin signos de " +"puntuación. Requerido." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -189,17 +262,31 @@ msgstr "6 ou máis caracteres. Requerido." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "O código de confirmación foi embiado á dirección IM que engadiches. Deberías engadir a %s como contacto para que che poida enviar mensaxes." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"O código de confirmación foi embiado á dirección IM que engadiches. Deberías " +"engadir a %s como contacto para que che poida enviar mensaxes." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Enviouseche un código de confirmación á dirección de correo que engadiches. Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que debes seguir." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Enviouseche un código de confirmación á dirección de correo que engadiches. " +"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " +"debes seguir." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Enviouseche o código de confirmación ó número de teléfono que engadiches. Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que debes seguir." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Enviouseche o código de confirmación ó número de teléfono que engadiches. " +"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " +"debes seguir." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -379,8 +466,11 @@ msgstr "Endiante acceder automáticamente, coidado en equipos compartidos!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Suscribirse automáticamente a calquera que se suscriba a min (o mellor para non humáns)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " +"non humáns)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -399,13 +489,22 @@ msgstr "Avatar actualizado." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Agardando confirmación para esta dirección. Comproba a túa conta de Jabber/GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches a %s á túa lista de contactos?)" +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Agardando confirmación para esta dirección. Comproba a túa conta de Jabber/" +"GTalk que ten que haber unha mensaxe coas seguintes instrucións. (Engadiches " +"a %s á túa lista de contactos?)" #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -542,8 +641,35 @@ msgstr "Confirmation code not found." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Noraboa, %s! e benvido a %%%%site.name%%%%. Dende aquí, podes...\n\n* Ír ó [teu perfil](%s) e enviar o teu primeiro chío.\n* Engadir unha [conta de Jabber/Gtalk](%%%%action.imsettings%%%%) para enviar os teus chíos a través de mensaxería instantánea.\n* [Buscar xente ](%%%%action.peoplesearch%%%%) que poidas coñecer ou que comparta os teus intereses. \n* Actualizar as túas [preferencias no perfil](%%%%action.profilesettings%%%%) para decirlle a outros máis sobre ti. \n* Ler os [manuais en liña](%%%%doc.help%%%%) para ollar máis cousas que podes facer aquí. \n\nGrazas por rexistrarte e esperamos que laretexes moito." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Noraboa, %s! e benvido a %%%%site.name%%%%. Dende aquí, podes...\n" +"\n" +"* Ír ó [teu perfil](%s) e enviar o teu primeiro chío.\n" +"* Engadir unha [conta de Jabber/Gtalk](%%%%action.imsettings%%%%) para " +"enviar os teus chíos a través de mensaxería instantánea.\n" +"* [Buscar xente ](%%%%action.peoplesearch%%%%) que poidas coñecer ou que " +"comparta os teus intereses. \n" +"* Actualizar as túas [preferencias no perfil](%%%%action.profilesettings%%%" +"%) para decirlle a outros máis sobre ti. \n" +"* Ler os [manuais en liña](%%%%doc.help%%%%) para ollar máis cousas que " +"podes facer aquí. \n" +"\n" +"Grazas por rexistrarte e esperamos que laretexes moito." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -950,8 +1076,12 @@ msgid "Find people on this site" msgstr "Atopar xente neste sitio" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Por razóns de seguranza, por favor re-insire o teu nome de usuario e contrasinal antes de cambiar as túas preferenzas." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Por razóns de seguranza, por favor re-insire o teu nome de usuario e " +"contrasinal antes de cambiar as túas preferenzas." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1036,16 +1166,28 @@ msgstr "Configuracións de IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co teu OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co " +"teu OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Se queres engadir un enderezo OpenID á tua conta, insirea na caixa de embaixo e fai clic en \"Engadir\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Se queres engadir un enderezo OpenID á tua conta, insirea na caixa de " +"embaixo e fai clic en \"Engadir\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no enderezo de correo que configuraches na túa conta." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no " +"enderezo de correo que configuraches na túa conta." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1075,8 +1217,12 @@ msgstr "Usuario ou contrasinal incorrectos." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "As instruccións para recuperar a túa contrasinal foron enviadas ó enderezo de correo da túa conta." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"As instruccións para recuperar a túa contrasinal foron enviadas ó enderezo " +"de correo da túa conta." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1172,8 +1318,14 @@ msgstr "Invitar a novos usuarios" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Correndo o software de microblogaxe [StatusNet](http://status.net/), versión %s, dispoñible baixo licenza [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Correndo o software de microblogaxe [StatusNet](http://status.net/), versión " +"%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1183,8 +1335,13 @@ msgstr "O identificador de Jabber xa pertence a outro usuario." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Enderezo Jabber ou GTalk, coma \"NomeUsuario@Exemplo.org\". Primeiro, asegurate de engadir %s á tua lista de contactos no teu cliente de IM ou no GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Enderezo Jabber ou GTalk, coma \"NomeUsuario@Exemplo.org\". Primeiro, " +"asegurate de engadir %s á tua lista de contactos no teu cliente de IM ou no " +"GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1251,8 +1408,14 @@ msgstr "Acceder con unha conta [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra](%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" +"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" +"action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1297,8 +1460,12 @@ msgstr "Microblogue por %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Operadora móbil do teu teléfono. Se sabes se a operadora acepta SMS sobre email e non está listada aquí, envianos unha mensaxe para incluilo en %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Operadora móbil do teu teléfono. Se sabes se a operadora acepta SMS sobre " +"email e non está listada aquí, envianos unha mensaxe para incluilo en %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1920,8 +2087,14 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de teléfono, sen puntuacións ou espazos, co código de área" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2104,8 +2277,12 @@ msgid "Remove OpenID" msgstr "Eliminar OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Eliminando o teu enderezo OpenID vaiche ser imposible acceder! Se queres eliminalo, primeiro engade outro enderezo OpenID." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Eliminando o teu enderezo OpenID vaiche ser imposible acceder! Se queres " +"eliminalo, primeiro engade outro enderezo OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2201,13 +2378,21 @@ msgstr "Procura no Fío" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Procurar chíos en %%site.name%% polos seus contidos. Separa os termos de procura por espazos, deben ter 3 caracteres ou máis." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Procurar chíos en %%site.name%% polos seus contidos. Separa os termos de " +"procura por espazos, deben ter 3 caracteres ou máis." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. Separa os termos por espazos; deben ter 3 caracteres ou máis." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " +"Separa os termos por espazos; deben ter 3 caracteres ou máis." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2242,13 +2427,18 @@ msgstr "Enviarme advertencias a través de Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme grandes facturas." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Enviarme chíos mediante SMS, entendo que a miña operadora poida cobrarme " +"grandes facturas." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." +msgstr "" +"Envíame respostas a través de Jabber/GTalk da xente á que non estou suscrito." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2454,13 +2644,15 @@ msgstr "O número de teléfono xa pertence a outro usuario." #: actions/twitapistatuses.php:251 lib/facebookaction.php:477 #: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." -msgstr "Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 #: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 #: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." -msgstr "Iso é demasiado longo. O tamaño máximo para un chío é de 255 caracteres." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para un chío é de 255 caracteres." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 @@ -2480,13 +2672,25 @@ msgstr "Enderezo eliminado." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "A subscrición foi autorizada, pero ningunha URL de retorno foi proporcionada. Comproba coas instruccións do sitio para máis detalles en como autorizar subscricións. O teu token de subscrición é:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"A subscrición foi autorizada, pero ningunha URL de retorno foi " +"proporcionada. Comproba coas instruccións do sitio para máis detalles en " +"como autorizar subscricións. O teu token de subscrición é:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2512,7 +2716,8 @@ msgstr "Esa é a xente á que lle estas a escoitar os seus chíos" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "Esta xente xa é usuario e ti foches suscrito automaticamente a eles:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 @@ -2520,14 +2725,24 @@ msgid "This confirmation code is too old. Please start again." msgstr "Ese código de confirmación é demasiado antigo. Comeza de novo." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Este formulario debería enviarse automáticamente. Se non é así, fai clic no botón de enviar para ir ó teu proveedro OpenID." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Este formulario debería enviarse automáticamente. Se non é así, fai clic no " +"botón de enviar para ir ó teu proveedro OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Esta é a primeria vez que accedes a %s polo que debes conectar o teu enderezo OpenID á conta local. Podes ademáis crear unha nova conta, ou conectarte cunha existente, se xa tes unha." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Esta é a primeria vez que accedes a %s polo que debes conectar o teu " +"enderezo OpenID á conta local. Podes ademáis crear unha nova conta, ou " +"conectarte cunha existente, se xa tes unha." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2576,14 +2791,23 @@ msgstr "Fuso Horario non seleccionado" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Para subscribirse, podes [acceder](%%action.login%%), ou [rexistrar](%%action.register%%) unha nova conta. Se xa tes unha conta nun [sitio de microblogaxe compatíbel](%%doc.openmublog%%), insire a dirección do perfil abaixo." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Para subscribirse, podes [acceder](%%action.login%%), ou [rexistrar](%%" +"action.register%%) unha nova conta. Se xa tes unha conta nun [sitio de " +"microblogaxe compatíbel](%%doc.openmublog%%), insire a dirección do perfil " +"abaixo." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 #: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." -msgstr "Dous identificadores de usuario ou nomes_en_pantalla deben ser proporcionados." +msgstr "" +"Dous identificadores de usuario ou nomes_en_pantalla deben ser " +"proporcionados." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2631,8 +2855,12 @@ msgid "Unknown version of OMB protocol." msgstr "Versión de protocolo OMB descoñecida." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Aínda que especifiques outro, os contidos de este sitio teñen copyright polos contribuidores e está dispoñible baixo " +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Aínda que especifiques outro, os contidos de este sitio teñen copyright " +"polos contribuidores e está dispoñible baixo " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2693,8 +2921,16 @@ msgid "Upload" msgstr "Subir" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Sube un novo \"avatar\" (imaxe de usuario) dende aquí. Non podes editar a imaxe despois de subila, polo que asegurate de que é máis ou menos cadrado. Debe estar baixo a licenza do sistio. Emprega unha imaxe que che pertenza e que queiras compartir." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Sube un novo \"avatar\" (imaxe de usuario) dende aquí. Non podes editar a " +"imaxe despois de subila, polo que asegurate de que é máis ou menos cadrado. " +"Debe estar baixo a licenza do sistio. Emprega unha imaxe que che pertenza e " +"que queiras compartir." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2702,15 +2938,19 @@ msgstr "Subir unha nova imaxe de usuario" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Emprega este formulario para invitar ós teus amigos e colegas a empregar este servizo." +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Emprega este formulario para invitar ós teus amigos e colegas a empregar " +"este servizo." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "Empregado só para actualizacións, novidades, e recuperación de contrasinais" +msgstr "" +"Empregado só para actualizacións, novidades, e recuperación de contrasinais" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -2796,8 +3036,12 @@ msgid "You already have this OpenID!" msgstr "¡Xa tes esa OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta atrás... Quedas avisado!" +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " +"atrás... Quedas avisado!" #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2829,19 +3073,30 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Podes recibir mensaxes SMS a través do email dende %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Podes eliminar unha OpenID da túa conta facendo clic no botón marcado \"Eliminar\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Podes eliminar unha OpenID da túa conta facendo clic no botón marcado " +"\"Eliminar\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Podes enviar e recibir chíos a través de Jabber/GTalk [mensaxes instantáneos](%%doc.im%%). Configura a túa conta e configuracións abaixo." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Podes enviar e recibir chíos a través de Jabber/GTalk [mensaxes instantáneos]" +"(%%doc.im%%). Configura a túa conta e configuracións abaixo." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Podes actualizar a túa información do perfil persoal aquí para que a xente che poida coñecer mellor." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Podes actualizar a túa información do perfil persoal aquí para que a xente " +"che poida coñecer mellor." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2865,8 +3120,24 @@ msgstr "Non nos enviaches ese perfil" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "Tes unha nova dirección de envio de mensaxes en %1$s.\n\nEnvia unha mensaxe a %2$s para enviar novas mensaxes.\n\nHai máis instruccións de envio en %3$s.\n\nSempre teu...,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Tes unha nova dirección de envio de mensaxes en %1$s.\n" +"\n" +"Envia unha mensaxe a %2$s para enviar novas mensaxes.\n" +"\n" +"Hai máis instruccións de envio en %3$s.\n" +"\n" +"Sempre teu...,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2882,8 +3153,12 @@ msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Notificaráseche cando os teus invitados acepten unha invitación e se rexistren neste sitio. Grazas por facer crecer o gremio lareteiro!" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Notificaráseche cando os teus invitados acepten unha invitación e se " +"rexistren neste sitio. Grazas por facer crecer o gremio lareteiro!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2901,8 +3176,12 @@ msgstr "O teu alcume neste servidor, ou o teu enderezo rexistrado." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma conta. Xestina os teus OpenIDs asociados dende aquí." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma " +"conta. Xestina os teus OpenIDs asociados dende aquí." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3094,11 +3373,14 @@ msgstr "Band. Entrada para %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Esta é a túa bandexa de entrada, aquí móstranse as túas mensaxes privadas." +msgstr "" +"Esta é a túa bandexa de entrada, aquí móstranse as túas mensaxes privadas." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" msgstr "Acabas de invitar a %1$s a unirse a %2$s (%3$s).\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 @@ -3119,7 +3401,8 @@ msgstr "Accede co teu nome de usuario e contrasinal." #: actions/twitapidirect_messages.php:150 #: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." -msgstr "Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." #: actions/newmessage.php:65 actions/newmessage.php:128 #: actions/newmessage.php:155 actions/newmessage.php:158 @@ -3141,8 +3424,11 @@ msgstr "Non podes enviar mensaxes a este usurio." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Non te envies mensaxes a ti mesmo!! só fala contigo mesmo baixiño, senón vante tomar por tolo." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Non te envies mensaxes a ti mesmo!! só fala contigo mesmo baixiño, senón " +"vante tomar por tolo." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3188,12 +3474,15 @@ msgstr "Band. Saída para %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Esta é a túa band. saída, que mostra as mensaxes privadas que enviaches." +msgstr "" +"Esta é a túa band. saída, que mostra as mensaxes privadas que enviaches." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" +"Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3244,8 +3533,11 @@ msgstr "A contrasinal debe ter 6 caracteres ou máis." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3341,7 +3633,8 @@ msgstr "Usuario destinatario non atopado." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo." +msgstr "" +"Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3368,12 +3661,19 @@ msgstr "%s gustoulle o teu chío" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Engade a túa conta de Twitter para enviar automáticamente os teus chíos a Twitter." +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " +"Twitter." #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3420,8 +3720,12 @@ msgstr "Suscribirse ós meus amigos de Twitter aquí." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "O nome de usuario debe ter só letras, minúsculas e maiúsculas, e números, e sen espazos." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"O nome de usuario debe ter só letras, minúsculas e maiúsculas, e números, e " +"sen espazos." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3636,8 +3940,12 @@ msgstr "Usuario sen perfil coincidente no sistema." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "You have a new posting address on %1$s.\n\n" -msgstr "Tes novas direccións de posteo en %1$s.\n\n" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" +"Tes novas direccións de posteo en %1$s.\n" +"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3646,8 +3954,12 @@ msgstr "%s enviouche unha nova mensaxe privada" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "%1$s (%2$s) enviouche unha mensaxe privada:\n\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"%1$s (%2$s) enviouche unha mensaxe privada:\n" +"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -3716,7 +4028,7 @@ msgstr "Non se puido analizaar a mensaxe." #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s e amigos" @@ -3733,6 +4045,28 @@ msgstr "Podes actualizar a túa información do perfil persoal aquí" msgid "Avatar settings" msgstr "Configuracións de Twitter" +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + #: actions/avatarsettings.php:248 actions/deletenotice.php:133 #: actions/emailsettings.php:224 actions/grouplogo.php:307 #: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 @@ -3746,6 +4080,17 @@ msgstr "Configuracións de Twitter" msgid "There was a problem with your session token. " msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -3792,19 +4137,33 @@ msgid "Failed to save block information." msgstr "Erro ao gardar información de bloqueo." #: actions/confirmaddress.php:159 -#, php-format, fuzzy +#, fuzzy, php-format msgid "The address \"%s\" has been " msgstr "Enderezo eliminado." #: actions/deletenotice.php:73 #, fuzzy msgid "You are about to permanently delete a notice. " -msgstr "Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta atrás... Quedas avisado!" +msgstr "" +"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " +"atrás... Quedas avisado!" #: actions/disfavor.php:94 msgid "Add to favorites" msgstr "Engadir a favoritos" +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 #: actions/grouplogo.php:70 actions/newgroup.php:65 @@ -3845,6 +4204,11 @@ msgstr "Non é o usuario" msgid "You must be an admin to edit the group" msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -3867,7 +4231,7 @@ msgid "Options saved." msgstr "Configuracións gardadas." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Awaiting confirmation on this address. " msgstr "Agardando a confirmación neste número de teléfono." @@ -3894,7 +4258,28 @@ msgstr "Este enderezo de correo xa pertence a outro usuario." #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "O código de confirmación foi embiado á dirección IM que engadiches. Deberías engadir a %s como contacto para que che poida enviar mensaxes." +msgstr "" +"O código de confirmación foi embiado á dirección IM que engadiches. Deberías " +"engadir a %s como contacto para que che poida enviar mensaxes." + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -3902,6 +4287,13 @@ msgstr "O código de confirmación foi embiado á dirección IM que engadiches. msgid "No notice content!" msgstr "Sen contido!" +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -3918,6 +4310,11 @@ msgstr "« Despois" msgid "Before" msgstr "Antes »" +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + #: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" @@ -3925,16 +4322,28 @@ msgstr "Invitación(s) enviada(s) á seguinte xente:" #: actions/facebookinvite.php:96 actions/facebookinvite.php:102 #: actions/facebookinvite.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You have been invited to %s" msgstr "%s douche un toque" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Fonte para os amigos de %s" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + #: actions/facebookremove.php:56 msgid "Couldn't remove Facebook user." msgstr "Non se puido eliminar o usuario de Facebook." @@ -3964,6 +4373,15 @@ msgstr "Enviar respostas \"@\" locais a Twitter." msgid "Prefix" msgstr "Perfil" +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" @@ -3981,7 +4399,7 @@ msgid "Popular notices" msgstr "Chíos populares" #: actions/favorited.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Popular notices, page %d" msgstr "Chíos populares" @@ -3997,14 +4415,33 @@ msgid "Featured users" msgstr "Usuarios destacados" #: actions/featured.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Featured users, page %d" msgstr "Usuarios destacados" +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + #: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Este usuario non che permite suscribirte a el." +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" + +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" + +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -4017,6 +4454,36 @@ msgstr "Avatar actualizado." msgid "Failed updating logo." msgstr "Acounteceu un fallo ó actualizar o avatar." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -4024,9 +4491,11 @@ msgid "Create a new group" msgstr "Crear nova conta" #: actions/groupsearch.php:57 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Procurar xente en %%site.name%% polo seu nome, localización, ou intereses. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy @@ -4038,13 +4507,18 @@ msgstr "Procurar xente." msgid "You can send and receive notices through " msgstr "Non podes enviar mensaxes a este usurio." +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Enviarme advertencias a través de Jabber/GTalk." #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "Sen código de confirmación." @@ -4059,15 +4533,19 @@ msgid "You are already a member of that group" msgstr "Xa estas suscrito a estes usuarios:" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Non podes seguir a este usuario: o Usuario non se atopa." #: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s joined group %s" msgstr "%s / Favoritos dende %s" +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + #: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." @@ -4099,14 +4577,33 @@ msgstr "Non se puido actualizar o rexistro de usuario." #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Non podes seguir a este usuario: o Usuario non se atopa." +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + #: actions/microsummary.php:69 msgid "No current status" msgstr "Sen estado actual" +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -4141,8 +4638,11 @@ msgid "Ajax Error" msgstr "Erro de Ajax" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Este usuario non permite toques, ou non confirmou ainda o seu correo electrónico." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Este usuario non permite toques, ou non confirmou ainda o seu correo " +"electrónico." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4210,9 +4710,11 @@ msgid "Users self-tagged with %s - page %d" msgstr "Usuarios auto-etiquetados como %s - páxina %d" #: actions/peopletag.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are users who have tagged themselves \"%s\" " -msgstr "Estes son usuarios que se etiquetaron a sí mesmos como \"%s\" para mostrar intereses comuns, características, aficións ou traballos." +msgstr "" +"Estes son usuarios que se etiquetaron a sí mesmos como \"%s\" para mostrar " +"intereses comuns, características, aficións ou traballos." #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy @@ -4221,13 +4723,18 @@ msgstr "Perfil descoñecido" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Etiquetas para o teu usuario (letras, números, -, ., e _), separados por coma ou espazo" +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Etiquetas para o teu usuario (letras, números, -, ., e _), separados por " +"coma ou espazo" #: actions/profilesettings.php:144 #, fuzzy msgid "Automatically subscribe to whoever " -msgstr "Suscribirse automáticamente a calquera que se suscriba a min (o mellor para non humáns)" +msgstr "" +"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " +"non humáns)" #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 @@ -4243,7 +4750,7 @@ msgstr "Non se puideron gardar as etiquetas." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Liña de tempo pública" @@ -4252,11 +4759,27 @@ msgstr "Liña de tempo pública" msgid "Could not retrieve public stream." msgstr "Non se pudo recuperar a liña de tempo publica." +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Sindicación do Fio Público" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + #: actions/register.php:139 actions/register.php:349 actions/register.php:79 #: actions/register.php:177 actions/register.php:394 actions/register.php:183 #: actions/register.php:398 @@ -4268,15 +4791,21 @@ msgstr "Desculpa, só se pode rexistrar a xente con invitación." msgid "You can't register if you don't " msgstr "Non podes rexistrarte se non estas de acordo coa licenza." +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " -msgstr "De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" +msgstr "" +"De 1 a 64 letras minúsculas ou númeors, nin espazos nin signos de puntuación" #: actions/register.php:382 actions/register.php:386 #, fuzzy msgid "Used only for updates, announcements, " -msgstr "Empregado só para actualizacións, novidades, e recuperación de contrasinais" +msgstr "" +"Empregado só para actualizacións, novidades, e recuperación de contrasinais" #: actions/register.php:398 #, fuzzy @@ -4296,12 +4825,15 @@ msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr " agás esta informción privada: contrasinal, dirección de correo electrónico, dirección IM, número de teléfono." +msgstr "" +" agás esta informción privada: contrasinal, dirección de correo electrónico, " +"dirección IM, número de teléfono." #: actions/register.php:471 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." +msgstr "" +"Noraboa, %s! E benvido a %%%%site.name%%%%. Dende aquí, igual queres..." #: actions/register.php:495 #, fuzzy @@ -4314,21 +4846,42 @@ msgstr "Este é un perfil local! Rexístrate para suscribirte." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Replies to %s" #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s favorite notices, page %d" msgstr "%s chíos favoritos" +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Non existe o perfil." +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4348,7 +4901,7 @@ msgid "Group actions" msgstr "Outras opcions" #: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Fonte de chíos para %s" @@ -4370,13 +4923,25 @@ msgstr "Membro dende" msgid "(None)" msgstr "(nada)" +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient " msgstr "Só o emisor e destinatario poden ler esta mensaxe." #: actions/showstream.php:73 actions/showstream.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s, page %d" msgstr "Band. Entrada para %s - páxina %d" @@ -4392,6 +4957,12 @@ msgstr "Perfil" msgid "User profile" msgstr "O usuario non ten perfil." +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy @@ -4420,6 +4991,13 @@ msgstr "Subscritores" msgid "All groups" msgstr "Tódalas etiquetas" +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -4457,27 +5035,32 @@ msgid "Subscribed" msgstr "Suscrito" #: actions/subscribers.php:50 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscribers" msgstr "Subscritores" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Esa é a xente que escoita os chíos de %s." #: actions/subscribers.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people who " msgstr "Esa é a xente que escoita os chíos de %s." #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "Tódalas subscricións" #: actions/subscriptions.php:54 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions, page %d" msgstr "Tódalas subscricións" @@ -4487,7 +5070,7 @@ msgid "These are the people whose notices " msgstr "Esta é a xente á que lle estas a escoitar os chíos %s." #: actions/subscriptions.php:69 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people whose " msgstr "Esa é a xente que escoita os chíos de %s." @@ -4497,10 +5080,15 @@ msgid "Jabber" msgstr "Jabber." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Chíos tagueados con %s" +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + #: actions/tagother.php:33 msgid "Not logged in" msgstr "Non estás logueado." @@ -4510,7 +5098,7 @@ msgid "No id argument." msgstr "Non hai argumento id." #: actions/tagother.php:65 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Tag %s" msgstr "Tags" @@ -4520,8 +5108,12 @@ msgid "Tag user" msgstr "Tags" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Etiquetas para este usuario (letras, numeros, -, ., e _), separados por coma ou espazo" +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Etiquetas para este usuario (letras, numeros, -, ., e _), separados por coma " +"ou espazo" #: actions/tagother.php:164 #, fuzzy @@ -4529,8 +5121,11 @@ msgid "There was a problem with your session token." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Só podes etiquetar xente á que estás suscrito ou aos que están suscritos a ti." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Só podes etiquetar xente á que estás suscrito ou aos que están suscritos a " +"ti." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4538,7 +5133,9 @@ msgstr "Non se poden gardar as etiquetas." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Usa este formulario para engadir etiquetas aos teus seguidores ou aos que sigues." +msgstr "" +"Usa este formulario para engadir etiquetas aos teus seguidores ou aos que " +"sigues." #: actions/tagrss.php:35 msgid "No such tag." @@ -4567,7 +5164,9 @@ msgstr "Non atopado" #: actions/twittersettings.php:71 #, fuzzy msgid "Add your Twitter account to automatically send " -msgstr "Engade a túa conta de Twitter para enviar automáticamente os teus chíos a Twitter." +msgstr "" +"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " +"Twitter." #: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" @@ -4582,8 +5181,12 @@ msgstr "Contrasinal de Twitter" msgid "Twitter Friends" msgstr "Amigos de Twitter" +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + #: actions/twittersettings.php:341 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information " msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." @@ -4603,6 +5206,17 @@ msgstr "Non se atopou un perfil con ese ID." msgid "Unsubscribed" msgstr "De-suscribido" +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" +msgstr "" + +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." @@ -4610,8 +5224,11 @@ msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro duns minutos." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " +"duns minutos." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -4634,10 +5251,26 @@ msgid "Other options" msgstr "Outras opcions" #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" @@ -4648,6 +5281,18 @@ msgstr "Sobre" msgid "Change your email, avatar, password, profile" msgstr "Cambiar contrasinal" +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -4668,6 +5313,10 @@ msgstr "Axuda" msgid "Site notice" msgstr "Novo chío" +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -4678,11 +5327,20 @@ msgstr "Novo chío" msgid "Secondary site navigation" msgstr "Navegación de subscricións" +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + #: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 #, fuzzy msgid "All " msgstr "Todos" +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy @@ -4699,6 +5357,11 @@ msgstr "Bloquear" msgid "Disfavor this notice" msgstr "%s chíos favoritos" +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -4717,6 +5380,10 @@ msgstr "Público" msgid "Favor this notice" msgstr "%s chíos favoritos" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + #: lib/galleryaction.php:121 msgid "Filter tags" msgstr "Filtrar etiquetas" @@ -4759,14 +5426,46 @@ msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" + +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Sair" +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -4792,35 +5491,57 @@ msgstr "Accede co teu nome de usuario e contrasinal." msgid "Sign up for a new account" msgstr "Crear nova conta" +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "%1$s está a escoitar os teus chíos %2$s." #: lib/mail.php:254 lib/mail.php:253 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Location: %s\n" msgstr "Ubicación: %s" #: lib/mail.php:256 lib/mail.php:255 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Páxina persoal: %s" +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + #: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "%s douche un toque" #: lib/mail.php:465 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) enviouche unha mensaxe privada:\n\n" +msgstr "" +"%1$s (%2$s) enviouche unha mensaxe privada:\n" +"\n" #: lib/mail.php:555 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s just added your notice from %2$s" -msgstr "A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n\n" +msgstr "" +"A %1$s gustoulle o teu chío %2$s e marcouno como favorito.\n" +"\n" #: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 #: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 @@ -4891,7 +5612,7 @@ msgid "Send a nudge to this user" msgstr "Non podes enviar mensaxes a este usurio." #: lib/personaltagcloudsection.php:56 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Tags in %s's notices" msgstr "O usuario non ten último chio." @@ -4932,21 +5653,32 @@ msgstr "Chíos" msgid "Find groups on this site" msgstr "Atopar xente neste sitio" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People %s subscribes to" msgstr "Suscrición remota" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People subscribed to %s" msgstr "Suscrito a %s" +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" -msgstr "Emprega este formulario para invitar ós teus amigos e colegas a empregar este servizo." +msgstr "" +"Emprega este formulario para invitar ós teus amigos e colegas a empregar " +"este servizo." #: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." @@ -4963,6 +5695,10 @@ msgstr "Suscrito a %s" msgid "None" msgstr "No" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy @@ -4979,17 +5715,17 @@ msgid "Unsubscribe from this user" msgstr "Desuscribir de %s" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Fonte para os amigos de %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Fonte para os amigos de %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Fonte para os amigos de %s" @@ -4999,7 +5735,7 @@ msgid "You and friends" msgstr "%s e amigos" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Podes actualizar a túa información do perfil persoal aquí" @@ -5009,13 +5745,23 @@ msgid "Avatar deleted." msgstr "Avatar actualizado." #: actions/block.php:129 actions/block.php:136 -msgid "Are you sure you want to block this user? Afterwards, they will be unsubscribed from you, unable to subscribe to you in the future, and you will not be notified of any @-replies from them." -msgstr "Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a ser notificado de ningunha resposta-@ del." +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" +"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " +"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " +"ser notificado de ningunha resposta-@ del." #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta atrás... Quedas avisado!" +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Vas a eliminar permanentemente este chío. Unha vez feito, xa non hai volta " +"atrás... Quedas avisado!" #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5027,15 +5773,58 @@ msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Enviarme un email cando alguén me envíe unha mensaxe privada." +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Microblogue por %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. Separa os termos por espazos; deben ter 3 caracteres ou máis." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Procurar xente en %%site.name%% pola seu nome, localización, ou intereses. " +"Separa os termos por espazos; deben ter 3 caracteres ou máis." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" #: actions/newmessage.php:102 #, fuzzy @@ -5043,14 +5832,18 @@ msgid "Only logged-in users can send direct messages." msgstr "Erro ó enviar a mensaxe directa." #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "Buscar \"%s\" na Liña de tempo" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Por razóns de seguranza, por favor re-insire o teu nome de usuario e contrasinal antes de cambiar as túas preferenzas." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Por razóns de seguranza, por favor re-insire o teu nome de usuario e " +"contrasinal antes de cambiar as túas preferenzas." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5069,18 +5862,40 @@ msgstr "Sindicación do Fio Público" #: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" #: actions/register.php:286 actions/register.php:329 -#, php-format, fuzzy -msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "Neste formulario podes crear unha conta de usuario. Logo poderás publicar chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" +#, fuzzy, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" +"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " +"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " +"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr " agás esta informción privada: contrasinal, dirección de correo electrónico, dirección IM, número de teléfono." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" agás esta informción privada: contrasinal, dirección de correo electrónico, " +"dirección IM, número de teléfono." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5090,9 +5905,18 @@ msgstr "Crear" #: actions/showgroup.php:393 actions/showgroup.php:440 #: actions/showgroup.php:448 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. [Join now](%%%%action.register%%%%) to become part of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" #: actions/showstream.php:147 #, fuzzy @@ -5100,27 +5924,27 @@ msgid "Your profile" msgstr "Non existe o perfil." #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "Non existe o perfil." #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Fonte de chíos para %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Fonte de chíos para %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Fonte de chíos para %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Band. Saída para %s" @@ -5136,22 +5960,64 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Configuración de perfil" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + #: actions/showstream.php:542 actions/showstream.php:388 #: actions/showstream.php:487 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "Enviouseche o código de confirmación ó número de teléfono que engadiches. Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que debes seguir." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Enviouseche o código de confirmación ó número de teléfono que engadiches. " +"Comproba a túa bandexa de entrada (ou spam!) polo código e instrucións que " +"debes seguir." #: actions/twitapifavorites.php:171 lib/mail.php:556 #: actions/twitapifavorites.php:222 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nIn case you forgot, you can see the text of your notice here:\n\n%3$s\n\nYou can see the list of %1$s's favorites here:\n\n%4$s\n\nFaithfully yours,\n%5$s\n" -msgstr "%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n\nSe o olvidaches, podes velo texto do teu chío aquí:\n\n%3$s\n\nPodes vela lista de cíos favoritos de %1$s aquí:\n\n%4$s\n\nFielmente teu,\n%5$s\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" +"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" +"\n" +"Se o olvidaches, podes velo texto do teu chío aquí:\n" +"\n" +"%3$s\n" +"\n" +"Podes vela lista de cíos favoritos de %1$s aquí:\n" +"\n" +"%4$s\n" +"\n" +"Fielmente teu,\n" +"%5$s\n" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5168,68 +6034,356 @@ msgstr "Non é o usuario" #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Engade a túa conta de Twitter para enviar automáticamente os teus chíos a Twitter, e suscribirte aos usuarios de twiter que teñas como amigos aqui." +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Engade a túa conta de Twitter para enviar automáticamente os teus chíos a " +"Twitter, e suscribirte aos usuarios de twiter que teñas como amigos aqui." #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Non se puido recoller información da túa conta \"%s\" en Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro duns minutos." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " +"duns minutos." + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" #: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format -msgid "Subscriptions: %1$s\nSubscribers: %2$s\nNotices: %3$s" -msgstr "Suscripcións: %1$s\nSuscriptores: %2$s\nChíos: %3$s" +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" +"Suscripcións: %1$s\n" +"Suscriptores: %2$s\n" +"Chíos: %3$s" #: lib/command.php:392 lib/command.php:385 -msgid "Commands:\non - turn on notifications\noff - turn off notifications\nhelp - show this help\nfollow - subscribe to user\nleave - unsubscribe from user\nd - direct message to user\nget - get last notice from user\nwhois - get profile info on user\nfav - add user's last notice as a 'fave'\nstats - get your stats\nstop - same as 'off'\nquit - same as 'off'\nsub - same as 'follow'\nunsub - same as 'leave'\nlast - same as 'get'\non - not yet implemented.\noff - not yet implemented.\nnudge - not yet implemented.\ninvite - not yet implemented.\ntrack - not yet implemented.\nuntrack - not yet implemented.\ntrack off - not yet implemented.\nuntrack all - not yet implemented.\ntracks - not yet implemented.\ntracking - not yet implemented.\n" -msgstr "Comandos:\non - activar as notificacións\noff - desactivar as notificacións\nhelp - mostrar esta axuda\nfollow - suscribirse ao usuario\nleave - de-suscribirse do usuario\nd - mensaxe directa ao usuario\nget - lelo último chío do usuario\nwhois - amosar informacion do usuario\nfav - engadilo último chío do usuario como favorito\nstats - amosalas túas estatísticas\nstop - o mesmo que 'off'\nquit - o mesmo que 'off'\nsub - o mesmo que 'follow'\nunsub - o mesmo que 'leave'\nlast - o mesmo que 'get'\non - non implementado por agora.\noff - non implementado por agora.\nnudge - non implementado por agora.\ninvite - non implementado por agora.\ntrack - non implementado por agora.\nuntrack - non implementado por agora.\ntrack off - non implementado por agora.\nuntrack all - non implementado por agora.\ntracks - non implementado por agora.\ntracking - non implementado por agora.\n" +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" +"Comandos:\n" +"on - activar as notificacións\n" +"off - desactivar as notificacións\n" +"help - mostrar esta axuda\n" +"follow - suscribirse ao usuario\n" +"leave - de-suscribirse do usuario\n" +"d - mensaxe directa ao usuario\n" +"get - lelo último chío do usuario\n" +"whois - amosar informacion do usuario\n" +"fav - engadilo último chío do usuario como favorito\n" +"stats - amosalas túas estatísticas\n" +"stop - o mesmo que 'off'\n" +"quit - o mesmo que 'off'\n" +"sub - o mesmo que 'follow'\n" +"unsub - o mesmo que 'leave'\n" +"last - o mesmo que 'get'\n" +"on - non implementado por agora.\n" +"off - non implementado por agora.\n" +"nudge - non implementado por agora.\n" +"invite - non implementado por agora.\n" +"track - non implementado por agora.\n" +"untrack - non implementado por agora.\n" +"track off - non implementado por agora.\n" +"untrack all - non implementado por agora.\n" +"tracks - non implementado por agora.\n" +"tracking - non implementado por agora.\n" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co teu OpenID." +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Se xa tes unha conta, accede co teu usuario e contrasinal para conectar co " +"teu OpenID." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" #: lib/mail.php:175 lib/mail.php:174 #, php-format -msgid "Hey, %s.\n\nSomeone just entered this email address on %s.\n\nIf it was you, and you want to confirm your entry, use the URL below:\n\n %s\n\nIf not, just ignore this message.\n\nThanks for your time, \n%s\n" -msgstr "Ei, %s.\n\nAlguén introduceu o teu correo electrónico en %s.\n\nSe foches ti, e queres confirmar a entrada, pincha na seguinte URL:\n\n %s\n\nSe non, simplemente ignora esta mensaxe.\n\nGrazas polo teu tempo, \n%s\n" +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" +"Ei, %s.\n" +"\n" +"Alguén introduceu o teu correo electrónico en %s.\n" +"\n" +"Se foches ti, e queres confirmar a entrada, pincha na seguinte URL:\n" +"\n" +"\t%s\n" +"\n" +"Se non, simplemente ignora esta mensaxe.\n" +"\n" +"Grazas polo teu tempo, \n" +"%s\n" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s está a escoitar os teus chíos en %2$s.\n\n %3$s\n\nAtentamente todo seu,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s está a escoitar os teus chíos en %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Atentamente todo seu,\n" +"%4$s.\n" #: lib/mail.php:466 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to these days and is inviting you to post some news.\n\nSo let's hear from you :)\n\n%3$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%4$s\n" -msgstr "%1$s (%2$s) preguntase que é de ti, e invítate a publicar algun chío.\n\nSo let's hear from you :)\n\n%3$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%4$s\n" +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" +"%1$s (%2$s) preguntase que é de ti, e invítate a publicar algun chío.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" #: lib/mail.php:513 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nYou can reply to their message here:\n\n%4$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%5$s\n" -msgstr "%1$s (%2$s) enviouche unha mensaxe privada:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nYou can reply to their message here:\n\n%4$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%5$s\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" +"%1$s (%2$s) enviouche unha mensaxe privada:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Buscar" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." msgstr "Ningún documento." +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 +#, php-format +msgid "%s blocked profiles" +msgstr "" + +#: actions/blockedfromgroup.php:93 +#, php-format +msgid "%s blocked profiles, page %d" +msgstr "" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -5245,26 +6399,56 @@ msgstr "Código de confirmación." msgid "Do not delete this notice" msgstr "Non se pode eliminar este chíos." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Etiqueta inválida: '%s'" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Non se puido crear o favorito." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5275,6 +6459,14 @@ msgstr "Novo chío" msgid "No notice" msgstr "Novo chío" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5286,6 +6478,10 @@ msgstr "Non é un alcume válido." msgid "No group specified." msgstr "Non se especificou ningún perfil." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5303,15 +6499,35 @@ msgid "Block user from group" msgstr "Bloquear usuario" #: actions/groupblock.php:155 -#, php-format, fuzzy -msgid "Are you sure you want to block user \"%s\" from the group \"%s\"? They will be removed from the group, unable to post, and unable to subscribe to the group in the future." -msgstr "Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a ser notificado de ningunha resposta-@ del." +#, fuzzy, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" +"Seguro que queres bloquear a este usuario? Despois diso, vai ser de-suscrito " +"do teur perfil, non será capaz de suscribirse a ti nun futuro, e non vas a " +"ser notificado de ningunha resposta-@ del." + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5334,46 +6550,242 @@ msgstr "Non se puideron gardar os teus axustes de Twitter!" msgid "Design preferences saved." msgstr "Preferencias gardadas." +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Non se atoparon resultados" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "O usuario bloqueoute." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Non hai mensaxes de texto!" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Non se puido gardar o perfil." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma conta. Xestina os teus OpenIDs asociados dende aquí." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) permiteche acceder en moitos sitios coa mesma " +"conta. Xestina os teus OpenIDs asociados dende aquí." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Configuración de perfil" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no enderezo de correo que configuraches na túa conta." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se esquenceches ou perdeches a túa contrasinal, podes obter unha nova no " +"enderezo de correo que configuraches na túa conta." #: actions/recoverpassword.php:158 #, fuzzy @@ -5395,30 +6807,93 @@ msgstr "Acounteceu un erro co código de confirmación." msgid "Subscribe to a remote user" msgstr "Suscrito a %s" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "Chíos favoritos de %s" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de chíos para %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de chíos para %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de chíos para %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" #: actions/shownotice.php:101 #, fuzzy @@ -5426,33 +6901,86 @@ msgid "Not a local notice" msgstr "Non é usuario local." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Chíos tagueados con %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Fonte de chíos para %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet](http://status.net/). [Únete agora](%%action.register%%) para compartir chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Esto é %%site.name%%, un servizo de [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) basado na ferramenta de código aberto [StatusNet]" +"(http://status.net/). [Únete agora](%%action.register%%) para compartir " +"chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s está a escoitar os teus chíos %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Fonte de chíos para %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Fonte de chíos para %s" @@ -5483,16 +7011,24 @@ msgid "Could not find target user." msgstr "Non se puido atopar ningún estado" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Chíos que respostan a %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -5503,41 +7039,127 @@ msgstr "Subscrición de autorización." msgid "Profile design" msgstr "Configuración de perfil" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "%1s non é unha orixe fiable." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Mensaxe de %1$s en %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "O usuario non ten perfil." +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Perfil" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Subir" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Cambiar contrasinal" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5553,20 +7175,138 @@ msgstr "Buscar" msgid "Links" msgstr "Lista" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Bloquear" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Bloquear usuario" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + #: lib/mail.php:556 -#, php-format, fuzzy -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" -msgstr "%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n\nSe o olvidaches, podes velo texto do teu chío aquí:\n\n%3$s\n\nPodes vela lista de cíos favoritos de %1$s aquí:\n\n%4$s\n\nFielmente teu,\n%5$s\n" +#, fuzzy, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" +"\n" +"Se o olvidaches, podes velo texto do teu chío aquí:\n" +"\n" +"%3$s\n" +"\n" +"Podes vela lista de cíos favoritos de %1$s aquí:\n" +"\n" +"%4$s\n" +"\n" +"Fielmente teu,\n" +"%5$s\n" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy @@ -5583,11 +7323,26 @@ msgstr "Usuario" msgid "Search help" msgstr "Buscar" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "%1s non é unha orixe fiable." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5595,50 +7350,85 @@ msgid "No such page" msgstr "Non existe a etiqueta." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Mensaxes directas para %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." -msgstr "Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." msgstr "Non podes seguir a este usuario: o Usuario non se atopa." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." -msgstr "A localización é demasiado longa (max 255 car.)." +msgstr "O teu Bio é demasiado longo (max 140 car.)." #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." -msgstr "Xa bloqueaches a este usuario." +msgstr "Xa estas suscrito a estes usuarios:" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Non podes seguir a este usuario: o Usuario non se atopa." #: actions/apigroupleave.php:114 #, fuzzy msgid "You are not a member of this group." -msgstr "Non podes enviar mensaxes a este usurio." +msgstr "Non estás suscrito a ese perfil" #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Non podes seguir a este usuario: o Usuario non se atopa." +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Usuarios" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "%1s non é unha orixe fiable." + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Outras opcions" + +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar actualizado." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." -msgstr "Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." +msgstr "" +"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy @@ -5646,17 +7436,16 @@ msgid "Unsupported format." msgstr "Formato de ficheiro de imaxe non soportado." #: actions/bookmarklet.php:50 -#, fuzzy msgid "Post to " -msgstr "Chíos dende SMS" +msgstr "" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." -msgstr "A localización é demasiado longa (max 255 car.)." +msgstr "O teu Bio é demasiado longo (max 140 car.)." #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" @@ -5683,35 +7472,59 @@ msgstr "Versión de protocolo OMB descoñecida." #: actions/getfile.php:75 #, fuzzy msgid "No such file." -msgstr "Non existe o perfil." +msgstr "Ningún chío." #: actions/getfile.php:79 #, fuzzy msgid "Cannot read file." -msgstr "Non se puido crear o favorito." +msgstr "Bloqueo de usuario fallido." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." -msgstr "%1s non é unha orixe fiable." +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra](%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Accede co teu nome de usuario e contrasinal. ¿Non tes un todavía?? [Rexistra]" +"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" +"action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Actualizacións dende %1$s en %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Tódalas actualizacións que coinciden co termo de procura \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Conectar" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." @@ -5721,18 +7534,24 @@ msgid "Describe yourself and your interests" msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." #: actions/register.php:336 #, fuzzy -msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. " -msgstr "Neste formulario podes crear unha conta de usuario. Logo poderás publicar chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" +"Neste formulario podes crear unha conta de usuario. Logo poderás publicar " +"chíos, e suscribirte a amigos. (Tes unha conta [OpenID](http://openid.net/)? " +"Proba o noso [Rexistro OpenID](%%action.openidlogin%%)!)" #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Non é un enderezo de perfil válido (non ten documento YADIS)." #: actions/remotesubscribe.php:176 @@ -5745,30 +7564,53 @@ msgstr "Este é un perfil local! Rexístrate para suscribirte." msgid "Couldn’t get a request token." msgstr "Non se puido recoller o token de petición." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Fonte de chíos para %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Fonte de chíos para %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Fonte de chíos para %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Mensaxe de %1$s en %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Fonte para os favoritos de %s" +msgstr "Fonte para os amigos de %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Fonte para os favoritos de %s" +msgstr "Fonte para os amigos de %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Fonte para os favoritos de %s" +msgstr "Fonte para os amigos de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Band. Saída para %s" #: actions/shownotice.php:90 #, fuzzy @@ -5778,35 +7620,83 @@ msgstr "Chío publicado" #: actions/smssettings.php:91 #, fuzzy msgid "SMS is not available." -msgstr "Publicación de chíos por SMS desactivado!" +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Fonte de chíos para %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "A subscrición foi autorizada, pero ningunha URL de retorno foi proporcionada. Comproba coas instruccións do sitio para máis detalles en como autorizar subscricións. O teu token de subscrición é:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"A subscrición foi autorizada, pero ningunha URL de retorno foi " +"proporcionada. Comproba coas instruccións do sitio para máis detalles en " +"como autorizar subscricións. O teu token de subscrición é:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Non se pode ler a URL do avatar de '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo de imaxe incorrecto para '%s'" @@ -5821,29 +7711,37 @@ msgid "Site content license" msgstr "Atopar no contido dos chíos" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Non se puido actualizar o usuario coa dirección de correo electrónico." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Toque enviado" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d " #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" -msgstr "Replies to %s" +msgstr "Non se pode eliminar este chíos." #: lib/command.php:441 #, fuzzy @@ -5852,46 +7750,176 @@ msgstr "Aconteceu un erro ó gardar o chío." #: lib/command.php:587 #, fuzzy -msgid "Commands:\non - turn on notifications\noff - turn off notifications\nhelp - show this help\nfollow - subscribe to user\nleave - unsubscribe from user\nd - direct message to user\nget - get last notice from user\nwhois - get profile info on user\nfav - add user's last notice as a 'fave'\nfav # - add notice with the given id as a 'fave'\nreply # - reply to notice with a given id\nreply - reply to the last notice from user\njoin - join group\ndrop - leave group\nstats - get your stats\nstop - same as 'off'\nquit - same as 'off'\nsub - same as 'follow'\nunsub - same as 'leave'\nlast - same as 'get'\non - not yet implemented.\noff - not yet implemented.\nnudge - remind a user to update.\ninvite - not yet implemented.\ntrack - not yet implemented.\nuntrack - not yet implemented.\ntrack off - not yet implemented.\nuntrack all - not yet implemented.\ntracks - not yet implemented.\ntracking - not yet implemented.\n" -msgstr "Comandos:\non - activar as notificacións\noff - desactivar as notificacións\nhelp - mostrar esta axuda\nfollow - suscribirse ao usuario\nleave - de-suscribirse do usuario\nd - mensaxe directa ao usuario\nget - lelo último chío do usuario\nwhois - amosar informacion do usuario\nfav - engadilo último chío do usuario como favorito\nstats - amosalas túas estatísticas\nstop - o mesmo que 'off'\nquit - o mesmo que 'off'\nsub - o mesmo que 'follow'\nunsub - o mesmo que 'leave'\nlast - o mesmo que 'get'\non - non implementado por agora.\noff - non implementado por agora.\nnudge - non implementado por agora.\ninvite - non implementado por agora.\ntrack - non implementado por agora.\nuntrack - non implementado por agora.\ntrack off - non implementado por agora.\nuntrack all - non implementado por agora.\ntracks - non implementado por agora.\ntracking - non implementado por agora.\n" +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" +"Comandos:\n" +"on - activar as notificacións\n" +"off - desactivar as notificacións\n" +"help - mostrar esta axuda\n" +"follow - suscribirse ao usuario\n" +"leave - de-suscribirse do usuario\n" +"d - mensaxe directa ao usuario\n" +"get - lelo último chío do usuario\n" +"whois - amosar informacion do usuario\n" +"fav - engadilo último chío do usuario como favorito\n" +"stats - amosalas túas estatísticas\n" +"stop - o mesmo que 'off'\n" +"quit - o mesmo que 'off'\n" +"sub - o mesmo que 'follow'\n" +"unsub - o mesmo que 'leave'\n" +"last - o mesmo que 'get'\n" +"on - non implementado por agora.\n" +"off - non implementado por agora.\n" +"nudge - non implementado por agora.\n" +"invite - non implementado por agora.\n" +"track - non implementado por agora.\n" +"untrack - non implementado por agora.\n" +"track off - non implementado por agora.\n" +"untrack all - non implementado por agora.\n" +"tracks - non implementado por agora.\n" +"tracking - non implementado por agora.\n" #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Sen código de confirmación." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + #: lib/galleryaction.php:139 #, fuzzy msgid "Select tag to filter" msgstr "Selecciona unha operadora" +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres." + #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Fonte de chíos para %s" +msgstr "Novo chío" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s gustoulle o teu chío" #: lib/mail.php:556 -#, php-format, fuzzy -msgid "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" -msgstr "%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n\nSe o olvidaches, podes velo texto do teu chío aquí:\n\n%3$s\n\nPodes vela lista de cíos favoritos de %1$s aquí:\n\n%4$s\n\nFielmente teu,\n%5$s\n" +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s acaba de engadir o teu chío en %2$s como un dos seus favoritos.\n" +"\n" +"Se o olvidaches, podes velo texto do teu chío aquí:\n" +"\n" +"%3$s\n" +"\n" +"Podes vela lista de cíos favoritos de %1$s aquí:\n" +"\n" +"%4$s\n" +"\n" +"Fielmente teu,\n" +"%5$s\n" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " dende " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Non se puido eliminar o favorito." +msgstr "Non se pudo recuperar a liña de tempo publica." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Eliminar chío" - diff --git a/locale/he/LC_MESSAGES/statusnet.mo b/locale/he/LC_MESSAGES/statusnet.mo index 2a7e01471418d07de68701e0eefe7f16dc453d2c..082968542026c68ea93c97a56971dfad43e9d5d6 100644 GIT binary patch delta 13347 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 O+_G!R<`)0F-hTlH#2_dD delta 12912 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, 2008. -# -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-# -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:25+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:43:45+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: out-statusnet\n" @@ -35,6 +21,62 @@ msgstr "" msgid " Search Stream for \"%s\"" msgstr "חיפוש ברצף אחרי \"%s\"" +#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 +#: actions/finishopenidlogin.php:88 actions/register.php:205 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" + +#: ../actions/showstream.php:400 ../lib/stream.php:109 +#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 +msgid " from " +msgstr "" + +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#, php-format +msgid "%1$s / Updates replying to %2$s" +msgstr "" + +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "" + +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" + #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 #, php-format @@ -43,8 +85,26 @@ msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s מאזין כעת להודעות שלך ב %2$s. \n\n %3$s\n שלך,\n %4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s מאזין כעת להודעות שלך ב %2$s. \n" +"\n" +"\t%3$s\n" +" שלך,\n" +" %4$s.\n" + +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -53,6 +113,13 @@ msgstr "%1$s מאזין כעת להודעות שלך ב %2$s. \n\n %3$s\n שלך msgid "%1$s's status on %2$s" msgstr "הסטטוס של %1$s ב-%2$s " +#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 +#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "" + #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format @@ -74,11 +141,52 @@ msgstr "רצף ציבורי ב-%s" msgid "%s and friends" msgstr "%s וחברים" +#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "" + +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "" + +#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "" + +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "" + +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" + #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%site.broughtbyurl%%)." +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" +"site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -98,6 +206,11 @@ msgstr "תנו קרדיט מלא לכותבים בשמם המלא או בכינ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים." +#: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" + #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" @@ -117,8 +230,102 @@ msgstr " לפחות 6 אותיות. שדה חובה." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים מידיים אליך." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים " +"מידיים אליך." + +#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/smssettings.php:216 actions/smssettings.php:224 +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 +#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 +#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 +#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 +#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 +#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 +#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 +#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 +#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 +#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 +#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 +#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 +#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 +#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 +#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "" + +#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 +#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 +#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 +#: ../actions/twitapidirect_messages.php:49 +#: ../actions/twitapidirect_messages.php:56 +#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 +#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 +#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 +#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 +#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 +#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 +#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 +#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 +#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 +#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 +#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 +#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 +#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 +msgid "API method under construction." +msgstr "" #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 @@ -149,6 +356,11 @@ msgstr "הוסף" msgid "Add OpenID" msgstr "הוסף OpenID" +#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 +#: lib/accountsettingsaction.php:117 +msgid "Add or remove OpenIDs" +msgstr "" + #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 @@ -158,6 +370,11 @@ msgstr "הוסף OpenID" msgid "Address" msgstr "כתבות" +#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" + #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" @@ -189,6 +406,12 @@ msgstr "כבר מחובר." msgid "Already subscribed!." msgstr "כבר מנוי!" +#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "" + #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 @@ -202,6 +425,13 @@ msgstr "אשר מנוי" msgid "Automatically login in the future; not for shared computers!" msgstr "בעתיד התחבר אוטומטית; לא לשימוש במחשבים ציבוריים!" +#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" + #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 @@ -219,8 +449,24 @@ msgstr "התמונה עודכנה." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "מחכה לאישור כתובת זו. בדוק את חשבון ה-Jabber/GTalk שלך לקבלת מסר עם הוראות נוספותץ (האם הוספת את %s לרשימת החברים שלך?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"מחכה לאישור כתובת זו. בדוק את חשבון ה-Jabber/GTalk שלך לקבלת מסר עם הוראות " +"נוספותץ (האם הוספת את %s לרשימת החברים שלך?)" + +#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" + +#: ../actions/smssettings.php:58 actions/smssettings.php:58 +#: actions/smssettings.php:111 actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "" #: ../lib/util.php:1318 lib/util.php:1452 #, fuzzy @@ -244,6 +490,11 @@ msgstr "ביוגרפיה" msgid "Bio is too long (max 140 chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" +#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "" + #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format @@ -277,16 +528,37 @@ msgstr "לא ניתן להפעיל את אובייקט הלקוח של OpenID." msgid "Cannot normalize that Jabber ID" msgstr "לא ניתן לנרמל את זהות ה-Jabber הזה" +#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "" + #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "שנה" +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "" + #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "שנה סיסמה" +#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "" + +#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "" + #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 #: actions/profilesettings.php:182 actions/recoverpassword.php:187 @@ -314,11 +586,36 @@ msgstr "אשר כתובת" msgid "Confirmation cancelled." msgstr "האישור בוטל." +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "" + #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "קוד האישור לא נמצא." +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" + #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -342,6 +639,21 @@ msgstr "צור קשר" msgid "Could not create OpenID form: %s" msgstr "נכשלה יצירת OpenID מתוך: %s" +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "" + +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" + #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format @@ -358,15 +670,44 @@ msgstr "שמירת מידע התמונה נכשל" msgid "Could not save new profile info" msgstr "שמירת מידע הפרופיל החדש נכשלה" +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "" + +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 +msgid "Could not subscribe." +msgstr "" + +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליחה." +#: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 +#: ../actions/imsettings.php:218 ../actions/smssettings.php:241 +#: actions/confirmaddress.php:84 actions/emailsettings.php:252 +#: actions/imsettings.php:226 actions/smssettings.php:249 +#: actions/confirmaddress.php:126 actions/emailsettings.php:375 +#: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "" + #: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "מחיקת המנוי לא הצליחה." +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 +msgid "Couldn't find any statuses." +msgstr "" + #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." @@ -395,6 +736,22 @@ msgstr "הכנסת מנוי חדש נכשלה." msgid "Couldn't save profile." msgstr "שמירת הפרופיל נכשלה." +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "" + +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -442,16 +799,38 @@ msgstr "יצירת חשבון חדש עבור OpenID שכבר משוייך למ msgid "Current confirmed Jabber/GTalk address." msgstr "כתובת מאושרת נוכחית של Jabber/GTalk." +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" + +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" + #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "כרגע" +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "" + #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -459,6 +838,55 @@ msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" msgid "Describe yourself and your interests in 140 chars" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" +#: ../actions/register.php:158 ../actions/register.php:161 +#: ../lib/settingsaction.php:87 actions/register.php:172 +#: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 +#: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 +msgid "Email" +msgstr "" + +#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 +msgid "Email Address" +msgstr "" + +#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "" + +#: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 +msgid "Email address already exists." +msgstr "" + +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 +msgid "Email address confirmation" +msgstr "" + +#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "" + +#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 +msgid "Email addresses" +msgstr "" + +#: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "" + +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" + #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" @@ -576,8 +1004,26 @@ msgstr "הזנות החברים של %s" msgid "Feed for replies to %s" msgstr "הזנת התגובות ל-%s" +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 +#, php-format +msgid "Feed for tag %s" +msgstr "" + +#: ../lib/searchaction.php:105 lib/searchaction.php:105 +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "" + +#: ../lib/searchaction.php:101 lib/searchaction.php:101 +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "" + #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסיסמה לפני שתשנה את ההגדרות." #: ../actions/profilesettings.php:44 ../actions/register.php:164 @@ -640,6 +1086,17 @@ msgstr "אתר בית" msgid "Homepage is not a valid URL." msgstr "לאתר הבית יש כתובת לא חוקית." +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "" + +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "" + #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -652,12 +1109,38 @@ msgstr "הגדרות מסרים מידיים" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "אם אתה רוצה להוסיף OpenID לחשבון שלך, הכנס אותו לתיבה שלמטה ולחץ \"הוסף\"" +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"אם אתה רוצה להוסיף OpenID לחשבון שלך, הכנס אותו לתיבה שלמטה ולחץ \"הוסף\"" + +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" + +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 @@ -671,12 +1154,25 @@ msgstr "הסיסמה הישנה לא נכונה" msgid "Incorrect username or password." msgstr "שם משתמש או סיסמה לא נכונים." +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" + #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "כתובת התמונה '%s' אינה חוקית" +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "" + #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format @@ -735,11 +1231,38 @@ msgstr "גודל לא חוקי." msgid "Invalid username or password." msgstr "שם המשתמש או הסיסמה לא חוקיים" +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "" + +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" + +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 +msgid "Invite" +msgstr "" + +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 +msgid "Invite new users" +msgstr "" + #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "הוא פועל על תוכנת המיקרובלוג [](http://status.netלאקוניקה/) לאקוניקה, גירסה %s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)" +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"הוא פועל על תוכנת המיקרובלוג [](http://status.netלאקוניקה/) לאקוניקה, גירסה %" +"s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" +"licensing/licenses/agpl-3.0.html)" #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -749,8 +1272,12 @@ msgstr "זיהוי ה-Jabber כבר שייך למשתמש אחר." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "כתובת Jabber או GTalk, כגון \"UserName@example.org\". הוסף את %s אל רשימת החברים בתוכנת ההמסרים המידיים או GTalk שלך." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"כתובת Jabber או GTalk, כגון \"UserName@example.org\". הוסף את %s אל רשימת " +"החברים בתוכנת ההמסרים המידיים או GTalk שלך." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -758,6 +1285,12 @@ msgstr "כתובת Jabber או GTalk, כגון \"UserName@example.org\". הוס msgid "Language" msgstr "שפה" +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "" + #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 #: actions/profilesettings.php:117 actions/register.php:408 @@ -811,20 +1344,43 @@ msgstr "התחבר לחשבון [OpenID](%%doc.openid%%). " #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action.register%%) לחשבון " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." +"register%%) לחשבון " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "צא" +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 +msgid "Longer name, preferably your \"real\" name" +msgstr "" + #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "שכחת או איבדת את הסיסמה?" +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "" + #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -836,6 +1392,14 @@ msgstr "חבר מאז" msgid "Microblog by %s" msgstr "מיקרובלוג מאת %s" +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 @@ -851,6 +1415,18 @@ msgstr "הטקסטים והקבצים שלי מופצים תחת רשיון" msgid "New" msgstr "חדש" +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "" + #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -930,6 +1506,11 @@ msgstr "כינוי זה אסור." msgid "Nickname of the user you want to follow" msgstr "כינויו של המשתמש אחריו אתה רוצה לעקוב" +#: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 +msgid "Nickname or email" +msgstr "" + #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 #: actions/deletenotice.php:116 actions/block.php:149 @@ -949,6 +1530,16 @@ msgstr "אין זיהוי Jabber כזה." msgid "No authorization request!" msgstr "לא התבקש אישור!" +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" + +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 +msgid "No code entered" +msgstr "" + #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -963,10 +1554,23 @@ msgstr "אין קוד אישור." msgid "No content!" msgstr "אין תוכן!" +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "" + #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "אין זיהוי." +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -988,11 +1592,22 @@ msgstr "אין כינוי" msgid "No pending confirmation to cancel." msgstr "אין אישור ממתין שניתן לבטל." +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 +msgid "No phone number." +msgstr "" + #: ../actions/finishremotesubscribe.php:72 #: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." msgstr "השרת לא החזיר כתובת פרופיל" +#: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "" + #: ../actions/userauthorization.php:49 actions/userauthorization.php:55 #: actions/userauthorization.php:57 msgid "No request found!" @@ -1010,6 +1625,21 @@ msgstr "אין תוצאות" msgid "No size." msgstr "אין גודל." +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" + +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "" + #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1075,6 +1705,12 @@ msgstr "אין מנוי כזה" msgid "No such user." msgstr "אין משתמש כזה." +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" + #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "אין את מי להציג!" @@ -1084,6 +1720,21 @@ msgstr "אין את מי להציג!" msgid "Not a recovery code." msgstr "זהו לא קוד אישור." +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 +msgid "Not a registered user." +msgstr "" + +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 +msgid "Not a supported data format." +msgstr "" + #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1094,6 +1745,17 @@ msgstr "לא עומד בכללים לזיהוי Jabber" msgid "Not a valid OpenID." msgstr "לא עומד בכללים ל-OpenID." +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "" + +#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 +msgid "Not a valid email address." +msgstr "" + #: ../actions/profilesettings.php:91 ../actions/register.php:71 #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 @@ -1168,6 +1830,11 @@ msgstr "לא מחובר." msgid "Not subscribed!." msgstr "לא מנוי!" +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" + #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 @@ -1188,6 +1855,14 @@ msgstr "להודעה אין פרופיל" msgid "Notices" msgstr "הודעות" +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" + #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1255,6 +1930,11 @@ msgstr "OpenID הוסר." msgid "OpenID settings" msgstr "הגדרות OpenID" +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "" + #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -1329,9 +2009,24 @@ msgstr "חיפוש סיסמה" msgid "Personal" msgstr "אישי" +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 +msgid "Personal message" +msgstr "" + +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה להירשם, לחץ \"בטל\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " +"להירשם, לחץ \"בטל\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -1360,6 +2055,12 @@ msgstr "העדפות" msgid "Preferences saved." msgstr "העדפות נשמרו." +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "" + #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" @@ -1407,6 +2108,22 @@ msgstr "הזנת זרם הציבורי" msgid "Public timeline" msgstr "קו זמן ציבורי" +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "" + +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "" + +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 +#: actions/tag.php:76 +msgid "Recent Tags" +msgstr "" + #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -1435,6 +2152,18 @@ msgstr "קוד שיחזור למשתמש לא ידוע." msgid "Register" msgstr "הירשם" +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 +msgid "Registration not allowed." +msgstr "" + +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 +msgid "Registration successful" +msgstr "" + #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -1480,8 +2209,12 @@ msgid "Remove OpenID" msgstr "הסר OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "הסרת ה-OpenID היחיד שלך תגרום לכך שלא תוכל להתחבר למערכת. אם אתה צריך להסיר אותו, לפני כן הוסף OpenID אחר." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"הסרת ה-OpenID היחיד שלך תגרום לכך שלא תוכל להתחבר למערכת. אם אתה צריך להסיר " +"אותו, לפני כן הוסף OpenID אחר." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -1517,12 +2250,31 @@ msgstr "איפוס סיסמה" msgid "SMS" msgstr "סמס" +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "" + +#: ../actions/smssettings.php:33 actions/smssettings.php:33 +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "" + +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 +msgid "SMS confirmation" +msgstr "" + #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "זהה לסיסמה למעלה" +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 +msgid "Same as password above. Required." +msgstr "" + #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -1558,13 +2310,26 @@ msgstr "הזנת זרם החיפושים" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "חפש הודעות ב-%%site.name%% לפי תוכנן. הפרד בעזרת רווחים בין הביטויים; עליהם להיות בני לפחות 3 אותיות." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"חפש הודעות ב-%%site.name%% לפי תוכנן. הפרד בעזרת רווחים בין הביטויים; עליהם " +"להיות בני לפחות 3 אותיות." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים בין הביטויים; עליהם להיות בני לפחות 3 אותיות." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " +"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." + +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -1575,11 +2340,35 @@ msgstr "חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחו msgid "Send" msgstr "שלח" +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" + +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" + #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "שלח לי הודעות דרך Jabber/GTalk." +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -1591,6 +2380,10 @@ msgstr "הגדרות" msgid "Settings saved." msgstr "ההגדרות נשמרו." +#: ../actions/tag.php:60 actions/tag.php:60 +msgid "Showing most popular tags from the last week" +msgstr "" + #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -1602,6 +2395,16 @@ msgstr "למישהו כבר יש את ה-OpenID הזה." msgid "Something weird happened." msgstr "קרה משהו מוזר." +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 +msgid "Sorry, no incoming email allowed." +msgstr "" + +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 +msgid "Sorry, that is not your incoming email address." +msgstr "" + #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -1666,6 +2469,17 @@ msgstr "הרשמות" msgid "System error uploading file." msgstr "שגיאת מערכת בהעלאת הקובץ." +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 +msgid "Tags" +msgstr "" + #: ../lib/searchaction.php:104 lib/searchaction.php:104 #: lib/designsettings.php:217 msgid "Text" @@ -1691,6 +2505,11 @@ msgstr "כתובת זו כבר אושרה." msgid "That confirmation code is not for you!" msgstr "קוד האישור הזה אינו מיועד לך!" +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "" + #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." @@ -1701,11 +2520,33 @@ msgstr "קובץ זה גדול מידי." msgid "That is already your Jabber ID." msgstr "זהו כבר זיהוי ה-Jabber שלך." +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" + +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" + #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "זהו לא זיהוי ה-Jabber שלך." +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "" + +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "" + #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -1714,6 +2555,16 @@ msgstr "זהו לא זיהוי ה-Jabber שלך." msgid "That is the wrong IM address." msgstr "זוהי כתובת מסרים מידיים שגויה." +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "" + +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" + #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -1724,6 +2575,12 @@ msgstr "זוהי כתובת מסרים מידיים שגויה." msgid "That's too long. Max notice size is 140 chars." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 +msgid "That's too long. Max notice size is 255 chars." +msgstr "" + #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format @@ -1742,13 +2599,23 @@ msgstr "הכתובת הוסרה." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש כיצד לאשר מנוי. אסימון המנוי שלך הוא:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " +"כיצד לאשר מנוי. אסימון המנוי שלך הוא:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים דחיית מנוי." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים " +"דחיית מנוי." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -1772,29 +2639,94 @@ msgstr "אלה האנשים ש%s מאזין להודעות שלהם." msgid "These are the people whose notices you listen to." msgstr "אלה האנשים שלהודעות שלהם אתה מאזין." +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" + #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "קוד אישור זה ישן מידי. אנא התחל מחדש." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." msgstr "טופס אמור לשלוח את עצמו אוטומטית. אם לא, " #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "זו ההתחברות הראשונה שלך אל %s לכן עליך להתחבר לחשבון מקומי של OpenID. אתה יכול ליצור חשבון חדש, או להתחבר לחשבון קיים, אם יש לך." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"זו ההתחברות הראשונה שלך אל %s לכן עליך להתחבר לחשבון מקומי של OpenID. אתה " +"יכול ליצור חשבון חדש, או להתחבר לחשבון קיים, אם יש לך." + +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" + +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "" #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "" + +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "" + #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "כדי לעשות מנוי, עליך [להיכנס למערכת](%%action.login%%), או [להירשם](%%action.register%%) לחשבון חדשה. אם יש לך כבר חשבון [במערכת מיקרובלוג תואמת](%%doc.openmublog%%), הכנס את כתובת הפרופיל שלך למטה. " +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"כדי לעשות מנוי, עליך [להיכנס למערכת](%%action.login%%), או [להירשם](%%action." +"register%%) לחשבון חדשה. אם יש לך כבר חשבון [במערכת מיקרובלוג תואמת](%%doc." +"openmublog%%), הכנס את כתובת הפרופיל שלך למטה. " + +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 +msgid "Two user ids or screen_names must be supplied." +msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -1831,13 +2763,20 @@ msgstr "הגשת טופס לא צפויה." msgid "Unexpected password reset." msgstr "איפוס סיסמה לא צפוי." +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" + #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "גירסה לא מוכרת של פרוטוקול OMB" #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " msgstr "אם לא פורט אחרת, כל הזכויות על התוכן של אתר " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 @@ -1864,6 +2803,33 @@ msgstr "גירסה לא נתמכת של OMB" msgid "Unsupported image file format." msgstr "פורמט התמונה אינו נתמך." +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" + +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -1872,8 +2838,25 @@ msgid "Upload" msgstr "ההעלה" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "העלה תמונת משתמש כאן. לאחר העלאת התמונה לא תוכל לערוך אותה, לכן וודא שהיא ריבועית (פחות או יותר). כמו כן, התמונה תפורסם תחת רשיון השימוש של האתר. השתמש בתמונה ששייכת לך ושאתה מוכן לשתף. " +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"העלה תמונת משתמש כאן. לאחר העלאת התמונה לא תוכל לערוך אותה, לכן וודא שהיא " +"ריבועית (פחות או יותר). כמו כן, התמונה תפורסם תחת רשיון השימוש של האתר. " +"השתמש בתמונה ששייכת לך ושאתה מוכן לשתף. " + +#: ../lib/settingsaction.php:91 +msgid "Upload a new profile image" +msgstr "" + +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -1915,6 +2898,16 @@ msgstr "למשתמש אין פרופיל." msgid "User nickname" msgstr "כינוי משתמש" +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 +msgid "User not found." +msgstr "" + +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" + #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -1955,11 +2948,27 @@ msgstr "כן" msgid "You already have this OpenID!" msgstr "כבר יש לך את ה-OpenID הזה!" +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "כבר נכנסת למערכת!" +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" + +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 +msgid "You are not friends with the specified user." +msgstr "" + #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "אפשר לשנות את הסיסמה כאן. בחר סיסמה טובה!" @@ -1968,19 +2977,32 @@ msgstr "אפשר לשנות את הסיסמה כאן. בחר סיסמה טובה msgid "You can create a new account to start posting notices." msgstr "ניתן ליצור חשבון חדש ולהתחיל לפרסם הודעות." +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." msgstr "הסיר OpenID מחשבונך על ידי לחיצה על הכפתור המסומן \"הסר\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "אפשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר את כתובתך והעדפותיך למטה." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"אפשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר " +"את כתובתך והעדפותיך למטה." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." +msgid "" +"You can update your personal profile info here so people know more about you." msgstr "עדכן את הפרופיל האישי שלך כאן, על מנת שאנשים יוכלו לדעת עליך יותר." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 @@ -2003,6 +3025,38 @@ msgstr "לא ניתן להירשם ללא הסכמה לרשיון" msgid "You did not send us that profile" msgstr "לא שלחנו אלינו את הפרופיל הזה" +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "" + +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" + +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "זוהית. הכנס סיסמה חדשה למטה." @@ -2012,10 +3066,19 @@ msgstr "זוהית. הכנס סיסמה חדשה למטה." msgid "Your OpenID URL" msgstr "כתובת ה-OpenID שלך" +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" + #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID מכאן. [OpenID](%%doc.openid%%)" +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID " +"מכאן. [OpenID](%%doc.openid%%)" #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -2093,45 +3156,766 @@ msgstr "הגב" msgid "same as password above" msgstr "זהה לסיסמה למעלה" +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 +msgid "unsupported file type" +msgstr "" + #: ../lib/util.php:1309 lib/util.php:1443 #, fuzzy msgid "« After" msgstr "<< אחרי" +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/disfavor.php:55 actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" + +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 +msgid "Could not delete favorite." +msgstr "" + +#: actions/disfavor.php:72 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" + +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" + +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "" + +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" + +#: actions/favor.php:70 +msgid "Disfavor" +msgstr "" + +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 +#, php-format +msgid "%s favorite notices" +msgstr "" + +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 +#, php-format +msgid "Feed of favorite notices of %s" +msgstr "" + +#: actions/inbox.php:28 actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "" + +#: actions/inbox.php:30 actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "" + +#: actions/inbox.php:53 actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" + +#: actions/invite.php:178 actions/invite.php:213 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" + +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 +msgid "Automatically login in the future; " +msgstr "" + +#: actions/login.php:122 actions/login.php:264 +msgid "For security reasons, please re-enter your " +msgstr "" + +#: actions/login.php:126 actions/login.php:268 +msgid "Login with your username and password. " +msgstr "" + +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 +msgid "That's too long. Max message size is 140 chars." +msgstr "" + +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "" + +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" + +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 +msgid "No such user" +msgstr "" + #: actions/newmessage.php:117 actions/newmessage.php:67 #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "הודעה חדשה" +#: actions/noticesearch.php:95 actions/noticesearch.php:146 +msgid "Notice without matching profile" +msgstr "" + +#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgstr "" + +#: actions/openidsettings.php:46 actions/openidsettings.php:96 +msgid "If you want to add an OpenID to your account, " +msgstr "" + +#: actions/openidsettings.php:74 +msgid "Removing your only OpenID would make it impossible to log in! " +msgstr "" + +#: actions/openidsettings.php:87 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account " +msgstr "" + +#: actions/outbox.php:28 actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:30 actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:53 actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" + +#: actions/profilesettings.php:27 actions/profilesettings.php:69 +msgid "You can update your personal profile info here " +msgstr "" + +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +msgid "User without matching profile" +msgstr "" + +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. " +msgstr "" + +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" +msgstr "" + +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " +msgstr "" + +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 +msgid "Your nickname on this server, " +msgstr "" + +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 +msgid "Instructions for recovering your password " +msgstr "" + +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 +msgid "New password successfully saved. " +msgstr "" + +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/register.php:216 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" + +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " +msgstr "" + +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#, php-format +msgid "To subscribe, you can [login](%%action.login%%)," +msgstr "" + +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 +#, php-format +msgid "Feed for favorites of %s" +msgstr "" + +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showmessage.php:33 actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:42 actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:61 actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:66 actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/showstream.php:154 +msgid "Send a message" +msgstr "" + +#: actions/smssettings.php:312 actions/smssettings.php:464 +#, php-format +msgid "Mobile carrier for your phone. " +msgstr "" + +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 +msgid "Direct Messages You've Sent" +msgstr "" + +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "" + +#: actions/twitapidirect_messages.php:128 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "" + +#: actions/twitapidirect_messages.php:138 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" + +#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" + +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "" + +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "" + +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 +#, php-format +msgid "%s added your notice as a favorite" +msgstr "" + +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" + +#: actions/twittersettings.php:27 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" + +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 +msgid "Twitter settings" +msgstr "" + +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 +msgid "Twitter Account" +msgstr "" + +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 +msgid "Current verified Twitter account." +msgstr "" + +#: actions/twittersettings.php:63 +msgid "Twitter Username" +msgstr "" + +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 +msgid "No spaces, please." +msgstr "" + +#: actions/twittersettings.php:67 +msgid "Twitter Password" +msgstr "" + +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" + +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 +msgid "Could not verify your Twitter credentials!" +msgstr "" + +#: actions/twittersettings.php:137 +#, php-format +msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgstr "" + +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 +msgid "Unable to save your Twitter settings!" +msgstr "" + +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 +msgid "Twitter settings saved." +msgstr "" + +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 +msgid "That is not your Twitter account." +msgstr "" + +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 +msgid "Couldn't remove Twitter user." +msgstr "" + +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 +msgid "Twitter account removed." +msgstr "" + +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 +msgid "Couldn't save Twitter preferences." +msgstr "" + +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 +msgid "Twitter preferences saved." +msgstr "" + +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " +msgstr "" + +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " +msgstr "" + +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " +msgstr "" + +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 +msgid "Command complete" +msgstr "" + +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: classes/Command.php:96 classes/Command.php:113 +#, php-format +msgid "Subscriptions: %1$s\n" +msgstr "" + +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" + +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "" + +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "" + +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "" + +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "" + #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 #: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "אודות: %s" +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 +#, php-format +msgid "Message too long - maximum is 140 characters, you sent %d" +msgstr "" + +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." +msgstr "" + +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" + +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." +msgstr "" + +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: classes/Command.php:344 classes/Command.php:392 +msgid "Commands:\n" +msgstr "" + +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:253 lib/mail.php:512 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" + +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " +msgstr "" + #: lib/personal.php:65 lib/personalgroupnav.php:113 #: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "מועדפים" +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" +msgstr "" + #: lib/personal.php:66 lib/personalgroupnav.php:114 #: lib/personalgroupnav.php:115 msgid "User" msgstr "מתשמש" +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "" + +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" + +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" + +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" + +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 +msgid "Twitter" +msgstr "" + +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 +msgid "Twitter integration options" +msgstr "" + #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 #: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 #: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "אל" +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 +msgid "Could not parse message." +msgstr "" + #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s וחברים" +#: actions/avatarsettings.php:76 +msgid "You can upload your personal avatar." +msgstr "" + #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -2140,6 +3924,51 @@ msgstr "%s וחברים" msgid "Avatar settings" msgstr "הגדרות" +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +msgid "There was a problem with your session token. " +msgstr "" + +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -2147,26 +3976,76 @@ msgstr "הגדרות" msgid "Lost our file." msgstr "אין הודעה כזו." +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 +msgid "No profile specified." +msgstr "" + +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 +msgid "No profile with that ID." +msgstr "" + #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "אין משתמש כזה." +#: actions/block.php:129 +msgid "Are you sure you want to block this user? " +msgstr "" + #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "כבר נכנסת למערכת!" +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + #: actions/confirmaddress.php:159 -#, php-format, fuzzy +#, fuzzy, php-format msgid "The address \"%s\" has been " msgstr "הכתובת הוסרה." +#: actions/deletenotice.php:73 +msgid "You are about to permanently delete a notice. " +msgstr "" + #: actions/disfavor.php:94 #, fuzzy msgid "Add to favorites" msgstr "מועדפים" +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -2190,6 +4069,20 @@ msgstr "אין כינוי" msgid "No such group" msgstr "אין הודעה כזו." +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "" + +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -2212,10 +4105,23 @@ msgid "Options saved." msgstr "ההגדרות נשמרו." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Awaiting confirmation on this address. " msgstr "שגיאה באישור הקוד." +#: actions/emailsettings.php:139 actions/smssettings.php:150 +msgid "Make a new email address for posting to; " +msgstr "" + +#: actions/emailsettings.php:157 +msgid "Send me email when someone " +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -2224,7 +4130,28 @@ msgstr "כתובת זו כבר אושרה." #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים מידיים אליך." +msgstr "" +"קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים " +"מידיים אליך." + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -2232,6 +4159,13 @@ msgstr "קוד אישור נשלח אל כתובת המסרים המידיים msgid "No notice content!" msgstr "אין תוכן!" +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -2248,32 +4182,84 @@ msgstr "<< אחרי" msgid "Before" msgstr "לפני >>" +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" +msgstr "" + #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "הזנות החברים של %s" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "עידכון המשתמש נכשל." +#: actions/facebooksettings.php:65 +msgid "There was a problem saving your sync preferences!" +msgstr "" + #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "העדפות נשמרו." +#: actions/facebooksettings.php:90 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: actions/facebooksettings.php:97 +msgid "Send \"@\" replies to Facebook." +msgstr "" + #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "פרופיל" +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "העדפות" +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 +msgid "Disfavor favorite" +msgstr "" + #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -2283,10 +4269,48 @@ msgid "Popular notices" msgstr "אין הודעה כזו." #: actions/favorited.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Popular notices, page %d" msgstr "אין הודעה כזו." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" + +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 +msgid "Featured users" +msgstr "" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" + +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" + +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" + +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -2299,12 +4323,36 @@ msgstr "התמונה עודכנה." msgid "Failed updating logo." msgstr "עדכון התמונה נכשל." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 #: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 #: lib/subgroupnav.php:98 msgid "Groups" msgstr "קבוצות" +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -2312,35 +4360,64 @@ msgid "Create a new group" msgstr "צור חשבון חדש" #: actions/groupsearch.php:57 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים בין הביטויים; עליהם להיות בני לפחות 3 אותיות." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " +"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "חיפוש סיסמה" +#: actions/imsettings.php:70 +msgid "You can send and receive notices through " +msgstr "" + +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "שלח לי הודעות דרך Jabber/GTalk." #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "אין קוד אישור." +#: actions/joingroup.php:65 actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "" + #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "כבר נכנסת למערכת!" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "נכשלה ההפניה לשרת: %s" +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "" + +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "" + #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -2354,12 +4431,44 @@ msgstr "אין הודעה כזו." msgid "You are not a member of that group." msgstr "לא שלחנו אלינו את הפרופיל הזה" +#: actions/leavegroup.php:100 +msgid "You may not leave a group while you are its administrator." +msgstr "" + +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" + #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "נכשלה יצירת OpenID מתוך: %s" +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -2377,12 +4486,35 @@ msgstr "יצירת המנוי נכשלה." msgid "That's too long. " msgstr "קובץ זה גדול מידי." +#: actions/newmessage.php:134 +msgid "Don't send a message to yourself; " +msgstr "" + #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "הודעות" +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 +msgid "Ajax Error" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" + #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -2398,11 +4530,24 @@ msgstr "הסר OpenID" msgid "Other Settings" msgstr "הגדרות" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" + +#: actions/othersettings.php:93 +msgid "URL Auto-shortening" +msgstr "" + #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "חיפוש" +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "" + #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -2421,19 +4566,39 @@ msgid "Password change" msgstr "הסיסמה נשמרה." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "לא עומד בכללים ל-OpenID." +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "" + +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" + #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "פרופיל לא מוכר" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + +#: actions/profilesettings.php:144 +msgid "Automatically subscribe to whoever " +msgstr "" + #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "כתובת אתר הבית '%s' אינה חוקית" @@ -2445,20 +4610,51 @@ msgstr "שמירת הפרופיל נכשלה." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Public timeline, page %d" msgstr "קו זמן ציבורי" +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "הזנת זרם הציבורי" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 +msgid "Sorry, only invited people can register." +msgstr "" + #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "לא ניתן להירשם ללא הסכמה לרשיון" +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -2484,18 +4680,61 @@ msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אות msgid "Where you are, like \"City, " msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" +#: actions/register.php:432 +msgid " except this private data: password, " +msgstr "" + +#: actions/register.php:471 +#, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgstr "" + +#: actions/register.php:495 +msgid "(You should receive a message by email " +msgstr "" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" + #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "תגובת עבור %s" +#: actions/showfavorites.php:79 +#, php-format +msgid "%s favorite notices, page %d" +msgstr "" + +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "אין הודעה כזו." +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -2508,8 +4747,13 @@ msgstr "אין הודעה כזו." msgid "Note" msgstr "הודעות" +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group" msgstr "הזנת הודעות של %s" @@ -2521,6 +4765,36 @@ msgstr "הזנת הודעות של %s" msgid "Members" msgstr "חבר מאז" +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" +msgstr "" + +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient " +msgstr "" + +#: actions/showstream.php:73 actions/showstream.php:78 +#, php-format +msgid "%s, page %d" +msgstr "" + #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -2533,6 +4807,22 @@ msgstr "פרופיל" msgid "User profile" msgstr "למשתמש אין פרופיל." +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 +msgid "User actions" +msgstr "" + +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 +msgid "Send a direct message to this user" +msgstr "" + #: actions/showstream.php:343 actions/showstream.php:308 #: actions/showstream.php:391 #, fuzzy @@ -2544,6 +4834,17 @@ msgstr "הודעה חדשה" msgid "All subscribers" msgstr "מנויים" +#: actions/showstream.php:533 lib/profileaction.php:235 +msgid "All groups" +msgstr "" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -2559,6 +4860,10 @@ msgstr "שלח לי הודעות דרך Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "קוד האישור הזה אינו מיועד לך!" +#: actions/smssettings.php:453 actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -2580,27 +4885,32 @@ msgid "Subscribed" msgstr "הירשם כמנוי" #: actions/subscribers.php:50 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscribers" msgstr "מנויים" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "אלה האנשים במאזינים להודעות של %s." #: actions/subscribers.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people who " msgstr "אלה האנשים במאזינים להודעות של %s." #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "כל המנויים" #: actions/subscriptions.php:54 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions, page %d" msgstr "כל המנויים" @@ -2610,7 +4920,7 @@ msgid "These are the people whose notices " msgstr "אלה האנשים ש%s מאזין להודעות שלהם." #: actions/subscriptions.php:69 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people whose " msgstr "אלה האנשים במאזינים להודעות של %s." @@ -2621,10 +4931,15 @@ msgid "Jabber" msgstr "אין זיהוי Jabber כזה." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "מיקרובלוג מאת %s" +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -2635,32 +4950,92 @@ msgstr "לא מחובר." msgid "No id argument." msgstr "אין מסמך כזה." +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:164 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "שמירת מידע התמונה נכשל" +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "אין הודעה כזו." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "מיקרובלוג מאת %s" +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" + +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" + #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "לא נמצא" +#: actions/twittersettings.php:71 +msgid "Add your Twitter account to automatically send " +msgstr "" + +#: actions/twittersettings.php:119 actions/twittersettings.php:122 +msgid "Twitter user name" +msgstr "" + #: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "סיסמה חדשה" +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 +msgid "Twitter Friends" +msgstr "" + +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + +#: actions/twittersettings.php:341 +#, php-format +msgid "Unable to retrieve account information " +msgstr "" + #: actions/unblock.php:108 actions/groupunblock.php:128 #, fuzzy msgid "Error removing the block." @@ -2681,22 +5056,91 @@ msgstr "אין פרופיל תואם לפרופיל המרוחק " msgid "Unsubscribed" msgstr "בטל מנוי" +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" +msgstr "" + +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "בעיה בשמירת ההודעה." +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "עדכון התמונה נכשל." +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "" + +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#, php-format +msgid "%s - %s" +msgstr "" + +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "אודות" +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "" + +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -2717,6 +5161,10 @@ msgstr "עזרה" msgid "Site notice" msgstr "הודעה חדשה" +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -2727,12 +5175,39 @@ msgstr "הודעה חדשה" msgid "Secondary site navigation" msgstr "הרשמות" +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +msgid "All " +msgstr "" + +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "אין משתמש כזה." +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block" +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -2751,6 +5226,33 @@ msgstr "ציבורי" msgid "Favor this notice" msgstr "אין הודעה כזו." +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "" + +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -2770,14 +5272,46 @@ msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אות #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" + +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "צא" +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -2803,16 +5337,63 @@ msgstr "שם המשתמש או הסיסמה לא חוקיים" msgid "Sign up for a new account" msgstr "צור חשבון חדש" +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" +#: lib/mail.php:254 lib/mail.php:253 +#, php-format +msgid "Location: %s\n" +msgstr "" + +#: lib/mail.php:256 lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "" + +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + +#: lib/mail.php:461 lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:465 +#, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" + #: lib/mail.php:555 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s just added your notice from %2$s" msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +msgid "From" +msgstr "" + +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "" + #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -2829,22 +5410,69 @@ msgstr "לפחות 6 אותיות" msgid "in reply to" msgstr "בתגובה ל..." +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "" + #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "הגב" +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "" + #: lib/noticelist.php:474 actions/avatarsettings.php:148 #: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "מחק" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "" + #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "ציבורי" +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" + +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -2855,16 +5483,35 @@ msgstr "אנשים" msgid "Notice" msgstr "הודעות" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People %s subscribes to" msgstr "הרשמה מרוחקת" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People subscribed to %s" msgstr "הרשמה מרוחקת" +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -2881,24 +5528,36 @@ msgstr "ההרשמה אושרה" msgid "None" msgstr "לא" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "אין משתמש כזה." +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 +msgid "Unblock" +msgstr "" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "הזנות החברים של %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "הזנות החברים של %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "הזנות החברים של %s" @@ -2907,29 +5566,104 @@ msgstr "הזנות החברים של %s" msgid "You and friends" msgstr "%s וחברים" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "התמונה עודכנה." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "מיקרובלוג מאת %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים בין הביטויים; עליהם להיות בני לפחות 3 אותיות." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"חפש אנשים ב-%%site.name%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים " +"בין הביטויים; עליהם להיות בני לפחות 3 אותיות." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "חיפוש ברצף אחרי \"%s\"" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסיסמה לפני שתשנה את ההגדרות." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 @@ -2947,37 +5681,80 @@ msgstr "הזנת זרם הציבורי" msgid "Public Stream Feed (Atom)" msgstr "הזנת זרם הציבורי" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" + #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 #, fuzzy msgid "Created" msgstr "צור" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "אין הודעה כזו." #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "פרופיל" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "הזנת הודעות של %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "הזנת הודעות של %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "הזנת הודעות של %s" +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -2990,11 +5767,46 @@ msgstr "תמונה" msgid "Edit profile settings" msgstr "הגדרות הפרופיל" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." msgstr "קוד האישור הזה אינו מיועד לך!" +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -3008,26 +5820,257 @@ msgstr "קוד האישור הזה אינו מיועד לך!" msgid "No such user!" msgstr "אין משתמש כזה." +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה להירשם, לחץ \"בטל\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " +"להירשם, לחץ \"בטל\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"אם יש לך כבר חשבון, התחבר עם שם המשתמש והסיסמה שלך וקשר אותו אל ה-OpenID שלך." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s מאזין כעת להודעות שלך ב %2$s. \n\n %3$s\n שלך,\n %4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s מאזין כעת להודעות שלך ב %2$s. \n" +"\n" +"\t%3$s\n" +" שלך,\n" +" %4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "חיפוש" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -3044,15 +6087,19 @@ msgid "Block this user from this group" msgstr "אין משתמש כזה." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "למשתמש אין פרופיל." #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s וחברים" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -3068,26 +6115,56 @@ msgstr "מיקום" msgid "Do not delete this notice" msgstr "אין הודעה כזו." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "כתובת אתר הבית '%s' אינה חוקית" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "שמירת מידע התמונה נכשל" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -3098,11 +6175,28 @@ msgstr "הודעה חדשה" msgid "No notice" msgstr "הודעה חדשה" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "שם משתמש לא חוקי." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -3119,11 +6213,33 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" msgid "Block user from group" msgstr "אין משתמש כזה." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + #: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 #, fuzzy msgid "Group design" msgstr "קבוצות" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -3132,43 +6248,249 @@ msgstr "קבוצות" msgid "Couldn't update your design." msgstr "עידכון המשתמש נכשל." +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "העדפות נשמרו." +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "אין תוצאות" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "למשתמש אין פרופיל." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "הודעה חדשה" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "שמירת הפרופיל נכשלה." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID מכאן. [OpenID](%%doc.openid%%)" +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"מאפשר לך להיכנס להרבה אתרים בעזרת חשבון משתמש אחד. נהל את שיוך ה-OpenID " +"מכאן. [OpenID](%%doc.openid%%)" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "הגדרות הפרופיל" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + #: actions/recoverpassword.php:158 #, fuzzy msgid "You've been identified. Enter a new password below. " @@ -3189,74 +6511,217 @@ msgstr "שגיאה באישור הקוד." msgid "Subscribe to a remote user" msgstr "ההרשמה אושרה" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "אין הודעה כזו." +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "הזנת הודעות של %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "הזנת הודעות של %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "הזנת הודעות של %s" +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "אין משתמש כזה." +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "הזנת הודעות של %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "הזנת הודעות של %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "הזנת הודעות של %s" +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "עידכון המשתמש נכשל." +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "עידכון המשתמש נכשל." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "הסטטוס של %1$s ב-%2$s " #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "מיקרובלוג מאת %s" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -3267,36 +6732,127 @@ msgstr "כל המנויים" msgid "Profile design" msgstr "הגדרות הפרופיל" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "לא שלחנו אלינו את הפרופיל הזה" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "בעיה בשמירת ההודעה." +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "למשתמש אין פרופיל." +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "פרופיל" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "ההעלה" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "שנה סיסמה" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -3312,16 +6868,127 @@ msgstr "חיפוש" msgid "Links" msgstr "היכנס" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "אין משתמש כזה." #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "אין משתמש כזה." +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -3337,19 +7004,39 @@ msgstr "מתשמש" msgid "Search help" msgstr "חיפוש" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "לאתר הבית יש כתובת לא חוקית." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "אין הודעה כזו." +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." @@ -3358,8 +7045,12 @@ msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 או msgid "Could not unfollow user: User not found." msgstr "נכשלה ההפניה לשרת: %s" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" @@ -3369,7 +7060,7 @@ msgid "You are already a member of that group." msgstr "כבר נכנסת למערכת!" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "נכשלה ההפניה לשרת: %s" @@ -3379,26 +7070,64 @@ msgid "You are not a member of this group." msgstr "לא שלחנו אלינו את הפרופיל הזה" #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "נכשלה יצירת OpenID מתוך: %s" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "פרופיל" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "התמונה עודכנה." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "פורמט התמונה אינו נתמך." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "מיקרובלוג מאת %s" + #: actions/finishremotesubscribe.php:80 #, fuzzy msgid "User being listened to does not exist." @@ -3429,23 +7158,51 @@ msgstr "אין הודעה כזו." msgid "Cannot read file." msgstr "אין הודעה כזו." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "מיקרובלוג מאת %s" + #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action.register%%) לחשבון " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." +"register%%) לחשבון " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "מיקרובלוג מאת %s" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "התחבר" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" @@ -3455,47 +7212,76 @@ msgid "Describe yourself and your interests" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Not a valid profile URL (no YADIS document)." +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "אסימון הבקשה לא התקבל." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "הזנת הודעות של %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "הזנת הודעות של %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "הזנת הודעות של %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "תגובת עבור %s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "הזנות החברים של %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "הזנות החברים של %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "הזנות החברים של %s" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" msgstr "הזנת הודעות של %s" @@ -3510,32 +7296,77 @@ msgid "SMS is not available." msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "הזנת הודעות של %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה להירשם, לחץ \"בטל\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " +"להירשם, לחץ \"בטל\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש כיצד לאשר מנוי. אסימון המנוי שלך הוא:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " +"כיצד לאשר מנוי. אסימון המנוי שלך הוא:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים דחיית מנוי." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים " +"דחיית מנוי." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "סוג התמונה של '%s' אינו מתאים" @@ -3550,12 +7381,35 @@ msgid "Site content license" msgstr "הודעה חדשה" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "נכשלה ההפניה לשרת: %s" +msgstr "עידכון המשתמש נכשל." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "תגובת עבור %s" @@ -3564,33 +7418,137 @@ msgstr "תגובת עבור %s" msgid "Error saving notice." msgstr "בעיה בשמירת ההודעה." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "אין קוד אישור." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "הזנת הודעות של %s" +msgstr "הודעה חדשה" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "עידכון המשתמש נכשל." + #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "הודעה חדשה" - diff --git a/locale/is/LC_MESSAGES/statusnet.mo b/locale/is/LC_MESSAGES/statusnet.mo index 36039f4aad5ea3a2a7a403513a9a07876247bc8d..d300d88c4650a61222e976f791211febb111a4ce 100644 GIT binary patch delta 23044 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 LO&QSN)%5=XNZu)= diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index c1f74305e4..636d829fab 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -1,20 +1,16 @@ # Translation of StatusNet to Icelandic # # -- -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:33+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:43:48+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: out-statusnet\n" @@ -28,8 +24,11 @@ msgstr "Leita í bablveitu að \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "nema þessi persónulegu gögn: lykilorð, tölvupóstfang, snarskilaboðafang (IM netfang), símanúmer." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"nema þessi persónulegu gögn: lykilorð, tölvupóstfang, snarskilaboðafang (IM " +"netfang), símanúmer." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -51,8 +50,60 @@ msgstr "%1$s hefur boðið þér að slást í hópinn með þeim á %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s hefur boðið þér að slást í hópinn með þeim á %2$s (%3$s).\n\n%2$s er örbloggsþjónusta sem leyfir þér að fylgjast með með fólki sem þú þekkir eða öðru áhugaverðu fólki í rauntíma.\n\nÞú getur líka sent inn fréttir af þér og deilt hugleiðingum og netveru þinni með fólki sem þekkir til þín. Þetta er frábær leið til þess að kynnast fólki sem hefur sömu áhugamál og þú.\n\n%1$s sagði:\n\n%4$s\n\nÞú getur séð persónulega síðu %1$s á %2$s hér:\n\n%5$s\n\nEf þig langar til að prófa þjónustuna, smelltu þá á hlekkinn hér fyrir neðan til að taka þessu boði.\n\n%6$s\n\nEf ekki, þá getur þú hunsað þessi skilaboð. Takk fyrir tímann og þolinmæðina.\n\nMeð bestu kveðju, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s hefur boðið þér að slást í hópinn með þeim á %2$s (%3$s).\n" +"\n" +"%2$s er örbloggsþjónusta sem leyfir þér að fylgjast með með fólki sem þú " +"þekkir eða öðru áhugaverðu fólki í rauntíma.\n" +"\n" +"Þú getur líka sent inn fréttir af þér og deilt hugleiðingum og netveru þinni " +"með fólki sem þekkir til þín. Þetta er frábær leið til þess að kynnast fólki " +"sem hefur sömu áhugamál og þú.\n" +"\n" +"%1$s sagði:\n" +"\n" +"%4$s\n" +"\n" +"Þú getur séð persónulega síðu %1$s á %2$s hér:\n" +"\n" +"%5$s\n" +"\n" +"Ef þig langar til að prófa þjónustuna, smelltu þá á hlekkinn hér fyrir neðan " +"til að taka þessu boði.\n" +"\n" +"%6$s\n" +"\n" +"Ef ekki, þá getur þú hunsað þessi skilaboð. Takk fyrir tímann og " +"þolinmæðina.\n" +"\n" +"Með bestu kveðju, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -62,8 +113,20 @@ msgstr "%1$s er að hlusta á bablið þitt á %2$s." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s er að hlusta á bablið þitt á %2$s.\n\n %3$s\n\nMeð kveðju,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s er að hlusta á bablið þitt á %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Með kveðju,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -139,14 +202,22 @@ msgstr "%s færslur frá öllum!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Þú ættir að fá tölvupóst eftir smá stund. Í tölvupóstinum eru leiðbeiningar um það hvernig þú staðfestir tölvupóstfangið þitt.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Þú ættir að fá tölvupóst eftir smá stund. Í tölvupóstinum eru leiðbeiningar " +"um það hvernig þú staðfestir tölvupóstfangið þitt.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site." +"broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -169,7 +240,8 @@ msgstr "1-64 lágstafir eða tölustafir, engin greinarmerki eða bil" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 lágstafir eða tölustafir, engin greinarmerki eða bil. Nauðsynlegt." +msgstr "" +"1-64 lágstafir eða tölustafir, engin greinarmerki eða bil. Nauðsynlegt." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -190,17 +262,31 @@ msgstr "6 eða fleiri tákn. Nauðsynlegt" #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Staðfestingarlykill var sendur á snarskilaboðafangið sem þú varst að bæta við. Þú verður að leyfa %s að senda snarskilaboð til þín." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Staðfestingarlykill var sendur á snarskilaboðafangið sem þú varst að bæta " +"við. Þú verður að leyfa %s að senda snarskilaboð til þín." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Staðfestingarlykill var sendur á tölvupóstfangið sem þú varst að bæta við. Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann. " +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Staðfestingarlykill var sendur á tölvupóstfangið sem þú varst að bæta við. " +"Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti " +"staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann. " #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Staðfestingarlykill var sendur á símanúmerið sem þú varst að bæta við. Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Staðfestingarlykill var sendur á símanúmerið sem þú varst að bæta við. " +"Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ætti " +"staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -375,13 +461,18 @@ msgstr "Heimila áskriftir" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Sjálfvirk innskráning í framtíðinni. Ekki nota þetta á tölvu sem aðrir deila með þér!" +msgstr "" +"Sjálfvirk innskráning í framtíðinni. Ekki nota þetta á tölvu sem aðrir deila " +"með þér!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér (best fyrir ómannlega notendur)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér " +"(best fyrir ómannlega notendur)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -400,13 +491,22 @@ msgstr "Mynd hefur verið uppfærð." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Býð eftir staðfestingu frá þessu netfangi. Athugaðu Jabber/GTalk aðganginn þinn. Þar ættu að vera skilaboð með ítarlegri leiðbeiningum. (Hefurðu bætt %s við í vinalistann þinn?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Býð eftir staðfestingu frá þessu netfangi. Athugaðu Jabber/GTalk aðganginn " +"þinn. Þar ættu að vera skilaboð með ítarlegri leiðbeiningum. (Hefurðu bætt %" +"s við í vinalistann þinn?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Býð eftir staðfestingu frá þessu netfangi. Athugaðu innhólfið þitt (og ruslpóstinn þinn!). Þar ættu að vera skilaboð með ítarlegri leiðbeiningum." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Býð eftir staðfestingu frá þessu netfangi. Athugaðu innhólfið þitt (og " +"ruslpóstinn þinn!). Þar ættu að vera skilaboð með ítarlegri leiðbeiningum." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -543,8 +643,36 @@ msgstr "Staðfestingarlykill fannst ekki." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Til hamingju %s! Frábært að þú skulir hafa skráð þig á %%%%site.name%%%%. Héðan vilt þú kannski...\n\n* Fara á [persónulegu síðuna þína](%s) senda inn þitt fyrsta babl.\n* Bæta við [Jabber/GTalk snarskilaboðafangi](%%%%action.imsettings%%%%) svo þú getir sent inn babl í snarskilaboðum.\n* [Leita að fólki](%%%%action.peoplesearch%%%%) sem þú þekkir eða hefur sömu áhugamál og þú. \n* Uppfæra [persónulegu síðuna](%%%%action.profilesettings%%%%) þína til þess að leyfa öðrum að kynnast þér betur.\n* Lesa [vefleiðbeiningarnar](%%%%doc.help%%%%) til þess að læra að babla betur.\n\nTakk fyrir að skrá þig og við vonum að þú njótir þjónustunnar." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Til hamingju %s! Frábært að þú skulir hafa skráð þig á %%%%site.name%%%%. " +"Héðan vilt þú kannski...\n" +"\n" +"* Fara á [persónulegu síðuna þína](%s) senda inn þitt fyrsta babl.\n" +"* Bæta við [Jabber/GTalk snarskilaboðafangi](%%%%action.imsettings%%%%) svo " +"þú getir sent inn babl í snarskilaboðum.\n" +"* [Leita að fólki](%%%%action.peoplesearch%%%%) sem þú þekkir eða hefur sömu " +"áhugamál og þú. \n" +"* Uppfæra [persónulegu síðuna](%%%%action.profilesettings%%%%) þína til þess " +"að leyfa öðrum að kynnast þér betur.\n" +"* Lesa [vefleiðbeiningarnar](%%%%doc.help%%%%) til þess að læra að babla " +"betur.\n" +"\n" +"Takk fyrir að skrá þig og við vonum að þú njótir þjónustunnar." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -576,7 +704,8 @@ msgstr "Gat ekki búið til OpenID eyðublað: %s" #: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." +msgstr "" +"Get ekki fylgst með notanda: %s. Þessi notandi er nú þegar í listanum þínum." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 @@ -951,8 +1080,12 @@ msgid "Find people on this site" msgstr "Finna persónur á þessu vefsvæði" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Af öryggisástæðum, vinsamlegast sláðu aftur inn notendanafnið þitt og lykilorð áður en þú breytir stillingunum þínum." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Af öryggisástæðum, vinsamlegast sláðu aftur inn notendanafnið þitt og " +"lykilorð áður en þú breytir stillingunum þínum." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1037,16 +1170,28 @@ msgstr "Snarskilaboðastillingar" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Ef ert nú þegar með aðgang, skráðu þig inn með notendanafni og lykilorði til þess að tengjast OpenID aðganginum þínum." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Ef ert nú þegar með aðgang, skráðu þig inn með notendanafni og lykilorði til " +"þess að tengjast OpenID aðganginum þínum." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Ef þig langar til það bæta við OpenID í aðganginn þinn, sláðu það þá inn í reitinn hér fyrir neðan og smelltu á \"Bæta við\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Ef þig langar til það bæta við OpenID í aðganginn þinn, sláðu það þá inn í " +"reitinn hér fyrir neðan og smelltu á \"Bæta við\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Ef þú hefur gleymt eða tapað lykilorðinu þínu getur þú fengið nýtt sent á tölvupóstfangið sem þú hefur vistað í notendaaðganginum þínum." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Ef þú hefur gleymt eða tapað lykilorðinu þínu getur þú fengið nýtt sent á " +"tölvupóstfangið sem þú hefur vistað í notendaaðganginum þínum." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1076,8 +1221,12 @@ msgstr "Rangt notendanafn eða lykilorð." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Leiðbeiningar um það hvernig þú getur endurheimt lykilorðið þitt hafa verið sendar á tölvupóstfangið sem er tengt notendaaðganginum þínum." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Leiðbeiningar um það hvernig þú getur endurheimt lykilorðið þitt hafa verið " +"sendar á tölvupóstfangið sem er tengt notendaaðganginum þínum." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1173,8 +1322,14 @@ msgstr "Bjóða nýjum notendum að vera með" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Það keyrir [StatusNet](http://status.net/) örbloggshugbúnaðinn, útgáfu %s, sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Það keyrir [StatusNet](http://status.net/) örbloggshugbúnaðinn, útgáfu %s, " +"sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/" +"licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1184,8 +1339,13 @@ msgstr "Jabber-kennið tilheyrir öðrum notanda." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Jabber eða GTalk netfang eins og \"notandi@eitthvað.is\". Fyrst skaltu vera viss um að bæta %s við í vinalistann þinn í snarskilaboðaforritinu þínu eða á GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber eða GTalk netfang eins og \"notandi@eitthvað.is\". Fyrst skaltu vera " +"viss um að bæta %s við í vinalistann þinn í snarskilaboðaforritinu þínu eða " +"á GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1252,8 +1412,14 @@ msgstr "Innskráning með [OpenID](%%doc.openid%%) aðgangi." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Skráðu þig inn með notendanafninu þínu og lykilorði. Ertu ekki með notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Skráðu þig inn með notendanafninu þínu og lykilorði. Ertu ekki með " +"notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu [OpenID](%%" +"action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1298,8 +1464,13 @@ msgstr "Örblogg frá %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Farsímafélagið þitt. Ef þú veist um farsímafélag sem tekur á móti SMS í gegnum tölvupóst sem er ekki í þessum lista, sendu okkur tölvupóst í %s og láttu okkur vita." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Farsímafélagið þitt. Ef þú veist um farsímafélag sem tekur á móti SMS í " +"gegnum tölvupóst sem er ekki í þessum lista, sendu okkur tölvupóst í %s og " +"láttu okkur vita." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1921,8 +2092,14 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Símanúmer, með svæðisnúmeri ef við á, án greinarmerkja eða bila" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Vinsamlegast athugaðu þessi atriði til þess að vera viss um að þú viljir gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast áskrifandi að babli, smelltu þá á \"Hætta við\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Vinsamlegast athugaðu þessi atriði til þess að vera viss um að þú viljir " +"gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast " +"áskrifandi að babli, smelltu þá á \"Hætta við\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2105,8 +2282,12 @@ msgid "Remove OpenID" msgstr "Fjarlægja OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Að fjarlægja þetta eina OpenID sem þú ert með gerir innskráningu ómögulega! Ef þú þarft að fjarlægja það, búðu þá til nýtt OpenID fyrst." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Að fjarlægja þetta eina OpenID sem þú ert með gerir innskráningu ómögulega! " +"Ef þú þarft að fjarlægja það, búðu þá til nýtt OpenID fyrst." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2202,13 +2383,21 @@ msgstr "Leita í bablveitu" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Leita í innihaldi babls á %%site.name%%. Leitarorð eru aðskilin með bili og verða að vera að minnsta kosti 3 tákn." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Leita í innihaldi babls á %%site.name%%. Leitarorð eru aðskilin með bili og " +"verða að vera að minnsta kosti 3 tákn." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Leita að fólki á %%site.name%% eftir nafni, staðsetningu eða áhugamáli. Leitarorð eru aðskilin með bili og verða að vera að minnsta kosti 3 tákn." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Leita að fólki á %%site.name%% eftir nafni, staðsetningu eða áhugamáli. " +"Leitarorð eru aðskilin með bili og verða að vera að minnsta kosti 3 tákn." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2243,13 +2432,18 @@ msgstr "Sendur mér babl í gegnum Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Sendu mér babl í gegnum SMS. Ég veit að það er möguleiki að farsímafyrirtækið rukki fyrir móttöku á SMSunum." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Sendu mér babl í gegnum SMS. Ég veit að það er möguleiki að " +"farsímafyrirtækið rukki fyrir móttöku á SMSunum." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Sendu mér svör í gegnum Jabber/GTalk frá fólki sem ég er ekki áskrifandi að." +msgstr "" +"Sendu mér svör í gegnum Jabber/GTalk frá fólki sem ég er ekki áskrifandi að." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2467,7 +2661,8 @@ msgstr "Þetta er of langt. Hámarkslengd babls er 255 tákn." #: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." -msgstr "Þetta tölvupóstfang, \"%s\", hefur verið staðfest fyrir aðganginn þinn." +msgstr "" +"Þetta tölvupóstfang, \"%s\", hefur verið staðfest fyrir aðganginn þinn." #: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 #: ../actions/smssettings.php:274 actions/emailsettings.php:282 @@ -2481,13 +2676,24 @@ msgstr "Tölvupóstfangið hefur verið fjarlægt." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Áskriftin hefur verið heimiluð en afturkallsveffang var ekki sent. Athugaðu leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn þinn er;" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Áskriftin hefur verið heimiluð en afturkallsveffang var ekki sent. Athugaðu " +"leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn " +"þinn er;" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "Áskriftinni hefur verið hafnað en afturkallsveffang var ekki sent. Athugaðu leiðbeiningar síðunnar um það hvernig á að hafna áskrift alveg." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Áskriftinni hefur verið hafnað en afturkallsveffang var ekki sent. Athugaðu " +"leiðbeiningar síðunnar um það hvernig á að hafna áskrift alveg." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2513,22 +2719,36 @@ msgstr "Þetta er fólkið sem þú hlustar á bablið í." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" -msgstr "Þetta fólk er nú þegar notendur og þú varðst sjálfkrafa áskrifandi að þeim:" +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Þetta fólk er nú þegar notendur og þú varðst sjálfkrafa áskrifandi að þeim:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." -msgstr "Þessi staðfestingarlykill er of gamall. Vinsamlegast byrjaðu aftur upp á nýtt." +msgstr "" +"Þessi staðfestingarlykill er of gamall. Vinsamlegast byrjaðu aftur upp á " +"nýtt." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Þetta eyðublað ætti að sendast inn sjálfkrafa. Ef ekki smelltu þá á innsendingartakkann til að fara til OpenID þjónustuaðilans þíns." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Þetta eyðublað ætti að sendast inn sjálfkrafa. Ef ekki smelltu þá á " +"innsendingartakkann til að fara til OpenID þjónustuaðilans þíns." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Þetta er í fyrsta skipti sem þú skráir þig inn á %s þannig að við verðum að tengja OpenID aðganginn þinn við staðbundinn aðgang. Þú getur annaðhvort búið til nýjan aðgang eða tengst við aðgan sem þú hefur nú þegar búið til." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Þetta er í fyrsta skipti sem þú skráir þig inn á %s þannig að við verðum að " +"tengja OpenID aðganginn þinn við staðbundinn aðgang. Þú getur annaðhvort " +"búið til nýjan aðgang eða tengst við aðgan sem þú hefur nú þegar búið til." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2560,7 +2780,8 @@ msgstr "Þessi aðferð krefst POST." #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" -msgstr "Þessi síða er ekki aðgengileg í margmiðlunargerðinni sem þú tekur á móti" +msgstr "" +"Þessi síða er ekki aðgengileg í margmiðlunargerðinni sem þú tekur á móti" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 @@ -2577,8 +2798,15 @@ msgstr "Tímabelti ekki valið." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Til þess að gerast áskrifandi getur þú [skráð þig inn](%%action.login%%) eða [nýskráð þig](%%action.register%%). Ef þú hefur nú þegar búið til aðgang á [samvirkandi örbloggsþjónustu](%%doc.openmublog%%), sláðu þá inn veffang persónulegu síðunnar þinnar hér fyrir neðan." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Til þess að gerast áskrifandi getur þú [skráð þig inn](%%action.login%%) eða " +"[nýskráð þig](%%action.register%%). Ef þú hefur nú þegar búið til aðgang á " +"[samvirkandi örbloggsþjónustu](%%doc.openmublog%%), sláðu þá inn veffang " +"persónulegu síðunnar þinnar hér fyrir neðan." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2592,7 +2820,9 @@ msgstr "Tvo notendakenni eða skjáarnöfn verða að vera uppgefin." #: actions/register.php:444 actions/profilesettings.php:117 #: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" -msgstr "Veffang heimasíðunnar þinnar, bloggsins þíns eða persónulegrar síðu á öðru vefsvæði" +msgstr "" +"Veffang heimasíðunnar þinnar, bloggsins þíns eða persónulegrar síðu á öðru " +"vefsvæði" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 #: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 @@ -2632,8 +2862,12 @@ msgid "Unknown version of OMB protocol." msgstr "Óþekkt útgáfa OMB samskiptamátans." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Nema að annað sé tekið fram þá er innihald þessarar síðu varið með höfundaréttarvernd og aðgengilegt undir " +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Nema að annað sé tekið fram þá er innihald þessarar síðu varið með " +"höfundaréttarvernd og aðgengilegt undir " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2694,8 +2928,16 @@ msgid "Upload" msgstr "Hlaða upp" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Þú getur hlaðið upp nýrri mynd (notendamynd) hér. Þú getur ekki breytt myndinni eftir að þú hefur hlaðið henni upp þannig að vertu viss um að hún sé ferningur. Myndin verður líka að vera gefin út undir leyfi vefsvæðisins. Notaðu mynd sem tilheyrir þér og þú vilt deila með öðrum." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Þú getur hlaðið upp nýrri mynd (notendamynd) hér. Þú getur ekki breytt " +"myndinni eftir að þú hefur hlaðið henni upp þannig að vertu viss um að hún " +"sé ferningur. Myndin verður líka að vera gefin út undir leyfi vefsvæðisins. " +"Notaðu mynd sem tilheyrir þér og þú vilt deila með öðrum." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2703,15 +2945,19 @@ msgstr "Hlaða upp mynd á persónulega síðu" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Notaðu þetta eyðublað til þess að bjóða vinum þínum og kunningjum að nota þessa örbloggsþjónustu." +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Notaðu þetta eyðublað til þess að bjóða vinum þínum og kunningjum að nota " +"þessa örbloggsþjónustu." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "Aðeins notað fyrir uppfærslur, tilkynningar og endurheimtingu lykilorða." +msgstr "" +"Aðeins notað fyrir uppfærslur, tilkynningar og endurheimtingu lykilorða." #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -2797,8 +3043,12 @@ msgid "You already have this OpenID!" msgstr "Þú ert nú þegar með þetta OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Þú ert í þann mund að eyða babli alveg. Þessi aðgerð getur ekki verið afturkölluð." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Þú ert í þann mund að eyða babli alveg. Þessi aðgerð getur ekki verið " +"afturkölluð." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2830,19 +3080,31 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Þú getur fengið SMS í gegnum tölvupóst frá %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Þú getur fjarlægt OpenID aðganginn frá þínum aðgangi með því að smella á hnappinn sem er merktur \"Fjarlægja\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Þú getur fjarlægt OpenID aðganginn frá þínum aðgangi með því að smella á " +"hnappinn sem er merktur \"Fjarlægja\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Þú getur sent og tekið á móti babli í gegnum Jabber/GTalk [snarskilaboðaþjónustuna](%%doc.im%%). Settu upp netfangið þitt hér fyrir neðan og stilltu notkunina." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Þú getur sent og tekið á móti babli í gegnum Jabber/GTalk " +"[snarskilaboðaþjónustuna](%%doc.im%%). Settu upp netfangið þitt hér fyrir " +"neðan og stilltu notkunina." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Þú getur uppfært persónulegu síðuna þína hér þannig að fólk geti lært meira um þig." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Þú getur uppfært persónulegu síðuna þína hér þannig að fólk geti lært meira " +"um þig." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2866,8 +3128,24 @@ msgstr "Þú sendir okkur ekki þessa persónulegu síðu" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "Þú hefur nýtt bablpóstfang á %1$s.\n\nSendu tölvupóst á %2$s til að senda inn babl.\n\nÍtarlegri tölvupóstleiðbeiningar eru á %3$s.\n\nMeð kærri kveðju,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Þú hefur nýtt bablpóstfang á %1$s.\n" +"\n" +"Sendu tölvupóst á %2$s til að senda inn babl.\n" +"\n" +"Ítarlegri tölvupóstleiðbeiningar eru á %3$s.\n" +"\n" +"Með kærri kveðju,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2883,8 +3161,12 @@ msgstr "Þú verður að vera innskráð(ur) til að geta boðið öðrum að no #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Við sendum þér tilkynningu þegar þeir sem þú býður samþykkja boðskortið og skrá sig á síðuna. Takk fyrir að stækka samfélagið!" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Við sendum þér tilkynningu þegar þeir sem þú býður samþykkja boðskortið og " +"skrá sig á síðuna. Takk fyrir að stækka samfélagið!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2902,8 +3184,12 @@ msgstr "Stuttnefnið þitt á þessum vefþjóni eða skráða tölvupóstfangi #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) leyfir þér að skrá þig inn á mörg vefsvæði með sama notendaaðgangi. Stjórnaðu OpenID tengingunum þínum hér." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) leyfir þér að skrá þig inn á mörg vefsvæði með sama " +"notendaaðgangi. Stjórnaðu OpenID tengingunum þínum hér." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3095,12 +3381,17 @@ msgstr "Innhólf %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Þetta er innhólfið þitt sem sýnir persónuleg skilaboð sem voru send til þín." +msgstr "" +"Þetta er innhólfið þitt sem sýnir persónuleg skilaboð sem voru send til þín." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s hefur boðið þér að vera með þeim á %2$s (%3$s).\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s hefur boðið þér að vera með þeim á %2$s (%3$s).\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3142,8 +3433,11 @@ msgstr "Þú getur ekki sent þessum notanda skilaboð." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Ekki senda þér skilaboð. Þú getur sagt þetta í hljóði við sjálfa(n) þig í staðinn." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Ekki senda þér skilaboð. Þú getur sagt þetta í hljóði við sjálfa(n) þig í " +"staðinn." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3171,7 +3465,9 @@ msgstr "Ef þú vilt bæta OpenID við aðganginn þinn, " #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Að fjarlægja eina OpenID aðganginn þinn gerir það ómögulegt fyrir þig að skrá þig inn!" +msgstr "" +"Að fjarlægja eina OpenID aðganginn þinn gerir það ómögulegt fyrir þig að " +"skrá þig inn!" #: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " @@ -3189,12 +3485,16 @@ msgstr "Úthólf %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Þetta er úthólfið þitt sem sýnir persónuleg skilaboð sem þú hefur sent." +msgstr "" +"Þetta er úthólfið þitt sem sýnir persónuleg skilaboð sem þú hefur sent." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Leita að fólki á %%site.name%% eftir nafninu þeirra, staðsetningu eða áhugamáli. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" +"Leita að fólki á %%site.name%% eftir nafninu þeirra, staðsetningu eða " +"áhugamáli. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3245,8 +3545,12 @@ msgstr "Lykilorð verður að vera að minnsta kosti 6 tákn." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Til hamingju, %s! Frábært að þú skráðir þig á %%%%site.name%%%%. Héðan vilt þú kannski..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Til hamingju, %s! Frábært að þú skráðir þig á %%%%site.name%%%%. Héðan vilt " +"þú kannski..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3255,7 +3559,8 @@ msgstr "(Þú ættir að fá tölvupóst bráðlega með " #: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 #, php-format msgid "To subscribe, you can [login](%%action.login%%)," -msgstr "Til þess að gerast áskrifandi getur þú [skráð þig inn](%%action.login%%)," +msgstr "" +"Til þess að gerast áskrifandi getur þú [skráð þig inn](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 #: actions/showfavorites.php:147 @@ -3369,12 +3674,18 @@ msgstr "%s heldur upp á babl frá þér" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "%1$s gerði bablið þitt á %2$s sem eitt af sínu uppáhaldsbabli.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"%1$s gerði bablið þitt á %2$s sem eitt af sínu uppáhaldsbabli.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Bættu Twitter aðganginum þínum við til að senda sjálfkrafa babl til Twitter, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Bættu Twitter aðganginum þínum við til að senda sjálfkrafa babl til Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3421,8 +3732,12 @@ msgstr "Gerast áskrifandi að Twitter vinum mínum hérna" #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "Notendanafn má aðeins hafa númer, há- og lágstafi og undirstrik (_). Hámarkslengd er 15 tákn." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"Notendanafn má aðeins hafa númer, há- og lágstafi og undirstrik (_). " +"Hámarkslengd er 15 tákn." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3637,8 +3952,12 @@ msgstr "Notandi án samsvarandi persónulegrar síðu í kerfinu." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "You have a new posting address on %1$s.\n\n" -msgstr "Þú hefur fengið nýtt sendingarfang á %1$s.\n\n" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" +"Þú hefur fengið nýtt sendingarfang á %1$s.\n" +"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3647,8 +3966,12 @@ msgstr "Ný persónuleg skilaboð frá %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "%1$s (%2$s) sendi þér persónuleg skilaboð:\n\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"%1$s (%2$s) sendi þér persónuleg skilaboð:\n" +"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -3769,7 +4092,8 @@ msgstr "Það kom upp vandamál með setutókann þinn. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 #: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" -msgstr "Veldu ferningslaga svæði á upphaflegu myndinni sem einkennismyndina þína" +msgstr "" +"Veldu ferningslaga svæði á upphaflegu myndinni sem einkennismyndina þína" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 @@ -3926,7 +4250,8 @@ msgstr "Þetta tölvupóstfang er nú þegar í eigu " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "Staðfestingarlykill var sendur til tölvupóstfangsins sem þú sendir inn. " +msgstr "" +"Staðfestingarlykill var sendur til tölvupóstfangsins sem þú sendir inn. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" @@ -4144,7 +4469,8 @@ msgstr "Búa til nýjan hóp" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " msgstr "Leita að hópum á %%site.name%% eftir nafni, staðsetningu eða lýsingu. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4274,8 +4600,11 @@ msgid "Ajax Error" msgstr "Ajax villa" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Þessi notandi leyfir ekki að ýta við sér eða hefur ekki staðfest eða skráð tölvupóstinn sinn." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Þessi notandi leyfir ekki að ýta við sér eða hefur ekki staðfest eða skráð " +"tölvupóstinn sinn." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4317,7 +4646,8 @@ msgstr "Þjónusta sem sér um sjálfkrafa styttingu." #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." -msgstr "Þjónusta sjálfvirkrar vefslóðastyttingar er of löng (í mesta lagi 50 stafir)." +msgstr "" +"Þjónusta sjálfvirkrar vefslóðastyttingar er of löng (í mesta lagi 50 stafir)." #: actions/passwordsettings.php:69 msgid "Change your password." @@ -4349,8 +4679,11 @@ msgstr "Upplýsingar á persónulegri síðu" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða bili" +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða " +"bili" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4381,8 +4714,12 @@ msgstr "Gat ekki sótt efni úr almenningsveitu." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "Þetta er [örbloggssþjónustan](http://en.wikipedia.org/wiki/Micro-blogging) %%site.name%% " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"Þetta er [örbloggssþjónustan](http://en.wikipedia.org/wiki/Micro-blogging) %%" +"site.name%% " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4446,7 +4783,9 @@ msgstr "(Þú ættir að fá tölvupóst " #: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." -msgstr "Þetta er staðbundinn persónuaðgangur! Skráðu þig inn til að gerast áskrifandi." +msgstr "" +"Þetta er staðbundinn persónuaðgangur! Skráðu þig inn til að gerast " +"áskrifandi." #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 @@ -4529,8 +4868,12 @@ msgstr "Allir meðlimir" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** er notendahópur á [örbloggsþjónustunni](http://en.wikipedia.org/wiki/Micro-blogging) %%%%site.name%%%% " +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** er notendahópur á [örbloggsþjónustunni](http://en.wikipedia.org/wiki/" +"Micro-blogging) %%%%site.name%%%% " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4582,8 +4925,12 @@ msgstr "Allir hópar" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** hefur notendaaðgang á [örbloggsþjónustunni](http://en.wikipedia.org/wiki/Micro-blogging) %%%%site.name%%%% " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** hefur notendaaðgang á [örbloggsþjónustunni](http://en.wikipedia.org/" +"wiki/Micro-blogging) %%%%site.name%%%% " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4595,7 +4942,8 @@ msgstr "Senda mér babl í gegnum SMS; " #: actions/smssettings.php:335 msgid "A confirmation code was sent to the phone number you added. " -msgstr "Staðfestingarlykill hefur verið sendur í símanúmerið sem þú slóst inn. " +msgstr "" +"Staðfestingarlykill hefur verið sendur í símanúmerið sem þú slóst inn. " #: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" @@ -4688,16 +5036,23 @@ msgid "Tag user" msgstr "Merkja notanda" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Merki fyrir þennan notanda (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða bili" +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Merki fyrir þennan notanda (bókstafir, tölustafir, -, ., og _), aðskilin með " +"kommu eða bili" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Þú getur aðeins merkt fólk sem þú ert áskrifandi að eða þau sem eru áskrifendur að þér." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Þú getur aðeins merkt fólk sem þú ert áskrifandi að eða þau sem eru " +"áskrifendur að þér." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4705,7 +5060,9 @@ msgstr "Gat ekki vistað merki." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Notaðu þetta eyðublað til að bæta við merkjum við áskrifendur þína eða þau sem þú ert áskrifandi að." +msgstr "" +"Notaðu þetta eyðublað til að bæta við merkjum við áskrifendur þína eða þau " +"sem þú ert áskrifandi að." #: actions/tagrss.php:35 msgid "No such tag." @@ -4791,8 +5148,11 @@ msgstr "Gat ekki vistað babl. Óþekktur notandi." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Of mikið babl í einu; slakaðu aðeins á og haltu svo áfram eftir nokkrar mínútur." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Of mikið babl í einu; slakaðu aðeins á og haltu svo áfram eftir nokkrar " +"mínútur." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -4840,7 +5200,9 @@ msgstr "Aðgangur" #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" -msgstr "Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, persónulegu síðunni þinni" +msgstr "" +"Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, " +"persónulegu síðunni þinni" #: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" @@ -4971,7 +5333,8 @@ msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Staðsetning hópsins, ef einhver, eins og \"Borg, landshluti, land\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5035,8 +5398,12 @@ msgstr "Skráðu þig inn eða nýskráðu þig með OpenID" #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Hey, %s.\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Hey, %s.\n" +"\n" #: lib/mail.php:236 #, php-format @@ -5055,8 +5422,12 @@ msgstr "Vefsíða: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "Lýsing: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Lýsing: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5223,3 +5594,1950 @@ msgstr "Opna" msgid "Unsubscribe from this user" msgstr "Hætta sem áskrifandi að þessum notanda" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +msgid "You and friends" +msgstr "" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +msgid "Avatar deleted." +msgstr "" + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, php-format +msgid "Microblog by %s group" +msgstr "" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%s\" on %s" +msgstr "" + +#: actions/openidlogin.php:66 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +msgid "Public Stream Feed (Atom)" +msgstr "" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +msgid "Created" +msgstr "" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +msgid "Your profile" +msgstr "" + +#: actions/showstream.php:149 +#, php-format +msgid "%s's profile" +msgstr "" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +msgid "Edit Avatar" +msgstr "" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +msgid "Edit profile settings" +msgstr "" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +msgid "No such user!" +msgstr "" + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "" + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 +#, php-format +msgid "%s blocked profiles" +msgstr "" + +#: actions/blockedfromgroup.php:93 +#, php-format +msgid "%s blocked profiles, page %d" +msgstr "" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +msgid "Unblock user from group" +msgstr "" + +#: actions/conversation.php:99 +msgid "Conversation" +msgstr "" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +msgid "Do not delete this notice" +msgstr "" + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "" + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +msgid "Could not create aliases." +msgstr "" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +msgid "No notice id" +msgstr "" + +#: actions/file.php:38 +msgid "No notice" +msgstr "" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +msgid "Not a valid invitation code." +msgstr "" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "" + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +msgid "Couldn't update your design." +msgstr "" + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +msgid "Design preferences saved." +msgstr "" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +msgid "Couldn't save file." +msgstr "" + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recover" +msgstr "" + +#: actions/register.php:86 +msgid "Sorry, invalid invitation code." +msgstr "" + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%s's favorite notices, page %d" +msgstr "" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +msgid "Not a local notice" +msgstr "" + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" + +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +msgid "Could not determine source user." +msgstr "" + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +msgid "Could not find target user." +msgstr "" + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +msgid "Reject this subscription" +msgstr "" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +msgid "Design your profile" +msgstr "" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +msgid "Change colours" +msgstr "" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +msgid "Content" +msgstr "" + +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + +#: lib/designsettings.php:230 +msgid "Links" +msgstr "" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +msgid "Blocked" +msgstr "" + +#: lib/groupnav.php:101 +#, php-format +msgid "%s blocked users" +msgstr "" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +msgid "in context" +msgstr "" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, php-format +msgid "%s is not a valid color!" +msgstr "" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Ekkert þannig merki." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Bein skilaboð til %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Þetta er of langt. Hámarkslengd skilaboða er 140 tákn." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Get ekki fylgst með notanda: Notandinn finnst ekki." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Þú ert nú þegar meðlimur í þessum hópi" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Gat ekki bætt notandanum %s í hópinn %s" + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Þú ert ekki meðlimur í þessum hópi." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Hópar %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Hópar sem %s er meðlimur í" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Hópsaðgerðir" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Skráarsnið myndar ekki stutt." + +#: actions/bookmarklet.php:50 +#, fuzzy +msgid "Post to " +msgstr "Ljósmynd" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Færslur frá %1$s á %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "Notandi sem verið er að hlusta á er ekki til." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Engin heimild." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "Gat ekki breytt beiðnistókum í aðgangstóka." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Óþekkt útgáfa OMB samskiptamátans." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Ekkert svoleiðis babl." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Týndum skránni okkar" + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Færslur frá %1$s á %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Þessi síða er ekki aðgengileg í " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Skráðu þig inn með notendanafninu þínu og lykilorði. Ertu ekki með " +"notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu [OpenID](%%" +"action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Allar færslur sem passa við \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Lýstu þér og áhugamálum þínum í 140 táknum" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Lýstu þér og þínum " + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Lýsingin er of löng (í mesta lagi 140 tákn)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Ekki tækt veffang á persónulega síðu (ekkert YADIS skjal)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "" +"Þetta er staðbundinn persónuaðgangur! Skráðu þig inn til að gerast " +"áskrifandi." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Gat ekki komist yfir beiðnistóka." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Bablveita fyrir hópinn %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Skilaboð til %1$s á %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Bablveita uppáhaldsbabls %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Bablveita uppáhaldsbabls %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Bablveita uppáhaldsbabls %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "%s hópurinn" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Babl sent inn" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Þessi síða er ekki aðgengileg í " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Bablveita fyrir %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Vinsamlegast athugaðu þessi atriði til þess að vera viss um að þú viljir " +"gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast " +"áskrifandi að babli, smelltu þá á \"Hætta við\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Áskriftin hefur verið heimiluð en afturkallsveffang var ekki sent. Athugaðu " +"leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn " +"þinn er;" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Áskriftinni hefur verið hafnað en afturkallsveffang var ekki sent. Athugaðu " +"leiðbeiningar síðunnar um það hvernig á að hafna áskrift alveg." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Get ekki lesið slóðina fyrir myndina '%s'" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Röng gerð myndar fyrir '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Gat ekki framsent til vefþjóns: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Hugbúnaðarleyfi StatusNet" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Ýtt við notanda" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Svara þessu babli" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Vandamál komu upp við að vista babl." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Enginn staðfestingarlykill." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Skrá þig inn á síðuna" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Veldu farsímafyrirtæki" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Bablveita fyrir %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s heldur upp á babl frá þér" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "frá" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Gat ekki eytt uppáhaldi." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Eyða babli" diff --git a/locale/it/LC_MESSAGES/statusnet.mo b/locale/it/LC_MESSAGES/statusnet.mo index 384ed9ad993dc6075a74590348b4efefba9e1003..0591c46a42ab6b2f757b1af06b51e9f8382368cc 100644 GIT binary patch delta 23693 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%0A&-eeJ2gbLMBQ`ZaiMjM4{APqIupQ1Yc3f19J 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 Q^?ur+>NIh8maD=41Bl)dZ2$lO diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 1c1b483058..da50319b76 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -1,21 +1,16 @@ # Translation of StatusNet to Italian # # -- -# Italian translation of statusnet -# Copyright (C) 2008 THE statusnet'S COPYRIGHT HOLDER -# This file is distributed under the same license as the statusnet package. -# Milo Casagrande , 2008 -# -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:34+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:43:52+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: out-statusnet\n" @@ -29,8 +24,11 @@ msgstr " Ricerca \"%s\" nel flusso" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr " a eccezione di questi dati personali: password, indirizzo email, indirizzo messaggistica istantanea, numero di telefono." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +" a eccezione di questi dati personali: password, indirizzo email, indirizzo " +"messaggistica istantanea, numero di telefono." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -52,8 +50,60 @@ msgstr "Hai ricevuto un invito per seguire %1$s su %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "Hai ricevuto un invito per seguire %1$s su %2$s (%3$s).\n\n%2$s è un servizio di micro-blog che ti consente di rimanere sempre al passo con le persone che conosci e che ti interessano.\n\nPuoi condividere notizie che ti riguardano, i tuoi pensieri o la tua vita in rete con le persone che conosci ed è anche un ottimo strumento per conoscerne di nuove che condividono i tuoi stessi interessi.\n\n%1$s ha scritto:\n\n%4$s\n\nPuoi vedere il profilo di %1$s su %2$s al seguente indirizzo:\n\n%5$s\n\nSe vuoi provare il servizio, fai clic sul collegamento qui sotto per accettare l'invito:\n\n%6$s\n\nSe non è ciò che vuoi, ignora semplicemente questo messaggio. Grazie per aver letto questo invito e per il tuo tempo!\n\nCordiali saluti, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"Hai ricevuto un invito per seguire %1$s su %2$s (%3$s).\n" +"\n" +"%2$s è un servizio di micro-blog che ti consente di rimanere sempre al passo " +"con le persone che conosci e che ti interessano.\n" +"\n" +"Puoi condividere notizie che ti riguardano, i tuoi pensieri o la tua vita in " +"rete con le persone che conosci ed è anche un ottimo strumento per " +"conoscerne di nuove che condividono i tuoi stessi interessi.\n" +"\n" +"%1$s ha scritto:\n" +"\n" +"%4$s\n" +"\n" +"Puoi vedere il profilo di %1$s su %2$s al seguente indirizzo:\n" +"\n" +"%5$s\n" +"\n" +"Se vuoi provare il servizio, fai clic sul collegamento qui sotto per " +"accettare l'invito:\n" +"\n" +"%6$s\n" +"\n" +"Se non è ciò che vuoi, ignora semplicemente questo messaggio. Grazie per " +"aver letto questo invito e per il tuo tempo!\n" +"\n" +"Cordiali saluti, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -63,8 +113,20 @@ msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s.\n\n %3$s\n\nCordiali saluti,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s sta ora seguendo i tuoi messaggi su %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordiali saluti,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -140,14 +202,22 @@ msgstr "Aggiornamenti di %s da tutti!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Dovresti ricevere, entro breve, un messaggio email con istruzioni su come confermare il tuo indirizzo email.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Dovresti ricevere, entro breve, un messaggio email con istruzioni su come " +"confermare il tuo indirizzo email.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** è un servizio di micro-blog offerto da [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** è un servizio di micro-blog offerto da [%%site.broughtby%%]" +"(%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -157,7 +227,8 @@ msgstr "**%%site.name%%** è un servizio di micro-blog. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr ". I collaboratori devono essere indicati col loro nome completo o soprannome." +msgstr "" +". I collaboratori devono essere indicati col loro nome completo o soprannome." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -165,12 +236,14 @@ msgstr ". I collaboratori devono essere indicati col loro nome completo o sopran #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" +msgstr "" +"1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 lettere minuscole o numeri, niente punteggiatura o spazi. Richiesto." +msgstr "" +"1-64 lettere minuscole o numeri, niente punteggiatura o spazi. Richiesto." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -191,17 +264,31 @@ msgstr "6 o più caratteri. Richiesta." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Un codice di conferma è stato inviato all'indirizzo di messaggistica istantanea che hai aggiunto. Devi approvare %s affinché ti invii messaggi." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Un codice di conferma è stato inviato all'indirizzo di messaggistica " +"istantanea che hai aggiunto. Devi approvare %s affinché ti invii messaggi." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) per il codice e le istruzioni su come usarlo." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. " +"Controlla la tua casella di posta (e anche la posta indesiderata!) per il " +"codice e le istruzioni su come usarlo." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Un codice di conferma è stato inviato al numero di telefono che hai aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) per il codice e le istruzioni su come usarlo." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Un codice di conferma è stato inviato al numero di telefono che hai " +"aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) " +"per il codice e le istruzioni su come usarlo." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -381,8 +468,11 @@ msgstr "Accedi automaticamente in futuro; non per computer condivisi!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-umani)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-" +"umani)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -401,13 +491,22 @@ msgstr "Immagine aggiornata." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "In attesa di conferma per questo indirizzo. Controlla il tuo account Jabber/GTalk per un messaggio con ulteriori istruzioni (hai aggiunto %s al tuo elenco contatti?)." +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"In attesa di conferma per questo indirizzo. Controlla il tuo account Jabber/" +"GTalk per un messaggio con ulteriori istruzioni (hai aggiunto %s al tuo " +"elenco contatti?)." #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Attesa la conferma per questo indirizzo. Controlla la tua casella di posta (e anche la posta indesiderata!) per un messaggio con ulteriori istruzioni." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Attesa la conferma per questo indirizzo. Controlla la tua casella di posta " +"(e anche la posta indesiderata!) per un messaggio con ulteriori istruzioni." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -544,8 +643,36 @@ msgstr "Codice di conferma non trovato." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Congratulazioni %s! Benvenuto/a in %%%%site.name%%%%. Da qui ora puoi...\n\n* Visitare il [tuo profilo](%s) e inviare il tuo primo messaggio.\n*Aggiungere un [indirizzo Jabber/GTalk](%%%%action.imsettings%%%%) per usare quel servizio per inviare messaggi.\n*[Ricercare persone](%%%%action.peoplesearch%%%%) che potresti conoscere o che condividono i tuoi stessi interessi.\n* Aggiornare le [tue impostazioni](%%%%action.profilesettings%%%%) per fornire agli altri più informazioni su di te.\n* Leggere la [documentazione in rete](%%%%doc.help%%%%) per le caratteristiche che magari non hai ancora visto. \n\nGrazie per esserti iscritto/a e speriamo tu possa divertiti usando questo servizio." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Congratulazioni %s! Benvenuto/a in %%%%site.name%%%%. Da qui ora puoi...\n" +"\n" +"* Visitare il [tuo profilo](%s) e inviare il tuo primo messaggio.\n" +"*Aggiungere un [indirizzo Jabber/GTalk](%%%%action.imsettings%%%%) per usare " +"quel servizio per inviare messaggi.\n" +"*[Ricercare persone](%%%%action.peoplesearch%%%%) che potresti conoscere o " +"che condividono i tuoi stessi interessi.\n" +"* Aggiornare le [tue impostazioni](%%%%action.profilesettings%%%%) per " +"fornire agli altri più informazioni su di te.\n" +"* Leggere la [documentazione in rete](%%%%doc.help%%%%) per le " +"caratteristiche che magari non hai ancora visto. \n" +"\n" +"Grazie per esserti iscritto/a e speriamo tu possa divertiti usando questo " +"servizio." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -617,7 +744,8 @@ msgstr "Impossibile aggiornare l'utente con l'indirizzo email confermato." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "Impossibile convertire le credenziali di richiesta in credenziali di accesso." +msgstr "" +"Impossibile convertire le credenziali di richiesta in credenziali di accesso." #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -952,8 +1080,12 @@ msgid "Find people on this site" msgstr "Ricerca persone in questo sito" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Per motivi di sicurezza è necessario reinserire il proprio nome utente e la propria password prima di modificare le impostazioni." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Per motivi di sicurezza è necessario reinserire il proprio nome utente e la " +"propria password prima di modificare le impostazioni." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1038,16 +1170,28 @@ msgstr "Impostazioni messaggistica istantanea" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Se hai già un account, esegui l'accesso col tuo nome utente e la tua password per connetterlo al tuo OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Se hai già un account, esegui l'accesso col tuo nome utente e la tua " +"password per connetterlo al tuo OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Se vuoi aggiungere un OpenID al tuo account, inseriscilo nel riquadro sottostante e fai clic su \"Aggiungi\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Se vuoi aggiungere un OpenID al tuo account, inseriscilo nel riquadro " +"sottostante e fai clic su \"Aggiungi\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova per email all'indirizzo indicato nel tuo profilo." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova " +"per email all'indirizzo indicato nel tuo profilo." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1077,8 +1221,12 @@ msgstr "Nome utente o password non corretto." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Le istruzioni per recuperare la tua password sono state inviate all'indirizzo email registrato nel tuo account." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Le istruzioni per recuperare la tua password sono state inviate " +"all'indirizzo email registrato nel tuo account." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1174,8 +1322,14 @@ msgstr "Invita nuovi utenti" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Gestito dal software di micro-blog [StatusNet](http://status.net/), versione %s, disponibile sotto licenza [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Gestito dal software di micro-blog [StatusNet](http://status.net/), versione " +"%s, disponibile sotto licenza [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1185,8 +1339,13 @@ msgstr "ID Jabber già assegnato a un altro utente." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Indirizzo Jabber o GTalk nella forma \"NomeUtente@example.org\". Per prima cosa, assicurati di aggiungere %s all'elenco dei contatti nel tuo programma di messaggistica o su GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Indirizzo Jabber o GTalk nella forma \"NomeUtente@example.org\". Per prima " +"cosa, assicurati di aggiungere %s all'elenco dei contatti nel tuo programma " +"di messaggistica o su GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1253,8 +1412,14 @@ msgstr "Accedi con un account [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Accedi con nome utente e password. Non hai ancora un nome utente? [Registra](%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Accedi con nome utente e password. Non hai ancora un nome utente? [Registra]" +"(%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%" +"%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1277,7 +1442,9 @@ msgstr "Password persa o dimenticata?" #: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "Crea un nuovo indirizzo email a cui inviare i messaggi, rimuove quello vecchio." +msgstr "" +"Crea un nuovo indirizzo email a cui inviare i messaggi, rimuove quello " +"vecchio." #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 @@ -1299,8 +1466,12 @@ msgstr "Micro-blog di %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Operatore di telefonia mobile. Se conosci un operatore che accetta gli SMS via email, ma non è elencato qui, scrivici a %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Operatore di telefonia mobile. Se conosci un operatore che accetta gli SMS " +"via email, ma non è elencato qui, scrivici a %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1396,7 +1567,9 @@ msgstr "Soprannome già in uso. Prova con un altro." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Il soprannome deve essere composto solo da lettere minuscole e numeri, senza spazi." +msgstr "" +"Il soprannome deve essere composto solo da lettere minuscole e numeri, senza " +"spazi." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1922,8 +2095,13 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Numero di telefono, senza punteggiatura o spazi, con il prefisso" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " +"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2106,8 +2284,12 @@ msgid "Remove OpenID" msgstr "Rimuovi OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Rimuovere il tuo unico OpenID renderà impossibile effettuare l'accesso! Se vuoi rimuoverlo, prima aggiungi un altro OpenID." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Rimuovere il tuo unico OpenID renderà impossibile effettuare l'accesso! Se " +"vuoi rimuoverlo, prima aggiungi un altro OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2203,13 +2385,21 @@ msgstr "Ricerca nel flusso dei feed" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Ricerca tra i messaggi su %%site.name%% in base al contenuto. Separa i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Ricerca tra i messaggi su %%site.name%% in base al contenuto. Separa i " +"termini di ricerca con degli spazi; lunghezza minima 3 caratteri." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa " +"i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2244,8 +2434,12 @@ msgstr "Inviami le notifiche via Jabber/GTalk" #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Inviami avvisi via SMS: comprendo che potrei incorrere in esorbitanti bollette da parte del mio operatore" +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Inviami avvisi via SMS: comprendo che potrei incorrere in esorbitanti " +"bollette da parte del mio operatore" #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 @@ -2482,13 +2676,25 @@ msgstr "L'indirizzo è stato rimosso." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di richiamo. Controlla le istruzioni del sito per i dettagli su come autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " +"richiamo. Controlla le istruzioni del sito per i dettagli su come " +"autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di richiamo. Controlla con le istruzioni del sito per i dettagli su come rifiutare completamente l'abbonamento." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " +"richiamo. Controlla con le istruzioni del sito per i dettagli su come " +"rifiutare completamente l'abbonamento." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2514,22 +2720,34 @@ msgstr "Queste sono le persone che stai seguendo." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" -msgstr "Queste persone sono già utenti e sei stato automaticamente abbonato a loro:" +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Queste persone sono già utenti e sei stato automaticamente abbonato a loro:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Questo codice di conferma è scaduto. Ricomincia da capo." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Questo modulo dovrebbe inviarsi automaticamente. In caso contrario, fai clic sul pulsante per inviarlo al tuo servizio OpenID." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Questo modulo dovrebbe inviarsi automaticamente. In caso contrario, fai clic " +"sul pulsante per inviarlo al tuo servizio OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Questa è la prima volta che accedi a %s ed è quindi necessario collegare il tuo OpenID a un account locale. Puoi crearne uno nuovo o collegarlo con il tuo account esistente, se ne hai uno." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Questa è la prima volta che accedi a %s ed è quindi necessario collegare il " +"tuo OpenID a un account locale. Puoi crearne uno nuovo o collegarlo con il " +"tuo account esistente, se ne hai uno." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2578,8 +2796,15 @@ msgstr "Fuso orario non selezionato" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Per abbonarti puoi [eseguire l'accesso](%%action.login%%) oppure [registrare](%%action.register%%) un nuovo account. Se ne possiedi già uno su un [sito di micro-blog compatibile](%%doc.openmublog%%), inserisci l'indirizzo del tuo profilo qui di seguito." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Per abbonarti puoi [eseguire l'accesso](%%action.login%%) oppure [registrare]" +"(%%action.register%%) un nuovo account. Se ne possiedi già uno su un [sito " +"di micro-blog compatibile](%%doc.openmublog%%), inserisci l'indirizzo del " +"tuo profilo qui di seguito." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2633,8 +2858,12 @@ msgid "Unknown version of OMB protocol." msgstr "Versione del protocollo OMB sconosciuta." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Se non indicato diversamente, i diritti d'autore dei contenuti di questo sito sono dei singoli utenti e sono disponibili sotto " +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Se non indicato diversamente, i diritti d'autore dei contenuti di questo " +"sito sono dei singoli utenti e sono disponibili sotto " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2695,8 +2924,16 @@ msgid "Upload" msgstr "Carica" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Carica qui una nuova immagine utente. Non puoi modificarla una volta caricata, quindi sii sicuro che sia più o meno quadrata. Deve anche essere rilasciata sotto la licenza del sito. Usa un'immagine che ti appartiene e che tu voglia condividere." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Carica qui una nuova immagine utente. Non puoi modificarla una volta " +"caricata, quindi sii sicuro che sia più o meno quadrata. Deve anche essere " +"rilasciata sotto la licenza del sito. Usa un'immagine che ti appartiene e " +"che tu voglia condividere." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2704,8 +2941,11 @@ msgstr "Carica una nuova immagine per il profilo" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Usa questo modulo per invitare i tuoi amici e colleghi a usare questo servizio." +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Usa questo modulo per invitare i tuoi amici e colleghi a usare questo " +"servizio." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2798,8 +3038,12 @@ msgid "You already have this OpenID!" msgstr "Hai già questo OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà possibile recuperarlo." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà " +"possibile recuperarlo." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2831,19 +3075,29 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Puoi ricevere messaggi SMS attraverso l'email da %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." msgstr "Puoi rimuovere un OpenID dal tuo account facendo clic su \"Rimuovi\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Puoi inviare e ricevere messaggi attraverso i servizi di [messaggistica istantanea](%%doc.im%%) Jabber/GTalk. Configura il tuo indirizzo e le impostazioni qui di seguito." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Puoi inviare e ricevere messaggi attraverso i servizi di [messaggistica " +"istantanea](%%doc.im%%) Jabber/GTalk. Configura il tuo indirizzo e le " +"impostazioni qui di seguito." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Qui puoi aggiornare le informazioni del tuo profilo personale, così gli altri potranno conoscere qualcosa in più di te." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Qui puoi aggiornare le informazioni del tuo profilo personale, così gli " +"altri potranno conoscere qualcosa in più di te." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2867,8 +3121,24 @@ msgstr "Non hai inviato quel profilo" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "Hai un nuovo indirizzo di invio su %1$s.\n\nScrivi le email a %2$s per inviare nuovi messaggi.\n\nPuoi trovare maggiori informazioni presso %3$s.\n\nCordiali saluti,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Hai un nuovo indirizzo di invio su %1$s.\n" +"\n" +"Scrivi le email a %2$s per inviare nuovi messaggi.\n" +"\n" +"Puoi trovare maggiori informazioni presso %3$s.\n" +"\n" +"Cordiali saluti,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2884,8 +3154,12 @@ msgstr "Devi eseguire l'accesso per invitare altri utenti a usare %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Riceverai una notifica quando i tuoi invitati accetteranno e si registreranno sul sito. Grazie per l'aiuto ad accrescere la comunità!" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Riceverai una notifica quando i tuoi invitati accetteranno e si " +"registreranno sul sito. Grazie per l'aiuto ad accrescere la comunità!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2899,12 +3173,17 @@ msgstr "Il tuo URL OpenID" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "Il tuo soprannome su questo server o il tuo indirizzo email registrato." +msgstr "" +"Il tuo soprannome su questo server o il tuo indirizzo email registrato." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso account. Gestisci i tuoi OpenID associati da qui." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso " +"account. Gestisci i tuoi OpenID associati da qui." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3045,7 +3324,8 @@ msgstr "Preferito" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "Inviami un'email quando qualcuno aggiunge un mio messaggio ai preferiti" +msgstr "" +"Inviami un'email quando qualcuno aggiunge un mio messaggio ai preferiti" #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 @@ -3096,12 +3376,18 @@ msgstr "Casella posta in arrivo di %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Questa è la casella della tua posta in arrivo, contiene i messaggi privati ricevuti." +msgstr "" +"Questa è la casella della tua posta in arrivo, contiene i messaggi privati " +"ricevuti." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "Hai ricevuto un invito per seguire %1$s su %2$s (%3$s).\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"Hai ricevuto un invito per seguire %1$s su %2$s (%3$s).\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3143,7 +3429,8 @@ msgstr "Non puoi inviare un messaggio a questo utente." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Non inviarti un messaggio, piuttosto ripetilo a voce dolcemente." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3190,11 +3477,14 @@ msgstr "Casella posta inviata di %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Questa è la casella della tua posta inviata, contiene i messaggi privati che hai inviato." +msgstr "" +"Questa è la casella della tua posta inviata, contiene i messaggi privati che " +"hai inviato." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " msgstr "Ricerca persone su %%site.name%% per nome, ubicazione o interessi. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3246,8 +3536,11 @@ msgstr "La password deve essere di 6 o più caratteri." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Congratulazioni, %s! Benvenuto/a su %%%%site.name%%%%. Ora potresti voler..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Congratulazioni, %s! Benvenuto/a su %%%%site.name%%%%. Ora potresti voler..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3370,12 +3663,19 @@ msgstr "%s ha aggiunto il tuo messaggio tra i suoi preferiti" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "%1$s ha appena aggiunto il tuo messaggio da %2$s tra i suoi preferiti.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"%1$s ha appena aggiunto il tuo messaggio da %2$s tra i suoi preferiti.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi su Twitter, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi " +"su Twitter, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3422,8 +3722,12 @@ msgstr "Abbonami ai miei amici di Twitter" #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "Il nome utente deve contenere solo numeri, lettere maiuscole e minuscole e trattini bassi (_) (max 15 caratteri)." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"Il nome utente deve contenere solo numeri, lettere maiuscole e minuscole e " +"trattini bassi (_) (max 15 caratteri)." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3638,8 +3942,12 @@ msgstr "Utente senza profilo corrispondente nel sistema." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "You have a new posting address on %1$s.\n\n" -msgstr "Hai un nuovo indirizzo di ricezione su %1$s.\n\n" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" +"Hai un nuovo indirizzo di ricezione su %1$s.\n" +"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3648,8 +3956,12 @@ msgstr "Nuovo messaggio privato da %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "%1$s (%2$s) ti ha inviato un messaggio privato:\n\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"%1$s (%2$s) ti ha inviato un messaggio privato:\n" +"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -3928,14 +4240,15 @@ msgstr "Quell'indirizzo email appartiene già " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. " +msgstr "" +"Un codice di conferma è stato inviato all'indirizzo email che hai aggiunto. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Errore del server: impossibile recuperare l'utente." #: actions/facebookhome.php:196 -#, php-format, fuzzy +#, fuzzy, php-format msgid "If you would like the %s app to automatically update " msgstr "Se vuoi che l'applicazione %s aggiorni automaticamente " @@ -4014,7 +4327,8 @@ msgstr "Impossibile rimuovere l'utente Facebook." #: actions/facebooksettings.php:65 msgid "There was a problem saving your sync preferences!" -msgstr "Si è verificato un problema nel salvare le preferenze di sincronizzazione." +msgstr "" +"Si è verificato un problema nel salvare le preferenze di sincronizzazione." #: actions/facebooksettings.php:67 msgid "Sync preferences saved." @@ -4037,7 +4351,7 @@ msgid "A string to prefix notices with." msgstr "Una stringa con cui iniziare i messaggi." #: actions/facebooksettings.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "If you would like %s to automatically update " msgstr "Se vuoi che %s aggiorni automaticamente " @@ -4135,7 +4449,7 @@ msgid "Groups, page %d" msgstr "Gruppi, pagina %d" #: actions/groups.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "I gruppi di %%%%site.name%%%% ti consentono di cercare e parlare con " @@ -4146,7 +4460,8 @@ msgstr "Crea un nuovo gruppo" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " msgstr "Ricerca gruppi su %%site.name%% per nome, ubicazione o descrizione. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4159,7 +4474,7 @@ msgid "You can send and receive notices through " msgstr "Puoi inviare e ricevere messaggi attraverso " #: actions/imsettings.php:120 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Jabber or GTalk address, " msgstr "Indirizzo Jabber o GTalk, " @@ -4192,7 +4507,9 @@ msgstr "%s si è iscritto al gruppo %s" #: actions/leavegroup.php:60 msgid "Inboxes must be enabled for groups to work." -msgstr "Le caselle di posta in arrivo devono essere abilitate per i gruppi per poter funzionare." +msgstr "" +"Le caselle di posta in arrivo devono essere abilitate per i gruppi per poter " +"funzionare." #: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." @@ -4277,8 +4594,11 @@ msgid "Ajax Error" msgstr "Errore di Ajax" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Questo utente non consente i richiami oppure non ha confermato o impostato ancora il suo indirizzo email." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Questo utente non consente i richiami oppure non ha confermato o impostato " +"ancora il suo indirizzo email." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4353,8 +4673,10 @@ msgstr "Informazioni sul profilo" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" #: actions/profilesettings.php:144 #, fuzzy @@ -4386,15 +4708,19 @@ msgstr "Impossibile recuperare l'attività pubblica." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/" +"wiki/Microblogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" msgstr "Insieme delle etichette" #: actions/publictagcloud.php:63 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are most popular recent tags on %s " msgstr "Queste sono le etichette più usate e recenti su %s " @@ -4449,7 +4775,7 @@ msgid " except this private data: password, " msgstr " a eccezione di questi dati personali: password, " #: actions/register.php:471 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " msgstr "Congratulazioni %s! Benvenuto/a su %%%%site.name%%%%. " @@ -4543,8 +4869,12 @@ msgstr "Tutti i membri" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" +"it.wikipedia.org/wiki/Microblogging) " #: actions/showmessage.php:98 #, fuzzy @@ -4598,8 +4928,12 @@ msgstr "Tutti i gruppi" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" +"(http://it.wikipedia.org/wiki/Microblogging) " #: actions/smssettings.php:128 #, fuzzy @@ -4651,7 +4985,7 @@ msgid "These are the people who listen to " msgstr "Queste sono le persone che seguono " #: actions/subscribers.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people who " msgstr "Queste sono le persone che " @@ -4671,7 +5005,7 @@ msgid "These are the people whose notices " msgstr "Queste sono le persone i cui messaggi " #: actions/subscriptions.php:69 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people whose " msgstr "Queste sono le persone i cui " @@ -4708,16 +5042,22 @@ msgid "Tag user" msgstr "Etichette utente" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Etichette per questo utente (lettere, numeri, -, . e _), separate da virgole o spazi" +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Etichette per questo utente (lettere, numeri, -, . e _), separate da virgole " +"o spazi" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "C'è stato un problema con il tuo token di sessione." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Puoi etichettare sole le persone a cui sei abbonato o che sono abbonate a te." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Puoi etichettare sole le persone a cui sei abbonato o che sono abbonate a te." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4725,7 +5065,9 @@ msgstr "Impossibile salvare le etichette." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Usa questo modulo per aggiungere etichette ai tuoi abbonati o ai tuoi abbonamenti." +msgstr "" +"Usa questo modulo per aggiungere etichette ai tuoi abbonati o ai tuoi " +"abbonamenti." #: actions/tagrss.php:35 msgid "No such tag." @@ -4775,7 +5117,7 @@ msgid "Username must have only numbers, " msgstr "Il nome utente deve avere solo numeri, " #: actions/twittersettings.php:341 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information " msgstr "Impossibile recuperare informazioni sull'account " @@ -4813,8 +5155,11 @@ msgstr "Problema nel salvare il messaggio. Utente sconosciuto." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra qualche minuto." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " +"qualche minuto." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -4934,7 +5279,8 @@ msgstr "Togli questo messaggio dai preferiti" #: lib/facebookaction.php:268 #, php-format msgid "To use the %s Facebook Application you need to login " -msgstr "Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " +msgstr "" +"Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 @@ -4994,7 +5340,8 @@ msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Dove è situato il gruppo, tipo \"città, regione, stato\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5059,11 +5406,15 @@ msgstr "Accedi o registrati con OpenID" #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Ehi, %s\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Ehi, %s\n" +"\n" #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "%1$s sta ora seguendo " @@ -5079,8 +5430,12 @@ msgstr "Pagina web: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "Biografia: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Biografia: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5088,7 +5443,7 @@ msgid "You've been nudged by %s" msgstr "%s ti ha richiamato" #: lib/mail.php:465 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s (%2$s) is wondering what you are up to " msgstr "%1$s (%2$s) si chiede cosa tu " @@ -5248,17 +5603,17 @@ msgid "Unsubscribe from this user" msgstr "Annulla l'abbonamento da questo utente" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed per gli amici di %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed per gli amici di %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed per gli amici di %s" @@ -5268,7 +5623,7 @@ msgid "You and friends" msgstr "%s e amici" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Qui puoi caricare la tua immagine personale." @@ -5277,10 +5632,21 @@ msgstr "Qui puoi caricare la tua immagine personale." msgid "Avatar deleted." msgstr "Immagine aggiornata." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà possibile recuperarlo." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Stai per eliminare definitivamente un messaggio. Una volta fatto non sarà " +"possibile recuperarlo." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5292,9 +5658,29 @@ msgstr "C'è stato un problema con il tuo token di sessione. Prova di nuovo." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato" +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format, fuzzy -msgid "You can upload a logo image for your group. The maximum file size is %s." +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5303,14 +5689,28 @@ msgid "Pick a square area of the image to be the logo." msgstr "Scegli un'area quadrata per la tua immagine personale" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Micro-blog di %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Ricerca le persone su %%site.name%% per nome, ubicazione o interessi. Separa " +"i termini di ricerca con degli spazi; lunghezza minima 3 caratteri." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" #: actions/newmessage.php:102 #, fuzzy @@ -5318,14 +5718,18 @@ msgid "Only logged-in users can send direct messages." msgstr "Errore nell'inviare il messaggio diretto." #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr " Ricerca \"%s\" nel flusso" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Per motivi di sicurezza è necessario reinserire il proprio nome utente e la propria password prima di modificare le impostazioni." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Per motivi di sicurezza è necessario reinserire il proprio nome utente e la " +"propria password prima di modificare le impostazioni." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5342,10 +5746,35 @@ msgstr "Feed del flusso pubblico" msgid "Public Stream Feed (Atom)" msgstr "Feed del flusso pubblico" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr " a eccezione di questi dati personali: password, indirizzo email, indirizzo messaggistica istantanea, numero di telefono." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" a eccezione di questi dati personali: password, indirizzo email, indirizzo " +"messaggistica istantanea, numero di telefono." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5353,33 +5782,44 @@ msgstr " a eccezione di questi dati personali: password, indirizzo email, indiri msgid "Created" msgstr "Crea" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Profilo del gruppo" #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "Profilo" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Feed dei messaggi per %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Feed dei messaggi per %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Feed dei messaggi per %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Casella posta inviata di %s" @@ -5395,10 +5835,48 @@ msgstr "Immagine" msgid "Edit profile settings" msgstr "Impostazioni del profilo" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "Un codice di conferma è stato inviato al numero di telefono che hai aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) per il codice e le istruzioni su come usarlo." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Un codice di conferma è stato inviato al numero di telefono che hai " +"aggiunto. Controlla la tua casella di posta (e anche la posta indesiderata!) " +"per il codice e le istruzioni su come usarlo." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5415,18 +5893,27 @@ msgstr "Nessun tale utente" #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi su Twitter, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Aggiungi il tuo account Twitter per inviare automaticamente i tuoi messaggi " +"su Twitter, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Impossibile ottenere informazioni sull'account \"%s\" da Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " +"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5435,8 +5922,12 @@ msgstr "Ricerca persone o per testo" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra qualche minuto." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " +"qualche minuto." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5448,21 +5939,219 @@ msgstr "Connettiti con MI, SMS e Twitter" msgid "Badge" msgstr "Richiama" +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Per utilizzare l'applicazione Facebook %s è necessario eseguire l'accesso " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s.\n\n %3$s\n\nCordiali saluti,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s sta ora seguendo i tuoi messaggi su %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordiali saluti,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Ricerca" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5479,12 +6168,12 @@ msgid "Block this user from this group" msgstr "Un elenco degli utenti in questo gruppo." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Profilo utente" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s e amici, pagina %d" @@ -5508,26 +6197,56 @@ msgstr "Codice di conferma" msgid "Do not delete this notice" msgstr "Impossibile eliminare questo messaggio." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Etichetta non valida: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Soprannome già in uso. Prova con un altro." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Impossibile creare preferito." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5538,6 +6257,14 @@ msgstr "Nuovo messaggio" msgid "No notice" msgstr "Nuovo messaggio" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5549,6 +6276,10 @@ msgstr "Non è un soprannome valido." msgid "No group specified." msgstr "Nessun profilo specificato." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5565,6 +6296,18 @@ msgstr "Non sei un membro di quel gruppo." msgid "Block user from group" msgstr "Blocca utente" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5575,6 +6318,12 @@ msgstr "Devi eseguire l'accesso per creare un gruppo." msgid "Group design" msgstr "Gruppi" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5607,46 +6356,232 @@ msgstr "Devi essere amministratore per modificare il gruppo" msgid "Make Admin" msgstr "Amministra" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Nessun risultato" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "L'utente ti ha bloccato." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Messaggio" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Impossibile salvare il profilo." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso account. Gestisci i tuoi OpenID associati da qui." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) ti permette di accedere a molti siti con lo stesso " +"account. Gestisci i tuoi OpenID associati da qui." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Impostazioni del profilo" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Questo è %%site.name%%, un servizio di [micro-blog](http://it.wikipedia.org/" +"wiki/Microblogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova per email all'indirizzo indicato nel tuo profilo." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova " +"per email all'indirizzo indicato nel tuo profilo." #: actions/recoverpassword.php:158 #, fuzzy @@ -5668,30 +6603,87 @@ msgstr "Errore con il codice di conferma." msgid "Subscribe to a remote user" msgstr "Abbonati a questo utente" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "Messaggi preferiti di %s, pagina %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed dei messaggi per il gruppo %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed dei messaggi per il gruppo %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed dei messaggi per il gruppo %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** è un gruppo su %%%%site.name%%%%, un servizio di [micro-blog](http://" +"it.wikipedia.org/wiki/Microblogging) " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -5704,33 +6696,84 @@ msgid "Not a local notice" msgstr "Non un utente locale." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Messaggi etichettati con %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Feed dei messaggi per il gruppo %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog](http://it.wikipedia.org/wiki/Microblogging) " +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" +"(http://it.wikipedia.org/wiki/Microblogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s sta ora seguendo " #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Feed dei messaggi per %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed dei messaggi per %s" @@ -5761,16 +6804,20 @@ msgid "Could not find target user." msgstr "Impossibile trovare un qualsiasi stato." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Aggiornamenti in risposta a %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Aggiornamenti da %1$s su %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5786,41 +6833,127 @@ msgstr "Abbonamenti di %s" msgid "Profile design" msgstr "Impostazioni del profilo" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Non sei un membro di quel gruppo." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problema nel salvare il messaggio." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Messaggio a %1$s su %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Profilo utente" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profilo" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Carica" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Modifica la tua password" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5836,21 +6969,127 @@ msgstr "Ricerca" msgid "Links" msgstr "Elenco" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Blocca" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Blocca utente" #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "Aggiungi o modifica il logo di %s" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5866,11 +7105,26 @@ msgstr "Utente" msgid "Search help" msgstr "Ricerca" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "L'URL della pagina web non è valido." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5878,12 +7132,12 @@ msgid "No such page" msgstr "Nessuna tale etichetta." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Messaggi diretti a %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Troppo lungo. Il massimo per un messaggio è 140 caratteri." @@ -5892,8 +7146,12 @@ msgstr "Troppo lungo. Il massimo per un messaggio è 140 caratteri." msgid "Could not unfollow user: User not found." msgstr "Impossibile seguire l'utente: utente non trovato." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "La descrizione è troppo lunga (max 140 caratteri)." @@ -5903,7 +7161,7 @@ msgid "You are already a member of that group." msgstr "Sei già un membro di quel gruppo" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Impossibile iscrivere l'utente %s al gruppo %s" @@ -5913,31 +7171,45 @@ msgid "You are not a member of this group." msgstr "Non sei un membro di quel gruppo." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Impossibile rimuovere l'utente %s dal gruppo %s" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "Gruppi di %s" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "Il gruppo %s è membro di" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Azioni dei gruppi" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Immagine aggiornata." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Troppo lungo. Lunghezza massima 140 caratteri." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -5949,12 +7221,12 @@ msgid "Post to " msgstr "Fotografia" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "La descrizione è troppo lunga (max 140 caratteri)." #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Aggiornamenti da %1$s su %2$s!" @@ -5971,7 +7243,8 @@ msgstr "Non autorizzato." #: actions/finishremotesubscribe.php:109 #, fuzzy msgid "Could not convert request token to access token." -msgstr "Impossibile convertire le credenziali di richiesta in credenziali di accesso." +msgstr "" +"Impossibile convertire le credenziali di richiesta in credenziali di accesso." #: actions/finishremotesubscribe.php:114 #, fuzzy @@ -5989,7 +7262,7 @@ msgid "Cannot read file." msgstr "Perso il nostro file." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Aggiornamenti da %1$s su %2$s!" @@ -5999,17 +7272,41 @@ msgid "IM is not available." msgstr "Questa pagina non è disponibile in un " #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Accedi con nome utente e password. Non hai ancora un nome utente? [Registra](%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Accedi con nome utente e password. Non hai ancora un nome utente? [Registra]" +"(%%action.register%%) un nuovo account o prova [OpenID](%%action.openidlogin%" +"%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Aggiornamenti da %1$s su %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Connetti" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Descriviti assieme ai tuoi interessi in 140 caratteri" @@ -6019,13 +7316,20 @@ msgid "Describe yourself and your interests" msgstr "Descrivi te e i tuoi " #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "La biografia è troppo lunga (max 140 caratteri)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Non è un URL di profilo valido (nessun documento YADIS)." #: actions/remotesubscribe.php:176 @@ -6038,35 +7342,53 @@ msgstr "Quello è un profilo locale! Accedi per abbonarti." msgid "Couldn’t get a request token." msgstr "Impossibile ottenere un token di richiesta." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed dei messaggi per %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed dei messaggi per %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Feed dei messaggi per il gruppo %s" +msgstr "Feed dei messaggi per %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Messaggio a %1$s su %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed dei preferiti di %s" +msgstr "Feed per gli amici di %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed dei preferiti di %s" +msgstr "Feed per gli amici di %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Feed dei preferiti di %s" +msgstr "Feed per gli amici di %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "Gruppi di %s" +msgstr "Casella posta inviata di %s" #: actions/shownotice.php:90 #, fuzzy @@ -6079,32 +7401,79 @@ msgid "SMS is not available." msgstr "Questa pagina non è disponibile in un " #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Feed dei messaggi per %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " +"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Annulla\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di richiamo. Controlla le istruzioni del sito per i dettagli su come autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " +"richiamo. Controlla le istruzioni del sito per i dettagli su come " +"autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di richiamo. Controlla con le istruzioni del sito per i dettagli su come rifiutare completamente l'abbonamento." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " +"richiamo. Controlla con le istruzioni del sito per i dettagli su come " +"rifiutare completamente l'abbonamento." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Impossibile leggere l'URL \"%s\" dell'immagine" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Tipo di immagine errata per \"%s\"" @@ -6119,27 +7488,35 @@ msgid "Site content license" msgstr "Licenza del software statusnet" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Impossibile aggiornare l'utente con l'indirizzo email confermato." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Richiamo inviato" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Messaggio troppo lungo - massimo 140 caratteri, inviati %d" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Rispondi a questo messaggio" @@ -6148,11 +7525,54 @@ msgstr "Rispondi a questo messaggio" msgid "Error saving notice." msgstr "Problema nel salvare il messaggio." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Nessun codice di conferma." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6169,32 +7589,76 @@ msgid "Describe the group or topic" msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Descrivi il gruppo o l'argomento in 140 caratteri" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Feed dei messaggi per %s" +msgstr "Nuovo messaggio" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s ha aggiunto il tuo messaggio tra i suoi preferiti" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " via " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Impossibile eliminare un preferito." +msgstr "Impossibile recuperare l'attività pubblica." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Elimina messaggio" - diff --git a/locale/ja/LC_MESSAGES/statusnet.mo b/locale/ja/LC_MESSAGES/statusnet.mo index 619bed7047dd2c326475e4e21c72ce546b2e705c..1a0ee8c34e45a4f3308cbe511b4a6aae5ae1623c 100644 GIT binary patch delta 18960 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, 2008 -# -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-# -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:35+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:43:55+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: out-statusnet\n" @@ -36,7 +25,8 @@ msgstr "ストリームから「%s」を検索" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." +msgid "" +" except this private data: password, email address, IM address, phone number." msgstr "次の個人情報を除く: パスワード、メールアドレス、IMアドレス、電話番号" #: ../actions/showstream.php:400 ../lib/stream.php:109 @@ -45,6 +35,12 @@ msgstr "次の個人情報を除く: パスワード、メールアドレス、I msgid " from " msgstr "から " +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#, php-format +msgid "%1$s / Updates replying to %2$s" +msgstr "" + #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 #: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format @@ -54,8 +50,60 @@ msgstr "%1$s があなたを %2$s へ招待しました" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s があなたを %2$s へ招待しました (%3$s)。\n\n%2$s はあなたの知り合いやあなたが興味をもっている人物の最新の情報を得ることができる、マイクロブログサービスです。\n\nまた、あなたの最新の情報やあなたの考えていること、生活を、あなたのことを知っている人と共有することができます。あなたと同じ興味をもつ人々と出会う目的でも優れたサービスです。\n\n%1$s の言葉:\n\n%4$s\n\n%2$s における %1$s のプロフィールページを以下で見ることができます:\n\n%5$s\n\nこのサービスを試してみたい場合は以下のリンクをクリックしてこの招待に応じてください。\n\n%6$s\n\nそうでない場合はこのメッセージを無視することができます。お時間をいただきありがとうございました。\n\n%2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s があなたを %2$s へ招待しました (%3$s)。\n" +"\n" +"%2$s はあなたの知り合いやあなたが興味をもっている人物の最新の情報を得ることが" +"できる、マイクロブログサービスです。\n" +"\n" +"また、あなたの最新の情報やあなたの考えていること、生活を、あなたのことを知っ" +"ている人と共有することができます。あなたと同じ興味をもつ人々と出会う目的でも" +"優れたサービスです。\n" +"\n" +"%1$s の言葉:\n" +"\n" +"%4$s\n" +"\n" +"%2$s における %1$s のプロフィールページを以下で見ることができます:\n" +"\n" +"%5$s\n" +"\n" +"このサービスを試してみたい場合は以下のリンクをクリックしてこの招待に応じてく" +"ださい。\n" +"\n" +"%6$s\n" +"\n" +"そうでない場合はこのメッセージを無視することができます。お時間をいただきあり" +"がとうございました。\n" +"\n" +"%2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -65,8 +113,26 @@ msgstr "%1$s は %2$s であなたの通知を購読しています。" #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s は %2$s であなたの通知を購読しています。\n\n%3$s\n\n%4$s\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s は %2$s であなたの通知を購読しています。\n" +"\n" +"%3$s\n" +"\n" +"%4$s\n" + +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -125,16 +191,32 @@ msgstr "%s の状態" msgid "%s timeline" msgstr "%s のタイムライン" +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "" + #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(メールアドレスを確認する方法を読んで、すぐにメールによるメッセージを受け取るようにしてください)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(メールアドレスを確認する方法を読んで、すぐにメールによるメッセージを受け取る" +"ようにしてください)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマイクロブログサービスです。 " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ" +"イクロブログサービスです。 " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -157,7 +239,8 @@ msgstr "1-64文字の、小文字アルファベットか数字で、スペー #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く。必須です。" +msgstr "" +"1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く。必須です。" #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -178,17 +261,30 @@ msgstr "6文字以上。必須です。" #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "確認用コードを入力された IM アドレスに送信しました。あなたにメッセージを送れるようにするには%sを承認してください。" +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"確認用コードを入力された IM アドレスに送信しました。あなたにメッセージを送れ" +"るようにするには%sを承認してください。" #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "確認用コードを入力された電子メールアドレスに送信しました。受信ボックス(とスパムボックス)にコードとそれをどう使うのかという指示が届いていないか確認してください。" +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"確認用コードを入力された電子メールアドレスに送信しました。受信ボックス(とス" +"パムボックス)にコードとそれをどう使うのかという指示が届いていないか確認して" +"ください。" #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "確認用コードを入力された電話番号に送信しました。受信ボックス(とスパムボックス)にコードとそれをどう使うのかという指示が届いていないか確認してください。" +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"確認用コードを入力された電話番号に送信しました。受信ボックス(とスパムボック" +"ス)にコードとそれをどう使うのかという指示が届いていないか確認してください。" #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -368,7 +464,8 @@ msgstr "以降は自動的にログインする。共用コンピューターで #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "自分を購読している者を自動的に購読する (非人間に最適)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 @@ -388,13 +485,21 @@ msgstr "アバターが更新されました。" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "このアドレスは確認待ちです。Jabber か Gtalk のアカウントで追加の指示が書かれたメッセージを確認してください。(%s を友人リストに追加しましたか?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"このアドレスは確認待ちです。Jabber か Gtalk のアカウントで追加の指示が書かれ" +"たメッセージを確認してください。(%s を友人リストに追加しましたか?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "このアドレスは確認待ちです。受信ボックス(とスパムボックス)に追加の指示が書かれたメッセージが届いていないか確認してください。" +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"このアドレスは確認待ちです。受信ボックス(とスパムボックス)に追加の指示が書" +"かれたメッセージが届いていないか確認してください。" #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -528,6 +633,26 @@ msgstr "確認コード" msgid "Confirmation code not found." msgstr "確認コードが見つかりません。" +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" + #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -551,6 +676,21 @@ msgstr "コンタクト" msgid "Could not create OpenID form: %s" msgstr "OpenIDを作成できません : %s" +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "" + +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" + #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format @@ -567,6 +707,19 @@ msgstr "アバターを保存できません" msgid "Could not save new profile info" msgstr "新しいプロファイルを保存できません" +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "" + +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 +msgid "Could not subscribe." +msgstr "" + +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." @@ -587,6 +740,11 @@ msgstr "メール承認を削除できません" msgid "Couldn't delete subscription." msgstr "サブスクリプションを削除できません" +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 +msgid "Couldn't find any statuses." +msgstr "" + #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." @@ -615,6 +773,22 @@ msgstr "サブスクリプションを追加できません" msgid "Couldn't save profile." msgstr "プロファイルを保存できません" +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "" + +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -662,16 +836,38 @@ msgstr "既にユーザの存在するOpenIDでアカウントを作成してい msgid "Current confirmed Jabber/GTalk address." msgstr "確認された最新の Jabber/GTakk アドレス" +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" + +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" + #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "最新" +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "返信を追加する際にデータベースエラー : %s" +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "" + #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -688,6 +884,11 @@ msgstr "140字以内で自己紹介" msgid "Email" msgstr "メール" +#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 +msgid "Email Address" +msgstr "" + #: ../actions/emailsettings.php:32 actions/emailsettings.php:32 #: actions/emailsettings.php:60 msgid "Email Settings" @@ -702,6 +903,11 @@ msgstr "メールアドレスが既に存在します。" msgid "Email address confirmation" msgstr "メールアドレス確認" +#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "" + #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 #: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" @@ -713,6 +919,11 @@ msgstr "メールアドレス" msgid "Enter a nickname or email address." msgstr "ニックネームかメールアドレスを入力してください。" +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" + #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" @@ -830,9 +1041,29 @@ msgstr "%s のともだちのフィード" msgid "Feed for replies to %s" msgstr "%s の返信のフィード" +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 +#, php-format +msgid "Feed for tag %s" +msgstr "" + +#: ../lib/searchaction.php:105 lib/searchaction.php:105 +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "" + +#: ../lib/searchaction.php:101 lib/searchaction.php:101 +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "" + #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力して下さい。" +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" +"て下さい。" #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -894,6 +1125,17 @@ msgstr "ホームページ" msgid "Homepage is not a valid URL." msgstr "ホームページのURLが不適切です。" +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "" + +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "" + #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -906,13 +1148,39 @@ msgstr "IM設定" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関連付けて下さい。" +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関" +"連付けて下さい。" #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." msgstr "OpenIDを追加する場合、下のボックスにある\"Add\"をつリックして下さい。" +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" + +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "" + #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 #: actions/passwordsettings.php:164 @@ -927,7 +1195,9 @@ msgstr "ユーザ名またはパスワードが間違っています。" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "登録されたメールアドレスにパスワードの回復方法をおおくりしました。" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 @@ -1000,11 +1270,38 @@ msgstr "不正なサイズ。" msgid "Invalid username or password." msgstr "不正なユーザ名またはパスワード。" +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "" + +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" + +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 +msgid "Invite" +msgstr "" + +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 +msgid "Invite new users" +msgstr "" + #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "マイクロブロギングソフト [StatusNet](http://status.net/) , バージョン %s で動いています。 ライセンス [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)。" +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"マイクロブロギングソフト [StatusNet](http://status.net/) , バージョン %s で動" +"いています。 ライセンス [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)。" #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1014,8 +1311,24 @@ msgstr "Jabber ID jは既に別のユーザが使用しています。" #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "\"UserName@example.org\" といった Jabber または GTalk のアドレス。まず、%s をIMクライアントやGTalkに追加して下さい。" +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"\"UserName@example.org\" といった Jabber または GTalk のアドレス。まず、%s を" +"IMクライアントやGTalkに追加して下さい。" + +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "" + +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "" #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -1068,17 +1381,43 @@ msgstr "ログイン" msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "[OpenID](%%doc.openid%%) でログイン。" +#: ../actions/login.php:126 actions/login.php:251 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" + #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "ログアウト" +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 +msgid "Longer name, preferably your \"real\" name" +msgstr "" + #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "パスワードを紛失、忘れた?" +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "" + #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -1090,6 +1429,14 @@ msgstr "からのメンバー" msgid "Microblog by %s" msgstr "マイクロブログ by %s" +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 @@ -1098,6 +1445,25 @@ msgstr "マイクロブログ by %s" msgid "My text and files are available under " msgstr "の下でテキスト及びファイルを利用可能" +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "" + +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "" + #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -1165,7 +1531,9 @@ msgstr "そのニックネームは既に使用されています。他のもの #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用できません。" +msgstr "" +"ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用" +"できません。" #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1182,6 +1550,14 @@ msgstr "フォローしたいユーザのニックネーム" msgid "Nickname or email" msgstr "ニックネームまたはメールアドレス" +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 +msgid "No" +msgstr "" + #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." @@ -1193,6 +1569,16 @@ msgstr "Jabbar ID はありません。" msgid "No authorization request!" msgstr "認証のリクエストがありません。" +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" + +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 +msgid "No code entered" +msgstr "" + #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -1207,10 +1593,23 @@ msgstr "確認コードがありません。" msgid "No content!" msgstr "コンテンツがありません!" +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "" + #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "id がありません。" +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -1232,6 +1631,11 @@ msgstr "ニックネームがありません。" msgid "No pending confirmation to cancel." msgstr "認証待ちのものはありません。" +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 +msgid "No phone number." +msgstr "" + #: ../actions/finishremotesubscribe.php:72 #: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." @@ -1260,6 +1664,21 @@ msgstr "結果なし" msgid "No size." msgstr "サイズがありません。" +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" + +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "" + #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1325,6 +1744,12 @@ msgstr "そのようなサブスクリプションはありません。" msgid "No such user." msgstr "そのようなユーザはいません。" +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" + #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "表示できるユーザはいません。" @@ -1334,6 +1759,21 @@ msgstr "表示できるユーザはいません。" msgid "Not a recovery code." msgstr "回復コードではありません。" +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 +msgid "Not a registered user." +msgstr "" + +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 +msgid "Not a supported data format." +msgstr "" + #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1344,6 +1784,12 @@ msgstr "有効な Jabber ID ではありません。" msgid "Not a valid OpenID." msgstr "有効な OpenID ではありません。" +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "" + #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." @@ -1393,6 +1839,12 @@ msgstr "認証されていません。" msgid "Not expecting this response!" msgstr "想定外のレスポンスです!" +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 +msgid "Not found" +msgstr "" + #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 #: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 @@ -1417,6 +1869,11 @@ msgstr "ログインしていません。" msgid "Not subscribed!." msgstr "購読していません!" +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" + #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 @@ -1437,6 +1894,14 @@ msgstr "通知にはプロファイルはありません。" msgid "Notices" msgstr "通知" +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" + #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1504,6 +1969,11 @@ msgstr "OpenID は消去されました。" msgid "OpenID settings" msgstr "OpenID 設定" +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "" + #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -1558,6 +2028,16 @@ msgstr "パスワードが保存されました。" msgid "Passwords don't match." msgstr "パスワードが一致しません。" +#: ../lib/searchaction.php:100 lib/searchaction.php:100 +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "" + +#: ../actions/opensearch.php:33 actions/opensearch.php:33 +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" + #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" @@ -1568,9 +2048,24 @@ msgstr "ピープルサーチ" msgid "Personal" msgstr "パーソナル" +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 +msgid "Personal message" +msgstr "" + +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" キャンセルをクリックして下さい。" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " +"キャンセルをクリックして下さい。" #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -1599,6 +2094,12 @@ msgstr "設定" msgid "Preferences saved." msgstr "設定が保存されました。" +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "" + #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" @@ -1646,6 +2147,22 @@ msgstr "パブリックフィード" msgid "Public timeline" msgstr "パブリックタイムライン" +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "" + +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "" + +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 +#: actions/tag.php:76 +msgid "Recent Tags" +msgstr "" + #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -1674,6 +2191,18 @@ msgstr "不明なユーザのための回復コード。" msgid "Register" msgstr "登録" +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 +msgid "Registration not allowed." +msgstr "" + +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 +msgid "Registration successful" +msgstr "" + #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -1719,8 +2248,12 @@ msgid "Remove OpenID" msgstr "OpenID を削除" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "最後の OpenID を削除すると、ログインできなくなります!削除するまえに、別の OpenID を追加して下さい。" +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"最後の OpenID を削除すると、ログインできなくなります!削除するまえに、別の " +"OpenID を追加して下さい。" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -1749,12 +2282,38 @@ msgstr "リセット" msgid "Reset password" msgstr "パスワードをリセット" +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" + +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "" + +#: ../actions/smssettings.php:33 actions/smssettings.php:33 +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "" + +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 +msgid "SMS confirmation" +msgstr "" + #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "上と同じパスワード" +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 +msgid "Same as password above. Required." +msgstr "" + #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -1790,13 +2349,23 @@ msgstr "ストリームフィードを検索" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." msgstr "%%site.name%% の通知を内容から検索。検索語はスペース区切る。3字以上" #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" + +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -1807,11 +2376,35 @@ msgstr "%%site.name%% の人を名前、場所、興味から検索。検索語 msgid "Send" msgstr "送る" +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" + +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" + #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk で私に通知を送って下さい。" +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -1823,6 +2416,10 @@ msgstr "設定" msgid "Settings saved." msgstr "設定が保存されました。" +#: ../actions/tag.php:60 actions/tag.php:60 +msgid "Showing most popular tags from the last week" +msgstr "" + #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -1834,6 +2431,16 @@ msgstr "既に他の人がこの OpenID を使用しています。" msgid "Something weird happened." msgstr "不測の事態が発生しました。" +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 +msgid "Sorry, no incoming email allowed." +msgstr "" + +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 +msgid "Sorry, that is not your incoming email address." +msgstr "" + #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -1898,6 +2505,22 @@ msgstr "サブスクリプション" msgid "System error uploading file." msgstr "ファイルのアップロードでシステムエラー" +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 +msgid "Tags" +msgstr "" + +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 +msgid "Text" +msgstr "" + #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 #: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" @@ -1918,6 +2541,11 @@ msgstr "そのアドレスは既に承認されています。" msgid "That confirmation code is not for you!" msgstr "その確認コードはあなたのものではありません!" +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "" + #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." @@ -1928,11 +2556,33 @@ msgstr "ファイルサイズが大きすぎます。" msgid "That is already your Jabber ID." msgstr "その Jabber ID は既にあなたのものです。" +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" + +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" + #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "その Jabber ID はあなたのものではありません。" +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "" + +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "" + #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -1941,6 +2591,16 @@ msgstr "その Jabber ID はあなたのものではありません。" msgid "That is the wrong IM address." msgstr "その IM アドレスは不正です。" +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "" + +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" + #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -1951,6 +2611,12 @@ msgstr "その IM アドレスは不正です。" msgid "That's too long. Max notice size is 140 chars." msgstr "長すぎます。通知は最大 140 字までです。" +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 +msgid "That's too long. Max notice size is 255 chars." +msgstr "" + #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format @@ -1967,6 +2633,22 @@ msgstr "アドレス \"%s\" はあなたのアカウントとして承認され msgid "The address was removed." msgstr "アドレスは削除されました。" +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" + #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 #, php-format @@ -1989,29 +2671,97 @@ msgstr "%s が通知を聞いている人" msgid "These are the people whose notices you listen to." msgstr "あなたが通知を聞いている人" +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" + #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "確認コードが古すぎます。もう一度やり直してください。" #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "このフォームは自動的にサブミットされます。されない場合は、サブミットボタンをクリックして下さい。OpenIDプロバイダへ転送されます。" +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"このフォームは自動的にサブミットされます。されない場合は、サブミットボタンを" +"クリックして下さい。OpenIDプロバイダへ転送されます。" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "これが %s への初回のログインです。OpenIDとの関連付けが必要です。アカウントを新規作成するか、既存のアカウントとの関連付けのどちらかを下さい。" +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"これが %s への初回のログインです。OpenIDとの関連付けが必要です。アカウントを" +"新規作成するか、既存のアカウントとの関連付けのどちらかを下さい。" + +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" + +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "" #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "このページはあなたが承認したメディアタイプでは利用できません。" +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "" + +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "" + #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "サブスクライブするには、[ログイン](%%action.login%%) するか, [登録](%%action.register%%) を行って下さい。既に [compatible microblogging site](%%doc.openmublog%%) にアカウントを持っおもちの場合は、下にプロファイルURLを入力して下さい." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"サブスクライブするには、[ログイン](%%action.login%%) するか, [登録](%%action." +"register%%) を行って下さい。既に [compatible microblogging site](%%doc." +"openmublog%%) にアカウントを持っおもちの場合は、下にプロファイルURLを入力して" +"下さい." + +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 +msgid "Two user ids or screen_names must be supplied." +msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -2048,14 +2798,23 @@ msgstr "予期せぬフォーム送信です。" msgid "Unexpected password reset." msgstr "予期せぬパスワードのリセットです。" +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" + #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "予期せぬ OMB プロトコルのバージョンです。" #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "特に断りが無い場合は、このサイトのコンテンツの著作権は著作者に帰属し、下記条件の下で使用可能です。" +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"特に断りが無い場合は、このサイトのコンテンツの著作権は著作者に帰属し、下記条" +"件の下で使用可能です。" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2081,6 +2840,33 @@ msgstr "サポート外の OMB バージョン" msgid "Unsupported image file format." msgstr "サポート外の画像形式です。" +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" + +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -2089,8 +2875,26 @@ msgid "Upload" msgstr "アップロード" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "\"アバター\" (ユーザの画像) をアップロード。 アップロードした後では画像の編集はできません。サイズが大きすぎないか(小さすぎないか)確認して下さい。サイトのライセンスが適用されます。自身で所有していて、共有したい画像を使用して下さい。" +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"\"アバター\" (ユーザの画像) をアップロード。 アップロードした後では画像の編集" +"はできません。サイズが大きすぎないか(小さすぎないか)確認して下さい。サイト" +"のライセンスが適用されます。自身で所有していて、共有したい画像を使用して下さ" +"い。" + +#: ../lib/settingsaction.php:91 +msgid "Upload a new profile image" +msgstr "" + +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2132,6 +2936,16 @@ msgstr "プロファイルがありません。" msgid "User nickname" msgstr "ユーザのニックネーム" +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 +msgid "User not found." +msgstr "" + +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" + #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -2158,16 +2972,41 @@ msgstr "不正な画像形式。'%s'" msgid "Wrong size image at '%s'" msgstr "不正な画像サイズ。'%s'" +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 +msgid "Yes" +msgstr "" + #: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "既にこの OpenID を使用しています。" +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "既にログイン済みです。" +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" + +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 +msgid "You are not friends with the specified user." +msgstr "" + #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "パスワードはここで変更できます。良いものを選んで下さい!" @@ -2176,20 +3015,35 @@ msgstr "パスワードはここで変更できます。良いものを選んで msgid "You can create a new account to start posting notices." msgstr "アカウントを作成して通知の投稿が可能です。" +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." msgstr "\"削除\"をクリックして OpenID を削除できます。" #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Jabber/GTalk [instant messages](%%doc.im%%) 経由で通知の送信、受信が可能です。下のアドレスを設定して下さい。" +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Jabber/GTalk [instant messages](%%doc.im%%) 経由で通知の送信、受信が可能で" +"す。下のアドレスを設定して下さい。" #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "あなたのことについて知ってもらうために、ここでプロファイル情報を更新できます。" +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"あなたのことについて知ってもらうために、ここでプロファイル情報を更新できま" +"す。" #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2211,6 +3065,38 @@ msgstr "ライセンスに同意頂けない場合は登録できません。" msgid "You did not send us that profile" msgstr "そのプロファイルは送信されていません。" +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "" + +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" + +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "確認されました。新しいパスワードを入力して下さい。" @@ -2227,8 +3113,12 @@ msgstr "このサーバでのニックネーム、または登録したメール #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログインすることができます。ここで関連付ける OpenID を管理して下さい。" +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログイン" +"することができます。ここで関連付ける OpenID を管理して下さい。" #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -2284,6 +3174,11 @@ msgstr "約 1 年前" msgid "about an hour ago" msgstr "約 1 時間前" +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 +msgid "delete" +msgstr "" + #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 @@ -2301,18 +3196,766 @@ msgstr "返信" msgid "same as password above" msgstr "上のパスワードと同じ" +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 +msgid "unsupported file type" +msgstr "" + #: ../lib/util.php:1309 lib/util.php:1443 #, fuzzy msgid "« After" msgstr "<< 前" +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/disfavor.php:55 actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" + +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 +msgid "Could not delete favorite." +msgstr "" + +#: actions/disfavor.php:72 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" + +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" + +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "" + +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" + +#: actions/favor.php:70 +msgid "Disfavor" +msgstr "" + +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 +#, php-format +msgid "%s favorite notices" +msgstr "" + +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 +#, php-format +msgid "Feed of favorite notices of %s" +msgstr "" + +#: actions/inbox.php:28 actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "" + +#: actions/inbox.php:30 actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "" + +#: actions/inbox.php:53 actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" + +#: actions/invite.php:178 actions/invite.php:213 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" + +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 +msgid "Automatically login in the future; " +msgstr "" + +#: actions/login.php:122 actions/login.php:264 +msgid "For security reasons, please re-enter your " +msgstr "" + +#: actions/login.php:126 actions/login.php:268 +msgid "Login with your username and password. " +msgstr "" + +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 +msgid "That's too long. Max message size is 140 chars." +msgstr "" + +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "" + +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" + +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 +msgid "No such user" +msgstr "" + +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "" + +#: actions/noticesearch.php:95 actions/noticesearch.php:146 +msgid "Notice without matching profile" +msgstr "" + +#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgstr "" + +#: actions/openidsettings.php:46 actions/openidsettings.php:96 +msgid "If you want to add an OpenID to your account, " +msgstr "" + +#: actions/openidsettings.php:74 +msgid "Removing your only OpenID would make it impossible to log in! " +msgstr "" + +#: actions/openidsettings.php:87 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account " +msgstr "" + +#: actions/outbox.php:28 actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:30 actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:53 actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" + +#: actions/profilesettings.php:27 actions/profilesettings.php:69 +msgid "You can update your personal profile info here " +msgstr "" + +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +msgid "User without matching profile" +msgstr "" + +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. " +msgstr "" + +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" +msgstr "" + +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " +msgstr "" + +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 +msgid "Your nickname on this server, " +msgstr "" + +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 +msgid "Instructions for recovering your password " +msgstr "" + +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 +msgid "New password successfully saved. " +msgstr "" + +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/register.php:216 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" + +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " +msgstr "" + +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#, php-format +msgid "To subscribe, you can [login](%%action.login%%)," +msgstr "" + +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 +#, php-format +msgid "Feed for favorites of %s" +msgstr "" + +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showmessage.php:33 actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:42 actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:61 actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:66 actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/showstream.php:154 +msgid "Send a message" +msgstr "" + +#: actions/smssettings.php:312 actions/smssettings.php:464 +#, php-format +msgid "Mobile carrier for your phone. " +msgstr "" + +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 +msgid "Direct Messages You've Sent" +msgstr "" + +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "" + +#: actions/twitapidirect_messages.php:128 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "" + +#: actions/twitapidirect_messages.php:138 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" + +#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" + +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "" + +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "" + +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 +#, php-format +msgid "%s added your notice as a favorite" +msgstr "" + +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" + +#: actions/twittersettings.php:27 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" + +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 +msgid "Twitter settings" +msgstr "" + +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 +msgid "Twitter Account" +msgstr "" + +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 +msgid "Current verified Twitter account." +msgstr "" + +#: actions/twittersettings.php:63 +msgid "Twitter Username" +msgstr "" + +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 +msgid "No spaces, please." +msgstr "" + +#: actions/twittersettings.php:67 +msgid "Twitter Password" +msgstr "" + +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" + +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 +msgid "Could not verify your Twitter credentials!" +msgstr "" + +#: actions/twittersettings.php:137 +#, php-format +msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgstr "" + +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 +msgid "Unable to save your Twitter settings!" +msgstr "" + +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 +msgid "Twitter settings saved." +msgstr "" + +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 +msgid "That is not your Twitter account." +msgstr "" + +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 +msgid "Couldn't remove Twitter user." +msgstr "" + +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 +msgid "Twitter account removed." +msgstr "" + +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 +msgid "Couldn't save Twitter preferences." +msgstr "" + +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 +msgid "Twitter preferences saved." +msgstr "" + +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " +msgstr "" + +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " +msgstr "" + +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " +msgstr "" + +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 +msgid "Command complete" +msgstr "" + +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: classes/Command.php:96 classes/Command.php:113 +#, php-format +msgid "Subscriptions: %1$s\n" +msgstr "" + +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" + +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "" + +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "" + +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "" + +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "" + +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "" + +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 +#, php-format +msgid "Message too long - maximum is 140 characters, you sent %d" +msgstr "" + +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." +msgstr "" + +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" + +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." +msgstr "" + +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: classes/Command.php:344 classes/Command.php:392 +msgid "Commands:\n" +msgstr "" + +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:253 lib/mail.php:512 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" + +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " +msgstr "" + +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "" + +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" + +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" + +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" + +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 +msgid "Twitter" +msgstr "" + +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 +msgid "Twitter integration options" +msgstr "" + +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 +msgid "To" +msgstr "" + +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 +msgid "Could not parse message." +msgstr "" + #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s & ともだち" +#: actions/avatarsettings.php:76 +msgid "You can upload your personal avatar." +msgstr "" + #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -2321,6 +3964,51 @@ msgstr "%s & ともだち" msgid "Avatar settings" msgstr "設定" +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +msgid "There was a problem with your session token. " +msgstr "" + +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -2328,21 +4016,75 @@ msgstr "設定" msgid "Lost our file." msgstr "そのような通知はありません。" +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 +msgid "No profile specified." +msgstr "" + +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 +msgid "No profile with that ID." +msgstr "" + #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "そのようなユーザはいません。" +#: actions/block.php:129 +msgid "Are you sure you want to block this user? " +msgstr "" + #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "既にログイン済みです。" +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + #: actions/confirmaddress.php:159 -#, php-format, fuzzy +#, fuzzy, php-format msgid "The address \"%s\" has been " msgstr "アドレスは削除されました。" +#: actions/deletenotice.php:73 +msgid "You are about to permanently delete a notice. " +msgstr "" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "" + +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -2366,10 +4108,26 @@ msgstr "ニックネームがありません。" msgid "No such group" msgstr "そのような通知はありません。" +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "" + +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用できません。" +msgstr "" +"ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用" +"できません。" #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -2388,10 +4146,23 @@ msgid "Options saved." msgstr "設定が保存されました。" #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Awaiting confirmation on this address. " msgstr "確認コードにエラーがあります。" +#: actions/emailsettings.php:139 actions/smssettings.php:150 +msgid "Make a new email address for posting to; " +msgstr "" + +#: actions/emailsettings.php:157 +msgid "Send me email when someone " +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -2400,7 +4171,28 @@ msgstr "メールアドレスが既に存在します。" #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "確認用コードを入力されたIMアドレスに送信しました。メッセージを確認するには、%sを承認して下さい。" +msgstr "" +"確認用コードを入力されたIMアドレスに送信しました。メッセージを確認するには、%" +"sを承認して下さい。" + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -2408,6 +4200,13 @@ msgstr "確認用コードを入力されたIMアドレスに送信しました msgid "No notice content!" msgstr "コンテンツがありません!" +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -2424,32 +4223,84 @@ msgstr "<< 前" msgid "Before" msgstr "前 >>" +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" +msgstr "" + #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "%s のともだちのフィード" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "ユーザを更新できません" +#: actions/facebooksettings.php:65 +msgid "There was a problem saving your sync preferences!" +msgstr "" + #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "設定が保存されました。" +#: actions/facebooksettings.php:90 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: actions/facebooksettings.php:97 +msgid "Send \"@\" replies to Facebook." +msgstr "" + #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "プロファイル" +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "設定" +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 +msgid "Disfavor favorite" +msgstr "" + #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -2459,10 +4310,48 @@ msgid "Popular notices" msgstr "そのような通知はありません。" #: actions/favorited.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Popular notices, page %d" msgstr "そのような通知はありません。" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" + +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 +msgid "Featured users" +msgstr "" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" + +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" + +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" + +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -2475,6 +4364,36 @@ msgstr "アバターが更新されました。" msgid "Failed updating logo." msgstr "アバターの更新に失敗しました。" +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -2482,35 +4401,63 @@ msgid "Create a new group" msgstr "アカウントを作成" #: actions/groupsearch.php:57 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "ピープルサーチ" +#: actions/imsettings.php:70 +msgid "You can send and receive notices through " +msgstr "" + +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Jabber/GTalk で私に通知を送って下さい。" #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "確認コードがありません。" +#: actions/joingroup.php:65 actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "" + #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "既にログイン済みです。" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "サーバへリダイレクトできません : %s" +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "" + +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "" + #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -2524,12 +4471,44 @@ msgstr "そのような通知はありません。" msgid "You are not a member of that group." msgstr "そのプロファイルは送信されていません。" +#: actions/leavegroup.php:100 +msgid "You may not leave a group while you are its administrator." +msgstr "" + +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" + #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "OpenIDを作成できません : %s" +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -2547,12 +4526,35 @@ msgstr "サブスクリプションを作成できません" msgid "That's too long. " msgstr "ファイルサイズが大きすぎます。" +#: actions/newmessage.php:134 +msgid "Don't send a message to yourself; " +msgstr "" + #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "通知" +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 +msgid "Ajax Error" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" + #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -2568,11 +4570,24 @@ msgstr "OpenID を削除" msgid "Other Settings" msgstr "設定" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" + +#: actions/othersettings.php:93 +msgid "URL Auto-shortening" +msgstr "" + #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "検索" +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "" + #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -2591,19 +4606,39 @@ msgid "Password change" msgstr "パスワードが保存されました。" #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "有効なメールアドレスではありません。" +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "" + +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" + #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "プロファイルが不明" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + +#: actions/profilesettings.php:144 +msgid "Automatically subscribe to whoever " +msgstr "" + #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "不正なホームページ '%s'" @@ -2615,20 +4650,51 @@ msgstr "プロファイルを保存できません" #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Public timeline, page %d" msgstr "パブリックタイムライン" +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "パブリックフィード" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 +msgid "Sorry, only invited people can register." +msgstr "" + #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "ライセンスに同意頂けない場合は登録できません。" +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -2659,18 +4725,57 @@ msgstr "いる場所, 例えば \"City, State (or Region), Country\"" msgid " except this private data: password, " msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" +#: actions/register.php:471 +#, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgstr "" + +#: actions/register.php:495 +msgid "(You should receive a message by email " +msgstr "" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" + #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "%s への返信" +#: actions/showfavorites.php:79 +#, php-format +msgid "%s favorite notices, page %d" +msgstr "" + +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "そのような通知はありません。" +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -2683,8 +4788,13 @@ msgstr "そのような通知はありません。" msgid "Note" msgstr "通知" +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group" msgstr "%sの通知フィード" @@ -2696,6 +4806,36 @@ msgstr "%sの通知フィード" msgid "Members" msgstr "からのメンバー" +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" +msgstr "" + +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient " +msgstr "" + +#: actions/showstream.php:73 actions/showstream.php:78 +#, php-format +msgid "%s, page %d" +msgstr "" + #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -2708,11 +4848,43 @@ msgstr "プロファイル" msgid "User profile" msgstr "プロファイルがありません。" +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 +msgid "User actions" +msgstr "" + +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 +msgid "Send a direct message to this user" +msgstr "" + +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 +msgid "Message" +msgstr "" + #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "購読者" +#: actions/showstream.php:533 lib/profileaction.php:235 +msgid "All groups" +msgstr "" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -2728,6 +4900,10 @@ msgstr "Jabber/GTalk で私に通知を送って下さい。" msgid "A confirmation code was sent to the phone number you added. " msgstr "その確認コードはあなたのものではありません!" +#: actions/smssettings.php:453 actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -2749,27 +4925,32 @@ msgid "Subscribed" msgstr "購読" #: actions/subscribers.php:50 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscribers" msgstr "購読者" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "%s の通知を聞いている人" #: actions/subscribers.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people who " msgstr "%s の通知を聞いている人" #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "全てのサブスクリプション" #: actions/subscriptions.php:54 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions, page %d" msgstr "全てのサブスクリプション" @@ -2779,7 +4960,7 @@ msgid "These are the people whose notices " msgstr "%s が通知を聞いている人" #: actions/subscriptions.php:69 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people whose " msgstr "%s の通知を聞いている人" @@ -2790,10 +4971,15 @@ msgid "Jabber" msgstr "Jabbar ID はありません。" #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "マイクロブログ by %s" +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -2804,18 +4990,46 @@ msgstr "ログインしていません。" msgid "No id argument." msgstr "そのようなドキュメントはありません。" +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:164 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "アバターを保存できません" +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "そのような通知はありません。" #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "マイクロブログ by %s" @@ -2834,6 +5048,14 @@ msgstr "ユーザのアンブロックに失敗しました。" msgid "Not found." msgstr "見つかりません。" +#: actions/twittersettings.php:71 +msgid "Add your Twitter account to automatically send " +msgstr "" + +#: actions/twittersettings.php:119 actions/twittersettings.php:122 +msgid "Twitter user name" +msgstr "" + #: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Twitterパスワード" @@ -2843,6 +5065,10 @@ msgstr "Twitterパスワード" msgid "Twitter Friends" msgstr "Twitterフレンド" +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + #: actions/twittersettings.php:341 #, php-format msgid "Unable to retrieve account information " @@ -2881,6 +5107,17 @@ msgstr "%s グループ, %d ページ" msgid "Problem saving notice. Unknown user." msgstr "通知を保存する際に問題が発生しました。" +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "アバターのアップロード" @@ -2895,10 +5132,23 @@ msgstr "その他" msgid "Other options" msgstr "その他のオプション" +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#, php-format +msgid "%s - %s" +msgstr "" + #: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "名称未設定ページ" +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + #: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "人々かテキストを検索" @@ -2940,6 +5190,10 @@ msgstr "助けて!" msgid "Site notice" msgstr "新しい通知" +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -2950,6 +5204,15 @@ msgstr "新しい通知" msgid "Secondary site navigation" msgstr "サブスクリプション" +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +msgid "All " +msgstr "" + #: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "ライセンス。" @@ -2964,6 +5227,15 @@ msgstr "このユーザをブロックする" msgid "Block" msgstr "ブロック" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 msgid " a new account." @@ -2987,11 +5259,20 @@ msgstr "データのエクスポート" msgid "Filter tags" msgstr "タグのフィルター" +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + #: lib/galleryaction.php:137 lib/galleryaction.php:138 #: lib/galleryaction.php:140 msgid "Tag" msgstr "タグ" +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + #: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" @@ -3013,7 +5294,8 @@ msgstr "グループやトピックを140字以内記述" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "いる場所, 例えば \"City, State (or Region), Country\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -3076,8 +5358,15 @@ msgstr "新しいアカウントでサインアップ" msgid "Login or register with OpenID" msgstr "OpenIDでログインまたは登録" +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "%1$s は %2$s であなたの通知を聞いています。" @@ -3091,16 +5380,33 @@ msgstr "場所: %s\n" msgid "Homepage: %s\n" msgstr "ホームページ: %s\n" +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + #: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "あなたは %s に突かれています" +#: lib/mail.php:465 +#, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" + #: lib/mail.php:555 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s just added your notice from %2$s" msgstr "%1$s は %2$s であなたの通知を聞いています。" +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +msgid "From" +msgstr "" + #: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "直接通知を送る" @@ -3153,6 +5459,11 @@ msgstr "突く" msgid "Send a nudge to this user" msgstr "このユーザへ突きを送る" +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + #: lib/profilelist.php:182 lib/profilelist.php:180 #: lib/subscriptionlist.php:126 msgid "(none)" @@ -3171,6 +5482,10 @@ msgstr "ユーザグループ" msgid "Recent tags" msgstr "最近のタグ" +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "人気" @@ -3188,15 +5503,26 @@ msgid "Untitled section" msgstr "名称未設定のセクション" #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People %s subscribes to" msgstr "リモートサブスクライブ" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People subscribed to %s" msgstr "リモートサブスクライブ" +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -3208,6 +5534,10 @@ msgstr "プロファイルがありません。" msgid "Subscribe to this user" msgstr "購読が許可" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "" + #: lib/topposterssection.php:74 msgid "Top posters" msgstr "上位投稿者" @@ -3226,17 +5556,17 @@ msgid "Unsubscribe from this user" msgstr "このユーザからのサブスクライブを解除する" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s のともだちのフィード" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s のともだちのフィード" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s のともだちのフィード" @@ -3245,30 +5575,106 @@ msgstr "%s のともだちのフィード" msgid "You and friends" msgstr "%s & ともだち" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "アバターが更新されました。" +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "マイクロブログ by %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切る。3字以上" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "\"%s\" のストリームを検索" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力して下さい。" +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" +"て下さい。" #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -3285,9 +5691,32 @@ msgstr "パブリックフィード" msgid "Public Stream Feed (Atom)" msgstr "パブリックフィード" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号" #: actions/showgroup.php:378 actions/showgroup.php:424 @@ -3296,31 +5725,47 @@ msgstr "個人情報を除く:パスワード、メールアドレス、IMアド msgid "Created" msgstr "作成" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "そのような通知はありません。" #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "プロファイル" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "%sの通知フィード" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "%sの通知フィード" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "%sの通知フィード" +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -3333,11 +5778,46 @@ msgstr "アバター" msgid "Edit profile settings" msgstr "プロファイル設定" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." msgstr "その確認コードはあなたのものではありません!" +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -3351,21 +5831,38 @@ msgstr "その確認コードはあなたのものではありません!" msgid "No such user!" msgstr "そのようなユーザはいません。" +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "アカウント情報を取得できません" #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" キャンセルをクリックして下さい。" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " +"キャンセルをクリックして下さい。" #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy msgid "Search for more groups" msgstr "人々かテキストを検索" +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + #: lib/action.php:406 lib/action.php:425 #, fuzzy msgid "Connect to SMS, Twitter" @@ -3376,21 +5873,220 @@ msgstr "IM、SMS、Twitterに接続" msgid "Badge" msgstr "突く" +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関連付けて下さい。" +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"既にアカウントをお持ちの場合は、ユーザ名とパスワードでログインし、OpenIDと関" +"連付けて下さい。" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s は %2$s であなたの通知を聞いています。\n\n %3$s\n\n確かにあなたの,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s は %2$s であなたの通知を聞いています。\n" +"\n" +"\t%3$s\n" +"\n" +"確かにあなたの,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "検索" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -3407,15 +6103,19 @@ msgid "Block this user from this group" msgstr "このユーザをブロックする" #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "プロファイルがありません。" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s & ともだち" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -3431,26 +6131,56 @@ msgstr "確認コード" msgid "Do not delete this notice" msgstr "この通知を削除できません。" +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "不正なホームページ '%s'" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "アバターを保存できません" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -3461,11 +6191,28 @@ msgstr "新しい通知" msgid "No notice" msgstr "新しい通知" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "有効なニックネームではありません。" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -3482,6 +6229,32 @@ msgstr "そのプロファイルは送信されていません。" msgid "Block user from group" msgstr "そのようなユーザはいません。" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -3490,47 +6263,251 @@ msgstr "そのようなユーザはいません。" msgid "Couldn't update your design." msgstr "ユーザを更新できません" +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "設定が保存されました。" +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + #: actions/groupmembers.php:470 actions/groupmembers.php:473 #, fuzzy msgid "Make Admin" msgstr "管理者" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "結果なし" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "プロファイルがありません。" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "プロファイルを保存できません" +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログインすることができます。ここで関連付ける OpenID を管理して下さい。" +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) を使って同じアカウントで様々なウェブサイトへログイン" +"することができます。ここで関連付ける OpenID を管理して下さい。" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "プロファイル設定" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "パスワードを忘れた場合、登録されたアドレスで新しいものを受け取ることができます。" +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"パスワードを忘れた場合、登録されたアドレスで新しいものを受け取ることができま" +"す。" #: actions/recoverpassword.php:158 #, fuzzy @@ -3552,26 +6529,86 @@ msgstr "確認コードにエラーがあります。" msgid "Subscribe to a remote user" msgstr "購読が許可" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "そのような通知はありません。" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%sの通知フィード" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%sの通知フィード" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%sの通知フィード" +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy msgid "Admins" @@ -3582,49 +6619,124 @@ msgstr "管理者" msgid "Not a local notice" msgstr "そのようなユーザはいません。" +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "%sの通知フィード" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s は %2$s であなたの通知を聞いています。" #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%sの通知フィード" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%sの通知フィード" +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "ユーザを更新できません" +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "ユーザを更新できません" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$ のステータス %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "マイクロブログ by %s" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -3640,36 +6752,127 @@ msgstr "全てのサブスクリプション" msgid "Profile design" msgstr "プロファイル設定" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "そのプロファイルは送信されていません。" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "通知を保存する際に問題が発生しました。" +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "プロファイルがありません。" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "プロファイル" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "アップロード" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "パスワードの変更" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -3685,44 +6888,174 @@ msgstr "検索" msgid "Links" msgstr "ログイン" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "ブロック" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "そのようなユーザはいません。" #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "%s ロゴの追加や編集" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "コンテンツがありません!" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "検索" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "ホームページのURLが不適切です。" +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "そのような通知はありません。" +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "長すぎます。通知は最大 140 字までです。" @@ -3731,8 +7064,12 @@ msgstr "長すぎます。通知は最大 140 字までです。" msgid "Could not unfollow user: User not found." msgstr "サーバへリダイレクトできません : %s" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "バイオグラフィが長すぎます。(最長140字)" @@ -3742,7 +7079,7 @@ msgid "You are already a member of that group." msgstr "既にログイン済みです。" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "サーバへリダイレクトできません : %s" @@ -3752,41 +7089,64 @@ msgid "You are not a member of this group." msgstr "そのプロファイルは送信されていません。" #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "OpenIDを作成できません : %s" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "%s グループ" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." -msgstr "メンバー数が多いグループ" +msgstr "そのプロファイルは送信されていません。" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "このサイト上のグループを検索する" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "アバターが更新されました。" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "長すぎます。通知は最大 140 字までです。" +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "サポート外の画像形式です。" +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "バイオグラフィが長すぎます。(最長140字)" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "マイクロブログ by %s" + #: actions/finishremotesubscribe.php:80 #, fuzzy msgid "User being listened to does not exist." @@ -3817,18 +7177,49 @@ msgstr "そのような通知はありません。" msgid "Cannot read file." msgstr "そのような通知はありません。" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "マイクロブログ by %s" + #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "このページはあなたが承認したメディアタイプでは利用できません。" +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "マイクロブログ by %s" + #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "\"%s\" にヒットするすべてのアップデート" +msgstr "検索語「%s」に一致するすべての更新" + +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "接続" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "140字以内で自己紹介" @@ -3838,47 +7229,76 @@ msgid "Describe yourself and your interests" msgstr "140字以内で自己紹介" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." -msgstr "バイオグラフィが長すぎます。(最長140字)" +msgstr "自己紹介が長すぎます (最長140文字)。" + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "有効なプロファイルURLではありません。(XRDSドキュメントが無い)" +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "リクエストトークンを取得できません" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "%sの通知フィード" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "%sの通知フィード" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "%sの通知フィード" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "%s への返信" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "%s のともだちのフィード" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "%s のともだちのフィード" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "%s のともだちのフィード" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" msgstr "%sの通知フィード" @@ -3893,22 +7313,71 @@ msgid "SMS is not available." msgstr "このページはあなたが承認したメディアタイプでは利用できません。" #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%sの通知フィード" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" キャンセルをクリックして下さい。" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"ユーザの通知を購読するには詳細を確認して下さい。購読しない場合は、\"Cancel\" " +"キャンセルをクリックして下さい。" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "アバターURL を読み取れません '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "不正な画像形式。'%s'" @@ -3923,12 +7392,35 @@ msgid "Site content license" msgstr "新しい通知" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "サーバへリダイレクトできません : %s" +msgstr "ユーザを更新できません" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "この通知へ返信" @@ -3937,43 +7429,139 @@ msgstr "この通知へ返信" msgid "Error saving notice." msgstr "通知を保存する際に問題が発生しました。" +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "確認コードがありません。" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." msgstr "サイトへログイン" +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "グループやトピックを140字以内記述" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "グループやトピックを140字以内記述" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "%sの通知フィード" +msgstr "新しい通知" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s は %2$s であなたの通知を聞いています。" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" -msgstr "から" +msgstr "から " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "ユーザを更新できません" #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "新しい通知" - diff --git a/locale/ko/LC_MESSAGES/statusnet.mo b/locale/ko/LC_MESSAGES/statusnet.mo index 6fff9fc61ca84b15d460170b8b1d3920990fcd45..572c955675b1122ac5eb7dd298f63d3939ab5382 100644 GIT binary patch delta 23707 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 diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 619eade935..4f304f2212 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -1,20 +1,16 @@ # Translation of StatusNet to Korean # # -- -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:42+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:43:59+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: out-statusnet\n" @@ -28,7 +24,8 @@ msgstr "스트림에서 \"%s\" 검색" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." +msgid "" +" except this private data: password, email address, IM address, phone number." msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" #: ../actions/showstream.php:400 ../lib/stream.php:109 @@ -51,8 +48,55 @@ msgstr "%1$s님이 귀하를 %2$s에 초대하였습니다." #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s님이 귀하를 %2$s(%3$s)에 초대하였습니다.\n\n%2$s 서비스는 여러분의 친구 또는 같은 관심사를 가진 사람들의 최신 소식을 읽을 수 있는 마이크로블로깅 서비스 입니다.\n\n자기 자신이나, 생각, 생활에 대한 소식도 다른 사람에게 알릴 수 있습니다. 또 같은 관심사를 지닌 새로운 사람들을 만날 수 있는 좋은 장소입니다.\n%1$s님이 말하기를:\n%4$s\n\n%1$s님의 %2$s 프로파일을 보실 수 있습니다:\n\n%5$s\n\n이 서비스를 이용하시려면 밑의 링크를 눌러 초대에 응하십시오.\n\n%6$s\n\n아니면 이 메시지를 무시하시면 됩니다. 여기까지 읽어 주셔서 감사합니다.\n\n%2$s 보냄\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s님이 귀하를 %2$s(%3$s)에 초대하였습니다.\n" +"\n" +"%2$s 서비스는 여러분의 친구 또는 같은 관심사를 가진 사람들의 최신 소식을 읽" +"을 수 있는 마이크로블로깅 서비스 입니다.\n" +"\n" +"자기 자신이나, 생각, 생활에 대한 소식도 다른 사람에게 알릴 수 있습니다. 또 같" +"은 관심사를 지닌 새로운 사람들을 만날 수 있는 좋은 장소입니다.\n" +"%1$s님이 말하기를:\n" +"%4$s\n" +"\n" +"%1$s님의 %2$s 프로파일을 보실 수 있습니다:\n" +"\n" +"%5$s\n" +"\n" +"이 서비스를 이용하시려면 밑의 링크를 눌러 초대에 응하십시오.\n" +"\n" +"%6$s\n" +"\n" +"아니면 이 메시지를 무시하시면 됩니다. 여기까지 읽어 주셔서 감사합니다.\n" +"\n" +"%2$s 보냄\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -62,8 +106,18 @@ msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다. #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n %3$s\n\n그럼 이만,%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n" +"\t%3$s\n" +"\n" +"그럼 이만,%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -139,14 +193,22 @@ msgstr "모두로부터의 업데이트 %s개!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습니다.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습" +"니다.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 마이크로블로깅서비스입니다." +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " +"마이크로블로깅서비스입니다." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -169,7 +231,9 @@ msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백 #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 입력." +msgstr "" +"1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 " +"입력." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -190,17 +254,29 @@ msgstr "6글자 이상이 필요합니다." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전달할 수 있습니다." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전" +"달할 수 있습니다." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "추가한 이메일로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드와 사용법을 확인하여 주시기 바랍니다." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"추가한 이메일로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드" +"와 사용법을 확인하여 주시기 바랍니다." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드와 사용법을 확인하여 주시기 바랍니다." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" +"드와 사용법을 확인하여 주시기 바랍니다." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -380,7 +456,8 @@ msgstr "앞으로는 자동으로 로그인합니다. 공용 컴퓨터에서는 #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "나에게 구독하는 사람에게 자동 구독 신청" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 @@ -400,13 +477,21 @@ msgstr "아바타가 업데이트 되었습니다." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항목을 추가하셨습니까?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항" +"목을 추가하셨습니까?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 주시기 바랍니다." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"이 주소는 인증 대기중입니다. 수신함(또는 스팸함)을 확인하셔서 지침을 확인해 " +"주시기 바랍니다." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -543,8 +628,36 @@ msgstr "인증 코드가 없습니다." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "%s님 축하드립니다! %%%%site.name%%%%에 가입하신 것을 환영합니다!. 이제부터 아래의 일을 할 수 있습니다...\n\n* [나의 프로필](%s) 로 가셔서 첫 메시지를 포스트 해보십시오.\n* [Jabber 또는 GTalk계정](%%%%action.imsettings%%%%)을 추가하셔서 메신저로 통보를 받아 보십시오.\n* [친구 찾기](%%%%action.peoplesearch%%%%) 알거나 같은 관심사를 가지고 있는 분들을 찾아 보십시오. \n* [프로필 셋팅](%%%%action.profilesettings%%%%)을 업데이트 하셔서 다른분들에게 자신을 알려보십시오. \n* [온라인 도움말](%%%%doc.help%%%%)을 읽으면서 더 많은 기능을 확인해 보십시오. \n\n다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"%s님 축하드립니다! %%%%site.name%%%%에 가입하신 것을 환영합니다!. 이제부터 아" +"래의 일을 할 수 있습니다...\n" +"\n" +"* [나의 프로필](%s) 로 가셔서 첫 메시지를 포스트 해보십시오.\n" +"* [Jabber 또는 GTalk계정](%%%%action.imsettings%%%%)을 추가하셔서 메신저로 통" +"보를 받아 보십시오.\n" +"* [친구 찾기](%%%%action.peoplesearch%%%%) 알거나 같은 관심사를 가지고 있는 " +"분들을 찾아 보십시오. \n" +"* [프로필 셋팅](%%%%action.profilesettings%%%%)을 업데이트 하셔서 다른분들에" +"게 자신을 알려보십시오. \n" +"* [온라인 도움말](%%%%doc.help%%%%)을 읽으면서 더 많은 기능을 확인해 보십시" +"오. \n" +"\n" +"다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -951,8 +1064,11 @@ msgid "Find people on this site" msgstr "이 사이트에 있는 사람 찾기" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1037,16 +1153,26 @@ msgstr "메신저 설정" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "만일 계정을 이미 가지고 계신다면, 계정과 비밀 번호로 OpenID로 접속하기 위하여 입력해 주세요." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"만일 계정을 이미 가지고 계신다면, 계정과 비밀 번호로 OpenID로 접속하기 위하" +"여 입력해 주세요." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "만일 새 OpenID를 추가하시려면, 밑의 박스에 입력하신 후 \"추가\"를 누르십시오." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"만일 새 OpenID를 추가하시려면, 밑의 박스에 입력하신 후 \"추가\"를 누르십시오." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1076,7 +1202,9 @@ msgstr "틀린 계정 또는 비밀 번호" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "가입하신 이메일로 비밀 번호 재발급에 관한 안내를 보냈습니다." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 @@ -1173,8 +1301,14 @@ msgstr "새 사용자를 초대" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "이 사이트는 [StatusNet](http://status.net/) 마이크로블로깅 소프트웨어 %s 버전을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"이 사이트는 [StatusNet](http://status.net/) 마이크로블로깅 소프트웨어 %s 버전" +"을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." +"fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1184,8 +1318,12 @@ msgstr "Jabber ID가 이미 다른 사용자에 의하여 사용되고 있습니 #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 " +"GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1252,8 +1390,14 @@ msgstr "[OpenID](%%doc.openid%%)로 로그인하세요." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사용해 보세요." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" +"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" +"용해 보세요." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1298,7 +1442,9 @@ msgstr "%s의 마이크로블로그" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." msgstr "귀하의 휴대폰의 통신회사는 무엇입니까?" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 @@ -1349,7 +1495,8 @@ msgstr "새로운 비밀 번호" #: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 #: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." -msgstr "새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." +msgstr "" +"새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." #: ../actions/login.php:101 ../actions/profilesettings.php:41 #: ../actions/register.php:151 actions/login.php:101 @@ -1395,7 +1542,9 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십 #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니다." +msgstr "" +"별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니" +"다." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1921,8 +2070,13 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "지역번호와 함께 띄어쓰기 없이 번호를 적어 주세요." #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소\"를 클릭해 주세요." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" +"\"를 클릭해 주세요." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2105,8 +2259,12 @@ msgid "Remove OpenID" msgstr "OpenID 삭제" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "마지막 OpenID를 삭제하면, 로그인 할 수 없게 됩니다! 삭제하기 전에, 다른 OpenID를 추가해 주십시오." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"마지막 OpenID를 삭제하면, 로그인 할 수 없게 됩니다! 삭제하기 전에, 다른 " +"OpenID를 추가해 주십시오." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2202,13 +2360,21 @@ msgstr "스트림 피드를 검색" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%% 의 통지를 내용으로부터 검색. 검색어는 스페이스로 구분한다; 적어도 3글자 이상 필요." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% 의 통지를 내용으로부터 검색. 검색어는 스페이스로 구분한다; 적어" +"도 3글자 이상 필요." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; 적어도 3글자 이상 필요." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " +"적어도 3글자 이상 필요." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2243,13 +2409,18 @@ msgstr "Jabber/GTalk 로 통지를 보내주세요." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "통지를 SMS로 보내주세요; 물론 통신사로부터 바가지 요금을 문다는 것은 알고 있습니다." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"통지를 SMS로 보내주세요; 물론 통신사로부터 바가지 요금을 문다는 것은 알고 있" +"습니다." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." +msgstr "" +"내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2481,13 +2652,23 @@ msgstr "주소가 삭제되었습니다." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 해지 방법에 대하여 읽어보십시오." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2513,7 +2694,8 @@ msgstr "귀하의 통지를 받고 있는 사람" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "자동 구독 신청이 된 사용자:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 @@ -2521,14 +2703,23 @@ msgid "This confirmation code is too old. Please start again." msgstr "이 인증 코드는 오래됐습니다. 다시 발급 받아 주십시오." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "이 양식은 자동으로 등록됩니다. 자동으로 되지 않는 경우는, 등록을 클릭해 주세요. OpenID 프로바이더에 전송 됩니다." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"이 양식은 자동으로 등록됩니다. 자동으로 되지 않는 경우는, 등록을 클릭해 주세" +"요. OpenID 프로바이더에 전송 됩니다." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "%s 계정으로 최초 로그인입니다. OpenID와의 연결이 필요합니다. 계정을 새로 생성하거나 기존의 계정으로 연결 하실 수 있습니다." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"%s 계정으로 최초 로그인입니다. OpenID와의 연결이 필요합니다. 계정을 새로 생성" +"하거나 기존의 계정으로 연결 하실 수 있습니다." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2577,8 +2768,14 @@ msgstr "타임존이 설정 되지 않았습니다." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "구독하려면, [로그인](%%action.login%%)하거나, 새 계정을 [등록](%%action.register%%)하십시오. 이미 계정이 [호환되는 마이크로블로깅 사이트]((%%doc.openmublog%%)에 계정이 있으면, 아래에 프로파일 URL을 입력하십시오." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"구독하려면, [로그인](%%action.login%%)하거나, 새 계정을 [등록](%%action." +"register%%)하십시오. 이미 계정이 [호환되는 마이크로블로깅 사이트]((%%doc." +"openmublog%%)에 계정이 있으면, 아래에 프로파일 URL을 입력하십시오." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2632,8 +2829,12 @@ msgid "Unknown version of OMB protocol." msgstr "OMB 프로토콜의 알려지지 않은 버전" #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "따로 지정하지 않는다면, 이 사이트의 내용의 저작권은 작성한 사람에게 있으며 다음 라이선스로 이용할 수 있습니다: " +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"따로 지정하지 않는다면, 이 사이트의 내용의 저작권은 작성한 사람에게 있으며 다" +"음 라이선스로 이용할 수 있습니다: " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2694,8 +2895,15 @@ msgid "Upload" msgstr "올리기" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "여기에 새 아바타이미지를 올려보세요. 업로드후에는 사진을 편집할 수 없습니다. 사이즈 영역을 늘리거나 줄일 수 있습니다. 그것은 사이트의 라이선스하에 있게됩니다. 당신의 소유이면서 공유하고 싶은 사진을 이용해보세요." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"여기에 새 아바타이미지를 올려보세요. 업로드후에는 사진을 편집할 수 없습니다. " +"사이즈 영역을 늘리거나 줄일 수 있습니다. 그것은 사이트의 라이선스하에 있게됩" +"니다. 당신의 소유이면서 공유하고 싶은 사진을 이용해보세요." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2703,7 +2911,8 @@ msgstr "새 프로필 사진 올리기" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "다음 양식을 이용해 친구와 동료를 이 서비스에 초대하십시오." #: ../actions/register.php:159 ../actions/register.php:162 @@ -2797,8 +3006,11 @@ msgid "You already have this OpenID!" msgstr "당신은 이미 오픈ID를 가지고 있습니다." #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2827,22 +3039,34 @@ msgstr "계정을 새로 만들면 새로운 게시글을 작성할 수 있습 #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다." +msgstr "" +"당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "당신은 \"Remove\"로 표기된 버튼클릭을 통해 계정에서 오픈ID를 제거할 수 있습니다." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"당신은 \"Remove\"로 표기된 버튼클릭을 통해 계정에서 오픈ID를 제거할 수 있습니" +"다." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아래 당신의 주소와 환경설정을 조정하세요." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아" +"래 당신의 주소와 환경설정을 조정하세요." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "사람들이 당신에 대해 좀 더 잘 알 수 있도록 여기 당신의 개인 프로필을 업데이트 할 수 있습니다. " +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"사람들이 당신에 대해 좀 더 잘 알 수 있도록 여기 당신의 개인 프로필을 업데이" +"트 할 수 있습니다. " #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2866,8 +3090,18 @@ msgstr "당신은 프로필을 우리에게 전송하지 않았다." #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시오.이메일 사용법은 %3$s 페이지를 보십시오.안녕히,%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시" +"오.이메일 사용법은 %3$s 페이지를 보십시오.안녕히,%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2883,8 +3117,12 @@ msgstr "로그인을 해야 다른 사용자를 %s에 초대할 수 있습니다 #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "당신의 초대를 받은 사람들이 수락하고, 사이트에 등록할때 공지를 받을 수 있습니다. 커뮤니티를 키워주셔서 대단히 감사합니다. ^^" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"당신의 초대를 받은 사람들이 수락하고, 사이트에 등록할때 공지를 받을 수 있습니" +"다. 커뮤니티를 키워주셔서 대단히 감사합니다. ^^" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2902,8 +3140,12 @@ msgstr "이 서버에서 당신의 닉네임 혹은 당신의 등록된 이메 #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 " +"있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3099,8 +3341,12 @@ msgstr "당신의 받은 쪽지함입니다. 당신이 받은 비밀 메시지 #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s 사용자가 %2$s에 (%3$s) 초대했습니다.\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s 사용자가 %2$s에 (%3$s) 초대했습니다.\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3142,8 +3388,10 @@ msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;" +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"자신에게 메시지를 보내지 마세요. 대신 조용하게 스스로에게 그것을 말하세요;;" #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3163,7 +3411,8 @@ msgstr "프로필매칭 없이 바로 글을 씁니다." #: actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "[OpenID](%%doc.openid%%) lets you log into many sites " -msgstr "[오픈ID](%%doc.openid%%) 는 당신이 많은 사이트에 로그인할 수 있게 합니다." +msgstr "" +"[오픈ID](%%doc.openid%%) 는 당신이 많은 사이트에 로그인할 수 있게 합니다." #: actions/openidsettings.php:46 actions/openidsettings.php:96 msgid "If you want to add an OpenID to your account, " @@ -3193,7 +3442,8 @@ msgstr "당신의 보낸 쪽지함입니다. 이곳엔 당신이 보냈던 비 #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " msgstr "이름, 장소, 흥미로 %%site.name%%에서 사람들을 찾아보세요." #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3245,8 +3495,12 @@ msgstr "비밀번호는 6자리 이상이어야 합니다." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "축하합니다 %s님!! %%%%site.name%%%%에 오신걸 환영합니다. 다음과 같은 일을 하실 수 있습니다..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"축하합니다 %s님!! %%%%site.name%%%%에 오신걸 환영합니다. 다음과 같은 일을 하" +"실 수 있습니다..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3369,12 +3623,19 @@ msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "%1$s 사용자가 %2$s의 귀하의 글을 좋아하는 글로 추가했습니다.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"%1$s 사용자가 %2$s의 귀하의 글을 좋아하는 글로 추가했습니다.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니다." +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니" +"다." #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3421,8 +3682,12 @@ msgstr "여기에서 내 트위터 친구들을 구독합니다." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "사용자 이름은 단지 숫자이거나, 대소문자, 그리고 언더바(_)로 구성되어야 하고, 최대 15자 이내이어야 합니다." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"사용자 이름은 단지 숫자이거나, 대소문자, 그리고 언더바(_)로 구성되어야 하고, " +"최대 15자 이내이어야 합니다." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3637,8 +3902,12 @@ msgstr "시스템에 프로필 매칭이 없는 사용자" #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "You have a new posting address on %1$s.\n\n" -msgstr "당신은 %1$s에 새 포스팅 주소를 가진다. \n\n" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" +"당신은 %1$s에 새 포스팅 주소를 가진다. \n" +"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3647,8 +3916,12 @@ msgstr "%s로부터 새로운 비밀 메시지가 도착하였습니다." #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "%1$s(%2$s)님이 당신에게 비밀 메시지를 보냈습니다 : \n \n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"%1$s(%2$s)님이 당신에게 비밀 메시지를 보냈습니다 : \n" +" \n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4144,7 +4417,8 @@ msgstr "새 그룹을 만듭니다." #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " msgstr "이름과 위치, 상세설명으로 %%site.name%% 에서 그룹을 찾습니다." #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4274,8 +4548,10 @@ msgid "Ajax Error" msgstr "Ajax 에러입니다." #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "이 사용자는 nudge를 허용하지 않았고, 아직 그의 이메일을 인증하지 않았습니다." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"이 사용자는 nudge를 허용하지 않았고, 아직 그의 이메일을 인증하지 않았습니다." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4349,7 +4625,8 @@ msgstr "프로필 정보" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분." #: actions/profilesettings.php:144 @@ -4381,8 +4658,12 @@ msgstr "공개 stream을 불러올 수 없습니다." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) 서비스 입니다." +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " +"서비스 입니다." #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4529,8 +4810,12 @@ msgstr "모든 회원" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/Micro-blogging)의 사용자 그룹입니다. " +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" +"Micro-blogging)의 사용자 그룹입니다. " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4582,8 +4867,12 @@ msgstr "모든 그룹" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/Micro-blogging) 서비스에 계정을 갖고 있습니다." +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" +"Micro-blogging) 서비스에 계정을 갖고 있습니다." #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4688,16 +4977,22 @@ msgid "Tag user" msgstr "태그 사용자" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세요." +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세" +"요." #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"당신이 구독하거나 당신을 구독하는 사람들에 대해서만 태그를 붙일 수 있습니다." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4791,8 +5086,11 @@ msgstr "게시글 저장문제. 알려지지않은 회원" #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 해보세요." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " +"해보세요." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -4971,7 +5269,8 @@ msgstr "140글자로 그룹이나 토픽 설명하기" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "그룹의 위치, \"시/군/구, 도, 나라\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5035,8 +5334,12 @@ msgstr "오픈ID로 로그인 혹은 회원가입" #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "안녕, %s. \n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"안녕, %s. \n" +"\n" #: lib/mail.php:236 #, php-format @@ -5055,8 +5358,12 @@ msgstr "홈페이지: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "소개: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"소개: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5224,17 +5531,17 @@ msgid "Unsubscribe from this user" msgstr "이 사용자로부터 구독취소합니다." #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s의 친구들을 위한 피드" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s의 친구들을 위한 피드" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s의 친구들을 위한 피드" @@ -5244,7 +5551,7 @@ msgid "You and friends" msgstr "%s 및 친구들" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." @@ -5253,10 +5560,20 @@ msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다." msgid "Avatar deleted." msgstr "아바타가 업데이트 되었습니다." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"영구적으로 게시글을 삭제하려고 합니다. 한번 삭제되면, 복구할 수 없습니다." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5268,9 +5585,29 @@ msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "누군가 내게 비밀메시지를 보냈을때, 이메일을 보냅니다." +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format, fuzzy -msgid "You can upload a logo image for your group. The maximum file size is %s." +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5279,14 +5616,28 @@ msgid "Pick a square area of the image to be the logo." msgstr "당신의 아바타가 될 이미지영역을 지정하세요." #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "%s의 마이크로블로그" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; 적어도 3글자 이상 필요." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% 의 사람을 이름, 장소, 흥미로 검색. 검색어는 스페이스 구분한다; " +"적어도 3글자 이상 필요." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" #: actions/newmessage.php:102 #, fuzzy @@ -5294,14 +5645,17 @@ msgid "Only logged-in users can send direct messages." msgstr "직접 메시지 보내기 오류." #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "스트림에서 \"%s\" 검색" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5318,9 +5672,32 @@ msgstr "퍼블릭 스트림 피드" msgid "Public Stream Feed (Atom)" msgstr "퍼블릭 스트림 피드" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호" #: actions/showgroup.php:378 actions/showgroup.php:424 @@ -5329,33 +5706,44 @@ msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주 msgid "Created" msgstr "생성" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "그룹 프로필" #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "'의 프로필" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "%s의 통지 피드" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "%s의 통지 피드" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "%s의 통지 피드" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "%s의 보낸쪽지함" @@ -5371,10 +5759,47 @@ msgstr "아바타" msgid "Edit profile settings" msgstr "프로필 세팅" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코드와 사용법을 확인하여 주시기 바랍니다." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"추가한 휴대폰으로 인증 코드를 보냈습니다. 수신함(또는 스팸함)을 확인하셔서 코" +"드와 사용법을 확인하여 주시기 바랍니다." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5391,18 +5816,27 @@ msgstr "그러한 사용자가 없습니다." #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니다." +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"당신의 트위터 계정을 추가하세요. 자동적으로 당신의 메시지를 트위터에 전송합니" +"다." #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "트위터로부터 \"%s\"를 위한 계정정보를 불러올 수 없습니다." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소\"를 클릭해 주세요." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" +"\"를 클릭해 주세요." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5411,8 +5845,12 @@ msgstr "프로필이나 텍스트 검색" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 해보세요." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " +"해보세요." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5424,21 +5862,216 @@ msgstr "IM, SMS, 트위터에 연결하기" msgid "Badge" msgstr "찔러 보기" +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "당신이 필요한 페이스북 어플리케이션 %s의 사용을 위해서 로그인하세요." +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n %3$s\n\n그럼 이만,%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다.\n" +"\t%3$s\n" +"\n" +"그럼 이만,%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "검색" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5455,12 +6088,12 @@ msgid "Block this user from this group" msgstr "이 그룹의 회원리스트" #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "이용자 프로필" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s 와 친구들, %d 페이지" @@ -5484,26 +6117,56 @@ msgstr "인증 코드" msgid "Do not delete this notice" msgstr "이 통지를 지울 수 없습니다." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "유효하지 않은태그: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "좋아하는 게시글을 생성할 수 없습니다." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5514,6 +6177,14 @@ msgstr "새로운 통지" msgid "No notice" msgstr "새로운 통지" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5525,6 +6196,10 @@ msgstr "유효한 별명이 아닙니다" msgid "No group specified." msgstr "프로필을 지정하지 않았습니다." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5541,6 +6216,18 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다." msgid "Block user from group" msgstr "사용자를 차단합니다." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5551,6 +6238,12 @@ msgstr "그룹을 만들기 위해서는 로그인해야 합니다." msgid "Group design" msgstr "그룹" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5583,46 +6276,231 @@ msgstr "관리자만 그룹을 편집할 수 있습니다." msgid "Make Admin" msgstr "관리자" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "결과 없음" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "회원이 당신을 차단해왔습니다." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "메시지" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "프로필을 저장 할 수 없습니다." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[오픈ID](%%doc.openid%%)는 당신을 동일한 계정으로 많은 사이트에 로그인할 수 " +"있게 해줍니다. 여기에서 당신의 관련된 오픈ID를 관리하세요." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "프로필 세팅" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) 서비스 입니다." +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) " +"서비스 입니다." + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"만일 비밀 번호를 잊으셨다면 가입하신 이메일로 새 비밀 번호를 보내드립니다." #: actions/recoverpassword.php:158 #, fuzzy @@ -5644,30 +6522,87 @@ msgstr "확인 코드 오류" msgid "Subscribe to a remote user" msgstr "이 회원을 구독합니다." +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "%s 좋아하는 게시글, %d 페이지" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s 그룹을 위한 공지피드" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s 그룹을 위한 공지피드" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s 그룹을 위한 공지피드" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/Micro-blogging)의 사용자 그룹입니다. " +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** 는 %%%%site.name%%%% [마이크로블로깅)(http://en.wikipedia.org/wiki/" +"Micro-blogging)의 사용자 그룹입니다. " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -5680,33 +6615,84 @@ msgid "Not a local notice" msgstr "로컬 사용자 아닙니다." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "%s 태그된 통지" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "%s 그룹을 위한 공지피드" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/Micro-blogging) 서비스에 계정을 갖고 있습니다." +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" +"Micro-blogging) 서비스에 계정을 갖고 있습니다." + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s 는 지금 듣고 있습니다." #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s의 통지 피드" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s의 통지 피드" @@ -5737,16 +6723,20 @@ msgid "Could not find target user." msgstr "어떠한 상태도 찾을 수 없습니다." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / %2$s에게 답신 업데이트" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5762,41 +6752,127 @@ msgstr "%s 구독" msgid "Profile design" msgstr "프로필 세팅" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "%2$s에서 %1$s까지 메시지" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "이용자 프로필" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "프로필" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "올리기" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "비밀번호 바꾸기" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5812,21 +6888,127 @@ msgstr "검색" msgid "Links" msgstr "로그인" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "차단하기" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "사용자를 차단합니다." #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "%s logo 추가 혹은 수정" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5842,11 +7024,26 @@ msgstr "이용자" msgid "Search help" msgstr "검색" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "홈페이지 주소형식이 올바르지 않습니다." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5854,12 +7051,12 @@ msgid "No such page" msgstr "그러한 태그가 없습니다." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "%s에게 직접 메시지" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "메시지가 너무 길어요. 최대로 140자까지 입력하실 수 있습니다." @@ -5868,8 +7065,12 @@ msgstr "메시지가 너무 길어요. 최대로 140자까지 입력하실 수 msgid "Could not unfollow user: User not found." msgstr "따라가실 수 없습니다 : 사용자가 없습니다." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "설명이 너무 길어요. (최대 140글자)" @@ -5879,7 +7080,7 @@ msgid "You are already a member of that group." msgstr "당신은 이미 이 그룹의 멤버입니다." #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "그룹 %s에 %s는 가입할 수 없습니다." @@ -5889,31 +7090,45 @@ msgid "You are not a member of this group." msgstr "당신은 해당 그룹의 멤버가 아닙니다." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "%s 그룹" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "%s 그룹들은 의 멤버입니다." #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "그룹 행동" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "아바타가 업데이트 되었습니다." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -5925,12 +7140,12 @@ msgid "Post to " msgstr "사진" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "설명이 너무 길어요. (최대 140글자)" #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -5965,7 +7180,7 @@ msgid "Cannot read file." msgstr "파일을 잃어버렸습니다." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s에 있는 %1$s의 업데이트!" @@ -5975,17 +7190,41 @@ msgid "IM is not available." msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사용해 보세요." +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"귀하의 계정과 비밀 번호로 로그인 하세요. 계정이 아직 없으세요? [가입](%%" +"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" +"용해 보세요." + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "%2$s에 있는 %1$s의 업데이트!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "\"%s\" 에 일치하는 모든 업데이트" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "연결" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "140자 이내에서 자기 소개" @@ -5995,13 +7234,20 @@ msgid "Describe yourself and your interests" msgstr "당신에 대해 소개해주세요." #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "자기소개가 너무 깁니다. (최대 140글자)" +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "유효한 프로필 URL이 아닙니다. (YADIS 문서가 없습니다)" #: actions/remotesubscribe.php:176 @@ -6014,35 +7260,53 @@ msgstr "그것은 로컬프로필입니다. 구독을 위해서는 로그인하 msgid "Couldn’t get a request token." msgstr "리퀘스트 토큰을 취득 할 수 없습니다." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "%s의 통지 피드" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "%s의 통지 피드" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "%s 그룹을 위한 공지피드" +msgstr "%s의 통지 피드" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "%2$s에서 %1$s까지 메시지" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "%s의 좋아하는 게시글을 위한 피드" +msgstr "%s의 친구들을 위한 피드" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "%s의 좋아하는 게시글을 위한 피드" +msgstr "%s의 친구들을 위한 피드" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "%s의 좋아하는 게시글을 위한 피드" +msgstr "%s의 친구들을 위한 피드" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "%s 그룹" +msgstr "%s의 보낸쪽지함" #: actions/shownotice.php:90 #, fuzzy @@ -6055,32 +7319,77 @@ msgid "SMS is not available." msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s의 통지 피드" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소\"를 클릭해 주세요." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" +"\"를 클릭해 주세요." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지시를 찾아 구독 해지 방법에 대하여 읽어보십시오." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" +"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "%S 잘못된 그림 파일 타입입니다. " @@ -6095,27 +7404,35 @@ msgid "Site content license" msgstr "라코니카 소프트웨어 라이선스" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "찔러 보기를 보냈습니다." +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다." #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "이 게시글에 대해 답장하기" @@ -6124,11 +7441,54 @@ msgstr "이 게시글에 대해 답장하기" msgid "Error saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "확인 코드가 없습니다." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6145,32 +7505,76 @@ msgid "Describe the group or topic" msgstr "140글자로 그룹이나 토픽 설명하기" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "140글자로 그룹이나 토픽 설명하기" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "%s의 통지 피드" +msgstr "새로운 통지" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "다음에서:" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "favorite을 삭제할 수 없습니다." +msgstr "공개 stream을 불러올 수 없습니다." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "통지 삭제" - diff --git a/locale/mk/LC_MESSAGES/statusnet.mo b/locale/mk/LC_MESSAGES/statusnet.mo index c64c70c726db36fe6419c5f0b8700f58cd558ae6..d931277e3a12d2ce747302f3a9ad536f19255469 100644 GIT binary patch delta 13255 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 diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index e6ded5d570..5061e1b845 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -2,28 +2,16 @@ # # Author@translatewiki.net: Bjankuloski06 # -- -# #-#-#-#-# statusnet.pot (PACKAGE VERSION) #-#-#-#-# -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2008 FREE SOFTWARE MACEDONIA -# This file is distributed under the same license as the PACKAGE package. -# IGOR STAMATOVSKI , 2008. -# -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-# -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:23:54+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:44:02+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: out-statusnet\n" @@ -37,8 +25,60 @@ msgstr "Пребарувај го потокот за „%s“" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, телефонски број." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " +"телефонски број." + +#: ../actions/showstream.php:400 ../lib/stream.php:109 +#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 +msgid " from " +msgstr "" + +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#, php-format +msgid "%1$s / Updates replying to %2$s" +msgstr "" + +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "" + +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -48,8 +88,27 @@ msgstr "%1$s сега ги следи вашите забелешки за %2$s. #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s сега ги следи вашите забелешки на %2$s.\n\n %3$s\n\nИскрено ваш,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s сега ги следи вашите забелешки на %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Искрено ваш,\n" +"%4$s.\n" + +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -58,6 +117,13 @@ msgstr "%1$s сега ги следи вашите забелешки на %2$s. msgid "%1$s's status on %2$s" msgstr "%1$s статус на %2$s" +#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 +#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "" + #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format @@ -79,11 +145,52 @@ msgstr "Јавниот поток на %s" msgid "%s and friends" msgstr "%s и пријателите" +#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "" + +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "" + +#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "" + +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "" + +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" + #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." +"broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -103,6 +210,11 @@ msgstr ". Придонесувачите треба да бидат наведе msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места." +#: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" + #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" @@ -114,11 +226,110 @@ msgstr "6 или повеќе знаци" msgid "6 or more characters, and don't forget it!" msgstr "6 или повеќе знаци и не ја заборавајте!" +#: ../actions/register.php:154 actions/register.php:168 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 +msgid "6 or more characters. Required." +msgstr "" + #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Испративме код за потврда на IM адресата што ја додадовте. Мора да го одобрите %S за да ви испраќа пораки." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Испративме код за потврда на IM адресата што ја додадовте. Мора да го " +"одобрите %S за да ви испраќа пораки." + +#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/smssettings.php:216 actions/smssettings.php:224 +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 +#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 +#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 +#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 +#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 +#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 +#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 +#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 +#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 +#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 +#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 +#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 +#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 +#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 +#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "" + +#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 +#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 +#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 +#: ../actions/twitapidirect_messages.php:49 +#: ../actions/twitapidirect_messages.php:56 +#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 +#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 +#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 +#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 +#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 +#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 +#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 +#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 +#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 +#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 +#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 +#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 +#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 +msgid "API method under construction." +msgstr "" #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 @@ -149,6 +360,11 @@ msgstr "Додај" msgid "Add OpenID" msgstr "Додај OpenID" +#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 +#: lib/accountsettingsaction.php:117 +msgid "Add or remove OpenIDs" +msgstr "" + #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 @@ -158,6 +374,11 @@ msgstr "Додај OpenID" msgid "Address" msgstr "Адреса" +#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" + #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" @@ -189,6 +410,12 @@ msgstr "Веќе сте најавени." msgid "Already subscribed!." msgstr "Веќе сте претплатени!" +#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "" + #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 @@ -200,7 +427,15 @@ msgstr "Одобрете ја претплатата" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Следниот пат најавете се автоматски; не за компјутери кои ги делите со други!" +msgstr "" +"Следниот пат најавете се автоматски; не за компјутери кои ги делите со други!" + +#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -219,8 +454,25 @@ msgstr "Аватарот е ажуриран." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Чекам потвдар за оваа адреса. Проверете ја вашата Jabber/GTalk сметка за порака со понатамошни инструкции. (Дали го додадовте %s на вашата листа со пријатели?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Чекам потвдар за оваа адреса. Проверете ја вашата Jabber/GTalk сметка за " +"порака со понатамошни инструкции. (Дали го додадовте %s на вашата листа со " +"пријатели?)" + +#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" + +#: ../actions/smssettings.php:58 actions/smssettings.php:58 +#: actions/smssettings.php:111 actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "" #: ../lib/util.php:1318 lib/util.php:1452 msgid "Before »" @@ -243,6 +495,11 @@ msgstr "Био" msgid "Bio is too long (max 140 chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." +#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "" + #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format @@ -276,16 +533,37 @@ msgstr "Не е возможно да се инстанцира OpenID обје msgid "Cannot normalize that Jabber ID" msgstr "Ова JabberID не може да се нормализира." +#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "" + #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Промени" +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "" + #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "Промени ја лозинката" +#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "" + +#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "" + #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 #: actions/profilesettings.php:182 actions/recoverpassword.php:187 @@ -313,11 +591,36 @@ msgstr "Потврди ја адресата" msgid "Confirmation cancelled." msgstr "Потврдата е откажана" +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "" + #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Кодот за потврда не е пронајден." +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" + #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -341,6 +644,21 @@ msgstr "Контакт" msgid "Could not create OpenID form: %s" msgstr "OpenID формуларот не може да се креира:%s" +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "" + +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" + #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format @@ -357,6 +675,19 @@ msgstr "Информациите за аватарот не може да се msgid "Could not save new profile info" msgstr "Информациите за новиот профил не може да се снимат" +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "" + +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 +msgid "Could not subscribe." +msgstr "" + +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." @@ -377,6 +708,11 @@ msgstr "Не може да се креира потврда за е-пошта." msgid "Couldn't delete subscription." msgstr "Претплата не може да се избрише." +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 +msgid "Couldn't find any statuses." +msgstr "" + #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." @@ -405,6 +741,22 @@ msgstr "Не може да се внесе нова претплата." msgid "Couldn't save profile." msgstr "Профилот не може да се сними." +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "" + +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -452,16 +804,38 @@ msgstr "Креирање на нова сметка за OpenID што веќе msgid "Current confirmed Jabber/GTalk address." msgstr "Моментално потврдена Jabber/GTalk адреса." +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" + +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" + #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "Моментално" +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Одговор од внесот во базата: %s" +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "" + #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -478,6 +852,16 @@ msgstr "Опишете се себе си и сопствените интере msgid "Email" msgstr "Е-пошта" +#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 +msgid "Email Address" +msgstr "" + +#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "" + #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." @@ -487,12 +871,27 @@ msgstr "Адресата веќе постои." msgid "Email address confirmation" msgstr "Потврдување на адресата" +#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "" + +#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 +msgid "Email addresses" +msgstr "" + #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Внесете прекар или е-пошта" +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" + #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" @@ -610,9 +1009,29 @@ msgstr "Канал со пријатели на %S" msgid "Feed for replies to %s" msgstr "Канал со одговори на %s" +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 +#, php-format +msgid "Feed for tag %s" +msgstr "" + +#: ../lib/searchaction.php:105 lib/searchaction.php:105 +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "" + +#: ../lib/searchaction.php:101 lib/searchaction.php:101 +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "" + #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Поради безбедносни причини треба повторно да го внесете Вашето корисничко име и лозинка пред да ги смените Вашите поставки." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Поради безбедносни причини треба повторно да го внесете Вашето корисничко " +"име и лозинка пред да ги смените Вашите поставки." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -674,6 +1093,17 @@ msgstr "Домашна страница" msgid "Homepage is not a valid URL." msgstr "Домашната страница не е правилно URL." +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "" + +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "" + #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -686,12 +1116,40 @@ msgstr "Поставки за IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за истата да ја поврзете со Вашиот OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за " +"истата да ја поврзете со Вашиот OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Ако сакате да додадете OpenID на Вашата сметка, внесете го подолу и кликнете „Додај“." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Ако сакате да додадете OpenID на Вашата сметка, внесете го подолу и кликнете " +"„Додај“." + +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" + +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 @@ -707,8 +1165,12 @@ msgstr "Неточно корисничко име или лозинка" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Упатството за пронаоѓање на Вашата лозинка е испратено до адресата за е-пошта што е регистрирана со Вашата сметка." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Упатството за пронаоѓање на Вашата лозинка е испратено до адресата за е-" +"пошта што е регистрирана со Вашата сметка." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -716,6 +1178,12 @@ msgstr "Упатството за пронаоѓање на Вашата лоз msgid "Invalid avatar URL '%s'" msgstr "Неправилно URL за аватар: '%s'" +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "" + #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format @@ -774,11 +1242,38 @@ msgstr "Погрешна големина." msgid "Invalid username or password." msgstr "Погрешно име или лозинка." +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "" + +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" + +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 +msgid "Invite" +msgstr "" + +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 +msgid "Invite new users" +msgstr "" + #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Работи на [StatusNet](http://status.net/) софтверот за микроблогирање, верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Работи на [StatusNet](http://status.net/) софтверот за микроблогирање, " +"верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -788,8 +1283,24 @@ msgstr "Ова Jabber ID му припаќа на друг корисник." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Jabber или GTalk адреса како „ime@example.org“. Но прво додајте го %s во Вашата контакт листа во Вашиот IM клиент или GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber или GTalk адреса како „ime@example.org“. Но прво додајте го %s во " +"Вашата контакт листа во Вашиот IM клиент или GTalk." + +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "" + +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "" #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -844,20 +1355,43 @@ msgstr "Пријавете се со [OpenID](%%doc.openid%%) сметка." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action.register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action." +"register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Одјави се" +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 +msgid "Longer name, preferably your \"real\" name" +msgstr "" + #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Загубена или заборавена лозинка?" +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "" + #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -869,6 +1403,14 @@ msgstr "Член од" msgid "Microblog by %s" msgstr "Микроблог на %s" +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 @@ -877,6 +1419,25 @@ msgstr "Микроблог на %s" msgid "My text and files are available under " msgstr "Мојот текст и датотеки се достапни под" +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "" + +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "" + #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -961,6 +1522,14 @@ msgstr "Прекар на корисникот што сакате да го с msgid "Nickname or email" msgstr "Прекар или е-пошта" +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 +msgid "No" +msgstr "" + #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." @@ -972,6 +1541,16 @@ msgstr "Нема JabberID." msgid "No authorization request!" msgstr "Нема барање за проверка!" +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" + +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 +msgid "No code entered" +msgstr "" + #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -986,10 +1565,23 @@ msgstr "Нема код за потврда." msgid "No content!" msgstr "Нема содржина!" +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "" + #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "Нема id." +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -1011,6 +1603,11 @@ msgstr "Нема прекар." msgid "No pending confirmation to cancel." msgstr "Нема потврди кои може да се откажат." +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 +msgid "No phone number." +msgstr "" + #: ../actions/finishremotesubscribe.php:72 #: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 msgid "No profile URL returned by server." @@ -1039,6 +1636,21 @@ msgstr "Нема резултати" msgid "No size." msgstr "Нема големина." +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" + +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "" + #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1104,6 +1716,12 @@ msgstr "Нема таква претплата" msgid "No such user." msgstr "Нема таков корисник." +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" + #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "Нема никој!" @@ -1113,6 +1731,21 @@ msgstr "Нема никој!" msgid "Not a recovery code." msgstr "Ова не е код за спасување." +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 +msgid "Not a registered user." +msgstr "" + +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 +msgid "Not a supported data format." +msgstr "" + #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1123,6 +1756,12 @@ msgstr "Неправилен JabberID" msgid "Not a valid OpenID." msgstr "Неправилен OpenID." +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "" + #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." @@ -1172,6 +1811,12 @@ msgstr "Не е одобрено." msgid "Not expecting this response!" msgstr "Овој одговор не беше очекуван!" +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 +msgid "Not found" +msgstr "" + #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 #: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 @@ -1196,6 +1841,11 @@ msgstr "Не сте пријавени." msgid "Not subscribed!." msgstr "Не сте претплатени!" +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" + #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 @@ -1216,6 +1866,14 @@ msgstr "Известувањето нема профил" msgid "Notices" msgstr "Известувања" +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" + #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1283,6 +1941,11 @@ msgstr "OpenID-то е отстрането" msgid "OpenID settings" msgstr "Поставки за OpenID" +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "" + #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -1337,6 +2000,16 @@ msgstr "Лозинката е снимена." msgid "Passwords don't match." msgstr "Лозинките не се совпаѓаат." +#: ../lib/searchaction.php:100 lib/searchaction.php:100 +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "" + +#: ../actions/opensearch.php:33 actions/opensearch.php:33 +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" + #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" @@ -1347,9 +2020,24 @@ msgstr "Пребарување на луѓе" msgid "Personal" msgstr "Личен" +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 +msgid "Personal message" +msgstr "" + +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Проверете ги овие детали ако сакате да се претплатите на известувањата на овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Проверете ги овие детали ако сакате да се претплатите на известувањата на " +"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -1378,6 +2066,12 @@ msgstr "Преференции" msgid "Preferences saved." msgstr "Преференциите се снимени." +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "" + #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" @@ -1425,6 +2119,22 @@ msgstr "Јавен канал" msgid "Public timeline" msgstr "Јавна историја" +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "" + +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "" + +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 +#: actions/tag.php:76 +msgid "Recent Tags" +msgstr "" + #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -1453,6 +2163,18 @@ msgstr "Код за пронаоѓање за непознат корисник. msgid "Register" msgstr "Регистрирај се" +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 +msgid "Registration not allowed." +msgstr "" + +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 +msgid "Registration successful" +msgstr "" + #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -1498,8 +2220,12 @@ msgid "Remove OpenID" msgstr "Отстрани го OpenID-то" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Ако го остраните Вашето единствено OpenID, тогаш нема да можете да се пријавите. Ако треба да го отстраните, прво додајте друг OpenID." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Ако го остраните Вашето единствено OpenID, тогаш нема да можете да се " +"пријавите. Ако треба да го отстраните, прво додајте друг OpenID." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -1528,12 +2254,38 @@ msgstr "Ресетирај" msgid "Reset password" msgstr "Рестетирај ја лозинката" +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" + +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "" + +#: ../actions/smssettings.php:33 actions/smssettings.php:33 +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "" + +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 +msgid "SMS confirmation" +msgstr "" + #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Исто како лозинката погоре" +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 +msgid "Same as password above. Required." +msgstr "" + #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -1569,13 +2321,26 @@ msgstr "Барај во каналот" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Барајте известувања на %%site.name%% според нивната содржина. Термините одделете ги со празни места. Најмала должина е 3 знаци." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Барајте известувања на %%site.name%% според нивната содржина. Термините " +"одделете ги со празни места. Најмала должина е 3 знаци." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Барајте луѓе на %%site.name%% според нивното име, локација или интереси. Термините одделете ги со празни места. Најмала должина е 3 знаци." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " +"Термините одделете ги со празни места. Најмала должина е 3 знаци." + +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -1586,11 +2351,35 @@ msgstr "Барајте луѓе на %%site.name%% според нивното msgid "Send" msgstr "Испрати" +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" + +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" + #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Испраќај ми известувања преку Jabber/GTalk." +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -1602,6 +2391,10 @@ msgstr "Поставки" msgid "Settings saved." msgstr "Поставките се снимени." +#: ../actions/tag.php:60 actions/tag.php:60 +msgid "Showing most popular tags from the last week" +msgstr "" + #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -1613,6 +2406,16 @@ msgstr "Некој друг веќе го користи ова OpenID." msgid "Something weird happened." msgstr "Нешто чудно се случи." +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 +msgid "Sorry, no incoming email allowed." +msgstr "" + +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 +msgid "Sorry, that is not your incoming email address." +msgstr "" + #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -1677,6 +2480,22 @@ msgstr "Претплати" msgid "System error uploading file." msgstr "Системска грешка при товарањето на датотеката." +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 +msgid "Tags" +msgstr "" + +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 +msgid "Text" +msgstr "" + #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 #: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" @@ -1697,6 +2516,11 @@ msgstr "Оваа адреса веќе е потврдена." msgid "That confirmation code is not for you!" msgstr "Овој код за потврда не е за Вас!" +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "" + #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." @@ -1707,11 +2531,33 @@ msgstr "Датотеката е преголема." msgid "That is already your Jabber ID." msgstr "Ова веќе е Вашиот Jabber ID." +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" + +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" + #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Ова не е Вашиот Jabber ID." +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "" + +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "" + #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -1720,6 +2566,16 @@ msgstr "Ова не е Вашиот Jabber ID." msgid "That is the wrong IM address." msgstr "Ова е погрешната IM адреса." +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "" + +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" + #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -1730,6 +2586,12 @@ msgstr "Ова е погрешната IM адреса." msgid "That's too long. Max notice size is 140 chars." msgstr "Ова е предолго. Максималната должина е 140 знаци." +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 +msgid "That's too long. Max notice size is 255 chars." +msgstr "" + #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format @@ -1748,13 +2610,24 @@ msgstr "Адресата е отстранета." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за местото за да видите како да ја одобрите претплатата. Вашиот белег за претплата е:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за " +"местото за да видите како да ја одобрите претплатата. Вашиот белег за " +"претплата е:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за местото за да видите како целосно да ја одбиете претплатата." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за " +"местото за да видите како целосно да ја одбиете претплатата." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -1778,29 +2651,98 @@ msgstr "Ова се луѓето чии известувања ги следи % msgid "These are the people whose notices you listen to." msgstr "Ова се луѓето чии известувања ги следите." +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" + #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Овој код за потврда е премногу стар. Почнете од почеток." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Овој формулар треба автоматски да се испрати. Ако тоа не се случи, кликнете на копчето „Испрати“ за да одите до Вашиот OpenID снабдувач." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Овој формулар треба автоматски да се испрати. Ако тоа не се случи, кликнете " +"на копчето „Испрати“ за да одите до Вашиот OpenID снабдувач." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Ова е прв пат како се пријавивте на %s и затоа морам да го поврземе Вашиот OpenID со локална сметка. Можете да креирате нова сметка или да се поврзете со тековната сметка - ако ја имате." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Ова е прв пат како се пријавивте на %s и затоа морам да го поврземе Вашиот " +"OpenID со локална сметка. Можете да креирате нова сметка или да се поврзете " +"со тековната сметка - ако ја имате." + +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" + +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "" #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "" + +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "" + #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "За да се претплатите, може да се [пријавите](%%action.login%%) или да се [регистрирате](%%action.register%%). Ако имате сметка на [компатибилно место за микро блогирање](%%doc.openmublog%%), внесете го URL-то на Вашиот профил подолу." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"За да се претплатите, може да се [пријавите](%%action.login%%) или да се " +"[регистрирате](%%action.register%%). Ако имате сметка на [компатибилно место " +"за микро блогирање](%%doc.openmublog%%), внесете го URL-то на Вашиот профил " +"подолу." + +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 +msgid "Two user ids or screen_names must be supplied." +msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 @@ -1837,14 +2779,23 @@ msgstr "Неочекувано испраќање на формулар." msgid "Unexpected password reset." msgstr "Неочекувано ресетирање на лозинка." +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" + #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "Непозната верзија на протоколот OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Освен ако не е поинаку назначено, содржината на ова место е авторско право на придонесувачите и е достапна под" +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Освен ако не е поинаку назначено, содржината на ова место е авторско право " +"на придонесувачите и е достапна под" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -1870,6 +2821,33 @@ msgstr "Неподдржнана верзија на ОМВ" msgid "Unsupported image file format." msgstr "Неподдржан фомрат на слики." +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" + +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -1878,8 +2856,26 @@ msgid "Upload" msgstr "Товари" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Тука можете да поставите нов „аватар“ (косиничка слика). Не можете да ја менувате сликата откако ќе ја товарите, па затоа погрижете се да личи на квадрат. Сликата мора да биде под истата лиценца како ова место. Користете слика која е Ваша и која сакате да ја споделите." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Тука можете да поставите нов „аватар“ (косиничка слика). Не можете да ја " +"менувате сликата откако ќе ја товарите, па затоа погрижете се да личи на " +"квадрат. Сликата мора да биде под истата лиценца како ова место. Користете " +"слика која е Ваша и која сакате да ја споделите." + +#: ../lib/settingsaction.php:91 +msgid "Upload a new profile image" +msgstr "" + +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -1921,6 +2917,16 @@ msgstr "Корисникот нема профил." msgid "User nickname" msgstr "Прекар на корисникот" +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 +msgid "User not found." +msgstr "" + +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" + #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -1947,16 +2953,41 @@ msgstr "Погрешен тип на слика за '%s'" msgid "Wrong size image at '%s'" msgstr "Погрешна големина на слика на '%s'" +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 +msgid "Yes" +msgstr "" + #: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "Веќе го имате овој OpenID!" +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "Веќе сте пријавени!" +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" + +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 +msgid "You are not friends with the specified user." +msgstr "" + #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "Овде можете да ја промените лозинката. Одберете добра лозинка!" @@ -1965,20 +2996,36 @@ msgstr "Овде можете да ја промените лозинката. msgid "You can create a new account to start posting notices." msgstr "Можете да креирате нова сметка за да испраќате известувања." +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Можте да отстраните OpenID од Вашата сметка со кликање на копчето „Отстрани“." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Можте да отстраните OpenID од Вашата сметка со кликање на копчето „Отстрани“." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Можете да примате и праќате известувања преку Jabber/GTalk [брзи пораки](%%doc.im%%). Подолу " +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Можете да примате и праќате известувања преку Jabber/GTalk [брзи пораки](%%" +"doc.im%%). Подолу " #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Во Вашиот личен профил може да дополните информации за луѓето да знаат повеќе за Вас." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Во Вашиот личен профил може да дополните информации за луѓето да знаат " +"повеќе за Вас." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2000,6 +3047,38 @@ msgstr "Не може да се регистрирате ако не ја при msgid "You did not send us that profile" msgstr "Не ни го испративте тој профил." +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "" + +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" + +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Идентификувани сте. Подолу можете да внесете нова лозинка." @@ -2012,12 +3091,19 @@ msgstr "Вашето URL за OpenID" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "Вашиот прекар на овој сервер или адресата за е-пошта со која се регистриравте." +msgstr "" +"Вашиот прекар на овој сервер или адресата за е-пошта со која се " +"регистриравте." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) Ви овозможува да се пријавувате на многу места со истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-ја." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) Ви овозможува да се пријавувате на многу места со " +"истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-" +"ја." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -2073,6 +3159,11 @@ msgstr "пред една година" msgid "about an hour ago" msgstr "пред еден час" +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 +msgid "delete" +msgstr "" + #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 @@ -2090,17 +3181,765 @@ msgstr "одговор" msgid "same as password above" msgstr "исто како лозинката погоре" +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 +msgid "unsupported file type" +msgstr "" + #: ../lib/util.php:1309 lib/util.php:1443 msgid "« After" msgstr "« Следно" +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/disfavor.php:55 actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" + +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 +msgid "Could not delete favorite." +msgstr "" + +#: actions/disfavor.php:72 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" + +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" + +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "" + +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" + +#: actions/favor.php:70 +msgid "Disfavor" +msgstr "" + +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 +#, php-format +msgid "%s favorite notices" +msgstr "" + +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 +#, php-format +msgid "Feed of favorite notices of %s" +msgstr "" + +#: actions/inbox.php:28 actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "" + +#: actions/inbox.php:30 actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "" + +#: actions/inbox.php:53 actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" + +#: actions/invite.php:178 actions/invite.php:213 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" + +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 +msgid "Automatically login in the future; " +msgstr "" + +#: actions/login.php:122 actions/login.php:264 +msgid "For security reasons, please re-enter your " +msgstr "" + +#: actions/login.php:126 actions/login.php:268 +msgid "Login with your username and password. " +msgstr "" + +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 +msgid "That's too long. Max message size is 140 chars." +msgstr "" + +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "" + +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" + +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 +msgid "No such user" +msgstr "" + +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "" + +#: actions/noticesearch.php:95 actions/noticesearch.php:146 +msgid "Notice without matching profile" +msgstr "" + +#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgstr "" + +#: actions/openidsettings.php:46 actions/openidsettings.php:96 +msgid "If you want to add an OpenID to your account, " +msgstr "" + +#: actions/openidsettings.php:74 +msgid "Removing your only OpenID would make it impossible to log in! " +msgstr "" + +#: actions/openidsettings.php:87 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account " +msgstr "" + +#: actions/outbox.php:28 actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:30 actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:53 actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" + +#: actions/profilesettings.php:27 actions/profilesettings.php:69 +msgid "You can update your personal profile info here " +msgstr "" + +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +msgid "User without matching profile" +msgstr "" + +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. " +msgstr "" + +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" +msgstr "" + +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " +msgstr "" + +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 +msgid "Your nickname on this server, " +msgstr "" + +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 +msgid "Instructions for recovering your password " +msgstr "" + +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 +msgid "New password successfully saved. " +msgstr "" + +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/register.php:216 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" + +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " +msgstr "" + +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#, php-format +msgid "To subscribe, you can [login](%%action.login%%)," +msgstr "" + +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 +#, php-format +msgid "Feed for favorites of %s" +msgstr "" + +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showmessage.php:33 actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:42 actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:61 actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:66 actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/showstream.php:154 +msgid "Send a message" +msgstr "" + +#: actions/smssettings.php:312 actions/smssettings.php:464 +#, php-format +msgid "Mobile carrier for your phone. " +msgstr "" + +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 +msgid "Direct Messages You've Sent" +msgstr "" + +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "" + +#: actions/twitapidirect_messages.php:128 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "" + +#: actions/twitapidirect_messages.php:138 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" + +#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" + +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "" + +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "" + +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 +#, php-format +msgid "%s added your notice as a favorite" +msgstr "" + +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" + +#: actions/twittersettings.php:27 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" + +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 +msgid "Twitter settings" +msgstr "" + +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 +msgid "Twitter Account" +msgstr "" + +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 +msgid "Current verified Twitter account." +msgstr "" + +#: actions/twittersettings.php:63 +msgid "Twitter Username" +msgstr "" + +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 +msgid "No spaces, please." +msgstr "" + +#: actions/twittersettings.php:67 +msgid "Twitter Password" +msgstr "" + +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" + +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 +msgid "Could not verify your Twitter credentials!" +msgstr "" + +#: actions/twittersettings.php:137 +#, php-format +msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgstr "" + +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 +msgid "Unable to save your Twitter settings!" +msgstr "" + +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 +msgid "Twitter settings saved." +msgstr "" + +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 +msgid "That is not your Twitter account." +msgstr "" + +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 +msgid "Couldn't remove Twitter user." +msgstr "" + +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 +msgid "Twitter account removed." +msgstr "" + +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 +msgid "Couldn't save Twitter preferences." +msgstr "" + +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 +msgid "Twitter preferences saved." +msgstr "" + +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " +msgstr "" + +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " +msgstr "" + +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " +msgstr "" + +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 +msgid "Command complete" +msgstr "" + +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: classes/Command.php:96 classes/Command.php:113 +#, php-format +msgid "Subscriptions: %1$s\n" +msgstr "" + +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" + +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "" + +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "" + +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "" + +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "" + +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "" + +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 +#, php-format +msgid "Message too long - maximum is 140 characters, you sent %d" +msgstr "" + +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." +msgstr "" + +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" + +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." +msgstr "" + +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: classes/Command.php:344 classes/Command.php:392 +msgid "Commands:\n" +msgstr "" + +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:253 lib/mail.php:512 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" + +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " +msgstr "" + +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "" + +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" + +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" + +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" + +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 +msgid "Twitter" +msgstr "" + +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 +msgid "Twitter integration options" +msgstr "" + +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 +msgid "To" +msgstr "" + +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 +msgid "Could not parse message." +msgstr "" + #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s и пријателите" +#: actions/avatarsettings.php:76 +msgid "You can upload your personal avatar." +msgstr "" + #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -2109,6 +3948,51 @@ msgstr "%s и пријателите" msgid "Avatar settings" msgstr "Поставки" +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +msgid "There was a problem with your session token. " +msgstr "" + +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -2116,21 +4000,75 @@ msgstr "Поставки" msgid "Lost our file." msgstr "Нема такво известување." +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 +msgid "No profile specified." +msgstr "" + +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 +msgid "No profile with that ID." +msgstr "" + #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Нема таков корисник." +#: actions/block.php:129 +msgid "Are you sure you want to block this user? " +msgstr "" + #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Веќе сте пријавени!" +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + #: actions/confirmaddress.php:159 -#, php-format, fuzzy +#, fuzzy, php-format msgid "The address \"%s\" has been " msgstr "Адресата е отстранета." +#: actions/deletenotice.php:73 +msgid "You are about to permanently delete a notice. " +msgstr "" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "" + +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -2153,6 +4091,20 @@ msgstr "Нема прекар" msgid "No such group" msgstr "Нема такво известување." +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "" + +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -2175,10 +4127,23 @@ msgid "Options saved." msgstr "Поставките се снимени." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Awaiting confirmation on this address. " msgstr "Грешка со кодот за потврдување." +#: actions/emailsettings.php:139 actions/smssettings.php:150 +msgid "Make a new email address for posting to; " +msgstr "" + +#: actions/emailsettings.php:157 +msgid "Send me email when someone " +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -2187,7 +4152,28 @@ msgstr "Адресата веќе постои." #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "Испративме код за потврда на IM адресата што ја додадовте. Мора да го одобрите %S за да ви испраќа пораки." +msgstr "" +"Испративме код за потврда на IM адресата што ја додадовте. Мора да го " +"одобрите %S за да ви испраќа пораки." + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -2195,6 +4181,13 @@ msgstr "Испративме код за потврда на IM адресата msgid "No notice content!" msgstr "Нема содржина!" +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -2211,32 +4204,84 @@ msgstr "« Следни" msgid "Before" msgstr "Предходни »" +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" +msgstr "" + #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Канал со пријатели на %S" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "Корисникот не може да се освежи/" +#: actions/facebooksettings.php:65 +msgid "There was a problem saving your sync preferences!" +msgstr "" + #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "Преференциите се снимени." +#: actions/facebooksettings.php:90 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: actions/facebooksettings.php:97 +msgid "Send \"@\" replies to Facebook." +msgstr "" + #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "Профил" +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "Преференции" +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 +msgid "Disfavor favorite" +msgstr "" + #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -2246,10 +4291,48 @@ msgid "Popular notices" msgstr "Нема такво известување." #: actions/favorited.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Popular notices, page %d" msgstr "Нема такво известување." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" + +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 +msgid "Featured users" +msgstr "" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" + +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" + +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" + +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -2262,6 +4345,36 @@ msgstr "Аватарот е ажуриран." msgid "Failed updating logo." msgstr "Товарањето на аватарот не успеа." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -2269,35 +4382,64 @@ msgid "Create a new group" msgstr "Креирај нова сметка" #: actions/groupsearch.php:57 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Барајте луѓе на %%site.name%% според нивното име, локација или интереси. Термините одделете ги со празни места. Најмала должина е 3 знаци." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " +"Термините одделете ги со празни места. Најмала должина е 3 знаци." #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Пребарување на луѓе" +#: actions/imsettings.php:70 +msgid "You can send and receive notices through " +msgstr "" + +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Испраќај ми известувања преку Jabber/GTalk." #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "Нема код за потврда." +#: actions/joingroup.php:65 actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "" + #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Веќе сте пријавени!" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Не може да се пренасочи кон серверот: %s" +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "" + +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "" + #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -2311,12 +4453,44 @@ msgstr "Нема такво известување." msgid "You are not a member of that group." msgstr "Не ни го испративте тој профил." +#: actions/leavegroup.php:100 +msgid "You may not leave a group while you are its administrator." +msgstr "" + +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" + #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "OpenID формуларот не може да се креира:%s" +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -2334,12 +4508,35 @@ msgstr "Не може да се креира претплатата" msgid "That's too long. " msgstr "Датотеката е преголема." +#: actions/newmessage.php:134 +msgid "Don't send a message to yourself; " +msgstr "" + #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Известувања" +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 +msgid "Ajax Error" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" + #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -2355,11 +4552,24 @@ msgstr "Отстрани го OpenID-то" msgid "Other Settings" msgstr "Поставки" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" + +#: actions/othersettings.php:93 +msgid "URL Auto-shortening" +msgstr "" + #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "Барај" +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "" + #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -2378,19 +4588,39 @@ msgid "Password change" msgstr "Лозинката е снимена." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Неправилна адреса за е-пошта." +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "" + +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" + #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Непознат профил" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + +#: actions/profilesettings.php:144 +msgid "Automatically subscribe to whoever " +msgstr "" + #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Невалидна домашна страница: '%s'" @@ -2402,20 +4632,51 @@ msgstr "Профилот не може да се сними." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Јавна историја" +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Јавен канал" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 +msgid "Sorry, only invited people can register." +msgstr "" + #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата." +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -2444,20 +4705,61 @@ msgstr "Каде се наоѓате, на пр. „Град, Држава“." #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, телефонски број." +msgstr "" +"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " +"телефонски број." + +#: actions/register.php:471 +#, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgstr "" + +#: actions/register.php:495 +msgid "(You should receive a message by email " +msgstr "" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Одговори испратени до %s" +#: actions/showfavorites.php:79 +#, php-format +msgid "%s favorite notices, page %d" +msgstr "" + +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Нема такво известување." +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -2470,8 +4772,13 @@ msgstr "Нема такво известување." msgid "Note" msgstr "Известувања" +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Канал со известувања на %s" @@ -2483,6 +4790,36 @@ msgstr "Канал со известувања на %s" msgid "Members" msgstr "Член од" +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" +msgstr "" + +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient " +msgstr "" + +#: actions/showstream.php:73 actions/showstream.php:78 +#, php-format +msgid "%s, page %d" +msgstr "" + #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -2495,11 +4832,43 @@ msgstr "Профил" msgid "User profile" msgstr "Корисникот нема профил." +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 +msgid "User actions" +msgstr "" + +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 +msgid "Send a direct message to this user" +msgstr "" + +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 +msgid "Message" +msgstr "" + #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Претплатници" +#: actions/showstream.php:533 lib/profileaction.php:235 +msgid "All groups" +msgstr "" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -2515,6 +4884,10 @@ msgstr "Испраќај ми известувања преку Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Овој код за потврда не е за Вас!" +#: actions/smssettings.php:453 actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -2536,27 +4909,32 @@ msgid "Subscribed" msgstr "Претплати се" #: actions/subscribers.php:50 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscribers" msgstr "Претплатници" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Ова се луѓето што ги следат известувањата на %s." #: actions/subscribers.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people who " msgstr "Ова се луѓето што ги следат известувањата на %s." #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "Сите претплати" #: actions/subscriptions.php:54 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions, page %d" msgstr "Сите претплати" @@ -2566,7 +4944,7 @@ msgid "These are the people whose notices " msgstr "Ова се луѓето чии известувања ги следи %s." #: actions/subscriptions.php:69 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people whose " msgstr "Ова се луѓето што ги следат известувањата на %s." @@ -2577,10 +4955,15 @@ msgid "Jabber" msgstr "Нема JabberID." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Микроблог на %s" +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -2591,34 +4974,89 @@ msgstr "Не сте пријавени." msgid "No id argument." msgstr "Нема таков документ." +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:164 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Информациите за аватарот не може да се снимат" +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "Нема такво известување." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Микроблог на %s" +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" + +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" + #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "Не е пронаједено барање." +#: actions/twittersettings.php:71 +msgid "Add your Twitter account to automatically send " +msgstr "" + +#: actions/twittersettings.php:119 actions/twittersettings.php:122 +msgid "Twitter user name" +msgstr "" + #: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Нова лозинка" +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 +msgid "Twitter Friends" +msgstr "" + +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + #: actions/twittersettings.php:341 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information " msgstr "Не може да се креира потврда за е-пошта." @@ -2642,22 +5080,91 @@ msgstr "Оддалечениот профил нема одговарачки п msgid "Unsubscribed" msgstr "Откажи ја претплатата" +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" +msgstr "" + +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Проблем во снимањето на известувањето." +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Товарањето на аватарот не успеа." +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "" + +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#, php-format +msgid "%s - %s" +msgstr "" + +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "За" +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "" + +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -2678,6 +5185,10 @@ msgstr "Помош" msgid "Site notice" msgstr "Ново известување" +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -2688,12 +5199,39 @@ msgstr "Ново известување" msgid "Secondary site navigation" msgstr "Претплати" +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +msgid "All " +msgstr "" + +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Нема таков корисник." +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block" +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -2712,6 +5250,33 @@ msgstr "Јавен" msgid "Favor this notice" msgstr "Нема такво известување." +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "" + +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -2731,14 +5296,46 @@ msgstr "Опишете се себе си и сопствените интере #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Каде се наоѓате, на пр. „Град, Држава“." +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" + +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Одјави се" +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -2764,16 +5361,63 @@ msgstr "Погрешно име или лозинка." msgid "Sign up for a new account" msgstr "Креирај нова сметка" +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "%1$s сега ги следи вашите забелешки за %2$s." +#: lib/mail.php:254 lib/mail.php:253 +#, php-format +msgid "Location: %s\n" +msgstr "" + +#: lib/mail.php:256 lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "" + +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + +#: lib/mail.php:461 lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:465 +#, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" + #: lib/mail.php:555 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s just added your notice from %2$s" msgstr "%1$s сега ги следи вашите забелешки за %2$s." +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +msgid "From" +msgstr "" + +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "" + #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -2790,16 +5434,68 @@ msgstr "6 или повеќе знаци" msgid "in reply to" msgstr "во одговор на..." +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "" + #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "одговор" +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "" + +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 +msgid "Delete" +msgstr "" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "" + #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Јавен" +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" + +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -2810,16 +5506,35 @@ msgstr "Пребарување на луѓе" msgid "Notice" msgstr "Известувања" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People %s subscribes to" msgstr "Оддалечена претплата" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People subscribed to %s" msgstr "Оддалечена претплата" +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -2831,24 +5546,40 @@ msgstr "Корисникот нема профил." msgid "Subscribe to this user" msgstr "Претплатата е одобрена" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Нема таков корисник." +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 +msgid "Unblock" +msgstr "" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Канал со пријатели на %S" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Канал со пријатели на %S" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Канал со пријатели на %S" @@ -2857,30 +5588,107 @@ msgstr "Канал со пријатели на %S" msgid "You and friends" msgstr "%s и пријателите" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Аватарот е ажуриран." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Микроблог на %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Барајте луѓе на %%site.name%% според нивното име, локација или интереси. Термините одделете ги со празни места. Најмала должина е 3 знаци." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Барајте луѓе на %%site.name%% според нивното име, локација или интереси. " +"Термините одделете ги со празни места. Најмала должина е 3 знаци." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "Пребарувај го потокот за „%s“" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Поради безбедносни причини треба повторно да го внесете Вашето корисничко име и лозинка пред да ги смените Вашите поставки." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Поради безбедносни причини треба повторно да го внесете Вашето корисничко " +"име и лозинка пред да ги смените Вашите поставки." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -2897,10 +5705,35 @@ msgstr "Јавен канал" msgid "Public Stream Feed (Atom)" msgstr "Јавен канал" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr "освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, телефонски број." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"освен следниве лични податоци: лозинка, адреса за е-пошта, адреса за ИМ, " +"телефонски број." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -2908,31 +5741,47 @@ msgstr "освен следниве лични податоци: лозинка, msgid "Created" msgstr "Креирај" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Нема такво известување." #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "Профил" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Канал со известувања на %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Канал со известувања на %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Канал со известувања на %s" +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -2945,11 +5794,46 @@ msgstr "Аватар" msgid "Edit profile settings" msgstr "Поставки на профилот" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." msgstr "Овој код за потврда не е за Вас!" +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -2963,31 +5847,259 @@ msgstr "Овој код за потврда не е за Вас!" msgid "No such user!" msgstr "Нема таков корисник." +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Не може да се креира потврда за е-пошта." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Проверете ги овие детали ако сакате да се претплатите на известувањата на овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Проверете ги овие детали ако сакате да се претплатите на известувањата на " +"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за истата да ја поврзете со Вашиот OpenID." +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Ако веќе имае сметка, пријавете се со Вашето корисничко име и лозика, за " +"истата да ја поврзете со Вашиот OpenID." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s сега ги следи вашите забелешки на %2$s.\n\n %3$s\n\nИскрено ваш,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s сега ги следи вашите забелешки на %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Искрено ваш,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Барај" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -3004,15 +6116,19 @@ msgid "Block this user from this group" msgstr "Нема таков корисник." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Корисникот нема профил." #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s и пријателите" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -3028,26 +6144,56 @@ msgstr "Локација" msgid "Do not delete this notice" msgstr "Нема такво известување." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Невалидна домашна страница: '%s'" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Тој прекар е во употреба. Одберете друг." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Информациите за аватарот не може да се снимат" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -3058,11 +6204,28 @@ msgstr "Ново известување" msgid "No notice" msgstr "Ново известување" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "Неправилен прекар." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -3079,6 +6242,32 @@ msgstr "Не ни го испративте тој профил." msgid "Block user from group" msgstr "Нема таков корисник." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -3087,42 +6276,251 @@ msgstr "Нема таков корисник." msgid "Couldn't update your design." msgstr "Корисникот не може да се освежи/" +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "Преференциите се снимени." +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Нема резултати" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Корисникот нема профил." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Профилот не може да се сними." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) Ви овозможува да се пријавувате на многу места со истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-ја." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) Ви овозможува да се пријавувате на многу места со " +"истата корисничка сметка. Овде можете да ги уредите Вашите поврзани OpenID-" +"ја." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Поставки на профилот" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Ако сте ја заборавиле или загубиле лозинката, можете да добиете нова на адресата што ја внесовте во Вашата сметка." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Ако сте ја заборавиле или загубиле лозинката, можете да добиете нова на " +"адресата што ја внесовте во Вашата сметка." #: actions/recoverpassword.php:158 #, fuzzy @@ -3144,74 +6542,217 @@ msgstr "Грешка со кодот за потврдување." msgid "Subscribe to a remote user" msgstr "Претплатата е одобрена" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "Нема такво известување." +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Канал со известувања на %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Канал со известувања на %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Канал со известувања на %s" +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Нема таков корисник." +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Канал со известувања на %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s сега ги следи вашите забелешки за %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Канал со известувања на %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Канал со известувања на %s" +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "Корисникот не може да се освежи/" +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Корисникот не може да се освежи/" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s статус на %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Микроблог на %s" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -3222,36 +6763,127 @@ msgstr "Сите претплати" msgid "Profile design" msgstr "Поставки на профилот" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Не ни го испративте тој профил." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблем во снимањето на известувањето." +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Корисникот нема профил." +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Профил" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Товари" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Промени ја лозинката" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -3267,39 +6899,174 @@ msgstr "Барај" msgid "Links" msgstr "Пријави се" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Нема таков корисник." #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Нема таков корисник." +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "Нема содржина!" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "Барај" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "Домашната страница не е правилно URL." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "Нема такво известување." +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Ова е предолго. Максималната должина е 140 знаци." @@ -3308,8 +7075,12 @@ msgstr "Ова е предолго. Максималната должина е 1 msgid "Could not unfollow user: User not found." msgstr "Не може да се пренасочи кон серверот: %s" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." @@ -3319,7 +7090,7 @@ msgid "You are already a member of that group." msgstr "Веќе сте пријавени!" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Не може да се пренасочи кон серверот: %s" @@ -3329,26 +7100,64 @@ msgid "You are not a member of this group." msgstr "Не ни го испративте тој профил." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "OpenID формуларот не може да се креира:%s" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Профил" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Не ни го испративте тој профил." + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Аватарот е ажуриран." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Ова е предолго. Максималната должина е 140 знаци." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "Неподдржан фомрат на слики." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Микроблог на %s" + #: actions/finishremotesubscribe.php:80 #, fuzzy msgid "User being listened to does not exist." @@ -3379,23 +7188,51 @@ msgstr "Нема такво известување." msgid "Cannot read file." msgstr "Нема такво известување." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Микроблог на %s" + #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action.register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Пријавете се со корисничко име и лозинка. Немате? [Регистрирајте](%%action." +"register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Микроблог на %s" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Сите новини кои се еднакви со бараниот термин „%s“" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Поврзи се" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." @@ -3405,47 +7242,76 @@ msgid "Describe yourself and your interests" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Неправилно URL на профил (нема YADIS документ)." +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Не може да се земе белег за барање." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Канал со известувања на %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Канал со известувања на %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Канал со известувања на %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Одговори испратени до %s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Канал со пријатели на %S" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Канал со пријатели на %S" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Канал со пријатели на %S" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" msgstr "Канал со известувања на %s" @@ -3460,32 +7326,78 @@ msgid "SMS is not available." msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Канал со известувања на %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Проверете ги овие детали ако сакате да се претплатите на известувањата на овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Проверете ги овие детали ако сакате да се претплатите на известувањата на " +"овој корисник. Ако не сакате да се претплатите, кликнете на „Откажи“." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за местото за да видите како да ја одобрите претплатата. Вашиот белег за претплата е:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Претплатата е одобрена, но нема вратено URL. Проверете ги инструкциите за " +"местото за да видите како да ја одобрите претплатата. Вашиот белег за " +"претплата е:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за местото за да видите како целосно да ја одбиете претплатата." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Претплатата е одбиена, но нема вратено URL. Проверете ги инструкциите за " +"местото за да видите како целосно да ја одбиете претплатата." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Не може да се прочита URL-то на аватарот: '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Погрешен тип на слика за '%s'" @@ -3500,12 +7412,35 @@ msgid "Site content license" msgstr "Ново известување" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "Не може да се пренасочи кон серверот: %s" +msgstr "Корисникот не може да се освежи/" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Одговори испратени до %s" @@ -3514,32 +7449,137 @@ msgstr "Одговори испратени до %s" msgid "Error saving notice." msgstr "Проблем во снимањето на известувањето." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Нема код за потврда." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Опишете се себе си и сопствените интереси во 140 знаци." #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Канал со известувања на %s" +msgstr "Ново известување" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s сега ги следи вашите забелешки за %2$s." -#: lib/oauthstore.php:345 -msgid "Duplicate notice" -msgstr "Дуплирано известување" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Корисникот не може да се освежи/" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Ново известување" diff --git a/locale/nl/LC_MESSAGES/statusnet.mo b/locale/nl/LC_MESSAGES/statusnet.mo index 4ec605e0911313bfd6d47d9be158e47b20314917..269fac7306ff13aac8715b1079d1bb119f8da968 100644 GIT binary patch delta 30650 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̤Xrd3o;Q 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 W`Ed*h)?l?Ov`26CW^(2!b^Z@2A(<=y diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index f1364843df..b2a64da2f4 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -2,20 +2,16 @@ # # Author@translatewiki.net: Siebrand # -- -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:24:02+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:44:14+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: out-statusnet\n" @@ -29,8 +25,11 @@ msgstr " Stroom doorzoeken naar \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr " behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +" behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " +"telefoonnummer." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -52,8 +51,60 @@ msgstr "%1$s heeft u uitgenodigd voor %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s heeft u uitgenodigd voor %2$s (%3$s).\n\n%2$s is een microblogdienst waarmee u mensen op de hoogte kunt houden van wat u interesseert en bezig houdt.\n\nU kunt ook nieuws over uzelf of uw ideeën en gedachten met anderen delen. Het is ook de ideale plek om mensen te ontmoeten met dezelfde interesses als u.\n\n%1$s schreef:\n\n%4$s\n\nU kunt %1$s's profielpagina op %2$s hier bekijken:\n\n%5$s\n\nAls u het wilt proberen, klik dan op de verwijzing hieronder om de uitnodiging te accepteren.\n\n%6$s\n\nAls u geen interesse hebt, kunt u dit bericht negeren. Bedankt voor uw geduld.\n\nMet vriendelijke groet, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s heeft u uitgenodigd voor %2$s (%3$s).\n" +"\n" +"%2$s is een microblogdienst waarmee u mensen op de hoogte kunt houden van " +"wat u interesseert en bezig houdt.\n" +"\n" +"U kunt ook nieuws over uzelf of uw ideeën en gedachten met anderen delen. " +"Het is ook de ideale plek om mensen te ontmoeten met dezelfde interesses als " +"u.\n" +"\n" +"%1$s schreef:\n" +"\n" +"%4$s\n" +"\n" +"U kunt %1$s's profielpagina op %2$s hier bekijken:\n" +"\n" +"%5$s\n" +"\n" +"Als u het wilt proberen, klik dan op de verwijzing hieronder om de " +"uitnodiging te accepteren.\n" +"\n" +"%6$s\n" +"\n" +"Als u geen interesse hebt, kunt u dit bericht negeren. Bedankt voor uw " +"geduld.\n" +"\n" +"Met vriendelijke groet, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -63,8 +114,20 @@ msgstr "%1$s volgt nu uw berichten %2$s." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s volgt nu uw berichten op %2$s.\n\n %3$s\n\nMet vriendelijke groet,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s volgt nu uw berichten op %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Met vriendelijke groet,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -140,14 +203,22 @@ msgstr "%s updates van iedereen" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "U ontvangt snel een e-mailbericht met daarin instructies over hoe u uw e-mail kunt bevestigen." +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"U ontvangt snel een e-mailbericht met daarin instructies over hoe u uw e-" +"mail kunt bevestigen." #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." +"broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -157,7 +228,9 @@ msgstr "**%%site.name%%** is een microblogdienst. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Van de oorspronkelijke auteurs dient de volledige naam of gebruikersnaam te worden vermeld." +msgstr "" +". Van de oorspronkelijke auteurs dient de volledige naam of gebruikersnaam " +"te worden vermeld." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -191,17 +264,30 @@ msgstr "Zes of meer tekens. Verplicht" #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Er is een bevestigingscode verstuurd naar het opgegeven IM-adres. U moet ermee akkoord gaan dat %s berichten aan u verzendt." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Er is een bevestigingscode verstuurd naar het opgegeven IM-adres. U moet " +"ermee akkoord gaan dat %s berichten aan u verzendt." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Een bevestigingscode is verzonden naar het e-mailadres dat u hebt toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies hoe het te gebruiken." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Een bevestigingscode is verzonden naar het e-mailadres dat u hebt " +"toegevoegd. Controleer uw inbox (en spam box!) Voor de code en instructies " +"hoe het te gebruiken." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Er is een bevestigingscode verzonden naar het telefoonnummer dat u hebt toegevoegd. Controleer uw inbox (en spambox!) voor de code en instructies." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Er is een bevestigingscode verzonden naar het telefoonnummer dat u hebt " +"toegevoegd. Controleer uw inbox (en spambox!) voor de code en instructies." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -381,8 +467,11 @@ msgstr "Voortaan automatisch aanmelden. Niet gebruiken op gedeelde computers!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Automatisch abonneren bij abonnement op mij (beste voor automatische processen)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Automatisch abonneren bij abonnement op mij (beste voor automatische " +"processen)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -401,13 +490,22 @@ msgstr "De avatar is bijgewerkt." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Er wordt gewacht op bevestiging van dit adres. Controleer uw Jabber/GTalk-gebruiker op een bericht met nadere instructies. Hebt u %s aan uw contactenlijst toegevoegd?" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Er wordt gewacht op bevestiging van dit adres. Controleer uw Jabber/GTalk-" +"gebruiker op een bericht met nadere instructies. Hebt u %s aan uw " +"contactenlijst toegevoegd?" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Er wordt gewacht op bevestiging van dit adres. Controleer uw inbox en uw spambox voor een bericht met nadere instructies." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Er wordt gewacht op bevestiging van dit adres. Controleer uw inbox en uw " +"spambox voor een bericht met nadere instructies." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -544,8 +642,37 @@ msgstr "De bevestigingscode niet gevonden." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Gefeliciteerd, %s! Welkom bij %%%%site.name%%%%. Hier staan aan aantal handelingen die u wellicht uit wilt voeren:\n\n* Naar uw [profiel](%s) gaan en uw eerste bericht verzenden;\n* Een [Jabber/GTalk-adres](%%%%action.imsettings%%%%) toevoegen zodat u vandaaruit mededelingen kunt verzenden;\n* [Gebruikers zoeken](%%%%action.peoplesearch%%%%) die u al kent of waarmee u interesses deelt;\n* [Uw profiel](%%%%action.profilesettings%%%%) bijwerken om anderen meer over uzelf te vertellen;\n* De [online documentatie](%%%%doc.help%%%%) raadplegen voor mogelijkheden die u nog niet kent.\n\nDank u wel voor het registreren en we hopen dat deze dienst u biedt wat u ervan verwacht." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Gefeliciteerd, %s! Welkom bij %%%%site.name%%%%. Hier staan aan aantal " +"handelingen die u wellicht uit wilt voeren:\n" +"\n" +"* Naar uw [profiel](%s) gaan en uw eerste bericht verzenden;\n" +"* Een [Jabber/GTalk-adres](%%%%action.imsettings%%%%) toevoegen zodat u " +"vandaaruit mededelingen kunt verzenden;\n" +"* [Gebruikers zoeken](%%%%action.peoplesearch%%%%) die u al kent of waarmee " +"u interesses deelt;\n" +"* [Uw profiel](%%%%action.profilesettings%%%%) bijwerken om anderen meer " +"over uzelf te vertellen;\n" +"* De [online documentatie](%%%%doc.help%%%%) raadplegen voor mogelijkheden " +"die u nog niet kent.\n" +"\n" +"Dank u wel voor het registreren en we hopen dat deze dienst u biedt wat u " +"ervan verwacht." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -612,12 +739,15 @@ msgstr "Kan niet abonneren " #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "Het was niet mogelijk het bevestigde e-mailadres voor de gebruiker bij te werken." +msgstr "" +"Het was niet mogelijk het bevestigde e-mailadres voor de gebruiker bij te " +"werken." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "Het was niet mogelijk de verzoekentokens om te zetten naar toegangstokens." +msgstr "" +"Het was niet mogelijk de verzoekentokens om te zetten naar toegangstokens." #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -670,7 +800,9 @@ msgstr "Het profiel kon niet opgeslagen worden." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 #: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." -msgstr "Het was niet mogelijk de instelling voor automatisch abonneren voor de gebruiker bij te werken." +msgstr "" +"Het was niet mogelijk de instelling voor automatisch abonneren voor de " +"gebruiker bij te werken." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 @@ -723,7 +855,9 @@ msgstr "Nieuw gebruiker aanmaken" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." -msgstr "Bezig met het aanmaken van een nieuwe OpenID-gebruiker bij een bestaande gebruiker." +msgstr "" +"Bezig met het aanmaken van een nieuwe OpenID-gebruiker bij een bestaande " +"gebruiker." #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 @@ -754,7 +888,8 @@ msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" -msgstr "Er is een databasefout opgetreden bij het invoegen van het antwoord: %s" +msgstr "" +"Er is een databasefout opgetreden bij het invoegen van het antwoord: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 #: actions/deletenotice.php:79 actions/deletenotice.php:111 @@ -827,7 +962,8 @@ msgstr "Er is een fout opgetreden tijdens het autoriseren van het token" #: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 #: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." -msgstr "Er is een fout opgetreden tijdens het koppelen van de gebruiker aan OpenID." +msgstr "" +"Er is een fout opgetreden tijdens het koppelen van de gebruiker aan OpenID." #: ../actions/finishaddopenid.php:78 actions/finishaddopenid.php:78 #: actions/finishaddopenid.php:126 @@ -850,7 +986,8 @@ msgstr "Er is een fout opgetreden tijdens het invoegen van een nieuw profiel" #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 #: lib/oauthstore.php:311 msgid "Error inserting remote profile" -msgstr "Er is een fout opgetreden tijdens het invoegen in het profiel op afstand." +msgstr "" +"Er is een fout opgetreden tijdens het invoegen in het profiel op afstand." #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 #: actions/recoverpassword.php:280 actions/recoverpassword.php:298 @@ -861,7 +998,8 @@ msgstr "Er is een fout opgetreden bij het opslaan van de adresbevestiging." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 #: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" -msgstr "Er is een fout opgetreden tijdens het opslaan van het profiel op afstand." +msgstr "" +"Er is een fout opgetreden tijdens het opslaan van het profiel op afstand." #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 #: lib/openid.php:238 @@ -899,7 +1037,8 @@ msgstr "Er is een fout opgetreden tijdens het bijwerken van het profiel" #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 #: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" -msgstr "Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." +msgstr "" +"Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand." #: ../actions/recoverpassword.php:80 actions/recoverpassword.php:80 #: actions/recoverpassword.php:86 @@ -952,8 +1091,12 @@ msgid "Find people on this site" msgstr "Gebruikers op deze site vinden" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Om veiligheidsredenen moet u uw gebruikersnaam en wachtwoord nogmaals invoeren alvorens u uw instellingen kunt wijzigen." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Om veiligheidsredenen moet u uw gebruikersnaam en wachtwoord nogmaals " +"invoeren alvorens u uw instellingen kunt wijzigen." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1038,16 +1181,28 @@ msgstr "IM-instellingen" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Als u al een gebruiker hebt, meld dan aan met uw gebruikersnaam en wachtwoord om met uw OpenID te koppelen." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Als u al een gebruiker hebt, meld dan aan met uw gebruikersnaam en " +"wachtwoord om met uw OpenID te koppelen." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Als u een OpenID aan uw gebruiker wilt toevoegen, vul het dan in het veld hieronder in en klik op \"Toevoegen\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Als u een OpenID aan uw gebruiker wilt toevoegen, vul het dan in het veld " +"hieronder in en klik op \"Toevoegen\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Als u uw wachwoord kwijt bent, dan kunnen we u een nieuw wachtwoord sturen op het e-mailadres dat u bij uw gebruiker hebt geregistreerd." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Als u uw wachwoord kwijt bent, dan kunnen we u een nieuw wachtwoord sturen " +"op het e-mailadres dat u bij uw gebruiker hebt geregistreerd." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1077,8 +1232,12 @@ msgstr "De gebruikersnaam of wachtwoord is onjuist." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "De instructies om uw wachtwoord te herstellen zijn verstuurd naar het e-mailadres dat voor uw gebruiker is geregistreerd." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"De instructies om uw wachtwoord te herstellen zijn verstuurd naar het e-" +"mailadres dat voor uw gebruiker is geregistreerd." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1174,8 +1333,14 @@ msgstr "Nieuwe gebruikers uitnodigen" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "De site werkt met de [StatusNet](http://status.net/) microblogsoftware, versie %s, beschikbaar onder de [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"De site werkt met de [StatusNet](http://status.net/) microblogsoftware, " +"versie %s, beschikbaar onder de [GNU Affero General Public License](http://" +"www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1185,8 +1350,12 @@ msgstr "Het Jabber-ID wordt al gebruikt door een andere gebruiker." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Jabber-ID of GTalk-adres, zoals \"gebruiker@example.org\". Zorg ervoor dat u %s eerst aan uw contactenlijst in uw IM-programma of in GTalk toevoegt." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber-ID of GTalk-adres, zoals \"gebruiker@example.org\". Zorg ervoor dat u " +"%s eerst aan uw contactenlijst in uw IM-programma of in GTalk toevoegt." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1253,8 +1422,14 @@ msgstr "Aanmelden met een [OpenID-gebruiker](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen gebruikersnaam? [Registreer](%%action.register%%) dan een nieuw gebruiker, of probeer [OpenID](%%action.openidlogin%%)." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen " +"gebruikersnaam? [Registreer](%%action.register%%) dan een nieuw gebruiker, " +"of probeer [OpenID](%%action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1277,7 +1452,9 @@ msgstr "Wachtwoord kwijt of vergeten?" #: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "Een nieuw e-mailadres instellen voor het onvangen van e-mail; verwijdert het eerder geinstelde e-mailadres." +msgstr "" +"Een nieuw e-mailadres instellen voor het onvangen van e-mail; verwijdert het " +"eerder geinstelde e-mailadres." #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 @@ -1299,8 +1476,13 @@ msgstr "Microblog van %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "De provider van uw mobiele telefoon. Als u een provider kent die e-mail via SMS ondersteunt, maar nog niet in de lijst is opgenomen, laat dit ons dan via e-mail weten op het e-mailadres %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"De provider van uw mobiele telefoon. Als u een provider kent die e-mail via " +"SMS ondersteunt, maar nog niet in de lijst is opgenomen, laat dit ons dan " +"via e-mail weten op het e-mailadres %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1380,7 +1562,8 @@ msgstr "Gebruikersnaam" #: actions/newgroup.php:130 actions/profilesettings.php:231 #: actions/register.php:202 msgid "Nickname already in use. Try another one." -msgstr "De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." +msgstr "" +"De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." #: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 #: ../actions/register.php:67 ../actions/updateprofile.php:77 @@ -1396,7 +1579,9 @@ msgstr "De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikers #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "De gebruikersnaam moet alleen bestaan uit kleine letters en cijfers, en mag geen spaties bevatten." +msgstr "" +"De gebruikersnaam moet alleen bestaan uit kleine letters en cijfers, en mag " +"geen spaties bevatten." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1611,7 +1796,9 @@ msgstr "Onbekende gebruiker." #: actions/recoverpassword.php:251 actions/recoverpassword.php:269 #: actions/recoverpassword.php:272 msgid "No user with that email address or username." -msgstr "Er bestaat geen gebruiker met het opgegeven e-mailadres of de opgegeven gebruikersnaam." +msgstr "" +"Er bestaat geen gebruiker met het opgegeven e-mailadres of de opgegeven " +"gebruikersnaam." #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" @@ -1922,8 +2109,15 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefoonnummer zonder spaties of leestekens, met netnummer" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Controleer alstublieft deze details om vast te stellen dat u zich wilt abonneren of de mededelingen van deze gebruiker. Als u niet hebt verzocht te abonneren op de mededelingen van een andere gebruiker, klik dan op \"Annuleren\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Controleer alstublieft deze details om vast te stellen dat u zich wilt " +"abonneren of de mededelingen van deze gebruiker. Als u niet hebt verzocht te " +"abonneren op de mededelingen van een andere gebruiker, klik dan op " +"\"Annuleren\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2106,8 +2300,12 @@ msgid "Remove OpenID" msgstr "OpenID verwijderen" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Als u uw enige OpenID verwijdert kunt u niet langer aanmelden. Als u het wilt verwijderen, voeg dan eerst een andere OpenID toe." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Als u uw enige OpenID verwijdert kunt u niet langer aanmelden. Als u het " +"wilt verwijderen, voeg dan eerst een andere OpenID toe." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2203,13 +2401,22 @@ msgstr "Feed doorzoeken" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Zoek naar mededelingen op %%site.name%% op basis van inhoud. Scheid zoektermen met spaties. Zoektermen moeten uit drie of meer tekens bestaan." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Zoek naar mededelingen op %%site.name%% op basis van inhoud. Scheid " +"zoektermen met spaties. Zoektermen moeten uit drie of meer tekens bestaan." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Zoeken naar gebruikers op %%site.name%% op basis van hun naam, locatie of interesses. Scheid de zoektermen met spaties. Zoektermen moeten uit drie of meer tekens bestaan." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Zoeken naar gebruikers op %%site.name%% op basis van hun naam, locatie of " +"interesses. Scheid de zoektermen met spaties. Zoektermen moeten uit drie of " +"meer tekens bestaan." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2244,13 +2451,19 @@ msgstr "Stuur mij berichten via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Stuur me mededelingen via SMS. Ik begrijp dat dit exorbitante rekeningen van mijn provider kan opleveren." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Stuur me mededelingen via SMS. Ik begrijp dat dit exorbitante rekeningen van " +"mijn provider kan opleveren." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Stuur me antwoorden via Jabber/GTalk van gebruiker op wie ik niet geabonneerd ben." +msgstr "" +"Stuur me antwoorden via Jabber/GTalk van gebruiker op wie ik niet " +"geabonneerd ben." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2482,13 +2695,25 @@ msgstr "Het adres is verwijderd." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Het abonnement is geautoriseerd maar er is geen callback-URL doorgegeven. Controleer de instructies van de website voor details over hoe het abonnement te autoriseren." +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Het abonnement is geautoriseerd maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de website voor details over hoe het " +"abonnement te autoriseren." #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "Het abonnement is afgewezen maar er is geen callback-URL doorgegeven. Controleer de instructies van de website voor details over hoe het abonnement volledig af te wijzen." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Het abonnement is afgewezen maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de website voor details over hoe het " +"abonnement volledig af te wijzen." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2514,22 +2739,35 @@ msgstr "Dit zijn de gebruikers van wie u de mededelingen volgt." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" -msgstr "Deze gebruikers zijn al geregistreerd en u kunt zich automatisch bij hun abonneren:" +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Deze gebruikers zijn al geregistreerd en u kunt zich automatisch bij hun " +"abonneren:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Deze bevestigingscode is te oud. Begin alstublieft opnieuw." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Dit formulier zou zichzelf automatisch moeten versturen. Als dat niet gebeurt, klik dan op \"Opslaan\" om naar uw OpenID-provider te gaan." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Dit formulier zou zichzelf automatisch moeten versturen. Als dat niet " +"gebeurt, klik dan op \"Opslaan\" om naar uw OpenID-provider te gaan." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Dit is de eerste keer dat u hebt aangemeld bij %s. U moet nu uw OpenID koppelen aan een lokale gebruiker. U kunt een nieuwe gebruiker aanmaken of verbinden via uw bestaande gebruiker, als u die hebt." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Dit is de eerste keer dat u hebt aangemeld bij %s. U moet nu uw OpenID " +"koppelen aan een lokale gebruiker. U kunt een nieuwe gebruiker aanmaken of " +"verbinden via uw bestaande gebruiker, als u die hebt." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2578,8 +2816,15 @@ msgstr "Er is geen tijdzone geselecteerd." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Om u te abonneren kunt u [aanmelden](%%action.login%%), of een nieuw gebruiker [registreren](%%action.register%%). Als u al een gebruiker bij een [compatibele microblogsite](%%doc.openmublog%%) hebt, voer dan hieronder uw profiel-URL in." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Om u te abonneren kunt u [aanmelden](%%action.login%%), of een nieuw " +"gebruiker [registreren](%%action.register%%). Als u al een gebruiker bij een " +"[compatibele microblogsite](%%doc.openmublog%%) hebt, voer dan hieronder uw " +"profiel-URL in." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2633,8 +2878,12 @@ msgid "Unknown version of OMB protocol." msgstr "Onbekende versie van het OMB-protocol." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Tenzij anders gespecificeerd valt de inhoud van deze site onder het copyright van de auteurs en is beschikbaar onder de_" +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Tenzij anders gespecificeerd valt de inhoud van deze site onder het " +"copyright van de auteurs en is beschikbaar onder de_" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2695,8 +2944,16 @@ msgid "Upload" msgstr "Uploaden" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Hier kunt u een nieuwe \"avatar\" (gebruikersafbeelding) uploaden. U kunt het plaatje achteraf niet bewerken, dus zorg ervoor dat het min of meer vierkant is. Het moet ook onder de sitelicentie vallen. Gebruik een afbeelding die uw eigendom is en die u wilt delen." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Hier kunt u een nieuwe \"avatar\" (gebruikersafbeelding) uploaden. U kunt " +"het plaatje achteraf niet bewerken, dus zorg ervoor dat het min of meer " +"vierkant is. Het moet ook onder de sitelicentie vallen. Gebruik een " +"afbeelding die uw eigendom is en die u wilt delen." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2704,8 +2961,11 @@ msgstr "Nieuwe profielafbeelding uploaden" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Gebruik deze pagina om uw vrienden en collega´s uit te nodigen deze dienst te gebruiken." +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Gebruik deze pagina om uw vrienden en collega´s uit te nodigen deze dienst " +"te gebruiken." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2798,8 +3058,12 @@ msgid "You already have this OpenID!" msgstr "U hebt dit OpenID al gekoppeld." #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "U staat op het punt een mededeling definitief te verwijderen. Deze handeling kan niet ongedaan gemaakt worden." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"U staat op het punt een mededeling definitief te verwijderen. Deze handeling " +"kan niet ongedaan gemaakt worden." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2831,19 +3095,29 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "U kunt SMS-berichten per e-mail ontvangen van %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Verwijderen een OpenID van uw gebruiker door de klikken op \"Verwijderen\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Verwijderen een OpenID van uw gebruiker door de klikken op \"Verwijderen\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "U kunt berichten verzenden en ontvangen via Jabber/GTalk [\"instant messages\"](%%doc.im%%). Maak hieronder uw instellingen." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"U kunt berichten verzenden en ontvangen via Jabber/GTalk [\"instant messages" +"\"](%%doc.im%%). Maak hieronder uw instellingen." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Hier kunt u uw persoonlijke profiel bijwerken met informatie over uzelf voor andere gebruikers." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Hier kunt u uw persoonlijke profiel bijwerken met informatie over uzelf voor " +"andere gebruikers." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2867,8 +3141,24 @@ msgstr "U hebt dat profiel niet ingezonden" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "U hebt een nieuw postadres op %1$s.\n\nZend een e-mail naar %2$s om nieuwe berichten te versturen.\n\nMeer informatie over e-mailen vindt u op %3$s.\n\nMet vriendelijke groet,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"U hebt een nieuw postadres op %1$s.\n" +"\n" +"Zend een e-mail naar %2$s om nieuwe berichten te versturen.\n" +"\n" +"Meer informatie over e-mailen vindt u op %3$s.\n" +"\n" +"Met vriendelijke groet,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2880,12 +3170,18 @@ msgstr "U kunt de status van een andere gebruiker niet verwijderen." #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "U moet aangemeld zijn om anderen te kunnen uitnodigen gebruik te maken van %s" +msgstr "" +"U moet aangemeld zijn om anderen te kunnen uitnodigen gebruik te maken van %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "U wordt op de hoogte gesteld wanneer uw genodigden de uitnodiging accepteren en zich bij de site registreren. Dank u wel voor het laten groeien van de gemeenschap!" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"U wordt op de hoogte gesteld wanneer uw genodigden de uitnodiging accepteren " +"en zich bij de site registreren. Dank u wel voor het laten groeien van de " +"gemeenschap!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2903,8 +3199,12 @@ msgstr "Uw gebruikersnaam op deze server, of uw geregistreerde e-mailadres." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "Met [OpenID](%%doc.openid%%) kunu op heel veel websites aanmelden met dezelfde gebruiker. U kunt hier uw gekoppelde OpenID's beheren." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"Met [OpenID](%%doc.openid%%) kunu op heel veel websites aanmelden met " +"dezelfde gebruiker. U kunt hier uw gekoppelde OpenID's beheren." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3027,7 +3327,9 @@ msgstr "« Later" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, alstublieft." +msgstr "" +"Er is een probleem ontstaan met uw sessie. Probeer het nog een keer, " +"alstublieft." #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" @@ -3036,7 +3338,8 @@ msgstr "Deze mededeling staats niet op uw favorietenlijst." #: actions/disfavor.php:63 actions/disfavor.php:87 #: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." -msgstr "Het was niet mogelijk dit bericht van uw favorietenlijst te verwijderen." +msgstr "" +"Het was niet mogelijk dit bericht van uw favorietenlijst te verwijderen." #: actions/disfavor.php:72 lib/favorform.php:140 msgid "Favor" @@ -3100,8 +3403,12 @@ msgstr "Dit is uw Postvak IN dat uw inkomende privéberichten bevat." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s heeft u uitgenodigd om hem te volgen op %2$s (%3$s).\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s heeft u uitgenodigd om hem te volgen op %2$s (%3$s).\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3143,7 +3450,8 @@ msgstr "U kunt geen bericht naar deze gebruiker zenden." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Stuur geen berichten naar uzelf. Zeg het gewoon in uw hoofd." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3170,23 +3478,519 @@ msgstr "Met [OpenID](%%doc.openid%%) kunt u aanmelden bij heel veel websites " msgid "If you want to add an OpenID to your account, " msgstr "Als u een OpenID wilt toevoegen aan uw gebruiker, " +#: actions/openidsettings.php:74 +msgid "Removing your only OpenID would make it impossible to log in! " +msgstr "" + +#: actions/openidsettings.php:87 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account " +msgstr "" + +#: actions/outbox.php:28 actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:30 actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:53 actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" + +#: actions/profilesettings.php:27 actions/profilesettings.php:69 +msgid "You can update your personal profile info here " +msgstr "" + +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +msgid "User without matching profile" +msgstr "" + +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. " +msgstr "" + +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" +msgstr "" + +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " +msgstr "" + +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 +msgid "Your nickname on this server, " +msgstr "" + +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 +msgid "Instructions for recovering your password " +msgstr "" + +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 +msgid "New password successfully saved. " +msgstr "" + +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/register.php:216 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" + +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " +msgstr "" + +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#, php-format +msgid "To subscribe, you can [login](%%action.login%%)," +msgstr "" + +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 +#, php-format +msgid "Feed for favorites of %s" +msgstr "" + +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showmessage.php:33 actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:42 actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:61 actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:66 actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/showstream.php:154 +msgid "Send a message" +msgstr "" + +#: actions/smssettings.php:312 actions/smssettings.php:464 +#, php-format +msgid "Mobile carrier for your phone. " +msgstr "" + +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 +msgid "Direct Messages You've Sent" +msgstr "" + +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "" + +#: actions/twitapidirect_messages.php:128 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "" + +#: actions/twitapidirect_messages.php:138 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" + +#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" + +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "" + +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "" + +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 +#, php-format +msgid "%s added your notice as a favorite" +msgstr "" + +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" + +#: actions/twittersettings.php:27 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" + +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 +msgid "Twitter settings" +msgstr "" + +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 +msgid "Twitter Account" +msgstr "" + +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 +msgid "Current verified Twitter account." +msgstr "" + +#: actions/twittersettings.php:63 +msgid "Twitter Username" +msgstr "" + +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 +msgid "No spaces, please." +msgstr "" + +#: actions/twittersettings.php:67 +msgid "Twitter Password" +msgstr "" + +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" + +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 +msgid "Could not verify your Twitter credentials!" +msgstr "" + +#: actions/twittersettings.php:137 +#, php-format +msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgstr "" + +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 +msgid "Unable to save your Twitter settings!" +msgstr "" + +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 +msgid "Twitter settings saved." +msgstr "" + +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 +msgid "That is not your Twitter account." +msgstr "" + +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 +msgid "Couldn't remove Twitter user." +msgstr "" + +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 +msgid "Twitter account removed." +msgstr "" + +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 +msgid "Couldn't save Twitter preferences." +msgstr "" + +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 +msgid "Twitter preferences saved." +msgstr "" + +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " +msgstr "" + +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " +msgstr "" + +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " +msgstr "" + +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 +msgid "Command complete" +msgstr "" + +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: classes/Command.php:96 classes/Command.php:113 +#, php-format +msgid "Subscriptions: %1$s\n" +msgstr "" + +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" + +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "" + +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "" + +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "" + +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "" + #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 #: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Over: %s" +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 +#, php-format +msgid "Message too long - maximum is 140 characters, you sent %d" +msgstr "" + +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." +msgstr "" + +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + #: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 #: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Uw abonnement op %s is opgezegd" +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" + +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." +msgstr "" + #: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 #: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Het is niet mogelijk de mededelingen uit te schakelen." +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: classes/Command.php:344 classes/Command.php:392 +msgid "Commands:\n" +msgstr "" + +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:253 lib/mail.php:512 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" + +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " +msgstr "" + +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" +msgstr "" + #: lib/personal.php:66 lib/personalgroupnav.php:114 #: lib/personalgroupnav.php:115 msgid "User" @@ -3283,6 +4087,11 @@ msgstr "Uitsnijden" msgid "There was a problem with your session token. " msgstr "Er was een probleem met uw sessietoken. " +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + #: actions/avatarsettings.php:327 actions/grouplogo.php:384 #: actions/avatarsettings.php:323 actions/grouplogo.php:382 #: actions/grouplogo.php:377 @@ -3319,10 +4128,18 @@ msgstr "Er is geen profiel met dat ID." msgid "Block user" msgstr "Gebruiker blokkeren" +#: actions/block.php:129 +msgid "Are you sure you want to block this user? " +msgstr "" + #: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "U hebt deze gebruiker reeds geblokkeerd." +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + #: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been " @@ -3348,6 +4165,12 @@ msgstr "Groep %s bewerken" msgid "Inboxes must be enabled for groups to work" msgstr "Postvak IN moet ingeschakeld zijn voordat groepen kunnen werken" +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -3405,13 +4228,42 @@ msgstr "De instellingen zijn opgeslagen." msgid "Awaiting confirmation on this address. " msgstr "Dit adres wacht nog op bevestiging. " +#: actions/emailsettings.php:139 actions/smssettings.php:150 +msgid "Make a new email address for posting to; " +msgstr "" + +#: actions/emailsettings.php:157 +msgid "Send me email when someone " +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + #: actions/emailsettings.php:321 msgid "That email address already belongs " msgstr "Dat e-mailadres hoort al bij " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "Er is een bevestigingscode verzonden naar het e-mailadres dat u hebt opgegeven. " +msgstr "" +"Er is een bevestigingscode verzonden naar het e-mailadres dat u hebt " +"opgegeven. " + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" #: actions/facebookhome.php:218 actions/facebookhome.php:223 #: actions/facebookhome.php:217 @@ -3444,24 +4296,72 @@ msgstr "Na" msgid "Before" msgstr "Voor" +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" +msgstr "" + #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Uw vrienden uitnodigen %s te gebruiken" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + #: actions/facebookremove.php:56 msgid "Couldn't remove Facebook user." msgstr "Het was niet mogelijk de Facebook-gebruiker te verwijderen." +#: actions/facebooksettings.php:65 +msgid "There was a problem saving your sync preferences!" +msgstr "" + #: actions/facebooksettings.php:67 msgid "Sync preferences saved." msgstr "De synchronisatievoorkeuren zijn opgeslagen." +#: actions/facebooksettings.php:90 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: actions/facebooksettings.php:97 +msgid "Send \"@\" replies to Facebook." +msgstr "" + #: actions/facebooksettings.php:106 msgid "Prefix" msgstr "Voorvoegsel" +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + #: actions/facebooksettings.php:147 msgid "Sync preferences" msgstr "Synchronisatievoorkeuren" @@ -3504,7 +4404,8 @@ msgstr "Een selectie van de actieve gebruikers op %s" #: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." -msgstr "Die gebruiker heeft de mogelijkheid om te abonneren voor u geblokkeerd." +msgstr "" +"Die gebruiker heeft de mogelijkheid om te abonneren voor u geblokkeerd." #: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" @@ -3555,6 +4456,11 @@ msgstr "Groepen" msgid "Groups, page %d" msgstr "Groepen, pagina %d" +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" @@ -3562,8 +4468,12 @@ msgstr "Nieuwe groep aanmaken" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Zoek naar groepen op %%site.name%%, op basis van hun naam, locatie of interesses. Scheid de zoektermen met spaties; ze moeten uit 3 of meer tekens bestaan." +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Zoek naar groepen op %%site.name%%, op basis van hun naam, locatie of " +"interesses. Scheid de zoektermen met spaties; ze moeten uit 3 of meer tekens " +"bestaan." #: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" @@ -3692,8 +4602,11 @@ msgid "Ajax Error" msgstr "Er is een Ajax-fout opgetreden" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Deze gebruiker is niet te porren of heeft zijn e-mailadres nog niet bevestigd." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Deze gebruiker is niet te porren of heeft zijn e-mailadres nog niet " +"bevestigd." #: actions/nudge.php:94 msgid "Nudge sent" @@ -3765,6 +4678,16 @@ msgstr "Dit zijn de gebruikers die zichzelf \"%s\" hebben gelabeld " msgid "Profile information" msgstr "Profielinformatie" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + +#: actions/profilesettings.php:144 +msgid "Automatically subscribe to whoever " +msgstr "" + #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 @@ -3788,6 +4711,13 @@ msgstr "Openbare tijdlijn, pagina %d" msgid "Could not retrieve public stream." msgstr "Het was niet mogelijk de publieke stream op te halen." +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + #: actions/publictagcloud.php:57 msgid "Public tag cloud" msgstr "Publieke woordwolk" @@ -3844,6 +4774,14 @@ msgstr " behalve de volgende privégegevens: wachtwoord, " msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " msgstr "Gefeliciteerd, %s. Welkom bij \"%%site.name%%. " +#: actions/register.php:495 +msgid "(You should receive a message by email " +msgstr "" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" + #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 #, php-format @@ -3925,8 +4863,12 @@ msgstr "Alle leden" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]" +"(http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -3978,8 +4920,12 @@ msgstr "Alle groepen" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** heeft een gebruiker op %%%%site.name%%%%, een [microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** heeft een gebruiker op %%%%site.name%%%%, een [microblogdienst]" +"(http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -3991,7 +4937,9 @@ msgstr "Kennisgevingen via SMS naar mij sturen; " #: actions/smssettings.php:335 msgid "A confirmation code was sent to the phone number you added. " -msgstr "Er is een bevestigingscode verstuurd naar het telefoonnummer dat u hebt opgegeven. " +msgstr "" +"Er is een bevestigingscode verstuurd naar het telefoonnummer dat u hebt " +"opgegeven. " #: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" @@ -4061,6 +5009,11 @@ msgstr "Jabber" msgid "Notices tagged with %s, page %d" msgstr "Kennisgevingen met het label %s, pagina %d" +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + #: actions/tagother.php:33 msgid "Not logged in" msgstr "Niet aangemeld." @@ -4078,10 +5031,29 @@ msgstr "Label %s" msgid "Tag user" msgstr "Gebruiker labelen" +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:164 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Het was niet mogelijk de labels op te slaan." +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + #: actions/tagrss.php:35 msgid "No such tag." msgstr "Onbekend label." @@ -4162,17 +5134,23 @@ msgstr "%s groepen, pagina %d" #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." -msgstr "Er was een probleem bij het opslaan vna de kennisgeving. De gebruiker is onbekend." +msgstr "" +"Er was een probleem bij het opslaan vna de kennisgeving. De gebruiker is " +"onbekend." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer het over enige tijd weer." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer " +"het over enige tijd weer." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 msgid "You are banned from posting notices on this site." -msgstr "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." +msgstr "" +"U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" @@ -4213,6 +5191,10 @@ msgstr "Naar gebruikers of tekst zoeken" msgid "Account" msgstr "Gebruiker" +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "" + #: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Met IM, SMS of Twitter verbinden" @@ -4241,6 +5223,10 @@ msgstr "Help me!" msgid "Site notice" msgstr "Kennisgeving van site" +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "Kennisgeving van pagina" @@ -4276,6 +5262,11 @@ msgstr "Blokkeren" msgid "Disfavor this notice" msgstr "Mededeling uit favorieten verwijderen" +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 msgid " a new account." @@ -4333,8 +5324,10 @@ msgstr "Beschrijf de groep of het onderwerp in maximaal 140 karakters" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Locatie voor de groep - als relevant. Iets als \"Plaats, regio, land\"." +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" +"Locatie voor de groep - als relevant. Iets als \"Plaats, regio, land\"." #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" @@ -4362,6 +5355,15 @@ msgstr "Logo voor %s toevoegen of verwijderen" msgid "Groups with most members" msgstr "Groepen met de meeste leden" +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + #: lib/htmloutputter.php:104 msgid "This page is not available in a " msgstr "Deze pagina is niet beschikbaar in een " @@ -4382,10 +5384,18 @@ msgstr "Aanmelden met gebruikersnaam en wachtwoord" msgid "Sign up for a new account" msgstr "Nieuwe gebruiker aanmaken" +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Hallo, %s.\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Hallo, %s.\n" +"\n" #: lib/mail.php:236 #, php-format @@ -4404,8 +5414,22 @@ msgstr "Thuispagina: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "Beschrijving: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Beschrijving: %s\n" +"\n" + +#: lib/mail.php:461 lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:465 +#, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" #: lib/mail.php:555 #, php-format @@ -4456,6 +5480,18 @@ msgstr "Deze mededeling verwijderen" msgid "Delete" msgstr "Verwijderen" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" + #: lib/personaltagcloudsection.php:56 #, php-format msgid "Tags in %s's notices" @@ -4479,6 +5515,10 @@ msgstr "Gebruikersgroepen" msgid "Recent tags" msgstr "Recente labels" +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Populair" @@ -4505,6 +5545,11 @@ msgstr "Gebruikers waarop %s een abonnement heeft" msgid "People subscribed to %s" msgstr "Gebruikers met een abonnement op %s" +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 #, php-format @@ -4563,28 +5608,68 @@ msgstr "U en vrienden" #: actions/avatarsettings.php:78 #, php-format msgid "You can upload your personal avatar. The maximum file size is %s." -msgstr "U kunt een persoonlijke avatar uploaden. De maximale bestandsgrootte is %s." +msgstr "" +"U kunt een persoonlijke avatar uploaden. De maximale bestandsgrootte is %s." #: actions/avatarsettings.php:373 msgid "Avatar deleted." msgstr "De avatar is verwijderd." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "U staat op het punt een mededeling permanent te verwijderen. Als dit uitgevoerd is, kan het niet ongedaan gemaakt worden." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"U staat op het punt een mededeling permanent te verwijderen. Als dit " +"uitgevoerd is, kan het niet ongedaan gemaakt worden." #: actions/deletenotice.php:127 actions/deletenotice.php:157 msgid "There was a problem with your session token. Try again, please." -msgstr "Er is een probleem ontstaan met uw sessietoken. Probeer het nog een keer." +msgstr "" +"Er is een probleem ontstaan met uw sessietoken. Probeer het nog een keer." #: actions/emailsettings.php:168 actions/emailsettings.php:174 msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Mij een e-mail sturen als iemand mij een antwoord met \"@\" erin stuurt." +msgstr "" +"Mij een e-mail sturen als iemand mij een antwoord met \"@\" erin stuurt." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" #: actions/grouplogo.php:155 actions/grouplogo.php:150 #, php-format -msgid "You can upload a logo image for your group. The maximum file size is %s." -msgstr "Hier kunt u een logo voor uw groep uploaden. De maximale bestandsgrootte is %s." +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" +"Hier kunt u een logo voor uw groep uploaden. De maximale bestandsgrootte is %" +"s." + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" #: actions/grouprss.php:136 actions/grouprss.php:137 #, php-format @@ -4593,8 +5678,27 @@ msgstr "Microblog door de groep %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Zoeken naar groepen op %%site.name%% op basis van naam, locatie of interesses of beschrijving. Scheid de zoektermen met spaties. Iedere zoekterm moet uit drie of meer tekens bestaan." +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Zoeken naar groepen op %%site.name%% op basis van naam, locatie of " +"interesses of beschrijving. Scheid de zoektermen met spaties. Iedere " +"zoekterm moet uit drie of meer tekens bestaan." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" #: actions/noticesearch.php:91 #, php-format @@ -4603,8 +5707,12 @@ msgstr "Zoekresultaten voor \"%s\" op %s" #: actions/openidlogin.php:66 #, php-format -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Om veiligheidsredenen vragen we u opnieuw aan te melden met uw [OpenID](%%doc.openid%%) alvorens u uw instellingen kunt wijzigen." +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Om veiligheidsredenen vragen we u opnieuw aan te melden met uw [OpenID](%%" +"doc.openid%%) alvorens u uw instellingen kunt wijzigen." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 msgid "Public Stream Feed (RSS 1.0)" @@ -4618,15 +5726,51 @@ msgstr "Publieke streamfeed (RSS 1.0)" msgid "Public Stream Feed (Atom)" msgstr "Publieke streamfeed (Atom)" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 -msgid " except this private data: password, email address, IM address, and phone number." -msgstr " behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" behalve de volgende privégegevens: wachtwoord, e-mailadres, IM-adres, " +"telefoonnummer." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 msgid "Created" msgstr "Aangemaakt" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 msgid "Your profile" msgstr "Uw profiel" @@ -4666,9 +5810,46 @@ msgstr "Avatar bewerken" msgid "Edit profile settings" msgstr "Profielinstellingen bewerken" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "Er is een bevestigingscode is verzonden naar het telefoonnummer dat u hebt toegevoegd. Controleer uw telefoon voor de code en instructies." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Er is een bevestigingscode is verzonden naar het telefoonnummer dat u hebt " +"toegevoegd. Controleer uw telefoon voor de code en instructies." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -4682,14 +5863,85 @@ msgstr "Er is een bevestigingscode is verzonden naar het telefoonnummer dat u he msgid "No such user!" msgstr "Deze gebruiker bestaat niet." +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + #: actions/twittersettings.php:345 actions/twittersettings.php:362 #, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." -msgstr "Het was niet mogelijk de gebruikersgegeven voor \"%s\" op te halen van Twitter." +msgstr "" +"Het was niet mogelijk de gebruikersgegeven voor \"%s\" op te halen van " +"Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Controleer de details alstublieft om er zeker van te zijn u zich wilt abonneren op de mededelingen van deze gebruiker. Als u zojuist geen verzoek hebt gedaan om te abonneren op de mededelingen van een andere gebruiker, klik dan op \"Afkeuren\"" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Controleer de details alstublieft om er zeker van te zijn u zich wilt " +"abonneren op de mededelingen van deze gebruiker. Als u zojuist geen verzoek " +"hebt gedaan om te abonneren op de mededelingen van een andere gebruiker, " +"klik dan op \"Afkeuren\"" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" #: lib/dberroraction.php:60 msgid "Database error" @@ -4697,22 +5949,179 @@ msgstr "Databasefout" #: lib/facebookaction.php:271 lib/facebookaction.php:273 #, php-format -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Om de Facebook-applicatie te kunnen gebruiken moet u aanmelden met uw gebruikersnaam en wachtwoord. Hebt u nog geen gebruikersnaam? " +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Om de Facebook-applicatie te kunnen gebruiken moet u aanmelden met uw " +"gebruikersnaam en wachtwoord. Hebt u nog geen gebruikersnaam? " + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" #: lib/feed.php:91 msgid "FOAF" msgstr "Vrienden van vrienden (FOAF)" +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + #: lib/mail.php:241 lib/mail.php:240 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s volgt nu uw medelingen op %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\n\nMet vriendelijke groet,\n%7$s.\n----\nWijzig uw e-mailadres of instellingen op %8$s\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s volgt nu uw medelingen op %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"\n" +"Met vriendelijke groet,\n" +"%7$s.\n" +"----\n" +"Wijzig uw e-mailadres of instellingen op %8$s\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 msgid "Search site" msgstr "Site doorzoeken" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 msgid "No such attachment." msgstr "Dat document bestaat niet." @@ -4751,6 +6160,13 @@ msgstr "Dialoog" msgid "Do not delete this notice" msgstr "Deze mededeling niet verwijderen" +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 @@ -4765,11 +6181,34 @@ msgstr "Ongeldig alias: \"%s\"" msgid "Alias \"%s\" already in use. Try another one." msgstr "De alias \"%s\" wordt al gebruikt. Geef een ander alias op." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 msgid "Could not create aliases." msgstr "Het was niet mogelijk de aliassen aan te maken." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 msgid "No notice id" msgstr "Geen mededelings-ID" @@ -4778,6 +6217,14 @@ msgstr "Geen mededelings-ID" msgid "No notice" msgstr "Geen mededeling" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 msgid "Not a valid invitation code." msgstr "Geen geldige uitnodigingscode." @@ -4787,6 +6234,10 @@ msgstr "Geen geldige uitnodigingscode." msgid "No group specified." msgstr "Er is geen groep aangegeven." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 msgid "User is already blocked from group." msgstr "Deze gebruiker is al de toegang tot de groep ontzegd." @@ -4800,6 +6251,18 @@ msgstr "De gebruiker is geen lid van de groep." msgid "Block user from group" msgstr "Gebruiker toegang tot de groep blokkeren" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." msgstr "U moet aangemeld zijn om een groep te kunnen bewerken." @@ -4808,6 +6271,12 @@ msgstr "U moet aangemeld zijn om een groep te kunnen bewerken." msgid "Group design" msgstr "Groepsontwerpen" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -4815,45 +6284,246 @@ msgstr "Groepsontwerpen" msgid "Couldn't update your design." msgstr "Het was niet mogelijk uw ontwerp bij te werken." +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 msgid "Design preferences saved." msgstr "De ontwerpvoorkeuren zijn opgeslagen." +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 msgid "No results." msgstr "Geen resultaten." +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 msgid "User is not blocked from group." msgstr "De gebruiker is niet de toegang tot de groep ontzegd." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 msgid "Message sent" msgstr "Bericht verzonden." +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 msgid "Couldn't save file." msgstr "Het was niet mogelijk het bestand op te slaan." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "Via [OpenID](%%doc.openid%%) kunt u bij veel websites aanmelden met dezelfde gebruiker. Hier kunt u uw koppelingen met OpenID's beheren." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"Via [OpenID](%%doc.openid%%) kunt u bij veel websites aanmelden met dezelfde " +"gebruiker. Hier kunt u uw koppelingen met OpenID's beheren." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 msgid "View profile designs" msgstr "Profielontwerpen bekijken" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "Dit is %%site.name%%, [microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software [StatusNet](http://status.net/)" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Dit is %%site.name%%, [microblogdienst](http://en.wikipedia.org/wiki/Micro-" +"blogging) gebaseerd op de Vrije Software [StatusNet](http://status.net/)" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Als u uw wachtwoord kwijt bent, is het mogelijk een nieuw wachtwoord te ontvangen op het e-mailadres dat aan uw gebruiker gekoppeld is." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Als u uw wachtwoord kwijt bent, is het mogelijk een nieuw wachtwoord te " +"ontvangen op het e-mailadres dat aan uw gebruiker gekoppeld is." #: actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -4871,11 +6541,62 @@ msgstr "Sorry. De uitnodigingscode is ongeldig." msgid "Subscribe to a remote user" msgstr "Op een gebruiker uit een andere systeem abonneren" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 #, php-format msgid "%s's favorite notices, page %d" msgstr "Favoriete mededelingen van %s, pagina %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 #, php-format msgid "Notice feed for %s group (RSS 1.0)" @@ -4893,8 +6614,20 @@ msgstr "Mededelingenfeed voor groep %s (Atom)" #: actions/showgroup.php:446 actions/showgroup.php:454 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software [StatusNet](http://status.net/). De leden wisselen korte mededelingen uit over hun ervaringen en interesses. " +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]" +"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " +"[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit " +"over hun ervaringen en interesses. " + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" #: actions/shownotice.php:101 msgid "Not a local notice" @@ -4910,10 +6643,62 @@ msgstr " met het label %s" msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Mededelingenfeed voor %s met het label %s (RSS 1.0)" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** heeft een gebruiker op %%%%site.name%%%%, eena [microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software [StatusNet](http://status.net/). " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** heeft een gebruiker op %%%%site.name%%%%, eena [microblogdienst]" +"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " +"[StatusNet](http://status.net/). " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 @@ -4963,6 +6748,10 @@ msgstr "%1$s / Updates over %2$s" msgid "Updates tagged with %1$s on %2$s!" msgstr "Updates met het label %1$s op %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 msgid "License" msgstr "Licentie" @@ -4975,19 +6764,71 @@ msgstr "Dit abonnement weigeren" msgid "Profile design" msgstr "Profielontwerp" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 #, php-format msgid "%s is not a member of any group." msgstr "%s is van geen enkele groep lid." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 msgid "Problem saving notice. Too long." -msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling. Deze is te lang." +msgstr "" +"Er is een probleem opgetreden bij het opslaan van de mededeling. Deze is te " +"lang." + +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 msgid "Design your profile" msgstr "Uw profiel ontwerpen" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + #: lib/attachmentlist.php:265 msgid "Author" msgstr "Auteur" @@ -4996,10 +6837,27 @@ msgstr "Auteur" msgid "Provider" msgstr "Provider" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 msgid "Upload file" msgstr "Bestand uploaden" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + #: lib/designsettings.php:139 msgid "On" msgstr "Aan" @@ -5008,6 +6866,14 @@ msgstr "Aan" msgid "Off" msgstr "Uit" +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 msgid "Change colours" msgstr "Kleuren wijzigen" @@ -5044,6 +6910,19 @@ msgstr "Standaardinstellingen toepassen" msgid "Save design" msgstr "Ontwerp opslaan" +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 msgid "Blocked" msgstr "Geblokkeerd" @@ -5053,324 +6932,657 @@ msgstr "Geblokkeerd" msgid "%s blocked users" msgstr "%s geblokkeerde gebruikers" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 msgid "in context" msgstr "in context" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + #: lib/searchaction.php:156 lib/searchaction.php:162 msgid "Search help" msgstr "Hulp bij zoeken" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 #, php-format msgid "%s is not a valid color!" msgstr "%s is geen geldige kleur." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy msgid "No such page" -msgstr "Deze pagina bestaat niet" +msgstr "Onbekend label." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." -msgstr "Dat is te lang. De maximale berichtlengte is %d tekens." +msgstr "Dit is te lang. De maximale lengte is 140 tekens." #: actions/apifriendshipsdestroy.php:109 +#, fuzzy msgid "Could not unfollow user: User not found." -msgstr "Het is niet mogelijk deze gebruiker niet langer te volgende: de gebruiker is niet aangetroffen." +msgstr "U kunt de gebruiker %s niet volgen, omdat deze gebruiker niet bestaat." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" #: actions/apigroupcreate.php:261 -#, php-format +#, fuzzy, php-format msgid "Description is too long (max %d chars)." -msgstr "De beschrijving is te lang. Gebruik maximaal %d tekens." +msgstr "de beschrijving is te lang (maximaal 140 tekens)." #: actions/apigroupjoin.php:110 +#, fuzzy msgid "You are already a member of that group." -msgstr "U bent al lid van die groep." +msgstr "U bent al lid van deze groep" #: actions/apigroupjoin.php:138 -#, php-format +#, fuzzy, php-format msgid "Could not join user %s to group %s." -msgstr "Het was niet mogelijk gebruiker %s toe te voegen aan de groep %s." +msgstr "Het was niet mogelijk om de gebruiker %s toe te voegen aan de groep %s" #: actions/apigroupleave.php:114 +#, fuzzy msgid "You are not a member of this group." -msgstr "U bent geen lid van deze groep." +msgstr "U bent geen lid van deze groep" #: actions/apigroupleave.php:124 -#, php-format +#, fuzzy, php-format msgid "Could not remove user %s to group %s." -msgstr "Het was niet mogelijk gebruiker %s uit de group %s te verwijderen." +msgstr "De gebruiker %s kon niet uit de groet %s verwijderd worden" #: actions/apigrouplist.php:95 -#, php-format +#, fuzzy, php-format msgid "%s's groups" -msgstr "Groepen van %s" +msgstr "%s groepen" #: actions/apigrouplist.php:103 -#, php-format +#, fuzzy, php-format msgid "Groups %s is a member of on %s." -msgstr "Groepen waarvan %s lid is op %s." +msgstr "%s is van geen enkele groep lid." #: actions/apigrouplistall.php:94 -#, php-format +#, fuzzy, php-format msgid "groups on %s" -msgstr "groepen op %s" +msgstr "Groepshandelingen" #: actions/apistatusesshow.php:138 +#, fuzzy msgid "Status deleted." -msgstr "De status is verwijderd." +msgstr "De avatar is verwijderd." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." -msgstr "Dat is te lang. De maximale mededelingslengte is 140 tekens." +msgstr "Dat is te lang. De maximale lengte voor mededelingen is 140 tekens." #: actions/apistatusesupdate.php:209 actions/newnotice.php:178 #, php-format msgid "Max notice size is %d chars, including attachment URL." -msgstr "De maximale mededelingenlengte is %d tekens, inclusief de URL voor de bijlage." +msgstr "" #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy msgid "Unsupported format." -msgstr "Niet-ondersteund bestandsformaat." +msgstr "Niet ondersteund beeldbestandsformaat." #: actions/bookmarklet.php:50 +#, fuzzy msgid "Post to " -msgstr "Verzenden naar " +msgstr "Foto" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format +#, fuzzy, php-format msgid "description is too long (max %d chars)." -msgstr "de beschrijving is te lang (maximaal %d tekens)" +msgstr "de beschrijving is te lang (maximaal 140 tekens)." #: actions/favoritesrss.php:115 -#, php-format +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "Updates op de favorietenlijst van %1$s op %2$s." +msgstr "Updates van %1$s op %2$s." #: actions/finishremotesubscribe.php:80 +#, fuzzy msgid "User being listened to does not exist." -msgstr "De gebruiker waarnaar wordt geluisterd bestaat niet." +msgstr "Gebruiker waarnaar geluisterd wordt bestaat niet." #: actions/finishremotesubscribe.php:106 +#, fuzzy msgid "You are not authorized." -msgstr "U hebt niet de juiste toegangsrechten." +msgstr "Niet geautoriseerd." #: actions/finishremotesubscribe.php:109 +#, fuzzy msgid "Could not convert request token to access token." -msgstr "Het was niet mogelijk het verzoektoken te converteren naar een toegangstoken." +msgstr "" +"Het was niet mogelijk de verzoekentokens om te zetten naar toegangstokens." #: actions/finishremotesubscribe.php:114 +#, fuzzy msgid "Remote service uses unknown version of OMB protocol." -msgstr "De diensten op afstand gebruiken een onbekende versie van het OMB-protocol." +msgstr "Onbekende versie van het OMB-protocol." #: actions/getfile.php:75 +#, fuzzy msgid "No such file." -msgstr "Het bestand bestaat niet." +msgstr "De mededeling bestaat niet." #: actions/getfile.php:79 +#, fuzzy msgid "Cannot read file." -msgstr "Het bestand kon niet gelezen worden." +msgstr "Het bestand is zoekgeraakt." #: actions/grouprss.php:133 -#, php-format +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" -msgstr "Updates voor leden van %1$s op %2$s." +msgstr "Updates van %1$s op %2$s." #: actions/imsettings.php:89 +#, fuzzy msgid "IM is not available." -msgstr "IM is niet beschikbaar." +msgstr "Deze pagina is niet beschikbaar in een " #: actions/login.php:259 -#, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen gebruikersnaam? [Registreer een nieuwe gebruiker](%%action.register%%)." +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen " +"gebruikersnaam? [Registreer](%%action.register%%) dan een nieuw gebruiker, " +"of probeer [OpenID](%%action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Updates met het label %1$s op %2$s!" #: actions/noticesearchrss.php:91 -#, php-format +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Updates die overeenkomen met de zoekterm \"%1$s\" op %2$s." +msgstr "Alle updates die overeenkomen met de zoekterm \"%s\"" #: actions/oembed.php:157 +#, fuzzy msgid "content type " -msgstr "inhoudstype " +msgstr "Inhoud" #: actions/oembed.php:160 msgid "Only " -msgstr "Alleen " +msgstr "" #: actions/postnotice.php:90 #, php-format msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." -msgstr "De mededelingenlicentie \"%s\" is niet compatibel met de licentie \"%s\" van deze site." +msgstr "" #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" -msgstr "Geef een beschrijving van uzelf en uw interesses in %d tekens" +msgstr "Beschrijf uzelf en uw interesses in 140 tekens" #: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy msgid "Describe yourself and your interests" -msgstr "Beschrijf uzelf en uw interesses" +msgstr "Beschrijf uzelf en uw " #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." -msgstr "De beschrijving is te lang (maximaal %d tekens)." +msgstr "De beschrijving is te lang (maximaal 140 tekens)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" #: actions/remotesubscribe.php:168 -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." -msgstr "De URL voor het profiel is niet geldig (het is geen YADIS-document of er is geen of ongeldige XRDS gedefinieerd)." +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Geen geldige profiel-URL (geen YADIS-document)." + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" #: actions/remotesubscribe.php:183 +#, fuzzy msgid "Couldn’t get a request token." msgstr "Het was niet mogelijk een verzoektoken te krijgen." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Mededelingenfeed voor %s (RSS 1.0)" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Mededelingenfeed voor %s (RSS 2.0)" + #: actions/replies.php:158 -#, php-format +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Antwoordenfeed voor %s (Atom)" +msgstr "Mededelingenfeed voor %s (Atom)" #: actions/repliesrss.php:72 -#, php-format +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" -msgstr "Antwoorden aan %1$s op %2$s." +msgstr "Updates van %1$s op %2$s." #: actions/showfavorites.php:170 -#, php-format +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Favorietenfeed van %s (RSS 1.0)" +msgstr "Feed voor vrienden van %s (RSS 1.0)" #: actions/showfavorites.php:177 -#, php-format +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Favorietenfeed van %s (RSS 2.0)" +msgstr "Feed voor vrienden van %s (RSS 2.0)" #: actions/showfavorites.php:184 -#, php-format +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Favorietenfeed van %s (Atom)" +msgstr "Feed voor vrienden van %s (Atom)" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "Vriend van een vriend voor de groep %s" +msgstr "Vriend van een vriend (FOAF) voor %s" #: actions/shownotice.php:90 +#, fuzzy msgid "Notice deleted." -msgstr "Deze mededeling is verwijderd." +msgstr "De mededeling is verzonden" #: actions/smssettings.php:91 +#, fuzzy msgid "SMS is not available." -msgstr "SMS is niet beschikbaar." +msgstr "Deze pagina is niet beschikbaar in een " #: actions/tag.php:92 -#, php-format +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" -msgstr "Mededelingenfeed voor label %s (RSS 2.0)" +msgstr "Mededelingenfeed voor label %s (RSS 1.0)" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" #: actions/userauthorization.php:110 -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Controleer alstublieft deze details om er zeker van te zijn dat u zich wilt abonneren op de mededelingen van deze gebruiker. Als u zojuist niet hebt aangegeven dat u zich op de mededelingen van een gebruiker wilt abonneren, klik dan op \"Afwijzen\"." +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Controleer de details alstublieft om er zeker van te zijn u zich wilt " +"abonneren op de mededelingen van deze gebruiker. Als u zojuist geen verzoek " +"hebt gedaan om te abonneren op de mededelingen van een andere gebruiker, " +"klik dan op \"Afkeuren\"" #: actions/userauthorization.php:249 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. Controleer de instructies van de site voor informatie over het volledig afwijzen van een abonnement. Uw abonnementstoken is:" +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Het abonnement is geautoriseerd maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de website voor details over hoe het " +"abonnement te autoriseren." #: actions/userauthorization.php:261 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Het abonnement is afgewezen, maar er is geen callback-URL doorgegeven. Controleer de instructies van de site voor informatie over het volledig afwijzen van een abonnement." +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Het abonnement is afgewezen maar er is geen callback-URL doorgegeven. " +"Controleer de instructies van de website voor details over hoe het " +"abonnement volledig af te wijzen." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." #: actions/userauthorization.php:348 -#, php-format +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." -msgstr "Er staat een verkeerd afbeeldingsttype op de avatar-URL \"%s\"." +msgstr "Het beelbestandstype voor \"'%s\" is onjuist" #: lib/action.php:435 +#, fuzzy msgid "Connect to services" -msgstr "Met diensten verbinden" +msgstr "Het was niet mogelijk om door te verwijzen naar de server: %s" #: lib/action.php:785 +#, fuzzy msgid "Site content license" -msgstr "Licentie voor siteinhoud" +msgstr "Licentie van de StatusNet-software" #: lib/command.php:88 -#, php-format +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "De gebruiker %s is niet aangetroffen" +msgstr "" +"Het was niet mogelijk het bevestigde e-mailadres voor de gebruiker bij te " +"werken." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" #: lib/command.php:99 -#, php-format +#, fuzzy, php-format msgid "Nudge sent to %s" -msgstr "De por naar %s is verzonden" +msgstr "De por is verzonden" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" #: lib/command.php:358 scripts/xmppdaemon.php:321 #, php-format msgid "Message too long - maximum is %d characters, you sent %d" -msgstr "Het bericht te is lang. De maximale lengte is %d tekens. De lengte van uw bericht was %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" #: lib/command.php:439 -#, php-format +#, fuzzy, php-format msgid "Reply to %s sent" -msgstr "Het antwoord aan %s is verzonden" +msgstr "Op deze mededeling antwoorden" #: lib/command.php:441 +#, fuzzy msgid "Error saving notice." -msgstr "Er is een fout opgetreden bij het opslaan van de mededeling." +msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" #: lib/common.php:191 +#, fuzzy msgid "No configuration file found. " -msgstr "Er is geen instellingenbestand aangetroffen. " +msgstr "Geen bevestigingscode." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Bij de site aanmelden" #: lib/galleryaction.php:139 +#, fuzzy msgid "Select tag to filter" -msgstr "Selecteer een label om op te filteren" +msgstr "Selecteer een provider" #: lib/groupeditform.php:168 +#, fuzzy msgid "Describe the group or topic" -msgstr "Beschrijf de groep of het onderwerp" +msgstr "Beschrijf de groep of het onderwerp in maximaal 140 karakters" #: lib/groupeditform.php:170 -#, php-format +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" -msgstr "Beschrijf de groep of het onderwerp in %d tekens" +msgstr "Beschrijf de groep of het onderwerp in maximaal 140 karakters" #: lib/jabber.php:192 -#, php-format +#, fuzzy, php-format msgid "notice id: %s" -msgstr "mededelingennummer: %s" +msgstr "Geen mededelings-ID" #: lib/mail.php:554 -#, php-format +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "%s (@%s) heeft uw mededeling als favoriet toegevoegd" +msgstr "%1$s heeft zojuist uw kennisgeving van %2$s toevoegd" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" #: lib/mail.php:611 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "%s (@%s) heeft u een mededeling gestuurd" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" #: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy msgid "from" -msgstr "van" +msgstr " van " #: lib/mediafile.php:179 lib/mediafile.php:216 msgid "File exceeds user's quota!" -msgstr "Met dit bestand wordt het quotum van de gebruiker overschreden!" +msgstr "" #: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Het was niet mogelijk het MIME-type van het bestand te bepalen!" +msgstr "Het was niet mogelijk de brongebruiker te bepalen." #: lib/oauthstore.php:345 +#, fuzzy msgid "Duplicate notice" -msgstr "Kennisgeving van duplicaat" - +msgstr "Mededeling verwijderen" diff --git a/locale/nn/LC_MESSAGES/statusnet.mo b/locale/nn/LC_MESSAGES/statusnet.mo index 5a67178f5742f02730a255efc5336917c9f1f45b..a5727e1f6ec752a416f5b1e744395a9c34c5bd60 100644 GIT binary patch delta 23709 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, ., og _, separert med komma eller mellomrom" +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Emneord for denne brukaren (bokstavar, tal, -, ., og " +"_, separert med komma eller mellomrom" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Du kan berre leggje til emneord på folk som du tingar notisar frå, eller som tingar notisar frå deg." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Du kan berre leggje til emneord på folk som du tingar notisar frå, eller som " +"tingar notisar frå deg." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4703,7 +5027,9 @@ msgstr "Kunne ikkje lagra emneord." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Bruk dette skjemaet for å leggje til emneord til dei som tingar notisar frå deg, eller som du tingar notisar frå." +msgstr "" +"Bruk dette skjemaet for å leggje til emneord til dei som tingar notisar frå " +"deg, eller som du tingar notisar frå." #: actions/tagrss.php:35 msgid "No such tag." @@ -4789,8 +5115,10 @@ msgstr "Feil ved lagring av notis. Ukjend brukar." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -4969,7 +5297,8 @@ msgstr "Beskriv gruppa eller emnet med 140 teikn" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Kvar er du, t.d. «Stavanger, Rogaland, Noreg»" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5033,8 +5362,12 @@ msgstr "Login eller registrer med OpenID" #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Hei, %s\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Hei, %s\n" +"\n" #: lib/mail.php:236 #, php-format @@ -5053,8 +5386,12 @@ msgstr "Heimeside: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "Bio: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Bio: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5222,17 +5559,17 @@ msgid "Unsubscribe from this user" msgstr "Fjern tinging fra denne brukaren" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Straum for vener av %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Straum for vener av %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Straum for vener av %s" @@ -5242,7 +5579,7 @@ msgid "You and friends" msgstr "%s med vener" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Du kan laste opp ein personleg avatar." @@ -5251,10 +5588,21 @@ msgstr "Du kan laste opp ein personleg avatar." msgid "Avatar deleted." msgstr "Lasta opp brukarbilete." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du ikkje finne ho att." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du er i ferd med å sletta ei melding. Når den fyrst er sletta, kann du " +"ikkje finne ho att." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5266,9 +5614,29 @@ msgstr "Der var eit problem med sesjonen din. Vennlegst prøv på nytt." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Send meg ein epost når nokon sender meg ei privat melding." +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format, fuzzy -msgid "You can upload a logo image for your group. The maximum file size is %s." +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "Du kan lasta opp ein logo for gruppa." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5277,14 +5645,28 @@ msgid "Pick a square area of the image to be the logo." msgstr "Velg eit utvalg av bildet som vil blir din avatar." #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Mikroblogg av %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer " +"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" #: actions/newmessage.php:102 #, fuzzy @@ -5292,14 +5674,18 @@ msgid "Only logged-in users can send direct messages." msgstr "Ein feil oppstod ved sending av direkte melding." #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr " Søkestraum for «%s»" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Skriv inn brukarnam og passord før du endrar innstillingar (av tryggleiksomsyn)." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Skriv inn brukarnam og passord før du endrar innstillingar (av " +"tryggleiksomsyn)." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5316,10 +5702,35 @@ msgstr "Offentleg straum" msgid "Public Stream Feed (Atom)" msgstr "Offentleg straum" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr " unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og telefonnummer." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " +"telefonnummer." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5327,33 +5738,44 @@ msgstr " unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og tele msgid "Created" msgstr "Lag" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Gruppe profil" #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr " sin profil" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Notisstraum for %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Notisstraum for %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Notisstraum for %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Utboks for %s" @@ -5369,10 +5791,47 @@ msgstr "Brukarbilete" msgid "Edit profile settings" msgstr "Profilinnstillingar" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for koden og veiledning på korleis du nyttar han." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Sende godkjenningskode til telefonnummeret du la til. Sjekk innboksen for " +"koden og veiledning på korleis du nyttar han." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5389,18 +5848,27 @@ msgstr "Ingen slik brukar" #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Legg til Twitter-kontoen din for å automatisk senda dine uppdateringar til Twitter," +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Legg til Twitter-kontoen din for å automatisk senda dine uppdateringar til " +"Twitter," #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Klarte ikkje å hente informasjon fra kontoen din, «%s», frå Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " +"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5409,8 +5877,11 @@ msgstr "Søk etter folk eller innhald" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5422,21 +5893,218 @@ msgstr "Kopla til IM, SMS, Twitter" msgid "Badge" msgstr "Dult" +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "For å nytta %s Facebook-programmet må du logga inn" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s fylgjer no oppdateringane dine på %2$s.\n\n %3$s\n\nBeste helsing,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s fylgjer no oppdateringane dine på %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Beste helsing,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Søk" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5453,12 +6121,12 @@ msgid "Block this user from this group" msgstr "Ei liste over brukarane i denne gruppa." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Brukarprofil" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s med vener, side %d" @@ -5482,26 +6150,56 @@ msgstr "Stadfestingskode" msgid "Do not delete this notice" msgstr "Kan ikkje sletta notisen." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Ugyldig merkelapp: %s" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Kunne ikkje lagre favoritt." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5512,6 +6210,14 @@ msgstr "Ny notis" msgid "No notice" msgstr "Ny notis" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5523,6 +6229,10 @@ msgstr "Ikkje eit gyldig brukarnamn." msgid "No group specified." msgstr "Ingen vald profil." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5539,6 +6249,18 @@ msgstr "Du er ikkje medlem av den gruppa." msgid "Block user from group" msgstr "Blokker brukaren" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5549,6 +6271,12 @@ msgstr "Du må være logga inn for å lage ei gruppe." msgid "Group design" msgstr "Grupper" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5581,46 +6309,232 @@ msgstr "Du må være administrator for å redigere gruppa" msgid "Make Admin" msgstr "Administrator" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Ingen resultat" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Brukar har blokkert deg." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Melding" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Kan ikkje lagra profil." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) lar deg logge inn på mangen sider med den samme brukar kontoen. Velikehold dine OpenID herfra." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) lar deg logge inn på mangen sider med den samme " +"brukar kontoen. Velikehold dine OpenID herfra." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profilinnstillingar" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/" +"Micro-blogging)-teneste" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Me sender deg eit nytt passord til epostadressa i kontoen din viss du har mista det gamle." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Me sender deg eit nytt passord til epostadressa i kontoen din viss du har " +"mista det gamle." #: actions/recoverpassword.php:158 #, fuzzy @@ -5642,30 +6556,87 @@ msgstr "Feil med stadfestingskode." msgid "Subscribe to a remote user" msgstr "Lagre tinging for brukar: %s" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "%s favoritt meldingar, side %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Notisstraum for %s gruppa" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Notisstraum for %s gruppa" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Notisstraum for %s gruppa" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** er ei brukargruppe på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -5678,33 +6649,84 @@ msgid "Not a local notice" msgstr "Ikkje ein lokal brukar." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Notisar merka med %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Notisstraum for %s gruppa" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en.wikipedia.org/wiki/Micro-blogging)-teneste" +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." +"wikipedia.org/wiki/Micro-blogging)-teneste" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s høyrer no på" #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Notisstraum for %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Notisstraum for %s" @@ -5735,16 +6757,20 @@ msgid "Could not find target user." msgstr "Kan ikkje finna einkvan status." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Oppdateringar som svarar til %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5760,41 +6786,127 @@ msgstr "%s tingarar" msgid "Profile design" msgstr "Profilinnstillingar" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Du er ikkje medlem av den gruppa." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Melding til %1$s på %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Brukarprofil" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profil" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Last opp" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Endra passordet ditt" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5810,21 +6922,127 @@ msgstr "Søk" msgid "Links" msgstr "Logg inn" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Blokkér" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Blokker brukaren" #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "Legg til eller rediger logoen til %s" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5840,11 +7058,26 @@ msgstr "Brukar" msgid "Search help" msgstr "Søk" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "Heimesida er ikkje ei gyldig internettadresse." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5852,12 +7085,12 @@ msgid "No such page" msgstr "Dette emneord finst ikkje." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Direkte meldingar til %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Det er for langt. Ein notis kan berre være 140 teikn." @@ -5866,8 +7099,12 @@ msgstr "Det er for langt. Ein notis kan berre være 140 teikn." msgid "Could not unfollow user: User not found." msgstr "Fann ikkje brukaren, so han kan ikkje fylgjast" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "skildringa er for lang (maks 140 teikn)." @@ -5877,7 +7114,7 @@ msgid "You are already a member of that group." msgstr "Du er allereie medlem av den gruppa" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Kunne ikkje melde brukaren %s inn i gruppa %s" @@ -5887,31 +7124,45 @@ msgid "You are not a member of this group." msgstr "Du er ikkje medlem av den gruppa." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Kunne ikkje fjerne %s fra %s gruppa " #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "%s grupper" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "Grupper %s er medlem av" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Gruppe handlingar" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Lasta opp brukarbilete." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -5923,12 +7174,12 @@ msgid "Post to " msgstr "Bilete" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "skildringa er for lang (maks 140 teikn)." #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -5963,7 +7214,7 @@ msgid "Cannot read file." msgstr "Mista fila vår." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!" @@ -5973,17 +7224,41 @@ msgid "IM is not available." msgstr "Denne sida er ikkje tilgjengleg i eit" #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%%)." +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Logg inn med brukarnamn og passord. Har du ikkje brukarnamn endå? [Opprett](%" +"%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" +"%)." + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Oppdateringar frå %1$s på %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Alle oppdateringer frå søket «%s»" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Kopla til" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Skriv om deg og interessene dine med 140 teikn" @@ -5993,13 +7268,20 @@ msgid "Describe yourself and your interests" msgstr "Skildra deg sjølv og din" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "«Om meg» er for lang (maks 140 " +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Ikkje ein brukande profil-netadresse (ingen YADIS-dokument)." #: actions/remotesubscribe.php:176 @@ -6012,35 +7294,53 @@ msgstr "Det er ikkje ein lokal profil! Log inn for å tinge." msgid "Couldn’t get a request token." msgstr "Fekk ikkje spørjingsbillett (request token)." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Notisstraum for %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Notisstraum for %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Notisstraum for %s gruppa" +msgstr "Notisstraum for %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Melding til %1$s på %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Straum for %s sine favorittar" +msgstr "Straum for vener av %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Straum for %s sine favorittar" +msgstr "Straum for vener av %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Straum for %s sine favorittar" +msgstr "Straum for vener av %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "%s gruppe" +msgstr "Utboks for %s" #: actions/shownotice.php:90 #, fuzzy @@ -6053,32 +7353,78 @@ msgid "SMS is not available." msgstr "Denne sida er ikkje tilgjengleg i eit" #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Notisstraum for %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " +"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal gjennomførast. Ditt tingings teikn er: " +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Tingina har blitt autorisert, men ingen henvisnings URL er tilgjengleg. " +"Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " +"gjennomførast. Ditt tingings teikn er: " #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk med sida sine instruksjonar for korleis ein skal avvise tinginga." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk " +"med sida sine instruksjonar for korleis ein skal avvise tinginga." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Kan ikkje lesa brukarbilete-URL «%s»" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Feil biletetype for '%s'" @@ -6093,27 +7439,35 @@ msgid "Site content license" msgstr "StatusNets programvarelisens" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Kan ikkje oppdatera brukar med stadfesta e-postadresse." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Dytta!" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Melding for lang - maksimum 140 teikn, du skreiv %d" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Svar på denne notisen" @@ -6122,11 +7476,54 @@ msgstr "Svar på denne notisen" msgid "Error saving notice." msgstr "Eit problem oppstod ved lagring av notis." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Ingen stadfestingskode." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6143,32 +7540,76 @@ msgid "Describe the group or topic" msgstr "Beskriv gruppa eller emnet med 140 teikn" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Beskriv gruppa eller emnet med 140 teikn" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Notisstraum for %s" +msgstr "Ny notis" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s la til di melding som ein favoritt" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " frå " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Kunne ikkje slette favoritt." +msgstr "Kan ikkje hente offentleg straum." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Slett notis" - diff --git a/locale/pl/LC_MESSAGES/statusnet.mo b/locale/pl/LC_MESSAGES/statusnet.mo index 0964667c079da4091b3a778598623c76bf062128..5e13dd9a78f9044606fd6370bb5aef839295aa8e 100644 GIT binary patch delta 9937 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 QcTCgz@!Q|3;f}oie?`bO?EnA( diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index d1ca3c3465..3fbee78c8b 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -1,29 +1,19 @@ # Translation of StatusNet to Polish # # -- -# Paweł Wilk , 2008. -# Piotr Drąg , 2009. -# -# Polish language has 3 plural forms. -# Special case is used for one and some numbers ending in 2, 3, or 4. -# Example: -# 1 WINDOW -> 1 OKNO -# x2 to x4 WINDOWS -> x2 do x4 OKNA (x != 1) -# 5 or more WINDOWS -> 5 lub więcej OKIEN -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:24:10+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:44:18+0000\n" "Language-Team: Polish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: out-statusnet\n" -"Plural-Forms: nplurals=3;\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 #: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 @@ -34,8 +24,11 @@ msgstr " Znajdź strumień dla \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr " poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora, numer telefonu." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +" poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora, numer " +"telefonu." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -57,8 +50,60 @@ msgstr "%1$s zapraszają Cię, abyś dołączył do nich w %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "Użytkownik %1$s zapraszają Cię, abyś dołączył do nich w %2$s (%3$s).\n\n%2$s jest usługą mikroblogowania, która umożliwia pozostawanie w kontakcie z osobami, których znasz i z tymi, którzy Cię interesują.\n\nMożesz także dzielić się w sieci nowinkami o sobie, swoimi przemyśleniami, lub swoim życiem z osobami, którzy Cię znają. To także wspaniały sposób na poznawanie nowych osób, którzy dzielą Twoje zainteresowania.\n\nUżytkownik %1$s powiedział:\n\n%4$s\n\nMożesz zobaczyć stronę profilu %1$s na %2$s tutaj:\n\n%5$s\n\nJeśli chcesz wypróbować usługę, naciśnij na poniższy odnośnik, aby zaakceptować zaproszenie.\n\n%6$s\n\nJeśli nie, możesz zignorować tę wiadomość. Dziękujemy za Twoją cierpliwość i czas.\n\nZ poważaniem, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"Użytkownik %1$s zapraszają Cię, abyś dołączył do nich w %2$s (%3$s).\n" +"\n" +"%2$s jest usługą mikroblogowania, która umożliwia pozostawanie w kontakcie z " +"osobami, których znasz i z tymi, którzy Cię interesują.\n" +"\n" +"Możesz także dzielić się w sieci nowinkami o sobie, swoimi przemyśleniami, " +"lub swoim życiem z osobami, którzy Cię znają. To także wspaniały sposób na " +"poznawanie nowych osób, którzy dzielą Twoje zainteresowania.\n" +"\n" +"Użytkownik %1$s powiedział:\n" +"\n" +"%4$s\n" +"\n" +"Możesz zobaczyć stronę profilu %1$s na %2$s tutaj:\n" +"\n" +"%5$s\n" +"\n" +"Jeśli chcesz wypróbować usługę, naciśnij na poniższy odnośnik, aby " +"zaakceptować zaproszenie.\n" +"\n" +"%6$s\n" +"\n" +"Jeśli nie, możesz zignorować tę wiadomość. Dziękujemy za Twoją cierpliwość i " +"czas.\n" +"\n" +"Z poważaniem, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -68,8 +113,20 @@ msgstr "Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s.\n\n %3$s\n\nZ poważaniem,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Z poważaniem,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -145,14 +202,22 @@ msgstr "Użytkownik %s aktualizuje od każdego!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Powinieneś właśnie otrzymać wiadomość e-mail, zawierającą instrukcje potwierdzenia adresu e-mail)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Powinieneś właśnie otrzymać wiadomość e-mail, zawierającą instrukcje " +"potwierdzenia adresu e-mail)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site." +"broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -162,7 +227,8 @@ msgstr "**%%site.name%%** jest usługą mikroblogowania. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Współtwórcy powinni być wymienieni z imienia i nazwiska lub pseudonimu." +msgstr "" +". Współtwórcy powinni być wymienieni z imienia i nazwiska lub pseudonimu." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -175,7 +241,8 @@ msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych. Wymagane." +msgstr "" +"1-64 małe litery lub liczby, bez spacji i znaków przestankowych. Wymagane." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -196,17 +263,31 @@ msgstr "6 lub więcej znaków. Wymagane." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Kod potwierdzający został wysłany na dodany adres komunikatora. Musisz zaakceptować otrzymywanie wiadomości od %s." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Kod potwierdzający został wysłany na dodany adres komunikatora. Musisz " +"zaakceptować otrzymywanie wiadomości od %s." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Kod potwierdzający został wysłany na dodany adres e-mail. Sprawdź w swojej skrzynce odbiorczej (także w wiadomościach niechcianych!), czy otrzymałeś kod i instrukcje dotyczące jego użycia." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Kod potwierdzający został wysłany na dodany adres e-mail. Sprawdź w swojej " +"skrzynce odbiorczej (także w wiadomościach niechcianych!), czy otrzymałeś " +"kod i instrukcje dotyczące jego użycia." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź w swojej skrzynce odbiorczej (także w wiadomościach niechcianych!), czy otrzymałeś kod i instrukcje dotyczące jego użycia." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź w swojej " +"skrzynce odbiorczej (także w wiadomościach niechcianych!), czy otrzymałeś " +"kod i instrukcje dotyczące jego użycia." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -381,13 +462,17 @@ msgstr "Upoważnij subskrypcję" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Automatyczne logowanie. Nie użyj na komputerach używanych przez wiele osób!" +msgstr "" +"Automatyczne logowanie. Nie użyj na komputerach używanych przez wiele osób!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Automatycznie zasubskrybuj każdego, kto mnie zasubskrybuje (najlepsze dla botów)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Automatycznie zasubskrybuj każdego, kto mnie zasubskrybuje (najlepsze dla " +"botów)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -406,13 +491,23 @@ msgstr "Zaktualizowano awatar." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoje konto Jabbera/GTalk, czy otrzymałeś wiadomość z dalszymi instrukcjami (dodałeś %s do listy znajomych?)." +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoje konto Jabbera/GTalk, " +"czy otrzymałeś wiadomość z dalszymi instrukcjami (dodałeś %s do listy " +"znajomych?)." #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoją skrzynkę odbiorczą (także w wiadomościach niechcianych!), czy otrzymałeś wiadomość z dalszymi instrukcjami." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoją skrzynkę odbiorczą " +"(także w wiadomościach niechcianych!), czy otrzymałeś wiadomość z dalszymi " +"instrukcjami." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -549,8 +644,36 @@ msgstr "Nie znaleziono kodu potwierdzającego." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Gratulacje, %s! Witaj na %%%%site.name%%%%. Stąd możesz chcieć...\n\n* Przejść do [swojego profilu](%s) i wysłać swoją pierwszą wiadomość.\n* Dodać [adres Jabbera/GTalk](%%%%action.imsettings%%%%), abyś mógł wysyłać wpisy przez komunikatora.\n* [Poszukać osób](%%%%action.peoplesearch%%%%), których możesz znać lub którzy dzielą Twoje zainteresowania. \n* Zaktualizować swoje [ustawienia profilu](%%%%action.profilesettings%%%%), aby powiedzieć innym więcej o sobie. \n* Przeczytać [dokumentację w sieci](%%%%doc.help%%%%), aby dowiedzieć się o funkcjach, które mogłeś pominąć. \n\nDziękujemy za zarejestrowanie się i mamy nadzieję, że używanie tej usługi sprawi Ci przyjemność." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Gratulacje, %s! Witaj na %%%%site.name%%%%. Stąd możesz chcieć...\n" +"\n" +"* Przejść do [swojego profilu](%s) i wysłać swoją pierwszą wiadomość.\n" +"* Dodać [adres Jabbera/GTalk](%%%%action.imsettings%%%%), abyś mógł wysyłać " +"wpisy przez komunikatora.\n" +"* [Poszukać osób](%%%%action.peoplesearch%%%%), których możesz znać lub " +"którzy dzielą Twoje zainteresowania. \n" +"* Zaktualizować swoje [ustawienia profilu](%%%%action.profilesettings%%%%), " +"aby powiedzieć innym więcej o sobie. \n" +"* Przeczytać [dokumentację w sieci](%%%%doc.help%%%%), aby dowiedzieć się o " +"funkcjach, które mogłeś pominąć. \n" +"\n" +"Dziękujemy za zarejestrowanie się i mamy nadzieję, że używanie tej usługi " +"sprawi Ci przyjemność." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -728,7 +851,9 @@ msgstr "Utwórz nowe konto" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." -msgstr "Tworzenie nowego konta dla identyfikatora OpenID, który posiada już użytkownika." +msgstr "" +"Tworzenie nowego konta dla identyfikatora OpenID, który posiada już " +"użytkownika." #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 @@ -957,8 +1082,12 @@ msgid "Find people on this site" msgstr "Znajdź osoby na tej stronie" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Z powodów bezpieczeństwa ponownie podaj nazwę użytkownika i hasło przed zmienianiem ustawień." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Z powodów bezpieczeństwa ponownie podaj nazwę użytkownika i hasło przed " +"zmienianiem ustawień." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1043,16 +1172,28 @@ msgstr "Ustawienia komunikatora" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Jeśli już masz konto, zaloguj się za pomocą nazwy użytkownika i hasła, aby połączyć je ze swoim identyfikatorem OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Jeśli już masz konto, zaloguj się za pomocą nazwy użytkownika i hasła, aby " +"połączyć je ze swoim identyfikatorem OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Jeśli chcesz dodać identyfikator OpenID do swojego konta, podaj go w poniższym polu i naciśnij \"Dodaj\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Jeśli chcesz dodać identyfikator OpenID do swojego konta, podaj go w " +"poniższym polu i naciśnij \"Dodaj\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Jeśli zapomniałeś lub zgubiłeś swoje hasło, możesz otrzymać nowe na adres e-mail, który podałeś." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Jeśli zapomniałeś lub zgubiłeś swoje hasło, możesz otrzymać nowe na adres e-" +"mail, który podałeś." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1082,8 +1223,12 @@ msgstr "Niepoprawna nazwa użytkownika lub hasło." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Instrukcje przywracania hasła zostały wysłane na adres e-mail zarejestrowany z Twoim kontem." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Instrukcje przywracania hasła zostały wysłane na adres e-mail zarejestrowany " +"z Twoim kontem." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1179,8 +1324,14 @@ msgstr "Zaproś nowych użytkowników" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Działa pod kontrolą oprogramowania do mikroblogowania [StatusNet](http://status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Działa pod kontrolą oprogramowania do mikroblogowania [StatusNet](http://" +"status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU " +"Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1190,8 +1341,13 @@ msgstr "Identyfikator Jabbera należy już do innego użytkownika." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Adres Jabbera lub GTalk, taki jak \"NazwaUżytkownika@przykład.org\". Najpierw upewnij się, że dodałeś %s do listy znajomych w komunikatorze lub na GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Adres Jabbera lub GTalk, taki jak \"NazwaUżytkownika@przykład.org\". " +"Najpierw upewnij się, że dodałeś %s do listy znajomych w komunikatorze lub " +"na GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1258,8 +1414,14 @@ msgstr "Zaloguj się za pomocą konta [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? [Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? " +"[Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action." +"openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1304,8 +1466,13 @@ msgstr "Mikroblog użytkownika %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Operator komórkowy Twojego telefonu. Jeśli znasz operatora, który akceptuje wiadomości SMS przez e-mail, a nie znajduje się na liście, wyślij wiadomość e-mail na %s (w języku angielskim), aby nam o tym powiedzieć." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Operator komórkowy Twojego telefonu. Jeśli znasz operatora, który akceptuje " +"wiadomości SMS przez e-mail, a nie znajduje się na liście, wyślij wiadomość " +"e-mail na %s (w języku angielskim), aby nam o tym powiedzieć." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1927,8 +2094,13 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Sprawdź te szczegóły, aby upewnić się, czy chcesz subskrybować wpisy tego użytkownika. Jeśli nie chcesz, po prostu naciśnij \"Anuluj\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Sprawdź te szczegóły, aby upewnić się, czy chcesz subskrybować wpisy tego " +"użytkownika. Jeśli nie chcesz, po prostu naciśnij \"Anuluj\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2111,8 +2283,12 @@ msgid "Remove OpenID" msgstr "Usuń identyfikator OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Usunięcie jedynego identyfikatora OpenID uniemożliwi zalogowanie się! Jeśli musisz je usunąć, dodaj najpierw inne." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Usunięcie jedynego identyfikatora OpenID uniemożliwi zalogowanie się! Jeśli " +"musisz je usunąć, dodaj najpierw inne." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2208,13 +2384,22 @@ msgstr "Znajdź kanał strumienia" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Znajdź wpisy na %%site.name%% według ich zawartości. Oddziel wyszukiwane terminy spacjami. Terminy muszą mieć trzy znaki lub więcej." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Znajdź wpisy na %%site.name%% według ich zawartości. Oddziel wyszukiwane " +"terminy spacjami. Terminy muszą mieć trzy znaki lub więcej." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Znajdź osoby na %%site.name%% według ich nazwiska, położenia lub zainteresowań. Oddziel wyszukiwane terminy spacjami. Terminy muszą mieć trzy znaki lub więcej." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Znajdź osoby na %%site.name%% według ich nazwiska, położenia lub " +"zainteresowań. Oddziel wyszukiwane terminy spacjami. Terminy muszą mieć trzy " +"znaki lub więcej." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2249,13 +2434,18 @@ msgstr "Wyślij mi wpisy przez Jabbera/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Wyślij mi wpisy przez SMS. Rozumiem, że mogę otrzymywać większe rachunki od swojego operatora." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Wyślij mi wpisy przez SMS. Rozumiem, że mogę otrzymywać większe rachunki od " +"swojego operatora." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Wyślij mi odpowiedzi przez Jabbera/GTalk od osób, których nie subskrybuję." +msgstr "" +"Wyślij mi odpowiedzi przez Jabbera/GTalk od osób, których nie subskrybuję." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2487,13 +2677,23 @@ msgstr "Adres został usunięty." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " +"Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " +"Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2519,22 +2719,35 @@ msgstr "Osoby, których wpisy obserwujesz." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" -msgstr "Te osoby są już użytkownikami i zostałeś do nich automatycznie zasubskrybowany:" +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Te osoby są już użytkownikami i zostałeś do nich automatycznie " +"zasubskrybowany:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Kod potwierdzający jest za stary. Rozpocznij ponownie." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Ten formularz powinien wysłać się automatycznie. Jeśli tak się nie stanie, naciśnij przycisk Wyślij, aby przejść do dostawcy OpenID." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Ten formularz powinien wysłać się automatycznie. Jeśli tak się nie stanie, " +"naciśnij przycisk Wyślij, aby przejść do dostawcy OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Jeżeli logujesz się do %s po raz pierwszy, musimy połączyć identyfikator OpenID z lokalnym kontem. Można utworzyć nowe konto lub połączyć z istniejącym, jeśli je posiadasz." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Jeżeli logujesz się do %s po raz pierwszy, musimy połączyć identyfikator " +"OpenID z lokalnym kontem. Można utworzyć nowe konto lub połączyć z " +"istniejącym, jeśli je posiadasz." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2583,8 +2796,15 @@ msgstr "Nie wybrano strefy czasowej." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Aby zasubskrybować, można [zalogować się](%%action.login%%) lub [zarejestrować](%%action.register%%) nowe konto. Jeśli już posiadasz konto na [zgodnej stronie mikroblogowania](%%doc.openmublog%%), podaj poniżej adres URL profilu." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Aby zasubskrybować, można [zalogować się](%%action.login%%) lub " +"[zarejestrować](%%action.register%%) nowe konto. Jeśli już posiadasz konto " +"na [zgodnej stronie mikroblogowania](%%doc.openmublog%%), podaj poniżej " +"adres URL profilu." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2638,8 +2858,12 @@ msgid "Unknown version of OMB protocol." msgstr "Nieznana wersja protokołu OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Jeśli nie podano inaczej, prawa autorskie do zawartości tej strony należy do współtwórców i jest dostępna na warunkach licencji " +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Jeśli nie podano inaczej, prawa autorskie do zawartości tej strony należy do " +"współtwórców i jest dostępna na warunkach licencji " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2700,8 +2924,16 @@ msgid "Upload" msgstr "Wyślij" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Tu można wysłać nowego \"awatara\" (obraz użytkownika). Nie można modyfikować obrazu po jego wysłaniu, więc upewnij się, że jest w miarę kwadratowy. Musi być także na licencji strony. Użyj obrazu, który należy do Ciebie, i którym chcesz się dzielić." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Tu można wysłać nowego \"awatara\" (obraz użytkownika). Nie można " +"modyfikować obrazu po jego wysłaniu, więc upewnij się, że jest w miarę " +"kwadratowy. Musi być także na licencji strony. Użyj obrazu, który należy do " +"Ciebie, i którym chcesz się dzielić." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2709,8 +2941,11 @@ msgstr "Wyślij nowy obraz profilu" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Użyj tego formularza, aby zaprosić przyjaciół i kolegów do używania tej usługi." +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Użyj tego formularza, aby zaprosić przyjaciół i kolegów do używania tej " +"usługi." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2803,8 +3038,12 @@ msgid "You already have this OpenID!" msgstr "Już posiadasz ten identyfikator OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Wpis zostanie za chwilę trwale usunięty. Kiedy to się stanie, to już się nie odstanie." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Wpis zostanie za chwilę trwale usunięty. Kiedy to się stanie, to już się nie " +"odstanie." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2836,19 +3075,30 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Można otrzymywać wiadomości SMS przez e-mail od %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Można usunąć identyfikator OpenID ze swojego konta naciskając przycisk \"Usuń\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Można usunąć identyfikator OpenID ze swojego konta naciskając przycisk \"Usuń" +"\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Można wysyłać i odbierać wpisy przez [komunikator](%%doc.im%%) Jabber/GTalk. Skonfiguruj adres i ustawienia poniżej." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Można wysyłać i odbierać wpisy przez [komunikator](%%doc.im%%) Jabber/GTalk. " +"Skonfiguruj adres i ustawienia poniżej." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Tutaj można zaktualizować osobiste informacje w profilu, aby inni mogli lepiej Cię poznać." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Tutaj można zaktualizować osobiste informacje w profilu, aby inni mogli " +"lepiej Cię poznać." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2863,7 +3113,8 @@ msgstr "Można używać lokalnej subskrypcji!" #: actions/finishopenidlogin.php:43 actions/register.php:149 #: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." -msgstr "Nie możesz się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." +msgstr "" +"Nie możesz się zarejestrować, jeśli nie zgadzasz się z warunkami licencji." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 #: actions/updateprofile.php:67 actions/updateprofile.php:69 @@ -2872,8 +3123,24 @@ msgstr "Nie wysłałeś nam tego profilu" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "Posiadasz nowy adres wysyłania na %1$s.\n\nWyślij wiadomość e-mail na %2$s, aby wysłać nowe wpisy.\n\nWięcej instrukcji dotyczących poczty e-mail można znaleźć na %3$s.\n\nZ poważaniem,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Posiadasz nowy adres wysyłania na %1$s.\n" +"\n" +"Wyślij wiadomość e-mail na %2$s, aby wysłać nowe wpisy.\n" +"\n" +"Więcej instrukcji dotyczących poczty e-mail można znaleźć na %3$s.\n" +"\n" +"Z poważaniem,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2885,12 +3152,17 @@ msgstr "Nie można usuwać statusów innych użytkowników." #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "Należy być zalogowanym, aby zapraszać innych użytkowników do używania %s" +msgstr "" +"Należy być zalogowanym, aby zapraszać innych użytkowników do używania %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Zostaniesz powiadomiony, kiedy ktoś zaakceptuje zaproszenie i zarejestruje się na stronie. Dziękujemy za pomoc w zwiększaniu społeczności!" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Zostaniesz powiadomiony, kiedy ktoś zaakceptuje zaproszenie i zarejestruje " +"się na stronie. Dziękujemy za pomoc w zwiększaniu społeczności!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2908,8 +3180,13 @@ msgstr "Twój pseudonim na tym serwerze lub zarejestrowany adres e-mail." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) umożliwia logowanie się do wielu stron za pomocą tego samego konta użytkownika. Tu można zarządzać powiązanymi identyfikatorami OpenID." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) umożliwia logowanie się do wielu stron za pomocą " +"tego samego konta użytkownika. Tu można zarządzać powiązanymi " +"identyfikatorami OpenID." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3101,12 +3378,17 @@ msgstr "Odebrane wiadomości użytkownika %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "To jest skrzynka odbiorcza, która wyświetla przychodzące wiadomości prywatne." +msgstr "" +"To jest skrzynka odbiorcza, która wyświetla przychodzące wiadomości prywatne." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s zaprosił się do dołączenia do %2$s (%3$s).\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s zaprosił się do dołączenia do %2$s (%3$s).\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3148,7 +3430,8 @@ msgstr "Nie można wysłać wiadomości do tego użytkownika." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Nie wysyłaj wiadomości do siebie, po prostu powiedz to sobie po cichu." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3199,8 +3482,11 @@ msgstr "To są wiadomości wysłane, czyli prywatne wiadomości, które wysłał #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Znajdź osoby na %%site.name%% według ich nazwiska, położenia lub zainteresowań. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" +"Znajdź osoby na %%site.name%% według ich nazwiska, położenia lub " +"zainteresowań. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3251,7 +3537,9 @@ msgstr "Hasło musi mieć sześć lub więcej znaków." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." msgstr "Gratulacje, %s! Witaj na %%%%site.name%%%%. Stąd możesz chcieć..." #: actions/register.php:227 @@ -3348,7 +3636,9 @@ msgstr "Nie znaleziono odbiorcy." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są Twoimi przyjaciółmi." +msgstr "" +"Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są " +"Twoimi przyjaciółmi." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3375,12 +3665,19 @@ msgstr "Użytkownik %s dodał Twój wpis jako ulubiony" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "Użytkownik %1$s właśnie dodał Twój wpis od %2$s jako jeden z jego ulubionych.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"Użytkownik %1$s właśnie dodał Twój wpis od %2$s jako jeden z jego " +"ulubionych.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Dodaj swoje konto Twittera, aby automatycznie wysyłać wpisy na Twittera, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Dodaj swoje konto Twittera, aby automatycznie wysyłać wpisy na Twittera, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3427,8 +3724,12 @@ msgstr "Zasubskrybuj tutaj moich przyjaciół z Twittera." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "Nazwa użytkownika może zawierać tylko liczby, małe i wielkie litery oraz podkreślnik (_). Maksymalnie 15 znaków." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"Nazwa użytkownika może zawierać tylko liczby, małe i wielkie litery oraz " +"podkreślnik (_). Maksymalnie 15 znaków." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3643,8 +3944,12 @@ msgstr "Użytkownik bez odpowiadającego profilu w systemie." #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "You have a new posting address on %1$s.\n\n" -msgstr "Posiadasz nowy adres wysyłania na %1$s.\n\n" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" +"Posiadasz nowy adres wysyłania na %1$s.\n" +"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3653,8 +3958,12 @@ msgstr "Nowa prywatna wiadomość od użytkownika %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "Użytkownik %1$s (%2$s) wysłał Ci prywatną wiadomość:\n\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"Użytkownik %1$s (%2$s) wysłał Ci prywatną wiadomość:\n" +"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -4150,7 +4459,8 @@ msgstr "Utwórz nową grupę" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " msgstr "Znajdź grupy na %%site.name%% według ich nazw, położenia lub opisu. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4280,8 +4590,11 @@ msgid "Ajax Error" msgstr "Błąd AJAX" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Ten użytkownik nie pozwala na szturchnięcia lub nie potwierdził lub nie ustawił jeszcze swojego adresu e-mail." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Ten użytkownik nie pozwala na szturchnięcia lub nie potwierdził lub nie " +"ustawił jeszcze swojego adresu e-mail." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4355,8 +4668,11 @@ msgstr "Informacje o profilu" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub spacjami" +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " +"spacjami" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4387,8 +4703,12 @@ msgstr "Nie można pobrać publicznego strumienia." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" +"Mikroblog) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4535,8 +4855,12 @@ msgstr "Wszyscy członkowie" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) " +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " +"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4588,8 +4912,12 @@ msgstr "Wszystkie grupy" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" +"pl.wikipedia.org/wiki/Mikroblog) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4694,16 +5022,23 @@ msgid "Tag user" msgstr "Znacznik użytkownika" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone przecinkami lub spacjami" +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone " +"przecinkami lub spacjami" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Można nadawać znaczniki tylko osobom, których subskrybujesz lub którzy subskrybują Ciebie." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Można nadawać znaczniki tylko osobom, których subskrybujesz lub którzy " +"subskrybują Ciebie." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4711,7 +5046,8 @@ msgstr "Nie można zapisać znaczników." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Użyj tego formularza, aby dodać znaczniki subskrybentom lub subskrypcjom." +msgstr "" +"Użyj tego formularza, aby dodać znaczniki subskrybentom lub subskrypcjom." #: actions/tagrss.php:35 msgid "No such tag." @@ -4797,8 +5133,11 @@ msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Za dużo wpisów w za krótkim czasie, weź głęboki oddech i wyślij ponownie za kilka minut." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Za dużo wpisów w za krótkim czasie, weź głęboki oddech i wyślij ponownie za " +"kilka minut." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -4977,8 +5316,11 @@ msgstr "Opisz grupę lub temat w 140 znakach" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" -msgstr "Położenie grupy, jeśli istnieje, np. \"miasto, województwo (lub region), kraj\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" +"Położenie grupy, jeśli istnieje, np. \"miasto, województwo (lub region), kraj" +"\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" @@ -5041,8 +5383,12 @@ msgstr "Zaloguj się lub zarejestruj za pomocą OpenID" #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Cześć, %s.\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Cześć, %s.\n" +"\n" #: lib/mail.php:236 #, php-format @@ -5061,8 +5407,12 @@ msgstr "Strona domowa: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "O mnie: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"O mnie: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5258,12 +5608,22 @@ msgid "Avatar deleted." msgstr "Usunięto awatar." #: actions/block.php:129 actions/block.php:136 -msgid "Are you sure you want to block this user? Afterwards, they will be unsubscribed from you, unable to subscribe to you in the future, and you will not be notified of any @-replies from them." -msgstr "Jesteś pewny, że chcesz zablokować tego użytkownika. Po tym jego subskrypcja do Ciebie zostanie usunięta, nie będzie mógł Cię zasubskrybować w przyszłości i nie będziesz powiadamiany o żadnych odpowiedziach @ od niego." +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" +"Jesteś pewny, że chcesz zablokować tego użytkownika. Po tym jego subskrypcja " +"do Ciebie zostanie usunięta, nie będzie mógł Cię zasubskrybować w " +"przyszłości i nie będziesz powiadamiany o żadnych odpowiedziach @ od niego." #: actions/deletenotice.php:73 actions/deletenotice.php:103 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Za chwilę wpis zostanie trwale usunięty. Kiedy to się stanie, to już się nie odstanie." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Za chwilę wpis zostanie trwale usunięty. Kiedy to się stanie, to już się nie " +"odstanie." #: actions/deletenotice.php:127 actions/deletenotice.php:157 msgid "There was a problem with your session token. Try again, please." @@ -5275,8 +5635,12 @@ msgstr "Wyślij mi wiadomość e-mail, kiedy ktoś wyśle mi odpowiedź \"@\"." #: actions/facebookhome.php:193 actions/facebookhome.php:187 #, php-format -msgid "If you would like the %s app to automatically update your Facebook status with your latest notice, you need to give it permission." -msgstr "Jeśli chcesz, aby aplikacja %s automatycznie aktualizowała status na Facebook najnowszym wpisem, musisz dać jej pozwolenie." +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" +"Jeśli chcesz, aby aplikacja %s automatycznie aktualizowała status na " +"Facebook najnowszym wpisem, musisz dać jej pozwolenie." #: actions/facebookhome.php:217 actions/facebookhome.php:211 #, php-format @@ -5285,12 +5649,17 @@ msgstr "OK, zrób to!" #: actions/facebooksettings.php:124 #, php-format -msgid "If you would like %s to automatically update your Facebook status with your latest notice, you need to give it permission." -msgstr "Jeśli chcesz, aby %s automatycznie aktualizowało status na Facebook najnowszym wpisem, musisz dać mu pozwolenie." +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" +"Jeśli chcesz, aby %s automatycznie aktualizowało status na Facebook " +"najnowszym wpisem, musisz dać mu pozwolenie." #: actions/grouplogo.php:155 actions/grouplogo.php:150 #, php-format -msgid "You can upload a logo image for your group. The maximum file size is %s." +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "Można wysłać obraz logo grupy. Maksymalny rozmiar pliku to %s." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5304,13 +5673,27 @@ msgstr "Mikroblog grupy %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Znajdź grupy na %%site.name%% według ich nazwy, położenia lub opisu. Oddziel terminy spacjami; muszą mieć trzy znaki lub więcej." +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Znajdź grupy na %%site.name%% według ich nazwy, położenia lub opisu. Oddziel " +"terminy spacjami; muszą mieć trzy znaki lub więcej." #: actions/groups.php:90 #, php-format -msgid "%%%%site.name%%%% groups let you find and talk with people of similar interests. After you join a group you can send messages to all other members using the syntax \"!groupname\". Don't see a group you like? Try [searching for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup%%%%)" -msgstr "Grupy %%%%site.name%%%% umożliwiają znalezienie i rozmawianie z osobami o podobnych zainteresowaniach. Po dołączeniu do grupy można wysyłać wiadomości do wszystkich członków używając składni \"!nazwagrupy\". Nie widzisz grupy, która Cię interesuje? Spróbuj ją [znaleźć](%%%%action.groupsearch%%%%) lub [założyć własną!](%%%%action.newgroup%%%%)" +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" +"Grupy %%%%site.name%%%% umożliwiają znalezienie i rozmawianie z osobami o " +"podobnych zainteresowaniach. Po dołączeniu do grupy można wysyłać wiadomości " +"do wszystkich członków używając składni \"!nazwagrupy\". Nie widzisz grupy, " +"która Cię interesuje? Spróbuj ją [znaleźć](%%%%action.groupsearch%%%%) lub " +"[założyć własną!](%%%%action.newgroup%%%%)" #: actions/newmessage.php:102 msgid "Only logged-in users can send direct messages." @@ -5323,8 +5706,12 @@ msgstr "Wyniki wyszukiwania dla \"%s\" na %s" #: actions/openidlogin.php:66 #, php-format -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Z powodów bezpieczeństwa przed zmienianiem ustawień zaloguj się ponownie za pomocą identyfikatora [OpenID](%%doc.openid%%)." +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Z powodów bezpieczeństwa przed zmienianiem ustawień zaloguj się ponownie za " +"pomocą identyfikatora [OpenID](%%doc.openid%%)." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 msgid "Public Stream Feed (RSS 1.0)" @@ -5340,21 +5727,40 @@ msgstr "Kanał publicznego strumienia (Atom)" #: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/). [Dołącz teraz](%%action.register%%), aby dzielić się wpisami o sobie z przyjaciółmi, rodziną i kolegami! ([Przeczytaj więcej](%%doc.help%%))" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" +"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" +"Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/). " +"[Dołącz teraz](%%action.register%%), aby dzielić się wpisami o sobie z " +"przyjaciółmi, rodziną i kolegami! ([Przeczytaj więcej](%%doc.help%%))" #: actions/register.php:286 actions/register.php:329 #, php-format -msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator [OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action.openidlogin%%)!)" +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" +"Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " +"wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator " +"[OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action." +"openidlogin%%)!)" #: actions/register.php:432 actions/register.php:479 actions/register.php:489 msgid "Creative Commons Attribution 3.0" msgstr "Creative Commons Uznanie Autorstwa 3.0" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 -msgid " except this private data: password, email address, IM address, and phone number." -msgstr " poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora i numer telefonu." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" poza tymi prywatnymi danymi: hasło, adres e-mail, adres komunikatora i " +"numer telefonu." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5364,8 +5770,19 @@ msgstr "Utworzono" #: actions/showgroup.php:393 actions/showgroup.php:440 #: actions/showgroup.php:448 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. [Join now](%%%%action.register%%%%) to become part of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się krótkimi wiadomościami o swoim życiu i zainteresowaniach. [Dołącz teraz](%%%%action.register%%%%), aby stać się częścią tej grupy i wiele więcej! ([Przeczytaj więcej](%%%%doc.help%%%%))" +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " +"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " +"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " +"krótkimi wiadomościami o swoim życiu i zainteresowaniach. [Dołącz teraz](%%%%" +"action.register%%%%), aby stać się częścią tej grupy i wiele więcej! " +"([Przeczytaj więcej](%%%%doc.help%%%%))" #: actions/showstream.php:147 msgid "Your profile" @@ -5414,18 +5831,55 @@ msgstr "Edytuj" #: actions/showstream.php:542 actions/showstream.php:388 #: actions/showstream.php:487 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet](http://status.net/). [Dołącz teraz](%%%%action.register%%%%), aby obserwować wpisy użytkownika **%s** i wiele więcej! ([Przeczytaj więcej](%%%%doc.help%%%%))" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" +"pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" +"(http://status.net/). [Dołącz teraz](%%%%action.register%%%%), aby " +"obserwować wpisy użytkownika **%s** i wiele więcej! ([Przeczytaj więcej](%%%%" +"doc.help%%%%))" #: actions/smssettings.php:335 actions/smssettings.php:347 -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź telefon, czy otrzymałeś kod i instrukcje jak go użyć." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Kod potwierdzający został wysłany na dodany numer telefonu. Sprawdź telefon, " +"czy otrzymałeś kod i instrukcje jak go użyć." #: actions/twitapifavorites.php:171 lib/mail.php:556 #: actions/twitapifavorites.php:222 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nIn case you forgot, you can see the text of your notice here:\n\n%3$s\n\nYou can see the list of %1$s's favorites here:\n\n%4$s\n\nFaithfully yours,\n%5$s\n" -msgstr "%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n\nJeśli go zapomniałeś, tutaj możesz zobaczyć tekst wpisu:\n\n%3$s\n\nTutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n\n%4$s\n\nZ poważaniem,\n%5$s\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" +"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" +"\n" +"Jeśli go zapomniałeś, tutaj możesz zobaczyć tekst wpisu:\n" +"\n" +"%3$s\n" +"\n" +"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" +"\n" +"%4$s\n" +"\n" +"Z poważaniem,\n" +"%5$s\n" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5440,8 +5894,12 @@ msgid "No such user!" msgstr "Nie ma takiego użytkownika!" #: actions/twittersettings.php:72 -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Dodaj konto Twittera, aby automatycznie wysyłać wpisy do Twittera i zasubskrybować przyjaciół z Twittera, którzy już tu są." +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Dodaj konto Twittera, aby automatycznie wysyłać wpisy do Twittera i " +"zasubskrybować przyjaciół z Twittera, którzy już tu są." #: actions/twittersettings.php:345 actions/twittersettings.php:362 #, php-format @@ -5449,16 +5907,26 @@ msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Nie można pobrać informacji o koncie dla \"%s\" z Twittera." #: actions/userauthorization.php:86 actions/userauthorization.php:81 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, naciśnij \"Odrzuć\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować " +"wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " +"naciśnij \"Odrzuć\"." #: actions/usergroups.php:131 actions/usergroups.php:130 msgid "Search for more groups" msgstr "Znajdź więcej grup" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i wyślij ponownie za kilka minut." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i " +"wyślij ponownie za kilka minut." #: lib/action.php:406 lib/action.php:425 msgid "Connect to SMS, Twitter" @@ -5470,12 +5938,70 @@ msgstr "Odznaka" #: lib/command.php:113 lib/command.php:106 lib/command.php:126 #, php-format -msgid "Subscriptions: %1$s\nSubscribers: %2$s\nNotices: %3$s" -msgstr "Subskrypcje: %1$s\nSubskrybenci: %2$s\nWpisy: %3$s" +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" +"Subskrypcje: %1$s\n" +"Subskrybenci: %2$s\n" +"Wpisy: %3$s" #: lib/command.php:392 lib/command.php:385 -msgid "Commands:\non - turn on notifications\noff - turn off notifications\nhelp - show this help\nfollow - subscribe to user\nleave - unsubscribe from user\nd - direct message to user\nget - get last notice from user\nwhois - get profile info on user\nfav - add user's last notice as a 'fave'\nstats - get your stats\nstop - same as 'off'\nquit - same as 'off'\nsub - same as 'follow'\nunsub - same as 'leave'\nlast - same as 'get'\non - not yet implemented.\noff - not yet implemented.\nnudge - not yet implemented.\ninvite - not yet implemented.\ntrack - not yet implemented.\nuntrack - not yet implemented.\ntrack off - not yet implemented.\nuntrack all - not yet implemented.\ntracks - not yet implemented.\ntracking - not yet implemented.\n" -msgstr "Polecenia:\non - włącza powiadomienia\noff - wyłącza powiadomienia\nhelp - wyświetla tę pomoc\nfollow - subskrybuje użytkownika\nleave - rezygnuje z subskrypcji użytkownika\nd - bezpośrednia wiadomość do użytkownika\nget - uzyskuje ostatni wpis użytkownika\nwhois - uzyskuje informacje o profilu użytkownika\nfav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\nstats - uzyskuje Twoje statystyki\nstop - to samo co \"off\"\nquit - to samo co \"off\"\nsub - to samo co \"follow\"\nunsub - to samo co \"leave\"\nlast - to samo co \"get\"\non - jeszcze nie zaimplementowano.\noff - jeszcze nie zaimplementowano.\nnudge - jeszcze nie zaimplementowano.\ninvite - jeszcze nie zaimplementowano.\ntrack - jeszcze nie zaimplementowano.\nuntrack - jeszcze nie zaimplementowano.\ntrack off - jeszcze nie zaimplementowano.\nuntrack all - jeszcze nie zaimplementowano.\ntracks - jeszcze nie zaimplementowano.\ntracking - jeszcze nie zaimplementowano.\n" +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" +"Polecenia:\n" +"on - włącza powiadomienia\n" +"off - wyłącza powiadomienia\n" +"help - wyświetla tę pomoc\n" +"follow - subskrybuje użytkownika\n" +"leave - rezygnuje z subskrypcji użytkownika\n" +"d - bezpośrednia wiadomość do użytkownika\n" +"get - uzyskuje ostatni wpis użytkownika\n" +"whois - uzyskuje informacje o profilu użytkownika\n" +"fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" +"stats - uzyskuje Twoje statystyki\n" +"stop - to samo co \"off\"\n" +"quit - to samo co \"off\"\n" +"sub - to samo co \"follow\"\n" +"unsub - to samo co \"leave\"\n" +"last - to samo co \"get\"\n" +"on - jeszcze nie zaimplementowano.\n" +"off - jeszcze nie zaimplementowano.\n" +"nudge - jeszcze nie zaimplementowano.\n" +"invite - jeszcze nie zaimplementowano.\n" +"track - jeszcze nie zaimplementowano.\n" +"untrack - jeszcze nie zaimplementowano.\n" +"track off - jeszcze nie zaimplementowano.\n" +"untrack all - jeszcze nie zaimplementowano.\n" +"tracks - jeszcze nie zaimplementowano.\n" +"tracking - jeszcze nie zaimplementowano.\n" #: lib/dberroraction.php:60 msgid "Database error" @@ -5483,8 +6009,12 @@ msgstr "Błąd bazy danych" #: lib/facebookaction.php:271 lib/facebookaction.php:273 #, php-format -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Aby użyć aplikacji Facebook %s, musisz się zalogować za pomocą nazwy użytkownika i hasła. Nie masz jeszcze nazwy użytkownika? " +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Aby użyć aplikacji Facebook %s, musisz się zalogować za pomocą nazwy " +"użytkownika i hasła. Nie masz jeszcze nazwy użytkownika? " #: lib/feed.php:85 msgid "RSS 1.0" @@ -5509,23 +6039,118 @@ msgstr "Ten plik jest za duży. Maksymalny rozmiar pliku to %d." #: lib/mail.php:175 lib/mail.php:174 #, php-format -msgid "Hey, %s.\n\nSomeone just entered this email address on %s.\n\nIf it was you, and you want to confirm your entry, use the URL below:\n\n %s\n\nIf not, just ignore this message.\n\nThanks for your time, \n%s\n" -msgstr "Cześć, %s.\n\nKtoś właśnie podał ten adres e-mail na %s.\n\nJeśli to byłeś Ty, i chcesz potwierdzić swoje wejście, użyj poniższego adresu URL:\n\n %s\n\nJeśli to nie ty, po prostu zignoruj tę wiadomość.\n\nDziękujemy za Twój czas, \n%s\n" +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" +"Cześć, %s.\n" +"\n" +"Ktoś właśnie podał ten adres e-mail na %s.\n" +"\n" +"Jeśli to byłeś Ty, i chcesz potwierdzić swoje wejście, użyj poniższego " +"adresu URL:\n" +"\n" +"\t%s\n" +"\n" +"Jeśli to nie ty, po prostu zignoruj tę wiadomość.\n" +"\n" +"Dziękujemy za Twój czas, \n" +"%s\n" #: lib/mail.php:241 lib/mail.php:240 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nZ poważaniem,\n%7$s.\n\n----\nZmień adres e-mail lub opcje powiadamiania na %8$s\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Z poważaniem,\n" +"%7$s.\n" +"\n" +"----\n" +"Zmień adres e-mail lub opcje powiadamiania na %8$s\n" #: lib/mail.php:466 #, php-format -msgid "%1$s (%2$s) is wondering what you are up to these days and is inviting you to post some news.\n\nSo let's hear from you :)\n\n%3$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%4$s\n" -msgstr "Użytkownik %1$s (%2$s) zastanawia się, co się z Tobą dzieje w ostatnich dniach i zaprasza Cię do wysłania jakichś aktualności.\n\nTak więc do usłyszenia. :)\n\n%3$s\n\nNie odpowiadaj na tę wiadomość e-mail, nie dotrze ona do nich.\n\nZ poważaniem,\n%4$s\n" +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" +"Użytkownik %1$s (%2$s) zastanawia się, co się z Tobą dzieje w ostatnich " +"dniach i zaprasza Cię do wysłania jakichś aktualności.\n" +"\n" +"Tak więc do usłyszenia. :)\n" +"\n" +"%3$s\n" +"\n" +"Nie odpowiadaj na tę wiadomość e-mail, nie dotrze ona do nich.\n" +"\n" +"Z poważaniem,\n" +"%4$s\n" #: lib/mail.php:513 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nYou can reply to their message here:\n\n%4$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%5$s\n" -msgstr "Użytkownik %1$s (%2$s) wysłał Ci prywatną wiadomość:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nTutaj możesz na nią odpowiedzieć:\n\n%4$s\n\nNie odpowiadaj na tę wiadomość e-mail, nie dotrze ona do nich.\n\nZ poważaniem,\n%5$s\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" +"Użytkownik %1$s (%2$s) wysłał Ci prywatną wiadomość:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"Tutaj możesz na nią odpowiedzieć:\n" +"\n" +"%4$s\n" +"\n" +"Nie odpowiadaj na tę wiadomość e-mail, nie dotrze ona do nich.\n" +"\n" +"Z poważaniem,\n" +"%5$s\n" #: lib/mail.php:598 lib/mail.php:600 #, php-format @@ -5534,8 +6159,53 @@ msgstr "Użytkownik %s wysłał wpis wymagający Twojej uwagi" #: lib/mail.php:600 lib/mail.php:602 #, php-format -msgid "%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n\nThe notice is here:\n\n %3$s\n\nIt reads:\n\n %4$s\n\nYou can reply back here:\n\n %5$s\n\nThe list of all @-replies for you here:\n\n%6$s\n\nFaithfully yours,\n%2$s\n\nP.S. You can turn off these email notifications here: %7$s\n" -msgstr "Użytkownik %1$s właśnie wysłał wpis wymagający Twojej uwagi (odpowiedź \"@\") na %2$s.\n\nTwój wpis znajduje się tutaj:\n\n %3$s\n\nZawiera tekst:\n\n %4$s\n\nTutaj możesz odpowiedzieć:\n\n %5$s\n\nLista wszystkich odpowiedzi \"@\" do Ciebie znajduje się tutaj:\n\n%6$s\n\nZ poważaniem,\n%2$s\n\nPS Tutaj możesz wyłączyć te powiadomienia przez e-mail: %7$s\n" +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" +"Użytkownik %1$s właśnie wysłał wpis wymagający Twojej uwagi (odpowiedź \"@" +"\") na %2$s.\n" +"\n" +"Twój wpis znajduje się tutaj:\n" +"\n" +"\t%3$s\n" +"\n" +"Zawiera tekst:\n" +"\n" +"\t%4$s\n" +"\n" +"Tutaj możesz odpowiedzieć:\n" +"\n" +"\t%5$s\n" +"\n" +"Lista wszystkich odpowiedzi \"@\" do Ciebie znajduje się tutaj:\n" +"\n" +"%6$s\n" +"\n" +"Z poważaniem,\n" +"%2$s\n" +"\n" +"PS Tutaj możesz wyłączyć te powiadomienia przez e-mail: %7$s\n" #: lib/searchaction.php:122 lib/searchaction.php:120 msgid "Search site" @@ -5547,24 +6217,40 @@ msgstr "Więcej..." #: actions/all.php:80 actions/all.php:127 #, php-format -msgid "This is the timeline for %s and friends but no one has posted anything yet." -msgstr "To jest oś czasu użytkownika %s i przyjaciół, ale nikt jeszcze nic nie wysłał." +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" +"To jest oś czasu użytkownika %s i przyjaciół, ale nikt jeszcze nic nie " +"wysłał." #: actions/all.php:85 actions/all.php:132 #, php-format -msgid "Try subscribing to more people, [join a group](%%action.groups%%) or post something yourself." -msgstr "Spróbuj zasubskrybować więcej osób, [dołączyć do grupy](%%action.groups%%) lub wysłać coś samemu." +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" +"Spróbuj zasubskrybować więcej osób, [dołączyć do grupy](%%action.groups%%) " +"lub wysłać coś samemu." #: actions/all.php:87 actions/all.php:134 #, php-format -msgid "You can try to [nudge %s](../%s) from his profile or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "Możesz spróbować [szturchnąć użytkownika %s](../%s) z jego profilu lub [wysłać coś wymagającego jego uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" +"Możesz spróbować [szturchnąć użytkownika %s](../%s) z jego profilu lub " +"[wysłać coś wymagającego jego uwagi](%%%%action.newnotice%%%%?" +"status_textarea=%s)." #: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 #: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 #, php-format -msgid "Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to his or her attention." -msgstr "Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wtedy szturchniesz użytkownika %s lub wyślesz wpis wymagającego jego uwagi." +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" +"Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wtedy " +"szturchniesz użytkownika %s lub wyślesz wpis wymagającego jego uwagi." #: actions/attachment.php:73 msgid "No such attachment." @@ -5638,16 +6324,26 @@ msgstr "Nie można utworzyć aliasów." #: actions/favorited.php:150 msgid "Favorite notices appear on this page but no one has favorited one yet." -msgstr "Ulubione wpisy są widoczne na tej stronie, ale nikt nie oznaczył jeszcze żadnego jako ulubiony." +msgstr "" +"Ulubione wpisy są widoczne na tej stronie, ale nikt nie oznaczył jeszcze " +"żadnego jako ulubiony." #: actions/favorited.php:153 -msgid "Be the first to add a notice to your favorites by clicking the fave button next to any notice you like." -msgstr "Bądź pierwszym, który doda wpis do ulubionych naciskając przycisk ulubionego obok wpisu, który Ci się podoba." +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" +"Bądź pierwszym, który doda wpis do ulubionych naciskając przycisk ulubionego " +"obok wpisu, który Ci się podoba." #: actions/favorited.php:156 #, php-format -msgid "Why not [register an account](%%action.register%%) and be the first to add a notice to your favorites!" -msgstr "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz pierwszym, który doda wpis do ulubionych!" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" +"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " +"pierwszym, który doda wpis do ulubionych!" #: actions/file.php:34 msgid "No notice id" @@ -5693,8 +6389,14 @@ msgstr "Zablokuj użytkownika w grupie" #: actions/groupblock.php:155 #, php-format -msgid "Are you sure you want to block user \"%s\" from the group \"%s\"? They will be removed from the group, unable to post, and unable to subscribe to the group in the future." -msgstr "Jesteś pewny, że chcesz zablokować użytkownika \"%s\" w grupie \"%s\"? Zostanie usunięty z grupy, nie będzie mógł wysyłać wpisów i zasubskrybować grupy w przyszłości." +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" +"Jesteś pewny, że chcesz zablokować użytkownika \"%s\" w grupie \"%s\"? " +"Zostanie usunięty z grupy, nie będzie mógł wysyłać wpisów i zasubskrybować " +"grupy w przyszłości." #: actions/groupblock.php:193 msgid "Database error blocking user from group." @@ -5709,7 +6411,9 @@ msgid "Group design" msgstr "Wygląd grupy" #: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 -msgid "Customize the way your group looks with a background image and a colour palette of your choice." +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." msgstr "Dostosuj wygląd grupy za pomocą wybranego obrazu tła i palety kolorów." #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 @@ -5750,13 +6454,21 @@ msgstr "Brak wyników." #: actions/groupsearch.php:82 #, php-format -msgid "If you can't find the group you're looking for, you can [create it](%%action.newgroup%%) yourself." -msgstr "Jeśli nie możesz znaleźć grupy, której szukasz, możesz sam [ją utworzyć](%%action.newgroup%%)." +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" +"Jeśli nie możesz znaleźć grupy, której szukasz, możesz sam [ją utworzyć](%%" +"action.newgroup%%)." #: actions/groupsearch.php:85 #, php-format -msgid "Why not [register an account](%%action.register%%) and [create the group](%%action.newgroup%%) yourself!" -msgstr "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i sam [utworzysz grupę](%%action.newgroup%%)!" +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" +"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i sam [utworzysz " +"grupę](%%action.newgroup%%)!" #: actions/groupunblock.php:91 msgid "Only an admin can unblock group members." @@ -5801,8 +6513,12 @@ msgstr "Wysłano wiadomość" #: actions/newnotice.php:93 lib/designsettings.php:281 #: actions/newnotice.php:94 #, php-format -msgid "The server was unable to handle that much POST data (%s bytes) due to its current configuration." -msgstr "Serwer nie może obsłużyć aż tyle danych POST (%s bajty) z powodu bieżącej konfiguracji." +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" +"Serwer nie może obsłużyć aż tyle danych POST (%s bajty) z powodu bieżącej " +"konfiguracji." #: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 #, php-format @@ -5819,8 +6535,11 @@ msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Wysłany plik przekracza dyrektywę upload_max_filesize w php.ini." #: actions/newnotice.php:208 lib/mediafile.php:147 -msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form." -msgstr "Wysłany plik przekracza dyrektywę MAX_FILE_SIZE podaną w formularzu HTML." +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" +"Wysłany plik przekracza dyrektywę MAX_FILE_SIZE podaną w formularzu HTML." #: actions/newnotice.php:211 lib/mediafile.php:152 msgid "The uploaded file was only partially uploaded." @@ -5863,18 +6582,32 @@ msgstr "Wystąpił błąd bazy danych podczas zapisywania pliku. Spróbuj ponown #: actions/noticesearch.php:121 #, php-format -msgid "Be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "Zostań pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" +"Zostań pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" #: actions/noticesearch.php:124 #, php-format -msgid "Why not [register an account](%%%%action.register%%%%) and be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" -msgstr "Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i zostaniesz pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" +"Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i zostaniesz " +"pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" #: actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) umożliwia logowanie się do wielu stron za pomocą tego samego konta użytkownika. Tu można zarządzać powiązanymi identyfikatorami OpenID." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) umożliwia logowanie się do wielu stron za pomocą " +"tego samego konta użytkownika. Tu można zarządzać powiązanymi " +"identyfikatorami OpenID." #: actions/othersettings.php:110 actions/othersettings.php:117 msgid "Shorten URLs with" @@ -5895,8 +6628,12 @@ msgstr "Poza ograniczeniem strony (%s)" #: actions/public.php:179 #, php-format -msgid "This is the public timeline for %%site.name%% but no one has posted anything yet." -msgstr "To jest publiczna oś czasu dla %%site.name%%, ale nikt jeszcze nic nie wysłał." +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" +"To jest publiczna oś czasu dla %%site.name%%, ale nikt jeszcze nic nie " +"wysłał." #: actions/public.php:182 msgid "Be the first to post!" @@ -5904,18 +6641,27 @@ msgstr "Zostań pierwszym, który coś wyśle!" #: actions/public.php:186 #, php-format -msgid "Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz pierwszym, który coś wyśle!" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" +"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " +"pierwszym, który coś wyśle!" #: actions/public.php:245 actions/public.php:238 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/)." +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/" +"Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/)." #: actions/publictagcloud.php:69 #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "Nikt jeszcze nie wysłał wpisu za pomocą [znacznika hasha](%%doc.tags%%)." +msgstr "" +"Nikt jeszcze nie wysłał wpisu za pomocą [znacznika hasha](%%doc.tags%%)." #: actions/publictagcloud.php:72 msgid "Be the first to post one!" @@ -5923,12 +6669,20 @@ msgstr "Zostań pierwszym, który go wyśle!" #: actions/publictagcloud.php:75 #, php-format -msgid "Why not [register an account](%%action.register%%) and be the first to post one!" -msgstr "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz pierwszym, który go wyśle!" +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" +"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " +"pierwszym, który go wyśle!" #: actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Jeśli zapomniałeś lub zgubiłeś swoje hasło, możesz otrzymać nowe, wysłane na adres e-mail, który podałeś." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Jeśli zapomniałeś lub zgubiłeś swoje hasło, możesz otrzymać nowe, wysłane na " +"adres e-mail, który podałeś." #: actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -5948,18 +6702,30 @@ msgstr "Zasubskrybuj zdalnego użytkownika" #: actions/replies.php:179 actions/replies.php:198 #, php-format -msgid "This is the timeline showing replies to %s but %s hasn't received a notice to his attention yet." -msgstr "To jest oś czasu wyświetlająca odpowiedzi na wpisy użytkownika %s, ale %s nie otrzymał jeszcze wpisów wymagających jego uwagi." +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" +"To jest oś czasu wyświetlająca odpowiedzi na wpisy użytkownika %s, ale %s " +"nie otrzymał jeszcze wpisów wymagających jego uwagi." #: actions/replies.php:184 actions/replies.php:203 #, php-format -msgid "You can engage other users in a conversation, subscribe to more people or [join groups](%%action.groups%%)." -msgstr "Możesz nawiązać rozmowę z innymi użytkownikami, zasubskrybować więcej osób lub [dołączyć do grup](%%action.groups%%)." +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" +"Możesz nawiązać rozmowę z innymi użytkownikami, zasubskrybować więcej osób " +"lub [dołączyć do grup](%%action.groups%%)." #: actions/replies.php:186 actions/replies.php:205 #, php-format -msgid "You can try to [nudge %s](../%s) or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "Możesz spróbować [szturchnąć użytkownika %s](../%s) lub [wysłać coś wymagającego jego uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" +"Możesz spróbować [szturchnąć użytkownika %s](../%s) lub [wysłać coś " +"wymagającego jego uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." #: actions/showfavorites.php:79 #, php-format @@ -5967,18 +6733,33 @@ msgid "%s's favorite notices, page %d" msgstr "Ulubione wpisy użytkownika %s, strona %d" #: actions/showfavorites.php:170 actions/showfavorites.php:205 -msgid "You haven't chosen any favorite notices yet. Click the fave button on notices you like to bookmark them for later or shed a spotlight on them." -msgstr "Nie wybrałeś jeszcze żadnych ulubionych wpisów. Naciśnij przycisk ulubionego na wpisach, które chciałbyś dodać do zakładek na później lub rzucić na nie trochę światła." +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" +"Nie wybrałeś jeszcze żadnych ulubionych wpisów. Naciśnij przycisk ulubionego " +"na wpisach, które chciałbyś dodać do zakładek na później lub rzucić na nie " +"trochę światła." #: actions/showfavorites.php:172 actions/showfavorites.php:207 #, php-format -msgid "%s hasn't added any notices to his favorites yet. Post something interesting they would add to their favorites :)" -msgstr "Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Wyślij coś interesującego, aby chcieli dodać to do swoich ulubionych. :)" +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" +"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Wyślij coś " +"interesującego, aby chcieli dodać to do swoich ulubionych. :)" #: actions/showfavorites.php:176 #, php-format -msgid "%s hasn't added any notices to his favorites yet. Why not [register an account](%%%%action.register%%%%) and then post something interesting they would add to thier favorites :)" -msgstr "Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś interesującego, aby chcieli dodać to do swoich ulubionych. :)" +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" +"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie " +"[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " +"interesującego, aby chcieli dodać to do swoich ulubionych. :)" #: actions/showfavorites.php:226 actions/showfavorites.php:242 msgid "This is a way to share what you like." @@ -6006,8 +6787,16 @@ msgstr "Kanał wpisów dla grupy %s (Atom)" #: actions/showgroup.php:446 actions/showgroup.php:454 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się krótkimi wiadomościami o swoim życiu i zainteresowaniach. " +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " +"[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " +"narzędziu [StatusNet](http://status.net/). Jej członkowie dzielą się " +"krótkimi wiadomościami o swoim życiu i zainteresowaniach. " #: actions/showgroup.php:474 actions/showgroup.php:482 msgid "Admins" @@ -6030,25 +6819,44 @@ msgstr "Kanał wpisów dla %s ze znacznikiem %s (RSS 1.0)" #: actions/showstream.php:350 actions/showstream.php:444 #, php-format msgid "This is the timeline for %s but %s hasn't posted anything yet." -msgstr "To jest oś czasu dla użytkownika %s, ale %s nie nic jeszcze nie wysłał." +msgstr "" +"To jest oś czasu dla użytkownika %s, ale %s nie nic jeszcze nie wysłał." #: actions/showstream.php:355 actions/showstream.php:449 -msgid "Seen anything interesting recently? You haven't posted any notices yet, now would be a good time to start :)" -msgstr "Widziałeś ostatnio coś interesującego? Nie wysłałeś jeszcze żadnych wpisów, teraz jest dobry czas, aby zacząć. :)" +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" +"Widziałeś ostatnio coś interesującego? Nie wysłałeś jeszcze żadnych wpisów, " +"teraz jest dobry czas, aby zacząć. :)" #: actions/showstream.php:357 actions/showstream.php:451 #, php-format -msgid "You can try to nudge %s or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." -msgstr "Możesz spróbować szturchnąć użytkownika %s lub [wysłać coś, co wymaga jego uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" +"Możesz spróbować szturchnąć użytkownika %s lub [wysłać coś, co wymaga jego " +"uwagi](%%%%action.newnotice%%%%?status_textarea=%s)." #: actions/showstream.php:393 actions/showstream.php:492 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet](http://status.net/). " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** posiada konto na %%%%site.name%%%%, usłudze [mikroblogowania](http://" +"pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" +"(http://status.net/). " #: actions/subscribers.php:108 -msgid "You have no subscribers. Try subscribing to people you know and they might return the favor" -msgstr "Nie masz żadnych subskrybentów. Spróbuj zasubskrybować osoby, które znasz, a oni mogą się odwdzięczyć" +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" +"Nie masz żadnych subskrybentów. Spróbuj zasubskrybować osoby, które znasz, a " +"oni mogą się odwdzięczyć" #: actions/subscribers.php:110 #, php-format @@ -6057,13 +6865,28 @@ msgstr "Użytkownik %s nie posiada subskrybentów. Chcesz być pierwszym?" #: actions/subscribers.php:114 #, php-format -msgid "%s has no subscribers. Why not [register an account](%%%%action.register%%%%) and be the first?" -msgstr "Użytkownik %s nie posiada subskrybentów. Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i zostaniesz pierwszym?" +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" +"Użytkownik %s nie posiada subskrybentów. Dlaczego nie [zarejestrujesz konta]" +"(%%%%action.register%%%%) i zostaniesz pierwszym?" #: actions/subscriptions.php:115 actions/subscriptions.php:121 #, php-format -msgid "You're not listening to anyone's notices right now, try subscribing to people you know. Try [people search](%%action.peoplesearch%%), look for members in groups you're interested in and in our [featured users](%%action.featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can automatically subscribe to people you already follow there." -msgstr "Nie obserwujesz teraz wpisów innych użytkowników. Spróbuj zasubskrybować osoby, które znasz. Spróbuj [znaleźć kogoś](%%action.peoplesearch%%), poszukać członków grup, które Cię interesują, a także [znanych użytkowników](%%action.featured%%). Jeśli jesteś [użytkownikiem Twittera](%%action.twittersettings%%), możesz automatycznie zasubskrybowć osoby, które tam już obserwujesz." +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" +"Nie obserwujesz teraz wpisów innych użytkowników. Spróbuj zasubskrybować " +"osoby, które znasz. Spróbuj [znaleźć kogoś](%%action.peoplesearch%%), " +"poszukać członków grup, które Cię interesują, a także [znanych użytkowników]" +"(%%action.featured%%). Jeśli jesteś [użytkownikiem Twittera](%%action." +"twittersettings%%), możesz automatycznie zasubskrybowć osoby, które tam już " +"obserwujesz." #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 @@ -6130,8 +6953,11 @@ msgid "Profile design" msgstr "Wygląd profilu" #: actions/userdesignsettings.php:87 lib/designsettings.php:76 -msgid "Customize the way your profile looks with a background image and a colour palette of your choice." -msgstr "Dostosuj wygląd profilu za pomocą wybranego obrazu tła i palety kolorów." +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" +"Dostosuj wygląd profilu za pomocą wybranego obrazu tła i palety kolorów." #: actions/userdesignsettings.php:282 msgid "Enjoy your hotdog!" @@ -6149,24 +6975,31 @@ msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i dołączyć do nich #: classes/File.php:127 classes/File.php:137 #, php-format -msgid "No file may be larger than %d bytes and the file you sent was %d bytes. Try to upload a smaller version." -msgstr "Żaden plik nie może być większy niż %d bajty, a wysłany plik miał %d bajty. Spróbuj wysłać mniejszą wersję." +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" +"Żaden plik nie może być większy niż %d bajty, a wysłany plik miał %d bajty. " +"Spróbuj wysłać mniejszą wersję." #: classes/File.php:137 classes/File.php:147 #, php-format msgid "A file this large would exceed your user quota of %d bytes." -msgstr "Plik tej wielkości przekroczyłby przydział użytkownika wynoszący %d bajty." +msgstr "" +"Plik tej wielkości przekroczyłby przydział użytkownika wynoszący %d bajty." #: classes/File.php:145 classes/File.php:154 #, php-format msgid "A file this large would exceed your monthly quota of %d bytes." -msgstr "Plik tej wielkości przekroczyłby miesięczny przydział użytkownika wynoszący %d bajty." +msgstr "" +"Plik tej wielkości przekroczyłby miesięczny przydział użytkownika wynoszący %" +"d bajty." #: classes/Notice.php:139 classes/Notice.php:179 msgid "Problem saving notice. Too long." msgstr "Problem podczas zapisywania wpisu. Za długi." -#: classes/User.php:319 classes/User.php:327 +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 #, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj w %1$s, @%2$s!" @@ -6213,7 +7046,8 @@ msgid "Upload file" msgstr "Wyślij plik" #: lib/designsettings.php:109 -msgid "You can upload your personal background image. The maximum file size is 2Mb." +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." msgstr "Można wysłać swój osobisty obraz. Maksymalny rozmiar pliku to 2 MB." #: lib/designsettings.php:139 @@ -6279,7 +7113,9 @@ msgstr "Przywrócono domyślny wygląd." #: lib/groupeditform.php:181 lib/groupeditform.php:187 #, php-format msgid "Extra nicknames for the group, comma- or space- separated, max %d" -msgstr "Dodatkowe pseudonimy grupy, oddzielone przecinkami lub spacjami, maksymalnie %d" +msgstr "" +"Dodatkowe pseudonimy grupy, oddzielone przecinkami lub spacjami, maksymalnie " +"%d" #: lib/groupnav.php:100 msgid "Blocked" @@ -6297,8 +7133,40 @@ msgstr "Dodaj lub edytuj wygląd %s" #: lib/mail.php:556 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" -msgstr "%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n\nAdres URL Twojego wpisu:\n\n%3$s\n\nTekst Twojego wpisu:\n\n%4$s\n\nTutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n\n%5$s\n\nZ poważaniem,\n%6$s\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" +"\n" +"Adres URL Twojego wpisu:\n" +"\n" +"%3$s\n" +"\n" +"Tekst Twojego wpisu:\n" +"\n" +"%4$s\n" +"\n" +"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" +"\n" +"%5$s\n" +"\n" +"Z poważaniem,\n" +"%6$s\n" #: lib/mail.php:646 #, php-format @@ -6307,8 +7175,32 @@ msgstr "Mostek Twittera został wyłączony." #: lib/mail.php:648 #, php-format -msgid "Hi, %1$s. We're sorry to inform you that your link to Twitter has been disabled. Your Twitter credentials have either changed (did you recently change your Twitter password?) or you have otherwise revoked our access to your Twitter account.\n\nYou can re-enable your Twitter bridge by visiting your Twitter settings page:\n\n %2$s\n\nRegards,\n%3$s\n" -msgstr "Witaj, %1$s. Przykro nam poinformować, że Twój odnośnik do Twittera został wyłączony. Albo zmieniłeś dane uwierzytelniające Twittera (zmieniałeś ostatnio hasło?), albo w inny sposób zablokowałeś nam dostęp do swojego konta.\n\nMożna ponownie włączyć mostek Twittera odwiedzając stronę ustawień Twittera:\n\n %2$s\n\nZ poważaniem,\n%3$s\n" +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" +"Witaj, %1$s. Przykro nam poinformować, że Twój odnośnik do Twittera został " +"wyłączony. Albo zmieniłeś dane uwierzytelniające Twittera (zmieniałeś " +"ostatnio hasło?), albo w inny sposób zablokowałeś nam dostęp do swojego " +"konta.\n" +"\n" +"Można ponownie włączyć mostek Twittera odwiedzając stronę ustawień " +"Twittera:\n" +"\n" +"\t%2$s\n" +"\n" +"Z poważaniem,\n" +"%3$s\n" #: lib/mail.php:682 #, php-format @@ -6317,12 +7209,37 @@ msgstr "Dostęp do aplikacji Facebooka %s został wyłączony." #: lib/mail.php:685 #, php-format -msgid "Hi, %1$s. We're sorry to inform you that we are unable to update your Facebook status from %s, and have disabled the Facebook application for your account. This may be because you have removed the Facebook application's authorization, or have deleted your Facebook account. You can re-enable the Facebook application and automatic status updating by re-installing the %1$s Facebook application.\n\nRegards,\n\n%1$s" -msgstr "Witaj, %1$s. Przykro nam poinformować, że nie możemy zaktualizować Twojego statusu Facebook z %s i wyłączyliśmy aplikację Facebooka dla Twojego konta. Mogło to być spowodowane usunięciem przez Ciebie upoważnienia aplikacji Facebook lub usunięciem Twojego konta Facebook. Można ponownie włączyć aplikację Facebook i automatyczne aktualizowanie statusu przez ponowne zainstalowanie aplikacji Facebooka %1$s.\n\nZ poważaniem,\n\n%1$s" +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" +"Witaj, %1$s. Przykro nam poinformować, że nie możemy zaktualizować Twojego " +"statusu Facebook z %s i wyłączyliśmy aplikację Facebooka dla Twojego konta. " +"Mogło to być spowodowane usunięciem przez Ciebie upoważnienia aplikacji " +"Facebook lub usunięciem Twojego konta Facebook. Można ponownie włączyć " +"aplikację Facebook i automatyczne aktualizowanie statusu przez ponowne " +"zainstalowanie aplikacji Facebooka %1$s.\n" +"\n" +"Z poważaniem,\n" +"\n" +"%1$s" #: lib/mailbox.php:139 -msgid "You have no private messages. You can send private message to engage other users in conversation. People can send you messages for your eyes only." -msgstr "Brak prywatnych wiadomości. Można wysłać prywatną wiadomość, aby nawiązać rozmowę z innymi użytkownikami. Inni mogą wysyłać Ci wiadomości tylko dla Twoich oczu." +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" +"Brak prywatnych wiadomości. Można wysłać prywatną wiadomość, aby nawiązać " +"rozmowę z innymi użytkownikami. Inni mogą wysyłać Ci wiadomości tylko dla " +"Twoich oczu." #: lib/noticeform.php:154 lib/noticeform.php:180 msgid "Attach" @@ -6362,7 +7279,9 @@ msgstr "%s nie jest prawidłowym kolorem!" #: lib/webcolor.php:123 #, php-format msgid "%s is not a valid color! Use 3 or 6 hex chars." -msgstr "%s nie jest prawidłowym kolorem! Użyj trzech lub sześciu znaków szesnastkowych." +msgstr "" +"%s nie jest prawidłowym kolorem! Użyj trzech lub sześciu znaków " +"szesnastkowych." #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 @@ -6371,12 +7290,12 @@ msgid "No such page" msgstr "Nie ma takiego znacznika." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Bezpośrednia wiadomość do użytkownika %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Wiadomość jest za długa. Maksymalna długość to 140 znaków." @@ -6385,8 +7304,12 @@ msgstr "Wiadomość jest za długa. Maksymalna długość to 140 znaków." msgid "Could not unfollow user: User not found." msgstr "Nie można obserwować użytkownika: nie znaleziono użytkownika." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "opis jest za długi (maksymalnie 140 znaków)." @@ -6396,7 +7319,7 @@ msgid "You are already a member of that group." msgstr "Jesteś już członkiem tej grupy" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Nie można dołączyć użytkownika %s do grupy %s" @@ -6406,22 +7329,22 @@ msgid "You are not a member of this group." msgstr "Nie jesteś członkiem tej grupy." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Nie można usunąć użytkownika %s z grupy %s" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "Grupy %s" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "Grupy %s są członkiem" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Działania grupy" @@ -6430,14 +7353,18 @@ msgstr "Działania grupy" msgid "Status deleted." msgstr "Usunięto awatar." +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Wpis jest za długi. Maksymalna długość to 140 znaków." #: actions/apistatusesupdate.php:209 actions/newnotice.php:178 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Max notice size is %d chars, including attachment URL." msgstr "Maksymalny rozmiar wpisu to 140 znaków, w tym adres URL załącznika." @@ -6452,12 +7379,12 @@ msgid "Post to " msgstr "Zdjęcie" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "opis jest za długi (maksymalnie 140 znaków)." #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Aktualizacje od %1$s na %2$s!" @@ -6492,7 +7419,7 @@ msgid "Cannot read file." msgstr "Utracono plik." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Aktualizacje od %1$s na %2$s!" @@ -6502,17 +7429,22 @@ msgid "IM is not available." msgstr "Ta strona nie jest dostępna w " #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? [Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? " +"[Zarejestruj](%%action.register%%) nowe konto lub wypróbuj [OpenID](%%action." +"openidlogin%%). " #: actions/noticesearchrss.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates with \"%s\"" msgstr "Aktualizacje ze znacznikiem %1$s na %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Wszystkie aktualizacje pasujące do wyszukiwanego terminu \"%s\"" @@ -6521,8 +7453,17 @@ msgstr "Wszystkie aktualizacje pasujące do wyszukiwanego terminu \"%s\"" msgid "content type " msgstr "Zawartość" +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Opisz się i swoje zainteresowania w 140 znakach" @@ -6532,18 +7473,25 @@ msgid "Describe yourself and your interests" msgstr "Opisz się i swoje " #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Wpis \"O mnie\" jest za długi (maksymalnie 140 znaków)." #: actions/register.php:336 #, fuzzy -msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. " -msgstr "Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator [OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action.openidlogin%%)!)" +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" +"Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać " +"wpisy i połączyć się z przyjaciółmi i kolegami. (Posiadasz identyfikator " +"[OpenID](http://openid.net/)? Wypróbuj [rejestracji OpenID](%%action." +"openidlogin%%)!)" #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "To nie jest prawidłowy adres URL profilu (brak dokumentu YADIS)." #: actions/remotesubscribe.php:176 @@ -6557,47 +7505,53 @@ msgid "Couldn’t get a request token." msgstr "Nie można uzyskać tokenu żądana." #: actions/replies.php:144 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Kanał wpisów dla %s (RSS 1.0)" #: actions/replies.php:151 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Kanał wpisów dla %s (RSS 2.0)" #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Kanał wpisów dla %s (Atom)" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Wiadomość do użytkownika %1$s na %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 1.0)" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Kanał dla znajomych użytkownika %s (RSS 2.0)" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Kanał dla znajomych użytkownika %s (Atom)" #: actions/showfavorites.php:211 -#, php-format, fuzzy -msgid "%s hasn't added any notices to his favorites yet. Why not [register an account](%%%%action.register%%%%) and then post something interesting they would add to their favorites :)" -msgstr "Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie [zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś interesującego, aby chcieli dodać to do swoich ulubionych. :)" +#, fuzzy, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" +"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Dlaczego nie " +"[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś " +"interesującego, aby chcieli dodać to do swoich ulubionych. :)" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" msgstr "FOAF dla %s" @@ -6612,32 +7566,78 @@ msgid "SMS is not available." msgstr "Ta strona nie jest dostępna w " #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Kanał wpisów dla znacznika %s (RSS 1.0)" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, naciśnij \"Odrzuć\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz zasubskrybować " +"wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " +"naciśnij \"Odrzuć\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " +"Sprawdź w instrukcjach strony, jak upoważnić subskrypcję. Token subskrypcji:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " +"Sprawdź w instrukcjach strony, jak w pełni odrzucić subskrypcję." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Nie można odczytać adresu URL awatara \"%s\"" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Błędny typ obrazu dla \"%s\"" @@ -6652,27 +7652,35 @@ msgid "Site content license" msgstr "Licencja oprogramowania StatusNet" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Nie można zaktualizować użytkownika z potwierdzonym adresem e-mail." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Wysłano szturchnięcie" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Wiadomość jest za długa - maksymalnie 140 znaków, wysłano %d" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Odpowiedz na ten wpis" @@ -6683,14 +7691,79 @@ msgstr "Problem podczas zapisywania wpisu." #: lib/command.php:587 #, fuzzy -msgid "Commands:\non - turn on notifications\noff - turn off notifications\nhelp - show this help\nfollow - subscribe to user\nleave - unsubscribe from user\nd - direct message to user\nget - get last notice from user\nwhois - get profile info on user\nfav - add user's last notice as a 'fave'\nfav # - add notice with the given id as a 'fave'\nreply # - reply to notice with a given id\nreply - reply to the last notice from user\njoin - join group\ndrop - leave group\nstats - get your stats\nstop - same as 'off'\nquit - same as 'off'\nsub - same as 'follow'\nunsub - same as 'leave'\nlast - same as 'get'\non - not yet implemented.\noff - not yet implemented.\nnudge - remind a user to update.\ninvite - not yet implemented.\ntrack - not yet implemented.\nuntrack - not yet implemented.\ntrack off - not yet implemented.\nuntrack all - not yet implemented.\ntracks - not yet implemented.\ntracking - not yet implemented.\n" -msgstr "Polecenia:\non - włącza powiadomienia\noff - wyłącza powiadomienia\nhelp - wyświetla tę pomoc\nfollow - subskrybuje użytkownika\nleave - rezygnuje z subskrypcji użytkownika\nd - bezpośrednia wiadomość do użytkownika\nget - uzyskuje ostatni wpis użytkownika\nwhois - uzyskuje informacje o profilu użytkownika\nfav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\nstats - uzyskuje Twoje statystyki\nstop - to samo co \"off\"\nquit - to samo co \"off\"\nsub - to samo co \"follow\"\nunsub - to samo co \"leave\"\nlast - to samo co \"get\"\non - jeszcze nie zaimplementowano.\noff - jeszcze nie zaimplementowano.\nnudge - jeszcze nie zaimplementowano.\ninvite - jeszcze nie zaimplementowano.\ntrack - jeszcze nie zaimplementowano.\nuntrack - jeszcze nie zaimplementowano.\ntrack off - jeszcze nie zaimplementowano.\nuntrack all - jeszcze nie zaimplementowano.\ntracks - jeszcze nie zaimplementowano.\ntracking - jeszcze nie zaimplementowano.\n" +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" +"Polecenia:\n" +"on - włącza powiadomienia\n" +"off - wyłącza powiadomienia\n" +"help - wyświetla tę pomoc\n" +"follow - subskrybuje użytkownika\n" +"leave - rezygnuje z subskrypcji użytkownika\n" +"d - bezpośrednia wiadomość do użytkownika\n" +"get - uzyskuje ostatni wpis użytkownika\n" +"whois - uzyskuje informacje o profilu użytkownika\n" +"fav - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" +"stats - uzyskuje Twoje statystyki\n" +"stop - to samo co \"off\"\n" +"quit - to samo co \"off\"\n" +"sub - to samo co \"follow\"\n" +"unsub - to samo co \"leave\"\n" +"last - to samo co \"get\"\n" +"on - jeszcze nie zaimplementowano.\n" +"off - jeszcze nie zaimplementowano.\n" +"nudge - jeszcze nie zaimplementowano.\n" +"invite - jeszcze nie zaimplementowano.\n" +"track - jeszcze nie zaimplementowano.\n" +"untrack - jeszcze nie zaimplementowano.\n" +"track off - jeszcze nie zaimplementowano.\n" +"untrack all - jeszcze nie zaimplementowano.\n" +"tracks - jeszcze nie zaimplementowano.\n" +"tracking - jeszcze nie zaimplementowano.\n" #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Brak kodu potwierdzającego." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6707,35 +7780,86 @@ msgid "Describe the group or topic" msgstr "Opisz grupę lub temat w 140 znakach" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Opisz grupę lub temat w 140 znakach" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" msgstr "Brak identyfikatora wpisu" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "Użytkownik %s dodał Twój wpis jako ulubiony" #: lib/mail.php:556 -#, php-format, fuzzy -msgid "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" -msgstr "%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n\nAdres URL Twojego wpisu:\n\n%3$s\n\nTekst Twojego wpisu:\n\n%4$s\n\nTutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n\n%5$s\n\nZ poważaniem,\n%6$s\n" +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s właśnie dodał Twój wpis z %2$s jako jeden ze swoich ulubionych.\n" +"\n" +"Adres URL Twojego wpisu:\n" +"\n" +"%3$s\n" +"\n" +"Tekst Twojego wpisu:\n" +"\n" +"%4$s\n" +"\n" +"Tutaj możesz zobaczyć listę ulubionych wpisów użytkownika %1$s:\n" +"\n" +"%5$s\n" +"\n" +"Z poważaniem,\n" +"%6$s\n" #: lib/mail.php:611 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "Użytkownik %s wysłał wpis wymagający Twojej uwagi" +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " z " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" @@ -6745,4 +7869,3 @@ msgstr "Nie można określić użytkownika źródłowego." #, fuzzy msgid "Duplicate notice" msgstr "Usuń wpis" - diff --git a/locale/pt/LC_MESSAGES/statusnet.mo b/locale/pt/LC_MESSAGES/statusnet.mo index 85e095d9444bac87c0a2646314127d2d377d8c3b..a2086783acfdd7ac75fd5891f72ea8c5f7a9645f 100644 GIT binary patch delta 7628 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 R;Ov#@0pH5>z&niz{{p(fz#;$u delta 7135 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 S3f>BjC41i*oa|pX!u%iU2uuqA diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 4512ed662b..076e71545c 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -8,13 +8,14 @@ # msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:24:13+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:44:22+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: out-statusnet\n" @@ -28,8 +29,11 @@ msgstr "Procurar por \"%s\" no fluxo de mensagens" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "excepto estes dados privados: palavra chave, endereço de email, endereço de mensageiro instantâneo, número de telefone." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"excepto estes dados privados: palavra chave, endereço de email, endereço de " +"mensageiro instantâneo, número de telefone." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -51,8 +55,59 @@ msgstr "%1$s convidou-o a juntar-se a ele no %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s convidou-o a juntar-se a ele no %2$s (%3$s).\n\n%2$s é um serviço de micro-blogging que o deixa actualizado com pessoas que conhece e que lhe interessam.\n\nTambém pode partilhar notícias suas, pensamentos, ou a sua vida online com pessoas que o conheça. É também ideal para conhecer pessoas com interesses semelhantes aos seus.\n\n%1$s disse:\n\n%4$s\n\nPode ver o perfil de %1$s no %2$s aqui:\n\n%5$s\n\nSe gostaria de experimentar este serviço visite o endereço a baixo para aceitar este convite.\n\n%6$s\n\nSe não, pode ignorar esta mensagem. Obrigado pelo seu tempo e paciência.\n\nSinceramente, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s convidou-o a juntar-se a ele no %2$s (%3$s).\n" +"\n" +"%2$s é um serviço de micro-blogging que o deixa actualizado com pessoas que " +"conhece e que lhe interessam.\n" +"\n" +"Também pode partilhar notícias suas, pensamentos, ou a sua vida online com " +"pessoas que o conheça. É também ideal para conhecer pessoas com interesses " +"semelhantes aos seus.\n" +"\n" +"%1$s disse:\n" +"\n" +"%4$s\n" +"\n" +"Pode ver o perfil de %1$s no %2$s aqui:\n" +"\n" +"%5$s\n" +"\n" +"Se gostaria de experimentar este serviço visite o endereço a baixo para " +"aceitar este convite.\n" +"\n" +"%6$s\n" +"\n" +"Se não, pode ignorar esta mensagem. Obrigado pelo seu tempo e paciência.\n" +"\n" +"Sinceramente, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -62,8 +117,20 @@ msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s está agora a ouvir os seus comunicados em %2$s.\n\n %3$s\n\nSinceramente,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s está agora a ouvir os seus comunicados em %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Sinceramente,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -139,14 +206,22 @@ msgstr "%s actualizações de todos!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Deverá receber uma mensagem por email dentro de momentos, com instrucções sobre como confirmar o seu endereço de email.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Deverá receber uma mensagem por email dentro de momentos, com instrucções " +"sobre como confirmar o seu endereço de email.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%*** é um serviço de microblogging trazido até sí por [%%site.broughtby%%](%%site.broughtbyurl%%)." +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%*** é um serviço de microblogging trazido até sí por [%%site." +"broughtby%%](%%site.broughtbyurl%%)." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -190,17 +265,31 @@ msgstr "6 ou mais caracteres. Obrigatório." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Um código de confirmação foi enviado para o endereço fornecido. Tem que aprovar que %s envie mensagens para sí." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Um código de confirmação foi enviado para o endereço fornecido. Tem que " +"aprovar que %s envie mensagens para sí." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Um código de confirmação foi enviado para o endereço de email fornecido. Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código e instrucções de utilização." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Um código de confirmação foi enviado para o endereço de email fornecido. " +"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " +"e instrucções de utilização." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Um código de confirmação foi enviado para o número de telefone fornecido. Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código e instrucções de utilização." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Um código de confirmação foi enviado para o número de telefone fornecido. " +"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " +"e instrucções de utilização." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -375,13 +464,17 @@ msgstr "Autorizar subscrição" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Efectuar login automático; não utilizar em computadores de uso partilhado!" +msgstr "" +"Efectuar login automático; não utilizar em computadores de uso partilhado!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Subscrever automaticamente a quem se subscrever a mim (recomendado para não-humanos)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Subscrever automaticamente a quem se subscrever a mim (recomendado para não-" +"humanos)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -400,13 +493,21 @@ msgstr "Avatar actualizado." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "A aguardar confirmação deste endereço. Verifique as instrucções enviadas para a sua conta de Jabber/GTalk. (Adicionou %s à sua lista de amigos?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"A aguardar confirmação deste endereço. Verifique as instrucções enviadas " +"para a sua conta de Jabber/GTalk. (Adicionou %s à sua lista de amigos?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "A aguardar confirmação deste endereço. Procure na sua 'Caixa de Entrada' (e caixa de spam) pela mensagem com as instrucções." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"A aguardar confirmação deste endereço. Procure na sua 'Caixa de Entrada' (e " +"caixa de spam) pela mensagem com as instrucções." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -544,8 +645,35 @@ msgstr "Código de confirmação não encontrado" #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Parabéns, %s! Bemvindo ao %%%%site.name%%%%. A partir de agora deverá...\n\n* Ir ao [seu perfil](%s) e enviar a primeira mensagem.\n* Adicionar uma [Endereço Jabber/GTalk](%%%%action.imsettings%%%%) de forma a poder enviar notações através de mensagens instantâneas.\n* [Procurar por pessoas](%%%%action.peoplesearch%%%%) que conheça ou partilhem os seus interesses. \n* Actualizar o seu perfil [Opções de perfil](%%%%action.profilesettings%%%%) para contar mais acerca de si aos outros. \n* Ler os [documentos online](%%%%doc.help%%%%) para conhecer todas as funcionalidades que tenha perdido. \n\nObrigado por se registar e esperamos que se divirta usando este serviço." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Parabéns, %s! Bemvindo ao %%%%site.name%%%%. A partir de agora deverá...\n" +"\n" +"* Ir ao [seu perfil](%s) e enviar a primeira mensagem.\n" +"* Adicionar uma [Endereço Jabber/GTalk](%%%%action.imsettings%%%%) de forma " +"a poder enviar notações através de mensagens instantâneas.\n" +"* [Procurar por pessoas](%%%%action.peoplesearch%%%%) que conheça ou " +"partilhem os seus interesses. \n" +"* Actualizar o seu perfil [Opções de perfil](%%%%action.profilesettings%%%%) " +"para contar mais acerca de si aos outros. \n" +"* Ler os [documentos online](%%%%doc.help%%%%) para conhecer todas as " +"funcionalidades que tenha perdido. \n" +"\n" +"Obrigado por se registar e esperamos que se divirta usando este serviço." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -612,12 +740,14 @@ msgstr "Não foi possível subscrever. " #: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 #: actions/recoverpassword.php:111 msgid "Could not update user with confirmed email address." -msgstr "Não foi possivel actualizar utilizador com endereço de email confirmado." +msgstr "" +"Não foi possivel actualizar utilizador com endereço de email confirmado." #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "Não foi possível converter os tokens de requisição em tokens de acesso." +msgstr "" +"Não foi possível converter os tokens de requisição em tokens de acesso." #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -952,8 +1082,12 @@ msgid "Find people on this site" msgstr "Encontrar pessoas neste site" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Por razões de segurança, por favor reintroduza o seu nome de utilizador e palavra-passe antes de alterar as suas configurações." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Por razões de segurança, por favor reintroduza o seu nome de utilizador e " +"palavra-passe antes de alterar as suas configurações." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1038,16 +1172,29 @@ msgstr "Definições de IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-passe para a ligar ao seu OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-" +"passe para a ligar ao seu OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Se quiser adicionar um OpenID à sua conta, introduza-o na caixa a baixo e clique em \"Adicionar\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Se quiser adicionar um OpenID à sua conta, introduza-o na caixa a baixo e " +"clique em \"Adicionar\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma nova que será enviada para o endereço de email que tem configurado na sua conta." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma " +"nova que será enviada para o endereço de email que tem configurado na sua " +"conta." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1077,8 +1224,12 @@ msgstr "Nome de utilizador ou palavra-passe incorrecta" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "As instruções para a recuperação da palavra-passe foram enviadas para o endereço de email registado na sua conta." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"As instruções para a recuperação da palavra-passe foram enviadas para o " +"endereço de email registado na sua conta." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1171,11 +1322,28 @@ msgstr "Convidar" msgid "Invite new users" msgstr "Convidar novos utilizadores" +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" + #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "O Jabber ID introduzido já pertence a outro utilizador." +#: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" + #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 #: actions/profilesettings.php:144 @@ -1241,20 +1409,44 @@ msgstr "Entrar com conta [OpenID](%%doc.openid%%)" #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Entrar com o seu nome de utilizador e palavra passe. Não está registado ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Entrar com o seu nome de utilizador e palavra passe. Não está registado " +"ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%" +"action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Sair" +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 +msgid "Longer name, preferably your \"real\" name" +msgstr "" + #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Perdeu ou esqueceu-se da palavra-passe?" +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "" + #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -1266,6 +1458,22 @@ msgstr "Membro desde" msgid "Microblog by %s" msgstr "Microblog por %s" +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + +#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 +#: actions/finishopenidlogin.php:85 actions/register.php:202 +#: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 +msgid "My text and files are available under " +msgstr "" + #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 @@ -1273,11 +1481,28 @@ msgstr "Microblog por %s" msgid "New" msgstr "Novo" +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "" + #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nova alcunha" +#: ../actions/newnotice.php:87 actions/newnotice.php:96 +#: actions/newnotice.php:68 actions/newnotice.php:69 +msgid "New notice" +msgstr "" + #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 @@ -1360,11 +1585,58 @@ msgstr "Alcunha ou email" msgid "No" msgstr "Não" +#: ../actions/imsettings.php:156 actions/imsettings.php:164 +#: actions/imsettings.php:279 actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "" + +#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "" + +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" + #: ../actions/smssettings.php:316 actions/smssettings.php:324 #: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Nenhum código introduzido" +#: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "" + +#: ../actions/newnotice.php:44 actions/newmessage.php:53 +#: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 +#: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 +msgid "No content!" +msgstr "" + +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "" + +#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 +msgid "No id." +msgstr "" + +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -1391,6 +1663,11 @@ msgstr "Nenhuma confirmação pendente para cancelar." msgid "No phone number." msgstr "Nenhum numero de telefone." +#: ../actions/finishremotesubscribe.php:72 +#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 +msgid "No profile URL returned by server." +msgstr "" + #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 @@ -1409,6 +1686,11 @@ msgstr "Nenhum pedido encontrado!" msgid "No results" msgstr "Nenhum resultado" +#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "" + #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 #: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 @@ -1424,33 +1706,2502 @@ msgstr "Nenhum estado encontrado com esse ID." msgid "No status with that ID found." msgstr "Nenhum estado com esse ID encontrado." +#: ../actions/openidsettings.php:135 actions/openidsettings.php:144 +#: actions/openidsettings.php:222 +msgid "No such OpenID." +msgstr "" + +#: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 +msgid "No such document." +msgstr "" + +#: ../actions/shownotice.php:32 ../actions/shownotice.php:83 +#: ../lib/deleteaction.php:30 actions/shownotice.php:32 +#: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 +msgid "No such notice." +msgstr "" + +#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "" + +#: ../actions/postnotice.php:56 actions/postnotice.php:57 +#: actions/postnotice.php:60 +msgid "No such subscription" +msgstr "" + +#: ../actions/all.php:34 ../actions/allrss.php:35 +#: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 +#: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 +#: ../actions/replies.php:57 ../actions/repliesrss.php:35 +#: ../actions/showstream.php:110 ../actions/userbyid.php:36 +#: ../actions/userrss.php:35 ../actions/xrds.php:35 ../lib/gallery.php:57 +#: ../lib/subs.php:33 ../lib/subs.php:82 actions/all.php:34 +#: actions/allrss.php:35 actions/avatarbynickname.php:43 +#: actions/favoritesrss.php:35 actions/foaf.php:40 actions/ical.php:31 +#: actions/remotesubscribe.php:93 actions/remotesubscribe.php:100 +#: actions/replies.php:57 actions/repliesrss.php:35 +#: actions/showfavorites.php:34 actions/showstream.php:110 +#: actions/userbyid.php:36 actions/userrss.php:35 actions/xrds.php:35 +#: classes/Command.php:120 classes/Command.php:162 classes/Command.php:203 +#: classes/Command.php:237 lib/gallery.php:62 lib/mailbox.php:36 +#: lib/subs.php:33 lib/subs.php:95 actions/all.php:53 actions/allrss.php:66 +#: actions/avatarbynickname.php:75 actions/favoritesrss.php:64 +#: actions/foaf.php:41 actions/remotesubscribe.php:123 +#: actions/remotesubscribe.php:130 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/showfavorites.php:105 +#: actions/showstream.php:100 actions/userbyid.php:74 +#: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 +#: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 +#: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 +msgid "No such user." +msgstr "" + +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" + +#: ../lib/gallery.php:80 lib/gallery.php:85 +msgid "Nobody to show!" +msgstr "" + +#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "" + +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 +msgid "Not a registered user." +msgstr "" + +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 +msgid "Not a supported data format." +msgstr "" + +#: ../actions/imsettings.php:167 actions/imsettings.php:175 +#: actions/imsettings.php:290 actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "" + +#: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 +msgid "Not a valid OpenID." +msgstr "" + +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "" + +#: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 +msgid "Not a valid email address." +msgstr "" + +#: ../actions/profilesettings.php:91 ../actions/register.php:71 +#: actions/profilesettings.php:206 actions/register.php:78 +#: actions/editgroup.php:186 actions/newgroup.php:137 +#: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 +msgid "Not a valid nickname." +msgstr "" + +#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 +#: actions/remotesubscribe.php:159 +msgid "Not a valid profile URL (incorrect services)." +msgstr "" + +#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 +#: actions/remotesubscribe.php:152 +msgid "Not a valid profile URL (no XRDS defined)." +msgstr "" + +#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 +#: actions/remotesubscribe.php:143 +msgid "Not a valid profile URL (no YADIS document)." +msgstr "" + +#: ../actions/avatar.php:95 actions/profilesettings.php:332 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "" + +#: ../actions/finishremotesubscribe.php:51 +#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 +msgid "Not authorized." +msgstr "" + +#: ../actions/finishremotesubscribe.php:38 +#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "" + +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 +msgid "Not found" +msgstr "" + +#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 +#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 +#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 +#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 +#: actions/finishaddopenid.php:29 actions/logout.php:33 +#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 +#: actions/unsubscribe.php:25 lib/deleteaction.php:38 +#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 +#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 +#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 +#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 +#: actions/unsubscribe.php:27 lib/deleteaction.php:66 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 +msgid "Not logged in." +msgstr "" + +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 +msgid "Not subscribed!." +msgstr "" + +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" + +#: ../actions/showstream.php:82 actions/showstream.php:82 +#: actions/showstream.php:180 actions/showstream.php:187 +#: actions/showstream.php:192 +#, php-format +msgid "Notice feed for %s" +msgstr "" + +#: ../actions/shownotice.php:39 actions/shownotice.php:39 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "" + +#: ../actions/showstream.php:316 actions/showstream.php:331 +#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 +msgid "Notices" +msgstr "" + +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" + +#: ../actions/password.php:39 actions/profilesettings.php:178 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 +msgid "Old password" +msgstr "" + +#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 +#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 +#: lib/logingroupnav.php:81 lib/action.php:418 +msgid "OpenID" +msgstr "" + +#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 +msgid "OpenID Account Setup" +msgstr "" + +#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 +msgid "OpenID Auto-Submit" +msgstr "" + +#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 +#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 +#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 +#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 +msgid "OpenID Login" +msgstr "" + +#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 +#: actions/openidlogin.php:74 actions/openidsettings.php:50 +#: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 +msgid "OpenID URL" +msgstr "" + +#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 +#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 +#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 +msgid "OpenID authentication cancelled." +msgstr "" + +#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 +#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 +#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 +#, php-format +msgid "OpenID authentication failed: %s" +msgstr "" + +#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 +#, php-format +msgid "OpenID failure: %s" +msgstr "" + +#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 +#: actions/openidsettings.php:231 +msgid "OpenID removed." +msgstr "" + +#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 +#: actions/openidsettings.php:59 +msgid "OpenID settings" +msgstr "" + +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "" + +#: ../actions/avatar.php:84 actions/profilesettings.php:321 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 +msgid "Partial upload." +msgstr "" + +#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 +#: ../actions/register.php:153 ../lib/settingsaction.php:93 +#: actions/finishopenidlogin.php:96 actions/login.php:102 +#: actions/register.php:167 actions/finishopenidlogin.php:118 +#: actions/login.php:231 actions/register.php:372 +#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "" + +#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "" + +#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "" + +#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 +#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "" + +#: ../actions/password.php:89 ../actions/recoverpassword.php:313 +#: actions/profilesettings.php:408 actions/recoverpassword.php:326 +#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "" + +#: ../actions/password.php:61 ../actions/register.php:88 +#: actions/profilesettings.php:380 actions/register.php:98 +#: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 +msgid "Passwords don't match." +msgstr "" + +#: ../lib/searchaction.php:100 lib/searchaction.php:100 +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "" + +#: ../actions/opensearch.php:33 actions/opensearch.php:33 +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" + +#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "" + +#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "" + +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 +msgid "Personal message" +msgstr "" + +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + +#: ../actions/userauthorization.php:78 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" + +#: ../actions/imsettings.php:73 actions/imsettings.php:74 +#: actions/imsettings.php:142 actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "" + +#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 +#: ../actions/smssettings.php:94 actions/emailsettings.php:86 +#: actions/imsettings.php:68 actions/smssettings.php:94 +#: actions/twittersettings.php:70 actions/emailsettings.php:147 +#: actions/imsettings.php:133 actions/smssettings.php:157 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "" + +#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 +#: ../actions/smssettings.php:163 actions/emailsettings.php:180 +#: actions/imsettings.php:152 actions/smssettings.php:171 +#: actions/emailsettings.php:286 actions/imsettings.php:258 +#: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "" + +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "" + +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 +msgid "Privacy" +msgstr "" + +#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 +#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "" + +#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 +#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 +msgid "Profile" +msgstr "" + +#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "" + +#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "" + +#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 +#: actions/postnotice.php:52 actions/updateprofile.php:53 +#: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 +msgid "Profile unknown" +msgstr "" + +#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 +msgid "Public Stream Feed" +msgstr "" + +#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 +msgid "Public timeline" +msgstr "" + +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "" + +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "" + +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 +#: actions/tag.php:76 +msgid "Recent Tags" +msgstr "" + +#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "" + +#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "" + +#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "" + +#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 +#: actions/register.php:152 actions/register.php:207 lib/util.php:328 +#: actions/register.php:69 actions/register.php:436 lib/action.php:338 +#: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "" + +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 +msgid "Registration not allowed." +msgstr "" + +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 +msgid "Registration successful" +msgstr "" + +#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "" + +#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 +#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 +msgid "Remember me" +msgstr "" + +#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 +msgid "Remote profile with no matching profile" +msgstr "" + +#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "" + +#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 +#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 +#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 +#: actions/emailsettings.php:48 actions/emailsettings.php:76 +#: actions/imsettings.php:49 actions/openidsettings.php:108 +#: actions/smssettings.php:50 actions/smssettings.php:84 +#: actions/twittersettings.php:59 actions/emailsettings.php:101 +#: actions/emailsettings.php:134 actions/imsettings.php:102 +#: actions/openidsettings.php:166 actions/smssettings.php:103 +#: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 +msgid "Remove" +msgstr "" + +#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 +#: actions/openidsettings.php:123 +msgid "Remove OpenID" +msgstr "" + +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" + +#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "" + +#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 +#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 +#: actions/replies.php:116 actions/repliesrss.php:67 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 +#, php-format +msgid "Replies to %s" +msgstr "" + +#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "" + +#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "" + +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" + +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "" + +#: ../actions/smssettings.php:33 actions/smssettings.php:33 +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "" + +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 +msgid "SMS confirmation" +msgstr "" + +#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "" + +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 +msgid "Same as password above. Required." +msgstr "" + +#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 +#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 +#: actions/emailsettings.php:104 actions/imsettings.php:82 +#: actions/profilesettings.php:101 actions/smssettings.php:100 +#: actions/twittersettings.php:83 actions/emailsettings.php:182 +#: actions/facebooksettings.php:114 actions/imsettings.php:157 +#: actions/othersettings.php:117 actions/profilesettings.php:150 +#: actions/smssettings.php:169 actions/subscriptions.php:124 +#: actions/tagother.php:152 actions/twittersettings.php:161 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 +msgid "Save" +msgstr "" + +#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 +msgid "Search" +msgstr "" + +#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 +#: actions/noticesearch.php:127 +msgid "Search Stream Feed" +msgstr "" + +#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" + +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" + +#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 +#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 +msgid "Send" +msgstr "" + +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" + +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" + +#: ../actions/imsettings.php:70 actions/imsettings.php:71 +#: actions/imsettings.php:137 actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "" + +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + +#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 +msgid "Settings" +msgstr "" + +#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "" + +#: ../actions/tag.php:60 actions/tag.php:60 +msgid "Showing most popular tags from the last week" +msgstr "" + +#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 +#: actions/finishaddopenid.php:114 +msgid "Someone else already has this OpenID." +msgstr "" + +#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 +#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 +#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 +msgid "Something weird happened." +msgstr "" + +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 +msgid "Sorry, no incoming email allowed." +msgstr "" + +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 +msgid "Sorry, that is not your incoming email address." +msgstr "" + +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 +msgid "Source" +msgstr "" + +#: ../actions/showstream.php:296 actions/showstream.php:311 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 +msgid "Statistics" +msgstr "" + +#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 +#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 +#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 +msgid "Stored OpenID not found." +msgstr "" + +#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 +#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 +#: actions/showstream.php:197 actions/showstream.php:206 +#: actions/remotesubscribe.php:113 actions/showstream.php:376 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 +msgid "Subscribe" +msgstr "" + +#: ../actions/showstream.php:313 ../actions/subscribers.php:27 +#: actions/showstream.php:328 actions/subscribers.php:27 +#: actions/showstream.php:436 actions/showstream.php:498 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "" + +#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "" + +#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "" + +#: ../actions/showstream.php:230 ../actions/showstream.php:307 +#: ../actions/subscriptions.php:27 actions/showstream.php:240 +#: actions/showstream.php:322 actions/subscriptions.php:27 +#: actions/showstream.php:407 actions/showstream.php:489 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "" + +#: ../actions/avatar.php:87 actions/profilesettings.php:324 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "" + +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 +msgid "Tags" +msgstr "" + +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 +msgid "Text" +msgstr "" + +#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 +msgid "Text search" +msgstr "" + +#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 +#: actions/openidsettings.php:227 +msgid "That OpenID does not belong to you." +msgstr "" + +#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "" + +#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "" + +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "" + +#: ../actions/avatar.php:80 actions/profilesettings.php:317 +#: lib/imagefile.php:71 +msgid "That file is too big." +msgstr "" + +#: ../actions/imsettings.php:170 actions/imsettings.php:178 +#: actions/imsettings.php:293 actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "" + +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" + +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" + +#: ../actions/imsettings.php:233 actions/imsettings.php:241 +#: actions/imsettings.php:381 actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "" + +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "" + +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "" + +#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 +#: actions/emailsettings.php:244 actions/imsettings.php:218 +#: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "" + +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "" + +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" + +#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 +#: actions/newnotice.php:49 actions/twitapistatuses.php:330 +#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 +msgid "That's too long. Max notice size is 140 chars." +msgstr "" + +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 +msgid "That's too long. Max notice size is 255 chars." +msgstr "" + +#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "" + +#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 +#: ../actions/smssettings.php:274 actions/emailsettings.php:282 +#: actions/imsettings.php:258 actions/smssettings.php:282 +#: actions/emailsettings.php:416 actions/imsettings.php:402 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "" + +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "" + +#: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "" + +#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "" + +#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "" + +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" + +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "" + +#: ../lib/openid.php:195 lib/openid.php:206 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" + +#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" + +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" + +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "" + +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "" + +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "" + +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "" + +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" + +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 +msgid "Two user ids or screen_names must be supplied." +msgstr "" + +#: ../actions/profilesettings.php:48 ../actions/register.php:169 +#: actions/profilesettings.php:81 actions/register.php:183 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "" + +#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "" + +#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 +#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 +#: actions/emailsettings.php:144 actions/imsettings.php:118 +#: actions/recoverpassword.php:39 actions/smssettings.php:143 +#: actions/twittersettings.php:108 actions/avatarsettings.php:258 +#: actions/emailsettings.php:242 actions/grouplogo.php:317 +#: actions/imsettings.php:214 actions/recoverpassword.php:44 +#: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 +msgid "Unexpected form submission." +msgstr "" + +#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "" + +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" + +#: ../actions/finishremotesubscribe.php:58 +#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 +msgid "Unknown version of OMB protocol." +msgstr "" + +#: ../lib/util.php:269 lib/util.php:285 +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" + +#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "" + +#: ../actions/showstream.php:209 actions/showstream.php:219 +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "" + +#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 +#: actions/postnotice.php:45 actions/updateprofile.php:46 +#: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 +msgid "Unsupported OMB version" +msgstr "" + +#: ../actions/avatar.php:105 actions/profilesettings.php:342 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "" + +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" + +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + +#: ../actions/avatar.php:68 actions/profilesettings.php:161 +#: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 +msgid "Upload" +msgstr "" + +#: ../actions/avatar.php:27 +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" + +#: ../lib/settingsaction.php:91 +msgid "Upload a new profile image" +msgstr "" + +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" + +#: ../actions/register.php:159 ../actions/register.php:162 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + +#: ../actions/finishremotesubscribe.php:86 +#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 +msgid "User being listened to doesn't exist." +msgstr "" + +#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 +#: ../actions/foaf.php:47 ../actions/replies.php:41 +#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 +#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 +#: ../actions/twitapiusers.php:82 actions/all.php:41 +#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 +#: actions/showfavorites.php:41 actions/showstream.php:44 +#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 +#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 +#: actions/twitapiusers.php:87 lib/mailbox.php:50 +#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 +#: actions/showstream.php:107 actions/twitapiaccount.php:70 +#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 +#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 +#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 +msgid "User has no profile." +msgstr "" + +#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "" + +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 +msgid "User not found." +msgstr "" + +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" + +#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "" + +#: ../actions/profilesettings.php:54 ../actions/register.php:175 +#: actions/profilesettings.php:87 actions/register.php:189 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "" + +#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 +#, php-format +msgid "Wrong image type for '%s'" +msgstr "" + +#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#, php-format +msgid "Wrong size image at '%s'" +msgstr "" + +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 +msgid "Yes" +msgstr "" + +#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 +#: actions/finishaddopenid.php:112 +msgid "You already have this OpenID!" +msgstr "" + +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "" + +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" + +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 +msgid "You are not friends with the specified user." +msgstr "" + +#: ../actions/password.php:27 +msgid "You can change your password here. Choose a good one!" +msgstr "" + +#: ../actions/register.php:135 actions/register.php:145 +msgid "You can create a new account to start posting notices." +msgstr "" + +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" + +#: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" + +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" + +#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 +#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "" + +#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 +#: actions/finishopenidlogin.php:38 actions/register.php:68 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 +msgid "You can't register if you don't agree to the license." +msgstr "" + +#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 +msgid "You did not send us that profile" +msgstr "" + +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "" + +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" + +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 +msgid "Your OpenID URL" +msgstr "" + +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" + +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 +msgid "a few seconds ago" +msgstr "" + +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 +#, php-format +msgid "about %d days ago" +msgstr "" + +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 +#, php-format +msgid "about %d hours ago" +msgstr "" + +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 +#, php-format +msgid "about %d minutes ago" +msgstr "" + +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 +#, php-format +msgid "about %d months ago" +msgstr "" + +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 +msgid "about a day ago" +msgstr "" + +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 +msgid "about a minute ago" +msgstr "" + +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 +msgid "about a month ago" +msgstr "" + +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 +msgid "about a year ago" +msgstr "" + +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 +msgid "about an hour ago" +msgstr "" + +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 +msgid "delete" +msgstr "" + +#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 +#: ../lib/stream.php:117 actions/noticesearch.php:136 +#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 +msgid "in reply to..." +msgstr "" + +#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 +#: ../lib/stream.php:124 actions/noticesearch.php:143 +#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 +msgid "reply" +msgstr "" + +#: ../actions/password.php:44 actions/profilesettings.php:183 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "" + +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 +msgid "unsupported file type" +msgstr "" + +#: ../lib/util.php:1309 lib/util.php:1443 +msgid "« After" +msgstr "" + +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/disfavor.php:55 actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" + +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 +msgid "Could not delete favorite." +msgstr "" + +#: actions/disfavor.php:72 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" + +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" + +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "" + +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" + +#: actions/favor.php:70 +msgid "Disfavor" +msgstr "" + +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 +#, php-format +msgid "%s favorite notices" +msgstr "" + +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 +#, php-format +msgid "Feed of favorite notices of %s" +msgstr "" + +#: actions/inbox.php:28 actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "" + +#: actions/inbox.php:30 actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "" + +#: actions/inbox.php:53 actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" + +#: actions/invite.php:178 actions/invite.php:213 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" + +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 +msgid "Automatically login in the future; " +msgstr "" + +#: actions/login.php:122 actions/login.php:264 +msgid "For security reasons, please re-enter your " +msgstr "" + +#: actions/login.php:126 actions/login.php:268 +msgid "Login with your username and password. " +msgstr "" + +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 +msgid "That's too long. Max message size is 140 chars." +msgstr "" + +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "" + +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" + +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 +msgid "No such user" +msgstr "" + +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "" + +#: actions/noticesearch.php:95 actions/noticesearch.php:146 +msgid "Notice without matching profile" +msgstr "" + +#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgstr "" + +#: actions/openidsettings.php:46 actions/openidsettings.php:96 +msgid "If you want to add an OpenID to your account, " +msgstr "" + +#: actions/openidsettings.php:74 +msgid "Removing your only OpenID would make it impossible to log in! " +msgstr "" + +#: actions/openidsettings.php:87 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account " +msgstr "" + +#: actions/outbox.php:28 actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:30 actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:53 actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" + +#: actions/profilesettings.php:27 actions/profilesettings.php:69 +msgid "You can update your personal profile info here " +msgstr "" + +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +msgid "User without matching profile" +msgstr "" + +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. " +msgstr "" + +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" +msgstr "" + +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " +msgstr "" + +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 +msgid "Your nickname on this server, " +msgstr "" + +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 +msgid "Instructions for recovering your password " +msgstr "" + +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 +msgid "New password successfully saved. " +msgstr "" + +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/register.php:216 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" + +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " +msgstr "" + +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#, php-format +msgid "To subscribe, you can [login](%%action.login%%)," +msgstr "" + +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 +#, php-format +msgid "Feed for favorites of %s" +msgstr "" + +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showmessage.php:33 actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:42 actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:61 actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:66 actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/showstream.php:154 +msgid "Send a message" +msgstr "" + +#: actions/smssettings.php:312 actions/smssettings.php:464 +#, php-format +msgid "Mobile carrier for your phone. " +msgstr "" + +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 +msgid "Direct Messages You've Sent" +msgstr "" + +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "" + +#: actions/twitapidirect_messages.php:128 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "" + +#: actions/twitapidirect_messages.php:138 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" + +#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" + +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "" + +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "" + +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 +#, php-format +msgid "%s added your notice as a favorite" +msgstr "" + +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" + +#: actions/twittersettings.php:27 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" + +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 +msgid "Twitter settings" +msgstr "" + +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 +msgid "Twitter Account" +msgstr "" + +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 +msgid "Current verified Twitter account." +msgstr "" + +#: actions/twittersettings.php:63 +msgid "Twitter Username" +msgstr "" + +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 +msgid "No spaces, please." +msgstr "" + +#: actions/twittersettings.php:67 +msgid "Twitter Password" +msgstr "" + +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" + +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 +msgid "Could not verify your Twitter credentials!" +msgstr "" + +#: actions/twittersettings.php:137 +#, php-format +msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgstr "" + +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 +msgid "Unable to save your Twitter settings!" +msgstr "" + +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 +msgid "Twitter settings saved." +msgstr "" + +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 +msgid "That is not your Twitter account." +msgstr "" + +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 +msgid "Couldn't remove Twitter user." +msgstr "" + +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 +msgid "Twitter account removed." +msgstr "" + +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 +msgid "Couldn't save Twitter preferences." +msgstr "" + +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 +msgid "Twitter preferences saved." +msgstr "" + +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " +msgstr "" + +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " +msgstr "" + +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " +msgstr "" + +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 +msgid "Command complete" +msgstr "" + +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: classes/Command.php:96 classes/Command.php:113 +#, php-format +msgid "Subscriptions: %1$s\n" +msgstr "" + +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" + +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "" + +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "" + +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "" + +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "" + +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "" + +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 +#, php-format +msgid "Message too long - maximum is 140 characters, you sent %d" +msgstr "" + +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." +msgstr "" + +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" + +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." +msgstr "" + +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: classes/Command.php:344 classes/Command.php:392 +msgid "Commands:\n" +msgstr "" + +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:253 lib/mail.php:512 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" + +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " +msgstr "" + +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "" + +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" + +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" + +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" + +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 +msgid "Twitter" +msgstr "" + +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 +msgid "Twitter integration options" +msgstr "" + +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 +msgid "To" +msgstr "" + +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 +msgid "Could not parse message." +msgstr "" + #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s e amigos" +#: actions/avatarsettings.php:76 +msgid "You can upload your personal avatar." +msgstr "" + +#: actions/avatarsettings.php:117 actions/avatarsettings.php:191 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 +msgid "Avatar settings" +msgstr "" + +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +msgid "There was a problem with your session token. " +msgstr "" + +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + +#: actions/avatarsettings.php:334 actions/grouplogo.php:391 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 +msgid "Lost our file." +msgstr "" + +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 +msgid "No profile specified." +msgstr "" + +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 +msgid "No profile with that ID." +msgstr "" + +#: actions/block.php:111 actions/block.php:134 +msgid "Block user" +msgstr "" + +#: actions/block.php:129 +msgid "Are you sure you want to block this user? " +msgstr "" + +#: actions/block.php:162 actions/block.php:165 +msgid "You have already blocked this user." +msgstr "" + +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been " +msgstr "" + #: actions/deletenotice.php:73 #, fuzzy msgid "You are about to permanently delete a notice. " msgstr "Tem a certeza que permite remover esta mensagem?" +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "" + +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + +#: actions/editgroup.php:87 actions/grouplogo.php:87 +#: actions/groupmembers.php:76 actions/joingroup.php:81 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 +msgid "No nickname" +msgstr "" + +#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 +#: actions/groupmembers.php:83 actions/joingroup.php:88 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 +msgid "No such group" +msgstr "" + +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "" + +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + +#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 +msgid "Nickname must have only lowercase letters " +msgstr "" + #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Bio é demasiada extensa (máx 140 car)." +#: actions/editgroup.php:218 actions/editgroup.php:253 +msgid "Could not update group." +msgstr "" + +#: actions/editgroup.php:226 actions/editgroup.php:269 +msgid "Options saved." +msgstr "" + #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Awaiting confirmation on this address. " msgstr "A aguardar confirmação deste número de telefone." +#: actions/emailsettings.php:139 actions/smssettings.php:150 +msgid "Make a new email address for posting to; " +msgstr "" + +#: actions/emailsettings.php:157 +msgid "Send me email when someone " +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + +#: actions/emailsettings.php:321 +msgid "That email address already belongs " +msgstr "" + #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "Um código de confirmação foi enviado para o endereço fornecido. Tem que aprovar que %s envie mensagens para sí." +msgstr "" +"Um código de confirmação foi enviado para o endereço fornecido. Tem que " +"aprovar que %s envie mensagens para sí." + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" + +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 +msgid "No notice content!" +msgstr "" + +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + +#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 +msgid "After" +msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 @@ -1460,73 +4211,892 @@ msgstr "Um código de confirmação foi enviado para o endereço fornecido. Tem msgid "Before" msgstr "Antes »" +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" +msgstr "" + +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 +#, php-format +msgid "Invite your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + +#: actions/facebookremove.php:56 +msgid "Couldn't remove Facebook user." +msgstr "" + +#: actions/facebooksettings.php:65 +msgid "There was a problem saving your sync preferences!" +msgstr "" + +#: actions/facebooksettings.php:67 +msgid "Sync preferences saved." +msgstr "" + +#: actions/facebooksettings.php:90 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: actions/facebooksettings.php:97 +msgid "Send \"@\" replies to Facebook." +msgstr "" + +#: actions/facebooksettings.php:106 +msgid "Prefix" +msgstr "" + +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + +#: actions/facebooksettings.php:147 +msgid "Sync preferences" +msgstr "" + +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 +msgid "Disfavor favorite" +msgstr "" + +#: actions/favorited.php:65 lib/popularnoticesection.php:76 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 +msgid "Popular notices" +msgstr "" + +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "" + +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" + +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 +msgid "Featured users" +msgstr "" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" + +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" + +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" + +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Avatar actualizado." +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 +msgid "Failed updating logo." +msgstr "" + +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + +#: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "" + +#: actions/groupsearch.php:57 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" + +#: actions/groupsearch.php:63 actions/groupsearch.php:58 +msgid "Group search" +msgstr "" + +#: actions/imsettings.php:70 +msgid "You can send and receive notices through " +msgstr "" + +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + +#: actions/imsettings.php:147 +msgid "Send me replies through Jabber/GTalk " +msgstr "" + #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "Código de confirmação não encontrado" +#: actions/joingroup.php:65 actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "" + +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "" + +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "" + +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "" + +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "" + +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 +msgid "No such group." +msgstr "" + +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "" + +#: actions/leavegroup.php:100 +msgid "You may not leave a group while you are its administrator." +msgstr "" + +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" + +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "" + +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 +msgid "Could not create group." +msgstr "" + +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 +msgid "Could not set group membership." +msgstr "" + +#: actions/newmessage.php:119 actions/newnotice.php:132 +msgid "That's too long. " +msgstr "" + +#: actions/newmessage.php:134 +msgid "Don't send a message to yourself; " +msgstr "" + +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 +msgid "Notice posted" +msgstr "" + +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 +msgid "Ajax Error" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" + +#: actions/openidlogin.php:97 actions/openidlogin.php:106 +msgid "OpenID login" +msgstr "" + +#: actions/openidsettings.php:128 +msgid "Removing your only OpenID " +msgstr "" + +#: actions/othersettings.php:60 +msgid "Other Settings" +msgstr "" + +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" + +#: actions/othersettings.php:93 +msgid "URL Auto-shortening" +msgstr "" + +#: actions/othersettings.php:112 +msgid "Service" +msgstr "" + +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "" + +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "" + #: actions/passwordsettings.php:69 #, fuzzy msgid "Change your password." msgstr "Modificar a sua palavra-passe" +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "" + +#: actions/peopletag.php:35 actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "" + +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "" + +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" + +#: actions/profilesettings.php:91 actions/profilesettings.php:99 +msgid "Profile information" +msgstr "" + +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + #: actions/profilesettings.php:144 #, fuzzy msgid "Automatically subscribe to whoever " -msgstr "Subscrever automaticamente a quem se subscrever a mim (recomendado para não-humanos)" +msgstr "" +"Subscrever automaticamente a quem se subscrever a mim (recomendado para não-" +"humanos)" + +#: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "" + +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 +msgid "Couldn't save tags." +msgstr "" #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Mensagens públicas de %s" +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "" + +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 +msgid "Sorry, only invited people can register." +msgstr "" + +#: actions/register.php:149 +msgid "You can't register if you don't " +msgstr "" + +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " msgstr "1-64 letras ou números, sem pontuação ou espaços" +#: actions/register.php:382 actions/register.php:386 +msgid "Used only for updates, announcements, " +msgstr "" + +#: actions/register.php:398 +msgid "URL of your homepage, blog, " +msgstr "" + +#: actions/register.php:404 +msgid "Describe yourself and your " +msgstr "" + +#: actions/register.php:410 +msgid "Where you are, like \"City, " +msgstr "" + #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "excepto estes dados privados: palavra chave, endereço de email, endereço de mensageiro instantâneo, número de telefone." +msgstr "" +"excepto estes dados privados: palavra chave, endereço de email, endereço de " +"mensageiro instantâneo, número de telefone." + +#: actions/register.php:471 +#, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgstr "" + +#: actions/register.php:495 +msgid "(You should receive a message by email " +msgstr "" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" + +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%s favorite notices, page %d" +msgstr "" + +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 +msgid "Group profile" +msgstr "" + +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + +#: actions/showgroup.php:262 actions/showstream.php:289 +#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 +msgid "Note" +msgstr "" + +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:304 +#, php-format +msgid "Notice feed for %s group" +msgstr "" + +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 +msgid "Members" +msgstr "" + +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" +msgstr "" + +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient " +msgstr "" + +#: actions/showstream.php:73 actions/showstream.php:78 +#, php-format +msgid "%s, page %d" +msgstr "" + +#: actions/showstream.php:143 +msgid "'s profile" +msgstr "" + +#: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 +msgid "User profile" +msgstr "" + +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 +msgid "User actions" +msgstr "" + +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 +msgid "Send a direct message to this user" +msgstr "" + +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 +msgid "Message" +msgstr "" #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Todas as subscrições" +#: actions/showstream.php:533 lib/profileaction.php:235 +msgid "All groups" +msgstr "" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " msgstr "1-64 letras ou números, sem pontuação ou espaços" +#: actions/smssettings.php:162 +msgid "Send me notices through SMS; " +msgstr "" + #: actions/smssettings.php:335 #, fuzzy msgid "A confirmation code was sent to the phone number you added. " msgstr "A aguardar confirmação deste número de telefone." +#: actions/smssettings.php:453 actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" + +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "" + +#: actions/subedit.php:83 +msgid "Could not save subscription." +msgstr "" + +#: actions/subscribe.php:55 +msgid "Not a local user." +msgstr "" + +#: actions/subscribe.php:69 +msgid "Subscribed" +msgstr "" + +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" +msgstr "" + +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + +#: actions/subscribers.php:63 +msgid "These are the people who listen to " +msgstr "" + +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who " +msgstr "" + #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "Todas as subscrições" #: actions/subscriptions.php:54 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions, page %d" msgstr "Todas as subscrições" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices " +msgstr "" + +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose " +msgstr "" + +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 +msgid "Jabber" +msgstr "" + +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 +#, php-format +msgid "Notices tagged with %s, page %d" +msgstr "" + +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + +#: actions/tagother.php:33 +msgid "Not logged in" +msgstr "" + +#: actions/tagother.php:39 +msgid "No id argument." +msgstr "" + +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:164 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + +#: actions/tagother.php:198 actions/tagother.php:200 +msgid "Could not save tags." +msgstr "" + +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "" + +#: actions/tagrss.php:66 actions/tagrss.php:64 +#, php-format +msgid "Microblog tagged with %s" +msgstr "" + +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" + +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" + +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 +msgid "Not found." +msgstr "" + +#: actions/twittersettings.php:71 +msgid "Add your Twitter account to automatically send " +msgstr "" + +#: actions/twittersettings.php:119 actions/twittersettings.php:122 +msgid "Twitter user name" +msgstr "" + +#: actions/twittersettings.php:126 actions/twittersettings.php:129 +msgid "Twitter password" +msgstr "" + +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 +msgid "Twitter Friends" +msgstr "" + +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + +#: actions/twittersettings.php:341 +#, php-format +msgid "Unable to retrieve account information " +msgstr "" + +#: actions/unblock.php:108 actions/groupunblock.php:128 +msgid "Error removing the block." +msgstr "" + +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "" + +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "" + +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "" + +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" +msgstr "" + +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 +msgid "Problem saving notice. Unknown user." +msgstr "" + +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "" + #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" @@ -1537,34 +5107,242 @@ msgstr "Sobre" msgid "Change your email, avatar, password, profile" msgstr "Modificar a sua palavra-passe" +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Ligar conta existente" +#: lib/action.php:341 lib/action.php:418 +msgid "Login with OpenID" +msgstr "" + +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 +msgid "Help me!" +msgstr "" + +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 +msgid "Site notice" +msgstr "" + +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 +msgid "Page notice" +msgstr "" + +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +msgid "Secondary site navigation" +msgstr "" + +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +msgid "All " +msgstr "" + +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block this user" +msgstr "" + #: lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquear" +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 +msgid " a new account." +msgstr "" + +#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 +msgid "Published" +msgstr "" + #: lib/favorform.php:114 lib/favorform.php:140 #, fuzzy msgid "Favor this notice" msgstr "Não é possível remover a mensagem." +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "" + +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + +#: lib/groupeditform.php:148 lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "" + #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Todas as subscrições" +#: lib/groupeditform.php:153 lib/groupeditform.php:168 +msgid "Describe the group or topic in 140 chars" +msgstr "" + +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" + +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" + +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + +#: lib/groupnav.php:106 lib/groupnav.php:112 +msgid "Logo" +msgstr "" + +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + +#: lib/htmloutputter.php:104 +msgid "This page is not available in a " +msgstr "" + +#: lib/joinform.php:114 +msgid "Join" +msgstr "" + +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "" + +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "" + +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "" + +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." +#: lib/mail.php:254 lib/mail.php:253 +#, php-format +msgid "Location: %s\n" +msgstr "" + +#: lib/mail.php:256 lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "" + +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + +#: lib/mail.php:461 lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:465 +#, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" + #: lib/mail.php:555 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s just added your notice from %2$s" msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." @@ -1574,12 +5352,24 @@ msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." msgid "From" msgstr "de" +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "" + +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 +msgid "Send a notice" +msgstr "" + #: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 #: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 ou mais caracteres" +#: lib/noticelist.php:426 lib/noticelist.php:429 +msgid "in reply to" +msgstr "" + #: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 #: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 #: lib/noticelist.php:498 @@ -1587,6 +5377,11 @@ msgstr "6 ou mais caracteres" msgid "Reply to this notice" msgstr "Não é possível remover a mensagem." +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "" + #: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 #: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 #: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 @@ -1594,11 +5389,87 @@ msgstr "Não é possível remover a mensagem." msgid "Delete this notice" msgstr "Não é possível remover a mensagem." +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 +msgid "Delete" +msgstr "" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "" + +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 +msgid "Public" +msgstr "" + +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" + +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "" + +#: lib/searchgroupnav.php:82 +msgid "Notice" +msgstr "" + +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" +msgstr "" + #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People subscribed to %s" msgstr "Já subscrito!." +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "O utilizador bloqueou-o." @@ -1630,17 +5501,17 @@ msgid "Unsubscribe from this user" msgstr "Des-Subscrever deste utilizador" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Feed para os amigos de %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Feed para os amigos de %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Feed para os amigos de %s" @@ -1649,40 +5520,149 @@ msgstr "Feed para os amigos de %s" msgid "You and friends" msgstr "%s e amigos" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Avatar actualizado." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." msgstr "Tem a certeza que permite remover esta mensagem?" +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Microblog por %s" +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "Procurar por \"%s\" no fluxo de mensagens" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Por razões de segurança, por favor reintroduza o seu nome de utilizador e palavra-passe antes de alterar as suas configurações." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Por razões de segurança, por favor reintroduza o seu nome de utilizador e " +"palavra-passe antes de alterar as suas configurações." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" #: actions/public.php:135 actions/public.php:143 actions/public.php:159 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "Fluxo Público de %s" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr "excepto estes dados privados: palavra chave, endereço de email, endereço de mensageiro instantâneo, número de telefone." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"excepto estes dados privados: palavra chave, endereço de email, endereço de " +"mensageiro instantâneo, número de telefone." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -1690,8 +5670,43 @@ msgstr "excepto estes dados privados: palavra chave, endereço de email, endere msgid "Created" msgstr "Criar" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +msgid "Your profile" +msgstr "" + +#: actions/showstream.php:149 +#, php-format +msgid "%s's profile" +msgstr "" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Feed para a tag %s" @@ -1707,26 +5722,336 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Modificar as suas definições de perfil" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "Um código de confirmação foi enviado para o número de telefone fornecido. Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código e instrucções de utilização." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Um código de confirmação foi enviado para o número de telefone fornecido. " +"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " +"e instrucções de utilização." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +msgid "No such user!" +msgstr "" + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-passe para a ligar ao seu OpenID." +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-" +"passe para a ligar ao seu OpenID." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s está agora a ouvir os seus comunicados em %2$s.\n\n %3$s\n\nSinceramente,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s está agora a ouvir os seus comunicados em %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Sinceramente,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "" + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 +#, php-format +msgid "%s blocked profiles" +msgstr "" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s e amigos" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -1742,26 +6067,56 @@ msgstr "Código de confirmação" msgid "Do not delete this notice" msgstr "Não é possível remover a mensagem." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Endereço de email inválido: %s" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Alcunha já em uso. Tente outra diferente." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Não foi possível criar o formulário de OpenID: %s" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -1772,11 +6127,67 @@ msgstr "URI da mensagem inválido" msgid "No notice" msgstr "Nenhuma alcunha." +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +msgid "Not a valid invitation code." +msgstr "" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." msgstr "O utilizador bloqueou-o." +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -1785,26 +6196,255 @@ msgstr "O utilizador bloqueou-o." msgid "Couldn't update your design." msgstr "Não foi possível actualizar o utilizador." +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +msgid "Design preferences saved." +msgstr "" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Nenhum resultado" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "O utilizador bloqueou-o." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Não foi possível salvar o perfil." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma nova que será enviada para o endereço de email que tem configurado na sua conta." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma " +"nova que será enviada para o endereço de email que tem configurado na sua " +"conta." + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recover" +msgstr "" #: actions/register.php:86 #, fuzzy @@ -1816,115 +6456,681 @@ msgstr "Erro no código de confirmação." msgid "Subscribe to a remote user" msgstr "Subscrever este utilizador" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "%s e amigos" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +msgid "Not a local notice" +msgstr "" + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Feed para a tag %s" +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "Não foi possível actualizar o utilizador." +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Não foi possivel encontrar algum estado." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Actualizações em resposta a %2$s" +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" msgstr "Todas as subscrições" +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +msgid "Design your profile" +msgstr "" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Modificar a sua palavra-passe" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "Ligar" +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + #: lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "Entrar" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Bloquear" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Desbloquear este utilizador" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +msgid "in context" +msgstr "" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "A Homepage inserida não é um URL válido." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +msgid "No such page" +msgstr "" + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Bio é demasiada extensa (máx 140 car)." +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "" + #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar actualizado." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Bio é demasiada extensa (máx 140 car)." +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + #: actions/finishremotesubscribe.php:109 #, fuzzy msgid "Could not convert request token to access token." -msgstr "Não foi possível converter os tokens de requisição em tokens de acesso." +msgstr "" +"Não foi possível converter os tokens de requisição em tokens de acesso." + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +msgid "No such file." +msgstr "" + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Não foi possível salvar o perfil." + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "" #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Entrar com o seu nome de utilizador e palavra passe. Não está registado ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Entrar com o seu nome de utilizador e palavra passe. Não está registado " +"ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%" +"action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Todas as actualizações com o termo \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Ligar" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Descreva-se e aos seus interesses em 140 caracteres" @@ -1934,40 +7140,153 @@ msgid "Describe yourself and your interests" msgstr "Descreva-se e aos seus interesses em 140 caracteres" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Bio é demasiada extensa (máx 140 car)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Não foi possível obter um token de requisição." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Feed para os amigos de %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Feed para os amigos de %s" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Feed para a tag %s" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "Feed para os amigos de %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "Feed para os amigos de %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Feed para os amigos de %s" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Feed para a tag %s" + #: actions/shownotice.php:90 #, fuzzy msgid "Notice deleted." -msgstr "Nenhum código introduzido" +msgstr "Avatar actualizado." + +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "" + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed para a tag %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Não é possível ler o URL do avatar '%s'" +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + #: lib/action.php:435 #, fuzzy msgid "Connect to services" @@ -1979,12 +7298,36 @@ msgid "Site content license" msgstr "Encontrar conteúdo dos mensagens" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "Não foi possivel actualizar utilizador com endereço de email confirmado." +msgstr "" +"Não foi possivel actualizar utilizador com endereço de email confirmado." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Não é possível remover a mensagem." @@ -1993,23 +7336,137 @@ msgstr "Não é possível remover a mensagem." msgid "Error saving notice." msgstr "Erro ao guardar o utilizador." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Código de confirmação não encontrado" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "" + +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "" + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "URI da mensagem inválido" + #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "de" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Não foi possível actualizar o utilizador." + #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Apagar mensagem" - diff --git a/locale/ru/LC_MESSAGES/statusnet.mo b/locale/ru/LC_MESSAGES/statusnet.mo index 160660f081bb0d0b236427d847ac805b9119392b..f5336ee741b39efb277862e4e1858a449d3b9a09 100644 GIT binary patch delta 25760 zcmaLf2Yim#kdLh62#u2)ZV4`4pJmYtQxnycaYjGtx-6oW^l#)KjkGJm}~+dGH}-!wj7qCkXRlE3A#pa6YERtC$gg#tQflGhvC&w2cv1 z3cFzu$MHGSZN>&HPr(Ij?dLe@y6_Ov9lJSBIL4zMyawyy7Z{A0yHgh{Vs5O7+3_7@ zEKU?=#c8O4Bw|k7iUoPTbApI&xP~fthy^iC564N5MN#FYQ5~v*Ij|jOz<%hDL(q$p zF)yyg!gvH#eg)OeL!0*N$^AUv$wfpxEQ0D`II7~?s0Y4_n!>^8#W6O2CFUZ%7xke3 zpz7Vj%=px%)Alk;;*VOQLRb=uqpvEFrbGtd6kFjBoBjti^?iFY{kRx+W2Pu(#p5`~ za46}UeH`a+?AX_F`jFqcAIm^`U$o;C!@sdQ7I=?A;ky`sE8k=OLx}7oqX=HXLiiH- zpHr~EX=p0WCVdKPU>kZn3+LfzEHuz;wxw8<^f?U0N9e^OF=nPBQ8U#J)8Nn;=3i?# ziVRK7WYlJwg{g2MX2cIrQ@sYYNA}tDSE!}Bfo1S94#(oLj?)mAquRTLVR#Sq-~xlp z^8$TDlo5=2P&k&xs;CY`At%#`w&gLHiS$U!hLcg7aS;~Bb*LFQi`sPeF$nzz8-uY7 z>E@_%-&i7Ai}@IWYf)2|f;vtwQ4QxBV%D-6Y6-exDO_grPhlg{zhV_EA7|PffSTFy zs18rFeqi)D>xpPL?!|?84e7KqlpUv;_!%`r{_He0loz#RMNl(T3bl8_(2LD%c?{~l z5vT``Mb(>wn&~a*uk*i;NG>wYqSop<>e&5;`7!k{bDoQ!c5xNd`yn0+;CxiaHlt>6 z7wSP*QM>;Y=D=cXj6kf2s{bx#<@rumBI>|ER8J?OmLLJOG)HauMbv}updOrlgxP$> zF)QhcsPcNKc6y*jIv6#u(Kde)<{`Zhed^gJBD(P~R>sTt4(1$bUd8=T4ICI{X5s{@ z13#b|dV)DI`)E_IxHS|rlV1VLVjcA25Y!AOjAs5d#hb}cL!YD4*HF9m8G12r3?Cp^ z7d3^^s1D4;2wZ2&FQFRtj5VjA0BQ+pVP5QsUL1wm)XT>*|9a3dn{gZUfXw8pBjH#C z8(~3=MlHz{o4*WI|A5W^5%r<;2sNMr<4niPV|mgYQF~+#mcxBMBI@BCEQHy{n~{Z~ z(v48(xi1Fd3@nVBP~~S(<-ekqAoB!sY`v&-Wz^|vf*L>^YOl?+Y2R8RMaVdT+LbrZ zAAdv5%nNjP??jVd5w#Z@VijzOdO=M`J!lT<*zQ3uUdKR8HOU;?Ak+ZLARY2K&53CD z_D6N#eawR6Q5~6!TIFGnx#!rXY#dKWc= zsivE$FM{fLE%d3O_Cz$YQK*XZY=upzhECi3A5k59ikiYaGfa7DRDNA+chroHMU8kK zro!bm{h=-2G=urq<~U4-MsN)^HBT@NW}Rso3cw7cOJI5|i<+sbsQVhCrnoz5Gmk_K zY>D+CY9Lop9sLWv7%+?ZSES-BQ=uK|)j1HgOUGa)T#kCsdenoCTEEBAq#t2-EIgZ| ziayj7-^SGFnPUc!7PWV>V`i-EBjQJ-9%>01phn&qwI_O_Dh|SoIL78rv-yiLE%|Fu z9s3kD11D_y25RKbQ3K04*L0{DY9@WbMAUFOTTsIm)Iq&48lyVU7uBJ7^x_0m$Je0l zUyGWl?Wlnq!d`eD!?Dsl_8CTD7#_xoI{$Zxc*!U_-+Y&Q3rCSYikgWU3rq*gQutJcJtgSya8dHk~TL)Gvn7c&%e z2ydX)_@l*UBfN;GRa6pND{i<-eTm<~7C^mf!zC81B7-~^Edcou^& z-~%(|)leg9fNH2Ms$-pO{z%kFr&^bwj@?Gofc}G;nU}Z}ODr*8?T(>39I=%7*8?h3 zsu9-50BnlE*aP)Knt?fSEo!azqc+_aSPH+!n)nj62Wl)cpB0@^9iEQb#OqKqvCDc; zpWm9wleWSY%tQJPR>4%udC6c6)JTS5He89ha0}+elcn5fI7auPl;%4H=~wfCu&BHp_bw@YQzt)5IP^41`DG)TmjW!q_s6_sd}UC z8-ZHdX_z19qBi-b$o)R&0Fe@8e1=-1-%(TZ40UYMd}Q+TqBd6$s)2?!-2v6%(WoU^ zj9QXS)>Eh@y@HyVzfc_xT&)@Q@x6?QMp6qkm5oskZi5b;+PxDVF1r}8rp&`*7r~i4!2ImP|^vg4je@tpJY@=FQPi~ z3u?*!K|LVb$L1AY0yQ&lp*r3HHDd$Or!|>Mq#&+FRXl>qzldS@05x@mKQZ5M8lgJ0 z5H&-`P#wF9YUe&`2{W%Xn>aUWK!K>4DTA7sT5FmA)I?g4krv-URqTXnFd8+&k*FTe zLOo!u^#p3IuVE23$64T&i%!ohP{JW?<_5wAq3>(Z|$mb&xPDTkVjBT+3#$##R zfNAj}YHfc&&B#O4W=j33c~B1Yk}hbiiK^EXRc|or!DFp+P|xwLB%(FBfa&o%Y6N#| z{zKG^I2%nzvZB(tP{*nmX2R;25gVW$)Ed=ZPb`W3ZGHjjn6qnL{oPc^+tPv zY9QYxGu5R~GZ2Y-U;|VKx>*O>{86X}CZO6|jzPE?gYg1Z!sn;~mfx%oDb~L#k#b~2 zqbe>#HoSAv8oh=0Jn5`k%^o;}>fkBV=DUay_&cftf!oZCgrJt7lC=?PAe~WrsTbzq z`A&bEF%h-7W}+8YV{trT%YVU4q#vM`>^bT@XWDK?Tm;pzvZ#(kq8``?)sdE{Q`8G} zipHQ%k)=ekV-l)?&ru`$4#V*wY7MPTyAS5(9Ap++_d)!r=B=~;p5&>>X4 z)2OAqwuAXs51){s2fjizoOh>rU~$wgZHj7eJgWWz%z{f$FRFD|3yK)nbR6a) zJqgwBQq->Bj(Xu;Kn>(O9}#~dSFtHR!dX~*kGb(IzEAoFHpZ?=d>g_IsHv>5*UVUR zYe!UmA5_Q2p$0G?_29Lrnb?SWQ~JKJ74D)&=GkXvBs;31!dM2Ypc?Flx^X1xxGu*k zxECwoLoA2E`|aO&ppM}j)Pr|n2Rv``eNN~B^X0QOYKoSkHqk-Ura6h)lwV;e{%FfH z9yA^FM~yHPwRh^EM%oPZ;MSNAN1!(20@QPMV6e{r*F-eJ7g!p@4w<#-fO=qeEQ_;I zZ@9y#4t;_7@q5gRk1+#gIc)OtpgItNxv@R!{#evZzK@xBzB7}Ejzc2m!mX%Hc?vbM z3#c1@LDhST1u@4FvkAjdn<)a-fvTvPdkZxaO|dz)!e;m(s^h<-PY=j&)MOM!-B1-Z zm9;Pg8)GpXiov)9OW<)-{;yabvm7%6sDnjFzl$m#j@mQJumB#$K)iH}`B%l~WE94N z$IT|Gj(R``jKFcI@|~z9I&Xc6IY@_`FfXbasHN1GQ&@J~#Kb#z@lRur?mU zQt0`@Y|7F;BE`t4kJ@C>)}^SaI%CUkqmEUkFO4-(^<&XpQ&c;@qmH5f88ah|Z~*BM z*bQ&tDy)B&CGfERw}`Ouopk>(Jv@n#q*I?WOHd!R*#=-yoQ_(GP3XllSP}2q@}kLn zp(R}()8ib}?oUKN+=69sJO04)o$Ex@z>yU5?*0??g6MmmzqQ0;m^BN&ReQ1$)4Hyy2jX-U70KVvi0eHAX5=d`%Q`fF{wlcA{` zfSRIB=*1M&W_pBraP`aPKf(0G)TCFUJ}cIsM!FGIZ!fB2S5fV!VW;K79H<#6iJFnx zKQR9~Ht&$3nHYgZFcCE)NvO?s3iW`CSO~9UFgib)5tqX5B%7ex+k|>RGU|c1P^aew zYG%Dx%o3OJ5vfE*6I2H#U@U%wUtx}`=0$N8OObwxd9m0vvq@`UA<~hkj&?8S9{SP%)^BUhISF zz*H=Ohiv{$)PvI8=93l6pzb?>1@J1W{25l``A*O;rh)FLHJxhH+fWbq)~2)kYDQiG zN0Q$ez4#5P-rraO!+tYM)DyKNqcAtlL@n`Ztc}M||DDP4+%ew)v!bRl5XWG99EIPY z&VB2<#@^^pdKhYxO-G&Qm8b{qu;s^5_gzH2A#dCC6V&F;c#ru{OC&Fml2`;a0}U`W z4#Lbh6f@!k%!IR1yLbtv$Mu*6w__SSf*SED%!NOo>OI1Z9;O~klU{e9`PbB4xXyhcm;y=vC^J;8Jd56bl_pioQq*Jg37W;gwM*E0VCNc}P+fUjGzuNRuj3mGCOVdC%Y(_c(RsSap#I&zWgTbf= zG(jEPP8f=Ds6Fx_YKeE*a^H_cG$ntc8m#Jg+#Ywu@}$S08r+Ur^J7>RlWp4LG4-?K zx8#?>2AIyz<9;)0frUxm!}XXsmB-!vyK$w?|DQynS<{87JdM}ODgOi1r> zE|4Fd!Q&hy-!GHL=}rELET-Y$tR8piPUBeegR*(tDg79=7e2FQ&+c)*(sjUN`D)Y44A20Y(cst8`kFbv6OM$#Uc9A^}MNWL$>(Obad z9>-%ig8Z|n2h=ZUY>(+l_eXUo9tYwS)Ny}oeTF`53co@g_a{y)XJx&a!SR;#?k#0pDo8V#|_r=r%^}zP1r5JA0ORx#)y~s9jQWy6)=ST+xnWeso z8ep9gJ~LGvOL*KjSTEER4MrWa5!TbFH(@|YkNai|M4j&{*b4{RbPCoZoi^B%H$lA# z$DxjSB1Ymltc}@yr9AFmHnqfpWc-O5k$;HUEafnQbX{zOL$L=QL5(1=v}v#!YIBW3 z9phQ3`?g~tyos&RFVvK`wff#CQk{ZT7>SorQ(2IsPy}nC_CQxu{%q8PwxULM)aHMS zdeJ zvRCxDdnW>`lAef~(nHo4SeA6nN+v%B>yX}JeSnkn`5#f)%s>)qO8>w(%v{Ce%)@b5 z1#?vOIGwPubuCsS?N`lov?gj-Pq2Q2TC$Mp=E3pUg7hA2i)m}nF3)#56H!kWq264l zQJXJYO|#p(pxY5tgE?w>+`kLzgp)|G#dooEZ8IYiu`lVbQJb_zq#4*?)Sj4udfyyE zpQa>D9dnKwppMOK)Ti9{SP4tlHTFbxbP0CFFHs{d^_Iu|>$fr1gQy2RL%jjR>v`O- zXf?4V>E0NOyY>Fn=l>NlR575w$Nevw#V|YRwb&k$a0+IB+v9Y{L{vwgppIp|24;7+ zLe1RAsQ1JpRJ*wvnipGfRDL8zVy}jre?>mF8Mm+_=@N~M<56q=gSARy)3Jrvj{Hwh zGx!`!Vyz}-FZDs~nboK_-eqf=re+hDvDWnw(NwiXy-22^UKDpxo27U&)(GQKuja?7 zhO;;Kxc>^a5o!izp-#mTOoIn(`WWi`-$2cbr-d1C3slE_^N6V7^QhzVJGRE~mgd}# z$EKvWVO@NIQ~ zg`w}5P1YZE<8o|_*RcqOwKeaFW~fiO5vVukcB^$kGHL>JDP7YT{@XHo{c#vPe7gjb(jZVp>}K0t$j2RIT_W!N4CN~)LNgmK0%$|kS=CPMxi#{Y19LLvHpqbm|s`( zX__0=p+Z<5Ls2u`y({Ox1d%CZ=#{t`{V-KG^KqOObCC|fSPa1=T#9TSr*(Iaa{$+& zpNI3@!`P>%`AmrJMJE4SWBs_d*#nUmr7-9Z<(|J4WJ7n-1!0 zmZ&}Il+4CUcnvkR2l|;2evf){W{EcU*F(+ZWDLb5)Xd%V*+|;=Oh6WODk3${1Z!rK%4Dh)BincmxGjBqDw%o=>%t+aRW@&uy$Cx+V zcq~eVAMqtRvF7vr73!Gf9%MdzilBZAMq>_)N3H!7)E-JewX+qY@VvFkVDlNU67{A$ zg|zE)?h%P3<1f^4sXW9y;2qRRx}l~r-ntPhkiL#t8A+ZvV~KdP$tn)@I9|%@p*k96 z9fX>xQK+Roj}>(O(+o4`vl{wS&<6EF>Vvaz3y#9-!#&OrOhWDAkP&8vx}xqIYMqAK z)XQx8I0loxh(qzEHGZVW>7euf8xg%=>b-C5hT1IeV-ehhdU2dZZR97YweCFHjBq2W z!+TK2_a*AHBlj4yXZoO)Y7(k^v2_dj^kH(ENGE)SN_QG-HpfC7NO~DA!VH`ieNA75 z`cx}6&P-`D)Moq`_3im<%z&3M8{V?zf1=KP(0DWBO~!NnHL~7h$a%KlAZiLPqTbcd zQJW@Yf*Db3)T?+9M&cr@h~L=!%oEM~q#SB#rlLl^6m#PaoBm=VBT>(PB11jPG0A+F ztBmTP_Di$N1ggUO5t^c4Nm~V>tG%bs2uN!I;PxTSeu{mf9 zzOy=0&DsZ}8f<9OeNhcewdt*>_rf{UIlqTGe!hGaW98TI0s32m4Ux{}X%*3(TjZ zI{)2>sKNl$8ZJOh)mNw)_y@Jw@+~l%GQ!#wHRUs~1|GtEs*epYAi?~K?rc4S!^p3; z&>Yk4=+g~*iD)g)qt5GN)C(i^BD0pcQSXJusLeVNRc{q)DYl~8If+`jE2sfgTx>pW zJE4|j0BWy{L>O0|J)C?U&Hj{JN zTIK^YBNMGhQT1M+I#zIr`B1C7#D4xaAtM(Bqpb_jJ@=>wCZl@(BUZu}*c2-)HI7Gp zO8y6Xl$+ks-tGMD~4b^w!l@`LFfNI5jEK8V^i@R)X3gLEx`oT z-uM*tq4ODPlRd=T*zgl`EW4pTGv=TMv>Wxl_#Cxqf50aA1gm4cwf6IW91*SYZqyCO zt>54b(!b#?9J$Kj?P(SM|>oyFg-q)y(y+D121Z*%%6Nwr?E9)pMsPq4c%{Y$w z_`GY=f1r+4p-;_HRK{4+9Z*yM1vbRLP$RCr(adCPRCyO1gER0Mrr%^bkb1MnIZrwq zeIto@wwMZ|P(2*J)im^xbrWjsl2E7My47!+$4O1PDC$jD5?NFJg_D_yJ*d5N6}1Fu zwwq%ah~r3i-Ol;f1Fw>yO_5=T$JvG*tQmKDoKHy~u=d$y&UudA=I@N6@FU9CSnKaG z`L|Ic4@xp$Y}TNb_!VlVGVe8erN~~N`Puz88QO%OqSkOX>MPk5)Mk8&dei0DXI{}I zP(RsvU}Ic>I&ME=Ys|Ud{0QxXdKDi*9nW+J%-^i!MGg2p9}zXYAN7VhhkEeus1KnG z2hC=xf+}x;O)YL33cB+RD0U+Q?)SK=Js-1Et%vZa2bP|@fCK#uv6xI&&0l@w_5X@HhaZqy@LkgT@niHqZ>B5>dy@VO)li2E z9_KIIjHB`6ui2y?mgpj%5q|uw_&2miy1{qm4Z7re^ZTLrCG+97AGMbrUgG@MCzAiN znZoXO=6VNJZwA)HwWv?co2bp1{)XAK zk=TiJET+OUSP##kHerD8rum&d1vT=&aTNBwWj?2GU~|$fem0wNr8Vts^Qw)pevayB z(O=9I*G9dVhFOncRnnP%HJk8l)TgU&0udd*Pi?`E_!a4VznOD<8}&jdaL0_aEb2uP zgWBCb)G_=3TjH120(Z?C55VH&FG4TwN4=;nBOUNLe-Y8SEPT)OsEc(n_91_>O$YpL z%4?wBc)c+Xn{7BYB0cwkc|UxQDu0UeF!Mt*Q!7y48~(;&*!+=RT%5mCL^S0s{xBmt zW4(#`aC(6{B_$slhoU}APN1eV88rhL|1>jM1C<|(k+{L8e?u?n;(wXFR3A&~{0}Cg z4}&Gx6Mw~f*z|8>wI^n3gP)pr`AF39S%$jrBx)%F{xL70Fw_fe4r*q8$C(_*D$k53 zpPLV{mM=N~)u=F&NF<)d)R^v-`2vv{HI-FyFE+KN;V z`nmrEqb*)1{~TV$9qIhszpz-4-p~F27vN;@b7yFd^$OOdUU)|1;EX;~VHX*CVCqbM z?!W6>jQT8y$ZR?`4>h7Q7{OF#$l~XInXJLYQ&vZLaj${M9z2V@UT$FYRBlKFdv-d|$!5X3c7%UI@LcGg04OccNY_SFtEQw-(7~*08R% z2Wqd3!>pKqI&Q12PcaSYmihhMkLz~Gru8}TM0De9%!MCf4%~x!*ME+B;ao#~t9^(O zSh#?n`^%^mGBAhtlrxEUY)(Qy($knwUC(e89>YMrgSqq})|GTq?W)#fwjyH#4SbJN z35AIBrghd+cGNahOGksNj#cqVg#FahRfl@(u^{PXZVpF}yxTVZHIAh0gsuMp=`Xdb zOV|d}SaV@bDvjXg`L@Su<3FT}5rz`-QD-}O5yW-1qyAIkJqXoFe?^+bRsMZ1|O^99jR{x>Rx+W0$I*FLIU`rE>>XQ{8@)~8j@eieXEc$fv}3qAc8I(p?&tDqiv%NZP|OIPf}LcrYBRk2w@xPT7;sM zJtF*0o~|_pX9js2DPKb1FgX8^KJBhQ5na6GoDT@AsZfXXe1ea%Qnu@TDXUA+^{sU= z@#}ghGD)1~LT-}TNZ!nJ|ItWXh!3YyH0jsZ4)X5W#5=?r5N}PL zjrf7Bci5K4Q?9EnBfUhOdc^10It|?t_umxyoGD}$qf!NK7-Mfz`6=SfZN(`xklNlH zXY-oay00kH^&RO2gpoEsiu_94bITOFf94{6f%2aAo(lZ_a0=KPLhupQc2L+2x7z%z zwt*;YOW8OYX-XJO`B$X%!{qhVj=U%21>iThi-IAq3$Z8pr3r6wzpiM$f4EmCG8PiA zO?b!VWusylW=7Y1@;;@`9O7r}%~yyIC0?CSoN|8VIb*r!EAp4xHu(AQ@0FH#3W0BV z&Uxy6Lhwzs6^B@tQ`ne-Z|!aUNQY9kmb`atUVY-PuPMa&$>3C>&KN96y1MPO>U>0= zuG99OuEc+&ZdKAXwEt(@g73-na$^sB!&&mbSHt9GCLU??zd*iCIqAsTZSM`I(YMK) zM|vCapYS}cBk%RKiThTQznHLypzCLye|^jO)n>T4Z~U=<26|C82!m-L)^_g$S;%NuTT6ObohPZUW@qi z1vj1~q@!*|@_!)jAR#sBoumunAC%uG%qBkwXA$-h5(#Sv%L%&55PTDOSXnp85uzYF z>5oY3+wKcOCK@b2(Dj48aRqfMkp9JX>XCnwaEAQN zIFC?{_#o<>#5B~=bzbLx7=?a%DC#;u_?Qai$=g7DCLzGyaFuv7>a`^JY#v$8PlP_? zMt|Em+q=;)Agob^dm9_#m;3 z4W@ou@(Pk(iAM<6ssE2H=l6_LiS!NXrNtD=I}jQXej=|3<$WPSw+Op@SG3Rq@e`_H3WU==(!zYAB+&cjIHSQGP z_owq8GHR1JV0*R`r%)jeo*=9vu4@d9UL?&=H~0F1czL^g6Uf_7?lAJE+fGH2_7LYc z=f77S%Ks#EBd;>LpZ{sF92se8%!_|f@HTm+FqY7fMzYx^N)qR<1Dq>_+~ifIeqQ3b zigW*WChDx?zUq|aCvPzxCG92XdVmwj>&<;Q{fWfe5N|;nh1HmzpO;FV?ad~SjYTD0 zS8aY4(s^lMEa}fpkrPHKyDjp^5%TuDk=K~K2GlJ@{wD-o{#KLX z`yuJO)Y0`H>+Lt%_{`QHMfu%SOxz+WttFfwqc#;6QQ;o(zG{GQoV=yD%iegDcwIuW zO<%K(Z??9ft=*KLp?nJ-$Bzi7$-hiG*xnaG{o!W+^TuN;DpA;m!oF10^&9aC#5>_2 zll5PJmbDEjvkCQnAm}eBboC0yHg6_zUBk8h zx?0sRh zU9Y%L*J_(yhFfhsJ@sl(KNTSpd9SGF&VNB7kI3l5%?)rNji%_MQqj%9dZkj|tyV?;)W+;SbWWw(b_v<7u>zKL5WYF`I&2_U7kSJ+!;M zLGizc|A9j(Pm9l$$@L!TER@`{L|1n!Sdv7t@-f7Z}2_cdklH~`xb zeEa$1J{grTiHcQ;FX6_@_%k6R@m7TDgr~Nl+gO>7gcHh;--nQi@FDq~xhF62k7=(n zzP{3v)^!615>iq3)7R&}qpesN>r*Kmp%E1xlHNjy;f76^pZvqbb5a({!=I8@kNE5B zPa?S~ze9dJ`EzYqHPX*)rIOrNg?KLVn(Fso7&qwZO{h&_d7F-+!ZzaFP}ejXYfri- z@wwzh;7HQ%V-lel;l6!f3g!8Thhi%%N!dJGR+DFxB7U4a_lILD8kwX@I0_@EP?HM^8OKX04(AyGXBdi%r<@fHn=E1J--+>K7Xm<&7CSuxHee zaL3zcNbEpwLUP9q`OA3Q4(i<_J}S;TBx=xrkO)@%?(ldj~|t$9YG_4)ykriW=k{Iw&kY zHcX9sheyZv^A3uN9W)@yl*hyl_x6bC{W@=WzgTZ{OnlUksJM7l2+x?Y1I_g65##MK zATHMHi|f~82>p*5P8WK{4s|OHiHjQ0Csfsk@c7uFef!17g?bsen=>G~Pn0({W2jZQ8zW}qu!V7?Hv%^ zpGl4N#t#|E;DVxFPjsla*MR6={dISIzbLB3^!N6R8o+eM$0p3XmD{JjRI*LQ#Kybx z<4$CB-D4;I_`jJN>e!?Ixapc#@#y!M>?f1_5aU~HI30BHcQ;=v4`(G)@k9$glk`? z&EPJPw(QQ<7fA2}$>yEFH%6+ID^yyePQD_5y>S+0yNTZFZa8WtTF z9UBu?j~!Oc8&S4w)v$8q!pc&wVzmktszp>y81vioRFx`JNyu<#Wyq@J!^wM7#wYK` z9Vs)D_j!|#Bp*(hKytq~c~|m*l)2vH8-wDGA4m)z;K`G?qM9dt;&0VFd3IjD6XHp@ zdZ$1`?mm#bJ9$^i#FRNH(`jw8myEqBQXh*&uT0)f z>-663#UUO%*PFb<>keWEEl+S)#w<+o5gxWTc_&r3@yNZ&2NII+2m5pX?&O0h6TL*X znNz;!emnpFdu>(vpW5Ewpz_7zN@olauJ3J7P0Kn&n+| zZCvsm`Y|D8me-yCLrnX&Boo3dAekL!V0rR-zJ&7KVUw}_Na@URiq>R@jnpr(eVnWJX z^@B;JYgF5wyqiAlp!3sc-Yq#u$Jhw3D>AjJZ>sFpfDh9i)1JI9`A`_+-mC8Oq&aHw zus1o#9gUqIw?*Ci-}4aeP2AqolgH;y6Kya^&5GS@YDJU1D`m3&WFt&?y@T1>8iY35 zRJx^R-NCWp-ADb`TvKfuopYxnW$yp>hynZlXHMN2bq_u}OB<18($oKa=ee`ZlMbuT z?sBC}q}pD06KMHu?{rM|rcBXB)J8p=GKo4mfu`}-n=?R5ul+MVW!As1$i(1wo`T_r z&5bOO`eFChzvqu-(DKnV4^J5%nz*%{CwHhh6C4$0ZazIYq=T#p+Urg+PZ`fV9bjWl zcaWpAI9FTxBddjUQ|%n^>!oCsSfV zVNYmMSfD4=Ke0o&XKd2B@}6n=GJ1nsw`t=o7hbkhVqh~*0h^An=~n-b@}w)xJpC6X zewNeIEHUARCphuL>z+bM+irL+Wl5a&$TL5Yf2;E>iP+HsiGCp-|HKAa{SMm~;^9^v LZ(>L`zgzzYI7N6p delta 23553 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, YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:24:18+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:44:29+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: out-statusnet\n" @@ -30,8 +25,11 @@ msgstr "Поисковый поток для «%s»" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "за исключением следующих личных данных: пароля, адреса электронной почты, IM-адреса, номера телефона." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"за исключением следующих личных данных: пароля, адреса электронной почты, IM-" +"адреса, номера телефона." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -53,8 +51,60 @@ msgstr "%1$s пригласил вас присоединиться к нему #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s пригласил вас присоединиться к нему на %2$s (%3$s).\n\n%2$s — сервис микроблоггинга, позволяющий держать контакт с людьми, которых вы знаете и которые вам интересны.\n\nВы также можете поделиться новостями о себе, вашими мыслями или вашей онлайн-жизнью со знающими вас людьми. Этот сервис также отлично подходит для встречи с новыми людьми, разделяющими ваши интересы.\n\n%1$s говорит:\n\n%4$s\n\nВы можете увидеть страницу профиля %1$s на %2$s здесь:\n\n%5$s\n\nЕсли вы хотите опробовать данный сервис, нажмите на приведённую ниже ссылку, чтобы принять приглашение.\n\n%6$s\n\nВ противном случае вы можете проигнорировать это сообщение. Спасибо за ваше терпение и время.\n\nС уважением, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s пригласил вас присоединиться к нему на %2$s (%3$s).\n" +"\n" +"%2$s — сервис микроблоггинга, позволяющий держать контакт с людьми, которых " +"вы знаете и которые вам интересны.\n" +"\n" +"Вы также можете поделиться новостями о себе, вашими мыслями или вашей онлайн-" +"жизнью со знающими вас людьми. Этот сервис также отлично подходит для " +"встречи с новыми людьми, разделяющими ваши интересы.\n" +"\n" +"%1$s говорит:\n" +"\n" +"%4$s\n" +"\n" +"Вы можете увидеть страницу профиля %1$s на %2$s здесь:\n" +"\n" +"%5$s\n" +"\n" +"Если вы хотите опробовать данный сервис, нажмите на приведённую ниже ссылку, " +"чтобы принять приглашение.\n" +"\n" +"%6$s\n" +"\n" +"В противном случае вы можете проигнорировать это сообщение. Спасибо за ваше " +"терпение и время.\n" +"\n" +"С уважением, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -62,6 +112,38 @@ msgstr "%1$s пригласил вас присоединиться к нему msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s сейчас слушает ваши заметки на %2$s." +#: ../lib/mail.php:126 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" + +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" + +#: ../actions/shownotice.php:45 actions/shownotice.php:45 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + +#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 +#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "" + #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format @@ -115,14 +197,22 @@ msgstr "%s обновлен для всех!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Вы должный получить письмо с описанием того, как подтвердить свой электронный адрес.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Вы должный получить письмо с описанием того, как подтвердить свой " +"электронный адрес.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%" +"%site.broughtby%%](%%site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -145,7 +235,8 @@ msgstr "1-64 латинских строчных буквы или цифры, #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 латинских строчных букв или цифр, без пробелов. Обязательное поле." +msgstr "" +"1-64 латинских строчных букв или цифр, без пробелов. Обязательное поле." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -166,17 +257,31 @@ msgstr "6 или более символов. Обязательное поле. #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Код подтверждения выслан на добавленный вами IM-адрес. Вы должны подтвердить %s для отправки вам сообщений." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Код подтверждения выслан на добавленный вами IM-адрес. Вы должны подтвердить " +"%s для отправки вам сообщений." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Код подтверждения выслан на добавленный вами электронный адрес. Просмотрите папку входящей почты (а также папку спама!), чтобы найти этот кода и инструкции по его использованию." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Код подтверждения выслан на добавленный вами электронный адрес. Просмотрите " +"папку входящей почты (а также папку спама!), чтобы найти этот кода и " +"инструкции по его использованию." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Код подтверждения выслан на добавленный вами номер телефона. Посмотрите ваши входящие (а также папку спама!), чтобы найти этот код и инструкции по его использованию." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Код подтверждения выслан на добавленный вами номер телефона. Посмотрите ваши " +"входящие (а также папку спама!), чтобы найти этот код и инструкции по его " +"использованию." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -356,7 +461,8 @@ msgstr "Автоматическии входить в дальнейшем. Н #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Автоматически подписываться на всех, кто подписался на меня" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 @@ -376,13 +482,22 @@ msgstr "Аватар обновлён." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "В ожидании подтверждения этого адреса. Проверьте ваш Jabber/GTalk на предмет сообщения с дальнейшими инструкциями. (Вы включили %s в ваш список контактов?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"В ожидании подтверждения этого адреса. Проверьте ваш Jabber/GTalk на предмет " +"сообщения с дальнейшими инструкциями. (Вы включили %s в ваш список " +"контактов?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Ждём подтверждения этого адреса. Проверь свой почтовый ящик (и папку для спама!), там будут дальнейшие инструкции." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Ждём подтверждения этого адреса. Проверь свой почтовый ящик (и папку для " +"спама!), там будут дальнейшие инструкции." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -519,8 +634,37 @@ msgstr "Код подтверждения не найден." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. Здесь вы можете…\n\n* Перейти на [ваш микроблог](%s) и опубликовать вашу первую запись.\n* Добавить ваш [адрес Jabber/GTalk](%%%%action.imsettings%%%%), для возможности отправлять записи через мгновенные сообщения.\n* [Найти людей](%%%%action.peoplesearch%%%%), которых вы, возможно, знаете, или с которыми разделяете одни и те же интересы.\n* Обновить ваши [настройки профиля](%%%%action.profilesettings%%%%), чтобы больше рассказать другим о себе.\n* Прочитать [документацию](%%%%doc.help%%%%), чтобы узнать о возможностях, о которые вы можете не знать.\n\nСпасибо за то, что присоединились к нам, надеемся, что вы получите удовольствие от использования данного сервиса!" +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Наши поздравления, %s! И добро пожаловать на %%%%site.name%%%%. Здесь вы " +"можете…\n" +"\n" +"* Перейти на [ваш микроблог](%s) и опубликовать вашу первую запись.\n" +"* Добавить ваш [адрес Jabber/GTalk](%%%%action.imsettings%%%%), для " +"возможности отправлять записи через мгновенные сообщения.\n" +"* [Найти людей](%%%%action.peoplesearch%%%%), которых вы, возможно, знаете, " +"или с которыми разделяете одни и те же интересы.\n" +"* Обновить ваши [настройки профиля](%%%%action.profilesettings%%%%), чтобы " +"больше рассказать другим о себе.\n" +"* Прочитать [документацию](%%%%doc.help%%%%), чтобы узнать о возможностях, о " +"которые вы можете не знать.\n" +"\n" +"Спасибо за то, что присоединились к нам, надеемся, что вы получите " +"удовольствие от использования данного сервиса!" #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -558,7 +702,9 @@ msgstr "Не удается включить %s в список поддержк #: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 #: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." -msgstr "Не удаётся следовать за пользователем, т. к. такого пользователя не существует." +msgstr "" +"Не удаётся следовать за пользователем, т. к. такого пользователя не " +"существует." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 @@ -698,7 +844,8 @@ msgstr "Создать новую учётную запись" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 #: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." -msgstr "Создать новую учетную запись для OpenID, у которого уже есть пользователь." +msgstr "" +"Создать новую учетную запись для OpenID, у которого уже есть пользователь." #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 @@ -708,7 +855,8 @@ msgstr "Подтверждённый в настоящее время Jabber/Gta #: ../actions/smssettings.php:46 actions/smssettings.php:46 #: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." -msgstr "Подтверждённый в настоящее время SMS-доступный номер мобильного телефона." +msgstr "" +"Подтверждённый в настоящее время SMS-доступный номер мобильного телефона." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 #: actions/emailsettings.php:99 actions/emailsettings.php:105 @@ -927,8 +1075,12 @@ msgid "Find people on this site" msgstr "Найти человека на этом сайте" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем изменять Ваши установки." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем " +"изменять Ваши установки." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1013,16 +1165,28 @@ msgstr "IM-установки" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Если у вас уже есть аккаунт, то авторизуйтесь с вашим ником и паролем, чтобы соединить их с вашим OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Если у вас уже есть аккаунт, то авторизуйтесь с вашим ником и паролем, чтобы " +"соединить их с вашим OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Если вы хотите добавить OpenID к вашему аккаунту, то введите его в поле ниже и нажмите на кнопку \"Добавить\"" +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Если вы хотите добавить OpenID к вашему аккаунту, то введите его в поле ниже " +"и нажмите на кнопку \"Добавить\"" #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Если вы забыли или потеряли пароль, то вы можете получить новый, послав запрос на тот электронный адрес, который вы указали в вашем аккаунте." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Если вы забыли или потеряли пароль, то вы можете получить новый, послав " +"запрос на тот электронный адрес, который вы указали в вашем аккаунте." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1052,8 +1216,12 @@ msgstr "Некорректное имя или пароль." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Инструкции по восстановлению пароля посланы на электронный адрес, который Вы указали при регистрации вашего аккаунта." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Инструкции по восстановлению пароля посланы на электронный адрес, который Вы " +"указали при регистрации вашего аккаунта." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1149,8 +1317,15 @@ msgstr "Пригласить новых пользователей" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Этот сервис работает при помощи [StatusNet](http://status.net/) - программного обеспечения для микроблогинга, версии %s, доступного под лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Этот сервис работает при помощи [StatusNet](http://status.net/) - " +"программного обеспечения для микроблогинга, версии %s, доступного под " +"лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" +"licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1160,8 +1335,13 @@ msgstr "Этот Jabber ID уже используется другим поль #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Jabber или GTalk - адрес, типа \"UserName@example.org\". Первым делом убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-мессенджере или в GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber или GTalk - адрес, типа \"UserName@example.org\". Первым делом " +"убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-" +"мессенджере или в GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1228,8 +1408,14 @@ msgstr "Вход при помощи [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action.register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action." +"register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID]" +"(%%action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1252,7 +1438,8 @@ msgstr "Потеряли или забыли пароль?" #: actions/emailsettings.php:139 actions/smssettings.php:150 #: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." -msgstr "Создать новый электронный адрес для постинга здесь; отменить один из старых." +msgstr "" +"Создать новый электронный адрес для постинга здесь; отменить один из старых." #: ../actions/emailsettings.php:27 actions/emailsettings.php:27 #: actions/emailsettings.php:71 @@ -1274,8 +1461,13 @@ msgstr "Микроблог от %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Провайдер Вашего мобильного телефона. Если вы знаете провайдера, который принимает CVC при помощи электронных адресов и которого нет в списке ниже, то пошлите нам об этом электронное сообщение %s." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Провайдер Вашего мобильного телефона. Если вы знаете провайдера, который " +"принимает CVC при помощи электронных адресов и которого нет в списке ниже, " +"то пошлите нам об этом электронное сообщение %s." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1371,7 +1563,8 @@ msgstr "Такое имя уже используется. Попробуйте #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Имя должно состоять только из прописных букв и цифр и не иметь пробелов." +msgstr "" +"Имя должно состоять только из прописных букв и цифр и не иметь пробелов." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1897,8 +2090,14 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Номер телефона, без пробелов, с кодом зоны" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " +"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" +"\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2081,8 +2280,12 @@ msgid "Remove OpenID" msgstr "Убрать OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Удаление последнего OpenID делает авторизацию невозможной! Если Вы всё же хотите удалить этот OpenID, то сначала добавьте ещё один." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Удаление последнего OpenID делает авторизацию невозможной! Если Вы всё же " +"хотите удалить этот OpenID, то сначала добавьте ещё один." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2178,13 +2381,21 @@ msgstr "Лента поискового потока" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Поиск по содержанию записей на %%site.name%%. Между ключевыми словами ставьте пробелы. Минимальная длина слова — 3 буквы." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Поиск по содержанию записей на %%site.name%%. Между ключевыми словами " +"ставьте пробелы. Минимальная длина слова — 3 буквы." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Поиск людей на %%site.name%% по имени, месторасположению или интересам. Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Поиск людей на %%site.name%% по имени, месторасположению или интересам. " +"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2219,13 +2430,18 @@ msgstr "Посылать мне записи через Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Посылать мне записи через СМС; я понимаю, что это может привести к расходам по пересылке." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Посылать мне записи через СМС; я понимаю, что это может привести к расходам " +"по пересылке." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Посылать мне реплики через Jabber/GTalk от людей, на которых я не подписан." +msgstr "" +"Посылать мне реплики через Jabber/GTalk от людей, на которых я не подписан." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2457,13 +2673,23 @@ msgstr "Адрес удалён." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте о том, как авторизовать подписку. Ваш подписочный купон: " +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " +"о том, как авторизовать подписку. Ваш подписочный купон: " #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, чтобы полностью отказаться от подписки." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, " +"чтобы полностью отказаться от подписки." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2489,22 +2715,35 @@ msgstr "Это пользователи, записи которых вы чит #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" -msgstr "Это люди, которые уже являются пользователями, и на которых Вы подписались автоматически:" +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Это люди, которые уже являются пользователями, и на которых Вы подписались " +"автоматически:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Код подтверждения слишком старый. Попробуйте ещё раз." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Эта форма с автоматической поддержкой. Если это не так, то нажмите на кнопку подтверждения для перехода на сайт Вашего OpenID-провайдера. " +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Эта форма с автоматической поддержкой. Если это не так, то нажмите на кнопку " +"подтверждения для перехода на сайт Вашего OpenID-провайдера. " #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Вы впервые вошли под именем %s, так что нам нужно привязать ваш OpenID к вашим локальным установкам. Вы должны создать новый аккаунт или привязаться к уже имеющемуся аккаунту, если он есть. " +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Вы впервые вошли под именем %s, так что нам нужно привязать ваш OpenID к " +"вашим локальным установкам. Вы должны создать новый аккаунт или привязаться " +"к уже имеющемуся аккаунту, если он есть. " #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2553,8 +2792,13 @@ msgstr "Часовой пояс не выбран." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Чтобы подписаться, необходимо [авторизоваться](%%action.login%%) или [зарегистрировать](%%action.register%%) новый аккаунт." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Чтобы подписаться, необходимо [авторизоваться](%%action.login%%) или " +"[зарегистрировать](%%action.register%%) новый аккаунт." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2608,8 +2852,12 @@ msgid "Unknown version of OMB protocol." msgstr "Неизвестная версия OMB-протокола." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Там, где это не оговорено специально, содержимое этого сайта защищено авторскими правами и предоставляется под " +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Там, где это не оговорено специально, содержимое этого сайта защищено " +"авторскими правами и предоставляется под " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2670,8 +2918,16 @@ msgid "Upload" msgstr "Загрузить" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Загрузка нового \"аватара\" (изображения пользователя) здесь. Вы не можете редактировать картинку после загрузки, так что убедитесь, чтобы она была более-менее квадратна. Это будет также размещено под лицензией этого сайта. Используйте личные изображения, которые Вы готовы разделить с другими." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Загрузка нового \"аватара\" (изображения пользователя) здесь. Вы не можете " +"редактировать картинку после загрузки, так что убедитесь, чтобы она была " +"более-менее квадратна. Это будет также размещено под лицензией этого сайта. " +"Используйте личные изображения, которые Вы готовы разделить с другими." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2679,7 +2935,8 @@ msgstr "Загрузить новое профильное изображени #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." +msgid "" +"Use this form to invite your friends and colleagues to use this service." msgstr "В этой форме ты можешь пригласить друзей и коллег на этот сервис." #: ../actions/register.php:159 ../actions/register.php:162 @@ -2773,8 +3030,12 @@ msgid "You already have this OpenID!" msgstr "У Вас уже есть такой OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Вы окончательно удаляете запись. После того, как это будет сделано, восстановление будет невозможно." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Вы окончательно удаляете запись. После того, как это будет сделано, " +"восстановление будет невозможно." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2797,28 +3058,41 @@ msgstr "Вы можете поменять Ваш пароль здесь. Вы #: ../actions/register.php:135 actions/register.php:145 msgid "You can create a new account to start posting notices." -msgstr "Вы можете создать новый аккаунт, чтобы начать писать записи в вашем микроблоге." +msgstr "" +"Вы можете создать новый аккаунт, чтобы начать писать записи в вашем " +"микроблоге." #: ../actions/smssettings.php:28 actions/smssettings.php:28 #: actions/smssettings.php:69 #, php-format msgid "You can receive SMS messages through email from %%site.name%%." -msgstr "Вы можете отправлять СМС-сообщения по электронному адресу от %%site.name%%." +msgstr "" +"Вы можете отправлять СМС-сообщения по электронному адресу от %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Вы можете удалить OpenID из своего аккаунта, нажав на кнопку \"Убрать\". " +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Вы можете удалить OpenID из своего аккаунта, нажав на кнопку \"Убрать\". " #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер](%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" +"(%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Вы можете обновить ваш профиль ниже, так что люди узнают о вас немного больше." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Вы можете обновить ваш профиль ниже, так что люди узнают о вас немного " +"больше." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2833,7 +3107,9 @@ msgstr "Вы можете использовать локальную подпи #: actions/finishopenidlogin.php:43 actions/register.php:149 #: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." -msgstr "Вы не можете зарегистрироваться, если Вы не подтверждаете лицензионного соглашения." +msgstr "" +"Вы не можете зарегистрироваться, если Вы не подтверждаете лицензионного " +"соглашения." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 #: actions/updateprofile.php:67 actions/updateprofile.php:69 @@ -2842,8 +3118,24 @@ msgstr "Вы не посылали нам этот профиль." #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "У Вас новый адрес постинга на %1$s.\n\nПосылайте электронные письма на %2$s для постинга новых записей.\n\nИнструкции по электронным публикациям записей на %3$s.\n\nИскренне Ваш,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"У Вас новый адрес постинга на %1$s.\n" +"\n" +"Посылайте электронные письма на %2$s для постинга новых записей.\n" +"\n" +"Инструкции по электронным публикациям записей на %3$s.\n" +"\n" +"Искренне Ваш,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2855,12 +3147,18 @@ msgstr "Вы не можете удалять статус других поль #: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" -msgstr "Вы должны авторизоваться, чтобы приглашать других пользователей следовать за %s" +msgstr "" +"Вы должны авторизоваться, чтобы приглашать других пользователей следовать за " +"%s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Мы сообщим Вам, если приглашения будут приняты и вновь приглашенные зарегистрируются на сайте. Спасибо за помощь в росте нашего сообщества!" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Мы сообщим Вам, если приглашения будут приняты и вновь приглашенные " +"зарегистрируются на сайте. Спасибо за помощь в росте нашего сообщества!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2878,8 +3176,13 @@ msgstr "Ваше имя на этом сервере или электронны #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) позволяет вам авторизоваться на многих сайтах при помощи только лишь одного аккаунта. Управляйте вашим ассоциированным аккаунтом OpenIDs отсюда." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) позволяет вам авторизоваться на многих сайтах при " +"помощи только лишь одного аккаунта. Управляйте вашим ассоциированным " +"аккаунтом OpenIDs отсюда." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3020,12 +3323,16 @@ msgstr "Пометить" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою запись в число любимых." +msgstr "" +"Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " +"запись в число любимых." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." -msgstr "Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне приватное сообщение." +msgstr "" +"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " +"приватное сообщение." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 #: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 @@ -3071,12 +3378,17 @@ msgstr "Входящие для %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Это Ваши входящие сообщения, где перечислены входящие приватные сообщения." +msgstr "" +"Это Ваши входящие сообщения, где перечислены входящие приватные сообщения." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s приглашает вас присоединиться к %2$s (%3$s).\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s приглашает вас присоединиться к %2$s (%3$s).\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3118,7 +3430,8 @@ msgstr "Вы не можете послать сообщение этому по #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Не посылайте сообщения сами себе; просто потихоньку скажите это себе." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3147,7 +3460,8 @@ msgstr "Если вы хотите добавить OpenID к вашему ак #: actions/openidsettings.php:74 msgid "Removing your only OpenID would make it impossible to log in! " -msgstr "Удаление единственного из оставшихся OpenID сделает невозможной авторизацию!" +msgstr "" +"Удаление единственного из оставшихся OpenID сделает невозможной авторизацию!" #: actions/openidsettings.php:87 actions/openidsettings.php:143 msgid "You can remove an OpenID from your account " @@ -3165,12 +3479,16 @@ msgstr "Исходящие для %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Это ящик Ваших исходящих писем, здесь приватные сообщения, которые отосланы Вами." +msgstr "" +"Это ящик Ваших исходящих писем, здесь приватные сообщения, которые отосланы " +"Вами." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "поиск людей на %%site.name%% по их имени, месту жительства или интересам." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" +"поиск людей на %%site.name%% по их имени, месту жительства или интересам." #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3221,8 +3539,11 @@ msgstr "Пароль должен быть длиной не менее 6 сим #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Поздравляем, %s! И добро пожаловать на %%%%site.name%%%%. Здесь Вы можете ..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Поздравляем, %s! И добро пожаловать на %%%%site.name%%%%. Здесь Вы можете ..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3318,7 +3639,9 @@ msgstr "Получатель не найден." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Не удаётся посылать прямые сообщения пользователям, которые не являются Вашими друзьями." +msgstr "" +"Не удаётся посылать прямые сообщения пользователям, которые не являются " +"Вашими друзьями." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3345,12 +3668,19 @@ msgstr "%s добавил вашу запись в состав своих лю #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "%1$s добавил вашу запись от %2$s в состав своих любимых.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"%1$s добавил вашу запись от %2$s в состав своих любимых.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей на Твиттер," +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " +"на Твиттер," #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3397,8 +3727,12 @@ msgstr "Подписаться на моих Твиттер-друзей зде #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "Имя пользователя должно состоят только из цифр, прописных или строчных букв и символа подчеркивания (_). Всего не более 15 символов." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"Имя пользователя должно состоят только из цифр, прописных или строчных букв " +"и символа подчеркивания (_). Всего не более 15 символов." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3613,8 +3947,12 @@ msgstr "Пользователь без соответствующего про #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "You have a new posting address on %1$s.\n\n" -msgstr "У Вас новый адрес постинга на %1$s.\n\n" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" +"У Вас новый адрес постинга на %1$s.\n" +"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3623,8 +3961,12 @@ msgstr "Новое приватное сообщение от %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "%1$s (%2$s) послал Вам приватное сообщение:\n\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"%1$s (%2$s) послал Вам приватное сообщение:\n" +"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." @@ -3802,7 +4144,9 @@ msgstr "Адрес %s был успешно подтверждён для ваш #: actions/deletenotice.php:73 msgid "You are about to permanently delete a notice. " -msgstr "Вы окончательно удаляете запись. После того, как это будет сделано, восстановление будет невозможно." +msgstr "" +"Вы окончательно удаляете запись. После того, как это будет сделано, " +"восстановление будет невозможно." #: actions/disfavor.php:94 msgid "Add to favorites" @@ -3863,7 +4207,9 @@ msgstr "Заполните информацию о группе в следую #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 msgid "Nickname must have only lowercase letters " -msgstr "Имя должно состоять только из прописных латинских букв и цифр и не иметь пробелов" +msgstr "" +"Имя должно состоять только из прописных латинских букв и цифр и не иметь " +"пробелов" #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -3889,12 +4235,15 @@ msgstr "Новый электронный адрес для постинга %s" #: actions/emailsettings.php:157 msgid "Send me email when someone " -msgstr "Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою запись в число любимых." +msgstr "" +"Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою " +"запись в число любимых." #: actions/emailsettings.php:168 actions/emailsettings.php:173 #: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." -msgstr "Разрешить друзьям \"подталкивать\" меня и посылать мне электронные сообщения." +msgstr "" +"Разрешить друзьям \"подталкивать\" меня и посылать мне электронные сообщения." #: actions/emailsettings.php:321 msgid "That email address already belongs " @@ -3902,7 +4251,9 @@ msgstr "Этот электронный адрес уже используетс #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "Код подтверждения выслан на ваш электронный адрес, который Вы добавили. Проверьте входящие (а так же папку для спама)." +msgstr "" +"Код подтверждения выслан на ваш электронный адрес, который Вы добавили. " +"Проверьте входящие (а так же папку для спама)." #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" @@ -3911,7 +4262,9 @@ msgstr "Ошибка сервера - невозможно достать пол #: actions/facebookhome.php:196 #, php-format msgid "If you would like the %s app to automatically update " -msgstr "Если вы хотите чтобы приложение %s автоматически обновляло ваш Facebook статус вашими последними записями, вы должны дать своё разрешение на это." +msgstr "" +"Если вы хотите чтобы приложение %s автоматически обновляло ваш Facebook " +"статус вашими последними записями, вы должны дать своё разрешение на это." #: actions/facebookhome.php:213 actions/facebooksettings.php:137 #, php-format @@ -3996,7 +4349,8 @@ msgstr "Настройки синхронизации сохранены." #: actions/facebooksettings.php:90 msgid "Automatically update my Facebook status with my notices." -msgstr "Автоматически обновлять мой Facebook статус моими записями с %%site.name%%." +msgstr "" +"Автоматически обновлять мой Facebook статус моими записями с %%site.name%%." #: actions/facebooksettings.php:97 msgid "Send \"@\" replies to Facebook." @@ -4013,7 +4367,9 @@ msgstr "Присоеденять префикс к записям" #: actions/facebooksettings.php:124 #, php-format msgid "If you would like %s to automatically update " -msgstr "Если вы хотите чтобы приложение %s автоматически обновляло ваш Facebook статус вашими последними записями, вы должны дать своё разрешение на это." +msgstr "" +"Если вы хотите чтобы приложение %s автоматически обновляло ваш Facebook " +"статус вашими последними записями, вы должны дать своё разрешение на это." #: actions/facebooksettings.php:147 msgid "Sync preferences" @@ -4111,7 +4467,11 @@ msgstr "Группы, страница %d" #: actions/groups.php:90 #, php-format msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "%%%%site.name%%%% группы помогут вам найти и общаться с людьми по интересам. Подробнее о группах [читайте тут](%%doc.groups%%). Попробуйте [поискать существующие группы](%%%%action.groupsearch%%%%) или [создайте новую группу](%%%%action.newgroup%%%%)." +msgstr "" +"%%%%site.name%%%% группы помогут вам найти и общаться с людьми по интересам. " +"Подробнее о группах [читайте тут](%%doc.groups%%). Попробуйте [поискать " +"существующие группы](%%%%action.groupsearch%%%%) или [создайте новую группу]" +"(%%%%action.newgroup%%%%)." #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 @@ -4120,8 +4480,10 @@ msgstr "Создать новую группу" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Поиск группы на %%site.name%% по названию, месторасположению или описанию." +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Поиск группы на %%site.name%% по названию, месторасположению или описанию." #: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" @@ -4129,7 +4491,9 @@ msgstr "Поиск группы" #: actions/imsettings.php:70 msgid "You can send and receive notices through " -msgstr "Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер](%%doc.im%%). Настройте ваш IM аккаунт и предпочтения ниже." +msgstr "" +"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]" +"(%%doc.im%%). Настройте ваш IM аккаунт и предпочтения ниже." #: actions/imsettings.php:120 #, php-format @@ -4250,8 +4614,11 @@ msgid "Ajax Error" msgstr "Ошибка AJAX" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Этот пользователь не разрешает \"подталкивать\" его, или ещё не подтверждён или ещё не представил свой электронный адрес." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Этот пользователь не разрешает \"подталкивать\" его, или ещё не подтверждён " +"или ещё не представил свой электронный адрес." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4325,8 +4692,11 @@ msgstr "Информация профиля" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или пробелом" +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или " +"пробелом" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4357,8 +4727,12 @@ msgstr "Не удаётся вернуть публичный поток." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг)" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" +"Микроблоггинг)" #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4381,7 +4755,9 @@ msgstr "Простите, регистрация только по пригла #: actions/register.php:149 msgid "You can't register if you don't " -msgstr "Вы не можете зарегистрироваться, если вы не согласны лицензионным соглашением." +msgstr "" +"Вы не можете зарегистрироваться, если вы не согласны лицензионным " +"соглашением." #: actions/register.php:286 msgid "With this form you can create " @@ -4389,11 +4765,14 @@ msgstr "При помощи этой формы вы можете создать #: actions/register.php:368 msgid "1-64 lowercase letters or numbers, " -msgstr "Разрешено от 1 до 64 латинских строчных букв или цифр, без пробелов и знаков пунктуации." +msgstr "" +"Разрешено от 1 до 64 латинских строчных букв или цифр, без пробелов и знаков " +"пунктуации." #: actions/register.php:382 actions/register.php:386 msgid "Used only for updates, announcements, " -msgstr "Используется только для обновлений, осведомлений и восстановления пароля." +msgstr "" +"Используется только для обновлений, осведомлений и восстановления пароля." #: actions/register.php:398 msgid "URL of your homepage, blog, " @@ -4409,7 +4788,9 @@ msgstr "Где вы находитесь, например «Город, обл #: actions/register.php:432 msgid " except this private data: password, " -msgstr ", за исключением моей приватной информации: пароля, почты, мессенджера, телефона." +msgstr "" +", за исключением моей приватной информации: пароля, почты, мессенджера, " +"телефона." #: actions/register.php:471 #, php-format @@ -4418,7 +4799,9 @@ msgstr "Наши поздравления, %s! И добро пожаловат #: actions/register.php:495 msgid "(You should receive a message by email " -msgstr "(Вам сразу же послано сообщение по электронной почте, с инструкциями по тому, как подтвердить свой электронный адрес.)" +msgstr "" +"(Вам сразу же послано сообщение по электронной почте, с инструкциями по " +"тому, как подтвердить свой электронный адрес.)" #: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 msgid "That's a local profile! Login to subscribe." @@ -4505,8 +4888,12 @@ msgstr "Все участники" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** - это группа пользователей на сайте %%%%site.name%%%%, для [микроблогинга](http://en.wikipedia.org/wiki/Micro-blogging)" +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** - это группа пользователей на сайте %%%%site.name%%%%, для " +"[микроблогинга](http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4558,8 +4945,12 @@ msgstr "Все группы" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** зарегистрирован на %%%%site.name%%%%, сервисе для [микроблогинга](http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** зарегистрирован на %%%%site.name%%%%, сервисе для [микроблогинга]" +"(http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4567,7 +4958,9 @@ msgstr "Номер телефона, без пробелов, с кодом зо #: actions/smssettings.php:162 msgid "Send me notices through SMS; " -msgstr "Посылать мне записи через СМС; я понимаю, что это может привести к расходам по пересылке." +msgstr "" +"Посылать мне записи через СМС; я понимаю, что это может привести к расходам " +"по пересылке." #: actions/smssettings.php:335 msgid "A confirmation code was sent to the phone number you added. " @@ -4664,16 +5057,23 @@ msgid "Tag user" msgstr "Тэги для пользователя" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Теги для этого пользователя (буквы, цифры, -, ., и _), разделённые запятой или пробелом" +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Теги для этого пользователя (буквы, цифры, -, ., и _), разделённые запятой " +"или пробелом" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Вы можете помечать тегами только пользователей, на которых подписаны или которые подписаны на Вас." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Вы можете помечать тегами только пользователей, на которых подписаны или " +"которые подписаны на Вас." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4681,7 +5081,8 @@ msgstr "Не удаётся сохранить теги." #: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." -msgstr "Используйте эту форму для добавления тегов Вашим подписчикам или подписантам." +msgstr "" +"Используйте эту форму для добавления тегов Вашим подписчикам или подписантам." #: actions/tagrss.php:35 msgid "No such tag." @@ -4709,7 +5110,9 @@ msgstr "Не найдено." #: actions/twittersettings.php:71 msgid "Add your Twitter account to automatically send " -msgstr "Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей на Твиттер, и подпишитесь на друзей с Твиттера, которые уже здесь." +msgstr "" +"Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " +"на Твиттер, и подпишитесь на друзей с Твиттера, которые уже здесь." #: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" @@ -4726,7 +5129,9 @@ msgstr "Твиттер-друзья" #: actions/twittersettings.php:327 msgid "Username must have only numbers, " -msgstr "Имя пользователя должно состоят только из цифр, прописных или строчных букв и символа подчеркивания (_). Всего не более 15 символов." +msgstr "" +"Имя пользователя должно состоят только из цифр, прописных или строчных букв " +"и символа подчеркивания (_). Всего не более 15 символов." #: actions/twittersettings.php:341 #, php-format @@ -4767,8 +5172,11 @@ msgstr "Проблема при сохранении записи. Неизве #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Слишком много записей за столь короткий срок; передохните немного и попробуйте вновь через пару минут." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Слишком много записей за столь короткий срок; передохните немного и " +"попробуйте вновь через пару минут." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -4947,7 +5355,8 @@ msgstr "Опиши группу при помощи 140 символов" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Где находится группа, например «Город, область, страна»" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5011,8 +5420,12 @@ msgstr "Войти или зарегистрироваться с OpenID" #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Привет, %s.\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Привет, %s.\n" +"\n" #: lib/mail.php:236 #, php-format @@ -5031,8 +5444,12 @@ msgstr "Домашняя страница: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "Био: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Био: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5042,7 +5459,9 @@ msgstr "Вас \"подтолкнул\" пользователь %s" #: lib/mail.php:465 #, php-format msgid "%1$s (%2$s) is wondering what you are up to " -msgstr "%1$s (%2$s) интересуется чем Вы занимались последнее время и предлагает Вам запостить парочку новостей." +msgstr "" +"%1$s (%2$s) интересуется чем Вы занимались последнее время и предлагает Вам " +"запостить парочку новостей." #: lib/mail.php:555 #, php-format @@ -5210,7 +5629,7 @@ msgid "Feed for friends of %s (RSS 2.0)" msgstr "Лента друзей %s (RSS 2.0)" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Лента друзей %s" @@ -5220,7 +5639,7 @@ msgid "You and friends" msgstr "%s и друзья" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Тут вы можете загрузить свой аватар." @@ -5229,10 +5648,21 @@ msgstr "Тут вы можете загрузить свой аватар." msgid "Avatar deleted." msgstr "Аватар обновлён." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Вы окончательно удаляете запись. После того, как это будет сделано, восстановление будет невозможно." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Вы окончательно удаляете запись. После того, как это будет сделано, " +"восстановление будет невозможно." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -5242,11 +5672,33 @@ msgstr "Проблема с Вашей сессией. Попробуйте ещ #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." -msgstr "Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне приватное сообщение." +msgstr "" +"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне " +"приватное сообщение." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format, fuzzy -msgid "You can upload a logo image for your group. The maximum file size is %s." +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "Тут вы можете загрузить логотип для группы." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5255,24 +5707,47 @@ msgid "Pick a square area of the image to be the logo." msgstr "Подберите нужный квадратный ракурс дла вашего аватара" #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Микроблог от %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Поиск людей на %%site.name%% по имени, месторасположению или интересам. Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Поиск людей на %%site.name%% по имени, месторасположению или интересам. " +"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" #: actions/newmessage.php:102 #, fuzzy msgid "Only logged-in users can send direct messages." msgstr "Ошибка при отправке прямого сообщения." +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%s\" on %s" +msgstr "" + #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем изменять Ваши установки." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем " +"изменять Ваши установки." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5291,18 +5766,42 @@ msgstr "Лента публичного потока" #: actions/public.php:210 actions/public.php:241 actions/public.php:233 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%action.register%%) to share notices about yourself with friends, family, and colleagues! ([Read more](%%doc.help%%))" -msgstr "%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с использованием свободного программного обеспечения [StatusNet](http://status.net/). [Стань участником](%%action.register%%), чтобы держать в курсе своих событий поклонников, друзей, родственников и коллег! ([Читать далее](%%doc.help%%))" +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" +"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" +"Микроблоггинг), созданный с использованием свободного программного " +"обеспечения [StatusNet](http://status.net/). [Стань участником](%%action." +"register%%), чтобы держать в курсе своих событий поклонников, друзей, " +"родственников и коллег! ([Читать далее](%%doc.help%%))" #: actions/register.php:286 actions/register.php:329 #, php-format -msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%action.openidlogin%%)!)" -msgstr "При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать короткие сообщения и устанавливать связи с друзьями и коллегами (Есть [OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%action.openidlogin%%)!)" +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" +"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " +"короткие сообщения и устанавливать связи с друзьями и коллегами (Есть " +"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" +"action.openidlogin%%)!)" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr ", за исключением моей приватной информации: пароля, почты, мессенджера, телефона." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +", за исключением моей приватной информации: пароля, почты, мессенджера, " +"телефона." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5313,8 +5812,19 @@ msgstr "Создать" #: actions/showgroup.php:393 actions/showgroup.php:440 #: actions/showgroup.php:448 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. [Join now](%%%%action.register%%%%) to become part of this group and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с использованием свободного программного обеспечения [StatusNet](http://status.net/). Участники обмениваются короткими сообщениями о своих новостях. [Зарегистрируйся](%%%%action.register%%%%), чтобы стать участником группы и получить множество других возможностей! ([Читать далее](%%%%doc.help%%%%))" +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). Участники обмениваются короткими сообщениями о своих новостях. " +"[Зарегистрируйся](%%%%action.register%%%%), чтобы стать участником группы и " +"получить множество других возможностей! ([Читать далее](%%%%doc.help%%%%))" #: actions/showstream.php:147 #, fuzzy @@ -5322,27 +5832,27 @@ msgid "Your profile" msgstr "Профиль группы" #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "Профиль" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Лента записей для %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Лента записей для %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Лента записей для %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Исходящие для %s" @@ -5358,16 +5868,54 @@ msgstr "Аватар" msgid "Edit profile settings" msgstr "Настройки профиля" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + #: actions/showstream.php:542 actions/showstream.php:388 #: actions/showstream.php:487 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -msgstr "**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с использованием свободного программного обеспечения [StatusNet](http://status.net/). [Зарегистрируйся](%%%%action.register%%%%), чтобы всегда получать сообщения участника **%s** и иметь доступ ко множеству других возможностей! ([Читать далее](%%%%doc.help%%%%))" +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" +"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). [Зарегистрируйся](%%%%action.register%%%%), чтобы всегда получать " +"сообщения участника **%s** и иметь доступ ко множеству других возможностей! " +"([Читать далее](%%%%doc.help%%%%))" #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "Код подтверждения выслан на мобильный номер, который вы добавили. Посмотрите Ваши входящие сообщения (и папку для спама тоже!) для нахождения этого кода и инструкций по его использованию." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Код подтверждения выслан на мобильный номер, который вы добавили. " +"Посмотрите Ваши входящие сообщения (и папку для спама тоже!) для нахождения " +"этого кода и инструкций по его использованию." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5384,18 +5932,28 @@ msgstr "Нет такого пользователя" #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей на Твиттер," +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Добавьте ваш аккаунт на Твиттере для автоматической отправки ваших записей " +"на Твиттер," #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Не удаётся подтвердить данные по аккаунту \"%s\" из Твитера." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " +"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" +"\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5404,8 +5962,12 @@ msgstr "Искать людей или текст" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "Слишком много записей за столь короткий срок; передохните немного и попробуйте вновь через пару минут." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Слишком много записей за столь короткий срок; передохните немного и " +"попробуйте вновь через пару минут." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5417,20 +5979,212 @@ msgstr "Соединиться с IM, SMS, Twitter" msgid "Badge" msgstr "\"Подтолкнуть\"" +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/dberroraction.php:60 msgid "Database error" msgstr "Ошибка базы данных" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "Вы должны авторизоваться чтобы использовать %s приложение" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Поиск" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5447,12 +6201,12 @@ msgid "Block this user from this group" msgstr "Список пользователей, являющихся членами этой группы." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Профиль пользователя" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s и друзья, страница %d" @@ -5476,26 +6230,56 @@ msgstr "Код подтверждения" msgid "Do not delete this notice" msgstr "Не удаётся удалить эту запись." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Неверный тег: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Не удаётся создать любимую запись." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5506,6 +6290,14 @@ msgstr "Новая запись" msgid "No notice" msgstr "Новая запись" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5517,6 +6309,10 @@ msgstr "Неверное имя." msgid "No group specified." msgstr "Профиль не определен." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5533,6 +6329,18 @@ msgstr "Вы не являетесь членом этой группы." msgid "Block user from group" msgstr "Заблокировать пользователя." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5543,6 +6351,12 @@ msgstr "Вы должны авторизоваться, чтобы создат msgid "Group design" msgstr "Группы" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5575,46 +6389,234 @@ msgstr "Вы должны быть администратором, чтобы и msgid "Make Admin" msgstr "Настройки" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Нет результатов." +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Пользователь заблокировал Вас." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Сообщение" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Не удаётся сохранить профиль." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) позволяет вам авторизоваться на многих сайтах при помощи только лишь одного аккаунта. Управляйте вашим ассоциированным аккаунтом OpenIDs отсюда." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) позволяет вам авторизоваться на многих сайтах при " +"помощи только лишь одного аккаунта. Управляйте вашим ассоциированным " +"аккаунтом OpenIDs отсюда." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Настройки профиля" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданный с использованием свободного программного обеспечения [StatusNet](http://status.net/)." +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"%%site.name%% - это сайт для [микроблогинга](http://ru.wikipedia.org/wiki/" +"Микроблоггинг), созданный с использованием свободного программного " +"обеспечения [StatusNet](http://status.net/)." + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Если вы забыли или потеряли пароль, то вы можете получить новый, послав запрос на тот электронный адрес, который вы указали в вашем аккаунте." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Если вы забыли или потеряли пароль, то вы можете получить новый, послав " +"запрос на тот электронный адрес, который вы указали в вашем аккаунте." #: actions/recoverpassword.php:158 #, fuzzy @@ -5636,30 +6638,89 @@ msgstr "Ошибка, связанная с кодом подтверждени msgid "Subscribe to a remote user" msgstr "Подписаться на %s" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "Любимые записи %s, страница %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Лента записей от группы %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Лента записей от группы %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Лента записей от группы %s" #: actions/showgroup.php:446 actions/showgroup.php:454 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг) , созданный с использованием свободного программного обеспечения [StatusNet](http://status.net/). Участники обмениваются короткими сообщениями о своих новостях. " +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** - это группа на сайте %%%%site.name%%%%, предоставляющем сервис " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг) , созданный с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/). Участники обмениваются короткими сообщениями о своих новостях. " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -5672,33 +6733,86 @@ msgid "Not a local notice" msgstr "Не локальный пользователь." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Записи, помеченные %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Лента записей от группы %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для [микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с использованием свободного программного обеспечения [StatusNet](http://status.net/)." +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** является зарегистрированным участником %%%%site.name%%%% - сайта для " +"[микроблогинга](http://ru.wikipedia.org/wiki/Микроблоггинг), созданного с " +"использованием свободного программного обеспечения [StatusNet](http://status." +"net/)." + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s теперь просматривает твои записи на %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Лента записей для %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Лента записей для %s" @@ -5728,12 +6842,21 @@ msgstr "Нет адресата." msgid "Could not find target user." msgstr "Нет статусов." +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5749,41 +6872,127 @@ msgstr "Подписки %s" msgid "Profile design" msgstr "Настройки профиля" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Вы не являетесь членом этой группы." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблемы с сохранением записи." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Сообщение для %1$s на %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Профиль пользователя" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Профиль" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Загрузить" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Изменить Ваш пароль" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5799,21 +7008,127 @@ msgstr "Поиск" msgid "Links" msgstr "Список" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Блокировать" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Заблокировать пользователя." #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "Добавить или изменить логотип группы %s" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5829,11 +7144,26 @@ msgstr "Пользователь" msgid "Search help" msgstr "Поиск" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "URL Главной страницы неверен." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5841,22 +7171,28 @@ msgid "No such page" msgstr "Нет такого тега." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Прямые сообщения для %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Слишком длинно. Максимальная длина сообщения - 140 знаков." #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." -msgstr "Не удаётся следовать пользователю, т.к. такого пользователя не существует." +msgstr "" +"Не удаётся следовать за пользователем, т. к. такого пользователя не " +"существует." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Слишком длинное описание (максимум 140 символов)" @@ -5866,7 +7202,7 @@ msgid "You are already a member of that group." msgstr "Вы уже являетесь членом этой группы" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Не удаётся присоеденить пользователя %s к группе %s" @@ -5876,22 +7212,22 @@ msgid "You are not a member of this group." msgstr "Вы не являетесь членом этой группы." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Не удаётся удалить пользователя %s из группы %s" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "Группы %s" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "Группы, в которых состоит %s" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Действия группы" @@ -5900,12 +7236,21 @@ msgstr "Действия группы" msgid "Status deleted." msgstr "Аватар обновлён." +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Слишком длинная запись. Максимальная длина - 140 знаков." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -5917,12 +7262,12 @@ msgid "Post to " msgstr "Фото" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Слишком длинное описание (максимум 140 символов)" #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" @@ -5957,7 +7302,7 @@ msgid "Cannot read file." msgstr "Потерян файл." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Обновлено от %1$s на %2$s!" @@ -5967,17 +7312,41 @@ msgid "IM is not available." msgstr "Страница недоступна для того типа, который Вы задействовали." #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action.register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID](%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Вход с вашим ником и паролем. Нет аккаунта? [Зарегистрируйте](%%action." +"register%%) новый аккаунт, или попробуйте авторизоваться при помощи [OpenID]" +"(%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Обновлено от %1$s на %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" -msgstr "Все обновления соответствующие поисковому термину \"%s\"" +msgstr "Все обновления, соответствующие поисковому запросу «%s»" + +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Соединить" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Опиши себя и свои увлечения при помощи 140 символов" @@ -5987,18 +7356,25 @@ msgid "Describe yourself and your interests" msgstr "Опиши себя и свои интересы при помощи 140 символов." #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Слишком длинное био (максимум 140 символов)." #: actions/register.php:336 #, fuzzy -msgid "With this form you can create a new account. You can then post notices and link up to friends and colleagues. " -msgstr "При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать короткие сообщения и устанавливать связи с друзьями и коллегами." +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" +"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать " +"короткие сообщения и устанавливать связи с друзьями и коллегами (Есть " +"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%" +"action.openidlogin%%)!)" #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Неверный URL профиля (не YADIS-документ)." #: actions/remotesubscribe.php:176 @@ -6012,42 +7388,50 @@ msgid "Couldn’t get a request token." msgstr "Не удаётся получить запрос." #: actions/replies.php:144 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (RSS 1.0)" msgstr "Лента записей для %s" #: actions/replies.php:151 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (RSS 2.0)" msgstr "Лента записей для %s" #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Лента записей для %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Сообщение для %1$s на %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Лента друзей %s" +msgstr "Лента друзей %s (RSS 1.0)" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Лента друзей %s" +msgstr "Лента друзей %s (RSS 2.0)" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "Лента друзей %s" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" msgstr "Исходящие для %s" @@ -6062,32 +7446,78 @@ msgid "SMS is not available." msgstr "Страница недоступна для того типа, который Вы задействовали." #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Лента записей для %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Пожалуйста, отметьте эти подробности, чтобы быть уверенным, что вы хотите " +"подписаться на эти записи. Если Вы этого не хотите делать, то нажмите \"Отказ" +"\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте о том, как авторизовать подписку. Ваш подписочный купон: " +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " +"о том, как авторизовать подписку. Ваш подписочный купон: " #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, чтобы полностью отказаться от подписки." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Подписка отвергнута, но нет обратного URL. Проверьте инструкции на сайте, " +"чтобы полностью отказаться от подписки." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." -msgstr "Не удается прочитать URL аватары из '%s'" +msgstr "Не удаётся прочитать URL аватары «%s»" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Неверный тип изображения для '%s'" @@ -6102,27 +7532,35 @@ msgid "Site content license" msgstr "StatusNet лицензия" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Не удаётся одновить пользователя с подтверждённым электронным адресом." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "\"Подталкивание\" послано" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Сообщение слишком длинное - не больше 140 символов, Вы посылаете %d" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Ответить на эту запись" @@ -6131,11 +7569,54 @@ msgstr "Ответить на эту запись" msgid "Error saving notice." msgstr "Проблемы с сохранением записи." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Нет кода подтверждения." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6152,24 +7633,69 @@ msgid "Describe the group or topic" msgstr "Опиши группу при помощи 140 символов" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Опиши группу при помощи 140 символов" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" msgstr "Новая запись" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s добавил вашу запись в состав своих любимых" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" -msgstr " из" +msgstr "от " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy @@ -6180,4 +7706,3 @@ msgstr "Не удаётся вернуть публичный поток." #, fuzzy msgid "Duplicate notice" msgstr "Удалить запись" - diff --git a/locale/sv/LC_MESSAGES/statusnet.mo b/locale/sv/LC_MESSAGES/statusnet.mo index 91697c3d93eee519ae70df3d9b0377baa86e0349..2b81e4b3df798428da271e8126ea54c4f85ca185 100644 GIT binary patch delta 20218 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 gjB8j5HGrz9DQkt= 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 W;LEb0Z)0D4>fK*PH5|dny#E2TbV0BH diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 0e16dfd2c9..d30753a0fd 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -2,20 +2,16 @@ # # Author@translatewiki.net: Micke # -- -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:24:30+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:44:33+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: out-statusnet\n" @@ -29,8 +25,11 @@ msgstr "Sök i strömmen efter \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "förutom det här, som är privat: lösenord, epostadress, IM-adress, telefonnummer." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"förutom det här, som är privat: lösenord, epostadress, IM-adress, " +"telefonnummer." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -52,8 +51,57 @@ msgstr "%1$s har bjudit in dig till %2$s" #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s har bjudit in dig till %2$s (%3$s).\n\n%2$s är en mikroblogg service som låter dig via sidan hålla direktkontakt med människor du känner eller intresserar dig.\n\nDu kan även dela med dig utav nyheter om dig själv, dina tankar, eller ditt liv online som känner igen dig. Det är också perfekt för att möta nya personer som delar ditt intresse.\n\n%1$s sa:\n\n%4$s\n\nDu kan se %1$s's profilsida på %2$s här:\n\n%5$s\n\nOm du vill prova på denna service, klicka på länken nedan för att acceptera denna inbjudan.\n\n%6$s\n\nOm inte, då kan du ignorera detta meddelande. Tack för att du tog dig\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s har bjudit in dig till %2$s (%3$s).\n" +"\n" +"%2$s är en mikroblogg service som låter dig via sidan hålla direktkontakt " +"med människor du känner eller intresserar dig.\n" +"\n" +"Du kan även dela med dig utav nyheter om dig själv, dina tankar, eller ditt " +"liv online som känner igen dig. Det är också perfekt för att möta nya " +"personer som delar ditt intresse.\n" +"\n" +"%1$s sa:\n" +"\n" +"%4$s\n" +"\n" +"Du kan se %1$s's profilsida på %2$s här:\n" +"\n" +"%5$s\n" +"\n" +"Om du vill prova på denna service, klicka på länken nedan för att acceptera " +"denna inbjudan.\n" +"\n" +"%6$s\n" +"\n" +"Om inte, då kan du ignorera detta meddelande. Tack för att du tog dig\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -63,8 +111,18 @@ msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s lyssnar nu på dina meddelanden i %1$s.\n\n Hälsningar,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s lyssnar nu på dina meddelanden i %1$s.\n" +"\n" +"\tHälsningar,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -140,14 +198,22 @@ msgstr "%s uppdateringar ifrån allihop!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Du kommer få ett meddelande med email inom kort med instruktioner hur du bekräftar din emailadress)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Du kommer få ett meddelande med email inom kort med instruktioner hur du " +"bekräftar din emailadress)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** är en mikroblogg service för dig ifrån [%%site.broughtby%%](%%site.broughtbyurl%%)" +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** är en mikroblogg service för dig ifrån [%%site.broughtby%%]" +"(%%site.broughtbyurl%%)" #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -170,7 +236,9 @@ msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag. Måste fyllas i." +msgstr "" +"1-64 små bokstäver eller nummer, inga punkter eller mellanslag. Måste fyllas " +"i." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -191,17 +259,31 @@ msgstr "6 eller fler tecken. Måste fyllas i." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "En bekräftelsekod har skickats till den IM-adress som du angav. Du måste godkänna att %s får skicka meddelanden till dig." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"En bekräftelsekod har skickats till den IM-adress som du angav. Du måste " +"godkänna att %s får skicka meddelanden till dig." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "En bekräftelsekod har skickats ut till email adressen du fyllde i. Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du använder den." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"En bekräftelsekod har skickats ut till email adressen du fyllde i. " +"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " +"använder den." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "En bekräftelsekod har skickats ut till telefonnumret du fyllde i. Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du använder den." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"En bekräftelsekod har skickats ut till telefonnumret du fyllde i. " +"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " +"använder den." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -381,8 +463,11 @@ msgstr "Logga in automatiskt i framtiden; Ej för publika datorer!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Automatisk prenummeration på den som prenumererar på mig. (Bäst för icke mänsklig användare) " +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Automatisk prenummeration på den som prenumererar på mig. (Bäst för icke " +"mänsklig användare) " #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -401,13 +486,21 @@ msgstr "Användarbilden uppdaterad." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Väntar bekräftelse på denna adress. Kontrollera ditt Jabber/GTalk konto för vidare instruktioner. (La du till %s i din vännerlista?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Väntar bekräftelse på denna adress. Kontrollera ditt Jabber/GTalk konto för " +"vidare instruktioner. (La du till %s i din vännerlista?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Väntar bekräftelse på denna adress. Kontrollera din inbox (och spamlådan!) efter meddelande om vidare instruktioner." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Väntar bekräftelse på denna adress. Kontrollera din inbox (och spamlådan!) " +"efter meddelande om vidare instruktioner." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -544,8 +637,36 @@ msgstr "Bekräftelsekoden kunde inte hittas." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Grattis, %s! Välkommen till %%%%site.name%%%%. Härifrån, kanske du vill...\n\n* Gå till [din profil](%s) och göra ditt första inlägg.\n* Lägg till en [Jabber/GTalk adress](%%%%action.imsettings%%%%) så du kan skicka inlägg med en IM klient.\n* [Sök efter personer](%%%%action.peoplesearch%%%%) som du kanske känner eller delar dina intressen. \n* Uppdatera din [profil inställning](%%%%action.profilesettings%%%%) för att berätta lite mer om dig själv för andra här. \n* Läs igenom [online dok](%%%%doc.help%%%%) efter funktioner som du kanske missat. \n\nTack för att du registrerade dig och vi hoppas du kommer trivas med denna service." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Grattis, %s! Välkommen till %%%%site.name%%%%. Härifrån, kanske du vill...\n" +"\n" +"* Gå till [din profil](%s) och göra ditt första inlägg.\n" +"* Lägg till en [Jabber/GTalk adress](%%%%action.imsettings%%%%) så du kan " +"skicka inlägg med en IM klient.\n" +"* [Sök efter personer](%%%%action.peoplesearch%%%%) som du kanske känner " +"eller delar dina intressen. \n" +"* Uppdatera din [profil inställning](%%%%action.profilesettings%%%%) för att " +"berätta lite mer om dig själv för andra här. \n" +"* Läs igenom [online dok](%%%%doc.help%%%%) efter funktioner som du kanske " +"missat. \n" +"\n" +"Tack för att du registrerade dig och vi hoppas du kommer trivas med denna " +"service." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -952,8 +1073,12 @@ msgid "Find people on this site" msgstr "Sök personer på denna sida" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan du ändrar dina inställningar." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan " +"du ändrar dina inställningar." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1038,16 +1163,28 @@ msgstr "IM inställningar" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Om du redan har ett konto, logga in med ditt användarnamn och lösenord för att koppla det till ditt OpenID" +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Om du redan har ett konto, logga in med ditt användarnamn och lösenord för " +"att koppla det till ditt OpenID" #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Om du vill lägga till OpenID till ditt konto, fyll i fältet nedan och tryck på \"Add\"" +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Om du vill lägga till OpenID till ditt konto, fyll i fältet nedan och tryck " +"på \"Add\"" #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat till den emailadress du sparat till ditt konto." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat " +"till den emailadress du sparat till ditt konto." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1077,8 +1214,12 @@ msgstr "Felaktigt användarnamn eller lösenord." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Instruktioner om hur du återställer ditt lösenord har sänts till din e-postadress " +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Instruktioner om hur du återställer ditt lösenord har sänts till din e-" +"postadress " #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1174,8 +1315,14 @@ msgstr "Bjud in nya användare" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Det drivs med [StatusNet](http://status.net/) mikroblogging software, version %s, tillgängligt under [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Det drivs med [StatusNet](http://status.net/) mikroblogging software, " +"version %s, tillgängligt under [GNU Affero General Public License](http://" +"www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1185,8 +1332,12 @@ msgstr "Jabber ID används redan utav en annan användare." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Jabber eller GTalk adress liknande \"användare@exempel.se\". Först se till att lägga till %s i din vännerlista i IM klienten eller GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber eller GTalk adress liknande \"användare@exempel.se\". Först se till " +"att lägga till %s i din vännerlista i IM klienten eller GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1253,8 +1404,14 @@ msgstr "Logga in med ett [OpenID](%%doc.openid%%) konto." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? [Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%action.openidlogin%%)." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? " +"[Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%" +"action.openidlogin%%)." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1299,8 +1456,13 @@ msgstr "Mikroblogg av %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Mobiloperatör för din telefon. Vet du nån operatör som kan taemot SMS över email som inte finns med i listan, skicka ett email till oss och tala det hit %s" +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Mobiloperatör för din telefon. Vet du nån operatör som kan taemot SMS över " +"email som inte finns med i listan, skicka ett email till oss och tala det " +"hit %s" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1396,7 +1558,8 @@ msgstr "Användarnamnet används redan, försök med ett annat." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." +msgstr "" +"Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1922,8 +2085,14 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Telefonnummer, inga punkter eller mellanslag, med landskod" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Kontrollera dessa detajer noga så att du verkligen vet att du vill prenumerera på denna användares inlägg. Om du inte frågade efter att prenumerera på någons inlägg, klicka på \"Cancel\"" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Kontrollera dessa detajer noga så att du verkligen vet att du vill " +"prenumerera på denna användares inlägg. Om du inte frågade efter att " +"prenumerera på någons inlägg, klicka på \"Cancel\"" #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 @@ -2106,8 +2275,12 @@ msgid "Remove OpenID" msgstr "Ta bort OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Tar du bort din OpenID så gör du det omöjligt att logga in! Om du behöver ta bort den, lägg till en annan OpenID först." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Tar du bort din OpenID så gör du det omöjligt att logga in! Om du behöver ta " +"bort den, lägg till en annan OpenID först." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2203,13 +2376,21 @@ msgstr "Sök strömflöde" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Sök efter innehåll i inlägg på %%site.name%%. Skilj söktermerna åt med mellanslag; dom måste vara minst tre tecken långa." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Sök efter innehåll i inlägg på %%site.name%%. Skilj söktermerna åt med " +"mellanslag; dom måste vara minst tre tecken långa." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. " +"Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2244,13 +2425,19 @@ msgstr "Skicka inlägg till mig via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Skicka inlägg till mig via SMS; Jag är införstådd att min operatör kan debitera mig." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Skicka inlägg till mig via SMS; Jag är införstådd att min operatör kan " +"debitera mig." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Skicka svar till mig via Jabber/GTalk från personer som inte jag prenumererar på." +msgstr "" +"Skicka svar till mig via Jabber/GTalk från personer som inte jag " +"prenumererar på." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2482,13 +2669,24 @@ msgstr "Adressen är borttagen." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla med sidans instruktioner hur du bekräftar en prenumeration. Din prenumerering token är:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla " +"med sidans instruktioner hur du bekräftar en prenumeration. Din " +"prenumerering token är:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med sidans instruktioner hur du avvisar en prenumeration." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med " +"sidans instruktioner hur du avvisar en prenumeration." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2514,22 +2712,35 @@ msgstr "Detta är personer och inlägg som du lyssnar på." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" -msgstr "Dom personerna är redan registrerade användare och du blev nu automatiskt prenumerant till dom:" +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Dom personerna är redan registrerade användare och du blev nu automatiskt " +"prenumerant till dom:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Denna bekräftelsekod är för gammal. Du får starta om på nytt igen." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Detta formulär skall automatiskt skicka själv. Om den inte gör det, klicka på skicka för att gå dit där du skapade ditt OpenID." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Detta formulär skall automatiskt skicka själv. Om den inte gör det, klicka " +"på skicka för att gå dit där du skapade ditt OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Detta är första gången du loggade in till %s så vi måste koppla sitt OpenID till ett lokalt konto. Du kan antingen skapa ett nytt konto eller med ett existerande konto, om du har något." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Detta är första gången du loggade in till %s så vi måste koppla sitt OpenID " +"till ett lokalt konto. Du kan antingen skapa ett nytt konto eller med ett " +"existerande konto, om du har något." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2578,8 +2789,15 @@ msgstr "Du har inte valt tidszon" #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "För att prenumerera så kan du [logga in](%%action.login%%) eller [registrera](%%action.register%%) ett nytt konto. Om du redan har ett konto på en [kompatibel mikroblogg sida](%%doc.openmublog%%) fyll i din profils URL nedan." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"För att prenumerera så kan du [logga in](%%action.login%%) eller [registrera]" +"(%%action.register%%) ett nytt konto. Om du redan har ett konto på en " +"[kompatibel mikroblogg sida](%%doc.openmublog%%) fyll i din profils URL " +"nedan." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2633,8 +2851,12 @@ msgid "Unknown version of OMB protocol." msgstr "Okänd version av OMB protokollet." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Om inget annat anges, innehåll på denna sida skyddas utav copyright ifrån användarna och tillgängliga under" +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Om inget annat anges, innehåll på denna sida skyddas utav copyright ifrån " +"användarna och tillgängliga under" #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2695,8 +2917,16 @@ msgid "Upload" msgstr "Ladda upp" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Ladda upp en ny \"avatar\" (användarbild) här. Du kan inte göra ändringar i bilden efter uppladdning, försök att se till att den är så fykantig som möjligt. Den måste följa licensvillkoren, använd en bild som du äger och som du vill dela med dig utav." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Ladda upp en ny \"avatar\" (användarbild) här. Du kan inte göra ändringar i " +"bilden efter uppladdning, försök att se till att den är så fykantig som " +"möjligt. Den måste följa licensvillkoren, använd en bild som du äger och som " +"du vill dela med dig utav." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2704,15 +2934,19 @@ msgstr "Ladda upp en ny profilbild" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Använd detta formulär för att bjuda in dina vänner och kollegor till denna sida." +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Använd detta formulär för att bjuda in dina vänner och kollegor till denna " +"sida." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "Används endast för uppdateringar, annonsering och återställning av lösenord" +msgstr "" +"Används endast för uppdateringar, annonsering och återställning av lösenord" #: ../actions/finishremotesubscribe.php:86 #: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 @@ -2798,8 +3032,12 @@ msgid "You already have this OpenID!" msgstr "Du handhar redan denna OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte ångra dig." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " +"ångra dig." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2831,19 +3069,29 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Du kan ta emot SMS meddelande via email från %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Du kan ta bort en OpenID ifrån ditt konto genom att klicka på knappen \"Remove\"" +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Du kan ta bort en OpenID ifrån ditt konto genom att klicka på knappen " +"\"Remove\"" #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Du kan skicka och ta emot inlägg genom Jabber/GTalk [instant messages](%%doc.im%%). Konfigurera din adress och inställningar nedan. " +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Du kan skicka och ta emot inlägg genom Jabber/GTalk [instant messages](%%doc." +"im%%). Konfigurera din adress och inställningar nedan. " #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Du kan uppdatera din personliga profil här så personer får veta mer om dig." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Du kan uppdatera din personliga profil här så personer får veta mer om dig." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2867,8 +3115,24 @@ msgstr "Du skickade inte oss den profilen" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "Du har en ny adress %1$s.\n\nSkicka email till %2$s för att göra ett nytt inlägg.\n\nMer information får du på %3$s.\n\nMvh,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Du har en ny adress %1$s.\n" +"\n" +"Skicka email till %2$s för att göra ett nytt inlägg.\n" +"\n" +"Mer information får du på %3$s.\n" +"\n" +"Mvh,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2884,8 +3148,12 @@ msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "du kommer bli meddelad när någon du bjudit in accepterar inbjudan och registrerar sig. Tack för att du hjälper oss växa!" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"du kommer bli meddelad när någon du bjudit in accepterar inbjudan och " +"registrerar sig. Tack för att du hjälper oss växa!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2903,8 +3171,12 @@ msgstr "Ditt användarnamn på denna server eller registrerad epost adress." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. Ställ in ditt OpenID konto härifrån." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. " +"Ställ in ditt OpenID konto härifrån." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3100,8 +3372,12 @@ msgstr "Detta är din inbox som innehåller dina privata meddelanden." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s har bjudit in dig till %2$s(%3$s).\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s har bjudit in dig till %2$s(%3$s).\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3143,7 +3419,8 @@ msgstr "Du kan inte skicka meddelande till den användaren." #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." msgstr "Skicka inte meddelande till dig själv, viska lite tyst istället." #: actions/newmessage.php:108 actions/microsummary.php:62 @@ -3194,8 +3471,10 @@ msgstr "Detta är din outbox som innehåller meddelanden som du skickat." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " -msgstr "Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" +"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." #: actions/profilesettings.php:27 actions/profilesettings.php:69 msgid "You can update your personal profile info here " @@ -3246,8 +3525,11 @@ msgstr "Lösenordet måste vara minst 6 tecken." #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Gratulerar, %s! Välkommen till %%%%site.name%%%%. Härifrån vill du kanske..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Gratulerar, %s! Välkommen till %%%%site.name%%%%. Härifrån vill du kanske..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3343,7 +3625,8 @@ msgstr "Mottagaren kunde inte hittas." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Kan inte skicka direktmeddelanden till användare som inte är dina vänner." +msgstr "" +"Kan inte skicka direktmeddelanden till användare som inte är dina vänner." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3370,12 +3653,19 @@ msgstr "%s la till ditt inlägg som favorit" #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "%1$s la just in ditt inlägg ifrån %2$s som en av deras favorit.\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"%1$s la just in ditt inlägg ifrån %2$s som en av deras favorit.\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till Twitter," +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " +"Twitter," #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3422,8 +3712,12 @@ msgstr "Prenumerera på mina Twitter vänner här." #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "Användarnamn får bara innehålla nummer, stora och små bokstäver, och underscore(_). 15 tecken max." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"Användarnamn får bara innehålla nummer, stora och små bokstäver, och " +"underscore(_). 15 tecken max." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3489,6 +3783,40 @@ msgstr "Abonnemanget har godkänts, men ingen " msgid "The subscription has been rejected, but no " msgstr "Abonnemanget har nekats, men ingen " +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 +msgid "Command complete" +msgstr "" + +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: classes/Command.php:96 classes/Command.php:113 +#, php-format +msgid "Subscriptions: %1$s\n" +msgstr "" + +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" + +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + #: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 #: lib/command.php:182 lib/command.php:315 #, php-format @@ -3519,10 +3847,176 @@ msgstr "Hemsida: %s" msgid "About: %s" msgstr "Om: %s" +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 +#, php-format +msgid "Message too long - maximum is 140 characters, you sent %d" +msgstr "" + +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." +msgstr "" + +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" + +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." +msgstr "" + +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: classes/Command.php:344 classes/Command.php:392 +msgid "Commands:\n" +msgstr "" + +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:253 lib/mail.php:512 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" + +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " +msgstr "" + +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "" + +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" + +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" + +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" + +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 +msgid "Twitter" +msgstr "" + +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 +msgid "Twitter integration options" +msgstr "" + +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 +msgid "To" +msgstr "" + +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 +msgid "Could not parse message." +msgstr "" + #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s med vänner" @@ -3538,6 +4032,28 @@ msgstr "Du kan ladda upp din profilbild." msgid "Avatar settings" msgstr "Twitter inställningar" +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + #: actions/avatarsettings.php:248 actions/deletenotice.php:133 #: actions/emailsettings.php:224 actions/grouplogo.php:307 #: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 @@ -3551,6 +4067,17 @@ msgstr "Twitter inställningar" msgid "There was a problem with your session token. " msgstr "Det var något problem med din session. Försök igen, tack." +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -3596,21 +4123,39 @@ msgstr "Är du säker på att du vill tabort detta inlägg?" msgid "You have already blocked this user." msgstr "Du prenumererar redan på dessa användare:" +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + #: actions/confirmaddress.php:159 -#, php-format, fuzzy +#, fuzzy, php-format msgid "The address \"%s\" has been " msgstr "Adressen är borttagen." #: actions/deletenotice.php:73 #, fuzzy msgid "You are about to permanently delete a notice. " -msgstr "Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte ångra dig." +msgstr "" +"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " +"ångra dig." #: actions/disfavor.php:94 #, fuzzy msgid "Add to favorites" msgstr "Feed för %s favoriter" +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 #: actions/grouplogo.php:70 actions/newgroup.php:65 @@ -3651,10 +4196,16 @@ msgstr "Ingen sådan användare" msgid "You must be an admin to edit the group" msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." +msgstr "" +"Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -3673,7 +4224,7 @@ msgid "Options saved." msgstr "Inställningar sparade." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Awaiting confirmation on this address. " msgstr "Väntar bekräftelse på detta telefonnummer. " @@ -3687,6 +4238,11 @@ msgstr "Ny emailadress för att skicka till %s" msgid "Send me email when someone " msgstr "Skicka mig ett email när någon sänder ett privat meddelande." +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -3695,7 +4251,28 @@ msgstr "Den emailadressen tillhör redan en annan användare." #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "En bekräftelsekod har skickats till den IM-adress som du angav. Du måste godkänna att %s får skicka meddelanden till dig." +msgstr "" +"En bekräftelsekod har skickats till den IM-adress som du angav. Du måste " +"godkänna att %s får skicka meddelanden till dig." + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -3703,6 +4280,13 @@ msgstr "En bekräftelsekod har skickats till den IM-adress som du angav. Du mås msgid "No notice content!" msgstr "Inget innehåll!" +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -3719,6 +4303,11 @@ msgstr "« Nyare" msgid "Before" msgstr "Tidigare »" +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + #: actions/facebookinvite.php:72 actions/facebookinvite.php:74 #, fuzzy msgid "Invitations have been sent to the following users:" @@ -3726,16 +4315,28 @@ msgstr "Inbjudan(ar) är skickade till följande personer:" #: actions/facebookinvite.php:96 actions/facebookinvite.php:102 #: actions/facebookinvite.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You have been invited to %s" msgstr "Du är identifierad. Skriv in" #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "Flöden för $s vänner" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." @@ -3766,6 +4367,15 @@ msgstr "Skicka lokala \"@\" svar till Twitter." msgid "Prefix" msgstr "Profil" +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" @@ -3785,7 +4395,7 @@ msgid "Popular notices" msgstr "Inget sådant inlägg." #: actions/favorited.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Popular notices, page %d" msgstr "Inget sådant inlägg." @@ -3794,6 +4404,40 @@ msgstr "Inget sådant inlägg." msgid "The most popular notices on the site right now." msgstr "Visar dom populäraste taggarna ifrån den senaste veckan." +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 +msgid "Featured users" +msgstr "" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" + +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" + +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" + +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -3806,6 +4450,36 @@ msgstr "Användarbilden uppdaterad." msgid "Failed updating logo." msgstr "Uppdatering av profilbild misslyckades." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -3813,9 +4487,11 @@ msgid "Create a new group" msgstr "Skapa ett nytt konto" #: actions/groupsearch.php:57 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen." #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy @@ -3827,13 +4503,18 @@ msgstr "Sökning personer" msgid "You can send and receive notices through " msgstr "Du kan inte skicka meddelande till den användaren." +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Skicka inlägg till mig via Jabber/GTalk." #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "Ingen bekräftelsekod." @@ -3848,15 +4529,19 @@ msgid "You are already a member of that group" msgstr "Du prenumererar redan på dessa användare:" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." #: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s joined group %s" msgstr "%s / Favoriter från %s" +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + #: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." @@ -3888,10 +4573,33 @@ msgstr "Kunde inte uppdatera användarens inställningar." #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -3920,6 +4628,25 @@ msgstr "Du kan inte skicka meddelande till den användaren." msgid "Notice posted" msgstr "Inlägg" +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 +msgid "Ajax Error" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" + #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -3935,11 +4662,24 @@ msgstr "Ta bort OpenID" msgid "Other Settings" msgstr "Twitter inställningar" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" + +#: actions/othersettings.php:93 +msgid "URL Auto-shortening" +msgstr "" + #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "Sök" +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "" + #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -3958,24 +4698,42 @@ msgid "Password change" msgstr "Lösenord är sparat." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Ingen giltig emailadress" +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "" + +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" + #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Okänd profil" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + #: actions/profilesettings.php:144 #, fuzzy msgid "Automatically subscribe to whoever " -msgstr "Automatisk prenummeration på den som prenumererar på mig. (Bäst för icke mänsklig användare) " +msgstr "" +"Automatisk prenummeration på den som prenumererar på mig. (Bäst för icke " +"mänsklig användare) " #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "Ogiltig hemsideadress '%s'" @@ -3987,7 +4745,7 @@ msgstr "Kunde inte spara profil." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Publik tidslinje" @@ -3997,16 +4755,42 @@ msgstr "Publik tidslinje" msgid "Could not retrieve public stream." msgstr "Kunde inte ta emot favoritinläggen." +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Publik ström" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 +msgid "Sorry, only invited people can register." +msgstr "" + #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Du kan inte registrera dig om du inte godkänner licensvillkor." +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -4015,7 +4799,8 @@ msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" #: actions/register.php:382 actions/register.php:386 #, fuzzy msgid "Used only for updates, announcements, " -msgstr "Används endast för uppdateringar, annonsering och återställning av lösenord" +msgstr "" +"Används endast för uppdateringar, annonsering och återställning av lösenord" #: actions/register.php:398 #, fuzzy @@ -4035,35 +4820,63 @@ msgstr "Var du håller till, såsom \"Stad, Län, Land\"" #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "förutom det här, som är privat: lösenord, epostadress, IM-adress, telefonnummer." +msgstr "" +"förutom det här, som är privat: lösenord, epostadress, IM-adress, " +"telefonnummer." #: actions/register.php:471 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " -msgstr "Gratulerar, %s! Välkommen till %%%%site.name%%%%. Härifrån vill du kanske..." +msgstr "" +"Gratulerar, %s! Välkommen till %%%%site.name%%%%. Härifrån vill du kanske..." #: actions/register.php:495 #, fuzzy msgid "(You should receive a message by email " msgstr "(Du kommer inom kort få ett email med" +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" + #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Svarat på %s" #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s favorite notices, page %d" msgstr "%s favoriter" +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Inget sådant inlägg." +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -4076,8 +4889,13 @@ msgstr "Inget sådant inlägg." msgid "Note" msgstr "Inlägg" +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Inlägg flöde för %s" @@ -4089,13 +4907,34 @@ msgstr "Inlägg flöde för %s" msgid "Members" msgstr "Medlem sedan" +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" +msgstr "" + +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/showmessage.php:98 #, fuzzy msgid "Only the sender and recipient " msgstr "Endast den som skickat och mottagaren kan läsa detta meddelande." #: actions/showstream.php:73 actions/showstream.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s, page %d" msgstr "Inbox för %s - sida %d" @@ -4111,6 +4950,12 @@ msgstr "Profil" msgid "User profile" msgstr "Användaren har ingen profil." +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy @@ -4134,6 +4979,17 @@ msgstr "Nytt meddelande" msgid "All subscribers" msgstr "Prenumerant" +#: actions/showstream.php:533 lib/profileaction.php:235 +msgid "All groups" +msgstr "" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " @@ -4175,27 +5031,32 @@ msgid "Subscribed" msgstr "Prenumerera" #: actions/subscribers.php:50 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscribers" msgstr "Prenumerant" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "Dessa personer är dom som lyssnar på %s inlägg." #: actions/subscribers.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people who " msgstr "Dessa personer är dom som lyssnar på %s inlägg." #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "Alla prenumerationer" #: actions/subscriptions.php:54 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions, page %d" msgstr "Alla prenumerationer" @@ -4205,7 +5066,7 @@ msgid "These are the people whose notices " msgstr "Detta är personer och inlägg som %s lyssnar på." #: actions/subscriptions.php:69 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people whose " msgstr "Dessa personer är dom som lyssnar på %s inlägg." @@ -4216,10 +5077,15 @@ msgid "Jabber" msgstr "Inget Jabber ID." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Inlägg taggade med %s" +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -4231,7 +5097,7 @@ msgid "No id argument." msgstr "Inget sådant dokument." #: actions/tagother.php:65 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Tag %s" msgstr "Taggar" @@ -4240,26 +5106,51 @@ msgstr "Taggar" msgid "Tag user" msgstr "Taggar" +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + #: actions/tagother.php:164 #, fuzzy msgid "There was a problem with your session token." msgstr "Det var något problem med din session. Försök igen, tack." +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Kunde inte spara informationen om användarbild" +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "Inget sådant meddelande." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "Inlägg taggade med %s" +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" + +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" + #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy @@ -4269,7 +5160,9 @@ msgstr "Hittades inte" #: actions/twittersettings.php:71 #, fuzzy msgid "Add your Twitter account to automatically send " -msgstr "Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till Twitter," +msgstr "" +"Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " +"Twitter," #: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy @@ -4287,8 +5180,12 @@ msgstr "Twitter lösenord" msgid "Twitter Friends" msgstr "Twitter inställningar" +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + #: actions/twittersettings.php:341 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information " msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." @@ -4312,22 +5209,70 @@ msgstr "Ingen status hittad med det ID" msgid "Unsubscribed" msgstr "Lämnar pren." +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" +msgstr "" + +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Det var ett problem när inlägget sparades." +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Uppdatering av profilbild misslyckades." +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "" + #: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s - %s" msgstr "%s(%s)" +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" @@ -4338,6 +5283,18 @@ msgstr "Om" msgid "Change your email, avatar, password, profile" msgstr "Ändra ditt lösenord" +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -4358,6 +5315,10 @@ msgstr "Hjälp" msgid "Site notice" msgstr "Nytt inlägg" +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -4368,17 +5329,40 @@ msgstr "Nytt inlägg" msgid "Secondary site navigation" msgstr "Prenumerationer" +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +msgid "All " +msgstr "" + +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Ingen sådan användare" +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block" +msgstr "" + #: lib/disfavorform.php:114 lib/disfavorform.php:140 #, fuzzy msgid "Disfavor this notice" msgstr "%s favoriter" +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -4397,17 +5381,35 @@ msgstr "Publik" msgid "Favor this notice" msgstr "%s favoriter" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + #: lib/galleryaction.php:121 #, fuzzy msgid "Filter tags" msgstr "Feed för taggar %s" +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + #: lib/galleryaction.php:137 lib/galleryaction.php:138 #: lib/galleryaction.php:140 #, fuzzy msgid "Tag" msgstr "Taggar" +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -4427,14 +5429,46 @@ msgstr "Berätta om dig själv och dina intressen inom 140 tecken" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Var du håller till, såsom \"Stad, Län, Land\"" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" + +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Logga ut" +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -4460,28 +5494,51 @@ msgstr "Logga in med ditt användarnamn och lösenord." msgid "Sign up for a new account" msgstr "Skapa ett nytt konto" +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." #: lib/mail.php:254 lib/mail.php:253 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Location: %s\n" msgstr "Plats: %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Hemsida: %s\n" +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + #: lib/mail.php:461 lib/mail.php:462 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You've been nudged by %s" msgstr "Du är identifierad. Skriv in" +#: lib/mail.php:465 +#, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" + #: lib/mail.php:555 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s just added your notice from %2$s" msgstr "%1$s la just in ditt inlägg ifrån %2$s som en av deras favorit." @@ -4538,21 +5595,47 @@ msgstr "Ta bort inlägg" msgid "Delete" msgstr "Ta bort" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + #: lib/nudgeform.php:128 #, fuzzy msgid "Send a nudge to this user" msgstr "Du kan inte skicka meddelande till den användaren." +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "" + #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Publik" +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 #, fuzzy msgid "Recent tags" msgstr "Tidigare taggar" +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -4568,21 +5651,32 @@ msgstr "Inlägg" msgid "Find groups on this site" msgstr "Sök personer på denna sida" +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People %s subscribes to" msgstr "Fjärrprenumerera" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People subscribed to %s" msgstr "Fjärrprenumerera" +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + #: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 #: lib/action.php:440 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" -msgstr "Använd detta formulär för att bjuda in dina vänner och kollegor till denna sida." +msgstr "" +"Använd detta formulär för att bjuda in dina vänner och kollegor till denna " +"sida." #: lib/subs.php:53 lib/subs.php:52 #, fuzzy @@ -4600,24 +5694,36 @@ msgstr "Prenumerera på mina Twitter vänner här." msgid "None" msgstr "Nej" +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Ingen sådan användare" +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 +msgid "Unblock" +msgstr "" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Flöden för $s vänner" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Flöden för $s vänner" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Flöden för $s vänner" @@ -4627,7 +5733,7 @@ msgid "You and friends" msgstr "%s med vänner" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Du kan uppdatera din personliga profil här" @@ -4636,10 +5742,21 @@ msgstr "Du kan uppdatera din personliga profil här" msgid "Avatar deleted." msgstr "Användarbilden uppdaterad." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte ångra dig." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Du håller på att tabort inlägget permanent. När det väl är gjort kan du inte " +"ångra dig." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy @@ -4651,25 +5768,76 @@ msgstr "Det var något problem med din session. Försök igen, tack." msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Skicka mig ett email när någon sänder ett privat meddelande." +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Mikroblogg av %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. " +"Skilj söktermerna åt med mellanslag; de måste vara minst tre tecken långa. " + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "Sök i strömmen efter \"%s\"" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan du ändrar dina inställningar." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Av säkerhetsskäl, var vänlig skriv in ditt användarnamn och lösenord innan " +"du ändrar dina inställningar." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -4686,10 +5854,35 @@ msgstr "Publik ström" msgid "Public Stream Feed (Atom)" msgstr "Publik ström" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr "förutom det här, som är privat: lösenord, epostadress, IM-adress, telefonnummer." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"förutom det här, som är privat: lösenord, epostadress, IM-adress, " +"telefonnummer." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -4697,33 +5890,44 @@ msgstr "förutom det här, som är privat: lösenord, epostadress, IM-adress, te msgid "Created" msgstr "Skapa" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Inget sådant inlägg." #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "Profil" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Inlägg flöde för %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Inlägg flöde för %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Inlägg flöde för %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Outbox för %s" @@ -4739,10 +5943,48 @@ msgstr "Användarbild" msgid "Edit profile settings" msgstr "Profil inställningar" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "En bekräftelsekod har skickats ut till telefonnumret du fyllde i. Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du använder den." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"En bekräftelsekod har skickats ut till telefonnumret du fyllde i. " +"Kontrollera din inbox (och spamlådan!) efter kod och instruktioner hur du " +"använder den." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -4759,34 +6001,259 @@ msgstr "Ingen sådan användare" #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till Twitter," +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Lägg till ditt Twitter konto för att automatiskt skicka dina inlägg till " +"Twitter," #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Kunde inte mottaga konto information för \"%s\" Twitter." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Kontrollera dessa detajer noga så att du verkligen vet att du vill prenumerera på denna användares inlägg. Om du inte frågade efter att prenumerera på någons inlägg, klicka på \"Cancel\"" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Kontrollera dessa detajer noga så att du verkligen vet att du vill " +"prenumerera på denna användares inlägg. Om du inte frågade efter att " +"prenumerera på någons inlägg, klicka på \"Cancel\"" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Om du redan har ett konto, logga in med ditt användarnamn och lösenord för att koppla det till ditt OpenID" +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Om du redan har ett konto, logga in med ditt användarnamn och lösenord för " +"att koppla det till ditt OpenID" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s lyssnar nu på dina meddelanden i %1$s.\n\n Hälsningar,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s lyssnar nu på dina meddelanden i %1$s.\n" +"\n" +"\tHälsningar,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Sök" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -4803,15 +6270,19 @@ msgid "Block this user from this group" msgstr "Ingen sådan användare" #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Användaren har ingen profil." #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s med vänner" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -4827,26 +6298,56 @@ msgstr "Bekräftelsekod" msgid "Do not delete this notice" msgstr "Kan inte ta bort detta inlägg." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Ogiltig hemsideadress '%s'" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Användarnamnet används redan, försök med ett annat." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Kunde inte skapa favorit." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -4857,6 +6358,14 @@ msgstr "Nytt inlägg" msgid "No notice" msgstr "Nytt inlägg" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -4868,6 +6377,10 @@ msgstr "Det är inget giltigt användarnamn." msgid "No group specified." msgstr "Ingen mottagare tillagd." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -4884,11 +6397,33 @@ msgstr "Du skickade inte oss den profilen" msgid "Block user from group" msgstr "Ingen sådan användare" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -4916,41 +6451,234 @@ msgstr "Inställningar sparade." msgid "Make user an admin of the group" msgstr "du måste vara inloggad för att kunna bjuda in andra användare till %s" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Inget resultat" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Användaren har ingen profil." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Nytt meddelande" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Kunde inte spara profil." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. Ställ in ditt OpenID konto härifrån." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) låter dig logga in på flera sidor med samma konto. " +"Ställ in ditt OpenID konto härifrån." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profil inställningar" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat till den emailadress du sparat till ditt konto." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Om du glömt eller tappat bort ditt lösenord så kan du få ett nytt skickat " +"till den emailadress du sparat till ditt konto." #: actions/recoverpassword.php:158 #, fuzzy @@ -4972,54 +6700,172 @@ msgstr "Fel uppstog med bekräftelsekoden." msgid "Subscribe to a remote user" msgstr "Prenumerera på mina Twitter vänner här." +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "%s favoriter" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Inlägg flöde för %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Inlägg flöde för %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Inlägg flöde för %s" +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Ingen sådan användare" #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Inlägg taggade med %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Inlägg flöde för %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s lyssnar nu på dina meddelanden i %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Inlägg flöde för %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Inlägg flöde för %s" @@ -5050,16 +6896,24 @@ msgid "Could not find target user." msgstr "Kunde inte få fram status." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Uppdateringar med svar till %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -5070,41 +6924,127 @@ msgstr "Alla prenumerationer" msgid "Profile design" msgstr "Profil inställningar" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Du skickade inte oss den profilen" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Det var ett problem när inlägget sparades." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Meddelande till %1$s på %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Användaren har ingen profil." +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profil" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Ladda upp" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Ändra ditt lösenord" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5120,31 +7060,161 @@ msgstr "Sök" msgid "Links" msgstr "Logga in" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Ingen sådan användare" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Ingen sådan användare" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "Inget innehåll!" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "Sök" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "Hemsidan har ingen giltig URL" +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5152,12 +7222,12 @@ msgid "No such page" msgstr "Inget sådant meddelande." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Direktmeddelande till %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Det är för långt. Max är 140 tecken. " @@ -5166,8 +7236,12 @@ msgstr "Det är för långt. Max är 140 tecken. " msgid "Could not unfollow user: User not found." msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Biografin är för lång (max 140 tecken)" @@ -5177,7 +7251,7 @@ msgid "You are already a member of that group." msgstr "Du prenumererar redan på dessa användare:" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." @@ -5187,38 +7261,61 @@ msgid "You are not a member of this group." msgstr "Du skickade inte oss den profilen" #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Kunde inte följa användaren: Användaren kunde inte hittas." #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "%s / Favoriter från %s" +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Du skickade inte oss den profilen" + #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Sök personer på denna sida" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Användarbilden uppdaterad." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "För långt. Maximalt 140 tecken" +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "Bildfilens format stödjs inte." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Biografin är för lång (max 140 tecken)" #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" @@ -5253,7 +7350,7 @@ msgid "Cannot read file." msgstr "Inget sådant inlägg." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Uppdateringar från %1$s på %2$s!" @@ -5263,17 +7360,41 @@ msgid "IM is not available." msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? [Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%action.openidlogin%%)." +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? " +"[Registrera](%%action.register%%) ett nytt konto, eller testa [OpenID](%%" +"action.openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Uppdateringar från %1$s på %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Alla uppdateringar som matchar söksträngen \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Anslut" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" @@ -5283,49 +7404,78 @@ msgid "Describe yourself and your interests" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Biografin är för lång (max 140 tecken)" +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Det är ingen giltig profil URL (ingen YADIS angiven)." +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Kunde inte få en förfrågan token." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Inlägg flöde för %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Inlägg flöde för %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Inlägg flöde för %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Meddelande till %1$s på %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Feed för %s favoriter" +msgstr "Flöden för $s vänner" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Feed för %s favoriter" +msgstr "Flöden för $s vänner" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Feed för %s favoriter" +msgstr "Flöden för $s vänner" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "Inlägg flöde för %s" +msgstr "Outbox för %s" #: actions/shownotice.php:90 #, fuzzy @@ -5338,32 +7488,79 @@ msgid "SMS is not available." msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Inlägg flöde för %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Kontrollera dessa detajer noga så att du verkligen vet att du vill prenumerera på denna användares inlägg. Om du inte frågade efter att prenumerera på någons inlägg, klicka på \"Cancel\"" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Kontrollera dessa detajer noga så att du verkligen vet att du vill " +"prenumerera på denna användares inlägg. Om du inte frågade efter att " +"prenumerera på någons inlägg, klicka på \"Cancel\"" #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla med sidans instruktioner hur du bekräftar en prenumeration. Din prenumerering token är:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Prenumerationen har blivit bekräftad, men ingen URL har gått igenom. Kolla " +"med sidans instruktioner hur du bekräftar en prenumeration. Din " +"prenumerering token är:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med sidans instruktioner hur du avvisar en prenumeration." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Prenumerationen har blivit avvisad, men inga URL har gått igenom. Kolla med " +"sidans instruktioner hur du avvisar en prenumeration." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Kan inte läsa användarbild URL '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Fel filtyp för bild '%s'" @@ -5378,12 +7575,35 @@ msgid "Site content license" msgstr "Sök innehåll i inlägg" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Kunde inte uppdatera användaren med bekräftad emailadress." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Svara på detta inlägg" @@ -5392,11 +7612,58 @@ msgstr "Svara på detta inlägg" msgid "Error saving notice." msgstr "Det var ett problem när inlägget sparades." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Ingen bekräftelsekod." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + #: lib/galleryaction.php:139 #, fuzzy msgid "Select tag to filter" @@ -5408,32 +7675,76 @@ msgid "Describe the group or topic" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Berätta om dig själv och dina intressen inom 140 tecken" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Inlägg flöde för %s" +msgstr "Nytt inlägg" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s la till ditt inlägg som favorit" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr "från" +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Kunde inte tabort favoriten." +msgstr "Kunde inte ta emot favoritinläggen." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Tabort inlägg" - diff --git a/locale/te/LC_MESSAGES/statusnet.mo b/locale/te/LC_MESSAGES/statusnet.mo index 0a28a195231ae5c33af16421ad5fa217dd8ebae4..034e683222ecdea93b908b2be3e6a81720ae7452 100644 GIT binary patch delta 13214 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, 2008. -# -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-# -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:24:32+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:44:36+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: out-statusnet\n" @@ -36,7 +25,8 @@ msgstr "\"%s\"కై అన్వేషణ వాహిని" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." +msgid "" +" except this private data: password, email address, IM address, phone number." msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." #: ../actions/showstream.php:400 ../lib/stream.php:109 @@ -44,6 +34,81 @@ msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సం msgid " from " msgstr " నుండి " +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#, php-format +msgid "%1$s / Updates replying to %2$s" +msgstr "" + +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "" + +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" + +#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "" + +#: ../lib/mail.php:126 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" + +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" + +#: ../actions/shownotice.php:45 actions/shownotice.php:45 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "" + #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 #: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 @@ -94,11 +159,30 @@ msgstr "%s స్థితి" msgid "%s timeline" msgstr "%s కాలరేఖ" +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "" + +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" + #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 -#, php-format, fuzzy -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "[%%site.broughtby%%](%%site.broughtbyurl%%) వారు అందిస్తున్న ఈ **%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." +#, fuzzy, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"[%%site.broughtby%%](%%site.broughtbyurl%%) వారు అందిస్తున్న ఈ **%%site.name%%** " +"అనేది మైక్రో బ్లాగింగు సదుపాయం." #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -106,6 +190,10 @@ msgstr "[%%site.broughtby%%](%%site.broughtbyurl%%) వారు అందిస msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం." +#: ../lib/util.php:274 lib/util.php:290 +msgid ". Contributors should be attributed by full name or nickname." +msgstr "" + #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 @@ -114,6 +202,11 @@ msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగి msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" +#: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" + #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" @@ -130,6 +223,104 @@ msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షర msgid "6 or more characters. Required." msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు. తప్పనిసరి." +#: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" + +#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/smssettings.php:216 actions/smssettings.php:224 +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 +#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 +#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 +#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 +#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 +#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 +#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 +#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 +#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 +#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 +#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 +#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 +#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 +#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 +#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "" + +#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 +#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 +#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 +#: ../actions/twitapidirect_messages.php:49 +#: ../actions/twitapidirect_messages.php:56 +#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 +#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 +#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 +#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 +#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 +#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 +#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 +#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 +#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 +#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 +#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 +#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 +#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 +msgid "API method under construction." +msgstr "" + #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 msgid "About" @@ -159,6 +350,11 @@ msgstr "చేర్చు" msgid "Add OpenID" msgstr "ఓపెన్ఐడీని చేర్చు" +#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 +#: lib/accountsettingsaction.php:117 +msgid "Add or remove OpenIDs" +msgstr "" + #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 @@ -168,6 +364,11 @@ msgstr "ఓపెన్ఐడీని చేర్చు" msgid "Address" msgstr "చిరునామా" +#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" + #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" @@ -205,6 +406,12 @@ msgstr "ఇప్పటికే చేరారు!" msgid "Are you sure you want to delete this notice?" msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?" +#: ../actions/userauthorization.php:77 actions/userauthorization.php:83 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "" + #: ../actions/login.php:104 ../actions/register.php:178 #: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 #: actions/register.php:416 actions/register.php:463 actions/login.php:226 @@ -212,6 +419,13 @@ msgstr "మీరు నిజంగానే ఈ నోటీసుని త msgid "Automatically login in the future; not for shared computers!" msgstr "భవిష్యత్తులో ఆటోమెటిగ్గా లోనికి ప్రవేశించు; బయటి కంప్యూర్ల కొరకు కాదు!" +#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" + #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 @@ -226,6 +440,26 @@ msgstr "అవతారం" msgid "Avatar updated." msgstr "అవతారాన్ని తాజాకరించాం." +#: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 +#, php-format +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" + +#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" + +#: ../actions/smssettings.php:58 actions/smssettings.php:58 +#: actions/smssettings.php:111 actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "" + #: ../lib/util.php:1318 lib/util.php:1452 msgid "Before »" msgstr "ఇంతక్రితం »" @@ -252,6 +486,12 @@ msgstr "స్వపరిచయం చాలా పెద్దగా ఉంద msgid "Can't delete this notice." msgstr "ఈ నోటీసుని తొలగించలేము." +#: ../actions/updateprofile.php:119 actions/updateprofile.php:120 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 +#, php-format +msgid "Can't read avatar URL '%s'" +msgstr "" + #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 @@ -269,16 +509,47 @@ msgstr "కొత్త సంకేతపదాన్ని భద్రపర msgid "Cancel" msgstr "రద్దుచేయి" +#: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 +msgid "Cannot instantiate OpenID consumer object." +msgstr "" + +#: ../actions/imsettings.php:163 actions/imsettings.php:171 +#: actions/imsettings.php:286 actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "" + +#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "" + #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "మార్చు" +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "" + #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "సంకేతపదం మార్చుకోండి" +#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "" + +#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "" + #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 #: actions/profilesettings.php:182 actions/recoverpassword.php:187 @@ -306,11 +577,36 @@ msgstr "చిరునామాని నిర్ధారించు" msgid "Confirmation cancelled." msgstr "నిర్ధారణ రద్దయింది." +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "" + #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "నిర్ధారణ సంకేతం కనబడలేదు." +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" + #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -334,6 +630,27 @@ msgstr "సంప్రదించు" msgid "Could not create OpenID form: %s" msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "" + +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" + +#: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 +#, php-format +msgid "Could not redirect to server: %s" +msgstr "" + #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 #: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" @@ -344,6 +661,24 @@ msgstr "అవతారపు సమాచారాన్ని భద్రప msgid "Could not save new profile info" msgstr "కొత్త ప్రొఫైలు సమాచారాన్ని భద్రపరచలేకున్నాం" +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "" + +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 +msgid "Could not subscribe." +msgstr "" + +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" + +#: ../actions/finishremotesubscribe.php:99 +#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 +msgid "Couldn't convert request tokens to access tokens." +msgstr "" + #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 #: actions/confirmaddress.php:84 actions/emailsettings.php:252 @@ -359,6 +694,16 @@ msgstr "ఈమెయిల్ నిర్ధారణని తొలగిం msgid "Couldn't delete subscription." msgstr "చందాని తొలగించలేకపోయాం." +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 +msgid "Couldn't find any statuses." +msgstr "" + +#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 +#: actions/remotesubscribe.php:178 +msgid "Couldn't get a request token." +msgstr "" + #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 @@ -369,6 +714,12 @@ msgstr "చందాని తొలగించలేకపోయాం." msgid "Couldn't insert confirmation code." msgstr "నిర్ధారణ సంకేతాన్ని చేర్చలేకపోయాం." +#: ../actions/finishremotesubscribe.php:180 +#: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 +msgid "Couldn't insert new subscription." +msgstr "" + #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 @@ -376,6 +727,22 @@ msgstr "నిర్ధారణ సంకేతాన్ని చేర్చ msgid "Couldn't save profile." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "" + +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -413,15 +780,48 @@ msgstr "ఈ పేరుతో కొత్త వాడుకరిని స msgid "Create new account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" +#: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 +msgid "Creating new account for OpenID that already has a user." +msgstr "" + #: ../actions/imsettings.php:45 actions/imsettings.php:46 #: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా" +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" + +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" + #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "ప్రస్తుతం" +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + +#: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 +#, php-format +msgid "DB error inserting reply: %s" +msgstr "" + +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "" + #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -462,12 +862,27 @@ msgstr "ఈమెయిల్ చిరునామా నిర్ధారణ" msgid "Email address, like \"UserName@example.org\"" msgstr "ఈమెయిల్ చిరునామా, \"username@example.org\" వలె" +#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 +msgid "Email addresses" +msgstr "" + #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "పేరు లేదా ఈమెయిల్ చిరునామా ఇవ్వండి." +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" + +#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 +msgid "Error authorizing token" +msgstr "" + #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 #: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 #: actions/finishopenidlogin.php:325 @@ -525,6 +940,17 @@ msgstr "వాడుకరిని భద్రపరచడంలో పొర msgid "Error saving user; invalid." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." +#: ../actions/login.php:47 ../actions/login.php:73 +#: ../actions/recoverpassword.php:307 ../actions/register.php:98 +#: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 +#: actions/register.php:108 actions/login.php:112 actions/login.php:138 +#: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 +msgid "Error setting user." +msgstr "" + #: ../actions/finishaddopenid.php:83 actions/finishaddopenid.php:83 #: actions/finishaddopenid.php:131 msgid "Error updating profile" @@ -571,9 +997,28 @@ msgstr "%s యొక్క మిత్రుల ఫీడు" msgid "Feed for replies to %s" msgstr "%sకి వచ్చిన స్పందనల ఫీడు" +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 +#, php-format +msgid "Feed for tag %s" +msgstr "" + +#: ../lib/searchaction.php:105 lib/searchaction.php:105 +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "" + +#: ../lib/searchaction.php:101 lib/searchaction.php:101 +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "" + #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -636,6 +1081,17 @@ msgstr "హోమ్ పేజీ" msgid "Homepage is not a valid URL." msgstr "హోమ్ పేజీ URL సరైనది కాదు." +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "" + +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "" + #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -648,8 +1104,38 @@ msgstr "IM అమరికలు" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి జతచేసుకోండి." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి " +"జతచేసుకోండి." + +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" + +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" + +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 @@ -665,7 +1151,9 @@ msgstr "వాడుకరిపేరు లేదా సంకేతపదం #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "మీ సంకేతపదాన్ని తిరిగి పొందడానికై అవసరమైన సూచనలని మీ ఖాతాతో నమోదైన ఈమెయిల్ చిరునామాకి పంపించాం." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 @@ -674,6 +1162,12 @@ msgstr "మీ సంకేతపదాన్ని తిరిగి పొం msgid "Invalid avatar URL '%s'" msgstr "'%s' అనే అవతారపు URL తప్పు" +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "" + #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format @@ -712,6 +1206,11 @@ msgstr "ప్రొపైల్ URL '%s' తప్పు." msgid "Invalid profile URL (bad format)" msgstr "ప్రొపైల్ URL తప్పు (చెడు ఫార్మాట్)" +#: ../actions/finishremotesubscribe.php:77 +#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 +msgid "Invalid profile URL returned by server." +msgstr "" + #: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." @@ -727,23 +1226,61 @@ msgstr "తప్పుడు పరిమాణం." msgid "Invalid username or password." msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు." +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "" + +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" + #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 #: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 #: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "ఆహ్వానించు" +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 +msgid "Invite new users" +msgstr "" + +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" + #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Jabber ID ఇప్పటికే వేరొకరికి ఉంది." +#: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" + #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 #: actions/profilesettings.php:144 msgid "Language" msgstr "భాష" +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "" + #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 #: actions/profilesettings.php:117 actions/register.php:408 @@ -795,17 +1332,43 @@ msgstr "ప్రవేశించండి" msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "[ఓపెన్ఐడీ](%%doc.openid%%) ఖాతాతో ప్రవేశించండి." +#: ../actions/login.php:126 actions/login.php:251 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" + #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "నిష్క్రమించు" +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 +msgid "Longer name, preferably your \"real\" name" +msgstr "" + #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "మీ సంకేతపదం మర్చిపోయారా?" +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "" + #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -813,10 +1376,45 @@ msgstr "సభ్యులైన తేదీ" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 #: actions/userrss.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s" msgstr "%s యొక్క మైక్రోబ్లాగు" +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + +#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 +#: actions/finishopenidlogin.php:85 actions/register.php:202 +#: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 +msgid "My text and files are available under " +msgstr "" + +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "" + +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "" + #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -870,21 +1468,66 @@ msgstr "పేరు" msgid "Nickname already in use. Try another one." msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." +#: ../actions/finishopenidlogin.php:165 ../actions/profilesettings.php:88 +#: ../actions/register.php:67 ../actions/updateprofile.php:77 +#: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 +#: actions/register.php:74 actions/updateprofile.php:78 +#: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" + #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "ఆ పేరుని అనుమతించము." +#: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "" + #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 #: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "పేరు లేదా ఈమెయిల్" +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 +msgid "No" +msgstr "" + #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Jabber ID లేదు." +#: ../actions/userauthorization.php:129 actions/userauthorization.php:136 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 +msgid "No authorization request!" +msgstr "" + +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" + +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 +msgid "No code entered" +msgstr "" + #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -899,10 +1542,23 @@ msgstr "నిర్ధారణ సంకేతం లేదు." msgid "No content!" msgstr "విషయం లేదు!" +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "" + #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "ఐడీ లేదు." +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -925,6 +1581,16 @@ msgstr "పేరు లేదు." msgid "No pending confirmation to cancel." msgstr "రద్దుచేయడానికి వేచివున్న నిర్ధారణలేమీ లేవు." +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 +msgid "No phone number." +msgstr "" + +#: ../actions/finishremotesubscribe.php:72 +#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 +msgid "No profile URL returned by server." +msgstr "" + #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 @@ -948,6 +1614,21 @@ msgstr "ఫలితాలేమీ లేవు" msgid "No size." msgstr "పరిమాణం లేదు." +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" + +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "" + #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -966,6 +1647,16 @@ msgstr "అటువంటి పత్రమేమీ లేదు." msgid "No such notice." msgstr "అటువంటి సందేశమేమీ లేదు." +#: ../actions/recoverpassword.php:56 actions/recoverpassword.php:56 +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "" + +#: ../actions/postnotice.php:56 actions/postnotice.php:57 +#: actions/postnotice.php:60 +msgid "No such subscription" +msgstr "" + #: ../actions/all.php:34 ../actions/allrss.php:35 #: ../actions/avatarbynickname.php:43 ../actions/foaf.php:40 #: ../actions/remotesubscribe.php:84 ../actions/remotesubscribe.php:91 @@ -1003,6 +1694,36 @@ msgstr "అటువంటి సందేశమేమీ లేదు." msgid "No such user." msgstr "అటువంటి వాడుకరి లేరు." +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" + +#: ../lib/gallery.php:80 lib/gallery.php:85 +msgid "Nobody to show!" +msgstr "" + +#: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "" + +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 +msgid "Not a registered user." +msgstr "" + +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 +msgid "Not a supported data format." +msgstr "" + #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1013,6 +1734,12 @@ msgstr "సరైన Jabber ఐడీ కాదు" msgid "Not a valid OpenID." msgstr "సరైన ఓపెన్ఐడీ కాదు." +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "" + #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." @@ -1030,12 +1757,38 @@ msgstr "సరైన ఈమెయిల్ చిరునామా కాదు msgid "Not a valid nickname." msgstr "సరైన పేరు కాదు." +#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 +#: actions/remotesubscribe.php:159 +msgid "Not a valid profile URL (incorrect services)." +msgstr "" + +#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 +#: actions/remotesubscribe.php:152 +msgid "Not a valid profile URL (no XRDS defined)." +msgstr "" + +#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 +#: actions/remotesubscribe.php:143 +msgid "Not a valid profile URL (no YADIS document)." +msgstr "" + #: ../actions/avatar.php:95 actions/profilesettings.php:332 #: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 #: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "బొమ్మ కాదు లేదా పాడైపోయిన ఫైలు." +#: ../actions/finishremotesubscribe.php:51 +#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 +msgid "Not authorized." +msgstr "" + +#: ../actions/finishremotesubscribe.php:38 +#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "" + #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 #: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 #: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 @@ -1062,6 +1815,15 @@ msgstr "దొరకలేదు" msgid "Not logged in." msgstr "లోనికి ప్రవేశించలేదు." +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 +msgid "Not subscribed!." +msgstr "" + +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" + #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 @@ -1069,6 +1831,11 @@ msgstr "లోనికి ప్రవేశించలేదు." msgid "Notice feed for %s" msgstr "%s యొక్క సందేశముల ఫీడు" +#: ../actions/shownotice.php:39 actions/shownotice.php:39 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "" + #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 #: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 @@ -1077,6 +1844,14 @@ msgstr "%s యొక్క సందేశముల ఫీడు" msgid "Notices" msgstr "సందేశాలు" +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" + #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1093,6 +1868,11 @@ msgstr "ఓపెన్ఐడీ" msgid "OpenID Account Setup" msgstr "ఓపెన్ఐడీ ఖాతా అమర్పు" +#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 +msgid "OpenID Auto-Submit" +msgstr "" + #: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 @@ -1139,6 +1919,11 @@ msgstr "ఓపెన్ఐడీని తొలగించాం." msgid "OpenID settings" msgstr "ఓపెన్ఐడీ అమరికలు" +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "" + #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -1169,6 +1954,14 @@ msgstr "సంకేతపదం మరియు నిర్ధారణ సర msgid "Password must be 6 chars or more." msgstr "సంకేతపదం 6 లేదా అంతకంటే ఎక్కవ అక్షరాలుండాలి." +#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 +#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "" + #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 @@ -1190,6 +1983,11 @@ msgstr "సంకేతపదాలు సరిపోలలేదు." msgid "People" msgstr "ప్రజలు" +#: ../actions/opensearch.php:33 actions/opensearch.php:33 +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" + #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" @@ -1205,6 +2003,23 @@ msgstr "వ్యక్తిగత" msgid "Personal message" msgstr "వ్యక్తిగత సందేశం" +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + +#: ../actions/userauthorization.php:78 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" + +#: ../actions/imsettings.php:73 actions/imsettings.php:74 +#: actions/imsettings.php:142 actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "" + #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 #: actions/imsettings.php:68 actions/smssettings.php:94 @@ -1280,6 +2095,39 @@ msgstr "ప్రజా వాహిని ఫీడు" msgid "Public timeline" msgstr "ప్రజా కాలరేఖ" +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "" + +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "" + +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 +#: actions/tag.php:76 +msgid "Recent Tags" +msgstr "" + +#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "" + +#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "" + +#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "" + #: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 @@ -1291,6 +2139,18 @@ msgstr "ప్రజా కాలరేఖ" msgid "Register" msgstr "నమోదు" +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 +msgid "Registration not allowed." +msgstr "" + +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 +msgid "Registration successful" +msgstr "" + #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -1304,6 +2164,16 @@ msgstr "తిరస్కరించు" msgid "Remember me" msgstr "నన్ను గుర్తుంచుకో" +#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 +msgid "Remote profile with no matching profile" +msgstr "" + +#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "" + #: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 #: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 #: ../actions/smssettings.php:50 ../actions/smssettings.php:84 @@ -1326,8 +2196,12 @@ msgid "Remove OpenID" msgstr "ఓపెన్ఐడీని తొలగించండి" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "మీకున్న ఒకే ఓపెన్ఐడీని తొలగిస్తే మీరు లోనికి ప్రవేశించడం అసాధ్యమవవచ్చు. మీరు దాన్ని తొలగించాలనుకుంటే, ముందు వేరే ఓపెన్ఐడీని చేర్చండి." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"మీకున్న ఒకే ఓపెన్ఐడీని తొలగిస్తే మీరు లోనికి ప్రవేశించడం అసాధ్యమవవచ్చు. మీరు దాన్ని తొలగించాలనుకుంటే, " +"ముందు వేరే ఓపెన్ఐడీని చేర్చండి." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -1344,17 +2218,50 @@ msgstr "స్పందనలు" msgid "Replies to %s" msgstr "%sకి స్పందనలు" +#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "" + +#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "" + +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" + +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "" + #: ../actions/smssettings.php:33 actions/smssettings.php:33 #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "SMS అమరికలు" +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 +msgid "SMS confirmation" +msgstr "" + #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "పై సంకేతపదం వలెనే" +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 +msgid "Same as password above. Required." +msgstr "" + #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -1390,13 +2297,26 @@ msgstr "అన్వేషణ వాహిని ఫీడు" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%%లోని సందేశాలను వెతకండి. అన్వేషణ పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%%లోని సందేశాలను వెతకండి. అన్వేషణ పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా " +"అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " +"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." + +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -1407,6 +2327,35 @@ msgstr "%%site.name%%లో వ్యక్తులను వారి పే msgid "Send" msgstr "పంపించు" +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" + +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" + +#: ../actions/imsettings.php:70 actions/imsettings.php:71 +#: actions/imsettings.php:137 actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "" + +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -1418,6 +2367,10 @@ msgstr "అమరికలు" msgid "Settings saved." msgstr "అమరికలు భద్రమయ్యాయి." +#: ../actions/tag.php:60 actions/tag.php:60 +msgid "Showing most popular tags from the last week" +msgstr "" + #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -1429,6 +2382,16 @@ msgstr "ఈ ఓపెన్ఐడీని ఇప్పటికే ఎవరో msgid "Something weird happened." msgstr "జరగకూడనిదేదో జరిగింది." +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 +msgid "Sorry, no incoming email allowed." +msgstr "" + +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 +msgid "Sorry, that is not your incoming email address." +msgstr "" + #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -1441,6 +2404,23 @@ msgstr "మూలము" msgid "Statistics" msgstr "గణాంకాలు" +#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 +#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 +#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 +msgid "Stored OpenID not found." +msgstr "" + +#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 +#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 +#: actions/showstream.php:197 actions/showstream.php:206 +#: actions/remotesubscribe.php:113 actions/showstream.php:376 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 +msgid "Subscribe" +msgstr "" + #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 @@ -1449,6 +2429,12 @@ msgstr "గణాంకాలు" msgid "Subscribers" msgstr "చందాదార్లు" +#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "" + #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 #: actions/userauthorization.php:349 actions/userauthorization.php:355 #: actions/userauthorization.php:389 actions/userauthorization.php:259 @@ -1464,6 +2450,23 @@ msgstr "చందాని తిరస్కరించారు." msgid "Subscriptions" msgstr "చందాలు" +#: ../actions/avatar.php:87 actions/profilesettings.php:324 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "" + +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 +msgid "Tags" +msgstr "" + #: ../lib/searchaction.php:104 lib/searchaction.php:104 #: lib/designsettings.php:217 msgid "Text" @@ -1510,11 +2513,27 @@ msgstr "ఈ Jabber ID మీకు ఇప్పటికే ఉంది" msgid "That is already your email address." msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" + #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "ఇది మీ Jabber ID కాదు" +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "" + +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "" + #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -1523,6 +2542,16 @@ msgstr "ఇది మీ Jabber ID కాదు" msgid "That is the wrong IM address." msgstr "ఆ IM చిరునామా సరైనది కాదు." +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "" + +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" + #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -1533,6 +2562,12 @@ msgstr "ఆ IM చిరునామా సరైనది కాదు." msgid "That's too long. Max notice size is 140 chars." msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 +msgid "That's too long. Max notice size is 255 chars." +msgstr "" + #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 #, php-format @@ -1549,10 +2584,101 @@ msgstr "\"%s\" అనే చిరునామా మీ ఖాతాకి న msgid "The address was removed." msgstr "ఆ చిరునామాని తొలగించాం." +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "" + +#: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "" + +#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "" + +#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "" + +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" + #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "ఈ నిర్ధారణ సంకేతం చాలా పాతది. మళ్ళీ మొదలుపెట్టండి." +#: ../lib/openid.php:195 lib/openid.php:206 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" + +#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" + +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" + +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "" + +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "" + #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 #: actions/profilesettings.php:138 actions/profilesettings.php:139 #: actions/profilesettings.php:154 @@ -1565,6 +2691,21 @@ msgstr "కాలమండలం" msgid "Timezone not selected." msgstr "కాలమండలాన్ని ఎంచుకోలేదు." +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" + +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 +msgid "Two user ids or screen_names must be supplied." +msgstr "" + #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 #: actions/profilesettings.php:109 actions/register.php:398 @@ -1573,12 +2714,100 @@ msgstr "కాలమండలాన్ని ఎంచుకోలేదు." msgid "URL of your homepage, blog, or profile on another site" msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" +#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "" + +#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 +#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 +#: actions/emailsettings.php:144 actions/imsettings.php:118 +#: actions/recoverpassword.php:39 actions/smssettings.php:143 +#: actions/twittersettings.php:108 actions/avatarsettings.php:258 +#: actions/emailsettings.php:242 actions/grouplogo.php:317 +#: actions/imsettings.php:214 actions/recoverpassword.php:44 +#: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 +msgid "Unexpected form submission." +msgstr "" + +#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "" + +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" + +#: ../actions/finishremotesubscribe.php:58 +#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 +msgid "Unknown version of OMB protocol." +msgstr "" + +#: ../lib/util.php:269 lib/util.php:285 +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" + #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 #, php-format msgid "Unrecognized address type %s" msgstr "గుర్తుతెలియని చిరునామా రకం %s" +#: ../actions/showstream.php:209 actions/showstream.php:219 +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "" + +#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 +#: actions/postnotice.php:45 actions/updateprofile.php:46 +#: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 +msgid "Unsupported OMB version" +msgstr "" + +#: ../actions/avatar.php:105 actions/profilesettings.php:342 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "" + +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" + +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -1586,6 +2815,24 @@ msgstr "గుర్తుతెలియని చిరునామా రక msgid "Upload" msgstr "ఎగుమతించు" +#: ../actions/avatar.php:27 +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" + +#: ../lib/settingsaction.php:91 +msgid "Upload a new profile image" +msgstr "" + +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" + #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 @@ -1593,6 +2840,11 @@ msgstr "ఎగుమతించు" msgid "Used only for updates, announcements, and password recovery" msgstr "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం." +#: ../actions/finishremotesubscribe.php:86 +#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 +msgid "User being listened to doesn't exist." +msgstr "" + #: ../actions/all.php:41 ../actions/avatarbynickname.php:48 #: ../actions/foaf.php:47 ../actions/replies.php:41 #: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 @@ -1625,6 +2877,12 @@ msgstr "వాడుకరి పేరు" msgid "User not found." msgstr "వాడుకరి దొరకలేదు." +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" + #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -1645,6 +2903,12 @@ msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష msgid "Wrong image type for '%s'" msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" +#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#, php-format +msgid "Wrong size image at '%s'" +msgstr "" + #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 @@ -1659,11 +2923,27 @@ msgstr "అవును" msgid "You already have this OpenID!" msgstr "ఈ ఓపెన్ఐడీ మీకు ఇప్పటికే ఉంది!" +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" + +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 +msgid "You are not friends with the specified user." +msgstr "" + #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "మీ సంకేతపదాన్ని ఇక్కడ మార్చుకోవచ్చు. మంచిది ఎంచుకోండి!" @@ -1672,10 +2952,84 @@ msgstr "మీ సంకేతపదాన్ని ఇక్కడ మార్ msgid "You can create a new account to start posting notices." msgstr "సందేశాలు పంపించడానికి మీరు కొత్త ఖాతా సృష్టించుకోవచ్చు." +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." msgstr "\"తొలగించు\" అనే బొత్తంపై నొక్కడం ద్వారా ఒక ఓపెన్ఐడీని మీ ఖాతా నుండి తొలగించుకోవచ్చు." +#: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" + +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" + +#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 +#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "" + +#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 +#: actions/finishopenidlogin.php:38 actions/register.php:68 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 +msgid "You can't register if you don't agree to the license." +msgstr "" + +#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 +msgid "You did not send us that profile" +msgstr "" + +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "" + +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" + +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "మిమ్మల్ని గుర్తించాం. కొత్త సంకేతపదాన్ని క్రింద ఇవ్వండి." @@ -1692,8 +3046,12 @@ msgstr "ఈ సర్వరులో మీ పేరు, లేదా నమౌ #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ " +"ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -1771,15 +3129,410 @@ msgstr "స్పందించు" msgid "same as password above" msgstr "పై సంకేతపదం వలెనే" +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 +msgid "unsupported file type" +msgstr "" + #: ../lib/util.php:1309 lib/util.php:1443 msgid "« After" msgstr "« తర్వాత" +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/disfavor.php:55 actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" + +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 +msgid "Could not delete favorite." +msgstr "" + +#: actions/disfavor.php:72 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" + +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" + +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "" + +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" + +#: actions/favor.php:70 +msgid "Disfavor" +msgstr "" + +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 +#, php-format +msgid "%s favorite notices" +msgstr "" + +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 +#, php-format +msgid "Feed of favorite notices of %s" +msgstr "" + +#: actions/inbox.php:28 actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "" + +#: actions/inbox.php:30 actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "" + +#: actions/inbox.php:53 actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" + +#: actions/invite.php:178 actions/invite.php:213 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" + +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 +msgid "Automatically login in the future; " +msgstr "" + +#: actions/login.php:122 actions/login.php:264 +msgid "For security reasons, please re-enter your " +msgstr "" + +#: actions/login.php:126 actions/login.php:268 +msgid "Login with your username and password. " +msgstr "" + +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 +msgid "That's too long. Max message size is 140 chars." +msgstr "" + +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "" + +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" + +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 +msgid "No such user" +msgstr "" + #: actions/newmessage.php:117 actions/newmessage.php:67 #: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "కొత్త సందేశం" +#: actions/noticesearch.php:95 actions/noticesearch.php:146 +msgid "Notice without matching profile" +msgstr "" + +#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgstr "" + +#: actions/openidsettings.php:46 actions/openidsettings.php:96 +msgid "If you want to add an OpenID to your account, " +msgstr "" + +#: actions/openidsettings.php:74 +msgid "Removing your only OpenID would make it impossible to log in! " +msgstr "" + +#: actions/openidsettings.php:87 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account " +msgstr "" + +#: actions/outbox.php:28 actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:30 actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:53 actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" + +#: actions/profilesettings.php:27 actions/profilesettings.php:69 +msgid "You can update your personal profile info here " +msgstr "" + +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +msgid "User without matching profile" +msgstr "" + +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. " +msgstr "" + +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" +msgstr "" + +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " +msgstr "" + +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 +msgid "Your nickname on this server, " +msgstr "" + +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 +msgid "Instructions for recovering your password " +msgstr "" + +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 +msgid "New password successfully saved. " +msgstr "" + +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/register.php:216 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" + +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " +msgstr "" + +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#, php-format +msgid "To subscribe, you can [login](%%action.login%%)," +msgstr "" + +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 +#, php-format +msgid "Feed for favorites of %s" +msgstr "" + +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showmessage.php:33 actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:42 actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:61 actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:66 actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/showstream.php:154 +msgid "Send a message" +msgstr "" + +#: actions/smssettings.php:312 actions/smssettings.php:464 +#, php-format +msgid "Mobile carrier for your phone. " +msgstr "" + +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 +msgid "Direct Messages You've Sent" +msgstr "" + +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "" + +#: actions/twitapidirect_messages.php:128 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "" + +#: actions/twitapidirect_messages.php:138 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" + +#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" + +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "" + +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "" + +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 +#, php-format +msgid "%s added your notice as a favorite" +msgstr "" + +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" + +#: actions/twittersettings.php:27 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" + #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 msgid "Twitter settings" @@ -1790,6 +3543,110 @@ msgstr "ట్విట్టర్ అమరికలు" msgid "Twitter Account" msgstr "ట్విట్టర్ ఖాతా" +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 +msgid "Current verified Twitter account." +msgstr "" + +#: actions/twittersettings.php:63 +msgid "Twitter Username" +msgstr "" + +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 +msgid "No spaces, please." +msgstr "" + +#: actions/twittersettings.php:67 +msgid "Twitter Password" +msgstr "" + +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" + +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 +msgid "Could not verify your Twitter credentials!" +msgstr "" + +#: actions/twittersettings.php:137 +#, php-format +msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgstr "" + +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 +msgid "Unable to save your Twitter settings!" +msgstr "" + +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 +msgid "Twitter settings saved." +msgstr "" + +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 +msgid "That is not your Twitter account." +msgstr "" + +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 +msgid "Couldn't remove Twitter user." +msgstr "" + +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 +msgid "Twitter account removed." +msgstr "" + +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 +msgid "Couldn't save Twitter preferences." +msgstr "" + +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 +msgid "Twitter preferences saved." +msgstr "" + +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " +msgstr "" + +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " +msgstr "" + +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " +msgstr "" + #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 #: lib/channel.php:138 lib/channel.php:158 msgid "Command results" @@ -1803,6 +3660,27 @@ msgstr "ఆదేశం పూర్తయ్యింది" msgid "Command failed" msgstr "ఆదేశం విఫలమైంది" +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: classes/Command.php:96 classes/Command.php:113 +#, php-format +msgid "Subscriptions: %1$s\n" +msgstr "" + +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" + +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + #: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 #: lib/command.php:182 lib/command.php:315 #, php-format @@ -1821,26 +3699,160 @@ msgstr "పూర్తిపేరు: %s" msgid "Location: %s" msgstr "ప్రాంతం: %s" +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "" + #: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 #: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "గురించి: %s" +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 +#, php-format +msgid "Message too long - maximum is 140 characters, you sent %d" +msgstr "" + +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." +msgstr "" + +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" + +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." +msgstr "" + +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + #: classes/Command.php:344 classes/Command.php:392 msgid "Commands:\n" msgstr "ఆదేశాలు:\n" +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:253 lib/mail.php:512 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" + +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " +msgstr "" + +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" +msgstr "" + #: lib/personal.php:66 lib/personalgroupnav.php:114 #: lib/personalgroupnav.php:115 msgid "User" msgstr "వాడుకరి" +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "" + #: lib/personal.php:76 lib/personalgroupnav.php:124 #: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "మీకు వచ్చిన సందేశాలు" +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" + #: lib/personal.php:81 lib/personalgroupnav.php:129 #: lib/personalgroupnav.php:130 msgid "Your sent messages" @@ -1850,13 +3862,32 @@ msgstr "మీరు పంపిన సందేశాలు" msgid "Twitter" msgstr "ట్విట్టర్" +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 +msgid "Twitter integration options" +msgstr "" + +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 +msgid "To" +msgstr "" + +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 +msgid "Could not parse message." +msgstr "" + #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s మరియు మిత్రులు" +#: actions/avatarsettings.php:76 +msgid "You can upload your personal avatar." +msgstr "" + #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -1880,6 +3911,35 @@ msgstr "అసలు" msgid "Preview" msgstr "మునుజూపు" +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +msgid "There was a problem with your session token. " +msgstr "" + +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -1887,21 +3947,75 @@ msgstr "మునుజూపు" msgid "Lost our file." msgstr "అటువంటి సందేశమేమీ లేదు." +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 +msgid "No profile specified." +msgstr "" + +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 +msgid "No profile with that ID." +msgstr "" + #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "అటువంటి వాడుకరి లేరు." +#: actions/block.php:129 +msgid "Are you sure you want to block this user? " +msgstr "" + #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + #: actions/confirmaddress.php:159 -#, php-format, fuzzy +#, fuzzy, php-format msgid "The address \"%s\" has been " msgstr "ఆ చిరునామాని తొలగించాం." +#: actions/deletenotice.php:73 +msgid "You are about to permanently delete a notice. " +msgstr "" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "" + +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -1925,6 +4039,24 @@ msgstr "పేరు లేదు." msgid "No such group" msgstr "అటువంటి సందేశమేమీ లేదు." +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "" + +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + +#: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 +msgid "Nickname must have only lowercase letters " +msgstr "" + #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy @@ -1942,10 +4074,23 @@ msgid "Options saved." msgstr "అమరికలు భద్రమయ్యాయి." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Awaiting confirmation on this address. " msgstr "నిర్ధారణ సంకేతంలో పొరపాటు." +#: actions/emailsettings.php:139 actions/smssettings.php:150 +msgid "Make a new email address for posting to; " +msgstr "" + +#: actions/emailsettings.php:157 +msgid "Send me email when someone " +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -1956,12 +4101,38 @@ msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేక msgid "A confirmation code was sent to the email address you added. " msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" + #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "విషయం లేదు!" +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -1976,32 +4147,84 @@ msgstr "తర్వాత" msgid "Before" msgstr "ఇంతక్రితం" +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" +msgstr "" + #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "%s యొక్క మిత్రుల ఫీడు" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." +#: actions/facebooksettings.php:65 +msgid "There was a problem saving your sync preferences!" +msgstr "" + #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "అభిరుచులు భద్రమయ్యాయి." +#: actions/facebooksettings.php:90 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: actions/facebooksettings.php:97 +msgid "Send \"@\" replies to Facebook." +msgstr "" + #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "ప్రొఫైలు" +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "అభిరుచులు" +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 +msgid "Disfavor favorite" +msgstr "" + #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -2011,10 +4234,48 @@ msgid "Popular notices" msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/favorited.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Popular notices, page %d" msgstr "అటువంటి సందేశమేమీ లేదు." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" + +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 +msgid "Featured users" +msgstr "" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" + +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" + +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" + +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -2027,6 +4288,36 @@ msgstr "అవతారాన్ని తాజాకరించాం." msgid "Failed updating logo." msgstr "అవతారపు తాజాకరణ విఫలమైంది." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -2034,25 +4325,63 @@ msgid "Create a new group" msgstr "కొత్త ఖాతా సృష్టించుకోండి" #: actions/groupsearch.php:57 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " +"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "వ్యక్తుల అన్వేషణ" +#: actions/imsettings.php:70 +msgid "You can send and receive notices through " +msgstr "" + +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + +#: actions/imsettings.php:147 +msgid "Send me replies through Jabber/GTalk " +msgstr "" + #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "నిర్ధారణ సంకేతం లేదు." +#: actions/joingroup.php:65 actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "" + #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "" + +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "" + +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "" + #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -2061,16 +4390,48 @@ msgstr "మీరు ఇప్పటికే లోనికి ప్రవే msgid "No such group." msgstr "అటువంటి సందేశమేమీ లేదు." +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "" + +#: actions/leavegroup.php:100 +msgid "You may not leave a group while you are its administrator." +msgstr "" + +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" + #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" + #: actions/newgroup.php:53 msgid "New group" msgstr "కొత్త గుంపు" +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -2088,12 +4449,35 @@ msgstr "చందాని సృష్టించలేకపోయాం." msgid "That's too long. " msgstr "ఆ ఫైలు చాలా పెద్దగా ఉంది." +#: actions/newmessage.php:134 +msgid "Don't send a message to yourself; " +msgstr "" + #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "సందేశాలు" +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 +msgid "Ajax Error" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" + #: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "ఓపెన్ఐడీ ప్రవేశం" @@ -2107,10 +4491,23 @@ msgstr "ఓపెన్ఐడీని తొలగించండి" msgid "Other Settings" msgstr "ఇతర అమరికలు" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" + +#: actions/othersettings.php:93 +msgid "URL Auto-shortening" +msgstr "" + #: actions/othersettings.php:112 msgid "Service" msgstr "సేవ" +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "" + #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -2129,19 +4526,39 @@ msgid "Password change" msgstr "సంకేతపదం భద్రమయ్యింది." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:" +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "" + +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" + #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "అజ్ఞాత ప్రొఫైలు" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + +#: actions/profilesettings.php:144 +msgid "Automatically subscribe to whoever " +msgstr "" + #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" @@ -2153,15 +4570,50 @@ msgstr "ప్రొఫైలుని భద్రపరచలేకున్ #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Public timeline, page %d" msgstr "ప్రజా కాలరేఖ" +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "ప్రజా వాహిని ఫీడు" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 +msgid "Sorry, only invited people can register." +msgstr "" + +#: actions/register.php:149 +msgid "You can't register if you don't " +msgstr "" + +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " @@ -2192,23 +4644,57 @@ msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష msgid " except this private data: password, " msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." +#: actions/register.php:471 +#, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgstr "" + +#: actions/register.php:495 +msgid "(You should receive a message by email " +msgstr "" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" + #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "%sకి స్పందనలు" +#: actions/showfavorites.php:79 +#, php-format +msgid "%s favorite notices, page %d" +msgstr "" + #: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "%s గుంపు" +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "అటువంటి సందేశమేమీ లేదు." +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -2221,8 +4707,13 @@ msgstr "అటువంటి సందేశమేమీ లేదు." msgid "Note" msgstr "సందేశాలు" +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group" msgstr "%s యొక్క సందేశముల ఫీడు" @@ -2233,11 +4724,31 @@ msgstr "%s యొక్క సందేశముల ఫీడు" msgid "Members" msgstr "సభ్యులు" +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" +msgstr "" + #: actions/showgroup.php:370 actions/showgroup.php:350 #: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "అందరు సభ్యులూ" +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient " +msgstr "" + #: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" @@ -2255,26 +4766,65 @@ msgstr "ప్రొఫైలు" msgid "User profile" msgstr "వాడుకరికి ప్రొఫైలు లేదు." +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + #: actions/showstream.php:317 actions/showstream.php:309 #: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "వాడుకరి చర్యలు" +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 +msgid "Send a direct message to this user" +msgstr "" + +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 +msgid "Message" +msgstr "" + #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "చందాదార్లు" +#: actions/showstream.php:533 lib/profileaction.php:235 +msgid "All groups" +msgstr "" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" +#: actions/smssettings.php:162 +msgid "Send me notices through SMS; " +msgstr "" + #: actions/smssettings.php:335 #, fuzzy msgid "A confirmation code was sent to the phone number you added. " msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" +#: actions/smssettings.php:453 actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" + +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "" + #: actions/subedit.php:83 #, fuzzy msgid "Could not save subscription." @@ -2295,16 +4845,39 @@ msgstr "చందాదార్లు" msgid "%s subscribers" msgstr "%s చందాదార్లు" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + +#: actions/subscribers.php:63 +msgid "These are the people who listen to " +msgstr "" + +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who " +msgstr "" + #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "అన్ని చందాలు" #: actions/subscriptions.php:54 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions, page %d" msgstr "అన్ని చందాలు" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices " +msgstr "" + +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose " +msgstr "" + #: actions/subscriptions.php:122 actions/subscriptions.php:124 #: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy @@ -2312,10 +4885,15 @@ msgid "Jabber" msgstr "Jabber ID లేదు." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "%s యొక్క మైక్రోబ్లాగు" +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -2326,27 +4904,69 @@ msgstr "లోనికి ప్రవేశించలేదు." msgid "No id argument." msgstr "అటువంటి పత్రమేమీ లేదు." +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:164 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "%s యొక్క మైక్రోబ్లాగు" +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" + +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" + #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "అభ్యర్థనలేమీ కనబడలేదు!" +#: actions/twittersettings.php:71 +msgid "Add your Twitter account to automatically send " +msgstr "" + #: actions/twittersettings.php:119 actions/twittersettings.php:122 #, fuzzy msgid "Twitter user name" @@ -2362,8 +4982,12 @@ msgstr "ట్విట్టర్ సంకేతపదం" msgid "Twitter Friends" msgstr "ట్విట్టర్ అమరికలు" +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + #: actions/twittersettings.php:341 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information " msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." @@ -2372,6 +4996,14 @@ msgstr "ఈమెయిల్ నిర్ధారణని తొలగిం msgid "Error removing the block." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు." +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "" + +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "" + #: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" @@ -2383,12 +5015,28 @@ msgstr "చందాదార్లు" msgid "%s groups" msgstr "%s గుంపులు" +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" @@ -2409,10 +5057,42 @@ msgstr "ఇతర ఎంపికలు" msgid "%s - %s" msgstr "%s - %s" +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "ఖాతా" +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "" + +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -2433,6 +5113,10 @@ msgstr "సహాయం" msgid "Site notice" msgstr "కొత్త సందేశం" +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -2443,12 +5127,39 @@ msgstr "కొత్త సందేశం" msgid "Secondary site navigation" msgstr "చందాలు" +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +msgid "All " +msgstr "" + +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "అటువంటి వాడుకరి లేరు." +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block" +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -2467,10 +5178,28 @@ msgstr "ప్రజా" msgid "Favor this notice" msgstr "అటువంటి సందేశమేమీ లేదు." +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "" + #: lib/galleryaction.php:131 msgid "All" msgstr "అన్నీ" +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "" + +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + #: lib/galleryaction.php:139 lib/galleryaction.php:141 #: lib/galleryaction.php:143 msgid "Go" @@ -2494,17 +5223,45 @@ msgstr "మీ గురించి మరియు మీ ఆసక్తు #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 msgid "Group" msgstr "గుంపు" +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + #: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "చిహ్నం" +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -2530,16 +5287,63 @@ msgstr "వాడుకరిపేరు లేదా సంకేతపదం msgid "Sign up for a new account" msgstr "కొత్త ఖాతా సృష్టించుకోండి" +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + +#: lib/mail.php:236 +#, php-format +msgid "%1$s is now listening to " +msgstr "" + #: lib/mail.php:254 lib/mail.php:253 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Location: %s\n" msgstr "ప్రాంతం: %s\n" #: lib/mail.php:256 lib/mail.php:255 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Homepage: %s\n" msgstr "హోమ్ పేజీ\n" +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + +#: lib/mail.php:461 lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:465 +#, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" + +#: lib/mail.php:555 +#, php-format +msgid "%1$s just added your notice from %2$s" +msgstr "" + +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +msgid "From" +msgstr "" + +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "" + #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -2556,21 +5360,68 @@ msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షర msgid "in reply to" msgstr "దీనికి స్పందనగా..." +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "" + #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "స్పందించు" +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "" + #: lib/noticelist.php:474 actions/avatarsettings.php:148 #: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "తొలగించు" +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "" + #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "ప్రజా" +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" + +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -2581,11 +5432,35 @@ msgstr "వ్యక్తుల అన్వేషణ" msgid "Notice" msgstr "సందేశాలు" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" +msgstr "" + #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People subscribed to %s" msgstr "%sకి స్పందనలు" +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -2597,24 +5472,40 @@ msgstr "వాడుకరికి ప్రొఫైలు లేదు." msgid "Subscribe to this user" msgstr "చందాదార్లు" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "అటువంటి వాడుకరి లేరు." +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 +msgid "Unblock" +msgstr "" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s యొక్క మిత్రుల ఫీడు" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s యొక్క మిత్రుల ఫీడు" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s యొక్క మిత్రుల ఫీడు" @@ -2623,30 +5514,106 @@ msgstr "%s యొక్క మిత్రుల ఫీడు" msgid "You and friends" msgstr "%s మరియు మిత్రులు" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "అవతారాన్ని తాజాకరించాం." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "%s యొక్క మైక్రోబ్లాగు" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను " +"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "\"%s\"కై అన్వేషణ వాహిని" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -2663,9 +5630,32 @@ msgstr "ప్రజా వాహిని ఫీడు" msgid "Public Stream Feed (Atom)" msgstr "ప్రజా వాహిని ఫీడు" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, ఫోన్ నంబర్." #: actions/showgroup.php:378 actions/showgroup.php:424 @@ -2674,31 +5664,47 @@ msgstr "ఈ అంతరంగిక భోగట్టా తప్ప: సం msgid "Created" msgstr "సృష్టించు" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "అటువంటి సందేశమేమీ లేదు." #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "ప్రొఫైలు" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -2711,11 +5717,46 @@ msgstr "అవతారం" msgid "Edit profile settings" msgstr "ఫ్రొఫైలు అమరికలు" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!" +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -2729,41 +5770,278 @@ msgstr "ఆ నిర్ధారణా సంకేతం మీది కా msgid "No such user!" msgstr "అటువంటి వాడుకరి లేరు." +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి జతచేసుకోండి." +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"మీకు ఇప్పటికే ఖాతా ఉంటే, మీ వాడుకరిపేరు మరియు సంకేతపదంతో లోనికి ప్రవేశించి మీ ఓపెన్ఐడీని మీ ఖాతాకి " +"జతచేసుకోండి." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "వెతుకు" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." msgstr "అటువంటి పత్రమేమీ లేదు." +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + #: actions/block.php:150 #, fuzzy msgid "Block this user from this group" msgstr "అటువంటి వాడుకరి లేరు." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "వాడుకరికి ప్రొఫైలు లేదు." #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s మరియు మిత్రులు" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -2779,26 +6057,56 @@ msgstr "ప్రాంతం" msgid "Do not delete this notice" msgstr "ఈ నోటీసుని తొలగించలేము." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "అవతారపు సమాచారాన్ని భద్రపరచలేకున్నాం" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -2809,22 +6117,69 @@ msgstr "కొత్త సందేశం" msgid "No notice" msgstr "కొత్త సందేశం" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "సరైన పేరు కాదు." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." msgstr "వాడుకరికి ప్రొఫైలు లేదు." +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + #: actions/groupblock.php:136 actions/groupmembers.php:311 #: actions/groupmembers.php:314 #, fuzzy msgid "Block user from group" msgstr "అటువంటి వాడుకరి లేరు." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -2833,41 +6188,247 @@ msgstr "అటువంటి వాడుకరి లేరు." msgid "Couldn't update your design." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "అభిరుచులు భద్రమయ్యాయి." +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "ఫలితాలేమీ లేవు" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "వాడుకరికి ప్రొఫైలు లేదు." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"ఒకే వాడుకరి ఖాతాతో చాలా సైట్లలోనికి ప్రవేశించే వీలుని [ఓపెన్ఐడీ](%%doc.openid%%) కల్పిస్తుంది. మీ " +"ఓపెన్ఐడీలను ఇక్కడ సంభాళించుకోండి." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "ఫ్రొఫైలు అమరికలు" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." msgstr "మీరు మీ సంకేతపదాన్ని మర్చిపోతే, మీ ఖాతాలో భద్రపరచిన ఈమెయిలుకి కొత్తదాన్ని పంపించుకోవచ్చు." #: actions/recoverpassword.php:158 @@ -2890,43 +6451,172 @@ msgstr "నిర్ధారణ సంకేతంలో పొరపాటు. msgid "Subscribe to a remote user" msgstr "చందాదార్లు" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "అటువంటి సందేశమేమీ లేదు." +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "అటువంటి వాడుకరి లేరు." +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" + #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" @@ -2935,23 +6625,44 @@ msgstr "%s యొక్క సందేశముల ఫీడు" msgid "This status is already a favorite!" msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "వాడుకరిని తాజాకరించలేకున్నాం." +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "" + #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%s యొక్క మైక్రోబ్లాగు" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -2962,40 +6673,127 @@ msgstr "అన్ని చందాలు" msgid "Profile design" msgstr "ఫ్రొఫైలు అమరికలు" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "వాడుకరికి ప్రొఫైలు లేదు." +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "జోడింపులు" +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "ప్రొఫైలు" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "ఎగుమతించు" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "సంకేతపదం మార్చుకోండి" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -3011,16 +6809,127 @@ msgstr "వెతుకు" msgid "Links" msgstr "ప్రవేశించండి" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "అటువంటి వాడుకరి లేరు." #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "అటువంటి వాడుకరి లేరు." +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -3036,19 +6945,39 @@ msgstr "వాడుకరి" msgid "Search help" msgstr "వెతుకు" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "హోమ్ పేజీ URL సరైనది కాదు." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "అటువంటి సందేశమేమీ లేదు." +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." @@ -3057,8 +6986,12 @@ msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ స msgid "Could not unfollow user: User not found." msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." @@ -3068,7 +7001,7 @@ msgid "You are already a member of that group." msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" @@ -3078,21 +7011,79 @@ msgid "You are not a member of this group." msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "%s గుంపులు" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "అవతారాన్ని తాజాకరించాం." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%s యొక్క మైక్రోబ్లాగు" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + #: actions/getfile.php:75 #, fuzzy msgid "No such file." @@ -3103,18 +7094,49 @@ msgstr "అటువంటి సందేశమేమీ లేదు." msgid "Cannot read file." msgstr "అటువంటి సందేశమేమీ లేదు." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%s యొక్క మైక్రోబ్లాగు" + #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "హోమ్ పేజీ URL సరైనది కాదు." +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "%s యొక్క మైక్రోబ్లాగు" + #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణలు" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "అనుసంధానించు" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" @@ -3124,39 +7146,76 @@ msgid "Describe yourself and your interests" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "%s యొక్క సందేశముల ఫీడు" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "%s యొక్క సందేశముల ఫీడు" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "%sకి స్పందనలు" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "%s యొక్క మిత్రుల ఫీడు" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "%s యొక్క మిత్రుల ఫీడు" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "%s యొక్క మిత్రుల ఫీడు" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "%s యొక్క సందేశముల ఫీడు" +msgstr "%s గుంపు" #: actions/shownotice.php:90 #, fuzzy @@ -3169,32 +7228,110 @@ msgid "SMS is not available." msgstr "హోమ్ పేజీ URL సరైనది కాదు." #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s యొక్క సందేశముల ఫీడు" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "'%s' అనే అవతారపు URL తప్పు" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" +#: lib/action.php:435 +msgid "Connect to services" +msgstr "" + #: lib/action.php:785 #, fuzzy msgid "Site content license" msgstr "కొత్త సందేశం" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "ఈ పేరుతో కొత్త వాడుకరిని సృష్టించు" +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "%sకి స్పందనలు" @@ -3203,33 +7340,138 @@ msgstr "%sకి స్పందనలు" msgid "Error saving notice." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "నిర్ధారణ సంకేతం లేదు." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "%s యొక్క సందేశముల ఫీడు" +msgstr "కొత్త సందేశం" + +#: lib/mail.php:554 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " నుండి " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "వాడుకరిని తాజాకరించలేకున్నాం." + #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "కొత్త సందేశం" - diff --git a/locale/tr/LC_MESSAGES/statusnet.mo b/locale/tr/LC_MESSAGES/statusnet.mo index 24fda5904ae269672d76cb00b014aea5b75c3e0f..7c579c44a2af1dc1d97abff45e046ab5dff8d59b 100644 GIT binary patch delta 12728 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 bFV-_{)G*(mv6*9aOIfMIPrMcgJsJPM>2afX delta 12277 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 R>O|k{&Mzip|8g|_{{ScpH{k#P diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index dbf08e9ff2..ec8b3fd9a4 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -1,21 +1,16 @@ # Translation of StatusNet to Turkish # # -- -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-# -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:24:37+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:44:40+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: out-statusnet\n" @@ -29,8 +24,60 @@ msgstr " \"%s\" için arama sonuçları" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr "bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon numarası." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " +"numarası." + +#: ../actions/showstream.php:400 ../lib/stream.php:109 +#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 +msgid " from " +msgstr "" + +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#, php-format +msgid "%1$s / Updates replying to %2$s" +msgstr "" + +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "" + +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -40,8 +87,27 @@ msgstr "%1$s %2$s'da durumunuzu takip ediyor" #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n\n %3$s\n\nKendisini durumsuz bırakmayın!,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n" +"\n" +"\t%3$s\n" +"\n" +"Kendisini durumsuz bırakmayın!,\n" +"%4$s.\n" + +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -50,6 +116,13 @@ msgstr "%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n\n %3$s\n\nKen msgid "%1$s's status on %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " +#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 +#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "" + #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format @@ -71,16 +144,52 @@ msgstr "%s Genel Durum Mesajları" msgid "%s and friends" msgstr "%s ve arkadaşları" +#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "" + #: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "%s durum" +#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "" + +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "" + +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" + #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından hazırlanan anında mesajlaşma ağıdır. " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " +"hazırlanan anında mesajlaşma ağıdır. " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -98,7 +207,14 @@ msgstr "Katkı sunanlar tam ad veya takma ad ile atfedilmelidir." #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin verilmez" +msgstr "" +"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " +"verilmez" + +#: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -111,11 +227,110 @@ msgstr "6 veya daha fazla karakter" msgid "6 or more characters, and don't forget it!" msgstr "Unutmayın, 6 veya daha fazla karakter" +#: ../actions/register.php:154 actions/register.php:168 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 +msgid "6 or more characters. Required." +msgstr "" + #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size mesaj yollanabilmesi için onaylamanız gerekmektedir." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " +"mesaj yollanabilmesi için onaylamanız gerekmektedir." + +#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/smssettings.php:216 actions/smssettings.php:224 +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 +#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 +#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 +#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 +#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 +#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 +#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 +#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 +#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 +#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 +#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 +#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 +#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 +#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 +#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "" + +#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 +#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 +#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 +#: ../actions/twitapidirect_messages.php:49 +#: ../actions/twitapidirect_messages.php:56 +#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 +#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 +#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 +#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 +#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 +#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 +#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 +#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 +#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 +#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 +#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 +#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 +#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 +msgid "API method under construction." +msgstr "" #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 @@ -146,6 +361,11 @@ msgstr "Ekle" msgid "Add OpenID" msgstr "OpenID ekle" +#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 +#: lib/accountsettingsaction.php:117 +msgid "Add or remove OpenIDs" +msgstr "" + #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 @@ -155,6 +375,11 @@ msgstr "OpenID ekle" msgid "Address" msgstr "Adres" +#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" + #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" @@ -186,6 +411,12 @@ msgstr "Zaten giriş yapılmış." msgid "Already subscribed!." msgstr "Zaten abone olunmuş!." +#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "" + #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 @@ -197,7 +428,15 @@ msgstr "Takip isteğini onayla" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Gelecekte kendiliğinden giriş yap, paylaşılan bilgisayarlar için değildir!" +msgstr "" +"Gelecekte kendiliğinden giriş yap, paylaşılan bilgisayarlar için değildir!" + +#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -216,8 +455,24 @@ msgstr "Avatar güncellendi." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Bu adresten onay bekleniyor. Jabber/Google Talk hesabınızı ayrıntılı bilgi içeren mesajı almak için kontrol edin. (%s'u arkadaş listenize eklediniz mi?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Bu adresten onay bekleniyor. Jabber/Google Talk hesabınızı ayrıntılı bilgi " +"içeren mesajı almak için kontrol edin. (%s'u arkadaş listenize eklediniz mi?)" + +#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" + +#: ../actions/smssettings.php:58 actions/smssettings.php:58 +#: actions/smssettings.php:111 actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "" #: ../lib/util.php:1318 lib/util.php:1452 #, fuzzy @@ -241,6 +496,11 @@ msgstr "Hakkında" msgid "Bio is too long (max 140 chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." +#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "" + #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format @@ -274,16 +534,37 @@ msgstr "OpenID işlemlerinde hata oluştu." msgid "Cannot normalize that Jabber ID" msgstr "Jabber işlemlerinde bir hata oluştu." +#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "" + #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Değiştir" +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "" + #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "Parolayı değiştir" +#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "" + +#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "" + #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 #: actions/profilesettings.php:182 actions/recoverpassword.php:187 @@ -311,11 +592,36 @@ msgstr "Adresi Onayla" msgid "Confirmation cancelled." msgstr "Onaylama iptal edildi." +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "" + #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "Onay kodu bulunamadı." +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" + #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -339,6 +645,21 @@ msgstr "İletişim" msgid "Could not create OpenID form: %s" msgstr "OpenID formu yaratılamadı: %s" +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "" + +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" + #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format @@ -355,6 +676,24 @@ msgstr "Avatar bilgisi kaydedilemedi" msgid "Could not save new profile info" msgstr "Yeni profil bilgisi kaydedilemedi" +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "" + +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 +msgid "Could not subscribe." +msgstr "" + +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" + +#: ../actions/finishremotesubscribe.php:99 +#: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 +msgid "Couldn't convert request tokens to access tokens." +msgstr "" + #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 #: actions/confirmaddress.php:84 actions/emailsettings.php:252 @@ -370,6 +709,16 @@ msgstr "Eposta onayı silinemedi." msgid "Couldn't delete subscription." msgstr "Abonelik silinemedi." +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 +msgid "Couldn't find any statuses." +msgstr "" + +#: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 +#: actions/remotesubscribe.php:178 +msgid "Couldn't get a request token." +msgstr "" + #: ../actions/emailsettings.php:205 ../actions/imsettings.php:187 #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 @@ -393,6 +742,22 @@ msgstr "Yeni abonelik eklenemedi." msgid "Couldn't save profile." msgstr "Profil kaydedilemedi." +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "" + +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -440,16 +805,38 @@ msgstr "OpenID kullanıcısı için hesap oluşturuluyor" msgid "Current confirmed Jabber/GTalk address." msgstr "Onaylanmış Jabber/Gtalk adresi." +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" + +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" + #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "Şu anda" +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Cevap eklenirken veritabanı hatası: %s" +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "" + #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -466,6 +853,16 @@ msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" msgid "Email" msgstr "Eposta" +#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 +msgid "Email Address" +msgstr "" + +#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "" + #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." @@ -475,12 +872,32 @@ msgstr "Eposta adresi zaten var." msgid "Email address confirmation" msgstr "Eposta adresi onayı" +#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "" + +#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 +msgid "Email addresses" +msgstr "" + #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Bir takma ad veya eposta adresi girin." +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" + +#: ../actions/userauthorization.php:137 actions/userauthorization.php:144 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 +msgid "Error authorizing token" +msgstr "" + #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 #: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 #: actions/finishopenidlogin.php:325 @@ -593,9 +1010,29 @@ msgstr "%s için arkadaş güncellemeleri RSS beslemesi" msgid "Feed for replies to %s" msgstr "Cevaplar için RSS Beslemesi: %s" +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 +#, php-format +msgid "Feed for tag %s" +msgstr "" + +#: ../lib/searchaction.php:105 lib/searchaction.php:105 +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "" + +#: ../lib/searchaction.php:101 lib/searchaction.php:101 +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "" + #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı ve parolanızı tekrar giriniz." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı " +"ve parolanızı tekrar giriniz." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -657,6 +1094,17 @@ msgstr "Başlangıç Sayfası" msgid "Homepage is not a valid URL." msgstr "Başlangıç sayfası adresi geçerli bir URL değil." +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "" + +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "" + #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -669,12 +1117,40 @@ msgstr "IM Ayarları" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş yapıp hesabınızı OpenID'nize bağlayabilirsiniz." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş " +"yapıp hesabınızı OpenID'nize bağlayabilirsiniz." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Eğer hesabınıza bir OpenID eklemek istiyorsanız, aşağıdaki kutuya girin ve \"Add\" düğmesine tıklayın." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Eğer hesabınıza bir OpenID eklemek istiyorsanız, aşağıdaki kutuya girin ve " +"\"Add\" düğmesine tıklayın." + +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" + +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "" #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 @@ -690,8 +1166,12 @@ msgstr "Yanlış kullanıcı adı veya parola." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Hesabınıza eklemiş olduğunuz eposta adresine parolanızı geri getirmek için gerekli olan talimatlar yollanmıştır." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Hesabınıza eklemiş olduğunuz eposta adresine parolanızı geri getirmek için " +"gerekli olan talimatlar yollanmıştır." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -699,6 +1179,12 @@ msgstr "Hesabınıza eklemiş olduğunuz eposta adresine parolanızı geri getir msgid "Invalid avatar URL '%s'" msgstr "Geçersiz avatar URLi '%s'" +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "" + #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format @@ -732,6 +1218,16 @@ msgstr "Geçersiz durum adresi" msgid "Invalid profile URL '%s'." msgstr "'%s' geçersiz profil adresi." +#: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "" + +#: ../actions/finishremotesubscribe.php:77 +#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 +msgid "Invalid profile URL returned by server." +msgstr "" + #: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." @@ -747,11 +1243,38 @@ msgstr "Geçersiz büyüklük." msgid "Invalid username or password." msgstr "Geçersiz kullanıcı adı veya parola." +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "" + +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" + +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 +msgid "Invite" +msgstr "" + +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 +msgid "Invite new users" +msgstr "" + #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "nedurum.com [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) microbloglama yazılımının %s. versiyonunu kullanmaktadır." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"nedurum.com [GNU Affero General Public License](http://www.fsf.org/licensing/" +"licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) " +"microbloglama yazılımının %s. versiyonunu kullanmaktadır." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -761,8 +1284,24 @@ msgstr "Jabber ID başka bir kullanıcıya ait." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Jabber veya Gtalk adresi: \"KullaniciAdi@ornek.org\" gibi. Öncelikle %s, IM istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber veya Gtalk adresi: \"KullaniciAdi@ornek.org\" gibi. Öncelikle %s, IM " +"istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır." + +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "" + +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "" #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 @@ -817,20 +1356,44 @@ msgstr "Bir [OpenID](%%doc.openid%%) hesabı ile giriş yapın." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da [OpenID](%%action.openidlogin%%) ile giriş yapın." +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne " +"duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " +"[OpenID](%%action.openidlogin%%) ile giriş yapın." #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Çıkış" +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 +msgid "Longer name, preferably your \"real\" name" +msgstr "" + #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Parolamı unuttum veya kaybettim" +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "" + #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -842,6 +1405,14 @@ msgstr "Üyelik başlangıcı" msgid "Microblog by %s" msgstr "%s adli kullanicinin durum mesajlari" +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 @@ -850,6 +1421,25 @@ msgstr "%s adli kullanicinin durum mesajlari" msgid "My text and files are available under " msgstr "Durum mesajlarim ve dosyalarim şu lisans ile korunmaktadır: " +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "" + +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "" + #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -917,7 +1507,9 @@ msgstr "Takma ad kullanımda. Başka bir tane deneyin." #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk kullanılamaz. " +msgstr "" +"Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk " +"kullanılamaz. " #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -934,6 +1526,14 @@ msgstr "Takip etmek istediğiniz kullanıcının takma adı" msgid "Nickname or email" msgstr "Takma ad veya eposta" +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 +msgid "No" +msgstr "" + #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." @@ -945,6 +1545,16 @@ msgstr "JabberID yok." msgid "No authorization request!" msgstr "Yetkilendirme isteği yok!" +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" + +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 +msgid "No code entered" +msgstr "" + #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -959,10 +1569,23 @@ msgstr "Onay kodu yok." msgid "No content!" msgstr "İçerik yok!" +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "" + #: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 msgid "No id." msgstr "Kullanıcı numarası yok" +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -984,6 +1607,16 @@ msgstr "Takma ad yok" msgid "No pending confirmation to cancel." msgstr "İptal etmek için beklenen onay yok." +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 +msgid "No phone number." +msgstr "" + +#: ../actions/finishremotesubscribe.php:72 +#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 +msgid "No profile URL returned by server." +msgstr "" + #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 @@ -1002,6 +1635,26 @@ msgstr "İstek bulunamadı!" msgid "No results" msgstr "Sonuç yok" +#: ../actions/avatarbynickname.php:32 actions/avatarbynickname.php:32 +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "" + +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" + +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "" + #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1067,6 +1720,12 @@ msgstr "Böyle bir abonelik yok" msgid "No such user." msgstr "Böyle bir kullanıcı yok." +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" + #: ../lib/gallery.php:80 lib/gallery.php:85 msgid "Nobody to show!" msgstr "Gösterecek hiç kimse yok!" @@ -1076,6 +1735,21 @@ msgstr "Gösterecek hiç kimse yok!" msgid "Not a recovery code." msgstr "Bir geri alma kodu değil." +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 +msgid "Not a registered user." +msgstr "" + +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 +msgid "Not a supported data format." +msgstr "" + #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1086,6 +1760,12 @@ msgstr "Geçersiz bir Jabber ID" msgid "Not a valid OpenID." msgstr "Geçersiz bir OpenID." +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "" + #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." @@ -1129,6 +1809,18 @@ msgstr "Bu bir resim dosyası değil ya da dosyada hata var" msgid "Not authorized." msgstr "Yetkilendirilmemiş." +#: ../actions/finishremotesubscribe.php:38 +#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "" + +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 +msgid "Not found" +msgstr "" + #: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 #: ../actions/newnotice.php:29 ../actions/subscribe.php:28 #: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 @@ -1153,6 +1845,11 @@ msgstr "Giriş yapılmadı." msgid "Not subscribed!." msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" + #: ../actions/showstream.php:82 actions/showstream.php:82 #: actions/showstream.php:180 actions/showstream.php:187 #: actions/showstream.php:192 @@ -1173,6 +1870,14 @@ msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" msgid "Notices" msgstr "Durum mesajları" +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" + #: ../actions/password.php:39 actions/profilesettings.php:178 #: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" @@ -1189,6 +1894,11 @@ msgstr "OpenID" msgid "OpenID Account Setup" msgstr "OpenID Hesabı Kurulumu" +#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 +msgid "OpenID Auto-Submit" +msgstr "" + #: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 @@ -1235,6 +1945,11 @@ msgstr "OpenID kaldırıldı." msgid "OpenID settings" msgstr "OpenID ayarları" +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "" + #: ../actions/avatar.php:84 actions/profilesettings.php:321 #: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." @@ -1289,6 +2004,16 @@ msgstr "Parola kaydedildi." msgid "Passwords don't match." msgstr "Parolalar birbirini tutmuyor." +#: ../lib/searchaction.php:100 lib/searchaction.php:100 +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "" + +#: ../actions/opensearch.php:33 actions/opensearch.php:33 +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" + #: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 #: actions/peoplesearch.php:58 msgid "People search" @@ -1299,14 +2024,31 @@ msgstr "Kişi Arama" msgid "Personal" msgstr "Kişisel" +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 +msgid "Personal message" +msgstr "" + +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde bulunmadıysanız \"İptal\" tuşuna basın. " +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " +"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " +"bulunmadıysanız \"İptal\" tuşuna basın. " #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Jabber/GTalk durum mesajim değiştiğinde nedurum.com'da durumumu güncelle" +msgstr "" +"Jabber/GTalk durum mesajim değiştiğinde nedurum.com'da durumumu güncelle" #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 @@ -1330,6 +2072,12 @@ msgstr "Tercihler" msgid "Preferences saved." msgstr "Tercihler kaydedildi." +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "" + #: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 #: lib/action.php:715 lib/action.php:730 msgid "Privacy" @@ -1377,6 +2125,22 @@ msgstr "Genel Durum Akış RSS Beslemesi" msgid "Public timeline" msgstr "Genel zaman çizgisi" +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "" + +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "" + +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 +#: actions/tag.php:76 +msgid "Recent Tags" +msgstr "" + #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 #: actions/recoverpassword.php:190 actions/recoverpassword.php:197 #: actions/recoverpassword.php:199 actions/recoverpassword.php:200 @@ -1405,6 +2169,18 @@ msgstr "Bilinmeye kullanıcı için geri alma kodu" msgid "Register" msgstr "Kayıt" +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 +msgid "Registration not allowed." +msgstr "" + +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 +msgid "Registration successful" +msgstr "" + #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 #: actions/userauthorization.php:144 actions/userauthorization.php:179 #: actions/userauthorization.php:211 @@ -1418,6 +2194,11 @@ msgstr "Reddet" msgid "Remember me" msgstr "Beni hatırla" +#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 +msgid "Remote profile with no matching profile" +msgstr "" + #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 #: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" @@ -1445,8 +2226,12 @@ msgid "Remove OpenID" msgstr "OpenID'yi kaldır" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "OpenID'nizi sistemden silerseniz giriş yapamazsınız! Eğer silmek istiyorsanuz, önce yeni bir OpenID ekleyin" +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"OpenID'nizi sistemden silerseniz giriş yapamazsınız! Eğer silmek " +"istiyorsanuz, önce yeni bir OpenID ekleyin" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -1475,12 +2260,38 @@ msgstr "Sıfırla" msgid "Reset password" msgstr "Parolayı sıfırla" +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" + +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "" + +#: ../actions/smssettings.php:33 actions/smssettings.php:33 +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "" + +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 +msgid "SMS confirmation" +msgstr "" + #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 #: actions/recoverpassword.php:222 actions/recoverpassword.php:237 #: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "yukarıdaki parolanın aynısı" +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 +msgid "Same as password above. Required." +msgstr "" + #: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 #: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 #: actions/emailsettings.php:104 actions/imsettings.php:82 @@ -1508,16 +2319,35 @@ msgstr "Kaydet" msgid "Search" msgstr "Ara" +#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 +#: actions/noticesearch.php:127 +msgid "Search Stream Feed" +msgstr "" + #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%%'da durum mesajlarının içeriğinde arama yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%%'da durum mesajlarının içeriğinde arama yap. Anahtar kelimeleri " +"boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " +"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " +"karakterden oluşmalı. " + +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 @@ -1528,11 +2358,35 @@ msgstr "%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde msgid "Send" msgstr "Gönder" +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" + +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" + #: ../actions/imsettings.php:70 actions/imsettings.php:71 #: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" @@ -1544,6 +2398,10 @@ msgstr "Ayarlar" msgid "Settings saved." msgstr "Ayarlar kaydedildi." +#: ../actions/tag.php:60 actions/tag.php:60 +msgid "Showing most popular tags from the last week" +msgstr "" + #: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 #: actions/finishaddopenid.php:114 msgid "Someone else already has this OpenID." @@ -1555,6 +2413,16 @@ msgstr "Bir başkası zaten bu OpenID'ye sahip." msgid "Something weird happened." msgstr "Garip bir şey oldu." +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 +msgid "Sorry, no incoming email allowed." +msgstr "" + +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 +msgid "Sorry, that is not your incoming email address." +msgstr "" + #: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 #: lib/action.php:717 lib/action.php:732 msgid "Source" @@ -1619,6 +2487,22 @@ msgstr "Abonelikler" msgid "System error uploading file." msgstr "Dosya yüklemede sistem hatası." +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 +msgid "Tags" +msgstr "" + +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 +msgid "Text" +msgstr "" + #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 #: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" @@ -1639,6 +2523,11 @@ msgstr "O adres daha önce onaylanmış." msgid "That confirmation code is not for you!" msgstr "O onay kodu sizin için değil!" +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "" + #: ../actions/avatar.php:80 actions/profilesettings.php:317 #: lib/imagefile.php:71 msgid "That file is too big." @@ -1649,11 +2538,33 @@ msgstr "Dosya çok büyük." msgid "That is already your Jabber ID." msgstr "Bu zaten sizin Jabber ID'niz." +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" + +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" + #: ../actions/imsettings.php:233 actions/imsettings.php:241 #: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Bu sizin Jabber ID'niz değil." +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "" + +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "" + #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 @@ -1662,6 +2573,16 @@ msgstr "Bu sizin Jabber ID'niz değil." msgid "That is the wrong IM address." msgstr "Yanlış IM adresi." +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "" + +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" + #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 @@ -1670,7 +2591,14 @@ msgstr "Yanlış IM adresi." #: actions/twitapistatuses.php:251 lib/facebookaction.php:477 #: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." -msgstr "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" + +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 +msgid "That's too long. Max notice size is 255 chars." +msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 #: actions/confirmaddress.php:159 @@ -1688,6 +2616,22 @@ msgstr "\"%s\" adresi hesabınız için onaylandı." msgid "The address was removed." msgstr "Bu adres kaldırılmıştı." +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" + #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 #, php-format @@ -1710,31 +2654,108 @@ msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" msgid "These are the people whose notices you listen to." msgstr "Sizin durumlarını takip ettiğiniz kullanıcılar" +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" + #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Onay kodu çok eski. Lütfen tekrar başlayınız." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Bu form kendiliğinden gönderilmeli. Eğer yönlendirilmediyseniz, OpenID servis sağlayıcınıza yönlenmek için düğmeye basın." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Bu form kendiliğinden gönderilmeli. Eğer yönlendirilmediyseniz, OpenID " +"servis sağlayıcınıza yönlenmek için düğmeye basın." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "%s'a İlk defa giriş yapıyorsunuz. Bu yüzden OpenID'nizi hesabınıza bağlamamız gerekli. Bunun için ya yeni bir hesap oluşturabilirsiniz ya da varolan hesabınızı kullanabilirsiniz. " +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"%s'a İlk defa giriş yapıyorsunuz. Bu yüzden OpenID'nizi hesabınıza " +"bağlamamız gerekli. Bunun için ya yeni bir hesap oluşturabilirsiniz ya da " +"varolan hesabınızı kullanabilirsiniz. " + +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" + +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "" #: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "" + +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "" + +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" + +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 +msgid "Two user ids or screen_names must be supplied." +msgstr "" + #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 #: actions/profilesettings.php:109 actions/register.php:398 #: actions/register.php:444 actions/profilesettings.php:117 #: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" -msgstr "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" +msgstr "" +"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" + +#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "" #: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 #: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 @@ -1758,14 +2779,23 @@ msgstr "Beklenmeğen form girdisi." msgid "Unexpected password reset." msgstr "Beklemeğen parola sıfırlaması." +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" + #: ../actions/finishremotesubscribe.php:58 #: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 msgid "Unknown version of OMB protocol." msgstr "OMB protokolünün bilinmeğen sürümü." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Aksi ifade edilmedikce, bu sitedeki içerik yaratıcılarına aittir ve şu lisans ile korunmaktadır: " +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Aksi ifade edilmedikce, bu sitedeki içerik yaratıcılarına aittir ve şu " +"lisans ile korunmaktadır: " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -1791,6 +2821,33 @@ msgstr "Desteklenmeyen OMB sürümü" msgid "Unsupported image file format." msgstr "Desteklenmeyen görüntü dosyası biçemi." +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" + +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 #: actions/avatarsettings.php:165 actions/grouplogo.php:238 @@ -1799,15 +2856,39 @@ msgid "Upload" msgstr "Yükle" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Buradan yeni bir \"avatar\" (kullanıcı resmi) yükleyin. Resminizi yükledikten sonra düzenleyemezsiniz bu sebeple kare biçimine yakın olmasına özen gösterin. Buna ek olarak, resminiz sitenin lisansına tabi olmalıdır. Kendinize ait olan ve paylaşmak istediğiniz bir resim kullanın. " +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Buradan yeni bir \"avatar\" (kullanıcı resmi) yükleyin. Resminizi " +"yükledikten sonra düzenleyemezsiniz bu sebeple kare biçimine yakın olmasına " +"özen gösterin. Buna ek olarak, resminiz sitenin lisansına tabi olmalıdır. " +"Kendinize ait olan ve paylaşmak istediğiniz bir resim kullanın. " + +#: ../lib/settingsaction.php:91 +msgid "Upload a new profile image" +msgstr "" + +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 #: actions/register.php:386 actions/register.php:428 actions/register.php:432 #: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" -msgstr "Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." +msgstr "" +"Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." + +#: ../actions/finishremotesubscribe.php:86 +#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 +msgid "User being listened to doesn't exist." +msgstr "" #: ../actions/all.php:41 ../actions/avatarbynickname.php:48 #: ../actions/foaf.php:47 ../actions/replies.php:41 @@ -1837,6 +2918,16 @@ msgstr "Kullanıcının profili yok." msgid "User nickname" msgstr "Kullanıcı takma adı" +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 +msgid "User not found." +msgstr "" + +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" + #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 #: lib/noticeform.php:158 #, php-format @@ -1863,38 +2954,80 @@ msgstr "%s için yanlış resim türü" msgid "Wrong size image at '%s'" msgstr "%s'de yanlış resim boyutu" +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 +msgid "Yes" +msgstr "" + #: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 #: actions/finishaddopenid.php:112 msgid "You already have this OpenID!" msgstr "Zaten bu OpenID'ye sahipsiniz!" +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 msgid "You are already logged in!" msgstr "Zaten giriş yapmış durumdasıznız!" +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" + +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 +msgid "You are not friends with the specified user." +msgstr "" + #: ../actions/password.php:27 msgid "You can change your password here. Choose a good one!" msgstr "Parolanızı burada değiştirebilirsiniz. İyi bir tane seçin!" #: ../actions/register.php:135 actions/register.php:145 msgid "You can create a new account to start posting notices." -msgstr "Sizde bir hesap açıp durumunuzdan arkadaşlarınızı haberdar edebilirsiniz." +msgstr "" +"Sizde bir hesap açıp durumunuzdan arkadaşlarınızı haberdar edebilirsiniz." + +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "\"Sil\" düğmesine basarak hesabınızdan eklediğiniz OpenID'yi silebilirsiniz." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"\"Sil\" düğmesine basarak hesabınızdan eklediğiniz OpenID'yi silebilirsiniz." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres ayarlarinizi aşağıda yapın." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres " +"ayarlarinizi aşağıda yapın." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Burada kişisel profilinizi güncelleyebilirsiniz, böylelikle insanlar sizin hakkınızda daha fazla bilgi sahibi olur." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Burada kişisel profilinizi güncelleyebilirsiniz, böylelikle insanlar sizin " +"hakkınızda daha fazla bilgi sahibi olur." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -1916,6 +3049,38 @@ msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." msgid "You did not send us that profile" msgstr "Bize o profili yollamadınız" +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "" + +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" + +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Harika, sizi tanıdık. Simdi yeni parolanızı girin." @@ -1932,8 +3097,12 @@ msgstr "Bu sunucudaki takma adınız veya kaydedilmiş eposta adresiniz." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı " +"sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -1989,6 +3158,11 @@ msgstr "yaklaşık bir yıl önce" msgid "about an hour ago" msgstr "yaklaşık bir saat önce" +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 +msgid "delete" +msgstr "" + #: ../actions/noticesearch.php:130 ../actions/showstream.php:408 #: ../lib/stream.php:117 actions/noticesearch.php:136 #: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 @@ -2006,18 +3180,766 @@ msgstr "cevapla" msgid "same as password above" msgstr "yukaridaki parola ile aynı" +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 +msgid "unsupported file type" +msgstr "" + #: ../lib/util.php:1309 lib/util.php:1443 #, fuzzy msgid "« After" msgstr "« Sonra" +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/disfavor.php:55 actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" + +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 +msgid "Could not delete favorite." +msgstr "" + +#: actions/disfavor.php:72 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" + +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" + +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "" + +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" + +#: actions/favor.php:70 +msgid "Disfavor" +msgstr "" + +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 +#, php-format +msgid "%s favorite notices" +msgstr "" + +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 +#, php-format +msgid "Feed of favorite notices of %s" +msgstr "" + +#: actions/inbox.php:28 actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "" + +#: actions/inbox.php:30 actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "" + +#: actions/inbox.php:53 actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" + +#: actions/invite.php:178 actions/invite.php:213 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" + +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 +msgid "Automatically login in the future; " +msgstr "" + +#: actions/login.php:122 actions/login.php:264 +msgid "For security reasons, please re-enter your " +msgstr "" + +#: actions/login.php:126 actions/login.php:268 +msgid "Login with your username and password. " +msgstr "" + +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 +msgid "That's too long. Max message size is 140 chars." +msgstr "" + +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "" + +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" + +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 +msgid "No such user" +msgstr "" + +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "" + +#: actions/noticesearch.php:95 actions/noticesearch.php:146 +msgid "Notice without matching profile" +msgstr "" + +#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgstr "" + +#: actions/openidsettings.php:46 actions/openidsettings.php:96 +msgid "If you want to add an OpenID to your account, " +msgstr "" + +#: actions/openidsettings.php:74 +msgid "Removing your only OpenID would make it impossible to log in! " +msgstr "" + +#: actions/openidsettings.php:87 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account " +msgstr "" + +#: actions/outbox.php:28 actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:30 actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:53 actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" + +#: actions/profilesettings.php:27 actions/profilesettings.php:69 +msgid "You can update your personal profile info here " +msgstr "" + +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +msgid "User without matching profile" +msgstr "" + +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. " +msgstr "" + +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" +msgstr "" + +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " +msgstr "" + +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 +msgid "Your nickname on this server, " +msgstr "" + +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 +msgid "Instructions for recovering your password " +msgstr "" + +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 +msgid "New password successfully saved. " +msgstr "" + +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/register.php:216 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" + +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " +msgstr "" + +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#, php-format +msgid "To subscribe, you can [login](%%action.login%%)," +msgstr "" + +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 +#, php-format +msgid "Feed for favorites of %s" +msgstr "" + +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showmessage.php:33 actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:42 actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:61 actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:66 actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/showstream.php:154 +msgid "Send a message" +msgstr "" + +#: actions/smssettings.php:312 actions/smssettings.php:464 +#, php-format +msgid "Mobile carrier for your phone. " +msgstr "" + +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 +msgid "Direct Messages You've Sent" +msgstr "" + +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "" + +#: actions/twitapidirect_messages.php:128 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "" + +#: actions/twitapidirect_messages.php:138 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" + +#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" + +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "" + +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "" + +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 +#, php-format +msgid "%s added your notice as a favorite" +msgstr "" + +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" + +#: actions/twittersettings.php:27 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" + +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 +msgid "Twitter settings" +msgstr "" + +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 +msgid "Twitter Account" +msgstr "" + +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 +msgid "Current verified Twitter account." +msgstr "" + +#: actions/twittersettings.php:63 +msgid "Twitter Username" +msgstr "" + +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 +msgid "No spaces, please." +msgstr "" + +#: actions/twittersettings.php:67 +msgid "Twitter Password" +msgstr "" + +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" + +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 +msgid "Could not verify your Twitter credentials!" +msgstr "" + +#: actions/twittersettings.php:137 +#, php-format +msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgstr "" + +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 +msgid "Unable to save your Twitter settings!" +msgstr "" + +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 +msgid "Twitter settings saved." +msgstr "" + +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 +msgid "That is not your Twitter account." +msgstr "" + +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 +msgid "Couldn't remove Twitter user." +msgstr "" + +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 +msgid "Twitter account removed." +msgstr "" + +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 +msgid "Couldn't save Twitter preferences." +msgstr "" + +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 +msgid "Twitter preferences saved." +msgstr "" + +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " +msgstr "" + +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " +msgstr "" + +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " +msgstr "" + +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 +msgid "Command complete" +msgstr "" + +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: classes/Command.php:96 classes/Command.php:113 +#, php-format +msgid "Subscriptions: %1$s\n" +msgstr "" + +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" + +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "" + +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "" + +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "" + +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "" + +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "" + +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 +#, php-format +msgid "Message too long - maximum is 140 characters, you sent %d" +msgstr "" + +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." +msgstr "" + +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" + +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." +msgstr "" + +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: classes/Command.php:344 classes/Command.php:392 +msgid "Commands:\n" +msgstr "" + +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:253 lib/mail.php:512 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" + +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " +msgstr "" + +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "" + +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" + +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" + +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" + +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 +msgid "Twitter" +msgstr "" + +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 +msgid "Twitter integration options" +msgstr "" + +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 +msgid "To" +msgstr "" + +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 +msgid "Could not parse message." +msgstr "" + #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s ve arkadaşları" +#: actions/avatarsettings.php:76 +msgid "You can upload your personal avatar." +msgstr "" + #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -2026,6 +3948,51 @@ msgstr "%s ve arkadaşları" msgid "Avatar settings" msgstr "Ayarlar" +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +msgid "There was a problem with your session token. " +msgstr "" + +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -2033,21 +4000,75 @@ msgstr "Ayarlar" msgid "Lost our file." msgstr "Böyle bir durum mesajı yok." +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 +msgid "No profile specified." +msgstr "" + +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 +msgid "No profile with that ID." +msgstr "" + #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "Böyle bir kullanıcı yok." +#: actions/block.php:129 +msgid "Are you sure you want to block this user? " +msgstr "" + #: actions/block.php:162 actions/block.php:165 #, fuzzy msgid "You have already blocked this user." msgstr "Zaten giriş yapmış durumdasıznız!" +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + #: actions/confirmaddress.php:159 -#, php-format, fuzzy +#, fuzzy, php-format msgid "The address \"%s\" has been " msgstr "Bu adres kaldırılmıştı." +#: actions/deletenotice.php:73 +msgid "You are about to permanently delete a notice. " +msgstr "" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "" + +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -2071,10 +4092,26 @@ msgstr "Takma ad yok" msgid "No such group" msgstr "Böyle bir durum mesajı yok." +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "" + +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " -msgstr "Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk kullanılamaz. " +msgstr "" +"Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk " +"kullanılamaz. " #: actions/editgroup.php:198 actions/newgroup.php:149 #: actions/editgroup.php:200 actions/newgroup.php:150 @@ -2093,10 +4130,23 @@ msgid "Options saved." msgstr "Ayarlar kaydedildi." #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Awaiting confirmation on this address. " msgstr "Onay kodu hatası." +#: actions/emailsettings.php:139 actions/smssettings.php:150 +msgid "Make a new email address for posting to; " +msgstr "" + +#: actions/emailsettings.php:157 +msgid "Send me email when someone " +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -2105,7 +4155,28 @@ msgstr "Eposta adresi zaten var." #: actions/emailsettings.php:343 #, fuzzy msgid "A confirmation code was sent to the email address you added. " -msgstr "Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size mesaj yollanabilmesi için onaylamanız gerekmektedir." +msgstr "" +"Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size " +"mesaj yollanabilmesi için onaylamanız gerekmektedir." + +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 @@ -2113,6 +4184,13 @@ msgstr "Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafında msgid "No notice content!" msgstr "İçerik yok!" +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 #: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 #: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 @@ -2129,32 +4207,84 @@ msgstr "« Sonra" msgid "Before" msgstr "Önce »" +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" +msgstr "" + #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "Kullanıcı güncellenemedi." +#: actions/facebooksettings.php:65 +msgid "There was a problem saving your sync preferences!" +msgstr "" + #: actions/facebooksettings.php:67 #, fuzzy msgid "Sync preferences saved." msgstr "Tercihler kaydedildi." +#: actions/facebooksettings.php:90 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: actions/facebooksettings.php:97 +msgid "Send \"@\" replies to Facebook." +msgstr "" + #: actions/facebooksettings.php:106 #, fuzzy msgid "Prefix" msgstr "Profil" +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + #: actions/facebooksettings.php:147 #, fuzzy msgid "Sync preferences" msgstr "Tercihler" +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 +msgid "Disfavor favorite" +msgstr "" + #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -2164,10 +4294,48 @@ msgid "Popular notices" msgstr "Böyle bir durum mesajı yok." #: actions/favorited.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Popular notices, page %d" msgstr "Böyle bir durum mesajı yok." +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" + +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 +msgid "Featured users" +msgstr "" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" + +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" + +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" + +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -2180,6 +4348,36 @@ msgstr "Avatar güncellendi." msgid "Failed updating logo." msgstr "Avatar güncellemede hata." +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy @@ -2187,35 +4385,65 @@ msgid "Create a new group" msgstr "Yeni hesap oluştur" #: actions/groupsearch.php:57 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. " -msgstr "%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı. " +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" +"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " +"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " +"karakterden oluşmalı. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Kişi Arama" +#: actions/imsettings.php:70 +msgid "You can send and receive notices through " +msgstr "" + +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + #: actions/imsettings.php:147 #, fuzzy msgid "Send me replies through Jabber/GTalk " msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "Onay kodu yok." +#: actions/joingroup.php:65 actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "" + #: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Zaten giriş yapmış durumdasıznız!" #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Sunucuya yönlendirme yapılamadı: %s" +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "" + +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "" + #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -2229,12 +4457,44 @@ msgstr "Böyle bir durum mesajı yok." msgid "You are not a member of that group." msgstr "Bize o profili yollamadınız" +#: actions/leavegroup.php:100 +msgid "You may not leave a group while you are its administrator." +msgstr "" + +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" + #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "OpenID formu yaratılamadı: %s" +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -2252,12 +4512,35 @@ msgstr "Abonelik oluşturulamadı." msgid "That's too long. " msgstr "Dosya çok büyük." +#: actions/newmessage.php:134 +msgid "Don't send a message to yourself; " +msgstr "" + #: actions/newnotice.php:166 actions/newnotice.php:174 #: actions/newnotice.php:272 actions/newnotice.php:199 #, fuzzy msgid "Notice posted" msgstr "Durum mesajları" +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 +msgid "Ajax Error" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" + #: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" @@ -2273,11 +4556,24 @@ msgstr "OpenID'yi kaldır" msgid "Other Settings" msgstr "Ayarlar" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" + +#: actions/othersettings.php:93 +msgid "URL Auto-shortening" +msgstr "" + #: actions/othersettings.php:112 #, fuzzy msgid "Service" msgstr "Ara" +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "" + #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -2296,19 +4592,39 @@ msgid "Password change" msgstr "Parola kaydedildi." #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "Geçersiz bir eposta adresi." +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "" + +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" + #: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Profil bilinmiyor" +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + +#: actions/profilesettings.php:144 +msgid "Automatically subscribe to whoever " +msgstr "" + #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "%s Geçersiz başlangıç sayfası" @@ -2320,34 +4636,69 @@ msgstr "Profil kaydedilemedi." #: actions/public.php:107 actions/public.php:110 actions/public.php:118 #: actions/public.php:129 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Genel zaman çizgisi" +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + #: actions/publictagcloud.php:57 #, fuzzy msgid "Public tag cloud" msgstr "Genel Durum Akış RSS Beslemesi" +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 +msgid "Sorry, only invited people can register." +msgstr "" + #: actions/register.php:149 #, fuzzy msgid "You can't register if you don't " msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız." +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " -msgstr "1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin verilmez" +msgstr "" +"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " +"verilmez" #: actions/register.php:382 actions/register.php:386 #, fuzzy msgid "Used only for updates, announcements, " -msgstr "Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." +msgstr "" +"Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." #: actions/register.php:398 #, fuzzy msgid "URL of your homepage, blog, " -msgstr "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" +msgstr "" +"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" #: actions/register.php:404 #, fuzzy @@ -2362,20 +4713,61 @@ msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " -msgstr "bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon numarası." +msgstr "" +"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " +"numarası." + +#: actions/register.php:471 +#, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgstr "" + +#: actions/register.php:495 +msgid "(You should receive a message by email " +msgstr "" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" #: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 #: actions/replies.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "%s için cevaplar" +#: actions/showfavorites.php:79 +#, php-format +msgid "%s favorite notices, page %d" +msgstr "" + +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Böyle bir durum mesajı yok." +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 #: actions/showgroup.php:264 actions/showstream.php:282 @@ -2388,8 +4780,13 @@ msgstr "Böyle bir durum mesajı yok." msgid "Note" msgstr "Durum mesajları" +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:304 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group" msgstr "%s için durum RSS beslemesi" @@ -2401,6 +4798,36 @@ msgstr "%s için durum RSS beslemesi" msgid "Members" msgstr "Üyelik başlangıcı" +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" +msgstr "" + +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient " +msgstr "" + +#: actions/showstream.php:73 actions/showstream.php:78 +#, php-format +msgid "%s, page %d" +msgstr "" + #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -2413,15 +4840,49 @@ msgstr "Profil" msgid "User profile" msgstr "Kullanıcının profili yok." +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 +msgid "User actions" +msgstr "" + +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 +msgid "Send a direct message to this user" +msgstr "" + +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 +msgid "Message" +msgstr "" + #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Abone olanlar" +#: actions/showstream.php:533 lib/profileaction.php:235 +msgid "All groups" +msgstr "" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " -msgstr "1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin verilmez" +msgstr "" +"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " +"verilmez" #: actions/smssettings.php:162 #, fuzzy @@ -2433,6 +4894,10 @@ msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." msgid "A confirmation code was sent to the phone number you added. " msgstr "O onay kodu sizin için değil!" +#: actions/smssettings.php:453 actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -2454,27 +4919,32 @@ msgid "Subscribed" msgstr "Abone ol" #: actions/subscribers.php:50 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscribers" msgstr "Abone olanlar" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + #: actions/subscribers.php:63 #, fuzzy msgid "These are the people who listen to " msgstr "%s adlı kullanıcının durumunu takip edenler" #: actions/subscribers.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people who " msgstr "%s adlı kullanıcının durumunu takip edenler" #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "Bütün abonelikler" #: actions/subscriptions.php:54 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions, page %d" msgstr "Bütün abonelikler" @@ -2484,7 +4954,7 @@ msgid "These are the people whose notices " msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" #: actions/subscriptions.php:69 -#, php-format, fuzzy +#, fuzzy, php-format msgid "These are the people whose " msgstr "%s adlı kullanıcının durumunu takip edenler" @@ -2495,10 +4965,15 @@ msgid "Jabber" msgstr "JabberID yok." #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "%s adli kullanicinin durum mesajlari" +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -2509,34 +4984,89 @@ msgstr "Giriş yapılmadı." msgid "No id argument." msgstr "Böyle bir belge yok." +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:164 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "Avatar bilgisi kaydedilemedi" +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "Böyle bir durum mesajı yok." #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "%s adli kullanicinin durum mesajlari" +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" + +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" + #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "İstek bulunamadı!" +#: actions/twittersettings.php:71 +msgid "Add your Twitter account to automatically send " +msgstr "" + +#: actions/twittersettings.php:119 actions/twittersettings.php:122 +msgid "Twitter user name" +msgstr "" + #: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "Yeni parola" +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 +msgid "Twitter Friends" +msgstr "" + +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + #: actions/twittersettings.php:341 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information " msgstr "Eposta onayı silinemedi." @@ -2550,27 +5080,100 @@ msgstr "Kullanıcıyı kaydetmede hata oluştu." msgid "No profile id in request." msgstr "Yetkilendirme isteği yok!" +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "" + #: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "Aboneliği sonlandır" +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" +msgstr "" + +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Durum mesajını kaydederken hata oluştu." +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "Avatar güncellemede hata." +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "" + +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#, php-format +msgid "%s - %s" +msgstr "" + +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Hakkında" +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "" + +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -2591,6 +5194,10 @@ msgstr "Yardım" msgid "Site notice" msgstr "Yeni durum mesajı" +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" @@ -2601,12 +5208,39 @@ msgstr "Yeni durum mesajı" msgid "Secondary site navigation" msgstr "Abonelikler" +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +msgid "All " +msgstr "" + +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Böyle bir kullanıcı yok." +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block" +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy @@ -2625,10 +5259,38 @@ msgstr "Genel" msgid "Favor this notice" msgstr "Böyle bir durum mesajı yok." +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "" + +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + #: lib/groupeditform.php:148 lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" -msgstr "Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" +msgstr "" +"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi" #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 @@ -2644,14 +5306,46 @@ msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 #, fuzzy -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi" +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" + +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "Çıkış" +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -2677,16 +5371,63 @@ msgstr "Geçersiz kullanıcı adı veya parola." msgid "Sign up for a new account" msgstr "Yeni hesap oluştur" +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "%1$s %2$s'da durumunuzu takip ediyor" +#: lib/mail.php:254 lib/mail.php:253 +#, php-format +msgid "Location: %s\n" +msgstr "" + +#: lib/mail.php:256 lib/mail.php:255 +#, php-format +msgid "Homepage: %s\n" +msgstr "" + +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + +#: lib/mail.php:461 lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:465 +#, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" + #: lib/mail.php:555 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s just added your notice from %2$s" msgstr "%1$s %2$s'da durumunuzu takip ediyor" +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +msgid "From" +msgstr "" + +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "" + #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -2703,16 +5444,68 @@ msgstr "6 veya daha fazla karakter" msgid "in reply to" msgstr "...cevap olarak" +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "" + #: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 #: lib/noticelist.php:499 #, fuzzy msgid "Reply" msgstr "cevapla" +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "" + +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 +msgid "Delete" +msgstr "" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "" + #: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Genel" +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" + +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + #: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 #, fuzzy msgid "Popular" @@ -2723,16 +5516,35 @@ msgstr "Kişi Arama" msgid "Notice" msgstr "Durum mesajları" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People %s subscribes to" msgstr "Uzaktan abonelik" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People subscribed to %s" msgstr "Uzaktan abonelik" +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + #: lib/subs.php:53 lib/subs.php:52 #, fuzzy msgid "User has blocked you." @@ -2744,24 +5556,40 @@ msgstr "Kullanıcının profili yok." msgid "Subscribe to this user" msgstr "Takip talebine izin verildi" +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Böyle bir kullanıcı yok." +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 +msgid "Unblock" +msgstr "" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" @@ -2770,30 +5598,108 @@ msgstr "%s için arkadaş güncellemeleri RSS beslemesi" msgid "You and friends" msgstr "%s ve arkadaşları" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "Avatar güncellendi." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "%s adli kullanicinin durum mesajlari" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı. " +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"%%site.name%% üyeleri arasında isim, yer ya da ilgi alanları içinde arama " +"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla " +"karakterden oluşmalı. " + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr " \"%s\" için arama sonuçları" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı ve parolanızı tekrar giriniz." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı " +"ve parolanızı tekrar giriniz." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -2810,10 +5716,35 @@ msgstr "Genel Durum Akış RSS Beslemesi" msgid "Public Stream Feed (Atom)" msgstr "Genel Durum Akış RSS Beslemesi" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr "bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon numarası." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " +"numarası." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -2821,31 +5752,47 @@ msgstr "bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon nu msgid "Created" msgstr "Yarat" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Böyle bir durum mesajı yok." #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "Profil" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "%s için durum RSS beslemesi" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "%s için durum RSS beslemesi" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "%s için durum RSS beslemesi" +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -2858,11 +5805,46 @@ msgstr "Avatar" msgid "Edit profile settings" msgstr "Profil ayarları" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." msgstr "O onay kodu sizin için değil!" +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -2876,31 +5858,260 @@ msgstr "O onay kodu sizin için değil!" msgid "No such user!" msgstr "Böyle bir kullanıcı yok." +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Eposta onayı silinemedi." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde bulunmadıysanız \"İptal\" tuşuna basın. " +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " +"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " +"bulunmadıysanız \"İptal\" tuşuna basın. " + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş yapıp hesabınızı OpenID'nize bağlayabilirsiniz." +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Eğer zaten bir hesabınız varsa, kullanıcı adınız ve parolanız ile giriş " +"yapıp hesabınızı OpenID'nize bağlayabilirsiniz." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n\n %3$s\n\nKendisini durumsuz bırakmayın!,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s %2$s durum mesajlarınızı takip etmeye başladı.\n" +"\n" +"\t%3$s\n" +"\n" +"Kendisini durumsuz bırakmayın!,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Ara" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -2917,15 +6128,19 @@ msgid "Block this user from this group" msgstr "Böyle bir kullanıcı yok." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Kullanıcının profili yok." #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s ve arkadaşları" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -2941,26 +6156,56 @@ msgstr "Yer" msgid "Do not delete this notice" msgstr "Böyle bir durum mesajı yok." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "%s Geçersiz başlangıç sayfası" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Takma ad kullanımda. Başka bir tane deneyin." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Avatar bilgisi kaydedilemedi" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -2971,11 +6216,28 @@ msgstr "Yeni durum mesajı" msgid "No notice" msgstr "Yeni durum mesajı" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "Geçersiz bir takma ad." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -2992,6 +6254,32 @@ msgstr "Bize o profili yollamadınız" msgid "Block user from group" msgstr "Böyle bir kullanıcı yok." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -3000,42 +6288,250 @@ msgstr "Böyle bir kullanıcı yok." msgid "Couldn't update your design." msgstr "Kullanıcı güncellenemedi." +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + #: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 #, fuzzy msgid "Design preferences saved." msgstr "Tercihler kaydedildi." +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Sonuç yok" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Kullanıcının profili yok." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Profil kaydedilemedi." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) tek hesap ile bir çok siteye giriş yapmanızı " +"sağlar. Hesabınızla bağlantılı OpenID'lerinizi burada yönetebilirsiniz." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Profil ayarları" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Eğer parolanızı unuttuysanız veya kaybettiyseniz, hesabınıza eklemiş olduğunuz eposta adresine yeni bir tane gönderilmesini sağlayabilirsiniz." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Eğer parolanızı unuttuysanız veya kaybettiyseniz, hesabınıza eklemiş " +"olduğunuz eposta adresine yeni bir tane gönderilmesini sağlayabilirsiniz." #: actions/recoverpassword.php:158 #, fuzzy @@ -3057,74 +6553,217 @@ msgstr "Onay kodu hatası." msgid "Subscribe to a remote user" msgstr "Takip talebine izin verildi" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "Böyle bir durum mesajı yok." +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s için durum RSS beslemesi" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s için durum RSS beslemesi" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s için durum RSS beslemesi" +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Böyle bir kullanıcı yok." +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "%s için durum RSS beslemesi" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s %2$s'da durumunuzu takip ediyor" #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s için durum RSS beslemesi" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s için durum RSS beslemesi" +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "Kullanıcı güncellenemedi." +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Kullanıcı güncellenemedi." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s'in %2$s'deki durum mesajları " #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -3135,36 +6774,127 @@ msgstr "Bütün abonelikler" msgid "Profile design" msgstr "Profil ayarları" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Bize o profili yollamadınız" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Durum mesajını kaydederken hata oluştu." +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Kullanıcının profili yok." +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Profil" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Yükle" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Parolayı değiştir" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -3180,49 +6910,189 @@ msgstr "Ara" msgid "Links" msgstr "Giriş" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Böyle bir kullanıcı yok." #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Böyle bir kullanıcı yok." +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "İçerik yok!" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "Ara" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "Başlangıç sayfası adresi geçerli bir URL değil." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "Böyle bir durum mesajı yok." +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." -msgstr "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." msgstr "Sunucuya yönlendirme yapılamadı: %s" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." @@ -3232,7 +7102,7 @@ msgid "You are already a member of that group." msgstr "Zaten giriş yapmış durumdasıznız!" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Sunucuya yönlendirme yapılamadı: %s" @@ -3242,31 +7112,78 @@ msgid "You are not a member of this group." msgstr "Bize o profili yollamadınız" #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "OpenID formu yaratılamadı: %s" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Profil" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "Bize o profili yollamadınız" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Avatar güncellendi." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." -msgstr "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "Desteklenmeyen görüntü dosyası biçemi." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "%s adli kullanicinin durum mesajlari" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + #: actions/finishremotesubscribe.php:106 #, fuzzy msgid "You are not authorized." msgstr "Yetkilendirilmemiş." +#: actions/finishremotesubscribe.php:109 +msgid "Could not convert request token to access token." +msgstr "" + #: actions/finishremotesubscribe.php:114 #, fuzzy msgid "Remote service uses unknown version of OMB protocol." @@ -3282,23 +7199,52 @@ msgstr "Böyle bir durum mesajı yok." msgid "Cannot read file." msgstr "Böyle bir durum mesajı yok." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "%s adli kullanicinin durum mesajlari" + #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da [OpenID](%%action.openidlogin%%) ile giriş yapın." +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Kullanıcı adı ve parolanızla giriş yapın. Henüz bir hesabınız yok mu? Ne " +"duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " +"[OpenID](%%action.openidlogin%%) ile giriş yapın." + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "%s adli kullanicinin durum mesajlari" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Bağlan" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" @@ -3308,42 +7254,75 @@ msgid "Describe yourself and your interests" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Geçersiz profil adresi (YADIS belgesi yok)." +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "%s için durum RSS beslemesi" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "%s için durum RSS beslemesi" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "%s için durum RSS beslemesi" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "%s için cevaplar" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "%s için arkadaş güncellemeleri RSS beslemesi" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" msgstr "%s için durum RSS beslemesi" @@ -3358,22 +7337,72 @@ msgid "SMS is not available." msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s için durum RSS beslemesi" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde bulunmadıysanız \"İptal\" tuşuna basın. " +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için " +"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " +"bulunmadıysanız \"İptal\" tuşuna basın. " + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Avatar URLi '%s' okunamıyor" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "%s için yanlış resim türü" @@ -3388,12 +7417,35 @@ msgid "Site content license" msgstr "Yeni durum mesajı" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "Sunucuya yönlendirme yapılamadı: %s" +msgstr "Kullanıcı güncellenemedi." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "%s için cevaplar" @@ -3402,33 +7454,137 @@ msgstr "%s için cevaplar" msgid "Error saving notice." msgstr "Durum mesajını kaydederken hata oluştu." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Onay kodu yok." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "%s için durum RSS beslemesi" +msgstr "Yeni durum mesajı" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s %2$s'da durumunuzu takip ediyor" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Kullanıcı güncellenemedi." + #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Yeni durum mesajı" - diff --git a/locale/uk/LC_MESSAGES/statusnet.mo b/locale/uk/LC_MESSAGES/statusnet.mo index c7faa477cb7899ef4e9f382f072d4500f6518ad7..a3a9b117bcd2275e42228647612b2d938e78570e 100644 GIT binary patch delta 23690 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 DTOMLV delta 23542 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 diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 8cbe9c9fba..c9301425bd 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -1,21 +1,16 @@ # Translation of StatusNet to Ukrainian # # -- -# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-# -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:24:42+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:44:43+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: out-statusnet\n" @@ -29,8 +24,11 @@ msgstr " Потік пошуку для \"%s\"" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." -msgstr " окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний номер." +msgid "" +" except this private data: password, email address, IM address, phone number." +msgstr "" +" окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний " +"номер." #: ../actions/showstream.php:400 ../lib/stream.php:109 #: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 @@ -52,8 +50,61 @@ msgstr "%1$s запросив(ла) вас приєднатися до ньог #: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 #: actions/invite.php:228 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n%2$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\nYou can also share news about yourself, your thoughts, or your life online with people who know about you. It's also great for meeting new people who share your interests.\n\n%1$s said:\n\n%4$s\n\nYou can see %1$s's profile page on %2$s here:\n\n%5$s\n\nIf you'd like to try the service, click on the link below to accept the invitation.\n\n%6$s\n\nIf not, you can ignore this message. Thanks for your patience and your time.\n\nSincerely, %2$s\n" -msgstr "%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s (%3$s).\n\n%2$s це сервіс мікроблогів що дозволяє вам знаходитись у курсі подій, які відбуваються з вашими знайомими і тими особами, якими ви цікавитесь.\n\nТакож ви маєте можливість ділитись новинами про себе, своїми думками, подіями у житті, розміщуючи все це у режимі \"онлайн\" для своїх знайомих та друзів. А ще це чудовий спосіб зустріти нових друзів зі спільними інтересами.\n\n%1$s говорить:\n\n%4$s\n\nВи можете переглянути профіль %1$s на %2$s тут:\n\n%5$s\n\nЯкщо ви виявили бажання спробувати користуватись даним сервісом, то перейдіть за посиланням внизу, аби погодитись із запрошенням.\n\n%6$s\n\nЯкщо ж ні, то просто проігноруйте це повідомлення. Дякуємо за розуміння та витрачений час.\n\nЩиро ваші, %2$s\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" +"%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s (%3$s).\n" +"\n" +"%2$s це сервіс мікроблогів що дозволяє вам знаходитись у курсі подій, які " +"відбуваються з вашими знайомими і тими особами, якими ви цікавитесь.\n" +"\n" +"Також ви маєте можливість ділитись новинами про себе, своїми думками, " +"подіями у житті, розміщуючи все це у режимі \"онлайн\" для своїх знайомих та " +"друзів. А ще це чудовий спосіб зустріти нових друзів зі спільними " +"інтересами.\n" +"\n" +"%1$s говорить:\n" +"\n" +"%4$s\n" +"\n" +"Ви можете переглянути профіль %1$s на %2$s тут:\n" +"\n" +"%5$s\n" +"\n" +"Якщо ви виявили бажання спробувати користуватись даним сервісом, то " +"перейдіть за посиланням внизу, аби погодитись із запрошенням.\n" +"\n" +"%6$s\n" +"\n" +"Якщо ж ні, то просто проігноруйте це повідомлення. Дякуємо за розуміння та " +"витрачений час.\n" +"\n" +"Щиро ваші, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 @@ -63,8 +114,20 @@ msgstr "%1$s тепер слідкує за вашими повідомленя #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "%1$s тепер слідкує за вашими повідомленями на %2$s.\n\n %3$s\n\nЩиро ваші,\n%4$s.\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"%1$s тепер слідкує за вашими повідомленями на %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Щиро ваші,\n" +"%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 #: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 @@ -140,14 +203,22 @@ msgstr "%s оновлення від всіх!" #: ../actions/register.php:213 actions/register.php:497 #: actions/register.php:545 actions/register.php:555 -msgid "(You should receive a message by email momentarily, with instructions on how to confirm your email address.)" -msgstr "(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться інструкції щодо підтвердження вашої електронної адреси.)" +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" +"(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться " +"інструкції щодо підтвердження вашої електронної адреси.)" #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%** це сервіс мікроблогів наданий вам [%%site.broughtby%%](%%site.broughtbyurl%%). " +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%** це сервіс мікроблогів наданий вам [%%site.broughtby%%](%%" +"site.broughtbyurl%%). " #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -157,7 +228,8 @@ msgstr "**%%site.name%%** це сервіс мікроблогів. " #: ../lib/util.php:274 lib/util.php:290 msgid ". Contributors should be attributed by full name or nickname." -msgstr ". Контрибутори мають бути зазначені повним ім'ям або ім'ям користувача." +msgstr "" +". Контрибутори мають бути зазначені повним ім'ям або ім'ям користувача." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 @@ -165,12 +237,15 @@ msgstr ". Контрибутори мають бути зазначені пов #: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 #: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів" +msgstr "" +"1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів" #: ../actions/register.php:152 actions/register.php:166 #: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." -msgstr "1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів. Неодмінно." +msgstr "" +"1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів. " +"Неодмінно." #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 @@ -191,17 +266,30 @@ msgstr "6 або більше знаків. Неодмінно." #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." -msgstr "Код підтвердження був відправлений на адресу IM, яку ви додали. Ви повинні затведити %s для відправлення вам повідомлень." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" +"Код підтвердження був відправлений на адресу IM, яку ви додали. Ви повинні " +"затведити %s для відправлення вам повідомлень." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 #: actions/emailsettings.php:350 actions/emailsettings.php:358 -msgid "A confirmation code was sent to the email address you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Код підтвердження був відправлений на електронну адресу, яку ви додали. Перевірте вхідну пошту (і теку зі спамом також!), там має бути код та подальші інструкції." +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" +"Код підтвердження був відправлений на електронну адресу, яку ви додали. " +"Перевірте вхідну пошту (і теку зі спамом також!), там має бути код та " +"подальші інструкції." #: ../actions/smssettings.php:216 actions/smssettings.php:224 -msgid "A confirmation code was sent to the phone number you added. Check your inbox (and spam box!) for the code and instructions on how to use it." -msgstr "Код підтвердження був відправлений на телефонний номер, який ви додали. Перевірте вхідні повідомлення, там має бути код та подальші інструкції." +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" +"Код підтвердження був відправлений на телефонний номер, який ви додали. " +"Перевірте вхідні повідомлення, там має бути код та подальші інструкції." #: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 #: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 @@ -326,7 +414,8 @@ msgstr "Адреса" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 #: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" -msgstr "Адреси друзів куди надсилатимуться запрошення (кожна адреса окремим рядком)" +msgstr "" +"Адреси друзів куди надсилатимуться запрошення (кожна адреса окремим рядком)" #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 @@ -376,13 +465,18 @@ msgstr "Авторизувати підписку" #: actions/register.php:416 actions/register.php:463 actions/login.php:226 #: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" -msgstr "Автоматично входити у майбутньому; не для комп'ютерів загального користування!" +msgstr "" +"Автоматично входити у майбутньому; не для комп'ютерів загального " +"користування!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 #: actions/profilesettings.php:144 actions/profilesettings.php:145 #: actions/profilesettings.php:160 -msgid "Automatically subscribe to whoever subscribes to me (best for non-humans)" -msgstr "Автоматично підписуватись до тих, хто підписався до мене (якщо ви бот, то це саме для вас)" +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" +"Автоматично підписуватись до тих, хто підписався до мене (якщо ви бот, то це " +"саме для вас)" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 @@ -401,13 +495,22 @@ msgstr "Аватару оновлено." #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "Очікування підтвердження цієї адреси. Перевірте свій Jabber/GTalk рахунок, там має бути повідомлення з подальшими інструкціями. (Ви додали %s до вашого списку контактів?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"Очікування підтвердження цієї адреси. Перевірте свій Jabber/GTalk рахунок, " +"там має бути повідомлення з подальшими інструкціями. (Ви додали %s до вашого " +"списку контактів?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 #: actions/emailsettings.php:107 actions/emailsettings.php:113 -msgid "Awaiting confirmation on this address. Check your inbox (and spam box!) for a message with further instructions." -msgstr "Очікування підтвердження цієї адреси. Перевірте вхідну пошту (і теку зі спамом також!), там має бути повідомлення з подальшими інструкціями." +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" +"Очікування підтвердження цієї адреси. Перевірте вхідну пошту (і теку зі " +"спамом також!), там має бути повідомлення з подальшими інструкціями." #: ../actions/smssettings.php:58 actions/smssettings.php:58 #: actions/smssettings.php:111 actions/smssettings.php:123 @@ -544,8 +647,37 @@ msgstr "Код підтвердження не знайдено." #: ../actions/register.php:202 actions/register.php:473 #: actions/register.php:521 actions/register.php:531 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to...\n\n* Go to [your profile](%s) and post your first message.\n* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send notices through instant messages.\n* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that share your interests. \n* Update your [profile settings](%%%%action.profilesettings%%%%) to tell others more about you. \n* Read over the [online docs](%%%%doc.help%%%%) for features you may have missed. \n\nThanks for signing up and we hope you enjoy using this service." -msgstr "Вітаємо, %s! І ласкаво просимо до %%%%site.name%%%%. Звідси ви, можливо, схочете...\n\n*Подивитись [ваш профіль](%s) та написати своє перше повідомлення.\n*Додати [адресу Jabber/GTalk](%%%%action.imsettings%%%%), так щоб мати змогу надсилати повідомлення через службу миттєвих повідомлень.\n*[Розшукати людей](%%%%action.peoplesearch%%%%), які мають спільні з вами інтереси.\n*Оновити [налаштування профілю](%%%%action.profilesettings%%%%) аби інші дізнались більше про вас.\n*Прочитати [додаткову інформацію](%%%%doc.help%%%%), аби переконатись, що ви нічого не пропустили. \n\nДякуємо, що зареєструвались у нас, і, сподіваємось, вам сподобається наш сервіс." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" +"Вітаємо, %s! І ласкаво просимо до %%%%site.name%%%%. Звідси ви, можливо, " +"схочете...\n" +"\n" +"*Подивитись [ваш профіль](%s) та написати своє перше повідомлення.\n" +"*Додати [адресу Jabber/GTalk](%%%%action.imsettings%%%%), так щоб мати змогу " +"надсилати повідомлення через службу миттєвих повідомлень.\n" +"*[Розшукати людей](%%%%action.peoplesearch%%%%), які мають спільні з вами " +"інтереси.\n" +"*Оновити [налаштування профілю](%%%%action.profilesettings%%%%) аби інші " +"дізнались більше про вас.\n" +"*Прочитати [додаткову інформацію](%%%%doc.help%%%%), аби переконатись, що ви " +"нічого не пропустили. \n" +"\n" +"Дякуємо, що зареєструвались у нас, і, сподіваємось, вам сподобається наш " +"сервіс." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 @@ -952,8 +1084,12 @@ msgid "Find people on this site" msgstr "Знайти людей на цьому сайті" #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." -msgstr "З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як змінювати налаштування." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як " +"змінювати налаштування." #: ../actions/profilesettings.php:44 ../actions/register.php:164 #: actions/profilesettings.php:77 actions/register.php:178 @@ -1038,16 +1174,29 @@ msgstr "Налаштування IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." -msgstr "Якщо ви вже маєте рахунок, увійдіть використовуючи ім'я та пароль, щоб приєднати їх до вашого OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" +"Якщо ви вже маєте рахунок, увійдіть використовуючи ім'я та пароль, щоб " +"приєднати їх до вашого OpenID." #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." -msgstr "Якщо ви бажаєте додати OpenID до вашого рахунку, введіть адресу в поле нижче і натисніть \"Додати\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Якщо ви бажаєте додати OpenID до вашого рахунку, введіть адресу в поле нижче " +"і натисніть \"Додати\"." #: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "У разі, якщо ви забули або загубили свій пароль, ви маєте можливість отримати новий на ту електронну адресу, яку було збережено у профілі вашого рахунку." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"У разі, якщо ви забули або загубили свій пароль, ви маєте можливість " +"отримати новий на ту електронну адресу, яку було збережено у профілі вашого " +"рахунку." #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 @@ -1077,8 +1226,12 @@ msgstr "Неточне ім'я або пароль." #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." -msgstr "Інструкції з відновлення паролю було надіслано на електронну адресу, яку ви вказали у налаштуваннях вашого профілю." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" +"Інструкції з відновлення паролю було надіслано на електронну адресу, яку ви " +"вказали у налаштуваннях вашого профілю." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 #: actions/updateprofile.php:118 actions/updateprofile.php:120 @@ -1174,8 +1327,14 @@ msgstr "Запросити нових користувачів" #: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 #: lib/action.php:756 lib/action.php:771 #, php-format -msgid "It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -msgstr "Сервіс працює на [StatusNet](http://status.net/) - програмному забезпеченні для мікроблогів, версія %s, доступному під [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" +"Сервіс працює на [StatusNet](http://status.net/) - програмному забезпеченні " +"для мікроблогів, версія %s, доступному під [GNU Affero General Public " +"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 @@ -1185,8 +1344,13 @@ msgstr "Jabber ID вже належить іншому користувачу." #: ../actions/imsettings.php:62 actions/imsettings.php:63 #: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format -msgid "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to add %s to your buddy list in your IM client or on GTalk." -msgstr "Jabber або GTalk адреса, на зразок \"UserName@example.org\". Але спершу переконайтеся, що додали %s до списку контактів в своєму IM-клієнті або в GTalk." +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" +"Jabber або GTalk адреса, на зразок \"UserName@example.org\". Але спершу " +"переконайтеся, що додали %s до списку контактів в своєму IM-клієнті або в " +"GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 #: actions/profilesettings.php:128 actions/profilesettings.php:129 @@ -1253,8 +1417,14 @@ msgstr "Увійти з [OpenID](%%doc.openid%%)." #: ../actions/login.php:126 actions/login.php:251 #, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%%). " -msgstr "Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? [Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%action.openidlogin%%). " +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" +"Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? " +"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%" +"action.openidlogin%%). " #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 @@ -1299,8 +1469,13 @@ msgstr "Мікроблог від %s" #: ../actions/smssettings.php:304 actions/smssettings.php:464 #: actions/smssettings.php:476 #, php-format -msgid "Mobile carrier for your phone. If you know a carrier that accepts SMS over email but isn't listed here, send email to let us know at %s." -msgstr "Оператор мобільного зв'язку. Якщо вам відомий оператор, що підтримує надсилання SMS через електронну пошту, але він тут не вказаний, напишіть нам і ми внесемо його до списку." +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" +"Оператор мобільного зв'язку. Якщо вам відомий оператор, що підтримує " +"надсилання SMS через електронну пошту, але він тут не вказаний, напишіть нам " +"і ми внесемо його до списку." #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 @@ -1396,7 +1571,9 @@ msgstr "Це ім'я вже використовується. Спробуйте #: actions/newgroup.php:126 actions/profilesettings.php:208 #: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." -msgstr "Ім'я користувача повинно складатись з літер нижнього регістру і цифр, ніяких інтервалів." +msgstr "" +"Ім'я користувача повинно складатись з літер нижнього регістру і цифр, ніяких " +"інтервалів." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 #: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 @@ -1922,13 +2099,20 @@ msgid "Phone number, no punctuation or spaces, with area code" msgstr "Телефонний номер та регіональний код, ніякої пунктуації чи інтервалів" #: ../actions/userauthorization.php:78 -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Cancel\"." -msgstr "Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте підписатись на повідомлення даного користувача. Якщо ви не збирались підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" +"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " +"підписатись на повідомлення даного користувача. Якщо ви не збирались " +"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 #: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." -msgstr "Надсилати повідомлення на сайт, коли мій статус Jabber/GTalk змінюється." +msgstr "" +"Надсилати повідомлення на сайт, коли мій статус Jabber/GTalk змінюється." #: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 #: ../actions/smssettings.php:94 actions/emailsettings.php:86 @@ -2106,8 +2290,12 @@ msgid "Remove OpenID" msgstr "Видалити OpenID" #: ../actions/openidsettings.php:73 actions/openidsettings.php:128 -msgid "Removing your only OpenID would make it impossible to log in! If you need to remove it, add another OpenID first." -msgstr "Ви входите лише з одним єдиним OpenID, якщо ви його видалите, то не зможете увійти знову! Перед тим як видалити його, з початку додайте інший." +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Ви входите лише з одним єдиним OpenID, якщо ви його видалите, то не зможете " +"увійти знову! Перед тим як видалити його, з початку додайте інший." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 #: lib/personalgroupnav.php:104 @@ -2203,13 +2391,22 @@ msgstr "Живлення потоку пошуку" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 #: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format -msgid "Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more." -msgstr "Пошук повідомлень на %%site.name%% за їх змістом. Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків або більше." +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" +"Пошук повідомлень на %%site.name%% за їх змістом. Відокремлюйте пошукові " +"умови інтервалами; вони повинні складатись з 3 знаків або більше." #: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків або більше." +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. " +"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " +"або більше." #: ../actions/smssettings.php:296 actions/smssettings.php:304 #: actions/smssettings.php:457 actions/smssettings.php:469 @@ -2244,13 +2441,19 @@ msgstr "Повідомляти мене через Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 #: actions/smssettings.php:162 actions/smssettings.php:174 -msgid "Send me notices through SMS; I understand I may incur exorbitant charges from my carrier." -msgstr "Повідомляти мене за допомогою СМС; Я розімію, що, можливо, понесу надмірні витрати від мого мобільного оператора." +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" +"Повідомляти мене за допомогою СМС; Я розімію, що, можливо, понесу надмірні " +"витрати від мого мобільного оператора." #: ../actions/imsettings.php:76 actions/imsettings.php:77 #: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." -msgstr "Надсилати також мені відповіді через Jabber/GTalk від людей, до яких я не підписаний." +msgstr "" +"Надсилати також мені відповіді через Jabber/GTalk від людей, до яких я не " +"підписаний." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 #: lib/facebookaction.php:228 lib/facebookaction.php:230 @@ -2281,7 +2484,8 @@ msgstr "Сталося щось дивне." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 #: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." -msgstr "Вибачте, але не затверджено жодної електронної адреси для вхідної пошти." +msgstr "" +"Вибачте, але не затверджено жодної електронної адреси для вхідної пошти." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 #: scripts/maildaemon.php:57 scripts/maildaemon.php:56 @@ -2482,13 +2686,25 @@ msgstr "Адресу було видалено." #: ../actions/userauthorization.php:312 actions/userauthorization.php:346 #: actions/userauthorization.php:380 -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site's instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Підписку було авторизовано, але URL-адреса у відповідь не передавалася. Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як авторизувати підписку. Ваш підписний токен:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Підписку було авторизовано, але URL-адреса у відповідь не передавалася. " +"Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " +"авторизувати підписку. Ваш підписний токен:" #: ../actions/userauthorization.php:322 actions/userauthorization.php:357 #: actions/userauthorization.php:391 -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site's instructions for details on how to fully reject the subscription." -msgstr "Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як скинути підписку." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь " +"з інструкціями на сайті для більш конкретної інформації про те, як скинути " +"підписку." #: ../actions/subscribers.php:35 actions/subscribers.php:35 #: actions/subscribers.php:67 @@ -2514,7 +2730,8 @@ msgstr "Тут представлені ті, за чиїми повідомле #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 #: actions/invite.php:130 actions/invite.php:136 -msgid "These people are already users and you were automatically subscribed to them:" +msgid "" +"These people are already users and you were automatically subscribed to them:" msgstr "Ці люди вже є користувачами і вас було автоматично підписано до них:" #: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 @@ -2522,14 +2739,25 @@ msgid "This confirmation code is too old. Please start again." msgstr "Цей код підтвердження застарілий. Будь ласка, розпочніть спочатку." #: ../lib/openid.php:195 lib/openid.php:206 -msgid "This form should automatically submit itself. If not, click the submit button to go to your OpenID provider." -msgstr "Ця форма повинна автоматично репрезентувати себе системі. Якщо цього не сталося, натисніть на кнопку представлення і ви будете перенаправлені до вашого OpenID провайдера." +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" +"Ця форма повинна автоматично репрезентувати себе системі. Якщо цього не " +"сталося, натисніть на кнопку представлення і ви будете перенаправлені до " +"вашого OpenID провайдера." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 #: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format -msgid "This is the first time you've logged into %s so we must connect your OpenID to a local account. You can either create a new account, or connect with your existing account, if you have one." -msgstr "Ви вперше увійшли до %s і ми повинні приєднати ваш OpenID до локального рахунку. Ви можете також створити новий рахунок, або приєднати OpenID до вашого вже існуючого рахунку, якщо ви його маєте." +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" +"Ви вперше увійшли до %s і ми повинні приєднати ваш OpenID до локального " +"рахунку. Ви можете також створити новий рахунок, або приєднати OpenID до " +"вашого вже існуючого рахунку, якщо ви його маєте." #: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 @@ -2578,8 +2806,14 @@ msgstr "Часовий пояс не обрано." #: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 #: actions/remotesubscribe.php:98 #, php-format -msgid "To subscribe, you can [login](%%action.login%%), or [register](%%action.register%%) a new account. If you already have an account on a [compatible microblogging site](%%doc.openmublog%%), enter your profile URL below." -msgstr "Щоб підписатись, ви можете [увійти](%%action.login%%), або [зареєструвати](%%action.register%%) новий рахунок. Якщо ви вже маєте рахунок на [сумісному сайті](%%doc.openmublog%%), введіть URL-адресу вашого профілю нижче." +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" +"Щоб підписатись, ви можете [увійти](%%action.login%%), або [зареєструвати](%%" +"action.register%%) новий рахунок. Якщо ви вже маєте рахунок на [сумісному " +"сайті](%%doc.openmublog%%), введіть URL-адресу вашого профілю нижче." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 #: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 @@ -2633,8 +2867,12 @@ msgid "Unknown version of OMB protocol." msgstr "Невідома версія протоколу OMB." #: ../lib/util.php:269 lib/util.php:285 -msgid "Unless otherwise specified, contents of this site are copyright by the contributors and available under the " -msgstr "Якщо не зазначено інше, авторське право на вміст цього сайту належить контрибуторам і доступне під " +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" +"Якщо не зазначено інше, авторське право на вміст цього сайту належить " +"контрибуторам і доступне під " #: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 #: actions/confirmaddress.php:90 @@ -2695,8 +2933,17 @@ msgid "Upload" msgstr "Завантажити" #: ../actions/avatar.php:27 -msgid "Upload a new \"avatar\" (user image) here. You can't edit the picture after you upload it, so make sure it's more or less square. It must be under the site license, also. Use a picture that belongs to you and that you want to share." -msgstr "Завантажити нову \"аватару\" (зображення користувача) можна тут. Ви не зможете відредагувати свою аватару після завантаження, так що спочатку переконайтесь, що вона має більш-менш квадратну форму. Ваше зображення зберігатиметься під ліцензією сайту, також. Використовуйте зображення, які належать вам, і які ви можете вільно демонструвати." +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" +"Завантажити нову \"аватару\" (зображення користувача) можна тут. Ви не " +"зможете відредагувати свою аватару після завантаження, так що спочатку " +"переконайтесь, що вона має більш-менш квадратну форму. Ваше зображення " +"зберігатиметься під ліцензією сайту, також. Використовуйте зображення, які " +"належать вам, і які ви можете вільно демонструвати." #: ../lib/settingsaction.php:91 msgid "Upload a new profile image" @@ -2704,8 +2951,11 @@ msgstr "Завантажити нове зображення користува #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 #: actions/invite.php:156 actions/invite.php:162 -msgid "Use this form to invite your friends and colleagues to use this service." -msgstr "Скористуйтесь ціїє формою аби запросити ваших друзів та колег до нашого сервісу." +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" +"Скористуйтесь ціїє формою аби запросити ваших друзів та колег до нашого " +"сервісу." #: ../actions/register.php:159 ../actions/register.php:162 #: actions/register.php:173 actions/register.php:176 actions/register.php:382 @@ -2798,8 +3048,12 @@ msgid "You already have this OpenID!" msgstr "Ви вже маєте цей OpenID!" #: ../actions/deletenotice.php:37 actions/deletenotice.php:37 -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що зворотня дія неможлива." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що " +"зворотня дія неможлива." #: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 #: actions/recoverpassword.php:36 @@ -2831,19 +3085,31 @@ msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Ви можете отримувати СМС через електронну пошту від %%site.name%%." #: ../actions/openidsettings.php:86 actions/openidsettings.php:143 -msgid "You can remove an OpenID from your account by clicking the button marked \"Remove\"." -msgstr "Ви можете видалити OpenID із свого рахунку, якщо натиснете кнопку \"Видалити\"." +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Ви можете видалити OpenID із свого рахунку, якщо натиснете кнопку \"Видалити" +"\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 #: actions/imsettings.php:70 #, php-format -msgid "You can send and receive notices through Jabber/GTalk [instant messages](%%doc.im%%). Configure your address and settings below." -msgstr "Ви можете надсилати та отримувати повідомлення через Jabber/GTalk [службу миттєвих повідомлень](%%doc.im%%). Вкажить свою адресу і налаштуйте опції нижче." +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" +"Ви можете надсилати та отримувати повідомлення через Jabber/GTalk [службу " +"миттєвих повідомлень](%%doc.im%%). Вкажить свою адресу і налаштуйте опції " +"нижче." #: ../actions/profilesettings.php:27 actions/profilesettings.php:69 #: actions/profilesettings.php:71 -msgid "You can update your personal profile info here so people know more about you." -msgstr "Ви можете доповнити свій особистий профіль, так що люди знатимуть про вас більше." +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" +"Ви можете доповнити свій особистий профіль, так що люди знатимуть про вас " +"більше." #: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 @@ -2867,8 +3133,24 @@ msgstr "Ви не надсилали нам цього профілю" #: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format -msgid "You have a new posting address on %1$s.\n\nSend email to %2$s to post new messages.\n\nMore email instructions at %3$s.\n\nFaithfully yours,\n%4$s" -msgstr "Ви маєте нову поштову адресу на %1$s.\n\nНадсилайте листи на %2$s, щоб друкувати нові повідомлення.\n\nБільше інформації про використання електронної пошти на %3$s.\n\nЩиро ваші,\n%4$s" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" +"Ви маєте нову поштову адресу на %1$s.\n" +"\n" +"Надсилайте листи на %2$s, щоб друкувати нові повідомлення.\n" +"\n" +"Більше інформації про використання електронної пошти на %3$s.\n" +"\n" +"Щиро ваші,\n" +"%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 #: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 @@ -2884,8 +3166,12 @@ msgstr "Ви маєте спочатку увійти, аби мати змог #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 #: actions/invite.php:144 actions/invite.php:150 -msgid "You will be notified when your invitees accept the invitation and register on the site. Thanks for growing the community!" -msgstr "Вас буде поінформовано, коли запрошені вами особи погодяться з запрошеннями і зареєструються на сайті. Дякуємо, що сприяєте формуванню спільноти!" +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" +"Вас буде поінформовано, коли запрошені вами особи погодяться з запрошеннями " +"і зареєструються на сайті. Дякуємо, що сприяєте формуванню спільноти!" #: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " @@ -2899,12 +3185,17 @@ msgstr "URL-адреса вашого OpenID" #: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 #: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." -msgstr "Ваше ім'я користувача на цьому сервері, або зареєстрована електронна адреса." +msgstr "" +"Ваше ім'я користувача на цьому сервері, або зареєстрована електронна адреса." #: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох " +"сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." #: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 #: lib/util.php:770 lib/util.php:816 @@ -3027,7 +3318,8 @@ msgstr "« Вперед" #: actions/smssettings.php:228 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." -msgstr "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." +msgstr "" +"Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." #: actions/disfavor.php:55 actions/disfavor.php:81 msgid "This notice is not a favorite!" @@ -3045,7 +3337,8 @@ msgstr "Обрати" #: actions/emailsettings.php:92 actions/emailsettings.php:157 #: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." -msgstr "Надсилати мені листа, коли хтось додає моє повідомлення до списку обраних." +msgstr "" +"Надсилати мені листа, коли хтось додає моє повідомлення до списку обраних." #: actions/emailsettings.php:95 actions/emailsettings.php:163 #: actions/emailsettings.php:169 @@ -3096,12 +3389,17 @@ msgstr "Вхідні для %s" #: actions/inbox.php:53 actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "Це ваші вхідні повідомлення, тут містяться повідомлення надіслані приватно." +msgstr "" +"Це ваші вхідні повідомлення, тут містяться повідомлення надіслані приватно." #: actions/invite.php:178 actions/invite.php:213 #, php-format -msgid "%1$s has invited you to join them on %2$s (%3$s).\n\n" -msgstr "%1$s запросив(ла) вас приєднатись до %2$s (%3$s).\n\n" +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" +"%1$s запросив(ла) вас приєднатись до %2$s (%3$s).\n" +"\n" #: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 #: actions/register.php:416 @@ -3143,8 +3441,11 @@ msgstr "Ви не можете надіслати повідомлення ць #: actions/twitapidirect_messages.php:167 lib/command.php:240 #: actions/twitapidirect_messages.php:163 lib/command.php:233 #: actions/newmessage.php:164 lib/command.php:370 -msgid "Don't send a message to yourself; just say it to yourself quietly instead." -msgstr "Не надсилайте повідомлень самому собі; краще поговоріть з собою тихенько вголос." +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Не надсилайте повідомлень самому собі; краще поговоріть з собою тихенько " +"вголос." #: actions/newmessage.php:108 actions/microsummary.php:62 #: actions/newmessage.php:163 actions/newmessage.php:114 @@ -3190,11 +3491,14 @@ msgstr "Вихідні для %s" #: actions/outbox.php:53 actions/outbox.php:116 msgid "This is your outbox, which lists private messages you have sent." -msgstr "Це ваші вихідні повідомлення, тут містяться повідомлення, які ви надіслали приватно." +msgstr "" +"Це ваші вихідні повідомлення, тут містяться повідомлення, які ви надіслали " +"приватно." #: actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format -msgid "Search for people on %%site.name%% by their name, location, or interests. " +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " msgstr "Пошук людей на %%site.name%% за ім'ям, локацією або інтересами. " #: actions/profilesettings.php:27 actions/profilesettings.php:69 @@ -3246,8 +3550,12 @@ msgstr "Пароль має складатись з 6-ти або більше #: actions/register.php:216 #, php-format -msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may want to..." -msgstr "Вітаємо, %s! Ласкаво просимо до %%%%site.name%%%%. Звідси ви можливо схочете..." +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" +"Вітаємо, %s! Ласкаво просимо до %%%%site.name%%%%. Звідси ви можливо " +"схочете..." #: actions/register.php:227 msgid "(You should receive a message by email momentarily, with " @@ -3343,7 +3651,8 @@ msgstr "Отримувача не знайдено." #: actions/twitapidirect_messages.php:162 #: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." -msgstr "Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом." +msgstr "" +"Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 #: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 @@ -3370,12 +3679,20 @@ msgstr "%s додав(ла) ваше повідомлення до обрани #: actions/twitapifavorites.php:188 lib/mail.php:276 #: actions/twitapifavorites.php:165 #, php-format -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\n" -msgstr "%1$s щойно позначив(ла) ваше повідомлення від %2$s як одне з обраних ним(нею)\n\n" +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" +"%1$s щойно позначив(ла) ваше повідомлення від %2$s як одне з обраних ним" +"(нею)\n" +"\n" #: actions/twittersettings.php:27 -msgid "Add your Twitter account to automatically send your notices to Twitter, " -msgstr "Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень туди, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" +"Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень " +"туди, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 #: actions/twittersettings.php:61 @@ -3422,8 +3739,12 @@ msgstr "Підписатись до моїх друзів на Твіттері #: actions/twittersettings.php:122 actions/twittersettings.php:331 #: actions/twittersettings.php:348 -msgid "Username must have only numbers, upper- and lowercase letters, and underscore (_). 15 chars max." -msgstr "Ім'я користувача має складатись лише з цифр, літер верхнього та нижнього регістрів та символів підкреслювання (_). 15 знаків це максимум." +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" +"Ім'я користувача має складатись лише з цифр, літер верхнього та нижнього " +"регістрів та символів підкреслювання (_). 15 знаків це максимум." #: actions/twittersettings.php:128 actions/twittersettings.php:334 #: actions/twittersettings.php:338 actions/twittersettings.php:355 @@ -3638,8 +3959,12 @@ msgstr "Користувач без відповідного профілю у #: lib/mail.php:147 lib/mail.php:289 #, php-format -msgid "You have a new posting address on %1$s.\n\n" -msgstr "Тепер ви маєте нову адресу для надсилання повідомлень на %1$s.\n\n" +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" +"Тепер ви маєте нову адресу для надсилання повідомлень на %1$s.\n" +"\n" #: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format @@ -3648,12 +3973,17 @@ msgstr "Нове приватне повідомлення від %s" #: lib/mail.php:253 lib/mail.php:512 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n" -msgstr "%1$s (%2$s) надіслав(ла) вам приватне повідомлення:\n\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" +"%1$s (%2$s) надіслав(ла) вам приватне повідомлення:\n" +"\n" #: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." -msgstr "Лише користувач має можливість переглядати свою власну поштову скриньку." +msgstr "" +"Лише користувач має можливість переглядати свою власну поштову скриньку." #: lib/openid.php:195 lib/openid.php:203 msgid "This form should automatically submit itself. " @@ -3843,7 +4173,9 @@ msgstr "Редагувати групу %s" #: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 #: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" -msgstr "Поштові скриньки для вхідних повідомлень мають бути дозволені для роботи у групах" +msgstr "" +"Поштові скриньки для вхідних повідомлень мають бути дозволені для роботи у " +"групах" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 #: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 @@ -3927,7 +4259,8 @@ msgstr "Ця електронна адреса вже належить " #: actions/emailsettings.php:343 msgid "A confirmation code was sent to the email address you added. " -msgstr "Код підтвердження був відправлений на електронну адресу, яку ви додали. " +msgstr "" +"Код підтвердження був відправлений на електронну адресу, яку ви додали. " #: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" @@ -4136,7 +4469,9 @@ msgstr "Групи, сторінка %d" #: actions/groups.php:90 #, php-format msgid "%%%%site.name%%%% groups let you find and talk with " -msgstr "Групи на сайті %%%%site.name%%%% надають вам можливість знайти та спілкуватись з " +msgstr "" +"Групи на сайті %%%%site.name%%%% надають вам можливість знайти та " +"спілкуватись з " #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 @@ -4145,7 +4480,8 @@ msgstr "Створити нову групу" #: actions/groupsearch.php:57 #, php-format -msgid "Search for groups on %%site.name%% by their name, location, or description. " +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " msgstr "Пошук груп на %%site.name%% за їх назвою, локацією або описом. " #: actions/groupsearch.php:63 actions/groupsearch.php:58 @@ -4275,8 +4611,11 @@ msgid "Ajax Error" msgstr "Помилка в Ajax" #: actions/nudge.php:85 -msgid "This user doesn't allow nudges or hasn't confirmed or set his email yet." -msgstr "Цей користувач не дозволив себе \"розштовхувати\", або не підтвердив чи не налаштував преференції електронної пошти." +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" +"Цей користувач не дозволив себе \"розштовхувати\", або не підтвердив чи не " +"налаштував преференції електронної пошти." #: actions/nudge.php:94 msgid "Nudge sent" @@ -4350,8 +4689,11 @@ msgstr "Інформація профілю" #: actions/profilesettings.php:124 actions/profilesettings.php:125 #: actions/profilesettings.php:140 -msgid "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Позначте себе тегами (літери, цифри, -, . та _), відокремлюючи кожен комою або пробілом" +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" +"Позначте себе тегами (літери, цифри, -, . та _), відокремлюючи кожен комою " +"або пробілом" #: actions/profilesettings.php:144 msgid "Automatically subscribe to whoever " @@ -4382,8 +4724,12 @@ msgstr "Не вдається відновити загальний потік." #: actions/public.php:220 #, php-format -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" +"Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/" +"wiki/Micro-blogging) " #: actions/publictagcloud.php:57 msgid "Public tag cloud" @@ -4402,7 +4748,8 @@ msgstr "Хмарка тегів" #: actions/register.php:177 actions/register.php:394 actions/register.php:183 #: actions/register.php:398 msgid "Sorry, only invited people can register." -msgstr "Пробачте, але лише ті, кого було запрошено, мають змогу зареєструватись тут." +msgstr "" +"Пробачте, але лише ті, кого було запрошено, мають змогу зареєструватись тут." #: actions/register.php:149 msgid "You can't register if you don't " @@ -4530,8 +4877,12 @@ msgstr "Всі учасники" #: actions/showgroup.php:378 #, php-format -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом " +"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/showmessage.php:98 msgid "Only the sender and recipient " @@ -4583,8 +4934,12 @@ msgstr "Всі групи" #: actions/showstream.php:542 #, php-format -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service " -msgstr "**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" +"**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі " +"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/smssettings.php:128 msgid "Phone number, no punctuation or spaces, " @@ -4689,16 +5044,23 @@ msgid "Tag user" msgstr "Позначити користувача" #: actions/tagother.php:149 actions/tagother.php:151 -msgid "Tags for this user (letters, numbers, -, ., and _), comma- or space- separated" -msgstr "Позначити користувача тегами (літери, цифри, -, . та _), відокремлюючи кожен комою або пробілом" +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" +"Позначити користувача тегами (літери, цифри, -, . та _), відокремлюючи кожен " +"комою або пробілом" #: actions/tagother.php:164 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." #: actions/tagother.php:191 actions/tagother.php:193 -msgid "You can only tag people you are subscribed to or who are subscribed to you." -msgstr "Ви маєте можливість позначати тегами тих, до кого ви підписані, а також тих, хто є підписаним до вас." +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" +"Ви маєте можливість позначати тегами тих, до кого ви підписані, а також тих, " +"хто є підписаним до вас." #: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." @@ -4792,8 +5154,11 @@ msgstr "Проблема при збереженні повідомлення. #: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 #: classes/Notice.php:188 -msgid "Too many notices too fast; take a breather and post again in a few minutes." -msgstr "Дуже багато повідомлень за короткий термін; відпочиньте трошки і повертайтесь за кілька хвилин." +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" +"Дуже багато повідомлень за короткий термін; відпочиньте трошки і " +"повертайтесь за кілька хвилин." #: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 #: classes/Notice.php:202 @@ -4972,7 +5337,8 @@ msgstr "Опишіть групу або тему, вкладаючись у 140 #: lib/groupeditform.php:158 lib/groupeditform.php:173 #: lib/groupeditform.php:179 -msgid "Location for the group, if any, like \"City, State (or Region), Country\"" +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Локація групи, на зразок \"Місто, область (або регіон), країна\"" #: lib/groupnav.php:84 lib/searchgroupnav.php:84 @@ -5036,8 +5402,12 @@ msgstr "Увійти або зареєструватись з OpenID" #: lib/mail.php:175 #, php-format -msgid "Hey, %s.\n\n" -msgstr "Ей, %s.\n\n" +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" +"Ей, %s.\n" +"\n" #: lib/mail.php:236 #, php-format @@ -5056,8 +5426,12 @@ msgstr "Веб-сторінка: %s\n" #: lib/mail.php:258 lib/mail.php:257 #, php-format -msgid "Bio: %s\n\n" -msgstr "Про себе: %s\n\n" +msgid "" +"Bio: %s\n" +"\n" +msgstr "" +"Про себе: %s\n" +"\n" #: lib/mail.php:461 lib/mail.php:462 #, php-format @@ -5225,17 +5599,17 @@ msgid "Unsubscribe from this user" msgstr "Відписатись від цього користувача" #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "Живлення для друзів %s" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "Живлення для друзів %s" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "Живлення для друзів %s" @@ -5245,7 +5619,7 @@ msgid "You and friends" msgstr "%s з друзями" #: actions/avatarsettings.php:78 -#, php-format, fuzzy +#, fuzzy, php-format msgid "You can upload your personal avatar. The maximum file size is %s." msgstr "Ви можете завантажити вашу персональну аватару." @@ -5254,24 +5628,56 @@ msgstr "Ви можете завантажити вашу персональну msgid "Avatar deleted." msgstr "Аватару оновлено." +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + #: actions/deletenotice.php:73 actions/deletenotice.php:103 #, fuzzy -msgid "You are about to permanently delete a notice. Once this is done, it cannot be undone." -msgstr "Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що зворотня дія неможлива." +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Ви видаляєте повідомлення назавжди. Якщо ви це зробите, то пам'ятайте, що " +"зворотня дія неможлива." #: actions/deletenotice.php:127 actions/deletenotice.php:157 #, fuzzy msgid "There was a problem with your session token. Try again, please." -msgstr "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." +msgstr "" +"Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." #: actions/emailsettings.php:168 actions/emailsettings.php:174 #, fuzzy msgid "Send me email when someone sends me an \"@-reply\"." msgstr "Надсилати мені листа, коли хтось шле приватне повідомлення для мене." +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + #: actions/grouplogo.php:155 actions/grouplogo.php:150 -#, php-format, fuzzy -msgid "You can upload a logo image for your group. The maximum file size is %s." +#, fuzzy, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." msgstr "Ви маєте можливість завантажити логотип для вашої группи." #: actions/grouplogo.php:367 actions/grouplogo.php:362 @@ -5280,14 +5686,29 @@ msgid "Pick a square area of the image to be the logo." msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою." #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "Мікроблог від %s" #: actions/groupsearch.php:57 actions/groupsearch.php:52 -#, php-format, fuzzy -msgid "Search for groups on %%site.name%% by their name, location, or description. Separate the terms by spaces; they must be 3 characters or more." -msgstr "Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків або більше." +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Пошук людей на %%site.name%% за їх ім'ям, локацією або інтересами. " +"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків " +"або більше." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" #: actions/newmessage.php:102 #, fuzzy @@ -5295,14 +5716,18 @@ msgid "Only logged-in users can send direct messages." msgstr "Помилка при відправці прямого повідомлення." #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr " Потік пошуку для \"%s\"" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." -msgstr "З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як змінювати налаштування." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"З міркувань безпеки, будь ласка, введіть ще раз ім'я та пароль, перед тим як " +"змінювати налаштування." #: actions/public.php:125 actions/public.php:133 actions/public.php:151 #, fuzzy @@ -5319,10 +5744,35 @@ msgstr "Живлення загального потоку" msgid "Public Stream Feed (Atom)" msgstr "Живлення загального потоку" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." -msgstr " окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний номер." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" окрім цих приватних даних: пароль, електронна адреса, адреса IM, телефонний " +"номер." #: actions/showgroup.php:378 actions/showgroup.php:424 #: actions/showgroup.php:432 @@ -5330,33 +5780,44 @@ msgstr " окрім цих приватних даних: пароль, елек msgid "Created" msgstr "Створити" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "Профіль групи" #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr " профіль" #: actions/showstream.php:163 actions/showstream.php:128 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 1.0)" msgstr "Живлення повідомлень для %s" #: actions/showstream.php:170 actions/showstream.php:135 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (RSS 2.0)" msgstr "Живлення повідомлень для %s" #: actions/showstream.php:177 actions/showstream.php:142 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s (Atom)" msgstr "Живлення повідомлень для %s" #: actions/showstream.php:182 actions/showstream.php:147 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s" msgstr "Вихідні для %s" @@ -5372,10 +5833,47 @@ msgstr "Аватара" msgid "Edit profile settings" msgstr "Налаштування профілю" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." -msgstr "Код підтвердження був відправлений на телефонний номер, який ви додали. Перевірте вхідні повідомлення, там має бути код та подальші інструкції." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Код підтвердження був відправлений на телефонний номер, який ви додали. " +"Перевірте вхідні повідомлення, там має бути код та подальші інструкції." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 @@ -5392,18 +5890,28 @@ msgstr "Немає такого користувача" #: actions/twittersettings.php:72 #, fuzzy -msgid "Add your Twitter account to automatically send your notices to Twitter, and subscribe to Twitter friends already here." -msgstr "Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень туди, " +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Додайте ваш рахунок на Твіттері для автоматичного пересилання повідомлень " +"туди, " #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "Не маю можливості відновити інформацію для \"%s\" з Твіттера." #: actions/userauthorization.php:86 actions/userauthorization.php:81 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user's notices. If you didn't just ask to subscribe to someone's notices, click \"Reject\"." -msgstr "Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте підписатись на повідомлення даного користувача. Якщо ви не збирались підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " +"підписатись на повідомлення даного користувача. Якщо ви не збирались " +"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." #: actions/usergroups.php:131 actions/usergroups.php:130 #, fuzzy @@ -5412,8 +5920,12 @@ msgstr "Пошук людей або текстів" #: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 #, fuzzy -msgid "Too many duplicate messages too quickly; take a breather and post again in a few minutes." -msgstr "Дуже багато повідомлень за короткий термін; відпочиньте трошки і повертайтесь за кілька хвилин." +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Дуже багато повідомлень за короткий термін; відпочиньте трошки і " +"повертайтесь за кілька хвилин." #: lib/action.php:406 lib/action.php:425 #, fuzzy @@ -5425,21 +5937,218 @@ msgstr "Зв'язок з ІМ, СМС, Твіттер" msgid "Badge" msgstr "\"Розштовхати\"" +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "Аби скористатись %s додатком для Facebook, ви маєте увійти " +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s тепер слідкує за вашими повідомленями на %2$s.\n\n %3$s\n\nЩиро ваші,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s тепер слідкує за вашими повідомленями на %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Щиро ваші,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Пошук" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5456,12 +6165,12 @@ msgid "Block this user from this group" msgstr "Список учасників цієї групи." #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Профіль користувача." #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s з друзями, сторінка %d" @@ -5485,26 +6194,56 @@ msgstr "Код підтвердження" msgid "Do not delete this notice" msgstr "Не можна видалити це повідомлення." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Недійсний тег: \"%s\"" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Це ім'я вже використовується. Спробуйте інше." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Не можна позначити як обране." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5515,6 +6254,14 @@ msgstr "Нове повідомлення" msgid "No notice" msgstr "Нове повідомлення" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5526,6 +6273,10 @@ msgstr "Це недійсне ім'я користувача." msgid "No group specified." msgstr "Не визначено жодного профілю." +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5542,6 +6293,18 @@ msgstr "Ви не є учасником цієї групи." msgid "Block user from group" msgstr "Блокувати користувача." +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5552,6 +6315,12 @@ msgstr "Ви маєте спочатку увійти, аби мати змог msgid "Group design" msgstr "Групи" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5584,46 +6353,233 @@ msgstr "Ви маєте бути наділені правами адмінис msgid "Make Admin" msgstr "Адмін" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "Немає результатів" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Користувач заблокував вас." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Повідомлення" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Не вдалося зберегти профіль." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) дає вам можливість реєструватися на багатьох " +"сайтах користуючись єдиним рахунком. Керувати вашими OpenID можна звідси." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Налаштування профілю" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Цей сайт %%site.name%%, є сервісом [мікроблогів] (http://en.wikipedia.org/" +"wiki/Micro-blogging) " + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "У разі, якщо ви забули або загубили свій пароль, ви маєте можливість отримати новий на ту електронну адресу, яку було збережено у профілі вашого рахунку." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"У разі, якщо ви забули або загубили свій пароль, ви маєте можливість " +"отримати новий на ту електронну адресу, яку було збережено у профілі вашого " +"рахунку." #: actions/recoverpassword.php:158 #, fuzzy @@ -5645,30 +6601,87 @@ msgstr "Помилка з кодом підтвердження." msgid "Subscribe to a remote user" msgstr "Підписатись до цього користувача" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "Обрані повідомлення %s, сторінка %d" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Живлення повідомлень для групи %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Живлення повідомлень для групи %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Живлення повідомлень для групи %s" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** це група користувачів на сайті %%%%site.name%%%%, який є сервісом " +"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -5681,33 +6694,84 @@ msgid "Not a local notice" msgstr "Такого користувача немає." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Повідомлення позначені з %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Живлення повідомлень для групи %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі [мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі " +"[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s тепер слідкує за повідомленями " #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Живлення повідомлень для %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Живлення повідомлень для %s" @@ -5738,16 +6802,20 @@ msgid "Could not find target user." msgstr "Жодних статусів не виявлено." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Оновленні відповіді %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5763,41 +6831,127 @@ msgstr "Підписки %s" msgid "Profile design" msgstr "Налаштування профілю" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Ви не є учасником цієї групи." +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблема при збереженні повідомлення." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "Повідомлення до %1$s на %2$s" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Профіль користувача." +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Профіль" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "Завантажити" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "Змінити ваш пароль" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5813,21 +6967,127 @@ msgstr "Пошук" msgid "Links" msgstr "Увійти" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Блок" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Блокувати користувача." #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "Додати або редагувати логотип %s" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5843,11 +7103,26 @@ msgstr "Користувач" msgid "Search help" msgstr "Пошук" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "Веб-сторінка має недійсну URL-адресу." +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5855,12 +7130,12 @@ msgid "No such page" msgstr "Такого тегу немає." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Пряме повідомлення до %s" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Надто довго. Максимальний розмір 140 знаків." @@ -5869,8 +7144,12 @@ msgstr "Надто довго. Максимальний розмір 140 зна msgid "Could not unfollow user: User not found." msgstr "Не вдалося додати користувача: користувача не знайдено." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "опис надто довгий (140 знаків максимум)" @@ -5880,7 +7159,7 @@ msgid "You are already a member of that group." msgstr "Ви вже є учасником цієї групи" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Користувачеві %s не вдалось приєднатись до групи %s" @@ -5890,31 +7169,45 @@ msgid "You are not a member of this group." msgstr "Ви не є учасником цієї групи." #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Не вдалося видалити користувача %s з групи %s" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "Групи %s" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "%s бере участь в цих групах" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Діяльність групи" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Аватару оновлено." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Надто довго. Максимальний розмір повідомлення 140 знаків." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -5926,12 +7219,12 @@ msgid "Post to " msgstr "Фото" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "опис надто довгий (140 знаків максимум)" #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" @@ -5966,7 +7259,7 @@ msgid "Cannot read file." msgstr "Файл втрачено." #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Оновлення від %1$s на %2$s!" @@ -5976,17 +7269,41 @@ msgid "IM is not available." msgstr "Ця сторінка не доступна в " #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? [Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Увійти викристовуючи ім'я та пароль. Ще не маєте імені користувача? " +"[Зареєструвати](%%action.register%%) новий акаунт, або спробувати [OpenID](%%" +"action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Оновлення від %1$s на %2$s!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Всі оновлення за збігом з \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "З'єднання" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Опишіть себе та свої інтереси (140 знаків)" @@ -5996,13 +7313,20 @@ msgid "Describe yourself and your interests" msgstr "Опишіть себе та свої " #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Ви перевищили ліміт (140 знаків це максимум)" +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Це недійсна URL-адреса профілю (немає документа YADIS)." #: actions/remotesubscribe.php:176 @@ -6015,35 +7339,53 @@ msgstr "Це локальний профіль! Увійдіть аби підп msgid "Couldn’t get a request token." msgstr "Не вдалося отримати токен запиту." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Живлення повідомлень для %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Живлення повідомлень для %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" -msgstr "Живлення повідомлень для групи %s" +msgstr "Живлення повідомлень для %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "Повідомлення до %1$s на %2$s" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Живлення для обраних повідомлень від %s" +msgstr "Живлення для друзів %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Живлення для обраних повідомлень від %s" +msgstr "Живлення для друзів %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Живлення для обраних повідомлень від %s" +msgstr "Живлення для друзів %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "Група %s" +msgstr "Вихідні для %s" #: actions/shownotice.php:90 #, fuzzy @@ -6056,32 +7398,80 @@ msgid "SMS is not available." msgstr "Ця сторінка не доступна в " #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Живлення повідомлень для %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте підписатись на повідомлення даного користувача. Якщо ви не збирались підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте " +"підписатись на повідомлення даного користувача. Якщо ви не збирались " +"підписуватись ні на чиї повідомлення, просто натисніть \"Відмінити\"." #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Підписку було авторизовано, але URL-адреса у відповідь не передавалася. Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як авторизувати підписку. Ваш підписний токен:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Підписку було авторизовано, але URL-адреса у відповідь не передавалася. " +"Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " +"авторизувати підписку. Ваш підписний токен:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як скинути підписку." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Підписку було скинуто, але URL-адреса у відповідь не передавалася. Звіртесь " +"з інструкціями на сайті для більш конкретної інформації про те, як скинути " +"підписку." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Не можна прочитати URL аватари '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Неправильний тип зображення для '%s'" @@ -6096,27 +7486,35 @@ msgid "Site content license" msgstr "Ліцензія StatusNet software" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Не вдалося оновити користувача з підтвердженною електронною адресою." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Спробу \"розштовхати\" зараховано" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "Повідомлення надто довге - максимум 140 знаків, а ви надрукували %d" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Відповісти на це повідомлення" @@ -6125,11 +7523,54 @@ msgstr "Відповісти на це повідомлення" msgid "Error saving notice." msgstr "Проблема при збереженні повідомлення." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Немає коду підтвердження." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6146,32 +7587,76 @@ msgid "Describe the group or topic" msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Опишіть групу або тему, вкладаючись у 140 знаків" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Живлення повідомлень для %s" +msgstr "Нове повідомлення" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s додав(ла) ваше повідомлення до обраних" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " від " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Не можна видалити зі списку обраних." +msgstr "Не вдається відновити загальний потік." #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Видалити повідомлення" - diff --git a/locale/vi/LC_MESSAGES/statusnet.mo b/locale/vi/LC_MESSAGES/statusnet.mo index e560b197b4e17d455c3bc4129ebc5758078cbd9d..afc0fe7851b9c15ed29e05b0b9be40b251424733 100644 GIT binary patch delta 18711 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 u0nKk5I+p3pxN&$hP+#CPrIXc%r?`41AcO?rg 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 iQ|7?hp`Kac*(ozT8{L#kCH)4C@WzhLzBa@2 - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " -msgstr "Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết nối với OpenId của bạn." +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Bạn đã có tài khoản rồi, hãy đăng nhập bằng tên đăng nhập và mật khẩu để kết " +"nối với OpenId của bạn." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" #: lib/mail.php:175 lib/mail.php:174 -#, php-format, fuzzy -msgid "Hey, %s.\n\nSomeone just entered this email address on %s.\n\nIf it was you, and you want to confirm your entry, use the URL below:\n\n %s\n\nIf not, just ignore this message.\n\nThanks for your time, \n%s\n" -msgstr "Chào, %1$s .\n\nKhông biết có phải bạn là người vừa nhập địa chỉ email này trên %2$s.\n\nNếu bạn là người nhập, và bạn muốn xác nhận lại, hãy nhấn chuột vào đường dẫn dưới đây: \n\n %3$s\n\nNếu không phải bạn, hãy bỏ qua tin nhắn này.\n\nCảm ơn bạn đã bỏ thời gian để đọc thư,\n\n%4$s\n\n" +#, fuzzy, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" +"Chào, %1$s .\n" +"\n" +"Không biết có phải bạn là người vừa nhập địa chỉ email này trên %2$s.\n" +"\n" +"Nếu bạn là người nhập, và bạn muốn xác nhận lại, hãy nhấn chuột vào đường " +"dẫn dưới đây: \n" +"\n" +"\t%3$s\n" +"\n" +"Nếu không phải bạn, hãy bỏ qua tin nhắn này.\n" +"\n" +"Cảm ơn bạn đã bỏ thời gian để đọc thư,\n" +"\n" +"%4$s\n" +"\n" #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s đang theo dõi các tin nhắn của bạn trên %2$s.\n\n %3$s\n\nNgười bạn trung thành của bạn,\n%4$s.\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s đang theo dõi các tin nhắn của bạn trên %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Người bạn trung thành của bạn,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" #: lib/mail.php:513 #, php-format -msgid "%1$s (%2$s) sent you a private message:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nYou can reply to their message here:\n\n%4$s\n\nDon't reply to this email; it won't get to them.\n\nWith kind regards,\n%5$s\n" -msgstr "%1$s (%2$s) đã gửi đến bạn tin nhắn riêng:\n\n------------------------------------------------------\n%3$s\n------------------------------------------------------\n\nBạn có thể trả lời tại:\n\n%4$s\n\nĐừng trả lời lại thư này; sẽ không có ai nhận thư.\n\nChúc sức khỏe,\n%5$s\n" +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" +"%1$s (%2$s) đã gửi đến bạn tin nhắn riêng:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"Bạn có thể trả lời tại:\n" +"\n" +"%4$s\n" +"\n" +"Đừng trả lời lại thư này; sẽ không có ai nhận thư.\n" +"\n" +"Chúc sức khỏe,\n" +"%5$s\n" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "Tìm kiếm" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5037,15 +6402,19 @@ msgid "Block this user from this group" msgstr "Ban user" #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "Hồ sơ" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s và bạn bè" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -5061,26 +6430,56 @@ msgstr "Không có mã số xác nhận." msgid "Do not delete this notice" msgstr "Không thể xóa tin nhắn này." +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "Trang chủ '%s' không hợp lệ" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "Không thể tạo favorite." +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5091,11 +6490,28 @@ msgstr "Thông báo mới" msgid "No notice" msgstr "Thông báo mới" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "Biệt hiệu không hợp lệ." +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5112,6 +6528,18 @@ msgstr "Bạn chưa cập nhật thông tin riêng" msgid "Block user from group" msgstr "Ban user" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5122,6 +6550,12 @@ msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những msgid "Group design" msgstr "Nhóm" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5149,6 +6583,10 @@ msgstr "Các tính năng đã được lưu." msgid "Make user an admin of the group" msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + #: actions/groupmembers.php:470 actions/groupmembers.php:473 #, fuzzy msgid "Make this user an admin" @@ -5160,35 +6598,220 @@ msgstr "Kênh mà bạn tham gia" msgid "No results." msgstr "Không có kết quả nào" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "Người dùng không có thông tin." +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "Tin mới nhất" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "Không thể lưu hồ sơ cá nhân." +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản lý các OpenID của bạn ở đây." +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) đăng nhập nhiều website với cùng 1 tài khoản. Quản " +"lý các OpenID của bạn ở đây." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "Các thiết lập cho Hồ sơ cá nhân" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." -msgstr "Nếu bạn đã quên hoặc mất mật khẩu, bạn có thể tạo mới và được gửi đến địa chỉ email lưu trong tài khoản của bạn." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Nếu bạn đã quên hoặc mất mật khẩu, bạn có thể tạo mới và được gửi đến địa " +"chỉ email lưu trong tài khoản của bạn." #: actions/recoverpassword.php:158 #, fuzzy @@ -5210,54 +6833,172 @@ msgstr "Lỗi xảy ra với mã xác nhận." msgid "Subscribe to a remote user" msgstr "Theo nhóm này" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "%s ưa thích các tin nhắn" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Dòng tin nhắn cho %s" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Dòng tin nhắn cho %s" +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "Không có user nào." #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "Thông báo được gắn thẻ %s" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "Dòng tin nhắn cho %s" @@ -5277,22 +7018,34 @@ msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của b msgid "Could not determine source user." msgstr "Không thể lấy lại các tin nhắn ưa thích" +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "Không tìm thấy bất kỳ trạng thái nào." #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / Các cập nhật đang trả lời tới %2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "Dòng tin nhắn cho %s" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" @@ -5303,31 +7056,88 @@ msgstr "Tất cả đăng nhận" msgid "Profile design" msgstr "Các thiết lập cho Hồ sơ cá nhân" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Bạn chưa cập nhật thông tin riêng" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "%s chào mừng bạn " +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "Hồ sơ" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "Hồ sơ " +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + #: lib/designsettings.php:101 #, fuzzy msgid "Change background image" @@ -5338,6 +7148,23 @@ msgstr "Background Theme:" msgid "Upload file" msgstr "Tải file" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + #: lib/designsettings.php:161 #, fuzzy msgid "Tile background image" @@ -5368,41 +7195,175 @@ msgstr "Tìm kiếm" msgid "Links" msgstr "Đăng nhập" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + #: lib/designsettings.php:257 #, fuzzy msgid "Save design" msgstr "Lưu" +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "Ban user" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "Ban user" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + #: lib/mail.php:556 -#, php-format, fuzzy -msgid "%1$s just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" -msgstr "%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của mình.\n\nBạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n\n%3$s\n\nBạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n\n%4$s\n\nChúc sức khỏe,\n%5$s\n" +#, fuzzy, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " +"mình.\n" +"\n" +"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" +"\n" +"%3$s\n" +"\n" +"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" +"\n" +"%4$s\n" +"\n" +"Chúc sức khỏe,\n" +"%5$s\n" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "Không có nội dung!" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + #: lib/searchaction.php:156 lib/searchaction.php:162 #, fuzzy msgid "Search help" msgstr "Tìm kiếm" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "Trang chủ không phải là URL" +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5410,12 +7371,12 @@ msgid "No such page" msgstr "Không có tin nhắn nào." #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "Tin nhắn riêng" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "Quá dài. Tối đa là 140 ký tự." @@ -5424,8 +7385,12 @@ msgstr "Quá dài. Tối đa là 140 ký tự." msgid "Could not unfollow user: User not found." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" @@ -5435,7 +7400,7 @@ msgid "You are already a member of that group." msgstr "Bạn đã theo những người này:" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." @@ -5445,45 +7410,63 @@ msgid "You are not a member of this group." msgstr "Bạn chưa cập nhật thông tin riêng" #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "%s và nhóm" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." -msgstr "Thành viên" +msgstr "Bạn chưa cập nhật thông tin riêng" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "Mã nhóm" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "Hình đại diện đã được cập nhật." + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "Quá dài. Tối đa là 140 ký tự." +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." msgstr "Không hỗ trợ kiểu file ảnh này." +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "Tất cả các cập nhật của %s" +msgstr "Dòng tin nhắn cho %s" #: actions/finishremotesubscribe.php:80 #, fuzzy @@ -5515,23 +7498,52 @@ msgstr "Không có tin nhắn nào." msgid "Cannot read file." msgstr "Không có tin nhắn nào." +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Dòng tin nhắn cho %s" + #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." #: actions/login.php:259 -#, php-format -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài khoản, [hãy đăng ký](%%action.register%%) tài khoản mới." +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài " +"khoản, [hãy đăng ký](%%action.register%%) tài khoản mới, hoặc thử đăng nhập " +"bằng [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "Dòng tin nhắn cho %s" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "Các thay đổi phù hợp với từ \"%s\"" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "Kết nối" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" @@ -5541,49 +7553,78 @@ msgid "Describe yourself and your interests" msgstr "Nói về bạn và những sở thích của bạn khoảng 140 ký tự" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "Không phải là URL về hồ sơ cá nhân hợp lệ (không phải là " +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "Không thể lấy token yêu cầu." +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "Dòng tin nhắn cho %s" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "Dòng tin nhắn cho %s" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "Dòng tin nhắn cho %s" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" -msgstr "Trả lời cho %s" +msgstr "%s chào mừng bạn " #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "Tìm kiếm các tin nhắn ưa thích của %s" +msgstr "Chọn những người bạn của %s" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "Tìm kiếm các tin nhắn ưa thích của %s" +msgstr "Chọn những người bạn của %s" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "Tìm kiếm các tin nhắn ưa thích của %s" +msgstr "Chọn những người bạn của %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "%s và nhóm" +msgstr "Hộp thư đi của %s" #: actions/shownotice.php:90 #, fuzzy @@ -5596,32 +7637,79 @@ msgid "SMS is not available." msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận." #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "Dòng tin nhắn cho %s" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn của họ, hãy nhấn \"Hủy bỏ\"" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Vui lòng kiểm tra các chi tiết để chắc chắn rằng bạn muốn đăng nhận xem tin " +"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " +"của họ, hãy nhấn \"Hủy bỏ\"" #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "Đăng nhận được phép, nhưng URL trả lại không được gởi trả. Hãy kiểm tra các hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token của bạn là:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"Đăng nhận được phép, nhưng URL trả lại không được gởi trả. Hãy kiểm tra các " +"hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token " +"của bạn là:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." -msgstr "Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra các hướng dẫn chi tiết trên site để " +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra " +"các hướng dẫn chi tiết trên site để " + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "Không thể đọc URL cho hình đại diện '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "Kiểu file ảnh không phù hợp với '%s'" @@ -5636,17 +7724,35 @@ msgid "Site content license" msgstr "Tìm theo nội dung của tin nhắn" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "Không thể cập nhật thông tin user với địa chỉ email đã được xác nhận." +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "Tin đã gửi" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "Trả lời tin nhắn này" @@ -5655,11 +7761,58 @@ msgstr "Trả lời tin nhắn này" msgid "Error saving notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "Không có mã số xác nhận." +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + #: lib/galleryaction.php:139 #, fuzzy msgid "Select tag to filter" @@ -5671,37 +7824,89 @@ msgid "Describe the group or topic" msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "Dòng tin nhắn cho %s" +msgstr "Thông báo mới" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s da them tin nhan cua ban vao danh sach tin nhan ua thich" #: lib/mail.php:556 -#, php-format, fuzzy -msgid "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n\nThe URL of your notice is:\n\n%3$s\n\nThe text of your notice is:\n\n%4$s\n\nYou can see the list of %1$s's favorites here:\n\n%5$s\n\nFaithfully yours,\n%6$s\n" -msgstr "%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của mình.\n\nBạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n\n%3$s\n\nBạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n\n%4$s\n\nChúc sức khỏe,\n%5$s\n" +#, fuzzy, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" +"%1$s vừa thêm tin nhắn của bạn trên %2$s vào danh sách tin nhắn ưa thích của " +"mình.\n" +"\n" +"Bạn có thể xem lại nội dung tin nhắn của bạn tại đây:\n" +"\n" +"%3$s\n" +"\n" +"Bạn có thể xem danh sách tin nhắn ưa thích của %1$s tại đây: \n" +"\n" +"%4$s\n" +"\n" +"Chúc sức khỏe,\n" +"%5$s\n" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " từ " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "Không thể tạo favorite." +msgstr "Không thể lấy lại các tin nhắn ưa thích" #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "Xóa tin nhắn" - diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.mo b/locale/zh_CN/LC_MESSAGES/statusnet.mo index 4217cec2f5d7ddd5a64e6e9dfdfad1e52c08d96a..ce757eea54708e17d2a85c84c8521c07e809ff9b 100644 GIT binary patch literal 94043 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 D793FC delta 201 zcmcb8kM#qy#XTXGsSH5C2*ff#tOCT$K&%7AAYcK++kldmKpLb51|~0i6%=NqU}#`v zYM^UiVPL=&;IA8$T9#RynV+ZYl30>zrC?-WV5w_psB2&hWLg;*SQ#2=8vp^9Phwtr zX<~Y+Zb)iku9bpwMrK}WajJp_h>@r{Iq-EZvx%kY;i}O-TxEKJ@+A - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "你需要登录方能使用%sFacebook程序" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "%1$s 开始关注您的 %2$s 信息。\n\n %3$s\n\n为您效力的 %4$s\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s 开始关注您的 %2$s 信息。\n" +"\n" +"\t%3$s\n" +"\n" +"为您效力的 %4$s\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" #: lib/searchaction.php:122 lib/searchaction.php:120 #, fuzzy msgid "Search site" msgstr "搜索" +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + #: actions/attachment.php:73 #, fuzzy msgid "No such attachment." @@ -5594,12 +6183,12 @@ msgid "Block this user from this group" msgstr "该组成员列表。" #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "用户没有个人信息。" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s 及好友" @@ -5623,26 +6212,56 @@ msgstr "确认码" msgid "Do not delete this notice" msgstr "无法删除通告。" +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "主页'%s'不正确" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "昵称已被使用,换一个吧。" +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "无法创建收藏。" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -5653,6 +6272,14 @@ msgstr "新通告" msgid "No notice" msgstr "新通告" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." @@ -5664,6 +6291,10 @@ msgstr "不是有效的昵称。" msgid "No group specified." msgstr "没有收件人。" +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + #: actions/groupblock.php:95 #, fuzzy msgid "User is already blocked from group." @@ -5680,6 +6311,18 @@ msgstr "您未告知此个人信息" msgid "Block user from group" msgstr "阻止用户" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + #: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 #, fuzzy msgid "You must be logged in to edit a group." @@ -5690,6 +6333,12 @@ msgstr "您必须登录才能创建小组。" msgid "Group design" msgstr "组" +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -5722,45 +6371,229 @@ msgstr "只有admin才能编辑这个组" msgid "Make Admin" msgstr "admin管理员" +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "没有结果" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + #: actions/groupunblock.php:95 #, fuzzy msgid "User is not blocked from group." msgstr "用户没有个人信息。" +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + #: actions/newmessage.php:178 actions/newmessage.php:181 #, fuzzy msgid "Message sent" msgstr "新消息" +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "无法保存个人信息。" +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + #: actions/openidsettings.php:70 -#, php-format, fuzzy -msgid "[OpenID](%%doc.openid%%) lets you log into many sites with the same user account. Manage your associated OpenIDs from here." -msgstr "[OpenID](%%doc.openid%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已关联的 OpenID。" +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%)允许您使用相同的帐号登录许多不同的站点。在这里管理已" +"关联的 OpenID。" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" #: actions/othersettings.php:115 actions/othersettings.php:122 #, fuzzy msgid "View profile designs" msgstr "个人设置" +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + #: actions/public.php:245 actions/public.php:238 -#, php-format, fuzzy -msgid "This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool." -msgstr "这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) 服务" +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"这里是 %%site.name%%,一个微博客 [micro-blogging](http://en.wikipedia.org/" +"wiki/Micro-blogging) 服务" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." msgstr "如果您忘记了密码,可以使用此邮箱收到新的密码。" #: actions/recoverpassword.php:158 @@ -5783,30 +6616,87 @@ msgstr "验证码出错。" msgid "Subscribe to a remote user" msgstr "订阅 %s" +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "%s 收藏的通告" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + #: actions/showgroup.php:323 actions/showgroup.php:328 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s 的通告聚合" #: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s 的通告聚合" #: actions/showgroup.php:337 actions/showgroup.php:340 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s 的通告聚合" #: actions/showgroup.php:446 actions/showgroup.php:454 -#, php-format, fuzzy -msgid "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. Its members share short messages about their life and interests. " -msgstr "**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging)" +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"**%s** 是一个 %%%%site.name%%%% 的用户组,一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" #: actions/showgroup.php:474 actions/showgroup.php:482 #, fuzzy @@ -5819,33 +6709,84 @@ msgid "Not a local notice" msgstr "没有这个用户。" #: actions/showstream.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid " tagged %s" msgstr "带 %s 标签的通告" #: actions/showstream.php:121 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for %s tagged %s (RSS 1.0)" msgstr "%s 的通告聚合" +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showstream.php:393 actions/showstream.php:492 -#, php-format, fuzzy -msgid "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free Software [StatusNet](http://status.net/) tool. " -msgstr "**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging)" +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" +"(http://en.wikipedia.org/wiki/Micro-blogging)" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "%1$s 开始关注您的 %2$s 信息。" #: actions/tag.php:77 actions/tag.php:86 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 1.0)" msgstr "%s 的通告聚合" #: actions/tag.php:91 actions/tag.php:98 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (Atom)" msgstr "%s 的通告聚合" @@ -5876,16 +6817,20 @@ msgid "Could not find target user." msgstr "找不到任何信息。" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s / 回复 %2$s 的消息" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + #: actions/userauthorization.php:158 actions/userauthorization.php:188 #, fuzzy msgid "License" @@ -5901,41 +6846,127 @@ msgstr "所有订阅" msgid "Profile design" msgstr "个人设置" +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + #: actions/usergroups.php:153 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a member of any group." msgstr "您未告知此个人信息" +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "保存通告时出错。" -#: classes/User.php:319 classes/User.php:327 -#, php-format, fuzzy +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, fuzzy, php-format msgid "Welcome to %1$s, @%2$s!" msgstr "发送给 %1$s 的 %2$s 消息" +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "用户没有个人信息。" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + #: lib/attachmentlist.php:278 #, fuzzy msgid "Provider" msgstr "个人信息" +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "上传" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "修改密码" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" @@ -5951,21 +6982,127 @@ msgstr "搜索" msgid "Links" msgstr "登录" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "阻止" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "阻止用户" #: lib/groupnav.php:119 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Add or edit %s design" msgstr "添加或编辑 %s 图标" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" @@ -5981,11 +7118,26 @@ msgstr "用户" msgid "Search help" msgstr "搜索" +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "主页的URL不正确。" +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy @@ -5993,12 +7145,12 @@ msgid "No such page" msgstr "未找到此消息。" #: actions/apidirectmessage.php:89 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Direct messages from %s" msgstr "发给 %s 的直接消息" #: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max message size is %d chars." msgstr "超出长度限制。不能超过 140 个字符。" @@ -6007,8 +7159,12 @@ msgstr "超出长度限制。不能超过 140 个字符。" msgid "Could not unfollow user: User not found." msgstr "无法订阅用户:未找到。" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "描述过长(不能超过140字符)。" @@ -6018,7 +7174,7 @@ msgid "You are already a member of that group." msgstr "您已经是该组成员" #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "无法把 %s 用户添加到 %s 组" @@ -6028,31 +7184,45 @@ msgid "You are not a member of this group." msgstr "您未告知此个人信息" #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "无法订阅用户:未找到。" #: actions/apigrouplist.php:95 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's groups" msgstr "%s 群组" #: actions/apigrouplist.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Groups %s is a member of on %s." msgstr "%s 组是成员组成了" #: actions/apigrouplistall.php:94 -#, php-format, fuzzy +#, fuzzy, php-format msgid "groups on %s" msgstr "组动作" +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "头像已更新。" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + #: actions/apistatusesupdate.php:145 actions/newnotice.php:155 #: scripts/maildaemon.php:71 -#, php-format, fuzzy +#, fuzzy, php-format msgid "That's too long. Max notice size is %d chars." msgstr "超出长度限制。不能超过 140 个字符。" +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #, fuzzy msgid "Unsupported format." @@ -6064,12 +7234,12 @@ msgid "Post to " msgstr "相片" #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "描述过长(不能超过140字符)。" #: actions/favoritesrss.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates favored by %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" @@ -6104,7 +7274,7 @@ msgid "Cannot read file." msgstr "没有这份通告。" #: actions/grouprss.php:133 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上 %1$s 的更新!" @@ -6114,17 +7284,40 @@ msgid "IM is not available." msgstr "这个页面不提供您想要的媒体类型" #: actions/login.php:259 -#, php-format, fuzzy -msgid "Login with your username and password. Don't have a username yet? [Register](%%action.register%%) a new account." -msgstr "请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, 或使用 [OpenID](%%action.openidlogin%%). " +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " +"或使用 [OpenID](%%action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "%2$s 上 %1$s 的更新!" #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "所有匹配搜索条件\"%s\"的消息" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "连接" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "用不超过140个字符描述您自己和您的爱好" @@ -6134,13 +7327,20 @@ msgid "Describe yourself and your interests" msgstr "用不超过140个字符描述您自己和您的爱好" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "自述过长(不能超过140字符)。" +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + #: actions/remotesubscribe.php:168 #, fuzzy -msgid "Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." msgstr "不是有效的个人信息URL(没有YADIS数据)。" #: actions/remotesubscribe.php:176 @@ -6153,35 +7353,53 @@ msgstr "那是一个本地资料!需要登录才能订阅。" msgid "Couldn’t get a request token." msgstr "无法获得一份请求标记。" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "%s 的通告聚合" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "%s 的通告聚合" + #: actions/replies.php:158 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies feed for %s (Atom)" msgstr "%s 的通告聚合" #: actions/repliesrss.php:72 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Replies to %1$s on %2$s!" msgstr "发送给 %1$s 的 %2$s 消息" #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "%s 的收藏的聚合" +msgstr "%s 好友的聚合" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "%s 的收藏的聚合" +msgstr "%s 好友的聚合" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "%s 的收藏的聚合" +msgstr "%s 好友的聚合" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" -msgstr "%s 组" +msgstr "%s 的发件箱" #: actions/shownotice.php:90 #, fuzzy @@ -6194,32 +7412,74 @@ msgid "SMS is not available." msgstr "这个页面不提供您想要的媒体类型" #: actions/tag.php:92 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice feed for tag %s (RSS 2.0)" msgstr "%s 的通告聚合" +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/userauthorization.php:110 #, fuzzy -msgid "Please check these details to make sure that you want to subscribe to this user’s notices. If you didn’t just ask to subscribe to someone’s notices, click “Reject”." -msgstr "请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通告,请点击\"取消\"。" +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" +"告,请点击\"取消\"。" #: actions/userauthorization.php:249 #, fuzzy -msgid "The subscription has been authorized, but no callback URL was passed. Check with the site’s instructions for details on how to authorize the subscription. Your subscription token is:" -msgstr "订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"订阅已确认,但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是:" #: actions/userauthorization.php:261 #, fuzzy -msgid "The subscription has been rejected, but no callback URL was passed. Check with the site’s instructions for details on how to fully reject the subscription." +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." msgstr "订阅已被拒绝,但是没有回传URL。请到此网站查看如何拒绝订阅。" +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "无法访问头像URL '%s'" #: actions/userauthorization.php:348 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Wrong image type for avatar URL ‘%s’." msgstr "'%s' 图像格式错误" @@ -6234,27 +7494,35 @@ msgid "Site content license" msgstr "StatusNet软件注册证" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" msgstr "无法更新已确认的电子邮件。" +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + #: lib/command.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Nudge sent to %s" msgstr "振铃呼叫发出。" +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + #: lib/command.php:358 scripts/xmppdaemon.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Message too long - maximum is %d characters, you sent %d" msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" #: lib/command.php:431 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notice too long - maximum is %d characters, you sent %d" msgstr "您的消息包含 %d 个字符,超出长度限制 - 不能超过 140 个字符。" #: lib/command.php:439 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Reply to %s sent" msgstr "无法删除通告。" @@ -6263,11 +7531,54 @@ msgstr "无法删除通告。" msgid "Error saving notice." msgstr "保存通告时出错。" +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "没有验证码" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + #: lib/common.php:194 #, fuzzy msgid "Go to the installer." @@ -6284,32 +7595,76 @@ msgid "Describe the group or topic" msgstr "用不超过140个字符描述您自己和您的爱好" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "用不超过140个字符描述您自己和您的爱好" #: lib/jabber.php:192 -#, php-format, fuzzy +#, fuzzy, php-format msgid "notice id: %s" -msgstr "%s 的通告聚合" +msgstr "新通告" #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s 收藏了您的通告" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + #: lib/mailbox.php:227 lib/noticelist.php:424 #, fuzzy msgid "from" msgstr " 从 " +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + #: lib/mediafile.php:201 lib/mediafile.php:237 #, fuzzy msgid "Could not determine file's mime-type!" -msgstr "无法删除收藏。" +msgstr "无法获取收藏的通告。" #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "删除通告" - diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.mo b/locale/zh_TW/LC_MESSAGES/statusnet.mo index aa501958cefc7e2e8b361958ad5c0c296e69c6d9..1ce207269b7d37f5f545ea2aba182868a1df89a9 100644 GIT binary patch literal 26115 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 bVxH#Y-A=j8CYGj?wVi93O3Ej%aaIHX$N(O) diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index 570d7db63e..41343732dd 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -8,13 +8,14 @@ # msgid "" msgstr "" -"" "Project-Id-Version: StatusNet\n" -"PO-Revision-Date: 2009-11-06 12:24:52+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-11-06 13:16+0000\n" +"PO-Revision-Date: 2009-11-06 15:44:55+0000\n" "Language-Team: Traditional Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r58634); Translate extension (2009-08-03)\n" +"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" "X-Message-Group: out-statusnet\n" @@ -28,9 +29,59 @@ msgstr "搜尋 \"%s\"相關資料" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 #: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 -msgid " except this private data: password, email address, IM address, phone number." +msgid "" +" except this private data: password, email address, IM address, phone number." msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" +#: ../actions/showstream.php:400 ../lib/stream.php:109 +#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76 +msgid " from " +msgstr "" + +#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 +#, php-format +msgid "%1$s / Updates replying to %2$s" +msgstr "" + +#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "" + +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" + #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 #: lib/mail.php:236 lib/mail.php:235 #, php-format @@ -39,8 +90,28 @@ msgstr "現在%1$s在%2$s成為你的粉絲囉" #: ../lib/mail.php:126 #, php-format -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\nFaithfully yours,\n%4$s.\n" -msgstr "現在%1$s在%2$s成為你的粉絲囉。\n\n %3$s\n\n\n%4$s.\n敬上。\n" +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Faithfully yours,\n" +"%4$s.\n" +msgstr "" +"現在%1$s在%2$s成為你的粉絲囉。\n" +"\n" +"\t%3$s\n" +"\n" +"\n" +"%4$s.\n" +"敬上。\n" + +#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" #: ../actions/shownotice.php:45 actions/shownotice.php:45 #: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 @@ -49,6 +120,13 @@ msgstr "現在%1$s在%2$s成為你的粉絲囉。\n\n %3$s\n\n\n%4$s.\n敬上。 msgid "%1$s's status on %2$s" msgstr "%1$s的狀態是%2$s" +#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 +#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 +#, php-format +msgid "%s (%s)" +msgstr "" + #: ../actions/publicrss.php:62 actions/publicrss.php:48 #: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format @@ -70,11 +148,52 @@ msgstr "%s的公開內容" msgid "%s and friends" msgstr "%s與好友" +#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "" + +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 +#, php-format +msgid "%s status" +msgstr "" + +#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 +#, php-format +msgid "%s timeline" +msgstr "" + +#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "" + +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" + #: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 #: lib/action.php:752 lib/action.php:767 #, php-format -msgid "**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). " -msgstr "**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型部落格服務" +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" +"**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型" +"部落格服務" #: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 #: lib/action.php:754 lib/action.php:769 @@ -94,6 +213,11 @@ msgstr "必須注明作者姓名或昵稱." msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" +#: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" + #: ../actions/password.php:42 actions/profilesettings.php:181 #: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" @@ -105,12 +229,109 @@ msgstr "6個以上字元" msgid "6 or more characters, and don't forget it!" msgstr "6個或6個以上字元,別忘了自己密碼喔" +#: ../actions/register.php:154 actions/register.php:168 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 +msgid "6 or more characters. Required." +msgstr "" + #: ../actions/imsettings.php:197 actions/imsettings.php:205 #: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format -msgid "A confirmation code was sent to the IM address you added. You must approve %s for sending messages to you." +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" +#: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 +msgid "" +"A confirmation code was sent to the email address you added. Check your " +"inbox (and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/smssettings.php:216 actions/smssettings.php:224 +msgid "" +"A confirmation code was sent to the phone number you added. Check your inbox " +"(and spam box!) for the code and instructions on how to use it." +msgstr "" + +#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45 +#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259 +#: ../actions/twitapistatuses.php:370 ../actions/twitapistatuses.php:532 +#: ../actions/twitapiusers.php:122 actions/twitapiaccount.php:49 +#: actions/twitapidirect_messages.php:104 actions/twitapifavorites.php:111 +#: actions/twitapifavorites.php:120 actions/twitapifriendships.php:156 +#: actions/twitapihelp.php:46 actions/twitapistatuses.php:93 +#: actions/twitapistatuses.php:176 actions/twitapistatuses.php:288 +#: actions/twitapistatuses.php:298 actions/twitapistatuses.php:454 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:504 +#: actions/twitapiusers.php:55 actions/twitapiaccount.php:37 +#: actions/twitapidirect_messages.php:111 actions/twitapifavorites.php:85 +#: actions/twitapifavorites.php:102 actions/twitapifriendships.php:121 +#: actions/twitapihelp.php:44 actions/twitapistatusnet.php:82 +#: actions/twitapistatusnet.php:151 actions/twitapistatuses.php:79 +#: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 +#: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 +#: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 +msgid "API method not found!" +msgstr "" + +#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113 +#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28 +#: ../actions/twitapiblocks.php:34 ../actions/twitapidirect_messages.php:43 +#: ../actions/twitapidirect_messages.php:49 +#: ../actions/twitapidirect_messages.php:56 +#: ../actions/twitapidirect_messages.php:62 ../actions/twitapifavorites.php:41 +#: ../actions/twitapifavorites.php:47 ../actions/twitapifavorites.php:53 +#: ../actions/twitapihelp.php:52 ../actions/twitapinotifications.php:29 +#: ../actions/twitapinotifications.php:35 ../actions/twitapistatuses.php:768 +#: actions/twitapiaccount.php:56 actions/twitapiaccount.php:109 +#: actions/twitapiaccount.php:114 actions/twitapiblocks.php:28 +#: actions/twitapiblocks.php:33 actions/twitapidirect_messages.php:170 +#: actions/twitapifavorites.php:168 actions/twitapihelp.php:53 +#: actions/twitapinotifications.php:29 actions/twitapinotifications.php:34 +#: actions/twitapistatuses.php:690 actions/twitapiaccount.php:45 +#: actions/twitapiaccount.php:97 actions/twitapiaccount.php:103 +#: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 +#: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 +#: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 +msgid "API method under construction." +msgstr "" + #: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 #: lib/action.php:706 lib/action.php:721 msgid "About" @@ -140,6 +361,11 @@ msgstr "新增" msgid "Add OpenID" msgstr "新增OpenID" +#: ../lib/settingsaction.php:97 lib/settingsaction.php:91 +#: lib/accountsettingsaction.php:117 +msgid "Add or remove OpenIDs" +msgstr "" + #: ../actions/emailsettings.php:38 ../actions/imsettings.php:39 #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 @@ -149,6 +375,11 @@ msgstr "新增OpenID" msgid "Address" msgstr "信箱" +#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "" + #: ../actions/showstream.php:273 actions/showstream.php:288 #: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" @@ -180,6 +411,12 @@ msgstr "已登入" msgid "Already subscribed!." msgstr "此帳號已註冊" +#: ../actions/deletenotice.php:54 actions/deletenotice.php:55 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "" + #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 #: actions/userauthorization.php:81 actions/userauthorization.php:76 #: actions/userauthorization.php:105 @@ -193,6 +430,13 @@ msgstr "註冊確認" msgid "Automatically login in the future; not for shared computers!" msgstr "未來在同一部電腦自動登入" +#: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" + #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 @@ -210,8 +454,24 @@ msgstr "更新個人圖像" #: ../actions/imsettings.php:55 actions/imsettings.php:56 #: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format -msgid "Awaiting confirmation on this address. Check your Jabber/GTalk account for a message with further instructions. (Did you add %s to your buddy list?)" -msgstr "等待確認此信箱。看看你的Jabber/GTalk是否有訊息指示下一步動作。(你加入%s到你的好友清單了嗎?)" +msgid "" +"Awaiting confirmation on this address. Check your Jabber/GTalk account for a " +"message with further instructions. (Did you add %s to your buddy list?)" +msgstr "" +"等待確認此信箱。看看你的Jabber/GTalk是否有訊息指示下一步動作。(你加入%s到你的" +"好友清單了嗎?)" + +#: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" + +#: ../actions/smssettings.php:58 actions/smssettings.php:58 +#: actions/smssettings.php:111 actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "" #: ../lib/util.php:1318 lib/util.php:1452 #, fuzzy @@ -235,6 +495,11 @@ msgstr "自我介紹" msgid "Bio is too long (max 140 chars)." msgstr "自我介紹過長(共140個字元)" +#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "" + #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 #: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format @@ -268,16 +533,37 @@ msgstr "無法初始化OpenID用戶對象(consumer object)" msgid "Cannot normalize that Jabber ID" msgstr "此JabberID錯誤" +#: ../actions/emailsettings.php:181 actions/emailsettings.php:199 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 +msgid "Cannot normalize that email address" +msgstr "" + #: ../actions/password.php:45 actions/profilesettings.php:184 #: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "更改" +#: ../lib/settingsaction.php:88 lib/settingsaction.php:88 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 +msgid "Change email handling" +msgstr "" + #: ../actions/password.php:32 actions/profilesettings.php:36 #: actions/passwordsettings.php:58 msgid "Change password" msgstr "更改密碼" +#: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 +msgid "Change your password" +msgstr "" + +#: ../lib/settingsaction.php:85 lib/settingsaction.php:85 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 +msgid "Change your profile settings" +msgstr "" + #: ../actions/password.php:43 ../actions/recoverpassword.php:181 #: ../actions/register.php:155 ../actions/smssettings.php:65 #: actions/profilesettings.php:182 actions/recoverpassword.php:187 @@ -305,11 +591,36 @@ msgstr "確認信箱" msgid "Confirmation cancelled." msgstr "確認取消" +#: ../actions/smssettings.php:63 actions/smssettings.php:63 +#: actions/smssettings.php:118 actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "" + #: ../actions/confirmaddress.php:38 actions/confirmaddress.php:38 #: actions/confirmaddress.php:80 msgid "Confirmation code not found." msgstr "確認碼遺失" +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" + #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 #: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 #: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 @@ -333,6 +644,21 @@ msgstr "好友名單" msgid "Could not create OpenID form: %s" msgstr "無法從 %s 建立OpenID" +#: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 +#: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "" + +#: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "" + #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 #: lib/openid.php:172 #, php-format @@ -349,6 +675,19 @@ msgstr "無法存取個人圖像資料" msgid "Could not save new profile info" msgstr "無法存取新的個人資料" +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 +msgid "Could not subscribe other to you." +msgstr "" + +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 +msgid "Could not subscribe." +msgstr "" + +#: ../actions/recoverpassword.php:102 actions/recoverpassword.php:105 +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." @@ -369,6 +708,11 @@ msgstr "無法取消信箱確認" msgid "Couldn't delete subscription." msgstr "無法刪除帳號" +#: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 +msgid "Couldn't find any statuses." +msgstr "" + #: ../actions/remotesubscribe.php:127 actions/remotesubscribe.php:136 #: actions/remotesubscribe.php:178 msgid "Couldn't get a request token." @@ -397,6 +741,22 @@ msgstr "無法新增訂閱" msgid "Couldn't save profile." msgstr "無法儲存個人資料" +#: ../actions/profilesettings.php:161 actions/profilesettings.php:276 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 +msgid "Couldn't update user for autosubscribe." +msgstr "" + +#: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 +#: actions/emailsettings.php:298 actions/emailsettings.php:312 +#: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + #: ../actions/confirmaddress.php:72 ../actions/emailsettings.php:156 #: ../actions/emailsettings.php:259 ../actions/imsettings.php:138 #: ../actions/imsettings.php:243 ../actions/profilesettings.php:141 @@ -444,16 +804,38 @@ msgstr "該OpenID已經注冊" msgid "Current confirmed Jabber/GTalk address." msgstr "目前已確認的Jabber/Gtalk地址" +#: ../actions/smssettings.php:46 actions/smssettings.php:46 +#: actions/smssettings.php:100 actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" + +#: ../actions/emailsettings.php:44 actions/emailsettings.php:45 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "" + #: ../actions/showstream.php:356 actions/showstream.php:367 msgid "Currently" msgstr "目前" +#: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 #: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "增加回覆時,資料庫發生錯誤: %s" +#: ../actions/deletenotice.php:41 actions/deletenotice.php:41 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "" + #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 #: actions/profilesettings.php:114 actions/register.php:404 @@ -470,6 +852,16 @@ msgstr "請在140個字以內描述你自己與你的興趣" msgid "Email" msgstr "電子信箱" +#: ../actions/emailsettings.php:59 actions/emailsettings.php:60 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 +msgid "Email Address" +msgstr "" + +#: ../actions/emailsettings.php:32 actions/emailsettings.php:32 +#: actions/emailsettings.php:60 +msgid "Email Settings" +msgstr "" + #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 #: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." @@ -479,12 +871,27 @@ msgstr "此電子信箱已註冊過了" msgid "Email address confirmation" msgstr "確認信箱" +#: ../actions/emailsettings.php:61 actions/emailsettings.php:62 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "" + +#: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 +msgid "Email addresses" +msgstr "" + #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 #: actions/recoverpassword.php:231 actions/recoverpassword.php:249 #: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "請輸入暱稱或電子信箱" +#: ../actions/smssettings.php:64 actions/smssettings.php:64 +#: actions/smssettings.php:119 actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" + #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 #: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" @@ -602,8 +1009,26 @@ msgstr "發送給%s好友的訂閱" msgid "Feed for replies to %s" msgstr "回應給%s的訂閱" +#: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 +#, php-format +msgid "Feed for tag %s" +msgstr "" + +#: ../lib/searchaction.php:105 lib/searchaction.php:105 +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "" + +#: ../lib/searchaction.php:101 lib/searchaction.php:101 +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "" + #: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 -msgid "For security reasons, please re-enter your user name and password before changing your settings." +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更改設定。" #: ../actions/profilesettings.php:44 ../actions/register.php:164 @@ -666,6 +1091,17 @@ msgstr "個人首頁" msgid "Homepage is not a valid URL." msgstr "個人首頁位址錯誤" +#: ../actions/emailsettings.php:91 actions/emailsettings.php:98 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "" + +#: ../lib/settingsaction.php:102 lib/settingsaction.php:96 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "" + #: ../actions/imsettings.php:60 actions/imsettings.php:61 #: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" @@ -678,13 +1114,37 @@ msgstr "線上即時通設定" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 #: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 -msgid "If you already have an account, login with your username and password to connect it to your OpenID." +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." msgstr "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" #: ../actions/openidsettings.php:45 actions/openidsettings.php:96 -msgid "If you want to add an OpenID to your account, enter it in the box below and click \"Add\"." +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." msgstr "若想新增OpenID到你的帳號,請在下方空格輸入並勾選『新增』" +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" + +#: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 +#: actions/emailsettings.php:68 actions/smssettings.php:76 +#: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "" + +#: ../actions/emailsettings.php:283 actions/emailsettings.php:301 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "" + #: ../actions/password.php:69 actions/profilesettings.php:388 #: actions/passwordsettings.php:153 actions/passwordsettings.php:158 #: actions/passwordsettings.php:164 @@ -699,7 +1159,9 @@ msgstr "使用者名稱或密碼錯誤" #: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 #: actions/recoverpassword.php:322 actions/recoverpassword.php:325 -msgid "Instructions for recovering your password have been sent to the email address registered to your account." +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." msgstr "我們已寄出一封信到你帳號中的信箱,告訴你如何取回你的密碼。" #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 @@ -708,12 +1170,39 @@ msgstr "我們已寄出一封信到你帳號中的信箱,告訴你如何取回 msgid "Invalid avatar URL '%s'" msgstr "個人圖像連結%s無效" +#: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "" + #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 #: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "個人首頁連結%s無效" +#: ../actions/updateprofile.php:82 actions/updateprofile.php:83 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 +#, php-format +msgid "Invalid license URL '%s'" +msgstr "" + +#: ../actions/postnotice.php:61 actions/postnotice.php:62 +#: actions/postnotice.php:66 actions/postnotice.php:84 +msgid "Invalid notice content" +msgstr "" + +#: ../actions/postnotice.php:67 actions/postnotice.php:68 +#: actions/postnotice.php:72 +msgid "Invalid notice uri" +msgstr "" + +#: ../actions/postnotice.php:72 actions/postnotice.php:73 +#: actions/postnotice.php:77 +msgid "Invalid notice url" +msgstr "" + #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 #: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format @@ -725,6 +1214,11 @@ msgstr "個人資料連結%s無效" msgid "Invalid profile URL (bad format)" msgstr "個人資料連結無效(格式錯誤)" +#: ../actions/finishremotesubscribe.php:77 +#: actions/finishremotesubscribe.php:79 actions/finishremotesubscribe.php:80 +msgid "Invalid profile URL returned by server." +msgstr "" + #: ../actions/avatarbynickname.php:37 actions/avatarbynickname.php:37 #: actions/avatarbynickname.php:69 msgid "Invalid size." @@ -740,11 +1234,61 @@ msgstr "尺寸錯誤" msgid "Invalid username or password." msgstr "使用者名稱或密碼無效" +#: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "" + +#: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "" + +#: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 +msgid "Invite" +msgstr "" + +#: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 +msgid "Invite new users" +msgstr "" + +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" + #: ../actions/imsettings.php:173 actions/imsettings.php:181 #: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "此Jabber ID已有人使用" +#: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" + +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 +msgid "Language" +msgstr "" + +#: ../actions/profilesettings.php:113 actions/profilesettings.php:228 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 +msgid "Language is too long (max 50 chars)." +msgstr "" + #: ../actions/profilesettings.php:52 ../actions/register.php:173 #: actions/profilesettings.php:85 actions/register.php:187 #: actions/profilesettings.php:117 actions/register.php:408 @@ -796,17 +1340,43 @@ msgstr "登入" msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "用OpenID(%%doc.openid%%)帳號登入" +#: ../actions/login.php:126 actions/login.php:251 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account, or try [OpenID](%%action.openidlogin%" +"%). " +msgstr "" + #: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 #: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "登出" +#: ../actions/register.php:166 actions/register.php:180 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 +msgid "Longer name, preferably your \"real\" name" +msgstr "" + #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 #: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 #: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "遺失或忘記密碼了嗎?" +#: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 +#: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + +#: ../actions/emailsettings.php:27 actions/emailsettings.php:27 +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "" + #: ../actions/showstream.php:300 actions/showstream.php:315 #: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" @@ -818,6 +1388,41 @@ msgstr "何時加入會員的呢?" msgid "Microblog by %s" msgstr "&s的微型部落格" +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + +#: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 +#: actions/finishopenidlogin.php:85 actions/register.php:202 +#: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 +msgid "My text and files are available under " +msgstr "" + +#: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 +#: actions/emailsettings.php:83 actions/smssettings.php:91 +#: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "" + +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: ../actions/emailsettings.php:297 actions/emailsettings.php:315 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "" + #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 #: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" @@ -902,6 +1507,14 @@ msgstr "你想成為誰的粉絲呢?請輸入他/她的暱稱。" msgid "Nickname or email" msgstr "暱稱或信箱" +#: ../actions/deletenotice.php:59 actions/deletenotice.php:60 +#: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 +msgid "No" +msgstr "" + #: ../actions/imsettings.php:156 actions/imsettings.php:164 #: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." @@ -913,6 +1526,16 @@ msgstr "查無此Jabber ID" msgid "No authorization request!" msgstr "無確認請求" +#: ../actions/smssettings.php:181 actions/smssettings.php:189 +#: actions/smssettings.php:299 actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" + +#: ../actions/smssettings.php:316 actions/smssettings.php:324 +#: actions/smssettings.php:486 actions/smssettings.php:498 +msgid "No code entered" +msgstr "" + #: ../actions/confirmaddress.php:33 actions/confirmaddress.php:33 #: actions/confirmaddress.php:75 msgid "No confirmation code." @@ -927,6 +1550,23 @@ msgstr "無確認碼" msgid "No content!" msgstr "無內容" +#: ../actions/emailsettings.php:174 actions/emailsettings.php:192 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 +msgid "No email address." +msgstr "" + +#: ../actions/userbyid.php:32 actions/userbyid.php:32 actions/userbyid.php:70 +msgid "No id." +msgstr "" + +#: ../actions/emailsettings.php:271 actions/emailsettings.php:289 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" + #: ../actions/finishremotesubscribe.php:65 #: actions/finishremotesubscribe.php:67 actions/finishremotesubscribe.php:68 msgid "No nickname provided by remote server." @@ -938,6 +1578,26 @@ msgstr "無遠端伺服器提供的暱稱" msgid "No nickname." msgstr "無暱稱" +#: ../actions/emailsettings.php:222 ../actions/imsettings.php:206 +#: ../actions/smssettings.php:229 actions/emailsettings.php:240 +#: actions/imsettings.php:214 actions/smssettings.php:237 +#: actions/emailsettings.php:363 actions/imsettings.php:345 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "" + +#: ../actions/smssettings.php:176 actions/smssettings.php:184 +#: actions/smssettings.php:294 actions/smssettings.php:306 +msgid "No phone number." +msgstr "" + +#: ../actions/finishremotesubscribe.php:72 +#: actions/finishremotesubscribe.php:74 actions/finishremotesubscribe.php:75 +msgid "No profile URL returned by server." +msgstr "" + #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 #: actions/recoverpassword.php:266 actions/recoverpassword.php:284 #: actions/recoverpassword.php:287 @@ -961,6 +1621,21 @@ msgstr "無結果" msgid "No size." msgstr "無尺寸" +#: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 +#: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "" + +#: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "" + #: ../actions/openidsettings.php:135 actions/openidsettings.php:144 #: actions/openidsettings.php:222 msgid "No such OpenID." @@ -1026,11 +1701,36 @@ msgstr "無此訂閱" msgid "No such user." msgstr "無此使用者" +#: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" + +#: ../lib/gallery.php:80 lib/gallery.php:85 +msgid "Nobody to show!" +msgstr "" + #: ../actions/recoverpassword.php:60 actions/recoverpassword.php:60 #: actions/recoverpassword.php:66 msgid "Not a recovery code." msgstr "此恢復碼錯誤" +#: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 +msgid "Not a registered user." +msgstr "" + +#: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 +#: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 +#: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 +msgid "Not a supported data format." +msgstr "" + #: ../actions/imsettings.php:167 actions/imsettings.php:175 #: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" @@ -1041,18 +1741,2152 @@ msgstr "此JabberID無效" msgid "Not a valid OpenID." msgstr "此OpenID無效" +#: ../actions/emailsettings.php:185 actions/emailsettings.php:203 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 +msgid "Not a valid email address" +msgstr "" + #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 #: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "此信箱無效" +#: ../actions/profilesettings.php:91 ../actions/register.php:71 +#: actions/profilesettings.php:206 actions/register.php:78 +#: actions/editgroup.php:186 actions/newgroup.php:137 +#: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 +msgid "Not a valid nickname." +msgstr "" + +#: ../actions/remotesubscribe.php:120 actions/remotesubscribe.php:129 +#: actions/remotesubscribe.php:159 +msgid "Not a valid profile URL (incorrect services)." +msgstr "" + +#: ../actions/remotesubscribe.php:113 actions/remotesubscribe.php:122 +#: actions/remotesubscribe.php:152 +msgid "Not a valid profile URL (no XRDS defined)." +msgstr "" + +#: ../actions/remotesubscribe.php:104 actions/remotesubscribe.php:113 +#: actions/remotesubscribe.php:143 +msgid "Not a valid profile URL (no YADIS document)." +msgstr "" + +#: ../actions/avatar.php:95 actions/profilesettings.php:332 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "" + +#: ../actions/finishremotesubscribe.php:51 +#: actions/finishremotesubscribe.php:53 actions/finishremotesubscribe.php:54 +msgid "Not authorized." +msgstr "" + +#: ../actions/finishremotesubscribe.php:38 +#: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "" + +#: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 +msgid "Not found" +msgstr "" + +#: ../actions/finishaddopenid.php:29 ../actions/logout.php:33 +#: ../actions/newnotice.php:29 ../actions/subscribe.php:28 +#: ../actions/unsubscribe.php:25 ../lib/deleteaction.php:38 +#: ../lib/settingsaction.php:27 actions/disfavor.php:29 actions/favor.php:30 +#: actions/finishaddopenid.php:29 actions/logout.php:33 +#: actions/newmessage.php:28 actions/newnotice.php:29 actions/subscribe.php:28 +#: actions/unsubscribe.php:25 lib/deleteaction.php:38 +#: lib/settingsaction.php:27 actions/block.php:59 actions/disfavor.php:61 +#: actions/favor.php:64 actions/finishaddopenid.php:67 actions/logout.php:71 +#: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 +#: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 +#: actions/unsubscribe.php:27 lib/deleteaction.php:66 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 +msgid "Not logged in." +msgstr "" + +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 +msgid "Not subscribed!." +msgstr "" + +#: ../actions/opensearch.php:35 actions/opensearch.php:35 +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "" + +#: ../actions/showstream.php:82 actions/showstream.php:82 +#: actions/showstream.php:180 actions/showstream.php:187 +#: actions/showstream.php:192 +#, php-format +msgid "Notice feed for %s" +msgstr "" + +#: ../actions/shownotice.php:39 actions/shownotice.php:39 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "" + +#: ../actions/showstream.php:316 actions/showstream.php:331 +#: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 +msgid "Notices" +msgstr "" + +#: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 +#, php-format +msgid "Notices tagged with %s" +msgstr "" + +#: ../actions/password.php:39 actions/profilesettings.php:178 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 +msgid "Old password" +msgstr "" + +#: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 +#: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 +#: lib/logingroupnav.php:81 lib/action.php:418 +msgid "OpenID" +msgstr "" + +#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 +msgid "OpenID Account Setup" +msgstr "" + +#: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 +msgid "OpenID Auto-Submit" +msgstr "" + +#: ../actions/finishaddopenid.php:99 ../actions/finishopenidlogin.php:140 +#: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 +#: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 +#: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 +msgid "OpenID Login" +msgstr "" + +#: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 +#: actions/openidlogin.php:74 actions/openidsettings.php:50 +#: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 +msgid "OpenID URL" +msgstr "" + +#: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 +#: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 +#: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 +msgid "OpenID authentication cancelled." +msgstr "" + +#: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 +#: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 +#: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 +#, php-format +msgid "OpenID authentication failed: %s" +msgstr "" + +#: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 +#, php-format +msgid "OpenID failure: %s" +msgstr "" + +#: ../actions/openidsettings.php:144 actions/openidsettings.php:153 +#: actions/openidsettings.php:231 +msgid "OpenID removed." +msgstr "" + +#: ../actions/openidsettings.php:37 actions/openidsettings.php:37 +#: actions/openidsettings.php:59 +msgid "OpenID settings" +msgstr "" + +#: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "" + +#: ../actions/avatar.php:84 actions/profilesettings.php:321 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 +msgid "Partial upload." +msgstr "" + +#: ../actions/finishopenidlogin.php:90 ../actions/login.php:102 +#: ../actions/register.php:153 ../lib/settingsaction.php:93 +#: actions/finishopenidlogin.php:96 actions/login.php:102 +#: actions/register.php:167 actions/finishopenidlogin.php:118 +#: actions/login.php:231 actions/register.php:372 +#: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 +msgid "Password" +msgstr "" + +#: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "" + +#: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "" + +#: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 +#: actions/recoverpassword.php:267 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "" + +#: ../actions/password.php:89 ../actions/recoverpassword.php:313 +#: actions/profilesettings.php:408 actions/recoverpassword.php:326 +#: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "" + +#: ../actions/password.php:61 ../actions/register.php:88 +#: actions/profilesettings.php:380 actions/register.php:98 +#: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 +msgid "Passwords don't match." +msgstr "" + +#: ../lib/searchaction.php:100 lib/searchaction.php:100 +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "" + +#: ../actions/opensearch.php:33 actions/opensearch.php:33 +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "" + +#: ../actions/peoplesearch.php:33 actions/peoplesearch.php:33 +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "" + +#: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "" + +#: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 +msgid "Personal message" +msgstr "" + +#: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + +#: ../actions/userauthorization.php:78 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Cancel\"." +msgstr "" + +#: ../actions/imsettings.php:73 actions/imsettings.php:74 +#: actions/imsettings.php:142 actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "" + +#: ../actions/emailsettings.php:85 ../actions/imsettings.php:67 +#: ../actions/smssettings.php:94 actions/emailsettings.php:86 +#: actions/imsettings.php:68 actions/smssettings.php:94 +#: actions/twittersettings.php:70 actions/emailsettings.php:147 +#: actions/imsettings.php:133 actions/smssettings.php:157 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "" + +#: ../actions/emailsettings.php:162 ../actions/imsettings.php:144 +#: ../actions/smssettings.php:163 actions/emailsettings.php:180 +#: actions/imsettings.php:152 actions/smssettings.php:171 +#: actions/emailsettings.php:286 actions/imsettings.php:258 +#: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "" + +#: ../actions/profilesettings.php:57 actions/profilesettings.php:90 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 +msgid "Preferred language" +msgstr "" + +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 +msgid "Privacy" +msgstr "" + +#: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 +#: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 +msgid "Problem saving notice." +msgstr "" + +#: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 +#: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 +msgid "Profile" +msgstr "" + +#: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "" + +#: ../actions/profilesettings.php:34 actions/profilesettings.php:32 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "" + +#: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 +#: actions/postnotice.php:52 actions/updateprofile.php:53 +#: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 +msgid "Profile unknown" +msgstr "" + +#: ../actions/public.php:54 actions/public.php:54 actions/public.php:124 +msgid "Public Stream Feed" +msgstr "" + +#: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 +msgid "Public timeline" +msgstr "" + +#: ../actions/imsettings.php:79 actions/imsettings.php:80 +#: actions/imsettings.php:153 actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "" + +#: ../actions/emailsettings.php:94 actions/emailsettings.php:101 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "" + +#: ../actions/tag.php:75 ../actions/tag.php:76 actions/tag.php:75 +#: actions/tag.php:76 +msgid "Recent Tags" +msgstr "" + +#: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "" + +#: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "" + +#: ../actions/recoverpassword.php:67 actions/recoverpassword.php:67 +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "" + +#: ../actions/register.php:142 ../actions/register.php:193 ../lib/util.php:312 +#: actions/register.php:152 actions/register.php:207 lib/util.php:328 +#: actions/register.php:69 actions/register.php:436 lib/action.php:338 +#: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 +msgid "Register" +msgstr "" + +#: ../actions/register.php:28 actions/register.php:28 +#: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 +msgid "Registration not allowed." +msgstr "" + +#: ../actions/register.php:200 actions/register.php:214 +#: actions/register.php:67 actions/register.php:106 +msgid "Registration successful" +msgstr "" + +#: ../actions/userauthorization.php:120 actions/userauthorization.php:127 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 +msgid "Reject" +msgstr "" + +#: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 +#: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 +msgid "Remember me" +msgstr "" + +#: ../actions/updateprofile.php:70 actions/updateprofile.php:71 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 +msgid "Remote profile with no matching profile" +msgstr "" + +#: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "" + +#: ../actions/emailsettings.php:47 ../actions/emailsettings.php:75 +#: ../actions/imsettings.php:48 ../actions/openidsettings.php:106 +#: ../actions/smssettings.php:50 ../actions/smssettings.php:84 +#: actions/emailsettings.php:48 actions/emailsettings.php:76 +#: actions/imsettings.php:49 actions/openidsettings.php:108 +#: actions/smssettings.php:50 actions/smssettings.php:84 +#: actions/twittersettings.php:59 actions/emailsettings.php:101 +#: actions/emailsettings.php:134 actions/imsettings.php:102 +#: actions/openidsettings.php:166 actions/smssettings.php:103 +#: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 +msgid "Remove" +msgstr "" + +#: ../actions/openidsettings.php:68 actions/openidsettings.php:69 +#: actions/openidsettings.php:123 +msgid "Remove OpenID" +msgstr "" + +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" + +#: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "" + +#: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 +#: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 +#: actions/replies.php:116 actions/repliesrss.php:67 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 +#, php-format +msgid "Replies to %s" +msgstr "" + +#: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "" + +#: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "" + +#: ../lib/settingsaction.php:99 lib/settingsaction.php:93 +#: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "" + +#: ../actions/smssettings.php:67 actions/smssettings.php:67 +#: actions/smssettings.php:126 actions/smssettings.php:138 +msgid "SMS Phone number" +msgstr "" + +#: ../actions/smssettings.php:33 actions/smssettings.php:33 +#: actions/smssettings.php:58 +msgid "SMS Settings" +msgstr "" + +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 +msgid "SMS confirmation" +msgstr "" + +#: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "" + +#: ../actions/register.php:156 actions/register.php:170 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 +msgid "Same as password above. Required." +msgstr "" + +#: ../actions/emailsettings.php:97 ../actions/imsettings.php:81 +#: ../actions/profilesettings.php:67 ../actions/smssettings.php:100 +#: actions/emailsettings.php:104 actions/imsettings.php:82 +#: actions/profilesettings.php:101 actions/smssettings.php:100 +#: actions/twittersettings.php:83 actions/emailsettings.php:182 +#: actions/facebooksettings.php:114 actions/imsettings.php:157 +#: actions/othersettings.php:117 actions/profilesettings.php:150 +#: actions/smssettings.php:169 actions/subscriptions.php:124 +#: actions/tagother.php:152 actions/twittersettings.php:161 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 +msgid "Save" +msgstr "" + +#: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 +msgid "Search" +msgstr "" + +#: ../actions/noticesearch.php:80 actions/noticesearch.php:85 +#: actions/noticesearch.php:127 +msgid "Search Stream Feed" +msgstr "" + +#: ../actions/noticesearch.php:30 actions/noticesearch.php:30 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" + +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: ../actions/smssettings.php:296 actions/smssettings.php:304 +#: actions/smssettings.php:457 actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" + +#: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 +#: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 +msgid "Send" +msgstr "" + +#: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 +#: actions/emailsettings.php:74 actions/smssettings.php:82 +#: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" + +#: ../actions/emailsettings.php:88 actions/emailsettings.php:89 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" + +#: ../actions/imsettings.php:70 actions/imsettings.php:71 +#: actions/imsettings.php:137 actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "" + +#: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + +#: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 +msgid "Settings" +msgstr "" + +#: ../actions/profilesettings.php:192 actions/profilesettings.php:307 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 +msgid "Settings saved." +msgstr "" + +#: ../actions/tag.php:60 actions/tag.php:60 +msgid "Showing most popular tags from the last week" +msgstr "" + +#: ../actions/finishaddopenid.php:66 actions/finishaddopenid.php:66 +#: actions/finishaddopenid.php:114 +msgid "Someone else already has this OpenID." +msgstr "" + +#: ../actions/finishopenidlogin.php:42 ../actions/openidsettings.php:126 +#: actions/finishopenidlogin.php:47 actions/openidsettings.php:135 +#: actions/finishopenidlogin.php:52 actions/openidsettings.php:202 +msgid "Something weird happened." +msgstr "" + +#: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 +msgid "Sorry, no incoming email allowed." +msgstr "" + +#: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 +msgid "Sorry, that is not your incoming email address." +msgstr "" + +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 +msgid "Source" +msgstr "" + +#: ../actions/showstream.php:296 actions/showstream.php:311 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 +msgid "Statistics" +msgstr "" + +#: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 +#: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 +#: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 +msgid "Stored OpenID not found." +msgstr "" + +#: ../actions/remotesubscribe.php:75 ../actions/showstream.php:188 +#: ../actions/showstream.php:197 actions/remotesubscribe.php:84 +#: actions/showstream.php:197 actions/showstream.php:206 +#: actions/remotesubscribe.php:113 actions/showstream.php:376 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 +msgid "Subscribe" +msgstr "" + +#: ../actions/showstream.php:313 ../actions/subscribers.php:27 +#: actions/showstream.php:328 actions/subscribers.php:27 +#: actions/showstream.php:436 actions/showstream.php:498 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "" + +#: ../actions/userauthorization.php:310 actions/userauthorization.php:322 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 +msgid "Subscription authorized" +msgstr "" + +#: ../actions/userauthorization.php:320 actions/userauthorization.php:332 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 +msgid "Subscription rejected" +msgstr "" + +#: ../actions/showstream.php:230 ../actions/showstream.php:307 +#: ../actions/subscriptions.php:27 actions/showstream.php:240 +#: actions/showstream.php:322 actions/subscriptions.php:27 +#: actions/showstream.php:407 actions/showstream.php:489 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "" + +#: ../actions/avatar.php:87 actions/profilesettings.php:324 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "" + +#: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 +#: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 +#: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 +msgid "Tags" +msgstr "" + +#: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 +msgid "Text" +msgstr "" + +#: ../actions/noticesearch.php:34 actions/noticesearch.php:34 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 +msgid "Text search" +msgstr "" + +#: ../actions/openidsettings.php:140 actions/openidsettings.php:149 +#: actions/openidsettings.php:227 +msgid "That OpenID does not belong to you." +msgstr "" + +#: ../actions/confirmaddress.php:52 actions/confirmaddress.php:52 +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "" + +#: ../actions/confirmaddress.php:43 actions/confirmaddress.php:43 +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "" + +#: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 +msgid "That email address already belongs to another user." +msgstr "" + +#: ../actions/avatar.php:80 actions/profilesettings.php:317 +#: lib/imagefile.php:71 +msgid "That file is too big." +msgstr "" + +#: ../actions/imsettings.php:170 actions/imsettings.php:178 +#: actions/imsettings.php:293 actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "" + +#: ../actions/emailsettings.php:188 actions/emailsettings.php:206 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 +msgid "That is already your email address." +msgstr "" + +#: ../actions/smssettings.php:188 actions/smssettings.php:196 +#: actions/smssettings.php:306 actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" + +#: ../actions/imsettings.php:233 actions/imsettings.php:241 +#: actions/imsettings.php:381 actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "" + +#: ../actions/emailsettings.php:249 actions/emailsettings.php:267 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 +msgid "That is not your email address." +msgstr "" + +#: ../actions/smssettings.php:257 actions/smssettings.php:265 +#: actions/smssettings.php:393 actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "" + +#: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 +#: actions/emailsettings.php:244 actions/imsettings.php:218 +#: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "" + +#: ../actions/smssettings.php:233 actions/smssettings.php:241 +#: actions/smssettings.php:362 actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "" + +#: ../actions/smssettings.php:191 actions/smssettings.php:199 +#: actions/smssettings.php:309 actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" + +#: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 +#: actions/newnotice.php:49 actions/twitapistatuses.php:330 +#: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 +msgid "That's too long. Max notice size is 140 chars." +msgstr "" + +#: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 +msgid "That's too long. Max notice size is 255 chars." +msgstr "" + +#: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "" + +#: ../actions/emailsettings.php:264 ../actions/imsettings.php:250 +#: ../actions/smssettings.php:274 actions/emailsettings.php:282 +#: actions/imsettings.php:258 actions/smssettings.php:282 +#: actions/emailsettings.php:416 actions/imsettings.php:402 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "" + +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site's instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site's instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "" + +#: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "" + +#: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "" + +#: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "" + +#: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" + +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "" + +#: ../lib/openid.php:195 lib/openid.php:206 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" + +#: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" + +#: ../actions/twitapifriendships.php:108 ../actions/twitapistatuses.php:586 +#: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 +#: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 +#: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "" + +#: ../actions/twitapiaccount.php:65 ../actions/twitapifriendships.php:44 +#: ../actions/twitapistatuses.php:381 actions/twitapiaccount.php:63 +#: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 +#: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 +#: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 +msgid "This method requires a POST." +msgstr "" + +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 +msgid "This page is not available in a media type you accept" +msgstr "" + +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 +msgid "Timezone" +msgstr "" + +#: ../actions/profilesettings.php:107 actions/profilesettings.php:222 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 +msgid "Timezone not selected." +msgstr "" + +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" + +#: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 +msgid "Two user ids or screen_names must be supplied." +msgstr "" + +#: ../actions/profilesettings.php:48 ../actions/register.php:169 +#: actions/profilesettings.php:81 actions/register.php:183 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "" + +#: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "" + +#: ../actions/emailsettings.php:130 ../actions/imsettings.php:110 +#: ../actions/recoverpassword.php:39 ../actions/smssettings.php:135 +#: actions/emailsettings.php:144 actions/imsettings.php:118 +#: actions/recoverpassword.php:39 actions/smssettings.php:143 +#: actions/twittersettings.php:108 actions/avatarsettings.php:258 +#: actions/emailsettings.php:242 actions/grouplogo.php:317 +#: actions/imsettings.php:214 actions/recoverpassword.php:44 +#: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 +msgid "Unexpected form submission." +msgstr "" + +#: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "" + +#: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "" + +#: ../actions/finishremotesubscribe.php:58 +#: actions/finishremotesubscribe.php:60 actions/finishremotesubscribe.php:61 +msgid "Unknown version of OMB protocol." +msgstr "" + +#: ../lib/util.php:269 lib/util.php:285 +msgid "" +"Unless otherwise specified, contents of this site are copyright by the " +"contributors and available under the " +msgstr "" + +#: ../actions/confirmaddress.php:48 actions/confirmaddress.php:48 +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "" + +#: ../actions/showstream.php:209 actions/showstream.php:219 +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "" + +#: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 +#: actions/postnotice.php:45 actions/updateprofile.php:46 +#: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 +msgid "Unsupported OMB version" +msgstr "" + +#: ../actions/avatar.php:105 actions/profilesettings.php:342 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 +msgid "Unsupported image file format." +msgstr "" + +#: ../lib/settingsaction.php:100 lib/settingsaction.php:94 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: ../lib/settingsaction.php:103 lib/settingsaction.php:97 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "" + +#: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + +#: ../actions/avatar.php:68 actions/profilesettings.php:161 +#: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 +msgid "Upload" +msgstr "" + +#: ../actions/avatar.php:27 +msgid "" +"Upload a new \"avatar\" (user image) here. You can't edit the picture after " +"you upload it, so make sure it's more or less square. It must be under the " +"site license, also. Use a picture that belongs to you and that you want to " +"share." +msgstr "" + +#: ../lib/settingsaction.php:91 +msgid "Upload a new profile image" +msgstr "" + +#: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" + +#: ../actions/register.php:159 ../actions/register.php:162 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + +#: ../actions/finishremotesubscribe.php:86 +#: actions/finishremotesubscribe.php:88 actions/finishremotesubscribe.php:94 +msgid "User being listened to doesn't exist." +msgstr "" + +#: ../actions/all.php:41 ../actions/avatarbynickname.php:48 +#: ../actions/foaf.php:47 ../actions/replies.php:41 +#: ../actions/showstream.php:44 ../actions/twitapiaccount.php:82 +#: ../actions/twitapistatuses.php:319 ../actions/twitapistatuses.php:685 +#: ../actions/twitapiusers.php:82 actions/all.php:41 +#: actions/avatarbynickname.php:48 actions/foaf.php:47 actions/replies.php:41 +#: actions/showfavorites.php:41 actions/showstream.php:44 +#: actions/twitapiaccount.php:80 actions/twitapifavorites.php:68 +#: actions/twitapistatuses.php:235 actions/twitapistatuses.php:609 +#: actions/twitapiusers.php:87 lib/mailbox.php:50 +#: actions/avatarbynickname.php:80 actions/foaf.php:48 actions/replies.php:80 +#: actions/showstream.php:107 actions/twitapiaccount.php:70 +#: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 +#: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 +#: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 +msgid "User has no profile." +msgstr "" + +#: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "" + +#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80 +msgid "User not found." +msgstr "" + +#: ../actions/profilesettings.php:63 actions/profilesettings.php:96 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 +msgid "What timezone are you normally in?" +msgstr "" + +#: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 +#, php-format +msgid "What's up, %s?" +msgstr "" + +#: ../actions/profilesettings.php:54 ../actions/register.php:175 +#: actions/profilesettings.php:87 actions/register.php:189 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "" + +#: ../actions/updateprofile.php:128 actions/updateprofile.php:129 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 +#, php-format +msgid "Wrong image type for '%s'" +msgstr "" + +#: ../actions/updateprofile.php:123 actions/updateprofile.php:124 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 +#, php-format +msgid "Wrong size image at '%s'" +msgstr "" + +#: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 +#: actions/deletenotice.php:64 actions/deletenotice.php:79 +#: actions/block.php:148 actions/deletenotice.php:122 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 +msgid "Yes" +msgstr "" + +#: ../actions/finishaddopenid.php:64 actions/finishaddopenid.php:64 +#: actions/finishaddopenid.php:112 +msgid "You already have this OpenID!" +msgstr "" + +#: ../actions/deletenotice.php:37 actions/deletenotice.php:37 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: ../actions/recoverpassword.php:31 actions/recoverpassword.php:31 +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "" + +#: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "" + +#: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 +msgid "You are not friends with the specified user." +msgstr "" + +#: ../actions/password.php:27 +msgid "You can change your password here. Choose a good one!" +msgstr "" + +#: ../actions/register.php:135 actions/register.php:145 +msgid "You can create a new account to start posting notices." +msgstr "" + +#: ../actions/smssettings.php:28 actions/smssettings.php:28 +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" + +#: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" + +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" + +#: ../actions/finishremotesubscribe.php:31 ../actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 +#: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 +#: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "" + +#: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 +#: actions/finishopenidlogin.php:38 actions/register.php:68 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 +msgid "You can't register if you don't agree to the license." +msgstr "" + +#: ../actions/updateprofile.php:63 actions/updateprofile.php:64 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 +msgid "You did not send us that profile" +msgstr "" + +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + +#: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "" + +#: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" + +#: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: ../actions/openidlogin.php:67 actions/openidlogin.php:76 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 +msgid "Your OpenID URL" +msgstr "" + +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" + +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 +msgid "a few seconds ago" +msgstr "" + +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 +#, php-format +msgid "about %d days ago" +msgstr "" + +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 +#, php-format +msgid "about %d hours ago" +msgstr "" + +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 +#, php-format +msgid "about %d minutes ago" +msgstr "" + +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 +#, php-format +msgid "about %d months ago" +msgstr "" + +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 +msgid "about a day ago" +msgstr "" + +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 +msgid "about a minute ago" +msgstr "" + +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 +msgid "about a month ago" +msgstr "" + +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 +msgid "about a year ago" +msgstr "" + +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 +msgid "about an hour ago" +msgstr "" + +#: ../actions/showstream.php:423 ../lib/stream.php:132 +#: actions/showstream.php:441 lib/stream.php:99 +msgid "delete" +msgstr "" + +#: ../actions/noticesearch.php:130 ../actions/showstream.php:408 +#: ../lib/stream.php:117 actions/noticesearch.php:136 +#: actions/showstream.php:426 lib/stream.php:84 actions/noticesearch.php:187 +msgid "in reply to..." +msgstr "" + +#: ../actions/noticesearch.php:137 ../actions/showstream.php:415 +#: ../lib/stream.php:124 actions/noticesearch.php:143 +#: actions/showstream.php:433 lib/stream.php:91 actions/noticesearch.php:194 +msgid "reply" +msgstr "" + +#: ../actions/password.php:44 actions/profilesettings.php:183 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 +msgid "same as password above" +msgstr "" + +#: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 +msgid "unsupported file type" +msgstr "" + +#: ../lib/util.php:1309 lib/util.php:1443 +msgid "« After" +msgstr "" + +#: actions/deletenotice.php:74 actions/disfavor.php:43 +#: actions/emailsettings.php:127 actions/favor.php:45 +#: actions/finishopenidlogin.php:33 actions/imsettings.php:105 +#: actions/invite.php:46 actions/newmessage.php:45 actions/openidlogin.php:36 +#: actions/openidsettings.php:123 actions/profilesettings.php:47 +#: actions/recoverpassword.php:282 actions/register.php:42 +#: actions/remotesubscribe.php:40 actions/smssettings.php:124 +#: actions/subscribe.php:44 actions/twittersettings.php:97 +#: actions/unsubscribe.php:41 actions/userauthorization.php:35 +#: actions/block.php:64 actions/disfavor.php:74 actions/favor.php:77 +#: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 +#: actions/openidlogin.php:37 actions/recoverpassword.php:316 +#: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/disfavor.php:55 actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "" + +#: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 +msgid "Could not delete favorite." +msgstr "" + +#: actions/disfavor.php:72 lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "" + +#: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "" + +#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "" + +#: actions/favor.php:60 actions/twitapifavorites.php:151 +#: classes/Command.php:132 actions/favor.php:86 +#: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 +msgid "Could not create favorite." +msgstr "" + +#: actions/favor.php:70 +msgid "Disfavor" +msgstr "" + +#: actions/favoritesrss.php:60 actions/showfavorites.php:47 +#: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 +#, php-format +msgid "%s favorite notices" +msgstr "" + +#: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 +#, php-format +msgid "Feed of favorite notices of %s" +msgstr "" + +#: actions/inbox.php:28 actions/inbox.php:59 +#, php-format +msgid "Inbox for %s - page %d" +msgstr "" + +#: actions/inbox.php:30 actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "" + +#: actions/inbox.php:53 actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" + +#: actions/invite.php:178 actions/invite.php:213 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +msgstr "" + +#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108 +#: actions/register.php:416 +msgid "Automatically login in the future; " +msgstr "" + +#: actions/login.php:122 actions/login.php:264 +msgid "For security reasons, please re-enter your " +msgstr "" + +#: actions/login.php:126 actions/login.php:268 +msgid "Login with your username and password. " +msgstr "" + +#: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 +msgid "That's too long. Max message size is 140 chars." +msgstr "" + +#: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "" + +#: actions/newmessage.php:68 actions/newmessage.php:113 +#: classes/Command.php:206 actions/newmessage.php:131 +#: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 +msgid "You can't send a message to this user." +msgstr "" + +#: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 +#: classes/Command.php:209 actions/twitapidirect_messages.php:158 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" + +#: actions/newmessage.php:108 actions/microsummary.php:62 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 +msgid "No such user" +msgstr "" + +#: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "" + +#: actions/noticesearch.php:95 actions/noticesearch.php:146 +msgid "Notice without matching profile" +msgstr "" + +#: actions/openidsettings.php:28 actions/openidsettings.php:70 +#, php-format +msgid "[OpenID](%%doc.openid%%) lets you log into many sites " +msgstr "" + +#: actions/openidsettings.php:46 actions/openidsettings.php:96 +msgid "If you want to add an OpenID to your account, " +msgstr "" + +#: actions/openidsettings.php:74 +msgid "Removing your only OpenID would make it impossible to log in! " +msgstr "" + +#: actions/openidsettings.php:87 actions/openidsettings.php:143 +msgid "You can remove an OpenID from your account " +msgstr "" + +#: actions/outbox.php:28 actions/outbox.php:58 +#, php-format +msgid "Outbox for %s - page %d" +msgstr "" + +#: actions/outbox.php:30 actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "" + +#: actions/outbox.php:53 actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/peoplesearch.php:28 actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +msgstr "" + +#: actions/profilesettings.php:27 actions/profilesettings.php:69 +msgid "You can update your personal profile info here " +msgstr "" + +#: actions/profilesettings.php:115 actions/remotesubscribe.php:320 +#: actions/userauthorization.php:159 actions/userrss.php:76 +#: actions/avatarsettings.php:104 actions/avatarsettings.php:179 +#: actions/grouplogo.php:177 actions/remotesubscribe.php:367 +#: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +msgid "User without matching profile" +msgstr "" + +#: actions/recoverpassword.php:91 actions/recoverpassword.php:97 +msgid "This confirmation code is too old. " +msgstr "" + +#: actions/recoverpassword.php:141 actions/recoverpassword.php:152 +msgid "If you've forgotten or lost your" +msgstr "" + +#: actions/recoverpassword.php:154 actions/recoverpassword.php:158 +msgid "You've been identified. Enter a " +msgstr "" + +#: actions/recoverpassword.php:169 actions/recoverpassword.php:188 +msgid "Your nickname on this server, " +msgstr "" + +#: actions/recoverpassword.php:271 actions/recoverpassword.php:304 +msgid "Instructions for recovering your password " +msgstr "" + +#: actions/recoverpassword.php:327 actions/recoverpassword.php:361 +msgid "New password successfully saved. " +msgstr "" + +#: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/register.php:216 +#, php-format +msgid "" +"Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " +"want to..." +msgstr "" + +#: actions/register.php:227 +msgid "(You should receive a message by email momentarily, with " +msgstr "" + +#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74 +#, php-format +msgid "To subscribe, you can [login](%%action.login%%)," +msgstr "" + +#: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 +#, php-format +msgid "Feed for favorites of %s" +msgstr "" + +#: actions/showfavorites.php:84 actions/twitapifavorites.php:85 +#: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showmessage.php:33 actions/showmessage.php:81 +msgid "No such message." +msgstr "" + +#: actions/showmessage.php:42 actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:61 actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:66 actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/showstream.php:154 +msgid "Send a message" +msgstr "" + +#: actions/smssettings.php:312 actions/smssettings.php:464 +#, php-format +msgid "Mobile carrier for your phone. " +msgstr "" + +#: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "" + +#: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 +msgid "Direct Messages You've Sent" +msgstr "" + +#: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "" + +#: actions/twitapidirect_messages.php:128 +#: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "" + +#: actions/twitapidirect_messages.php:138 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "" + +#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" + +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 +#, php-format +msgid "%s / Favorites from %s" +msgstr "" + +#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 +#, php-format +msgid "%s updates favorited by %s / %s." +msgstr "" + +#: actions/twitapifavorites.php:187 lib/mail.php:275 +#: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 +#, php-format +msgid "%s added your notice as a favorite" +msgstr "" + +#: actions/twitapifavorites.php:188 lib/mail.php:276 +#: actions/twitapifavorites.php:165 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +msgstr "" + +#: actions/twittersettings.php:27 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, " +msgstr "" + +#: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 +msgid "Twitter settings" +msgstr "" + +#: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 +msgid "Twitter Account" +msgstr "" + +#: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 +msgid "Current verified Twitter account." +msgstr "" + +#: actions/twittersettings.php:63 +msgid "Twitter Username" +msgstr "" + +#: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 +msgid "No spaces, please." +msgstr "" + +#: actions/twittersettings.php:67 +msgid "Twitter Password" +msgstr "" + +#: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 +msgid "Automatically send my notices to Twitter." +msgstr "" + +#: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 +msgid "Send local \"@\" replies to Twitter." +msgstr "" + +#: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 +msgid "Subscribe to my Twitter friends here." +msgstr "" + +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 +msgid "" +"Username must have only numbers, upper- and lowercase letters, and " +"underscore (_). 15 chars max." +msgstr "" + +#: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 +msgid "Could not verify your Twitter credentials!" +msgstr "" + +#: actions/twittersettings.php:137 +#, php-format +msgid "Unable to retrieve account information for \"%s\" from Twitter." +msgstr "" + +#: actions/twittersettings.php:151 actions/twittersettings.php:170 +#: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 +msgid "Unable to save your Twitter settings!" +msgstr "" + +#: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 +msgid "Twitter settings saved." +msgstr "" + +#: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 +msgid "That is not your Twitter account." +msgstr "" + +#: actions/twittersettings.php:200 actions/twittersettings.php:208 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 +msgid "Couldn't remove Twitter user." +msgstr "" + +#: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 +msgid "Twitter account removed." +msgstr "" + +#: actions/twittersettings.php:225 actions/twittersettings.php:239 +#: actions/twittersettings.php:428 actions/twittersettings.php:439 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 +msgid "Couldn't save Twitter preferences." +msgstr "" + +#: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 +msgid "Twitter preferences saved." +msgstr "" + +#: actions/userauthorization.php:84 actions/userauthorization.php:86 +msgid "Please check these details to make sure " +msgstr "" + +#: actions/userauthorization.php:324 actions/userauthorization.php:340 +msgid "The subscription has been authorized, but no " +msgstr "" + +#: actions/userauthorization.php:334 actions/userauthorization.php:351 +msgid "The subscription has been rejected, but no " +msgstr "" + +#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 +msgid "Command complete" +msgstr "" + +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: classes/Command.php:96 classes/Command.php:113 +#, php-format +msgid "Subscriptions: %1$s\n" +msgstr "" + +#: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 +msgid "User has no last notice" +msgstr "" + +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 +#, php-format +msgid "%1$s (%2$s)" +msgstr "" + +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 +#, php-format +msgid "Fullname: %s" +msgstr "" + +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 +#, php-format +msgid "Location: %s" +msgstr "" + +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 +#, php-format +msgid "Homepage: %s" +msgstr "" + +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 +#, php-format +msgid "About: %s" +msgstr "" + +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 +#, php-format +msgid "Message too long - maximum is 140 characters, you sent %d" +msgstr "" + +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 +msgid "Error sending direct message." +msgstr "" + +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 +msgid "Command not yet implemented." +msgstr "" + +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 +msgid "Notification off." +msgstr "" + +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 +msgid "Can't turn off notification." +msgstr "" + +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 +msgid "Notification on." +msgstr "" + +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 +msgid "Can't turn on notification." +msgstr "" + +#: classes/Command.php:344 classes/Command.php:392 +msgid "Commands:\n" +msgstr "" + +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 +msgid "Could not insert message." +msgstr "" + +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 +msgid "Could not update message with new URI." +msgstr "" + +#: lib/gallery.php:46 +msgid "User without matching profile in system." +msgstr "" + +#: lib/mail.php:147 lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +msgstr "" + +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 +#, php-format +msgid "New private message from %s" +msgstr "" + +#: lib/mail.php:253 lib/mail.php:512 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +msgstr "" + +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/openid.php:195 lib/openid.php:203 +msgid "This form should automatically submit itself. " +msgstr "" + +#: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 +#, php-format +msgid "%s's favorite notices" +msgstr "" + +#: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 +msgid "Inbox" +msgstr "" + +#: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 +msgid "Your incoming messages" +msgstr "" + +#: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 +msgid "Outbox" +msgstr "" + +#: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 +msgid "Your sent messages" +msgstr "" + +#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110 +msgid "Twitter" +msgstr "" + +#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111 +msgid "Twitter integration options" +msgstr "" + +#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 +msgid "To" +msgstr "" + +#: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 +msgid "Could not parse message." +msgstr "" + #: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 #: actions/facebookhome.php:161 actions/all.php:48 #: actions/facebookhome.php:156 actions/all.php:84 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s與好友" +#: actions/avatarsettings.php:76 +msgid "You can upload your personal avatar." +msgstr "" + #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 #: actions/grouplogo.php:250 actions/avatarsettings.php:119 #: actions/avatarsettings.php:194 actions/grouplogo.php:256 @@ -1061,6 +3895,51 @@ msgstr "%s與好友" msgid "Avatar settings" msgstr "線上即時通設定" +#: actions/avatarsettings.php:124 actions/avatarsettings.php:199 +#: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 +msgid "Original" +msgstr "" + +#: actions/avatarsettings.php:139 actions/avatarsettings.php:211 +#: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 +msgid "Preview" +msgstr "" + +#: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 +msgid "Crop" +msgstr "" + +#: actions/avatarsettings.php:248 actions/deletenotice.php:133 +#: actions/emailsettings.php:224 actions/grouplogo.php:307 +#: actions/imsettings.php:200 actions/login.php:102 actions/newmessage.php:100 +#: actions/newnotice.php:96 actions/openidsettings.php:188 +#: actions/othersettings.php:136 actions/passwordsettings.php:131 +#: actions/profilesettings.php:172 actions/register.php:113 +#: actions/remotesubscribe.php:53 actions/smssettings.php:216 +#: actions/subedit.php:38 actions/twittersettings.php:290 +#: actions/userauthorization.php:39 +msgid "There was a problem with your session token. " +msgstr "" + +#: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 +msgid "Lost our file data." +msgstr "" + #: actions/avatarsettings.php:334 actions/grouplogo.php:391 #: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 #: lib/imagefile.php:118 @@ -1068,11 +3947,74 @@ msgstr "線上即時通設定" msgid "Lost our file." msgstr "無此通知" +#: actions/avatarsettings.php:349 actions/avatarsettings.php:383 +#: actions/grouplogo.php:406 actions/grouplogo.php:440 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 +msgid "Unknown file type" +msgstr "" + +#: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 +msgid "No profile specified." +msgstr "" + +#: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 +msgid "No profile with that ID." +msgstr "" + #: actions/block.php:111 actions/block.php:134 #, fuzzy msgid "Block user" msgstr "無此使用者" +#: actions/block.php:129 +msgid "Are you sure you want to block this user? " +msgstr "" + +#: actions/block.php:162 actions/block.php:165 +msgid "You have already blocked this user." +msgstr "" + +#: actions/block.php:167 actions/block.php:170 +msgid "Failed to save block information." +msgstr "" + +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been " +msgstr "" + +#: actions/deletenotice.php:73 +msgid "You are about to permanently delete a notice. " +msgstr "" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "" + +#: actions/editgroup.php:54 actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "" + +#: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 +#: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 +msgid "Inboxes must be enabled for groups to work" +msgstr "" + +#: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "" + #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 #: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 @@ -1096,6 +4038,20 @@ msgstr "無暱稱" msgid "No such group" msgstr "無此通知" +#: actions/editgroup.php:106 actions/editgroup.php:165 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 +msgid "You must be an admin to edit the group" +msgstr "" + +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 +msgid "Use this form to edit the group." +msgstr "" + #: actions/editgroup.php:179 actions/newgroup.php:130 actions/register.php:156 #, fuzzy msgid "Nickname must have only lowercase letters " @@ -1112,11 +4068,28 @@ msgstr "自我介紹過長(共140個字元)" msgid "Could not update group." msgstr "無法更新使用者" +#: actions/editgroup.php:226 actions/editgroup.php:269 +msgid "Options saved." +msgstr "" + #: actions/emailsettings.php:107 actions/imsettings.php:108 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Awaiting confirmation on this address. " msgstr "確認碼發生錯誤" +#: actions/emailsettings.php:139 actions/smssettings.php:150 +msgid "Make a new email address for posting to; " +msgstr "" + +#: actions/emailsettings.php:157 +msgid "Send me email when someone " +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + #: actions/emailsettings.php:321 #, fuzzy msgid "That email address already belongs " @@ -1127,12 +4100,45 @@ msgstr "此電子信箱已註冊過了" msgid "A confirmation code was sent to the email address you added. " msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" +#: actions/facebookhome.php:110 actions/facebookhome.php:109 +msgid "Server error - couldn't get user!" +msgstr "" + +#: actions/facebookhome.php:196 +#, php-format +msgid "If you would like the %s app to automatically update " +msgstr "" + +#: actions/facebookhome.php:213 actions/facebooksettings.php:137 +#, php-format +msgid "Allow %s to update my Facebook status" +msgstr "" + +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 +msgid "Skip" +msgstr "" + #: actions/facebookhome.php:235 lib/facebookaction.php:479 #: lib/facebookaction.php:471 #, fuzzy msgid "No notice content!" msgstr "無內容" +#: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 +msgid "Pagination" +msgstr "" + +#: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 +msgid "After" +msgstr "" + #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 #: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 #: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 @@ -1141,17 +4147,81 @@ msgstr "無內容" msgid "Before" msgstr "之前的內容»" +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 +#, php-format +msgid "Thanks for inviting your friends to use %s" +msgstr "" + +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 +msgid "Invitations have been sent to the following users:" +msgstr "" + +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 +#, php-format +msgid "You have been invited to %s" +msgstr "" + #: actions/facebookinvite.php:105 actions/facebookinvite.php:111 #: actions/facebookinvite.php:103 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invite your friends to use %s" msgstr "發送給%s好友的訂閱" +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 +#, php-format +msgid "Friends already using %s:" +msgstr "" + +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 +#, php-format +msgid "Send invitations" +msgstr "" + #: actions/facebookremove.php:56 #, fuzzy msgid "Couldn't remove Facebook user." msgstr "無法更新使用者" +#: actions/facebooksettings.php:65 +msgid "There was a problem saving your sync preferences!" +msgstr "" + +#: actions/facebooksettings.php:67 +msgid "Sync preferences saved." +msgstr "" + +#: actions/facebooksettings.php:90 +msgid "Automatically update my Facebook status with my notices." +msgstr "" + +#: actions/facebooksettings.php:97 +msgid "Send \"@\" replies to Facebook." +msgstr "" + +#: actions/facebooksettings.php:106 +msgid "Prefix" +msgstr "" + +#: actions/facebooksettings.php:108 +msgid "A string to prefix notices with." +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "If you would like %s to automatically update " +msgstr "" + +#: actions/facebooksettings.php:147 +msgid "Sync preferences" +msgstr "" + +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 +msgid "Disfavor favorite" +msgstr "" + #: actions/favorited.php:65 lib/popularnoticesection.php:76 #: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 #: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 @@ -1161,10 +4231,48 @@ msgid "Popular notices" msgstr "無此通知" #: actions/favorited.php:67 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Popular notices, page %d" msgstr "無此通知" +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "" + +#: actions/featured.php:69 lib/featureduserssection.php:82 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 +msgid "Featured users" +msgstr "" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some of the great users on %s" +msgstr "" + +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 +msgid "That user has blocked you from subscribing." +msgstr "" + +#: actions/groupbyid.php:79 actions/groupbyid.php:74 +msgid "No ID" +msgstr "" + +#: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 +msgid "Group logo" +msgstr "" + +#: actions/grouplogo.php:149 +msgid "You can upload a logo image for your group." +msgstr "" + #: actions/grouplogo.php:448 actions/grouplogo.php:401 #: actions/grouplogo.php:396 #, fuzzy @@ -1177,22 +4285,96 @@ msgstr "更新個人圖像" msgid "Failed updating logo." msgstr "無法上傳個人圖像" +#: actions/groupmembers.php:93 lib/groupnav.php:91 +#, php-format +msgid "%s group members" +msgstr "" + +#: actions/groupmembers.php:96 +#, php-format +msgid "%s group members, page %d" +msgstr "" + +#: actions/groupmembers.php:111 +msgid "A list of the users in this group." +msgstr "" + +#: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 +msgid "Groups" +msgstr "" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "%%%%site.name%%%% groups let you find and talk with " +msgstr "" + #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 #: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "新增帳號" +#: actions/groupsearch.php:57 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +msgstr "" + +#: actions/groupsearch.php:63 actions/groupsearch.php:58 +msgid "Group search" +msgstr "" + +#: actions/imsettings.php:70 +msgid "You can send and receive notices through " +msgstr "" + +#: actions/imsettings.php:120 +#, php-format +msgid "Jabber or GTalk address, " +msgstr "" + +#: actions/imsettings.php:147 +msgid "Send me replies through Jabber/GTalk " +msgstr "" + #: actions/imsettings.php:321 -#, php-format, fuzzy +#, fuzzy, php-format msgid "A confirmation code was sent " msgstr "無確認碼" +#: actions/joingroup.php:65 actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "" + +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 +msgid "You are already a member of that group" +msgstr "" + #: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "無法連結到伺服器:%s" +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 +#, php-format +msgid "%s joined group %s" +msgstr "" + +#: actions/leavegroup.php:60 +msgid "Inboxes must be enabled for groups to work." +msgstr "" + +#: actions/leavegroup.php:65 actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "" + #: actions/leavegroup.php:88 actions/groupblock.php:86 #: actions/groupunblock.php:86 actions/makeadmin.php:86 #: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 @@ -1201,12 +4383,48 @@ msgstr "無法連結到伺服器:%s" msgid "No such group." msgstr "無此通知" +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 +msgid "You are not a member of that group." +msgstr "" + +#: actions/leavegroup.php:100 +msgid "You may not leave a group while you are its administrator." +msgstr "" + +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 +msgid "Could not find membership record." +msgstr "" + #: actions/leavegroup.php:138 actions/leavegroup.php:132 #: actions/leavegroup.php:127 lib/command.php:284 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "無法從 %s 建立OpenID" +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 +#, php-format +msgid "%s left group %s" +msgstr "" + +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 +msgid "Login to site" +msgstr "" + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "" + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "" + +#: actions/newgroup.php:115 actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "" + #: actions/newgroup.php:177 actions/newgroup.php:209 #: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy @@ -1219,11 +4437,68 @@ msgstr "無法存取個人圖像資料" msgid "Could not set group membership." msgstr "註冊失敗" +#: actions/newmessage.php:119 actions/newnotice.php:132 +msgid "That's too long. " +msgstr "" + +#: actions/newmessage.php:134 +msgid "Don't send a message to yourself; " +msgstr "" + +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 +msgid "Notice posted" +msgstr "" + +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 +msgid "Ajax Error" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "" + +#: actions/openidlogin.php:97 actions/openidlogin.php:106 +msgid "OpenID login" +msgstr "" + +#: actions/openidsettings.php:128 +msgid "Removing your only OpenID " +msgstr "" + #: actions/othersettings.php:60 #, fuzzy msgid "Other Settings" msgstr "線上即時通設定" +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "" + +#: actions/othersettings.php:93 +msgid "URL Auto-shortening" +msgstr "" + +#: actions/othersettings.php:112 +msgid "Service" +msgstr "" + +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 +msgid "Automatic shortening service to use." +msgstr "" + #: actions/othersettings.php:144 actions/othersettings.php:146 #: actions/othersettings.php:153 #, fuzzy @@ -1235,15 +4510,44 @@ msgstr "地點過長(共255個字)" msgid "Change your password." msgstr "更改密碼" +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "" + #: actions/peopletag.php:35 actions/peopletag.php:70 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Not a valid people tag: %s" msgstr "此信箱無效" +#: actions/peopletag.php:47 actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %s - page %d" +msgstr "" + +#: actions/peopletag.php:91 +#, php-format +msgid "These are users who have tagged themselves \"%s\" " +msgstr "" + +#: actions/profilesettings.php:91 actions/profilesettings.php:99 +msgid "Profile information" +msgstr "" + +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + +#: actions/profilesettings.php:144 +msgid "Automatically subscribe to whoever " +msgstr "" + #: actions/profilesettings.php:229 actions/tagother.php:176 #: actions/tagother.php:178 actions/profilesettings.php:230 #: actions/profilesettings.php:246 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid tag: \"%s\"" msgstr "個人首頁連結%s無效" @@ -1253,27 +4557,150 @@ msgstr "個人首頁連結%s無效" msgid "Couldn't save tags." msgstr "無法儲存個人資料" +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 +#, php-format +msgid "Public timeline, page %d" +msgstr "" + +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:220 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service " +msgstr "" + +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "" + +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 +msgid "Tag cloud" +msgstr "" + +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 +msgid "Sorry, only invited people can register." +msgstr "" + +#: actions/register.php:149 +msgid "You can't register if you don't " +msgstr "" + +#: actions/register.php:286 +msgid "With this form you can create " +msgstr "" + #: actions/register.php:368 #, fuzzy msgid "1-64 lowercase letters or numbers, " msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" +#: actions/register.php:382 actions/register.php:386 +msgid "Used only for updates, announcements, " +msgstr "" + +#: actions/register.php:398 +msgid "URL of your homepage, blog, " +msgstr "" + #: actions/register.php:404 #, fuzzy msgid "Describe yourself and your " msgstr "請在140個字以內描述你自己與你的興趣" +#: actions/register.php:410 +msgid "Where you are, like \"City, " +msgstr "" + #: actions/register.php:432 #, fuzzy msgid " except this private data: password, " msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" +#: actions/register.php:471 +#, php-format +msgid "Congratulations, %s! And welcome to %%%%site.name%%%%. " +msgstr "" + +#: actions/register.php:495 +msgid "(You should receive a message by email " +msgstr "" + +#: actions/remotesubscribe.php:166 actions/remotesubscribe.php:171 +msgid "That's a local profile! Login to subscribe." +msgstr "" + +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 +#, php-format +msgid "Replies to %s, page %d" +msgstr "" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%s favorite notices, page %d" +msgstr "" + +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 +#, php-format +msgid "%s group" +msgstr "" + +#: actions/showgroup.php:79 actions/showgroup.php:84 +#, php-format +msgid "%s group, page %d" +msgstr "" + #: actions/showgroup.php:206 actions/showgroup.php:208 #: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "無此通知" +#: actions/showgroup.php:251 actions/showstream.php:278 +#: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 +msgid "URL" +msgstr "" + +#: actions/showgroup.php:262 actions/showstream.php:289 +#: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 +msgid "Note" +msgstr "" + +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 +msgid "Group actions" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:304 +#, php-format +msgid "Notice feed for %s group" +msgstr "" + #: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 #: actions/showgroup.php:384 actions/showgroup.php:373 #: actions/showgroup.php:430 actions/showgroup.php:381 @@ -1282,6 +4709,36 @@ msgstr "無此通知" msgid "Members" msgstr "何時加入會員的呢?" +#: actions/showgroup.php:363 actions/showstream.php:413 +#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 +msgid "(None)" +msgstr "" + +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 +msgid "All members" +msgstr "" + +#: actions/showgroup.php:378 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient " +msgstr "" + +#: actions/showstream.php:73 actions/showstream.php:78 +#, php-format +msgid "%s, page %d" +msgstr "" + #: actions/showstream.php:143 #, fuzzy msgid "'s profile" @@ -1294,21 +4751,65 @@ msgstr "無此通知" msgid "User profile" msgstr "無此通知" +#: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 +msgid "Photo" +msgstr "" + +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 +msgid "User actions" +msgstr "" + +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 +msgid "Send a direct message to this user" +msgstr "" + +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 +msgid "Message" +msgstr "" + #: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "所有訂閱" +#: actions/showstream.php:533 lib/profileaction.php:235 +msgid "All groups" +msgstr "" + +#: actions/showstream.php:542 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service " +msgstr "" + #: actions/smssettings.php:128 #, fuzzy msgid "Phone number, no punctuation or spaces, " msgstr "1-64個小寫英文字母或數字,勿加標點符號或空格" +#: actions/smssettings.php:162 +msgid "Send me notices through SMS; " +msgstr "" + #: actions/smssettings.php:335 #, fuzzy msgid "A confirmation code was sent to the phone number you added. " msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" +#: actions/smssettings.php:453 actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" + +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "" + #: actions/subedit.php:83 #, fuzzy msgid "Could not save subscription." @@ -1325,20 +4826,43 @@ msgid "Subscribed" msgstr "此帳號已註冊" #: actions/subscribers.php:50 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscribers" msgstr "此帳號已註冊" +#: actions/subscribers.php:52 +#, php-format +msgid "%s subscribers, page %d" +msgstr "" + +#: actions/subscribers.php:63 +msgid "These are the people who listen to " +msgstr "" + +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who " +msgstr "" + #: actions/subscriptions.php:52 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions" msgstr "所有訂閱" #: actions/subscriptions.php:54 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s subscriptions, page %d" msgstr "所有訂閱" +#: actions/subscriptions.php:65 +msgid "These are the people whose notices " +msgstr "" + +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose " +msgstr "" + #: actions/subscriptions.php:122 actions/subscriptions.php:124 #: actions/subscriptions.php:183 actions/subscriptions.php:194 #, fuzzy @@ -1346,10 +4870,15 @@ msgid "Jabber" msgstr "查無此Jabber ID" #: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "&s的微型部落格" +#: actions/tag.php:66 actions/tag.php:73 +#, php-format +msgid "Messages tagged \"%s\", most recent first" +msgstr "" + #: actions/tagother.php:33 #, fuzzy msgid "Not logged in" @@ -1360,34 +4889,89 @@ msgstr "已登入" msgid "No id argument." msgstr "無此文件" +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:149 actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:164 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/tagother.php:191 actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + #: actions/tagother.php:198 actions/tagother.php:200 #, fuzzy msgid "Could not save tags." msgstr "無法存取個人圖像資料" +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + #: actions/tagrss.php:35 #, fuzzy msgid "No such tag." msgstr "無此通知" #: actions/tagrss.php:66 actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog tagged with %s" msgstr "&s的微型部落格" +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 +msgid "Block user failed." +msgstr "" + +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 +msgid "Unblock user failed." +msgstr "" + #: actions/twitapiusers.php:48 actions/twitapiusers.php:52 #: actions/twitapiusers.php:50 actions/apiusershow.php:96 #, fuzzy msgid "Not found." msgstr "目前無請求" +#: actions/twittersettings.php:71 +msgid "Add your Twitter account to automatically send " +msgstr "" + +#: actions/twittersettings.php:119 actions/twittersettings.php:122 +msgid "Twitter user name" +msgstr "" + #: actions/twittersettings.php:126 actions/twittersettings.php:129 #, fuzzy msgid "Twitter password" msgstr "新密碼" +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 +msgid "Twitter Friends" +msgstr "" + +#: actions/twittersettings.php:327 +msgid "Username must have only numbers, " +msgstr "" + #: actions/twittersettings.php:341 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information " msgstr "無法取消信箱確認" @@ -1401,27 +4985,100 @@ msgstr "儲存使用者發生錯誤" msgid "No profile id in request." msgstr "無確認請求" +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 +msgid "No profile with that id." +msgstr "" + #: actions/unsubscribe.php:71 actions/unsubscribe.php:98 #, fuzzy msgid "Unsubscribed" msgstr "此帳號已註冊" +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 +#, php-format +msgid "%s groups" +msgstr "" + +#: actions/usergroups.php:65 actions/usergroups.php:64 +#, php-format +msgid "%s groups, page %d" +msgstr "" + #: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 #: classes/Notice.php:183 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "儲存使用者發生錯誤" +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 +msgid "You are banned from posting notices on this site." +msgstr "" + #: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 #, fuzzy msgid "Upload an avatar" msgstr "無法上傳個人圖像" +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 +msgid "Other" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 +msgid "Other options" +msgstr "" + +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 +#, php-format +msgid "%s - %s" +msgstr "" + +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 +msgid "Search for people or text" +msgstr "" + #: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "關於" +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 +msgid "Change your email, avatar, password, profile" +msgstr "" + +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 +msgid "Connect to IM, SMS, Twitter" +msgstr "" + +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 +msgid "Login to the site" +msgstr "" + #: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" @@ -1442,28 +5099,100 @@ msgstr "求救" msgid "Site notice" msgstr "新訊息" +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 +msgid "Local views" +msgstr "" + #: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "新訊息" +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 +msgid "Secondary site navigation" +msgstr "" + +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 +msgid "All " +msgstr "" + +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 +msgid "license." +msgstr "" + #: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 #: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "無此使用者" +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 +msgid "Block" +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/facebookaction.php:268 +#, php-format +msgid "To use the %s Facebook Application you need to login " +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 #: lib/facebookaction.php:275 #, fuzzy msgid " a new account." msgstr "新增帳號" +#: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 +msgid "Published" +msgstr "" + #: lib/favorform.php:114 lib/favorform.php:140 #, fuzzy msgid "Favor this notice" msgstr "無此通知" +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "" + +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "" + +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "" + +#: lib/groupeditform.php:148 lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "" + #: lib/groupeditform.php:151 lib/groupeditform.php:166 #: lib/groupeditform.php:172 #, fuzzy @@ -1475,11 +5204,48 @@ msgstr "所有訂閱" msgid "Describe the group or topic in 140 chars" msgstr "請在140個字以內描述你自己與你的興趣" +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" + +#: lib/groupnav.php:84 lib/searchgroupnav.php:84 +msgid "Group" +msgstr "" + +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 +msgid "Admin" +msgstr "" + +#: lib/groupnav.php:101 lib/groupnav.php:107 +#, php-format +msgid "Edit %s group properties" +msgstr "" + #: lib/groupnav.php:106 lib/groupnav.php:112 #, fuzzy msgid "Logo" msgstr "登出" +#: lib/groupnav.php:107 lib/groupnav.php:113 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + #: lib/htmloutputter.php:104 #, fuzzy msgid "This page is not available in a " @@ -1490,6 +5256,10 @@ msgstr "個人首頁位址錯誤" msgid "Join" msgstr "登入" +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "" + #: lib/logingroupnav.php:76 lib/logingroupnav.php:80 #, fuzzy msgid "Login with a username and password" @@ -1500,16 +5270,63 @@ msgstr "使用者名稱或密碼無效" msgid "Sign up for a new account" msgstr "新增帳號" +#: lib/logingroupnav.php:82 +msgid "Login or register with OpenID" +msgstr "" + +#: lib/mail.php:175 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +msgstr "" + #: lib/mail.php:236 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s is now listening to " msgstr "現在%1$s在%2$s成為你的粉絲囉" +#: lib/mail.php:254 lib/mail.php:253 +#, fuzzy, php-format +msgid "Location: %s\n" +msgstr "地點" + +#: lib/mail.php:256 lib/mail.php:255 +#, fuzzy, php-format +msgid "Homepage: %s\n" +msgstr "個人首頁" + +#: lib/mail.php:258 lib/mail.php:257 +#, php-format +msgid "" +"Bio: %s\n" +"\n" +msgstr "" + +#: lib/mail.php:461 lib/mail.php:462 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:465 +#, php-format +msgid "%1$s (%2$s) is wondering what you are up to " +msgstr "" + #: lib/mail.php:555 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s just added your notice from %2$s" msgstr "現在%1$s在%2$s成為你的粉絲囉" +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 +msgid "From" +msgstr "" + +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "" + #: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 #, fuzzy msgid "Send a notice" @@ -1521,39 +5338,152 @@ msgstr "新訊息" msgid "Available characters" msgstr "6個以上字元" +#: lib/noticelist.php:426 lib/noticelist.php:429 +msgid "in reply to" +msgstr "" + +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 +msgid "Reply to this notice" +msgstr "" + +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 +msgid "Reply" +msgstr "" + +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 +msgid "Delete this notice" +msgstr "" + +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 +msgid "Delete" +msgstr "" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 +msgid "(none)" +msgstr "" + +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 +msgid "Public" +msgstr "" + +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "" + +#: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" + +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "" + #: lib/searchgroupnav.php:82 #, fuzzy msgid "Notice" msgstr "新訊息" +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + #: lib/subgroupnav.php:81 lib/subgroupnav.php:83 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People %s subscribes to" msgstr "無此訂閱" #: lib/subgroupnav.php:89 lib/subgroupnav.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "People subscribed to %s" msgstr "此帳號已註冊" +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + +#: lib/subs.php:53 lib/subs.php:52 +msgid "User has blocked you." +msgstr "" + +#: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 +msgid "Subscribe to this user" +msgstr "" + +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + #: lib/unblockform.php:120 lib/unblockform.php:150 #: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "無此使用者" +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 +msgid "Unblock" +msgstr "" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + #: actions/all.php:77 actions/all.php:59 actions/all.php:99 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 1.0)" msgstr "發送給%s好友的訂閱" #: actions/all.php:82 actions/all.php:64 actions/all.php:107 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (RSS 2.0)" msgstr "發送給%s好友的訂閱" #: actions/all.php:87 actions/all.php:69 actions/all.php:115 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for friends of %s (Atom)" msgstr "發送給%s好友的訂閱" @@ -1562,34 +5492,143 @@ msgstr "發送給%s好友的訂閱" msgid "You and friends" msgstr "%s與好友" +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + #: actions/avatarsettings.php:373 #, fuzzy msgid "Avatar deleted." msgstr "更新個人圖像" +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + #: actions/grouprss.php:136 actions/grouprss.php:137 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Microblog by %s group" msgstr "&s的微型部落格" +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + #: actions/noticesearch.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Search results for \"%s\" on %s" msgstr "搜尋 \"%s\"相關資料" #: actions/openidlogin.php:66 -#, php-format, fuzzy -msgid "For security reasons, please re-login with your [OpenID](%%doc.openid%%) before changing your settings." +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." msgstr "為安全起見,請先重新輸入你的使用者名稱與密碼再更改設定。" +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + #: actions/public.php:135 actions/public.php:143 actions/public.php:159 #, fuzzy msgid "Public Stream Feed (Atom)" msgstr "%s的公開內容" +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + #: actions/register.php:433 actions/register.php:480 actions/register.php:490 #, fuzzy -msgid " except this private data: password, email address, IM address, and phone number." +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信箱、電話號碼" #: actions/showgroup.php:378 actions/showgroup.php:424 @@ -1598,16 +5637,47 @@ msgstr "不包含這些個人資料:密碼、電子信箱、線上即時通信 msgid "Created" msgstr "新增" +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/showstream.php:147 #, fuzzy msgid "Your profile" msgstr "無此通知" #: actions/showstream.php:149 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's profile" msgstr "無此通知" +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, php-format +msgid "FOAF for %s" +msgstr "" + #: actions/showstream.php:237 actions/showstream.php:202 #: actions/showstream.php:234 #, fuzzy @@ -1620,11 +5690,46 @@ msgstr "個人圖像" msgid "Edit profile settings" msgstr "線上即時通設定" +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + #: actions/smssettings.php:335 actions/smssettings.php:347 #, fuzzy -msgid "A confirmation code was sent to the phone number you added. Check your phone for the code and instructions on how to use it." +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要先經過你的認可。" +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + #: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 #: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 @@ -1638,20 +5743,253 @@ msgstr "確認信已寄到你的線上即時通信箱。%s送給你得訊息要 msgid "No such user!" msgstr "無此使用者" +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + #: actions/twittersettings.php:345 actions/twittersettings.php:362 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Unable to retrieve account information For \"%s\" from Twitter." msgstr "無法取消信箱確認" +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + #: lib/facebookaction.php:271 lib/facebookaction.php:273 -#, php-format, fuzzy -msgid "To use the %s Facebook Application you need to login with your username and password. Don't have a username yet? " +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " msgstr "若已經註冊過了,請輸入使用者名稱與密碼連結到你的OpenID。" +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + #: lib/mail.php:241 lib/mail.php:240 -#, php-format, fuzzy -msgid "%1$s is now listening to your notices on %2$s.\n\n %3$s\n\n%4$s%5$s%6$s\nFaithfully yours,\n%7$s.\n\n----\nChange your email address or notification options at %8$s\n" -msgstr "現在%1$s在%2$s成為你的粉絲囉。\n\n %3$s\n\n\n%4$s.\n敬上。\n" +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"現在%1$s在%2$s成為你的粉絲囉。\n" +"\n" +"\t%3$s\n" +"\n" +"\n" +"%4$s.\n" +"敬上。\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" #: actions/attachment.php:73 #, fuzzy @@ -1669,15 +6007,19 @@ msgid "Block this user from this group" msgstr "無此使用者" #: actions/blockedfromgroup.php:90 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles" msgstr "無此通知" #: actions/blockedfromgroup.php:93 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked profiles, page %d" msgstr "%s與好友" +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + #: actions/blockedfromgroup.php:281 #, fuzzy msgid "Unblock user from group" @@ -1693,26 +6035,56 @@ msgstr "地點" msgid "Do not delete this notice" msgstr "無此通知" +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + #: actions/editgroup.php:223 actions/newgroup.php:173 #: actions/apigroupcreate.php:312 actions/editgroup.php:224 #: actions/newgroup.php:168 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Invalid alias: \"%s\"" msgstr "個人首頁連結%s無效" #: actions/editgroup.php:227 actions/newgroup.php:177 #: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/newgroup.php:172 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Alias \"%s\" already in use. Try another one." msgstr "此暱稱已有人使用。再試試看別的吧。" +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + #: actions/editgroup.php:259 actions/newgroup.php:215 #: actions/apigroupcreate.php:147 actions/newgroup.php:210 #, fuzzy msgid "Could not create aliases." msgstr "無法存取個人圖像資料" +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + #: actions/file.php:34 #, fuzzy msgid "No notice id" @@ -1723,17 +6095,68 @@ msgstr "新訊息" msgid "No notice" msgstr "新訊息" +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + #: actions/finishopenidlogin.php:211 #, fuzzy msgid "Not a valid invitation code." msgstr "此信箱無效" +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "" + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + #: actions/groupblock.php:136 actions/groupmembers.php:311 #: actions/groupmembers.php:314 #, fuzzy msgid "Block user from group" msgstr "無此使用者" +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + #: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 #: lib/designsettings.php:440 lib/designsettings.php:470 #: actions/groupdesignsettings.php:262 lib/designsettings.php:431 @@ -1742,156 +6165,888 @@ msgstr "無此使用者" msgid "Couldn't update your design." msgstr "無法更新使用者" +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +msgid "Design preferences saved." +msgstr "" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 #, fuzzy msgid "No results." msgstr "無結果" +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + #: actions/newnotice.php:230 scripts/maildaemon.php:85 #, fuzzy msgid "Couldn't save file." msgstr "無法儲存個人資料" +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + #: actions/recoverpassword.php:152 #, fuzzy -msgid "If you've forgotten or lost your password, you can get a new one sent to the email address you have stored in your account." +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." msgstr "若忘記或遺失密碼,我們會寄新的密碼到你帳號中的信箱。" +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recover" +msgstr "" + #: actions/register.php:86 #, fuzzy msgid "Sorry, invalid invitation code." msgstr "確認碼發生錯誤" +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + #: actions/showfavorites.php:79 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s's favorite notices, page %d" msgstr "無此通知" +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + #: actions/shownotice.php:101 #, fuzzy msgid "Not a local notice" msgstr "無此使用者" +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + #: actions/subscriptions.php:117 actions/subscriptions.php:121 #: actions/subscriptions.php:123 actions/subscriptions.php:127 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not listening to anyone." msgstr "現在%1$s在%2$s成為你的粉絲囉" +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + #: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 #: actions/apifriendshipsshow.php:135 #, fuzzy msgid "Could not determine source user." msgstr "無法更新使用者" +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + #: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 #, fuzzy msgid "Could not find target user." msgstr "無法更新使用者" #: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" msgstr "%1$s的狀態是%2$s" #: actions/twitapitags.php:74 actions/apitimelinetag.php:107 #: actions/tagrss.php:64 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates tagged with %1$s on %2$s!" msgstr "&s的微型部落格" +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + #: actions/userauthorization.php:179 actions/userauthorization.php:212 #, fuzzy msgid "Reject this subscription" msgstr "所有訂閱" +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + #: classes/Notice.php:139 classes/Notice.php:179 #, fuzzy msgid "Problem saving notice. Too long." msgstr "儲存使用者發生錯誤" +#: classes/User.php:319 classes/User.php:327 classes/User.php:334 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + #: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 #, fuzzy msgid "Design your profile" msgstr "無此通知" +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" msgstr "無此通知" +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + #: lib/designsettings.php:170 #, fuzzy msgid "Change colours" msgstr "更改密碼" +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + #: lib/designsettings.php:191 #, fuzzy msgid "Content" msgstr "連結" +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + #: lib/designsettings.php:230 #, fuzzy msgid "Links" msgstr "登入" +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + #: lib/groupnav.php:100 #, fuzzy msgid "Blocked" msgstr "無此使用者" #: lib/groupnav.php:101 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s blocked users" msgstr "無此使用者" +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + #: lib/noticelist.php:436 lib/noticelist.php:478 #, fuzzy msgid "in context" msgstr "無內容" +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + #: lib/webcolor.php:82 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s is not a valid color!" msgstr "個人首頁位址錯誤" +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 #, fuzzy msgid "No such page" msgstr "無此通知" +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + #: actions/apifriendshipsdestroy.php:109 #, fuzzy msgid "Could not unfollow user: User not found." msgstr "無法連結到伺服器:%s" +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + #: actions/apigroupcreate.php:261 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Description is too long (max %d chars)." msgstr "自我介紹過長(共140個字元)" +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + #: actions/apigroupjoin.php:138 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not join user %s to group %s." msgstr "無法連結到伺服器:%s" +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "無法連結到伺服器:%s" + #: actions/apigroupleave.php:124 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not remove user %s to group %s." msgstr "無法從 %s 建立OpenID" +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "無此通知" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +#, fuzzy +msgid "Status deleted." +msgstr "更新個人圖像" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + #: actions/editgroup.php:201 actions/newgroup.php:145 -#, php-format, fuzzy +#, fuzzy, php-format msgid "description is too long (max %d chars)." msgstr "自我介紹過長(共140個字元)" +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "&s的微型部落格" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + #: actions/finishremotesubscribe.php:109 #, fuzzy msgid "Could not convert request token to access token." msgstr "無法轉換請求標記以致無法存取標記" +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + #: actions/getfile.php:75 #, fuzzy msgid "No such file." @@ -1902,18 +7057,49 @@ msgstr "無此通知" msgid "Cannot read file." msgstr "無此通知" +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "&s的微型部落格" + #: actions/imsettings.php:89 #, fuzzy msgid "IM is not available." msgstr "個人首頁位址錯誤" +#: actions/login.php:259 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" + +#: actions/noticesearchrss.php:89 +#, fuzzy, php-format +msgid "Updates with \"%s\"" +msgstr "&s的微型部落格" + #: actions/noticesearchrss.php:91 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Updates matching search term \"%1$s\" on %2$s!" msgstr "所有符合 \"%s\"的更新" +#: actions/oembed.php:157 +#, fuzzy +msgid "content type " +msgstr "連結" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + #: actions/profilesettings.php:122 actions/register.php:454 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe yourself and your interests in %d chars" msgstr "請在140個字以內描述你自己與你的興趣" @@ -1923,45 +7109,154 @@ msgid "Describe yourself and your interests" msgstr "請在140個字以內描述你自己與你的興趣" #: actions/profilesettings.php:221 actions/register.php:217 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Bio is too long (max %d chars)." msgstr "自我介紹過長(共140個字元)" +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + #: actions/remotesubscribe.php:183 #, fuzzy msgid "Couldn’t get a request token." msgstr "無法取得轉換標記" +#: actions/replies.php:144 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/replies.php:151 +#, fuzzy, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "發送給%s好友的訂閱" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "&s的微型部落格" + #: actions/showfavorites.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 1.0)" msgstr "發送給%s好友的訂閱" #: actions/showfavorites.php:177 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (RSS 2.0)" msgstr "發送給%s好友的訂閱" #: actions/showfavorites.php:184 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Feed for favorites of %s (Atom)" msgstr "發送給%s好友的訂閱" +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + #: actions/showgroup.php:345 -#, php-format, fuzzy +#, fuzzy, php-format msgid "FOAF for %s group" msgstr "無此通知" +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "更新個人圖像" + #: actions/smssettings.php:91 #, fuzzy msgid "SMS is not available." msgstr "個人首頁位址錯誤" +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "發送給%s好友的訂閱" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + #: actions/userauthorization.php:343 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Can’t read avatar URL ‘%s’." msgstr "無法讀取此%sURL的圖像" +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + #: lib/action.php:435 #, fuzzy msgid "Connect to services" @@ -1973,37 +7268,174 @@ msgid "Site content license" msgstr "新訊息" #: lib/command.php:88 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Could not find a user with nickname %s" -msgstr "無法連結到伺服器:%s" +msgstr "無法更新使用者" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, php-format +msgid "Reply to %s sent" +msgstr "" #: lib/command.php:441 #, fuzzy msgid "Error saving notice." -msgstr "新增訊息時發生錯誤" +msgstr "儲存使用者發生錯誤" + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" #: lib/common.php:191 #, fuzzy msgid "No configuration file found. " msgstr "無確認碼" +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + #: lib/groupeditform.php:168 #, fuzzy msgid "Describe the group or topic" msgstr "請在140個字以內描述你自己與你的興趣" #: lib/groupeditform.php:170 -#, php-format, fuzzy +#, fuzzy, php-format msgid "Describe the group or topic in %d characters" msgstr "請在140個字以內描述你自己與你的興趣" +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "新訊息" + #: lib/mail.php:554 -#, php-format, fuzzy +#, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "現在%1$s在%2$s成為你的粉絲囉" +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +msgid "from" +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "無法更新使用者" + #: lib/oauthstore.php:345 #, fuzzy msgid "Duplicate notice" msgstr "新訊息" - From f7b0017f219d649a3acb3d650cb6d4fbb79b9956 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 6 Nov 2009 18:49:42 +0100 Subject: [PATCH 90/92] Do not export codes twice --- scripts/update_translations.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/scripts/update_translations.php b/scripts/update_translations.php index baa377caca..580c472eef 100755 --- a/scripts/update_translations.php +++ b/scripts/update_translations.php @@ -47,6 +47,8 @@ $codeMap = array( 'zh_TW' => 'zh-hant' ); +$doneCodes = array(); + foreach ($languages as $language) { $code = $language['lang']; @@ -56,6 +58,13 @@ foreach ($languages as $language) { continue; } + // Do not export codes twice (happens for 'nb') + if( in_array( $code, $doneCodes ) ) { + continue; + } else { + $doneCodes[] = $code; + } + // Convert code if needed if( isset( $codeMap[$code] ) ) { $twnCode = $codeMap[$code]; From b522c401e66e5b5d7e000c1bf25fd4b4a4d0558f Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 6 Nov 2009 17:21:08 -0800 Subject: [PATCH 91/92] Better workaround for PHP returning empty $_POST and $_FILES when POST length > post_max_size in php.ini. I also added this check to avatar upload, which was failing with huge files. --- actions/apiaccountupdateprofileimage.php | 20 +++++++++++++------- actions/apistatusesupdate.php | 21 ++++++++++++++------- actions/avatarsettings.php | 16 +++++++++++++++- lib/designsettings.php | 13 ++++++++----- 4 files changed, 50 insertions(+), 20 deletions(-) diff --git a/actions/apiaccountupdateprofileimage.php b/actions/apiaccountupdateprofileimage.php index 416fee45ac..72fb361bf8 100644 --- a/actions/apiaccountupdateprofileimage.php +++ b/actions/apiaccountupdateprofileimage.php @@ -87,16 +87,22 @@ class ApiAccountUpdateProfileImageAction extends ApiAuthAction return; } - if (empty($this->user)) { - $this->clientError(_('No such user!'), 404, $this->format); + // Workaround for PHP returning empty $_POST and $_FILES when POST + // length > post_max_size in php.ini + + if (empty($_FILES) + && empty($_POST) + && ($_SERVER['CONTENT_LENGTH'] > 0) + ) { + $msg = _('The server was unable to handle that much POST ' . + 'data (%s bytes) due to its current configuration.'); + + $this->clientError(sprintf($msg, $_SERVER['CONTENT_LENGTH'])); return; } - // Workaround for PHP returning empty $_FILES when POST length > PHP settings - - if (empty($_FILES) && ($_SERVER['CONTENT_LENGTH'] > 0)) { - common_debug('content-length = ' . $_SERVER['CONTENT_LENGTH']); - $this->clientError(_('Unable to handle that much POST data!')); + if (empty($this->user)) { + $this->clientError(_('No such user!'), 404, $this->format); return; } diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index 82fe5a537e..e369fa71ee 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -112,6 +112,20 @@ class ApiStatusesUpdateAction extends ApiAuthAction return; } + // Workaround for PHP returning empty $_POST and $_FILES when POST + // length > post_max_size in php.ini + + if (empty($_FILES) + && empty($_POST) + && ($_SERVER['CONTENT_LENGTH'] > 0) + ) { + $msg = _('The server was unable to handle that much POST ' . + 'data (%s bytes) due to its current configuration.'); + + $this->clientError(sprintf($msg, $_SERVER['CONTENT_LENGTH'])); + return; + } + if (empty($this->status)) { $this->clientError( 'Client must provide a \'status\' parameter with a value.', @@ -126,13 +140,6 @@ class ApiStatusesUpdateAction extends ApiAuthAction return; } - // Workaround for PHP returning empty $_FILES when POST length > PHP settings - - if (empty($_FILES) && ($_SERVER['CONTENT_LENGTH'] > 0)) { - $this->clientError(_('Unable to handle that much POST data!')); - return; - } - $status_shortened = common_shorten_links($this->status); if (Notice::contentTooLong($status_shortened)) { diff --git a/actions/avatarsettings.php b/actions/avatarsettings.php index ded419dd79..879e44842f 100644 --- a/actions/avatarsettings.php +++ b/actions/avatarsettings.php @@ -244,11 +244,25 @@ class AvatarsettingsAction extends AccountSettingsAction function handlePost() { + // Workaround for PHP returning empty $_POST and $_FILES when POST + // length > post_max_size in php.ini + + if (empty($_FILES) + && empty($_POST) + && ($_SERVER['CONTENT_LENGTH'] > 0) + ) { + $msg = _('The server was unable to handle that much POST ' . + 'data (%s bytes) due to its current configuration.'); + + $this->showForm(sprintf($msg, $_SERVER['CONTENT_LENGTH'])); + return; + } + // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { - $this->show_form(_('There was a problem with your session token. '. + $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; } diff --git a/lib/designsettings.php b/lib/designsettings.php index 820d534f23..5ce9ddedad 100644 --- a/lib/designsettings.php +++ b/lib/designsettings.php @@ -271,17 +271,20 @@ class DesignSettingsAction extends AccountSettingsAction function handlePost() { - // XXX: Robin's workaround for a bug in PHP where $_POST - // and $_FILE are empty in the case that the uploaded - // file is bigger than PHP is configured to handle. - if ($_SERVER['REQUEST_METHOD'] == 'POST') { - if (empty($_POST) && $_SERVER['CONTENT_LENGTH']) { + // Workaround for PHP returning empty $_POST and $_FILES when POST + // length > post_max_size in php.ini + + if (empty($_FILES) + && empty($_POST) + && ($_SERVER['CONTENT_LENGTH'] > 0) + ) { $msg = _('The server was unable to handle that much POST ' . 'data (%s bytes) due to its current configuration.'); $this->showForm(sprintf($msg, $_SERVER['CONTENT_LENGTH'])); + return; } } From 1319002e1519fafb0e82fbfd2d2723abdb3112e7 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 7 Nov 2009 12:22:00 -0500 Subject: [PATCH 92/92] don't distribute group notices to inboxes for users who've blocked the author --- classes/Notice.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/classes/Notice.php b/classes/Notice.php index a9dbaa461b..9886875cb7 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -930,7 +930,10 @@ class Notice extends Memcached_DataObject $users = $group->getUserMembers(); foreach ($users as $id) { if (!array_key_exists($id, $ni)) { - $ni[$id] = NOTICE_INBOX_SOURCE_GROUP; + $user = User::staticGet('id', $id); + if (!$user->hasBlocked($notice->profile_id)) { + $ni[$id] = NOTICE_INBOX_SOURCE_GROUP; + } } } }

I&zQ!kHd_Q(KGa+8uSXB%GRXFyL;x z*y|2hpVZ%W>aeq>UyZNrqJTMT_w)6fxB$N{ru~+&gVfE{17z4NM_={ry#8uyMXp*t zKT*}qPgPgU%Ph4{orfQ7lOJX_RoLtEUhH%Sg8D%IyIbnmf`D36U#{+~AEjQbPE|iv nC(Wxp>s{IC{L%;73Ih(~|9|7`%~&w0SpB7bk*r@Qx5xMg(}=Tp delta 5934 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 R$J$B3+BPsI$^I0K|1Td$A@~3Q diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 779d7489eb..7f3df0492b 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-01-25 16:24+0000\n" +"POT-Creation-Date: 2009-11-02 10:50-0800\n" "PO-Revision-Date: 2009-05-28 14:56+0000\n" "Last-Translator: Rui de Brito Mendes \n" "Language-Team: LANGUAGE \n" @@ -17,14 +17,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr "Procurar por \"%s\" no fluxo de mensagens" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -37,17 +37,19 @@ msgid " from " msgstr "de" #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Actualizações em resposta a %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s convidou-o a juntar-se a ele no %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -104,6 +106,7 @@ msgstr "" "Sinceramente, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." @@ -126,25 +129,28 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "Updates de %1$s como resposta às actualizações de %2$s / %3$s." #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "%1$s's estado em %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Fluxo Público de %s" @@ -154,34 +160,48 @@ msgstr "Fluxo Público de %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s e amigos" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Mensagens públicas de %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Estado de %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Mensagens de %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s actualizações de todos!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -189,7 +209,8 @@ msgstr "" "(Deverá receber uma mensagem por email dentro de momentos, com instrucções " "sobre como confirmar o seu endereço de email.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -198,7 +219,8 @@ msgstr "" "**%%site.name%%*** é um serviço de microblogging trazido até sí por [%%site." "broughtby%%](%%site.broughtbyurl%%)." -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblogging. " @@ -210,30 +232,34 @@ msgstr ". Os colaboradores devem ser citados usando nome completo ou apelido." #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "1-64 letras ou números, sem pontuação ou espaços. Obrigatório." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "6 ou mais caracteres" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "6 ou mais caracteres, e não a esqueça!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "6 ou mais caracteres. Obrigatório." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -243,6 +269,7 @@ msgstr "" "aprovar que %s envie mensagens para sí." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -278,7 +305,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "Método da API não encontrado!" @@ -301,16 +355,23 @@ msgstr "Método da API não encontrado!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "Método da API em construcção." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Sobre" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Aceitar" @@ -321,6 +382,9 @@ msgstr "Aceitar" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Adicionar" @@ -338,27 +402,29 @@ msgstr "Adicionar ou remover OpenID" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Endereço" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Endereços dos amigos a convidar (um por linha)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Todas as subscrições" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Todas as actualizações de %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Todas as actualizações com o termo \"%s\"" @@ -368,31 +434,38 @@ msgstr "Todas as actualizações com o termo \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Login já efectuado." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Já subscrito!." #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Tem a certeza que permite remover esta mensagem?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar subscrição" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Efectuar login automático; não utilizar em computadores de uso partilhado!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -402,15 +475,19 @@ msgstr "" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "Avatar actualizado." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -420,6 +497,7 @@ msgstr "" "para a sua conta de Jabber/GTalk. (Adicionou %s à sua lista de amigos?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -428,7 +506,7 @@ msgstr "" "caixa de spam) pela mensagem com as instrucções." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "A aguardar confirmação deste número de telefone." @@ -440,6 +518,8 @@ msgstr "Antes »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Bio" @@ -447,16 +527,18 @@ msgstr "Bio" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Bio é demasiada extensa (máx 140 car)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Não é possível remover a mensagem." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Não é possível ler o URL do avatar '%s'" @@ -464,6 +546,8 @@ msgstr "Não é possível ler o URL do avatar '%s'" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Não é possível guardar a nova password." @@ -471,31 +555,34 @@ msgstr "Não é possível guardar a nova password." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancelar" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Não é possível instanciar um objecto do OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Não é possível normalizar esse ID de Jabber" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Não é possível normalizar esse endereço de email" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Modificar" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Alterar email handling" @@ -505,11 +592,12 @@ msgid "Change password" msgstr "Modificar palavra-passe" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Modificar a sua palavra-passe" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Modificar as suas definições de perfil" @@ -519,6 +607,9 @@ msgstr "Modificar as suas definições de perfil" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmar" @@ -531,12 +622,14 @@ msgstr "Confirmar Endereço" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmação cancelada." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Código de confirmação" @@ -545,7 +638,8 @@ msgstr "Código de confirmação" msgid "Confirmation code not found." msgstr "Código de confirmação não encontrado" -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -578,20 +672,24 @@ msgstr "" "Obrigado por se registar e esperamos que se divirta usando este serviço." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Ligar" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Ligar conta existente" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contacto" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Não foi possível criar o formulário de OpenID: %s" @@ -599,35 +697,39 @@ msgstr "Não foi possível criar o formulário de OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Não foi possível seguir utilizador: %s já está na sua lista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Não foi possível redireccionar para o servidor: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Não foi possível guardar a info do avatar " #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Não foi possível guardar a nova info do perfil" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Não foi possível subscrever outros a si." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Não foi possível subscrever. " @@ -640,7 +742,8 @@ msgstr "" #: ../actions/finishremotesubscribe.php:99 #: actions/finishremotesubscribe.php:101 actions/finishremotesubscribe.php:114 msgid "Couldn't convert request tokens to access tokens." -msgstr "Não foi possível converter os tokens de requisição em tokens de acesso." +msgstr "" +"Não foi possível converter os tokens de requisição em tokens de acesso." #: ../actions/confirmaddress.php:84 ../actions/emailsettings.php:234 #: ../actions/imsettings.php:218 ../actions/smssettings.php:241 @@ -648,15 +751,17 @@ msgstr "Não foi possível converter os tokens de requisição em tokens de aces #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Não foi possível apagar a confirmação do email." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Não foi possível apagar a subscrição." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Não foi possivel encontrar algum estado." @@ -669,29 +774,38 @@ msgstr "Não foi possível obter um token de requisição." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir nova subscrição." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Não foi possível salvar o perfil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Não foi possível actualizar o utilizador para auto-subscrição." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Não foi possível actualizar o registo do utilizador." @@ -707,42 +821,48 @@ msgstr "Não foi possível actualizar o registo do utilizador." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Não foi possível actualizar o utilizador." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Criar" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Criar um novo utilizador com esta alcunha." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Criar nova conta" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Criar nova conta para OpenID que já possui um utilizador." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Endereço do Jabber/GTalk já confirmado." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de telefone com serviço SMS activo já confirmado." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Endereço de email já confirmado." @@ -751,23 +871,27 @@ msgid "Currently" msgstr "Actualmente" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Ocorreu um erro na base de dados ao inserir a hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Apagar mensagem" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Descreva-se e aos seus interesses em 140 caracteres" @@ -775,11 +899,13 @@ msgstr "Descreva-se e aos seus interesses em 140 caracteres" #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "Email" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Endereço de Email" @@ -789,39 +915,43 @@ msgid "Email Settings" msgstr "Definições do Email" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "Endereço de Email já existe." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmação do Endereço de Email" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Endereço de Email, como \"nomedeutilizador@exemplo.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Endereços de Email" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Introduza uma alcunha ou um endereço de email" #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Introduza o código que recebeu no seu telefone." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Erro ao autorizar token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Erro ao ligar utilizador ao OpenID." @@ -832,39 +962,46 @@ msgstr "Erro ao ligar utilizador." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Erro ao inserir avatar" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Erro ao inserir novo perfil" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Erro ao inserir perfil remoto" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Erro ao guardar confirmação do endereço." #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Erro ao guardar perfil remoto" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Erro ao guardar o perfil." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Erro ao guardar o utilizador." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Erro ao guardar utilizador; inválido." @@ -873,6 +1010,9 @@ msgstr "Erro ao guardar utilizador; inválido." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Erro ao configurar utilizador." @@ -883,6 +1023,7 @@ msgstr "Erro ao actualizar o perfil." #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Erro ao actualizar o perfil remoto" @@ -892,33 +1033,36 @@ msgid "Error with confirmation code." msgstr "Erro no código de confirmação." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Alcunha já existente" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Falha ao actualizar avatar." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed para os amigos de %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed para as respostas a %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed para a tag %s" @@ -933,7 +1077,7 @@ msgstr "Encontrar conteúdo dos mensagens" msgid "Find people on this site" msgstr "Encontrar pessoas neste site" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -946,6 +1090,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nome Completo" @@ -954,23 +1103,33 @@ msgstr "Nome Completo" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "Nome completo é demasiado longo (máx. 255 caracteres)." #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Ajuda" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Início" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Página Principal" @@ -978,21 +1137,27 @@ msgstr "Página Principal" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "A Homepage inserida não é um URL válido." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Quero postar mensagens por email." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Endereço IM" @@ -1002,7 +1167,7 @@ msgid "IM Settings" msgstr "Definições de IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1010,7 +1175,7 @@ msgstr "" "Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-" "passe para a ligar ao seu OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1018,7 +1183,7 @@ msgstr "" "Se quiser adicionar um OpenID à sua conta, introduza-o na caixa a baixo e " "clique em \"Adicionar\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1030,25 +1195,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "Email a receber" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "O endereço de email de recepção removido." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "Palavra-passe antiga incorrecta" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Nome de utilizador ou palavra-passe incorrecta" -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1057,30 +1228,31 @@ msgstr "" "endereço de email registado na sua conta." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "URL do avatar inválido '%s'" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Endereço de email inválido: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "Página principal inválida '%s'" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "URL de licença inválido '%s'" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "Conteúdo da mensagem inválido" @@ -1095,13 +1267,13 @@ msgid "Invalid notice url" msgstr "URL da mensagem inválido" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "URL do perfil inválido '%s'." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "URL de perfil inválido (formato incorrecto)" @@ -1119,28 +1291,35 @@ msgstr "Tamanho inválido." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Nome de utilizador ou palavra-passe inválido." #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Contive(s) enviado(s)" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Convite(s) enviado(s) para as seguintes pessoas:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Convidar" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Convidar novos utilizadores" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -1149,11 +1328,12 @@ msgid "" msgstr "" #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "O Jabber ID introduzido já pertence a outro utilizador." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1161,12 +1341,14 @@ msgid "" msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Linguagem" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "Linguagem introduzida é muito longa (máx. 50 caracteres)." @@ -1175,7 +1357,15 @@ msgstr "Linguagem introduzida é muito longa (máx. 50 caracteres)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Localidade" @@ -1184,7 +1374,12 @@ msgstr "Localidade" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "Localidade é muito longa (máx. 255 caracteres)." @@ -1193,18 +1388,22 @@ msgstr "Localidade é muito longa (máx. 255 caracteres)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Entrar" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Entrar com conta [OpenID](%%doc.openid%%)" -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1212,25 +1411,29 @@ msgid "" "%). " msgstr "" "Entrar com o seu nome de utilizador e palavra passe. Não está registado " -"ainda?[Registe-se](%%action.register%%), ou tente entrar com " -"[OpenID](%%action.openidlogin%%). " +"ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%" +"action.openidlogin%%). " -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Sair" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Perdeu ou esqueceu-se da palavra-passe?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -1241,16 +1444,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "" #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membro desde" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog por %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1260,42 +1465,50 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "" #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Novo" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Nova alcunha" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nova palavra-passe" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "Nova palavra-passe foi guardada com sucesso. Está agora conectado." @@ -1305,7 +1518,13 @@ msgstr "Nova palavra-passe foi guardada com sucesso. Está agora conectado." #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Alcunha" @@ -1314,7 +1533,12 @@ msgstr "Alcunha" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Alcunha já em uso. Tente outra diferente." @@ -1323,47 +1547,58 @@ msgstr "Alcunha já em uso. Tente outra diferente." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "Alcunha só deve conter letras minúsculas e números. Sem espaços." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Alcunha não permitida." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Alcunha do utilizador que pretende seguir" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Alcunha ou email" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Não" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "" #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "" #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Nenhum código introduzido" @@ -1375,11 +1610,15 @@ msgstr "" #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "" @@ -1388,7 +1627,9 @@ msgid "No id." msgstr "" #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "" @@ -1399,6 +1640,7 @@ msgstr "Nenhuma alcunha fornecida pelo servidor remoto." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Nenhuma alcunha." @@ -1406,12 +1648,14 @@ msgstr "Nenhuma alcunha." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Nenhuma confirmação pendente para cancelar." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Nenhum numero de telefone." @@ -1421,7 +1665,8 @@ msgid "No profile URL returned by server." msgstr "" #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Nenhum endereço de email registado para esse utilizador." @@ -1433,7 +1678,7 @@ msgstr "Nenhum pedido encontrado!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Nenhum resultado" @@ -1444,12 +1689,16 @@ msgstr "" #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Nenhum estado encontrado com esse ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Nenhum estado com esse ID encontrado." @@ -1459,13 +1708,15 @@ msgid "No such OpenID." msgstr "" #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "" #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "" @@ -1503,12 +1754,22 @@ msgstr "" #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "" #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" @@ -1522,32 +1783,38 @@ msgid "Not a recovery code." msgstr "" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "" #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "" #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "" #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "" @@ -1555,6 +1822,11 @@ msgstr "" #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "" @@ -1574,7 +1846,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "" #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "" @@ -1585,11 +1858,13 @@ msgstr "" #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "" @@ -1605,11 +1880,15 @@ msgstr "" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "" -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "" @@ -1626,39 +1905,44 @@ msgid "Notice feed for %s" msgstr "" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "" @@ -1666,29 +1950,34 @@ msgstr "" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "" #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "" @@ -1704,11 +1993,12 @@ msgid "OpenID settings" msgstr "" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "" #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "" @@ -1718,34 +2008,46 @@ msgstr "" #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "" #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "" #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "" #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "" @@ -1765,14 +2067,17 @@ msgid "People search" msgstr "" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "" @@ -1784,7 +2089,7 @@ msgid "" msgstr "" #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" @@ -1793,7 +2098,9 @@ msgstr "" #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "" @@ -1802,42 +2109,52 @@ msgstr "" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "" #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "" #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "" @@ -1846,17 +2163,19 @@ msgid "Public Stream Feed" msgstr "" #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "" @@ -1866,12 +2185,14 @@ msgid "Recent Tags" msgstr "" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "" @@ -1884,37 +2205,45 @@ msgstr "" #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "" #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "" @@ -1928,6 +2257,9 @@ msgstr "" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "" @@ -1936,41 +2268,48 @@ msgstr "" msgid "Remove OpenID" msgstr "" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." msgstr "" #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "" @@ -1979,17 +2318,18 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "" @@ -2002,12 +2342,21 @@ msgstr "" #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "" @@ -2017,14 +2366,14 @@ msgid "Search Stream Feed" msgstr "" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " "by spaces; they must be 3 characters or more." msgstr "" -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2032,48 +2381,56 @@ msgid "" msgstr "" #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "" #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "" #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "" #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." msgstr "" #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "" @@ -2093,27 +2450,32 @@ msgid "Something weird happened." msgstr "" #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "" #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "" -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "" @@ -2121,24 +2483,28 @@ msgstr "" #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "" @@ -2146,28 +2512,35 @@ msgstr "" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "" #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "" @@ -2187,6 +2560,7 @@ msgid "That confirmation code is not for you!" msgstr "" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "" @@ -2196,63 +2570,73 @@ msgid "That file is too big." msgstr "" #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "" #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "" #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "" #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "" #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "" #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "" #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "" #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "" #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "" #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "" #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "" #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "" @@ -2261,18 +2645,22 @@ msgstr "" #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "" -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " "subscription. Your subscription token is:" msgstr "" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2280,40 +2668,45 @@ msgid "" msgstr "" #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "" #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "" #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "" #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "" #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "" -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." msgstr "" #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2325,6 +2718,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "" @@ -2333,25 +2729,37 @@ msgstr "" #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "" -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "" -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -2360,18 +2768,21 @@ msgid "" msgstr "" #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "" #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "" @@ -2383,15 +2794,22 @@ msgstr "" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "" #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "" #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "" @@ -2420,38 +2838,47 @@ msgstr "" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "" #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "" @@ -2468,12 +2895,15 @@ msgid "Upload a new profile image" msgstr "" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "" @@ -2497,11 +2927,16 @@ msgstr "" #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "" #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "" @@ -2510,29 +2945,33 @@ msgid "User not found." msgstr "" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "" @@ -2540,7 +2979,9 @@ msgstr "" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "" @@ -2561,11 +3002,12 @@ msgid "You are already logged in!" msgstr "" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "" @@ -2583,20 +3025,22 @@ msgstr "" msgid "You can receive SMS messages through email from %%site.name%%." msgstr "" -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." msgstr "" #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2605,21 +3049,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "" #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2633,82 +3079,96 @@ msgid "" msgstr "" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "" #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" msgstr "" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "" #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "" -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "" @@ -2730,12 +3190,14 @@ msgid "reply" msgstr "" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "" @@ -2756,6 +3218,26 @@ msgstr "" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -2764,6 +3246,7 @@ msgid "This notice is not a favorite!" msgstr "" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "" @@ -2771,22 +3254,28 @@ msgstr "" msgid "Favor" msgstr "" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "" #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "" @@ -2796,11 +3285,13 @@ msgstr "" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "" @@ -2840,33 +3331,44 @@ msgid "Login with your username and password. " msgstr "" #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "" #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "" #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "" #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "" @@ -2920,6 +3422,11 @@ msgstr "" #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "" @@ -2948,6 +3455,8 @@ msgid "New password successfully saved. " msgstr "" #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "" @@ -2968,12 +3477,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "" #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "" @@ -2981,7 +3493,7 @@ msgstr "" msgid "No such message." msgstr "" -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "" @@ -3005,51 +3517,70 @@ msgid "Mobile carrier for your phone. " msgstr "" #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "" #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "" #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "" @@ -3068,14 +3599,17 @@ msgid "" msgstr "" #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "" @@ -3084,6 +3618,7 @@ msgid "Twitter Username" msgstr "" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "" @@ -3092,24 +3627,29 @@ msgid "Twitter Password" msgstr "" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "" #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "" #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "" -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." msgstr "" #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "" @@ -3120,33 +3660,43 @@ msgstr "" #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "" #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "" #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "" #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "" #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "" #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "" @@ -3163,18 +3713,19 @@ msgid "The subscription has been rejected, but no " msgstr "" #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "" @@ -3184,89 +3735,111 @@ msgid "Subscriptions: %1$s\n" msgstr "" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "" -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "" -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "" -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "" -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "" -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "" @@ -3274,11 +3847,11 @@ msgstr "" msgid "Commands:\n" msgstr "" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "" -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "" @@ -3293,7 +3866,7 @@ msgid "" "\n" msgstr "" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "" @@ -3305,7 +3878,7 @@ msgid "" "\n" msgstr "" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "" @@ -3314,31 +3887,39 @@ msgid "This form should automatically submit itself. " msgstr "" #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "" @@ -3351,14 +3932,19 @@ msgid "Twitter integration options" msgstr "" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "" -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, fuzzy, php-format msgid "%s and friends, page %d" msgstr "%s e amigos" @@ -3368,21 +3954,31 @@ msgid "You can upload your personal avatar." msgstr "" #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "" @@ -3399,34 +3995,43 @@ msgid "There was a problem with your session token. " msgstr "" #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "" #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "" #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "" #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "" -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "" @@ -3434,11 +4039,11 @@ msgstr "" msgid "Are you sure you want to block this user? " msgstr "" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "" -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "" @@ -3456,38 +4061,56 @@ msgstr "Tem a certeza que permite remover esta mensagem?" msgid "Add to favorites" msgstr "" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "" #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "" @@ -3496,15 +4119,16 @@ msgid "Nickname must have only lowercase letters " msgstr "" #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 #, fuzzy msgid "description is too long (max 140 chars)." msgstr "Bio é demasiada extensa (máx 140 car)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "" -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "" @@ -3521,7 +4145,8 @@ msgstr "" msgid "Send me email when someone " msgstr "" -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "" @@ -3536,7 +4161,7 @@ msgstr "" "Um código de confirmação foi enviado para o endereço fornecido. Tem que " "aprovar que %s envie mensagens para sí." -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "" @@ -3550,52 +4175,67 @@ msgstr "" msgid "Allow %s to update my Facebook status" msgstr "" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 #, fuzzy msgid "Before" msgstr "Antes »" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "" @@ -3637,12 +4277,14 @@ msgstr "" msgid "Sync preferences" msgstr "" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "" @@ -3656,7 +4298,8 @@ msgid "The most popular notices on the site right now." msgstr "" #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "" @@ -3670,15 +4313,17 @@ msgstr "" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "" -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3686,12 +4331,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "Avatar actualizado." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 msgid "Failed updating logo." msgstr "" @@ -3710,7 +4357,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3725,6 +4373,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 msgid "Create a new group" msgstr "" @@ -3734,7 +4383,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " msgstr "" -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 msgid "Group search" msgstr "" @@ -3756,20 +4405,20 @@ msgstr "" msgid "A confirmation code was sent " msgstr "Código de confirmação não encontrado" -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 msgid "You must be logged in to join a group." msgstr "" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 msgid "You are already a member of that group" msgstr "" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, php-format msgid "Could not join user %s to group %s" msgstr "" -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, php-format msgid "%s joined group %s" msgstr "" @@ -3778,15 +4427,18 @@ msgstr "" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 msgid "You must be logged in to leave a group." msgstr "" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 msgid "No such group." msgstr "" -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 msgid "You are not a member of that group." msgstr "" @@ -3794,21 +4446,25 @@ msgstr "" msgid "You may not leave a group while you are its administrator." msgstr "" -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 msgid "Could not find membership record." msgstr "" -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, php-format msgid "Could not remove user %s to group %s" msgstr "" -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3820,15 +4476,17 @@ msgstr "" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 msgid "Use this form to create a new group." msgstr "" -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 msgid "Could not create group." msgstr "" -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 msgid "Could not set group membership." msgstr "" @@ -3840,11 +4498,14 @@ msgstr "" msgid "Don't send a message to yourself; " msgstr "" -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "" @@ -3861,7 +4522,7 @@ msgstr "" msgid "Nudge sent!" msgstr "" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 msgid "OpenID login" msgstr "" @@ -3885,11 +4546,13 @@ msgstr "" msgid "Service" msgstr "" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "" -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "" @@ -3898,16 +4561,17 @@ msgstr "" msgid "Change your password." msgstr "Modificar a sua palavra-passe" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 msgid "Password change" msgstr "" -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "" @@ -3917,11 +4581,12 @@ msgstr "" msgid "These are users who have tagged themselves \"%s\" " msgstr "" -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 msgid "Profile information" msgstr "" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -3934,20 +4599,25 @@ msgstr "" "humanos)" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "" -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Mensagens públicas de %s" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "" @@ -3967,11 +4637,13 @@ msgstr "" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "" @@ -4024,7 +4696,8 @@ msgstr "" msgid "That's a local profile! Login to subscribe." msgstr "" -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, php-format msgid "Replies to %s, page %d" msgstr "" @@ -4034,50 +4707,71 @@ msgstr "" msgid "%s favorite notices, page %d" msgstr "" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 msgid "Group profile" msgstr "" #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 msgid "Note" msgstr "" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 msgid "Group actions" msgstr "" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, php-format msgid "Notice feed for %s group" msgstr "" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 msgid "Members" msgstr "" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 msgid "(None)" msgstr "" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4092,7 +4786,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "" -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, php-format msgid "%s, page %d" msgstr "" @@ -4102,31 +4796,38 @@ msgid "'s profile" msgstr "" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 msgid "User profile" msgstr "" #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 msgid "User actions" msgstr "" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 msgid "Send a direct message to this user" msgstr "" -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 msgid "Message" msgstr "" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Todas as subscrições" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4151,7 +4852,7 @@ msgstr "" msgid "A confirmation code was sent to the phone number you added. " msgstr "A aguardar confirmação deste número de telefone." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 msgid "Mobile carrier" msgstr "" @@ -4209,16 +4910,17 @@ msgstr "" msgid "These are the people whose " msgstr "" -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, php-format msgid "Notices tagged with %s, page %d" msgstr "" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4240,7 +4942,7 @@ msgstr "" msgid "Tag user" msgstr "" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4250,16 +4952,16 @@ msgstr "" msgid "There was a problem with your session token." msgstr "" -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "" -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" @@ -4267,20 +4969,23 @@ msgstr "" msgid "No such tag." msgstr "" -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "" -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "" -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "" @@ -4288,15 +4993,16 @@ msgstr "" msgid "Add your Twitter account to automatically send " msgstr "" -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "" @@ -4309,146 +5015,155 @@ msgstr "" msgid "Unable to retrieve account information " msgstr "" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "" -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "" -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "" -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, fuzzy, php-format msgid "%s - %s" msgstr "%s (%s)" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Account" msgstr "Sobre" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 #, fuzzy msgid "Change your email, avatar, password, profile" msgstr "Modificar a sua palavra-passe" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 #, fuzzy msgid "Create an account" msgstr "Ligar conta existente" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 msgid "Site notice" msgstr "" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 msgid "Page notice" msgstr "" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 msgid "All " msgstr "" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block this user" msgstr "" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquear" @@ -4461,11 +5176,14 @@ msgstr "" msgid "To use the %s Facebook Application you need to login " msgstr "" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr "" #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "" @@ -4486,32 +5204,37 @@ msgstr "" msgid "All" msgstr "" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 #, fuzzy msgid "Description" msgstr "Todas as subscrições" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "" -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "" @@ -4520,20 +5243,20 @@ msgstr "" msgid "Group" msgstr "" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "" @@ -4563,11 +5286,11 @@ msgstr "" msgid "Leave" msgstr "" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "" @@ -4587,24 +5310,24 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "" @@ -4619,43 +5342,51 @@ msgstr "" msgid "%1$s just added your notice from %2$s" msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 #, fuzzy msgid "From" msgstr "de" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 #, fuzzy msgid "Available characters" msgstr "6 ou mais caracteres" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 #, fuzzy msgid "Reply to this notice" msgstr "Não é possível remover a mensagem." -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 #, fuzzy msgid "Delete this notice" msgstr "Não é possível remover a mensagem." -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -4676,27 +5407,29 @@ msgstr "" msgid "Tags in %s's notices" msgstr "" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "" @@ -4712,31 +5445,33 @@ msgstr "" msgid "Untitled section" msgstr "" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, fuzzy, php-format msgid "People subscribed to %s" msgstr "Já subscrito!." -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "O utilizador bloqueou-o." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Subscrever este utilizador" @@ -4749,13 +5484,1981 @@ msgid "Top posters" msgstr "Top posters" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Desbloquear este utilizador" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Desbloquear" #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Des-Subscrever deste utilizador" + +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s e amigos" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "Avatar actualizado." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "Tem a certeza que permite remover esta mensagem?" + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "" + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog por %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +msgid "Only logged-in users can send direct messages." +msgstr "" + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr "Procurar por \"%s\" no fluxo de mensagens" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Por razões de segurança, por favor reintroduza o seu nome de utilizador e " +"palavra-passe antes de alterar as suas configurações." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Fluxo Público de %s" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +"excepto estes dados privados: palavra chave, endereço de email, endereço de " +"mensageiro instantâneo, número de telefone." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Criar" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +msgid "Your profile" +msgstr "" + +#: actions/showstream.php:149 +#, php-format +msgid "%s's profile" +msgstr "" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Feed para a tag %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Modificar as suas definições de perfil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Um código de confirmação foi enviado para o número de telefone fornecido. " +"Procure na sua 'Caixa de Entrada' (e caixa de spam) pelo email com o código " +"e instrucções de utilização." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +msgid "No such user!" +msgstr "" + +#: actions/twittersettings.php:72 +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "" + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" + +#: actions/usergroups.php:131 actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: lib/action.php:406 lib/action.php:425 +msgid "Connect to SMS, Twitter" +msgstr "" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +msgid "Badge" +msgstr "" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "" +"Se já tem uma conta, inicie sessão com o seu nome de utilizador e palavra-" +"passe para a ligar ao seu OpenID." + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s está agora a ouvir os seus comunicados em %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Sinceramente,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +msgid "Search site" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "" + +#: actions/block.php:149 +msgid "Do not block this user from this group" +msgstr "" + +#: actions/block.php:150 +msgid "Block this user from this group" +msgstr "" + +#: actions/blockedfromgroup.php:90 +#, php-format +msgid "%s blocked profiles" +msgstr "" + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s e amigos" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Desbloquear este utilizador" + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmação" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Não é possível remover a mensagem." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Endereço de email inválido: %s" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Alcunha já em uso. Tente outra diferente." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Não foi possível criar o formulário de OpenID: %s" + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "URI da mensagem inválido" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nenhuma alcunha." + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +msgid "Not a valid invitation code." +msgstr "" + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "O utilizador bloqueou-o." + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "" + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +msgid "Block user from group" +msgstr "" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +msgid "Group design" +msgstr "" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Não foi possível actualizar o utilizador." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +msgid "Unable to save your design settings!" +msgstr "" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +msgid "Design preferences saved." +msgstr "" + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +msgid "Make user an admin of the group" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make Admin" +msgstr "" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Nenhum resultado" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "O utilizador bloqueou-o." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +msgid "Message sent" +msgstr "" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Não foi possível salvar o perfil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se você se esqueceu ou perdeu a sua palavra-passe, você pode receber uma " +"nova que será enviada para o endereço de email que tem configurado na sua " +"conta." + +#: actions/recoverpassword.php:158 +msgid "You've been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recover" +msgstr "" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Erro no código de confirmação." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Subscrever este utilizador" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "%s e amigos" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +msgid "Admins" +msgstr "" + +#: actions/shownotice.php:101 +msgid "Not a local notice" +msgstr "" + +#: actions/showstream.php:72 +#, php-format +msgid " tagged %s" +msgstr "" + +#: actions/showstream.php:121 +#, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." + +#: actions/tag.php:77 actions/tag.php:86 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed para a tag %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +msgid "This status is already a favorite!" +msgstr "" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite!" +msgstr "" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Não foi possível actualizar o utilizador." + +#: actions/twitapifriendships.php:215 +msgid "Target user not specified." +msgstr "" + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Não foi possivel encontrar algum estado." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Actualizações em resposta a %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "Todas as subscrições" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/User.php:319 classes/User.php:327 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +msgid "Design your profile" +msgstr "" + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Modificar a sua palavra-passe" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Ligar" + +#: lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Entrar" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquear" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Desbloquear este utilizador" + +#: lib/groupnav.php:119 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +msgid "in context" +msgstr "" + +#: lib/profileaction.php:177 +msgid "User ID" +msgstr "" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +msgid "Search help" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "A Homepage inserida não é um URL válido." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +msgid "No such page" +msgstr "" + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "" + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "Bio é demasiada extensa (máx 140 car)." + +#: actions/apigroupjoin.php:110 +msgid "You are already a member of that group." +msgstr "" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "" + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Não foi possível seguir utilizador: Utilizador não encontrado." + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "" + +#: actions/apigrouplist.php:103 +#, php-format +msgid "Groups %s is a member of on %s." +msgstr "" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "" + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "Bio é demasiada extensa (máx 140 car)." + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:106 +msgid "You are not authorized." +msgstr "" + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "" +"Não foi possível converter os tokens de requisição em tokens de acesso." + +#: actions/finishremotesubscribe.php:114 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/getfile.php:75 +msgid "No such file." +msgstr "" + +#: actions/getfile.php:79 +msgid "Cannot read file." +msgstr "" + +#: actions/grouprss.php:133 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "" + +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "" + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Entrar com o seu nome de utilizador e palavra passe. Não está registado " +"ainda?[Registe-se](%%action.register%%), ou tente entrar com [OpenID](%%" +"action.openidlogin%%). " + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Todas as actualizações com o termo \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Descreva-se e aos seus interesses em 140 caracteres" + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Descreva-se e aos seus interesses em 140 caracteres" + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Bio é demasiada extensa (máx 140 car)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Não foi possível obter um token de requisição." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed para os amigos de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed para os amigos de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed para os amigos de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Nenhum código introduzido" + +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "" + +#: actions/tag.php:92 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" + +#: actions/userauthorization.php:249 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:261 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Não é possível ler o URL do avatar '%s'" + +#: actions/userauthorization.php:348 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Não foi possível redireccionar para o servidor: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Encontrar conteúdo dos mensagens" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "" +"Não foi possivel actualizar utilizador com endereço de email confirmado." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:431 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Não é possível remover a mensagem." + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Erro ao guardar o utilizador." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Código de confirmação não encontrado" + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +msgid "Go to the installer." +msgstr "" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "" + +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "" + +#: lib/jabber.php:192 +#, php-format +msgid "notice id: %s" +msgstr "" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%1$s está agora a ouvir os seus comunicados em %2$s." + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr "de" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's mime-type!" +msgstr "" + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Apagar mensagem" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.mo b/locale/pt_BR/LC_MESSAGES/statusnet.mo index a5a6f27253deb1e043df8a2d6f0aee6ef1d087e0..099e3fd6d64c988f7462a5e58990ce953b71cf92 100644 GIT binary patch delta 28527 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 leRA0~c-xI7dS8?prRB( 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\n" "Language-Team: Português do Brasil\n" @@ -14,14 +14,14 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68 -#: actions/noticesearchrss.php:88 +#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89 #, php-format msgid " Search Stream for \"%s\"" msgstr " Procurar por \"%s\" no fluxo de mensagens" #: ../actions/finishopenidlogin.php:82 ../actions/register.php:191 #: actions/finishopenidlogin.php:88 actions/register.php:205 -#: actions/finishopenidlogin.php:110 +#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109 msgid "" " except this private data: password, email address, IM address, phone number." msgstr "" @@ -34,17 +34,19 @@ msgid " from " msgstr " de " #: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412 -#: actions/twitapistatuses.php:347 +#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363 #, php-format msgid "%1$s / Updates replying to %2$s" msgstr "%1$s / Atualizações respondendo à %2$s" #: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211 +#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226 #, php-format msgid "%1$s has invited you to join them on %2$s" msgstr "%1$s convidou você para se juntar ao %2$s" -#: ../actions/invite.php:170 +#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222 +#: actions/invite.php:228 #, php-format msgid "" "%1$s has invited you to join them on %2$s (%3$s).\n" @@ -102,6 +104,7 @@ msgstr "" "Cordialmente, %2$s\n" #: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241 +#: lib/mail.php:236 lib/mail.php:235 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s agora está acompanhando suas mensagens em %2$s." @@ -124,26 +127,29 @@ msgstr "" "%4$s.\n" #: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415 -#: actions/twitapistatuses.php:350 +#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367 +#: actions/twitapistatuses.php:328 actions/apitimelinementions.php:126 #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s atualizações que respondem a mensagens de %2$s / %3$s." # Apesar do termo em inglês ser status, na verdade ele refere-se a uma determinada mensagem. #: ../actions/shownotice.php:45 actions/shownotice.php:45 -#: actions/shownotice.php:161 +#: actions/shownotice.php:161 actions/shownotice.php:174 actions/oembed.php:86 +#: actions/shownotice.php:180 #, php-format msgid "%1$s's status on %2$s" msgstr "Mensagem de %1$s em %2$s" #: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91 #: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131 +#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139 #, php-format msgid "%s (%s)" msgstr "%s (%s)" #: ../actions/publicrss.php:62 actions/publicrss.php:48 -#: actions/publicrss.php:90 +#: actions/publicrss.php:90 actions/publicrss.php:89 #, php-format msgid "%s Public Stream" msgstr "Fluxo Público de %s" @@ -153,34 +159,48 @@ msgstr "Fluxo Público de %s" #: actions/allrss.php:60 actions/twitapistatuses.php:155 lib/personal.php:51 #: actions/all.php:65 actions/allrss.php:103 actions/facebookhome.php:164 #: actions/twitapistatuses.php:126 lib/personalgroupnav.php:99 +#: actions/all.php:68 actions/all.php:114 actions/allrss.php:106 +#: actions/facebookhome.php:163 actions/twitapistatuses.php:130 +#: actions/all.php:50 actions/all.php:127 actions/allrss.php:114 +#: actions/facebookhome.php:158 actions/twitapistatuses.php:89 +#: lib/personalgroupnav.php:100 actions/all.php:86 actions/all.php:167 +#: actions/allrss.php:115 actions/apitimelinefriends.php:114 #, php-format msgid "%s and friends" msgstr "%s e amigos" #: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49 -#: actions/twitapistatuses.php:33 +#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32 +#: actions/twitapistatuses.php:37 actions/apitimelinepublic.php:106 +#: actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Mensagens públicas de %s" -#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 +#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412 #, php-format msgid "%s status" msgstr "Status de %s" #: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265 -#: actions/twitapistatuses.php:199 +#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209 +#: actions/twitapigroups.php:69 actions/twitapistatuses.php:154 +#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Mensagens de %s" #: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52 -#: actions/twitapistatuses.php:36 +#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38 +#: actions/twitapistatuses.php:41 actions/apitimelinepublic.php:110 +#: actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s atualizações de todo mundo!" -#: ../actions/register.php:213 +#: ../actions/register.php:213 actions/register.php:497 +#: actions/register.php:545 actions/register.php:555 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -188,7 +208,8 @@ msgstr "" "(Você receberá uma mensagem por e-mail a qualquer momento, com instruções " "sobre como confirmar seu endereço.)" -#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 +#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702 +#: lib/action.php:752 lib/action.php:767 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -197,7 +218,8 @@ msgstr "" "**%%site.name%%** é um serviço de microblogagem disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 +#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704 +#: lib/action.php:754 lib/action.php:769 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblogagem. " @@ -210,31 +232,35 @@ msgstr "" #: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43 #: actions/finishopenidlogin.php:79 actions/profilesettings.php:76 #: actions/finishopenidlogin.php:101 actions/profilesettings.php:100 -#: lib/groupeditform.php:139 +#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100 +#: lib/groupeditform.php:154 actions/profilesettings.php:108 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços" #: ../actions/register.php:152 actions/register.php:166 +#: actions/register.php:368 actions/register.php:414 actions/register.php:418 msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." msgstr "" "1-64 letras minúsculas ou números, sem pontuação ou espaços. Obrigatório." #: ../actions/password.php:42 actions/profilesettings.php:181 -#: actions/passwordsettings.php:102 +#: actions/passwordsettings.php:102 actions/passwordsettings.php:108 msgid "6 or more characters" msgstr "No mínimo 6 caracteres" #: ../actions/recoverpassword.php:180 actions/recoverpassword.php:186 -#: actions/recoverpassword.php:220 +#: actions/recoverpassword.php:220 actions/recoverpassword.php:233 +#: actions/recoverpassword.php:236 msgid "6 or more characters, and don't forget it!" msgstr "No mínimo 6 caracteres. E não se esqueça dela!" #: ../actions/register.php:154 actions/register.php:168 -#: actions/register.php:373 +#: actions/register.php:373 actions/register.php:419 actions/register.php:423 msgid "6 or more characters. Required." msgstr "No mínimo 6 caracteres. Obrigatório." #: ../actions/imsettings.php:197 actions/imsettings.php:205 +#: actions/imsettings.php:321 actions/imsettings.php:327 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -244,6 +270,7 @@ msgstr "" "informou. Você deve permitir que %s envie mensagens para você." #: ../actions/emailsettings.php:213 actions/emailsettings.php:231 +#: actions/emailsettings.php:350 actions/emailsettings.php:358 msgid "" "A confirmation code was sent to the email address you added. Check your " "inbox (and spam box!) for the code and instructions on how to use it." @@ -279,7 +306,34 @@ msgstr "" #: actions/twitapistatuses.php:147 actions/twitapistatuses.php:228 #: actions/twitapistatuses.php:239 actions/twitapistatuses.php:392 #: actions/twitapistatuses.php:402 actions/twitapistatuses.php:429 -#: actions/twitapiusers.php:32 +#: actions/twitapiusers.php:32 actions/twitapidirect_messages.php:120 +#: actions/twitapifavorites.php:91 actions/twitapifavorites.php:108 +#: actions/twitapistatuses.php:82 actions/twitapistatuses.php:159 +#: actions/twitapistatuses.php:246 actions/twitapistatuses.php:257 +#: actions/twitapistatuses.php:416 actions/twitapistatuses.php:426 +#: actions/twitapistatuses.php:453 actions/twitapidirect_messages.php:113 +#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:109 +#: actions/twitapifavorites.php:160 actions/twitapifriendships.php:128 +#: actions/twitapifriendships.php:168 actions/twitapigroups.php:110 +#: actions/twitapistatuses.php:68 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:201 actions/twitapistatuses.php:211 +#: actions/twitapistatuses.php:357 actions/twitapistatuses.php:372 +#: actions/twitapistatuses.php:409 actions/twitapitags.php:110 +#: actions/twitapiusers.php:34 actions/apiaccountratelimitstatus.php:70 +#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 +#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 +#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:129 +#: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 +#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 +#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 +#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:133 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:144 actions/apitimelinefriends.php:154 +#: actions/apitimelinegroup.php:141 actions/apitimelinementions.php:149 +#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139 +#: actions/apitimelineuser.php:163 actions/apiusershow.php:101 msgid "API method not found!" msgstr "O método da API não foi encontrado!" @@ -302,16 +356,23 @@ msgstr "O método da API não foi encontrado!" #: actions/twitapidirect_messages.php:184 actions/twitapifavorites.php:143 #: actions/twitapihelp.php:52 actions/twitapistatusnet.php:172 #: actions/twitapinotifications.php:31 actions/twitapinotifications.php:37 -#: actions/twitapistatuses.php:562 +#: actions/twitapistatuses.php:562 actions/twitapiaccount.php:46 +#: actions/twitapiaccount.php:98 actions/twitapiaccount.php:104 +#: actions/twitapidirect_messages.php:193 actions/twitapifavorites.php:149 +#: actions/twitapistatuses.php:625 actions/twitapitrends.php:87 +#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189 +#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582 msgid "API method under construction." msgstr "O método da API está em construção." -#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 +#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661 +#: lib/action.php:706 lib/action.php:721 msgid "About" msgstr "Sobre" #: ../actions/userauthorization.php:119 actions/userauthorization.php:126 -#: actions/userauthorization.php:143 +#: actions/userauthorization.php:143 actions/userauthorization.php:178 +#: actions/userauthorization.php:209 msgid "Accept" msgstr "Aceitar" @@ -322,6 +383,9 @@ msgstr "Aceitar" #: actions/twittersettings.php:85 actions/emailsettings.php:120 #: actions/imsettings.php:127 actions/openidsettings.php:111 #: actions/smssettings.php:133 actions/twittersettings.php:163 +#: actions/twittersettings.php:166 actions/twittersettings.php:182 +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 msgid "Add" msgstr "Adicionar" @@ -339,27 +403,29 @@ msgstr "Adicionar ou remover OpenIDs" #: ../actions/smssettings.php:39 actions/emailsettings.php:39 #: actions/imsettings.php:40 actions/smssettings.php:39 #: actions/emailsettings.php:94 actions/imsettings.php:94 -#: actions/smssettings.php:92 +#: actions/smssettings.php:92 actions/emailsettings.php:100 +#: actions/imsettings.php:100 actions/smssettings.php:104 msgid "Address" msgstr "Endereço" #: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176 +#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189 msgid "Addresses of friends to invite (one per line)" msgstr "Endereços dos seus amigos que serão convidados (um por linha)" #: ../actions/showstream.php:273 actions/showstream.php:288 -#: actions/showstream.php:422 +#: actions/showstream.php:422 lib/profileaction.php:126 msgid "All subscriptions" msgstr "Todas as assinaturas" #: ../actions/publicrss.php:64 actions/publicrss.php:50 -#: actions/publicrss.php:92 +#: actions/publicrss.php:92 actions/publicrss.php:91 #, php-format msgid "All updates for %s" msgstr "Todas as atualizações para %s" #: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70 -#: actions/noticesearchrss.php:90 +#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91 #, php-format msgid "All updates matching search term \"%s\"" msgstr "Todas as atualizações correspondentes ao termo \"%s\"" @@ -369,32 +435,39 @@ msgstr "Todas as atualizações correspondentes ao termo \"%s\"" #: actions/finishopenidlogin.php:29 actions/login.php:31 #: actions/openidlogin.php:29 actions/register.php:30 #: actions/finishopenidlogin.php:34 actions/login.php:77 -#: actions/openidlogin.php:30 actions/register.php:92 +#: actions/openidlogin.php:30 actions/register.php:92 actions/register.php:131 +#: actions/login.php:79 msgid "Already logged in." msgstr "Já está logado." -#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 +#: ../lib/subs.php:42 lib/subs.php:42 lib/subs.php:49 lib/subs.php:48 msgid "Already subscribed!." msgstr "Já foi assinado!" #: ../actions/deletenotice.php:54 actions/deletenotice.php:55 -#: actions/deletenotice.php:113 +#: actions/deletenotice.php:113 actions/deletenotice.php:114 +#: actions/deletenotice.php:144 msgid "Are you sure you want to delete this notice?" msgstr "Você tem certeza que deseja excluir esta mensagem?" #: ../actions/userauthorization.php:77 actions/userauthorization.php:83 -#: actions/userauthorization.php:81 +#: actions/userauthorization.php:81 actions/userauthorization.php:76 +#: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar a assinatura" #: ../actions/login.php:104 ../actions/register.php:178 -#: actions/register.php:192 +#: actions/register.php:192 actions/login.php:218 actions/openidlogin.php:117 +#: actions/register.php:416 actions/register.php:463 actions/login.php:226 +#: actions/register.php:473 msgid "Automatically login in the future; not for shared computers!" msgstr "" "Entrar automaticamente sem pedir a senha. Não use em computadores " "compartilhados!" #: ../actions/profilesettings.php:65 actions/profilesettings.php:98 +#: actions/profilesettings.php:144 actions/profilesettings.php:145 +#: actions/profilesettings.php:160 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Assinar automaticamente à quem me assinar" @@ -402,15 +475,19 @@ msgstr "Assinar automaticamente à quem me assinar" #: ../actions/avatar.php:32 ../lib/settingsaction.php:90 #: actions/profilesettings.php:34 actions/avatarsettings.php:65 #: actions/showgroup.php:209 lib/accountsettingsaction.php:107 +#: actions/avatarsettings.php:67 actions/showgroup.php:211 +#: actions/showgroup.php:216 actions/showgroup.php:221 +#: lib/accountsettingsaction.php:111 msgid "Avatar" msgstr "Avatar" #: ../actions/avatar.php:113 actions/profilesettings.php:350 -#: actions/avatarsettings.php:395 +#: actions/avatarsettings.php:395 actions/avatarsettings.php:346 msgid "Avatar updated." msgstr "O avatar foi atualizado." #: ../actions/imsettings.php:55 actions/imsettings.php:56 +#: actions/imsettings.php:108 actions/imsettings.php:114 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -421,6 +498,7 @@ msgstr "" "contatos?)" #: ../actions/emailsettings.php:54 actions/emailsettings.php:55 +#: actions/emailsettings.php:107 actions/emailsettings.php:113 msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." @@ -429,7 +507,7 @@ msgstr "" "de spam!) por uma mensagem com mais instruções." #: ../actions/smssettings.php:58 actions/smssettings.php:58 -#: actions/smssettings.php:111 +#: actions/smssettings.php:111 actions/smssettings.php:123 msgid "Awaiting confirmation on this phone number." msgstr "Aguardando a confirmação deste número de telefone." @@ -440,6 +518,8 @@ msgstr "Anteriores »" #: ../actions/profilesettings.php:49 ../actions/register.php:170 #: actions/profilesettings.php:82 actions/register.php:184 #: actions/profilesettings.php:112 actions/register.php:402 +#: actions/register.php:448 actions/profilesettings.php:127 +#: actions/register.php:459 msgid "Bio" msgstr "Descrição" @@ -447,16 +527,18 @@ msgstr "Descrição" #: ../actions/updateprofile.php:103 actions/profilesettings.php:216 #: actions/register.php:89 actions/updateprofile.php:104 #: actions/profilesettings.php:205 actions/register.php:174 -#: actions/updateprofile.php:107 +#: actions/updateprofile.php:107 actions/updateprofile.php:109 +#: actions/profilesettings.php:206 actions/register.php:211 msgid "Bio is too long (max 140 chars)." msgstr "Descrição muito extensa (máximo 140 caracteres)." #: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69 +#: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Não é possível excluir esta mensagem." #: ../actions/updateprofile.php:119 actions/updateprofile.php:120 -#: actions/updateprofile.php:123 +#: actions/updateprofile.php:123 actions/updateprofile.php:125 #, php-format msgid "Can't read avatar URL '%s'" msgstr "Não é possível ler a URL '%s' do avatar" @@ -464,6 +546,8 @@ msgstr "Não é possível ler a URL '%s' do avatar" #: ../actions/password.php:85 ../actions/recoverpassword.php:300 #: actions/profilesettings.php:404 actions/recoverpassword.php:313 #: actions/passwordsettings.php:169 actions/recoverpassword.php:347 +#: actions/passwordsettings.php:174 actions/recoverpassword.php:365 +#: actions/passwordsettings.php:180 actions/recoverpassword.php:368 msgid "Can't save new password." msgstr "Não é possível salvar a nova senha." @@ -471,31 +555,34 @@ msgstr "Não é possível salvar a nova senha." #: ../actions/smssettings.php:62 actions/emailsettings.php:58 #: actions/imsettings.php:59 actions/smssettings.php:62 #: actions/emailsettings.php:111 actions/imsettings.php:114 -#: actions/smssettings.php:114 +#: actions/smssettings.php:114 actions/emailsettings.php:117 +#: actions/imsettings.php:120 actions/smssettings.php:126 msgid "Cancel" msgstr "Cancelar" #: ../lib/openid.php:121 lib/openid.php:121 lib/openid.php:130 +#: lib/openid.php:133 msgid "Cannot instantiate OpenID consumer object." msgstr "Não foi possível instanciar um objeto do OpenID." #: ../actions/imsettings.php:163 actions/imsettings.php:171 -#: actions/imsettings.php:286 +#: actions/imsettings.php:286 actions/imsettings.php:292 msgid "Cannot normalize that Jabber ID" msgstr "Não foi possível normalizar essa ID do Jabber" #: ../actions/emailsettings.php:181 actions/emailsettings.php:199 -#: actions/emailsettings.php:311 +#: actions/emailsettings.php:311 actions/emailsettings.php:318 +#: actions/emailsettings.php:326 msgid "Cannot normalize that email address" msgstr "Não foi possível normalizar este endereço de e-mail" #: ../actions/password.php:45 actions/profilesettings.php:184 -#: actions/passwordsettings.php:110 +#: actions/passwordsettings.php:110 actions/passwordsettings.php:116 msgid "Change" msgstr "Alterar" #: ../lib/settingsaction.php:88 lib/settingsaction.php:88 -#: lib/accountsettingsaction.php:114 +#: lib/accountsettingsaction.php:114 lib/accountsettingsaction.php:118 msgid "Change email handling" msgstr "Configurações de uso do e-mail" @@ -505,11 +592,12 @@ msgid "Change password" msgstr "Alterar a senha" #: ../lib/settingsaction.php:94 lib/accountsettingsaction.php:111 +#: lib/accountsettingsaction.php:115 msgid "Change your password" msgstr "Altere a sua senha" #: ../lib/settingsaction.php:85 lib/settingsaction.php:85 -#: lib/accountsettingsaction.php:105 +#: lib/accountsettingsaction.php:105 lib/accountsettingsaction.php:109 msgid "Change your profile settings" msgstr "Alterar as suas configurações de perfil" @@ -519,6 +607,9 @@ msgstr "Alterar as suas configurações de perfil" #: actions/register.php:169 actions/smssettings.php:65 #: actions/passwordsettings.php:105 actions/recoverpassword.php:221 #: actions/register.php:376 actions/smssettings.php:122 +#: actions/recoverpassword.php:236 actions/register.php:422 +#: actions/passwordsettings.php:111 actions/recoverpassword.php:239 +#: actions/register.php:426 actions/smssettings.php:134 msgid "Confirm" msgstr "Confirmar" @@ -531,12 +622,14 @@ msgstr "Confirme o endereço" #: ../actions/smssettings.php:245 actions/emailsettings.php:256 #: actions/imsettings.php:230 actions/smssettings.php:253 #: actions/emailsettings.php:379 actions/imsettings.php:361 -#: actions/smssettings.php:374 +#: actions/smssettings.php:374 actions/emailsettings.php:386 +#: actions/emailsettings.php:394 actions/imsettings.php:367 +#: actions/smssettings.php:386 msgid "Confirmation cancelled." msgstr "Confirmação cancelada." #: ../actions/smssettings.php:63 actions/smssettings.php:63 -#: actions/smssettings.php:118 +#: actions/smssettings.php:118 actions/smssettings.php:130 msgid "Confirmation code" msgstr "Código de confirmação" @@ -545,7 +638,8 @@ msgstr "Código de confirmação" msgid "Confirmation code not found." msgstr "O código de confirmação não foi encontrado." -#: ../actions/register.php:202 +#: ../actions/register.php:202 actions/register.php:473 +#: actions/register.php:521 actions/register.php:531 #, php-format msgid "" "Congratulations, %s! And welcome to %%%%site.name%%%%. From here, you may " @@ -579,20 +673,24 @@ msgstr "" "Obrigado por se registrar e esperamos que você aproveite o serviço." #: ../actions/finishopenidlogin.php:91 actions/finishopenidlogin.php:97 -#: actions/finishopenidlogin.php:119 lib/action.php:330 +#: actions/finishopenidlogin.php:119 lib/action.php:330 lib/action.php:403 +#: lib/action.php:406 actions/finishopenidlogin.php:118 lib/action.php:422 +#: lib/action.php:425 lib/action.php:435 msgid "Connect" msgstr "Conectar" #: ../actions/finishopenidlogin.php:86 actions/finishopenidlogin.php:92 -#: actions/finishopenidlogin.php:114 +#: actions/finishopenidlogin.php:114 actions/finishopenidlogin.php:113 msgid "Connect existing account" msgstr "Conectar-se a uma conta já existente" -#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 +#: ../lib/util.php:332 lib/util.php:348 lib/action.php:576 lib/action.php:669 +#: lib/action.php:719 lib/action.php:734 msgid "Contact" msgstr "Contato" #: ../lib/openid.php:178 lib/openid.php:178 lib/openid.php:187 +#: lib/openid.php:190 #, php-format msgid "Could not create OpenID form: %s" msgstr "Não foi possível criar o formulário OpenID: %s" @@ -600,35 +698,39 @@ msgstr "Não foi possível criar o formulário OpenID: %s" #: ../actions/twitapifriendships.php:60 ../actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:60 actions/twitapifriendships.php:76 #: actions/twitapifriendships.php:48 actions/twitapifriendships.php:64 +#: actions/twitapifriendships.php:51 actions/twitapifriendships.php:68 +#: actions/apifriendshipscreate.php:118 #, php-format msgid "Could not follow user: %s is already on your list." msgstr "Não é possível seguir o usuário: %s já está na sua lista." #: ../actions/twitapifriendships.php:53 actions/twitapifriendships.php:53 -#: actions/twitapifriendships.php:41 +#: actions/twitapifriendships.php:41 actions/twitapifriendships.php:43 +#: actions/apifriendshipscreate.php:109 msgid "Could not follow user: User not found." msgstr "Não é possível seguir o usuário: Usuário não encontrado." #: ../lib/openid.php:160 lib/openid.php:160 lib/openid.php:169 +#: lib/openid.php:172 #, php-format msgid "Could not redirect to server: %s" msgstr "Não foi possível redirecionar para o servidor: %s" #: ../actions/updateprofile.php:162 actions/updateprofile.php:163 -#: actions/updateprofile.php:166 +#: actions/updateprofile.php:166 actions/updateprofile.php:176 msgid "Could not save avatar info" msgstr "Não foi possível salvar as informações do avatar" #: ../actions/updateprofile.php:155 actions/updateprofile.php:156 -#: actions/updateprofile.php:159 +#: actions/updateprofile.php:159 actions/updateprofile.php:163 msgid "Could not save new profile info" msgstr "Não foi possível salvar as novas informações do perfil" -#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 +#: ../lib/subs.php:54 lib/subs.php:61 lib/subs.php:72 lib/subs.php:75 msgid "Could not subscribe other to you." msgstr "Não foi possível fazer com que o outros o sigam." -#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 +#: ../lib/subs.php:46 lib/subs.php:46 lib/subs.php:57 lib/subs.php:56 msgid "Could not subscribe." msgstr "Não foi possível assinar." @@ -650,15 +752,17 @@ msgstr "" #: actions/imsettings.php:226 actions/smssettings.php:249 #: actions/confirmaddress.php:126 actions/emailsettings.php:375 #: actions/imsettings.php:357 actions/smssettings.php:370 +#: actions/emailsettings.php:382 actions/emailsettings.php:390 +#: actions/imsettings.php:363 actions/smssettings.php:382 msgid "Couldn't delete email confirmation." msgstr "Não foi possível excluir a confirmação de e-mail." -#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 +#: ../lib/subs.php:103 lib/subs.php:116 lib/subs.php:134 lib/subs.php:136 msgid "Couldn't delete subscription." msgstr "Não foi possível excluir a assinatura." #: ../actions/twitapistatuses.php:93 actions/twitapistatuses.php:98 -#: actions/twitapistatuses.php:84 +#: actions/twitapistatuses.php:84 actions/twitapistatuses.php:87 msgid "Couldn't find any statuses." msgstr "Não foi possível encontrar nenhum status." @@ -671,29 +775,38 @@ msgstr "Não foi possível obter um token de requisição." #: ../actions/smssettings.php:206 actions/emailsettings.php:223 #: actions/imsettings.php:195 actions/smssettings.php:214 #: actions/emailsettings.php:337 actions/imsettings.php:311 -#: actions/smssettings.php:325 +#: actions/smssettings.php:325 actions/emailsettings.php:344 +#: actions/emailsettings.php:352 actions/imsettings.php:317 +#: actions/smssettings.php:337 msgid "Couldn't insert confirmation code." msgstr "Não foi possível inserir o código de confirmação." #: ../actions/finishremotesubscribe.php:180 #: actions/finishremotesubscribe.php:182 actions/finishremotesubscribe.php:218 +#: lib/oauthstore.php:487 msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir a nova assinatura." #: ../actions/profilesettings.php:184 ../actions/twitapiaccount.php:96 #: actions/profilesettings.php:299 actions/twitapiaccount.php:94 #: actions/profilesettings.php:302 actions/twitapiaccount.php:81 +#: actions/twitapiaccount.php:82 actions/profilesettings.php:328 msgid "Couldn't save profile." msgstr "Não foi possível salvar o perfil." #: ../actions/profilesettings.php:161 actions/profilesettings.php:276 -#: actions/profilesettings.php:279 +#: actions/profilesettings.php:279 actions/profilesettings.php:295 msgid "Couldn't update user for autosubscribe." msgstr "Não foi possível atualizar o usuário para assinar automaticamente." #: ../actions/emailsettings.php:280 ../actions/emailsettings.php:294 #: actions/emailsettings.php:298 actions/emailsettings.php:312 #: actions/emailsettings.php:440 actions/emailsettings.php:462 +#: actions/emailsettings.php:447 actions/emailsettings.php:469 +#: actions/smssettings.php:515 actions/smssettings.php:539 +#: actions/smssettings.php:516 actions/smssettings.php:540 +#: actions/emailsettings.php:455 actions/emailsettings.php:477 +#: actions/smssettings.php:528 actions/smssettings.php:552 msgid "Couldn't update user record." msgstr "Não foi possível atualizar o registro do usuário." @@ -709,42 +822,48 @@ msgstr "Não foi possível atualizar o registro do usuário." #: actions/emailsettings.php:411 actions/imsettings.php:252 #: actions/imsettings.php:395 actions/othersettings.php:162 #: actions/profilesettings.php:259 actions/smssettings.php:266 -#: actions/smssettings.php:408 +#: actions/smssettings.php:408 actions/emailsettings.php:287 +#: actions/emailsettings.php:418 actions/othersettings.php:167 +#: actions/profilesettings.php:260 actions/emailsettings.php:295 +#: actions/emailsettings.php:426 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:276 actions/smssettings.php:278 +#: actions/smssettings.php:420 msgid "Couldn't update user." msgstr "Não foi possível atualizar o usuário." #: ../actions/finishopenidlogin.php:84 actions/finishopenidlogin.php:90 -#: actions/finishopenidlogin.php:112 +#: actions/finishopenidlogin.php:112 actions/finishopenidlogin.php:111 msgid "Create" msgstr "Criar" #: ../actions/finishopenidlogin.php:70 actions/finishopenidlogin.php:76 -#: actions/finishopenidlogin.php:98 +#: actions/finishopenidlogin.php:98 actions/finishopenidlogin.php:97 msgid "Create a new user with this nickname." msgstr "Criar um novo usuário com este apelido." #: ../actions/finishopenidlogin.php:68 actions/finishopenidlogin.php:74 -#: actions/finishopenidlogin.php:96 +#: actions/finishopenidlogin.php:96 actions/finishopenidlogin.php:95 msgid "Create new account" msgstr "Criar uma nova conta" #: ../actions/finishopenidlogin.php:191 actions/finishopenidlogin.php:197 -#: actions/finishopenidlogin.php:231 +#: actions/finishopenidlogin.php:231 actions/finishopenidlogin.php:247 msgid "Creating new account for OpenID that already has a user." msgstr "Criando uma nova conta para um OpenID que já tem um usuário." #: ../actions/imsettings.php:45 actions/imsettings.php:46 -#: actions/imsettings.php:100 +#: actions/imsettings.php:100 actions/imsettings.php:106 msgid "Current confirmed Jabber/GTalk address." msgstr "Endereço de Jabber/GTalk já confirmado." #: ../actions/smssettings.php:46 actions/smssettings.php:46 -#: actions/smssettings.php:100 +#: actions/smssettings.php:100 actions/smssettings.php:112 msgid "Current confirmed SMS-enabled phone number." msgstr "Número de telefone já habilitado para receber SMS." #: ../actions/emailsettings.php:44 actions/emailsettings.php:45 -#: actions/emailsettings.php:99 +#: actions/emailsettings.php:99 actions/emailsettings.php:105 msgid "Current confirmed email address." msgstr "Endereço de e-mail já confirmado." @@ -753,23 +872,27 @@ msgid "Currently" msgstr "Neste momento" #: ../classes/Notice.php:72 classes/Notice.php:86 classes/Notice.php:91 +#: classes/Notice.php:114 classes/Notice.php:124 classes/Notice.php:164 #, php-format msgid "DB error inserting hashtag: %s" msgstr "Erro no banco de dados durante a inserção de hashtag: %s" #: ../lib/util.php:1061 lib/util.php:1110 classes/Notice.php:698 +#: classes/Notice.php:757 classes/Notice.php:1042 classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Erro no banco de dados na inserção da reposta: %s" #: ../actions/deletenotice.php:41 actions/deletenotice.php:41 -#: actions/deletenotice.php:79 +#: actions/deletenotice.php:79 actions/deletenotice.php:111 +#: actions/deletenotice.php:109 actions/deletenotice.php:141 msgid "Delete notice" msgstr "Excluir a mensagem" #: ../actions/profilesettings.php:51 ../actions/register.php:172 #: actions/profilesettings.php:84 actions/register.php:186 -#: actions/profilesettings.php:114 +#: actions/profilesettings.php:114 actions/register.php:404 +#: actions/register.php:450 msgid "Describe yourself and your interests in 140 chars" msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." @@ -777,11 +900,13 @@ msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." #: ../lib/settingsaction.php:87 actions/register.php:172 #: actions/register.php:175 lib/settingsaction.php:87 actions/register.php:381 #: actions/register.php:385 lib/accountsettingsaction.php:113 +#: actions/register.php:427 actions/register.php:431 actions/register.php:435 +#: lib/accountsettingsaction.php:117 msgid "Email" msgstr "E-mail" #: ../actions/emailsettings.php:59 actions/emailsettings.php:60 -#: actions/emailsettings.php:115 +#: actions/emailsettings.php:115 actions/emailsettings.php:121 msgid "Email Address" msgstr "Endereço de e-mail" @@ -791,39 +916,43 @@ msgid "Email Settings" msgstr "Configurações do e-mail" #: ../actions/register.php:73 actions/register.php:80 actions/register.php:163 +#: actions/register.php:200 actions/register.php:206 msgid "Email address already exists." msgstr "O endereço de e-mail já existe." -#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 +#: ../lib/mail.php:90 lib/mail.php:90 lib/mail.php:173 lib/mail.php:172 msgid "Email address confirmation" msgstr "Confirmação do endereço de e-mail" #: ../actions/emailsettings.php:61 actions/emailsettings.php:62 -#: actions/emailsettings.php:117 +#: actions/emailsettings.php:117 actions/emailsettings.php:123 msgid "Email address, like \"UserName@example.org\"" msgstr "Endereço de e-mail, ex: \"usuario@exemplo.org\"" #: ../actions/invite.php:129 actions/invite.php:137 actions/invite.php:174 +#: actions/invite.php:179 actions/invite.php:181 actions/invite.php:187 msgid "Email addresses" msgstr "Endereços de e-mail" #: ../actions/recoverpassword.php:191 actions/recoverpassword.php:197 -#: actions/recoverpassword.php:231 +#: actions/recoverpassword.php:231 actions/recoverpassword.php:249 +#: actions/recoverpassword.php:252 msgid "Enter a nickname or email address." msgstr "Entre com o apelido ou endereço de e-mail." #: ../actions/smssettings.php:64 actions/smssettings.php:64 -#: actions/smssettings.php:119 +#: actions/smssettings.php:119 actions/smssettings.php:131 msgid "Enter the code you received on your phone." msgstr "Informe o código que você recebeu no seu telefone." #: ../actions/userauthorization.php:137 actions/userauthorization.php:144 -#: actions/userauthorization.php:161 +#: actions/userauthorization.php:161 actions/userauthorization.php:200 msgid "Error authorizing token" msgstr "Erro na autorização do token" #: ../actions/finishopenidlogin.php:253 actions/finishopenidlogin.php:259 -#: actions/finishopenidlogin.php:297 +#: actions/finishopenidlogin.php:297 actions/finishopenidlogin.php:302 +#: actions/finishopenidlogin.php:325 msgid "Error connecting user to OpenID." msgstr "Erro na conexão do usuário ao OpenID." @@ -834,39 +963,46 @@ msgstr "Erro na conexão do usuário." #: ../actions/finishremotesubscribe.php:151 #: actions/finishremotesubscribe.php:153 actions/finishremotesubscribe.php:166 +#: lib/oauthstore.php:291 msgid "Error inserting avatar" msgstr "Erro na inserção do avatar" #: ../actions/finishremotesubscribe.php:143 #: actions/finishremotesubscribe.php:145 actions/finishremotesubscribe.php:158 +#: lib/oauthstore.php:283 msgid "Error inserting new profile" msgstr "Erro na inserção do novo perfil" #: ../actions/finishremotesubscribe.php:167 #: actions/finishremotesubscribe.php:169 actions/finishremotesubscribe.php:182 +#: lib/oauthstore.php:311 msgid "Error inserting remote profile" msgstr "Erro na inserção do perfil remoto" #: ../actions/recoverpassword.php:240 actions/recoverpassword.php:246 -#: actions/recoverpassword.php:280 +#: actions/recoverpassword.php:280 actions/recoverpassword.php:298 +#: actions/recoverpassword.php:301 msgid "Error saving address confirmation." msgstr "Erro ao salvar o endereço de confirmação" #: ../actions/userauthorization.php:140 actions/userauthorization.php:147 -#: actions/userauthorization.php:164 +#: actions/userauthorization.php:164 actions/userauthorization.php:203 msgid "Error saving remote profile" msgstr "Erro ao salvar o perfil remoto" #: ../lib/openid.php:226 lib/openid.php:226 lib/openid.php:235 +#: lib/openid.php:238 msgid "Error saving the profile." msgstr "Erro ao salvar o perfil." #: ../lib/openid.php:237 lib/openid.php:237 lib/openid.php:246 +#: lib/openid.php:249 msgid "Error saving the user." msgstr "Erro ao salvar o usuário." #: ../actions/password.php:80 actions/profilesettings.php:399 -#: actions/passwordsettings.php:164 +#: actions/passwordsettings.php:164 actions/passwordsettings.php:169 +#: actions/passwordsettings.php:175 msgid "Error saving user; invalid." msgstr "Erro ao salvar usuário; inválido." @@ -875,6 +1011,9 @@ msgstr "Erro ao salvar usuário; inválido." #: actions/login.php:47 actions/login.php:73 actions/recoverpassword.php:320 #: actions/register.php:108 actions/login.php:112 actions/login.php:138 #: actions/recoverpassword.php:354 actions/register.php:198 +#: actions/login.php:120 actions/recoverpassword.php:372 +#: actions/register.php:235 actions/login.php:122 +#: actions/recoverpassword.php:375 actions/register.php:242 msgid "Error setting user." msgstr "Erro na configuração do usuário." @@ -885,6 +1024,7 @@ msgstr "Erro na atualização do perfil" #: ../actions/finishremotesubscribe.php:161 #: actions/finishremotesubscribe.php:163 actions/finishremotesubscribe.php:176 +#: actions/finishremotesubscribe.php:133 lib/oauthstore.php:306 msgid "Error updating remote profile" msgstr "Erro na atualização do perfil remoto" @@ -894,33 +1034,36 @@ msgid "Error with confirmation code." msgstr "Erro com o código de confirmação." #: ../actions/finishopenidlogin.php:89 actions/finishopenidlogin.php:95 -#: actions/finishopenidlogin.php:117 +#: actions/finishopenidlogin.php:117 actions/finishopenidlogin.php:116 msgid "Existing nickname" msgstr "Apelido já existe" -#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 +#: ../lib/util.php:326 lib/util.php:342 lib/action.php:570 lib/action.php:663 +#: lib/action.php:708 lib/action.php:723 msgid "FAQ" msgstr "FAQ" #: ../actions/avatar.php:115 actions/profilesettings.php:352 -#: actions/avatarsettings.php:397 +#: actions/avatarsettings.php:397 actions/avatarsettings.php:349 msgid "Failed updating avatar." msgstr "Não foi possível atualizar o avatar." #: ../actions/all.php:61 ../actions/allrss.php:64 actions/all.php:61 #: actions/allrss.php:64 actions/all.php:75 actions/allrss.php:107 +#: actions/allrss.php:110 actions/allrss.php:118 #, php-format msgid "Feed for friends of %s" msgstr "Feed para os amigos de %s" #: ../actions/replies.php:65 ../actions/repliesrss.php:80 #: actions/replies.php:65 actions/repliesrss.php:66 actions/replies.php:134 -#: actions/repliesrss.php:71 +#: actions/repliesrss.php:71 actions/replies.php:136 actions/replies.php:135 #, php-format msgid "Feed for replies to %s" msgstr "Feed para respostas para %s" #: ../actions/tag.php:55 actions/tag.php:55 actions/tag.php:61 +#: actions/tag.php:68 #, php-format msgid "Feed for tag %s" msgstr "Feed para tag %s" @@ -935,7 +1078,7 @@ msgstr "Procure no conteúdo das mensagens" msgid "Find people on this site" msgstr "Procure por pessoas neste site" -#: ../actions/login.php:122 +#: ../actions/login.php:122 actions/login.php:247 actions/login.php:255 msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." @@ -948,6 +1091,11 @@ msgstr "" #: actions/profilesettings.php:103 actions/register.php:391 #: actions/showgroup.php:235 actions/showstream.php:262 #: actions/tagother.php:105 lib/groupeditform.php:142 +#: actions/showgroup.php:237 actions/showstream.php:255 +#: actions/tagother.php:104 actions/register.php:437 actions/showgroup.php:242 +#: actions/showstream.php:220 lib/groupeditform.php:157 +#: actions/profilesettings.php:111 actions/register.php:441 +#: actions/showgroup.php:247 actions/showstream.php:267 msgid "Full name" msgstr "Nome completo" @@ -956,23 +1104,33 @@ msgstr "Nome completo" #: actions/register.php:86 actions/updateprofile.php:94 #: actions/editgroup.php:195 actions/newgroup.php:146 #: actions/profilesettings.php:202 actions/register.php:171 -#: actions/updateprofile.php:97 +#: actions/updateprofile.php:97 actions/updateprofile.php:99 +#: actions/editgroup.php:197 actions/newgroup.php:147 +#: actions/profilesettings.php:203 actions/register.php:208 +#: actions/apigroupcreate.php:253 actions/editgroup.php:198 +#: actions/newgroup.php:142 actions/profilesettings.php:218 +#: actions/register.php:214 msgid "Full name is too long (max 255 chars)." msgstr "O nome completo é muito extenso (máx. 255 caracteres)" #: ../lib/util.php:322 lib/util.php:338 lib/action.php:344 lib/action.php:566 +#: lib/action.php:421 lib/action.php:659 lib/action.php:446 lib/action.php:704 +#: lib/action.php:456 lib/action.php:719 msgid "Help" msgstr "Ajuda" #: ../lib/util.php:298 lib/util.php:314 lib/action.php:322 -#: lib/facebookaction.php:200 +#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213 +#: lib/action.php:417 lib/action.php:430 msgid "Home" msgstr "Início" #: ../actions/profilesettings.php:46 ../actions/register.php:167 #: actions/profilesettings.php:79 actions/register.php:181 #: actions/profilesettings.php:107 actions/register.php:396 -#: lib/groupeditform.php:146 +#: lib/groupeditform.php:146 actions/register.php:442 +#: lib/groupeditform.php:161 actions/profilesettings.php:115 +#: actions/register.php:446 msgid "Homepage" msgstr "Site" @@ -980,21 +1138,27 @@ msgstr "Site" #: actions/profilesettings.php:210 actions/register.php:83 #: actions/editgroup.php:192 actions/newgroup.php:143 #: actions/profilesettings.php:199 actions/register.php:168 +#: actions/editgroup.php:194 actions/newgroup.php:144 +#: actions/profilesettings.php:200 actions/register.php:205 +#: actions/apigroupcreate.php:244 actions/editgroup.php:195 +#: actions/newgroup.php:139 actions/profilesettings.php:215 +#: actions/register.php:211 msgid "Homepage is not a valid URL." msgstr "A URL do site informada não é válida." #: ../actions/emailsettings.php:91 actions/emailsettings.php:98 -#: actions/emailsettings.php:173 +#: actions/emailsettings.php:173 actions/emailsettings.php:178 +#: actions/emailsettings.php:185 msgid "I want to post notices by email." msgstr "Eu quero publicar mensagens por e-mail." #: ../lib/settingsaction.php:102 lib/settingsaction.php:96 -#: lib/connectsettingsaction.php:104 +#: lib/connectsettingsaction.php:104 lib/connectsettingsaction.php:110 msgid "IM" msgstr "IM" #: ../actions/imsettings.php:60 actions/imsettings.php:61 -#: actions/imsettings.php:118 +#: actions/imsettings.php:118 actions/imsettings.php:124 msgid "IM Address" msgstr "Endereço do IM" @@ -1004,7 +1168,7 @@ msgid "IM Settings" msgstr "Configurações do IM" #: ../actions/finishopenidlogin.php:88 actions/finishopenidlogin.php:94 -#: actions/finishopenidlogin.php:116 +#: actions/finishopenidlogin.php:116 actions/finishopenidlogin.php:115 msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." @@ -1012,7 +1176,7 @@ msgstr "" "Se você já possui uma conta, utilize seu nome de usuário e senha para " "conectá-la ao seu OpenID." -#: ../actions/openidsettings.php:45 +#: ../actions/openidsettings.php:45 actions/openidsettings.php:96 msgid "" "If you want to add an OpenID to your account, enter it in the box below and " "click \"Add\"." @@ -1020,7 +1184,7 @@ msgstr "" "Se você quer adicionar um OpenID à sua conta, informe-a na caixa abaixo e " "clique em \"Adicionar\"." -#: ../actions/recoverpassword.php:137 +#: ../actions/recoverpassword.php:137 actions/recoverpassword.php:152 msgid "" "If you've forgotten or lost your password, you can get a new one sent to the " "email address you have stored in your account." @@ -1031,25 +1195,31 @@ msgstr "" #: ../actions/emailsettings.php:67 ../actions/smssettings.php:76 #: actions/emailsettings.php:68 actions/smssettings.php:76 #: actions/emailsettings.php:127 actions/smssettings.php:140 +#: actions/emailsettings.php:133 actions/smssettings.php:152 msgid "Incoming email" msgstr "E-mail de recebimento" #: ../actions/emailsettings.php:283 actions/emailsettings.php:301 -#: actions/emailsettings.php:443 +#: actions/emailsettings.php:443 actions/emailsettings.php:450 +#: actions/smssettings.php:518 actions/smssettings.php:519 +#: actions/emailsettings.php:458 actions/smssettings.php:531 msgid "Incoming email address removed." msgstr "O endereço de e-mail de recebimento foi removido." #: ../actions/password.php:69 actions/profilesettings.php:388 -#: actions/passwordsettings.php:153 +#: actions/passwordsettings.php:153 actions/passwordsettings.php:158 +#: actions/passwordsettings.php:164 msgid "Incorrect old password" msgstr "A senha antiga está incorreta" #: ../actions/login.php:67 actions/login.php:67 actions/facebookhome.php:131 -#: actions/login.php:132 +#: actions/login.php:132 actions/facebookhome.php:130 actions/login.php:114 +#: actions/facebookhome.php:129 actions/login.php:116 msgid "Incorrect username or password." msgstr "Nome de usuário e/ou senha incorreto(s)." -#: ../actions/recoverpassword.php:265 +#: ../actions/recoverpassword.php:265 actions/recoverpassword.php:304 +#: actions/recoverpassword.php:322 actions/recoverpassword.php:325 msgid "" "Instructions for recovering your password have been sent to the email " "address registered to your account." @@ -1058,30 +1228,31 @@ msgstr "" "mail informado no seu cadastro." #: ../actions/updateprofile.php:114 actions/updateprofile.php:115 -#: actions/updateprofile.php:118 +#: actions/updateprofile.php:118 actions/updateprofile.php:120 #, php-format msgid "Invalid avatar URL '%s'" msgstr "A URL '%s' para o avatar é inválida" #: ../actions/invite.php:55 actions/invite.php:62 actions/invite.php:70 +#: actions/invite.php:72 #, php-format msgid "Invalid email address: %s" msgstr "Não é um endereço de e-mail válido: %s" #: ../actions/updateprofile.php:98 actions/updateprofile.php:99 -#: actions/updateprofile.php:102 +#: actions/updateprofile.php:102 actions/updateprofile.php:104 #, php-format msgid "Invalid homepage '%s'" msgstr "O site '%s' é inválido" #: ../actions/updateprofile.php:82 actions/updateprofile.php:83 -#: actions/updateprofile.php:86 +#: actions/updateprofile.php:86 actions/updateprofile.php:88 #, php-format msgid "Invalid license URL '%s'" msgstr "A URL '%s' da licença é inválida" #: ../actions/postnotice.php:61 actions/postnotice.php:62 -#: actions/postnotice.php:66 +#: actions/postnotice.php:66 actions/postnotice.php:84 msgid "Invalid notice content" msgstr "O conteúdo da mensagem é inválido" @@ -1096,13 +1267,13 @@ msgid "Invalid notice url" msgstr "A URL da mensagem é inválida" #: ../actions/updateprofile.php:87 actions/updateprofile.php:88 -#: actions/updateprofile.php:91 +#: actions/updateprofile.php:91 actions/updateprofile.php:93 #, php-format msgid "Invalid profile URL '%s'." msgstr "A URL '%s' do perfil é inválida." #: ../actions/remotesubscribe.php:96 actions/remotesubscribe.php:105 -#: actions/remotesubscribe.php:135 +#: actions/remotesubscribe.php:135 actions/remotesubscribe.php:159 msgid "Invalid profile URL (bad format)" msgstr "A URL do perfil é inválida (formato inválido)" @@ -1120,44 +1291,52 @@ msgstr "Tamanho inválido." #: ../actions/register.php:111 actions/finishopenidlogin.php:241 #: actions/register.php:103 actions/register.php:121 #: actions/finishopenidlogin.php:279 actions/register.php:193 -#: actions/register.php:211 +#: actions/register.php:211 actions/finishopenidlogin.php:284 +#: actions/finishopenidlogin.php:307 actions/register.php:230 +#: actions/register.php:251 actions/register.php:237 actions/register.php:258 msgid "Invalid username or password." msgstr "Nome de usuário e/ou senha inválido(s)" #: ../actions/invite.php:79 actions/invite.php:86 actions/invite.php:102 +#: actions/invite.php:104 actions/invite.php:110 msgid "Invitation(s) sent" msgstr "Convite(s) enviado(s)" #: ../actions/invite.php:97 actions/invite.php:104 actions/invite.php:136 +#: actions/invite.php:138 actions/invite.php:144 msgid "Invitation(s) sent to the following people:" msgstr "Convite(s) enviado(s) para as seguintes pessoas:" #: ../lib/util.php:306 lib/util.php:322 lib/facebookaction.php:207 -#: lib/subgroupnav.php:103 +#: lib/subgroupnav.php:103 lib/facebookaction.php:220 lib/action.php:429 +#: lib/facebookaction.php:221 lib/subgroupnav.php:105 lib/action.php:439 msgid "Invite" msgstr "Convidar" #: ../actions/invite.php:123 actions/invite.php:130 actions/invite.php:104 +#: actions/invite.php:106 actions/invite.php:112 msgid "Invite new users" msgstr "Convidar novos usuários" -#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 +#: ../lib/util.php:261 lib/util.php:277 lib/action.php:609 lib/action.php:706 +#: lib/action.php:756 lib/action.php:771 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"Ele funciona sob o software de microblogagem [StatusNet](http://status.net/), " -"versão %s, disponível sob a [GNU Affero General Public License] (http://www." -"fsf.org/licensing/licenses/agpl-3.0.html)." +"Ele funciona sob o software de microblogagem [StatusNet](http://status." +"net/), versão %s, disponível sob a [GNU Affero General Public License] " +"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." #: ../actions/imsettings.php:173 actions/imsettings.php:181 -#: actions/imsettings.php:296 +#: actions/imsettings.php:296 actions/imsettings.php:302 msgid "Jabber ID already belongs to another user." msgstr "Esta ID do Jabber já pertence à outro usuário." #: ../actions/imsettings.php:62 actions/imsettings.php:63 +#: actions/imsettings.php:120 actions/imsettings.php:126 #, php-format msgid "" "Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " @@ -1168,12 +1347,14 @@ msgstr "" "ou no GTalk." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:128 +#: actions/profilesettings.php:128 actions/profilesettings.php:129 +#: actions/profilesettings.php:144 msgid "Language" msgstr "Idioma" #: ../actions/profilesettings.php:113 actions/profilesettings.php:228 -#: actions/profilesettings.php:217 +#: actions/profilesettings.php:217 actions/profilesettings.php:218 +#: actions/profilesettings.php:234 msgid "Language is too long (max 50 chars)." msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)." @@ -1182,7 +1363,15 @@ msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)." #: actions/profilesettings.php:117 actions/register.php:408 #: actions/showgroup.php:244 actions/showstream.php:271 #: actions/tagother.php:113 lib/groupeditform.php:156 lib/grouplist.php:126 -#: lib/profilelist.php:125 +#: lib/profilelist.php:125 actions/showgroup.php:246 +#: actions/showstream.php:264 actions/tagother.php:112 lib/profilelist.php:123 +#: actions/register.php:454 actions/showgroup.php:251 +#: actions/showstream.php:229 actions/userauthorization.php:128 +#: lib/groupeditform.php:171 lib/profilelist.php:185 +#: actions/profilesettings.php:132 actions/register.php:464 +#: actions/showgroup.php:256 actions/showstream.php:282 +#: actions/userauthorization.php:158 lib/groupeditform.php:177 +#: lib/profilelist.php:218 msgid "Location" msgstr "Localização" @@ -1191,7 +1380,12 @@ msgstr "Localização" #: actions/register.php:92 actions/updateprofile.php:109 #: actions/editgroup.php:201 actions/newgroup.php:152 #: actions/profilesettings.php:208 actions/register.php:177 -#: actions/updateprofile.php:112 +#: actions/updateprofile.php:112 actions/updateprofile.php:114 +#: actions/editgroup.php:203 actions/newgroup.php:153 +#: actions/profilesettings.php:209 actions/register.php:214 +#: actions/apigroupcreate.php:272 actions/editgroup.php:204 +#: actions/newgroup.php:148 actions/profilesettings.php:225 +#: actions/register.php:221 msgid "Location is too long (max 255 chars)." msgstr "A localização é muito extensa (máx. 255 caracteres)." @@ -1200,18 +1394,22 @@ msgstr "A localização é muito extensa (máx. 255 caracteres)." #: actions/login.php:106 actions/openidlogin.php:77 lib/util.php:326 #: actions/facebooklogin.php:93 actions/login.php:186 actions/login.php:239 #: actions/openidlogin.php:112 lib/action.php:335 lib/facebookaction.php:288 -#: lib/facebookaction.php:315 lib/logingroupnav.php:75 +#: lib/facebookaction.php:315 lib/logingroupnav.php:75 actions/login.php:169 +#: actions/login.php:222 actions/openidlogin.php:121 lib/action.php:412 +#: lib/facebookaction.php:293 lib/facebookaction.php:319 lib/action.php:443 +#: lib/facebookaction.php:295 lib/facebookaction.php:321 actions/login.php:177 +#: actions/login.php:230 lib/action.php:453 lib/logingroupnav.php:79 #, php-format msgid "Login" msgstr "Logar" #: ../actions/openidlogin.php:44 actions/openidlogin.php:52 -#: actions/openidlogin.php:62 +#: actions/openidlogin.php:62 actions/openidlogin.php:70 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." msgstr "Logar-se com uma conta [OpenID](%%doc.openid%%)." -#: ../actions/login.php:126 +#: ../actions/login.php:126 actions/login.php:251 #, php-format msgid "" "Login with your username and password. Don't have a username yet? [Register]" @@ -1219,25 +1417,29 @@ msgid "" "%). " msgstr "" "Logar-se com seu nome de usuário e senha. Não tem um nome de usuário ainda? " -"[Registre](%%action.register%%) uma nova conta, ou use uma " -"[OpenID](%%action.openidlogin%%)." +"[Registre](%%action.register%%) uma nova conta, ou use uma [OpenID](%%action." +"openidlogin%%)." -#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 +#: ../lib/util.php:308 lib/util.php:324 lib/action.php:332 lib/action.php:409 +#: lib/action.php:435 lib/action.php:445 msgid "Logout" msgstr "Sair" #: ../actions/register.php:166 actions/register.php:180 -#: actions/register.php:393 +#: actions/register.php:393 actions/register.php:439 actions/register.php:443 msgid "Longer name, preferably your \"real\" name" msgstr "Nome completo (nome e sobrenome), de preferência seu nome \"real\"" #: ../actions/login.php:110 actions/login.php:110 actions/login.php:245 -#: lib/facebookaction.php:320 +#: lib/facebookaction.php:320 actions/login.php:228 lib/facebookaction.php:325 +#: lib/facebookaction.php:327 actions/login.php:236 msgid "Lost or forgotten password?" msgstr "Perdeu ou esqueceu sua senha?" #: ../actions/emailsettings.php:80 ../actions/smssettings.php:89 #: actions/emailsettings.php:81 actions/smssettings.php:89 +#: actions/emailsettings.php:139 actions/smssettings.php:150 +#: actions/emailsettings.php:145 actions/smssettings.php:162 msgid "Make a new email address for posting to; cancels the old one." msgstr "Cria um novo endereço de e-mail para publicar e cancela o antigo." @@ -1248,16 +1450,18 @@ msgid "Manage how you get email from %%site.name%%." msgstr "Configure o recebimento de e-mails do %%site.name%%." #: ../actions/showstream.php:300 actions/showstream.php:315 -#: actions/showstream.php:480 +#: actions/showstream.php:480 lib/profileaction.php:182 msgid "Member since" msgstr "Membro desde" #: ../actions/userrss.php:70 actions/userrss.php:67 actions/userrss.php:72 +#: actions/userrss.php:93 #, php-format msgid "Microblog by %s" msgstr "Microblog por %s" -#: ../actions/smssettings.php:304 +#: ../actions/smssettings.php:304 actions/smssettings.php:464 +#: actions/smssettings.php:476 #, php-format msgid "" "Mobile carrier for your phone. If you know a carrier that accepts SMS over " @@ -1270,43 +1474,51 @@ msgstr "" #: ../actions/finishopenidlogin.php:79 ../actions/register.php:188 #: actions/finishopenidlogin.php:85 actions/register.php:202 #: actions/finishopenidlogin.php:107 actions/register.php:429 +#: actions/register.php:430 actions/finishopenidlogin.php:106 +#: actions/register.php:477 actions/register.php:487 msgid "My text and files are available under " msgstr "Meus textos e arquivos estão disponíveis sob " #: ../actions/emailsettings.php:82 ../actions/smssettings.php:91 #: actions/emailsettings.php:83 actions/smssettings.php:91 #: actions/emailsettings.php:142 actions/smssettings.php:152 +#: actions/emailsettings.php:148 actions/smssettings.php:164 msgid "New" msgstr "Novo" -#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 +#: ../lib/mail.php:144 lib/mail.php:144 lib/mail.php:286 lib/mail.php:285 #, php-format msgid "New email address for posting to %s" msgstr "Novo endereço de e-mail para postar para %s" #: ../actions/emailsettings.php:297 actions/emailsettings.php:315 -#: actions/emailsettings.php:465 +#: actions/emailsettings.php:465 actions/emailsettings.php:472 +#: actions/smssettings.php:542 actions/smssettings.php:543 +#: actions/emailsettings.php:480 actions/smssettings.php:555 msgid "New incoming email address added." msgstr "" "Foi adicionado um novo endereço de e-mail para recebimento de mensagens." #: ../actions/finishopenidlogin.php:71 actions/finishopenidlogin.php:77 -#: actions/finishopenidlogin.php:99 +#: actions/finishopenidlogin.php:99 actions/finishopenidlogin.php:98 msgid "New nickname" msgstr "Novo apelido" #: ../actions/newnotice.php:87 actions/newnotice.php:96 -#: actions/newnotice.php:68 +#: actions/newnotice.php:68 actions/newnotice.php:69 msgid "New notice" msgstr "Nova mensagem" #: ../actions/password.php:41 ../actions/recoverpassword.php:179 #: actions/profilesettings.php:180 actions/recoverpassword.php:185 #: actions/passwordsettings.php:101 actions/recoverpassword.php:219 +#: actions/recoverpassword.php:232 actions/passwordsettings.php:107 +#: actions/recoverpassword.php:235 msgid "New password" msgstr "Nova senha" -#: ../actions/recoverpassword.php:314 +#: ../actions/recoverpassword.php:314 actions/recoverpassword.php:361 +#: actions/recoverpassword.php:379 actions/recoverpassword.php:382 msgid "New password successfully saved. You are now logged in." msgstr "" "A nova senha foi salva com sucesso. A partir de agora você já está logado." @@ -1317,7 +1529,13 @@ msgstr "" #: actions/login.php:228 actions/profilesettings.php:98 #: actions/register.php:367 actions/showgroup.php:224 #: actions/showstream.php:251 actions/tagother.php:95 -#: lib/facebookaction.php:308 lib/groupeditform.php:137 +#: lib/facebookaction.php:308 lib/groupeditform.php:137 actions/login.php:211 +#: actions/showgroup.php:226 actions/showstream.php:244 +#: actions/tagother.php:94 lib/facebookaction.php:312 actions/register.php:413 +#: actions/showgroup.php:231 actions/showstream.php:209 +#: lib/facebookaction.php:314 lib/groupeditform.php:152 actions/login.php:219 +#: actions/profilesettings.php:106 actions/register.php:417 +#: actions/showgroup.php:236 actions/showstream.php:249 msgid "Nickname" msgstr "Apelido" @@ -1326,7 +1544,12 @@ msgstr "Apelido" #: actions/profilesettings.php:225 actions/register.php:76 #: actions/editgroup.php:183 actions/finishopenidlogin.php:215 #: actions/newgroup.php:134 actions/profilesettings.php:214 -#: actions/register.php:159 +#: actions/register.php:159 actions/editgroup.php:185 +#: actions/finishopenidlogin.php:231 actions/newgroup.php:135 +#: actions/profilesettings.php:215 actions/register.php:196 +#: actions/apigroupcreate.php:221 actions/editgroup.php:186 +#: actions/newgroup.php:130 actions/profilesettings.php:231 +#: actions/register.php:202 msgid "Nickname already in use. Try another one." msgstr "Este apelido já está em uso. Tente outro." @@ -1335,49 +1558,60 @@ msgstr "Este apelido já está em uso. Tente outro." #: actions/finishopenidlogin.php:171 actions/profilesettings.php:203 #: actions/register.php:74 actions/updateprofile.php:78 #: actions/finishopenidlogin.php:205 actions/profilesettings.php:192 -#: actions/updateprofile.php:81 +#: actions/updateprofile.php:81 actions/editgroup.php:179 +#: actions/newgroup.php:130 actions/register.php:156 +#: actions/updateprofile.php:83 actions/editgroup.php:181 +#: actions/finishopenidlogin.php:221 actions/newgroup.php:131 +#: actions/profilesettings.php:193 actions/register.php:193 +#: actions/apigroupcreate.php:212 actions/editgroup.php:182 +#: actions/newgroup.php:126 actions/profilesettings.php:208 +#: actions/register.php:199 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" "O apelido deve conter apenas letras minúsculas e/ou números e não pode ter " "acentuação e espaços." #: ../actions/finishopenidlogin.php:170 actions/finishopenidlogin.php:176 -#: actions/finishopenidlogin.php:210 +#: actions/finishopenidlogin.php:210 actions/finishopenidlogin.php:226 msgid "Nickname not allowed." msgstr "Este apelido não é permitido." #: ../actions/remotesubscribe.php:72 actions/remotesubscribe.php:81 -#: actions/remotesubscribe.php:106 +#: actions/remotesubscribe.php:106 actions/remotesubscribe.php:130 msgid "Nickname of the user you want to follow" msgstr "Apelido do usuário que você quer seguir" #: ../actions/recoverpassword.php:162 actions/recoverpassword.php:167 -#: actions/recoverpassword.php:186 +#: actions/recoverpassword.php:186 actions/recoverpassword.php:191 msgid "Nickname or email" msgstr "Apelido ou e-mail" #: ../actions/deletenotice.php:59 actions/deletenotice.php:60 #: actions/block.php:147 actions/deletenotice.php:118 +#: actions/deletenotice.php:116 actions/block.php:149 +#: actions/deletenotice.php:115 actions/groupblock.php:176 +#: actions/deletenotice.php:145 msgid "No" msgstr "Não" #: ../actions/imsettings.php:156 actions/imsettings.php:164 -#: actions/imsettings.php:279 +#: actions/imsettings.php:279 actions/imsettings.php:285 msgid "No Jabber ID." msgstr "Nenhuma ID de Jabber." #: ../actions/userauthorization.php:129 actions/userauthorization.php:136 -#: actions/userauthorization.php:153 +#: actions/userauthorization.php:153 actions/userauthorization.php:192 +#: actions/userauthorization.php:225 msgid "No authorization request!" msgstr "Nenhum pedido de autorização!" #: ../actions/smssettings.php:181 actions/smssettings.php:189 -#: actions/smssettings.php:299 +#: actions/smssettings.php:299 actions/smssettings.php:311 msgid "No carrier selected." msgstr "Não foi selecionada nenhuma operadora." #: ../actions/smssettings.php:316 actions/smssettings.php:324 -#: actions/smssettings.php:486 +#: actions/smssettings.php:486 actions/smssettings.php:498 msgid "No code entered" msgstr "Não foi digitado nenhum código" @@ -1389,11 +1623,15 @@ msgstr "Nenhum código de confirmação." #: ../actions/newnotice.php:44 actions/newmessage.php:53 #: actions/newnotice.php:44 classes/Command.php:197 actions/newmessage.php:109 #: actions/newnotice.php:126 classes/Command.php:223 +#: actions/newmessage.php:142 actions/newnotice.php:131 lib/command.php:223 +#: actions/newnotice.php:162 lib/command.php:216 actions/newmessage.php:144 +#: actions/newnotice.php:136 lib/command.php:351 lib/command.php:424 msgid "No content!" msgstr "Nenhum conteúdo!" #: ../actions/emailsettings.php:174 actions/emailsettings.php:192 -#: actions/emailsettings.php:304 +#: actions/emailsettings.php:304 actions/emailsettings.php:311 +#: actions/emailsettings.php:319 msgid "No email address." msgstr "Nenhum endereço de e-mail." @@ -1402,7 +1640,9 @@ msgid "No id." msgstr "Nenhuma ID." #: ../actions/emailsettings.php:271 actions/emailsettings.php:289 -#: actions/emailsettings.php:430 +#: actions/emailsettings.php:430 actions/emailsettings.php:437 +#: actions/smssettings.php:505 actions/smssettings.php:506 +#: actions/emailsettings.php:445 actions/smssettings.php:518 msgid "No incoming email address." msgstr "Nenhum endereço de e-mail para recebimentos." @@ -1413,6 +1653,7 @@ msgstr "Nenhum apelido fornecido pelo servidor remoto." #: ../actions/avatarbynickname.php:27 actions/avatarbynickname.php:27 #: actions/avatarbynickname.php:59 actions/leavegroup.php:81 +#: actions/leavegroup.php:76 msgid "No nickname." msgstr "Nenhum apelido." @@ -1420,12 +1661,14 @@ msgstr "Nenhum apelido." #: ../actions/smssettings.php:229 actions/emailsettings.php:240 #: actions/imsettings.php:214 actions/smssettings.php:237 #: actions/emailsettings.php:363 actions/imsettings.php:345 -#: actions/smssettings.php:358 +#: actions/smssettings.php:358 actions/emailsettings.php:370 +#: actions/emailsettings.php:378 actions/imsettings.php:351 +#: actions/smssettings.php:370 msgid "No pending confirmation to cancel." msgstr "Nenhuma confirmação pendente para cancelar." #: ../actions/smssettings.php:176 actions/smssettings.php:184 -#: actions/smssettings.php:294 +#: actions/smssettings.php:294 actions/smssettings.php:306 msgid "No phone number." msgstr "Nenhum número de telefone." @@ -1435,7 +1678,8 @@ msgid "No profile URL returned by server." msgstr "Nenhuma URL de perfil retornada pelo servidor." #: ../actions/recoverpassword.php:226 actions/recoverpassword.php:232 -#: actions/recoverpassword.php:266 +#: actions/recoverpassword.php:266 actions/recoverpassword.php:284 +#: actions/recoverpassword.php:287 msgid "No registered email address for that user." msgstr "Nenhum endereço de e-mail registrado para esse usuário." @@ -1447,7 +1691,7 @@ msgstr "Não foi encontrada nenhuma requisição!" #: ../actions/noticesearch.php:64 ../actions/peoplesearch.php:64 #: actions/noticesearch.php:69 actions/peoplesearch.php:69 #: actions/groupsearch.php:81 actions/noticesearch.php:104 -#: actions/peoplesearch.php:85 +#: actions/peoplesearch.php:85 actions/noticesearch.php:117 msgid "No results" msgstr "Nenhum resultado" @@ -1458,12 +1702,16 @@ msgstr "Sem tamanho definido." #: ../actions/twitapistatuses.php:595 actions/twitapifavorites.php:136 #: actions/twitapistatuses.php:520 actions/twitapifavorites.php:112 -#: actions/twitapistatuses.php:446 +#: actions/twitapistatuses.php:446 actions/twitapifavorites.php:118 +#: actions/twitapistatuses.php:470 actions/twitapifavorites.php:169 +#: actions/twitapistatuses.php:426 actions/apifavoritecreate.php:108 +#: actions/apifavoritedestroy.php:109 actions/apistatusesdestroy.php:113 msgid "No status found with that ID." msgstr "Não foi encontrado nenhum status com esse ID." #: ../actions/twitapistatuses.php:555 actions/twitapistatuses.php:478 -#: actions/twitapistatuses.php:418 +#: actions/twitapistatuses.php:418 actions/twitapistatuses.php:442 +#: actions/twitapistatuses.php:399 actions/apistatusesshow.php:144 msgid "No status with that ID found." msgstr "Não foi encontrado nenhum status com esse ID." @@ -1473,13 +1721,15 @@ msgid "No such OpenID." msgstr "Essa OpenID não existe." #: ../actions/doc.php:29 actions/doc.php:29 actions/doc.php:64 +#: actions/doc.php:69 msgid "No such document." msgstr "Esse documento não existe." #: ../actions/shownotice.php:32 ../actions/shownotice.php:83 #: ../lib/deleteaction.php:30 actions/shownotice.php:32 #: actions/shownotice.php:83 lib/deleteaction.php:30 actions/shownotice.php:87 -#: lib/deleteaction.php:51 +#: lib/deleteaction.php:51 actions/deletenotice.php:52 +#: actions/shownotice.php:92 msgid "No such notice." msgstr "Essa mensagem não existe." @@ -1517,12 +1767,22 @@ msgstr "Essa assinatura não existe." #: actions/usergroups.php:92 actions/userrss.php:38 actions/xrds.php:73 #: classes/Command.php:140 classes/Command.php:185 classes/Command.php:234 #: classes/Command.php:271 lib/galleryaction.php:60 lib/mailbox.php:82 -#: lib/subs.php:34 lib/subs.php:109 +#: lib/subs.php:34 lib/subs.php:109 actions/all.php:56 actions/allrss.php:68 +#: actions/favoritesrss.php:74 lib/command.php:140 lib/command.php:185 +#: lib/command.php:234 lib/command.php:271 lib/mailbox.php:84 +#: actions/all.php:38 actions/foaf.php:58 actions/replies.php:72 +#: actions/usergroups.php:91 actions/userrss.php:39 lib/command.php:133 +#: lib/command.php:178 lib/command.php:227 lib/command.php:264 +#: lib/galleryaction.php:59 lib/profileaction.php:77 lib/subs.php:112 +#: actions/all.php:74 actions/remotesubscribe.php:145 actions/xrds.php:71 +#: lib/command.php:163 lib/command.php:311 lib/command.php:364 +#: lib/command.php:411 lib/command.php:466 msgid "No such user." msgstr "Usuário não encontrado." #: ../actions/recoverpassword.php:211 actions/recoverpassword.php:217 -#: actions/recoverpassword.php:251 +#: actions/recoverpassword.php:251 actions/recoverpassword.php:269 +#: actions/recoverpassword.php:272 msgid "No user with that email address or username." msgstr "" "Não foi encontrado nenhum usuário com essa identificação ou endereço de " @@ -1538,32 +1798,38 @@ msgid "Not a recovery code." msgstr "Não é um código de recuperação" #: ../scripts/maildaemon.php:50 scripts/maildaemon.php:50 -#: scripts/maildaemon.php:53 +#: scripts/maildaemon.php:53 scripts/maildaemon.php:52 msgid "Not a registered user." msgstr "Não é um usuário registrado." #: ../lib/twitterapi.php:226 ../lib/twitterapi.php:247 #: ../lib/twitterapi.php:332 lib/twitterapi.php:391 lib/twitterapi.php:418 #: lib/twitterapi.php:502 lib/twitterapi.php:448 lib/twitterapi.php:476 -#: lib/twitterapi.php:566 +#: lib/twitterapi.php:566 lib/twitterapi.php:483 lib/twitterapi.php:511 +#: lib/twitterapi.php:601 lib/twitterapi.php:620 lib/twitterapi.php:648 +#: lib/twitterapi.php:741 actions/oembed.php:181 actions/oembed.php:200 +#: lib/api.php:954 lib/api.php:982 lib/api.php:1092 msgid "Not a supported data format." msgstr "Formato de dados não suportado." #: ../actions/imsettings.php:167 actions/imsettings.php:175 -#: actions/imsettings.php:290 +#: actions/imsettings.php:290 actions/imsettings.php:296 msgid "Not a valid Jabber ID" msgstr "Não é uma ID de Jabber válida" #: ../lib/openid.php:131 lib/openid.php:131 lib/openid.php:140 +#: lib/openid.php:143 msgid "Not a valid OpenID." msgstr "Não é uma OpenID válida." #: ../actions/emailsettings.php:185 actions/emailsettings.php:203 -#: actions/emailsettings.php:315 +#: actions/emailsettings.php:315 actions/emailsettings.php:322 +#: actions/emailsettings.php:330 msgid "Not a valid email address" msgstr "Não é um endereço de e-mail válido" #: ../actions/register.php:63 actions/register.php:70 actions/register.php:152 +#: actions/register.php:189 actions/register.php:195 msgid "Not a valid email address." msgstr "Não é um endereço de e-mail válido." @@ -1571,6 +1837,11 @@ msgstr "Não é um endereço de e-mail válido." #: actions/profilesettings.php:206 actions/register.php:78 #: actions/editgroup.php:186 actions/newgroup.php:137 #: actions/profilesettings.php:195 actions/register.php:161 +#: actions/editgroup.php:188 actions/newgroup.php:138 +#: actions/profilesettings.php:196 actions/register.php:198 +#: actions/apigroupcreate.php:228 actions/editgroup.php:189 +#: actions/newgroup.php:133 actions/profilesettings.php:211 +#: actions/register.php:204 msgid "Not a valid nickname." msgstr "Não é um apelido válido." @@ -1590,7 +1861,8 @@ msgid "Not a valid profile URL (no YADIS document)." msgstr "Não é uma URL de perfil válida (nenhum documento YADIS)." #: ../actions/avatar.php:95 actions/profilesettings.php:332 -#: lib/imagefile.php:87 +#: lib/imagefile.php:87 lib/imagefile.php:90 lib/imagefile.php:91 +#: lib/imagefile.php:96 msgid "Not an image or corrupt file." msgstr "Imagem inválida ou arquivo corrompido." @@ -1601,11 +1873,13 @@ msgstr "Não autorizado." #: ../actions/finishremotesubscribe.php:38 #: actions/finishremotesubscribe.php:38 actions/finishremotesubscribe.php:40 +#: actions/finishremotesubscribe.php:69 msgid "Not expecting this response!" msgstr "Não esperava por esta resposta!" #: ../actions/twitapistatuses.php:422 actions/twitapistatuses.php:361 -#: actions/twitapistatuses.php:309 +#: actions/twitapistatuses.php:309 actions/twitapistatuses.php:327 +#: actions/twitapistatuses.php:284 actions/apistatusesupdate.php:186 msgid "Not found" msgstr "Não encontrado" @@ -1621,11 +1895,15 @@ msgstr "Não encontrado" #: actions/newmessage.php:83 actions/newnotice.php:90 actions/nudge.php:63 #: actions/subedit.php:31 actions/subscribe.php:30 actions/unblock.php:60 #: actions/unsubscribe.php:27 lib/deleteaction.php:66 -#: lib/settingsaction.php:72 +#: lib/settingsaction.php:72 actions/newmessage.php:87 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 +#: actions/makeadmin.php:61 actions/newnotice.php:88 +#: actions/deletenotice.php:67 actions/logout.php:69 actions/newnotice.php:89 +#: actions/unsubscribe.php:52 msgid "Not logged in." msgstr "Você não está logado." -#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 +#: ../lib/subs.php:91 lib/subs.php:104 lib/subs.php:122 lib/subs.php:124 msgid "Not subscribed!." msgstr "Não é seguido!" @@ -1642,39 +1920,44 @@ msgid "Notice feed for %s" msgstr "Feed de mensagens de %s" #: ../actions/shownotice.php:39 actions/shownotice.php:39 -#: actions/shownotice.php:94 +#: actions/shownotice.php:94 actions/oembed.php:79 actions/shownotice.php:100 msgid "Notice has no profile" msgstr "A mensagem não está associada a nenhum perfil" #: ../actions/showstream.php:316 actions/showstream.php:331 #: actions/showstream.php:504 lib/facebookaction.php:477 lib/mailbox.php:116 -#: lib/noticelist.php:87 +#: lib/noticelist.php:87 lib/facebookaction.php:581 lib/mailbox.php:118 +#: actions/conversation.php:149 lib/facebookaction.php:572 +#: lib/profileaction.php:206 actions/conversation.php:154 msgid "Notices" msgstr "Mensagens" #: ../actions/tag.php:35 ../actions/tag.php:81 actions/tag.php:35 -#: actions/tag.php:81 actions/tag.php:41 +#: actions/tag.php:81 actions/tag.php:41 actions/tag.php:49 actions/tag.php:57 +#: actions/twitapitags.php:69 actions/apitimelinetag.php:101 +#: actions/tag.php:66 #, php-format msgid "Notices tagged with %s" msgstr "Mensagens etiquetadas com %s" #: ../actions/password.php:39 actions/profilesettings.php:178 -#: actions/passwordsettings.php:97 +#: actions/passwordsettings.php:97 actions/passwordsettings.php:103 msgid "Old password" msgstr "Senha antiga" #: ../lib/settingsaction.php:96 ../lib/util.php:314 lib/settingsaction.php:90 #: lib/util.php:330 lib/accountsettingsaction.php:116 lib/action.php:341 -#: lib/logingroupnav.php:81 +#: lib/logingroupnav.php:81 lib/action.php:418 msgid "OpenID" msgstr "OpenID" #: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66 -#: actions/finishopenidlogin.php:73 +#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72 msgid "OpenID Account Setup" msgstr "Configuração da conta OpenID" #: ../lib/openid.php:180 lib/openid.php:180 lib/openid.php:266 +#: lib/openid.php:269 msgid "OpenID Auto-Submit" msgstr "Submissão automática da OpenID" @@ -1682,29 +1965,34 @@ msgstr "Submissão automática da OpenID" #: ../actions/openidlogin.php:60 actions/finishaddopenid.php:99 #: actions/finishopenidlogin.php:146 actions/openidlogin.php:68 #: actions/finishaddopenid.php:170 actions/openidlogin.php:80 +#: actions/openidlogin.php:89 msgid "OpenID Login" msgstr "Logar-se via OpenID" #: ../actions/openidlogin.php:65 ../actions/openidsettings.php:49 #: actions/openidlogin.php:74 actions/openidsettings.php:50 #: actions/openidlogin.php:102 actions/openidsettings.php:101 +#: actions/openidlogin.php:111 msgid "OpenID URL" msgstr "URL da OpenID" #: ../actions/finishaddopenid.php:42 ../actions/finishopenidlogin.php:103 #: actions/finishaddopenid.php:42 actions/finishopenidlogin.php:109 #: actions/finishaddopenid.php:88 actions/finishopenidlogin.php:130 +#: actions/finishopenidlogin.php:129 msgid "OpenID authentication cancelled." msgstr "A autenticação pela OpenID foi cancelada." #: ../actions/finishaddopenid.php:46 ../actions/finishopenidlogin.php:107 #: actions/finishaddopenid.php:46 actions/finishopenidlogin.php:113 #: actions/finishaddopenid.php:92 actions/finishopenidlogin.php:134 +#: actions/finishopenidlogin.php:133 #, php-format msgid "OpenID authentication failed: %s" msgstr "Não foi possível logar via OpenID: %s" #: ../lib/openid.php:133 lib/openid.php:133 lib/openid.php:142 +#: lib/openid.php:145 #, php-format msgid "OpenID failure: %s" msgstr "Falha na OpenID: %s" @@ -1720,11 +2008,12 @@ msgid "OpenID settings" msgstr "Configurações da OpenID" #: ../actions/invite.php:135 actions/invite.php:143 actions/invite.php:180 +#: actions/invite.php:186 actions/invite.php:188 actions/invite.php:194 msgid "Optionally add a personal message to the invitation." msgstr "Você pode, opcionalmente, adicionar uma mensagem pessoal ao convite." #: ../actions/avatar.php:84 actions/profilesettings.php:321 -#: lib/imagefile.php:75 +#: lib/imagefile.php:75 lib/imagefile.php:79 lib/imagefile.php:80 msgid "Partial upload." msgstr "Envio parcial." @@ -1734,34 +2023,46 @@ msgstr "Envio parcial." #: actions/register.php:167 actions/finishopenidlogin.php:118 #: actions/login.php:231 actions/register.php:372 #: lib/accountsettingsaction.php:110 lib/facebookaction.php:311 +#: actions/login.php:214 lib/facebookaction.php:315 +#: actions/finishopenidlogin.php:117 actions/register.php:418 +#: lib/facebookaction.php:317 actions/login.php:222 actions/register.php:422 +#: lib/accountsettingsaction.php:114 msgid "Password" msgstr "Senha" #: ../actions/recoverpassword.php:288 actions/recoverpassword.php:301 -#: actions/recoverpassword.php:335 +#: actions/recoverpassword.php:335 actions/recoverpassword.php:353 +#: actions/recoverpassword.php:356 msgid "Password and confirmation do not match." msgstr "A senha e a confirmação não coincidem." #: ../actions/recoverpassword.php:284 actions/recoverpassword.php:297 -#: actions/recoverpassword.php:331 +#: actions/recoverpassword.php:331 actions/recoverpassword.php:349 +#: actions/recoverpassword.php:352 msgid "Password must be 6 chars or more." msgstr "A senha deve ter 6 caracteres ou mais." #: ../actions/recoverpassword.php:261 ../actions/recoverpassword.php:263 #: actions/recoverpassword.php:267 actions/recoverpassword.php:269 #: actions/recoverpassword.php:199 actions/recoverpassword.php:301 +#: actions/recoverpassword.php:207 actions/recoverpassword.php:319 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 msgid "Password recovery requested" msgstr "Foi solicitada a recuperação da senha" #: ../actions/password.php:89 ../actions/recoverpassword.php:313 #: actions/profilesettings.php:408 actions/recoverpassword.php:326 #: actions/passwordsettings.php:173 actions/recoverpassword.php:200 +#: actions/passwordsettings.php:178 actions/recoverpassword.php:208 +#: actions/passwordsettings.php:184 actions/recoverpassword.php:211 msgid "Password saved." msgstr "A senha foi salva." #: ../actions/password.php:61 ../actions/register.php:88 #: actions/profilesettings.php:380 actions/register.php:98 #: actions/passwordsettings.php:145 actions/register.php:183 +#: actions/passwordsettings.php:150 actions/register.php:220 +#: actions/passwordsettings.php:156 actions/register.php:227 msgid "Passwords don't match." msgstr "As senhas não coincidem." @@ -1781,14 +2082,17 @@ msgid "People search" msgstr "Procurar pessoas" #: ../lib/stream.php:50 lib/personal.php:50 lib/personalgroupnav.php:98 +#: lib/personalgroupnav.php:99 msgid "Personal" msgstr "Pessoal" #: ../actions/invite.php:133 actions/invite.php:141 actions/invite.php:178 +#: actions/invite.php:184 actions/invite.php:186 actions/invite.php:192 msgid "Personal message" msgstr "Mensagem pessoal" #: ../actions/smssettings.php:69 actions/smssettings.php:69 +#: actions/smssettings.php:128 actions/smssettings.php:140 msgid "Phone number, no punctuation or spaces, with area code" msgstr "Número de telefone, sem pontuação ou espaços, com código de área" @@ -1803,7 +2107,7 @@ msgstr "" "alguém, clique em \"Cancelar\"." #: ../actions/imsettings.php:73 actions/imsettings.php:74 -#: actions/imsettings.php:142 +#: actions/imsettings.php:142 actions/imsettings.php:148 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Publicar uma mensagem quando eu mudar de status no Jabber/GTalk." @@ -1812,7 +2116,9 @@ msgstr "Publicar uma mensagem quando eu mudar de status no Jabber/GTalk." #: actions/imsettings.php:68 actions/smssettings.php:94 #: actions/twittersettings.php:70 actions/emailsettings.php:147 #: actions/imsettings.php:133 actions/smssettings.php:157 -#: actions/twittersettings.php:134 +#: actions/twittersettings.php:134 actions/twittersettings.php:137 +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 msgid "Preferences" msgstr "Preferências" @@ -1821,42 +2127,52 @@ msgstr "Preferências" #: actions/imsettings.php:152 actions/smssettings.php:171 #: actions/emailsettings.php:286 actions/imsettings.php:258 #: actions/othersettings.php:168 actions/smssettings.php:272 +#: actions/emailsettings.php:293 actions/othersettings.php:173 +#: actions/emailsettings.php:301 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." msgstr "As preferências foram salvas." #: ../actions/profilesettings.php:57 actions/profilesettings.php:90 -#: actions/profilesettings.php:129 +#: actions/profilesettings.php:129 actions/profilesettings.php:130 +#: actions/profilesettings.php:145 msgid "Preferred language" msgstr "Idioma preferencial" -#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 +#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665 +#: lib/action.php:715 lib/action.php:730 msgid "Privacy" msgstr "Privacidade" #: ../classes/Notice.php:95 ../classes/Notice.php:106 classes/Notice.php:109 #: classes/Notice.php:119 classes/Notice.php:145 classes/Notice.php:155 +#: classes/Notice.php:178 classes/Notice.php:188 classes/Notice.php:206 +#: classes/Notice.php:216 classes/Notice.php:232 classes/Notice.php:268 +#: classes/Notice.php:293 msgid "Problem saving notice." msgstr "Problema ao salvar a mensagem." #: ../lib/settingsaction.php:84 ../lib/stream.php:60 lib/personal.php:60 #: lib/settingsaction.php:84 lib/accountsettingsaction.php:104 -#: lib/personalgroupnav.php:108 +#: lib/personalgroupnav.php:108 lib/personalgroupnav.php:109 +#: lib/accountsettingsaction.php:108 msgid "Profile" msgstr "Perfil" #: ../actions/remotesubscribe.php:73 actions/remotesubscribe.php:82 -#: actions/remotesubscribe.php:109 +#: actions/remotesubscribe.php:109 actions/remotesubscribe.php:133 msgid "Profile URL" msgstr "URL do Perfil" #: ../actions/profilesettings.php:34 actions/profilesettings.php:32 -#: actions/profilesettings.php:58 +#: actions/profilesettings.php:58 actions/profilesettings.php:60 msgid "Profile settings" msgstr "Configurações do perfil" #: ../actions/postnotice.php:51 ../actions/updateprofile.php:52 #: actions/postnotice.php:52 actions/updateprofile.php:53 #: actions/postnotice.php:55 actions/updateprofile.php:56 +#: actions/updateprofile.php:58 msgid "Profile unknown" msgstr "Perfil desconhecido" @@ -1866,17 +2182,19 @@ msgstr "Feed de mensagens públicas" # Just for me. #: ../actions/public.php:33 actions/public.php:33 actions/public.php:109 -#: lib/publicgroupnav.php:77 +#: lib/publicgroupnav.php:77 actions/public.php:112 lib/publicgroupnav.php:79 +#: actions/public.php:120 actions/public.php:131 msgid "Public timeline" msgstr "Mensagens públicas" #: ../actions/imsettings.php:79 actions/imsettings.php:80 -#: actions/imsettings.php:153 +#: actions/imsettings.php:153 actions/imsettings.php:159 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publique um MicroID para meu endereço de Jabber/Gtalk." #: ../actions/emailsettings.php:94 actions/emailsettings.php:101 -#: actions/emailsettings.php:178 +#: actions/emailsettings.php:178 actions/emailsettings.php:183 +#: actions/emailsettings.php:191 msgid "Publish a MicroID for my email address." msgstr "Publique um MicroID para meu endereço de e-mail." @@ -1886,12 +2204,14 @@ msgid "Recent Tags" msgstr "Tags recentes" #: ../actions/recoverpassword.php:166 actions/recoverpassword.php:171 -#: actions/recoverpassword.php:190 +#: actions/recoverpassword.php:190 actions/recoverpassword.php:197 +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 msgid "Recover" msgstr "Recuperar" #: ../actions/recoverpassword.php:156 actions/recoverpassword.php:161 -#: actions/recoverpassword.php:198 +#: actions/recoverpassword.php:198 actions/recoverpassword.php:206 +#: actions/recoverpassword.php:209 msgid "Recover password" msgstr "Recuperar a senha" @@ -1904,37 +2224,45 @@ msgstr "Código de recuperação para usuário desconhecido." #: actions/register.php:152 actions/register.php:207 lib/util.php:328 #: actions/register.php:69 actions/register.php:436 lib/action.php:338 #: lib/facebookaction.php:277 lib/logingroupnav.php:78 +#: actions/register.php:438 lib/action.php:415 lib/facebookaction.php:279 +#: actions/register.php:108 actions/register.php:486 lib/action.php:440 +#: lib/facebookaction.php:281 actions/register.php:496 lib/action.php:450 +#: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrar" #: ../actions/register.php:28 actions/register.php:28 #: actions/finishopenidlogin.php:196 actions/register.php:90 +#: actions/finishopenidlogin.php:195 actions/finishopenidlogin.php:204 +#: actions/register.php:129 msgid "Registration not allowed." msgstr "Não é permitido o registro." #: ../actions/register.php:200 actions/register.php:214 -#: actions/register.php:67 +#: actions/register.php:67 actions/register.php:106 msgid "Registration successful" msgstr "Registro realizado com sucesso" #: ../actions/userauthorization.php:120 actions/userauthorization.php:127 -#: actions/userauthorization.php:144 +#: actions/userauthorization.php:144 actions/userauthorization.php:179 +#: actions/userauthorization.php:211 msgid "Reject" msgstr "Recusar" #: ../actions/login.php:103 ../actions/register.php:176 actions/login.php:103 #: actions/register.php:190 actions/login.php:234 actions/openidlogin.php:107 -#: actions/register.php:414 +#: actions/register.php:414 actions/login.php:217 actions/openidlogin.php:116 +#: actions/register.php:461 actions/login.php:225 actions/register.php:471 msgid "Remember me" msgstr "Lembrar neste computador" #: ../actions/updateprofile.php:70 actions/updateprofile.php:71 -#: actions/updateprofile.php:74 +#: actions/updateprofile.php:74 actions/updateprofile.php:76 msgid "Remote profile with no matching profile" msgstr "Perfil remoto sem referencia local" #: ../actions/remotesubscribe.php:65 actions/remotesubscribe.php:73 -#: actions/remotesubscribe.php:88 +#: actions/remotesubscribe.php:88 actions/remotesubscribe.php:112 msgid "Remote subscribe" msgstr "Assinatura remota" @@ -1948,6 +2276,9 @@ msgstr "Assinatura remota" #: actions/emailsettings.php:134 actions/imsettings.php:102 #: actions/openidsettings.php:166 actions/smssettings.php:103 #: actions/smssettings.php:146 actions/twittersettings.php:115 +#: actions/twittersettings.php:118 actions/emailsettings.php:107 +#: actions/emailsettings.php:140 actions/imsettings.php:108 +#: actions/smssettings.php:115 actions/smssettings.php:158 msgid "Remove" msgstr "Remover" @@ -1956,7 +2287,7 @@ msgstr "Remover" msgid "Remove OpenID" msgstr "Remover OpenID" -#: ../actions/openidsettings.php:73 +#: ../actions/openidsettings.php:73 actions/openidsettings.php:128 msgid "" "Removing your only OpenID would make it impossible to log in! If you need to " "remove it, add another OpenID first." @@ -1965,34 +2296,41 @@ msgstr "" "novamente! Se deseja realmente removê-la, adicione outra OpenID antes." #: ../lib/stream.php:55 lib/personal.php:55 lib/personalgroupnav.php:103 +#: lib/personalgroupnav.php:104 msgid "Replies" msgstr "Respostas" #: ../actions/replies.php:47 ../actions/repliesrss.php:76 ../lib/stream.php:56 #: actions/replies.php:47 actions/repliesrss.php:62 lib/personal.php:56 #: actions/replies.php:116 actions/repliesrss.php:67 -#: lib/personalgroupnav.php:104 +#: lib/personalgroupnav.php:104 actions/replies.php:118 +#: actions/replies.php:117 lib/personalgroupnav.php:105 +#: actions/replies.php:125 actions/repliesrss.php:68 #, php-format msgid "Replies to %s" msgstr "Respostas para %s" #: ../actions/recoverpassword.php:183 actions/recoverpassword.php:189 -#: actions/recoverpassword.php:223 +#: actions/recoverpassword.php:223 actions/recoverpassword.php:240 +#: actions/recoverpassword.php:243 msgid "Reset" msgstr "Restaurar" #: ../actions/recoverpassword.php:173 actions/recoverpassword.php:178 -#: actions/recoverpassword.php:197 +#: actions/recoverpassword.php:197 actions/recoverpassword.php:205 +#: actions/recoverpassword.php:208 msgid "Reset password" msgstr "Restaurar a senha" #: ../lib/settingsaction.php:99 lib/settingsaction.php:93 #: actions/subscriptions.php:123 lib/connectsettingsaction.php:107 +#: actions/subscriptions.php:125 actions/subscriptions.php:184 +#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 msgid "SMS" msgstr "SMS" #: ../actions/smssettings.php:67 actions/smssettings.php:67 -#: actions/smssettings.php:126 +#: actions/smssettings.php:126 actions/smssettings.php:138 msgid "SMS Phone number" msgstr "Telefone para SMS" @@ -2001,17 +2339,18 @@ msgstr "Telefone para SMS" msgid "SMS Settings" msgstr "Configuração de SMS" -#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 +#: ../lib/mail.php:219 lib/mail.php:225 lib/mail.php:437 lib/mail.php:438 msgid "SMS confirmation" msgstr "Confirmação de SMS" #: ../actions/recoverpassword.php:182 actions/recoverpassword.php:188 -#: actions/recoverpassword.php:222 +#: actions/recoverpassword.php:222 actions/recoverpassword.php:237 +#: actions/recoverpassword.php:240 msgid "Same as password above" msgstr "Igual à senha acima" #: ../actions/register.php:156 actions/register.php:170 -#: actions/register.php:377 +#: actions/register.php:377 actions/register.php:423 actions/register.php:427 msgid "Same as password above. Required." msgstr "Igual à senha acima. Obrigatório." @@ -2024,12 +2363,21 @@ msgstr "Igual à senha acima. Obrigatório." #: actions/othersettings.php:117 actions/profilesettings.php:150 #: actions/smssettings.php:169 actions/subscriptions.php:124 #: actions/tagother.php:152 actions/twittersettings.php:161 -#: lib/groupeditform.php:171 +#: lib/groupeditform.php:171 actions/emailsettings.php:187 +#: actions/subscriptions.php:126 actions/tagother.php:154 +#: actions/twittersettings.php:164 actions/othersettings.php:119 +#: actions/profilesettings.php:152 actions/subscriptions.php:185 +#: actions/twittersettings.php:180 lib/designsettings.php:256 +#: lib/groupeditform.php:196 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/smssettings.php:181 +#: actions/subscriptions.php:203 lib/groupeditform.php:202 msgid "Save" msgstr "Salvar" #: ../lib/searchaction.php:84 ../lib/util.php:300 lib/searchaction.php:84 -#: lib/util.php:316 lib/action.php:325 +#: lib/util.php:316 lib/action.php:325 lib/action.php:396 lib/action.php:448 +#: lib/action.php:459 msgid "Search" msgstr "Procurar" @@ -2039,7 +2387,7 @@ msgid "Search Stream Feed" msgstr "Procurar no fluxo de mensagens" #: ../actions/noticesearch.php:30 actions/noticesearch.php:30 -#: actions/noticesearch.php:57 +#: actions/noticesearch.php:57 actions/noticesearch.php:68 #, php-format msgid "" "Search for notices on %%site.name%% by their contents. Separate search terms " @@ -2048,7 +2396,7 @@ msgstr "" "Procurar mensagens em %%site.name%% por seu conteúdo. Separe os termos da " "busca com espaços; eles devem ter 3 caracteres ou mais." -#: ../actions/peoplesearch.php:28 +#: ../actions/peoplesearch.php:28 actions/peoplesearch.php:52 #, php-format msgid "" "Search for people on %%site.name%% by their name, location, or interests. " @@ -2059,33 +2407,38 @@ msgstr "" "caracteres ou mais." #: ../actions/smssettings.php:296 actions/smssettings.php:304 -#: actions/smssettings.php:457 +#: actions/smssettings.php:457 actions/smssettings.php:469 msgid "Select a carrier" msgstr "Selecione uma operadora" #: ../actions/invite.php:137 ../lib/util.php:1172 actions/invite.php:145 #: lib/util.php:1306 lib/util.php:1731 actions/invite.php:182 -#: lib/messageform.php:167 lib/noticeform.php:177 +#: lib/messageform.php:167 lib/noticeform.php:177 actions/invite.php:189 +#: lib/messageform.php:165 actions/invite.php:191 lib/messageform.php:157 +#: lib/noticeform.php:179 actions/invite.php:197 lib/messageform.php:181 +#: lib/noticeform.php:208 msgid "Send" msgstr "Enviar" #: ../actions/emailsettings.php:73 ../actions/smssettings.php:82 #: actions/emailsettings.php:74 actions/smssettings.php:82 #: actions/emailsettings.php:132 actions/smssettings.php:145 +#: actions/emailsettings.php:138 actions/smssettings.php:157 msgid "Send email to this address to post new notices." msgstr "Envie e-mails para esse endereço para publicar novas mensagens." #: ../actions/emailsettings.php:88 actions/emailsettings.php:89 -#: actions/emailsettings.php:152 +#: actions/emailsettings.php:152 actions/emailsettings.php:158 msgid "Send me notices of new subscriptions through email." msgstr "Envie-me notificações de novos assinantes por e-mail." #: ../actions/imsettings.php:70 actions/imsettings.php:71 -#: actions/imsettings.php:137 +#: actions/imsettings.php:137 actions/imsettings.php:143 msgid "Send me notices through Jabber/GTalk." msgstr "Envie-me as mensagens via Jabber/GTalk." #: ../actions/smssettings.php:97 actions/smssettings.php:97 +#: actions/smssettings.php:162 actions/smssettings.php:174 msgid "" "Send me notices through SMS; I understand I may incur exorbitant charges " "from my carrier." @@ -2094,17 +2447,20 @@ msgstr "" "exorbitantes da minha operadora." #: ../actions/imsettings.php:76 actions/imsettings.php:77 +#: actions/imsettings.php:147 actions/imsettings.php:153 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" -"Envie-me respostas de pessoas que eu não estou seguindo através do " -"Jabber/GTalk." +"Envie-me respostas de pessoas que eu não estou seguindo através do Jabber/" +"GTalk." #: ../lib/util.php:304 lib/util.php:320 lib/facebookaction.php:215 +#: lib/facebookaction.php:228 lib/facebookaction.php:230 msgid "Settings" msgstr "Configurações" #: ../actions/profilesettings.php:192 actions/profilesettings.php:307 -#: actions/profilesettings.php:319 +#: actions/profilesettings.php:319 actions/profilesettings.php:318 +#: actions/profilesettings.php:344 msgid "Settings saved." msgstr "As configurações foram salvas." @@ -2124,27 +2480,32 @@ msgid "Something weird happened." msgstr "Aconteceu alguma coisa estranha..." #: ../scripts/maildaemon.php:58 scripts/maildaemon.php:58 -#: scripts/maildaemon.php:61 +#: scripts/maildaemon.php:61 scripts/maildaemon.php:60 msgid "Sorry, no incoming email allowed." msgstr "Desculpe-me, mas não é permitido o recebimento de emails." #: ../scripts/maildaemon.php:54 scripts/maildaemon.php:54 -#: scripts/maildaemon.php:57 +#: scripts/maildaemon.php:57 scripts/maildaemon.php:56 msgid "Sorry, that is not your incoming email address." msgstr "Desculpe-me, mas este não é seu endereço de e-mail para recebimento." -#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 +#: ../lib/util.php:330 lib/util.php:346 lib/action.php:574 lib/action.php:667 +#: lib/action.php:717 lib/action.php:732 msgid "Source" msgstr "Fonte" #: ../actions/showstream.php:296 actions/showstream.php:311 -#: actions/showstream.php:476 +#: actions/showstream.php:476 actions/showgroup.php:375 +#: actions/showgroup.php:421 lib/profileaction.php:173 +#: actions/showgroup.php:429 msgid "Statistics" msgstr "Estatísticas" #: ../actions/finishopenidlogin.php:182 ../actions/finishopenidlogin.php:246 #: actions/finishopenidlogin.php:188 actions/finishopenidlogin.php:252 #: actions/finishopenidlogin.php:222 actions/finishopenidlogin.php:290 +#: actions/finishopenidlogin.php:295 actions/finishopenidlogin.php:238 +#: actions/finishopenidlogin.php:318 msgid "Stored OpenID not found." msgstr "O OpenID armazenado não foi encontrado." @@ -2152,24 +2513,28 @@ msgstr "O OpenID armazenado não foi encontrado." #: ../actions/showstream.php:197 actions/remotesubscribe.php:84 #: actions/showstream.php:197 actions/showstream.php:206 #: actions/remotesubscribe.php:113 actions/showstream.php:376 -#: lib/subscribeform.php:139 +#: lib/subscribeform.php:139 actions/showstream.php:345 +#: actions/remotesubscribe.php:137 actions/showstream.php:439 msgid "Subscribe" msgstr "Assinar" #: ../actions/showstream.php:313 ../actions/subscribers.php:27 #: actions/showstream.php:328 actions/subscribers.php:27 #: actions/showstream.php:436 actions/showstream.php:498 -#: lib/subgroupnav.php:88 +#: lib/subgroupnav.php:88 lib/profileaction.php:140 lib/profileaction.php:200 +#: lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Assinantes" #: ../actions/userauthorization.php:310 actions/userauthorization.php:322 -#: actions/userauthorization.php:338 +#: actions/userauthorization.php:338 actions/userauthorization.php:344 +#: actions/userauthorization.php:378 actions/userauthorization.php:247 msgid "Subscription authorized" msgstr "A assinatura foi autorizada" #: ../actions/userauthorization.php:320 actions/userauthorization.php:332 -#: actions/userauthorization.php:349 +#: actions/userauthorization.php:349 actions/userauthorization.php:355 +#: actions/userauthorization.php:389 actions/userauthorization.php:259 msgid "Subscription rejected" msgstr "A assinatura foi recusada" @@ -2177,28 +2542,35 @@ msgstr "A assinatura foi recusada" #: ../actions/subscriptions.php:27 actions/showstream.php:240 #: actions/showstream.php:322 actions/subscriptions.php:27 #: actions/showstream.php:407 actions/showstream.php:489 -#: lib/subgroupnav.php:80 +#: lib/subgroupnav.php:80 lib/profileaction.php:109 lib/profileaction.php:191 +#: lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Assinaturas" #: ../actions/avatar.php:87 actions/profilesettings.php:324 -#: lib/imagefile.php:78 +#: lib/imagefile.php:78 lib/imagefile.php:82 lib/imagefile.php:83 +#: lib/imagefile.php:88 lib/mediafile.php:170 msgid "System error uploading file." msgstr "Erro no sistema durante o envio do arquivo." #: ../actions/tag.php:41 ../lib/util.php:301 actions/tag.php:41 #: lib/util.php:317 actions/profilesettings.php:122 actions/showstream.php:297 #: actions/tagother.php:147 actions/tagother.php:207 lib/profilelist.php:162 -#: lib/profilelist.php:164 +#: lib/profilelist.php:164 actions/showstream.php:290 actions/tagother.php:149 +#: actions/tagother.php:209 lib/profilelist.php:160 +#: actions/profilesettings.php:123 actions/showstream.php:255 +#: lib/subscriptionlist.php:106 lib/subscriptionlist.php:108 +#: actions/profilesettings.php:138 actions/showstream.php:327 msgid "Tags" msgstr "Tags" #: ../lib/searchaction.php:104 lib/searchaction.php:104 +#: lib/designsettings.php:217 msgid "Text" msgstr "Texto" #: ../actions/noticesearch.php:34 actions/noticesearch.php:34 -#: actions/noticesearch.php:67 +#: actions/noticesearch.php:67 actions/noticesearch.php:78 msgid "Text search" msgstr "Procurar por texto" @@ -2218,6 +2590,7 @@ msgid "That confirmation code is not for you!" msgstr "Esse código de confirmação não é seu!" #: ../actions/emailsettings.php:191 actions/emailsettings.php:209 +#: actions/emailsettings.php:328 actions/emailsettings.php:336 msgid "That email address already belongs to another user." msgstr "Esse endereço de e-mail já pertence à outro usuário." @@ -2227,63 +2600,73 @@ msgid "That file is too big." msgstr "Esse arquivo é muito grande." #: ../actions/imsettings.php:170 actions/imsettings.php:178 -#: actions/imsettings.php:293 +#: actions/imsettings.php:293 actions/imsettings.php:299 msgid "That is already your Jabber ID." msgstr "Essa já é sua ID do Jabber." #: ../actions/emailsettings.php:188 actions/emailsettings.php:206 -#: actions/emailsettings.php:318 +#: actions/emailsettings.php:318 actions/emailsettings.php:325 +#: actions/emailsettings.php:333 msgid "That is already your email address." msgstr "Esse já é seu endereço de e-mail." #: ../actions/smssettings.php:188 actions/smssettings.php:196 -#: actions/smssettings.php:306 +#: actions/smssettings.php:306 actions/smssettings.php:318 msgid "That is already your phone number." msgstr "Esse já é seu número de telefone." #: ../actions/imsettings.php:233 actions/imsettings.php:241 -#: actions/imsettings.php:381 +#: actions/imsettings.php:381 actions/imsettings.php:387 msgid "That is not your Jabber ID." msgstr "Essa não é sua ID do Jabber." #: ../actions/emailsettings.php:249 actions/emailsettings.php:267 -#: actions/emailsettings.php:397 +#: actions/emailsettings.php:397 actions/emailsettings.php:404 +#: actions/emailsettings.php:412 msgid "That is not your email address." msgstr "Esse não é seu endereço de email." #: ../actions/smssettings.php:257 actions/smssettings.php:265 -#: actions/smssettings.php:393 +#: actions/smssettings.php:393 actions/smssettings.php:405 msgid "That is not your phone number." msgstr "Esse não é seu número de telefone." #: ../actions/emailsettings.php:226 ../actions/imsettings.php:210 #: actions/emailsettings.php:244 actions/imsettings.php:218 #: actions/emailsettings.php:367 actions/imsettings.php:349 +#: actions/emailsettings.php:374 actions/emailsettings.php:382 +#: actions/imsettings.php:355 msgid "That is the wrong IM address." msgstr "Isso é um endereço de IM errado." #: ../actions/smssettings.php:233 actions/smssettings.php:241 -#: actions/smssettings.php:362 +#: actions/smssettings.php:362 actions/smssettings.php:374 msgid "That is the wrong confirmation number." msgstr "Isso é um número de confirmação errado." #: ../actions/smssettings.php:191 actions/smssettings.php:199 -#: actions/smssettings.php:309 +#: actions/smssettings.php:309 actions/smssettings.php:321 msgid "That phone number already belongs to another user." msgstr "Esse número de telefone já pertence à outro usuário." #: ../actions/newnotice.php:49 ../actions/twitapistatuses.php:408 #: actions/newnotice.php:49 actions/twitapistatuses.php:330 #: actions/facebookhome.php:243 actions/twitapistatuses.php:276 +#: actions/newnotice.php:136 actions/twitapistatuses.php:294 +#: lib/facebookaction.php:485 actions/newnotice.php:166 +#: actions/twitapistatuses.php:251 lib/facebookaction.php:477 +#: scripts/maildaemon.php:70 msgid "That's too long. Max notice size is 140 chars." msgstr "Está muito extenso. O tamanho máximo é de 140 caracteres." #: ../actions/twitapiaccount.php:74 actions/twitapiaccount.php:72 -#: actions/twitapiaccount.php:62 +#: actions/twitapiaccount.php:62 actions/twitapiaccount.php:63 +#: actions/twitapiaccount.php:66 msgid "That's too long. Max notice size is 255 chars." msgstr "Está muito extenso. O tamanho máximo é de 255 caracteres." #: ../actions/confirmaddress.php:92 actions/confirmaddress.php:92 +#: actions/confirmaddress.php:159 #, php-format msgid "The address \"%s\" has been confirmed for your account." msgstr "O endereço \"%s\" foi confirmado para sua conta." @@ -2292,11 +2675,14 @@ msgstr "O endereço \"%s\" foi confirmado para sua conta." #: ../actions/smssettings.php:274 actions/emailsettings.php:282 #: actions/imsettings.php:258 actions/smssettings.php:282 #: actions/emailsettings.php:416 actions/imsettings.php:402 -#: actions/smssettings.php:413 +#: actions/smssettings.php:413 actions/emailsettings.php:423 +#: actions/emailsettings.php:431 actions/imsettings.php:408 +#: actions/smssettings.php:425 msgid "The address was removed." msgstr "O endereço foi removido." -#: ../actions/userauthorization.php:312 +#: ../actions/userauthorization.php:312 actions/userauthorization.php:346 +#: actions/userauthorization.php:380 msgid "" "The subscription has been authorized, but no callback URL was passed. Check " "with the site's instructions for details on how to authorize the " @@ -2306,7 +2692,8 @@ msgstr "" "Verifique as instruções do site para detalhes sobre como autorizar a " "assinatura. Seu token de assinatura é:" -#: ../actions/userauthorization.php:322 +#: ../actions/userauthorization.php:322 actions/userauthorization.php:357 +#: actions/userauthorization.php:391 msgid "" "The subscription has been rejected, but no callback URL was passed. Check " "with the site's instructions for details on how to fully reject the " @@ -2317,33 +2704,38 @@ msgstr "" "completamente a assinatura." #: ../actions/subscribers.php:35 actions/subscribers.php:35 +#: actions/subscribers.php:67 #, php-format msgid "These are the people who listen to %s's notices." msgstr "Estas são as pessoas que acompanham as mensagens de %s." #: ../actions/subscribers.php:33 actions/subscribers.php:33 +#: actions/subscribers.php:63 msgid "These are the people who listen to your notices." msgstr "Estas são as pessoas que acompanham as suas mensagens." #: ../actions/subscriptions.php:35 actions/subscriptions.php:35 +#: actions/subscriptions.php:69 #, php-format msgid "These are the people whose notices %s listens to." msgstr "Estas são as pessoas cujas mensagens %s acompanha." #: ../actions/subscriptions.php:33 actions/subscriptions.php:33 +#: actions/subscriptions.php:65 msgid "These are the people whose notices you listen to." msgstr "Estas são as pessoas cujas mensagens você acompanha." #: ../actions/invite.php:89 actions/invite.php:96 actions/invite.php:128 +#: actions/invite.php:130 actions/invite.php:136 msgid "" "These people are already users and you were automatically subscribed to them:" msgstr "Estas pessoas já são usuárias e você as acompanha automaticamente:" -#: ../actions/recoverpassword.php:88 +#: ../actions/recoverpassword.php:88 actions/recoverpassword.php:97 msgid "This confirmation code is too old. Please start again." msgstr "Este código de confirmação é muito antigo. Por favor inicie novamente." -#: ../lib/openid.php:195 +#: ../lib/openid.php:195 lib/openid.php:206 msgid "" "This form should automatically submit itself. If not, click the submit " "button to go to your OpenID provider." @@ -2352,7 +2744,7 @@ msgstr "" "no botão \"Enviar\" para ir para seu provedor de OpenID." #: ../actions/finishopenidlogin.php:56 actions/finishopenidlogin.php:61 -#: actions/finishopenidlogin.php:67 +#: actions/finishopenidlogin.php:67 actions/finishopenidlogin.php:66 #, php-format msgid "" "This is the first time you've logged into %s so we must connect your OpenID " @@ -2367,6 +2759,9 @@ msgstr "" #: actions/twitapifavorites.php:127 actions/twitapifriendships.php:108 #: actions/twitapistatuses.php:511 actions/twitapifavorites.php:97 #: actions/twitapifriendships.php:85 actions/twitapistatuses.php:436 +#: actions/twitapifavorites.php:103 actions/twitapistatuses.php:460 +#: actions/twitapifavorites.php:154 actions/twitapifriendships.php:90 +#: actions/twitapistatuses.php:416 actions/apistatusesdestroy.php:107 msgid "This method requires a POST or DELETE." msgstr "Este método requer POSTAGEM ou EXCLUSÃO." @@ -2375,49 +2770,64 @@ msgstr "Este método requer POSTAGEM ou EXCLUSÃO." #: actions/twitapidirect_messages.php:114 actions/twitapifriendships.php:44 #: actions/twitapistatuses.php:303 actions/twitapiaccount.php:53 #: actions/twitapidirect_messages.php:122 actions/twitapifriendships.php:32 -#: actions/twitapistatuses.php:244 +#: actions/twitapistatuses.php:244 actions/twitapiaccount.php:54 +#: actions/twitapidirect_messages.php:131 actions/twitapistatuses.php:262 +#: actions/twitapiaccount.php:56 actions/twitapidirect_messages.php:124 +#: actions/twitapifriendships.php:34 actions/twitapistatuses.php:216 +#: actions/apiblockcreate.php:89 actions/apiblockdestroy.php:88 +#: actions/apidirectmessagenew.php:117 actions/apifavoritecreate.php:90 +#: actions/apifavoritedestroy.php:91 actions/apifriendshipscreate.php:91 +#: actions/apifriendshipsdestroy.php:91 actions/apigroupcreate.php:104 +#: actions/apigroupjoin.php:91 actions/apigroupleave.php:91 +#: actions/apistatusesupdate.php:109 msgid "This method requires a POST." msgstr "Este método requer um POST." -#: ../lib/util.php:164 lib/util.php:246 +#: ../lib/util.php:164 lib/util.php:246 lib/htmloutputter.php:104 msgid "This page is not available in a media type you accept" msgstr "Esta página não está disponível em um tipo de mídia que você aceita" #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:138 +#: actions/profilesettings.php:138 actions/profilesettings.php:139 +#: actions/profilesettings.php:154 msgid "Timezone" msgstr "Fuso horário" #: ../actions/profilesettings.php:107 actions/profilesettings.php:222 -#: actions/profilesettings.php:211 +#: actions/profilesettings.php:211 actions/profilesettings.php:212 +#: actions/profilesettings.php:228 msgid "Timezone not selected." msgstr "O fuso horário não foi selecionado." -#: ../actions/remotesubscribe.php:43 +#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74 +#: actions/remotesubscribe.php:98 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." "register%%) a new account. If you already have an account on a [compatible " "microblogging site](%%doc.openmublog%%), enter your profile URL below." msgstr "" -"Para assinar, você pode [autenticar-se](%%action.login%%), ou " -"[registrar](%%action.register%%) uma nova conta. Se você já tem uma conta em " -"um [site de microblogagem compatível](%%doc.openmublog%%), informe a URL do " -"seu perfil abaixo." +"Para assinar, você pode [autenticar-se](%%action.login%%), ou [registrar](%%" +"action.register%%) uma nova conta. Se você já tem uma conta em um [site de " +"microblogagem compatível](%%doc.openmublog%%), informe a URL do seu perfil " +"abaixo." #: ../actions/twitapifriendships.php:163 actions/twitapifriendships.php:167 -#: actions/twitapifriendships.php:132 +#: actions/twitapifriendships.php:132 actions/twitapifriendships.php:139 +#: actions/apifriendshipsexists.php:103 msgid "Two user ids or screen_names must be supplied." msgstr "Duas IDs de usuário ou screen_names devem ser informados." #: ../actions/profilesettings.php:48 ../actions/register.php:169 #: actions/profilesettings.php:81 actions/register.php:183 -#: actions/profilesettings.php:109 +#: actions/profilesettings.php:109 actions/register.php:398 +#: actions/register.php:444 actions/profilesettings.php:117 +#: actions/register.php:448 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL do seu site, blog ou perfil em outro site" #: ../actions/remotesubscribe.php:74 actions/remotesubscribe.php:83 -#: actions/remotesubscribe.php:110 +#: actions/remotesubscribe.php:110 actions/remotesubscribe.php:134 msgid "URL of your profile on another compatible microblogging service" msgstr "URL do seu perfil em outro serviço de microblogagem compatível" @@ -2429,15 +2839,22 @@ msgstr "URL do seu perfil em outro serviço de microblogagem compatível" #: actions/emailsettings.php:242 actions/grouplogo.php:317 #: actions/imsettings.php:214 actions/recoverpassword.php:44 #: actions/smssettings.php:236 actions/twittersettings.php:302 +#: actions/avatarsettings.php:263 actions/emailsettings.php:247 +#: actions/grouplogo.php:324 actions/twittersettings.php:306 +#: actions/twittersettings.php:322 lib/designsettings.php:301 +#: actions/emailsettings.php:255 actions/grouplogo.php:319 +#: actions/imsettings.php:220 actions/smssettings.php:248 msgid "Unexpected form submission." msgstr "Submissão inesperada de formulário." #: ../actions/recoverpassword.php:276 actions/recoverpassword.php:289 -#: actions/recoverpassword.php:323 +#: actions/recoverpassword.php:323 actions/recoverpassword.php:341 +#: actions/recoverpassword.php:344 msgid "Unexpected password reset." msgstr "Restauração inesperada da senha." #: ../index.php:57 index.php:57 actions/recoverpassword.php:202 +#: actions/recoverpassword.php:210 actions/recoverpassword.php:213 msgid "Unknown action" msgstr "Ação desconhecida" @@ -2468,38 +2885,47 @@ msgstr "Cancelar" #: ../actions/postnotice.php:44 ../actions/updateprofile.php:45 #: actions/postnotice.php:45 actions/updateprofile.php:46 #: actions/postnotice.php:48 actions/updateprofile.php:49 +#: actions/updateprofile.php:51 msgid "Unsupported OMB version" msgstr "Versão do OMB não suportada" #: ../actions/avatar.php:105 actions/profilesettings.php:342 -#: lib/imagefile.php:102 +#: lib/imagefile.php:102 lib/imagefile.php:99 lib/imagefile.php:100 +#: lib/imagefile.php:105 msgid "Unsupported image file format." msgstr "Formato de imagem não suportado." #: ../lib/settingsaction.php:100 lib/settingsaction.php:94 -#: lib/connectsettingsaction.php:108 +#: lib/connectsettingsaction.php:108 lib/connectsettingsaction.php:116 msgid "Updates by SMS" msgstr "Atualizações via SMS" #: ../lib/settingsaction.php:103 lib/settingsaction.php:97 -#: lib/connectsettingsaction.php:105 +#: lib/connectsettingsaction.php:105 lib/connectsettingsaction.php:111 msgid "Updates by instant messenger (IM)" msgstr "Atualizações via instant messenger (IM)" #: ../actions/twitapistatuses.php:241 actions/twitapistatuses.php:158 -#: actions/twitapistatuses.php:129 +#: actions/twitapistatuses.php:129 actions/twitapistatuses.php:134 +#: actions/twitapistatuses.php:94 actions/allrss.php:119 +#: actions/apitimelinefriends.php:121 #, php-format msgid "Updates from %1$s and friends on %2$s!" msgstr "Atualizações de %1$s e amigos no %2$s!" #: ../actions/twitapistatuses.php:341 actions/twitapistatuses.php:268 -#: actions/twitapistatuses.php:202 +#: actions/twitapistatuses.php:202 actions/twitapistatuses.php:213 +#: actions/twitapigroups.php:74 actions/twitapistatuses.php:159 +#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" msgstr "Atualizações de %1$s no %2$s!" #: ../actions/avatar.php:68 actions/profilesettings.php:161 #: actions/avatarsettings.php:162 actions/grouplogo.php:232 +#: actions/avatarsettings.php:165 actions/grouplogo.php:238 +#: actions/grouplogo.php:233 msgid "Upload" msgstr "Enviar" @@ -2520,6 +2946,7 @@ msgid "Upload a new profile image" msgstr "Envie uma nova imagem para o seu perfil" #: ../actions/invite.php:114 actions/invite.php:121 actions/invite.php:154 +#: actions/invite.php:156 actions/invite.php:162 msgid "" "Use this form to invite your friends and colleagues to use this service." msgstr "" @@ -2527,7 +2954,9 @@ msgstr "" "serviço." #: ../actions/register.php:159 ../actions/register.php:162 -#: actions/register.php:173 actions/register.php:176 +#: actions/register.php:173 actions/register.php:176 actions/register.php:382 +#: actions/register.php:386 actions/register.php:428 actions/register.php:432 +#: actions/register.php:436 msgid "Used only for updates, announcements, and password recovery" msgstr "Usado apenas para atualizações, anúncios e recuperações de senha" @@ -2551,11 +2980,16 @@ msgstr "O usuário que está está sendo acompanhado não existe." #: actions/twitapifavorites.php:42 actions/twitapistatuses.php:167 #: actions/twitapistatuses.php:503 actions/twitapiusers.php:55 #: actions/usergroups.php:99 lib/galleryaction.php:67 lib/twitterapi.php:626 +#: actions/twitapiaccount.php:71 actions/twitapistatuses.php:179 +#: actions/twitapistatuses.php:535 actions/twitapiusers.php:59 +#: actions/foaf.php:65 actions/replies.php:79 actions/twitapiusers.php:57 +#: actions/usergroups.php:98 lib/galleryaction.php:66 lib/profileaction.php:84 +#: actions/apiusershow.php:108 msgid "User has no profile." msgstr "O usuário não tem perfil." #: ../actions/remotesubscribe.php:71 actions/remotesubscribe.php:80 -#: actions/remotesubscribe.php:105 +#: actions/remotesubscribe.php:105 actions/remotesubscribe.php:129 msgid "User nickname" msgstr "Apelido do usuário" @@ -2564,29 +2998,33 @@ msgid "User not found." msgstr "Usuário não encontrado." #: ../actions/profilesettings.php:63 actions/profilesettings.php:96 -#: actions/profilesettings.php:139 +#: actions/profilesettings.php:139 actions/profilesettings.php:140 +#: actions/profilesettings.php:155 msgid "What timezone are you normally in?" msgstr "Em que fuso horário você normalmente está?" #: ../lib/util.php:1159 lib/util.php:1293 lib/noticeform.php:141 +#: lib/noticeform.php:158 #, php-format msgid "What's up, %s?" msgstr "E aí, %s?" #: ../actions/profilesettings.php:54 ../actions/register.php:175 #: actions/profilesettings.php:87 actions/register.php:189 -#: actions/profilesettings.php:119 +#: actions/profilesettings.php:119 actions/register.php:410 +#: actions/register.php:456 actions/profilesettings.php:134 +#: actions/register.php:466 msgid "Where you are, like \"City, State (or Region), Country\"" msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" #: ../actions/updateprofile.php:128 actions/updateprofile.php:129 -#: actions/updateprofile.php:132 +#: actions/updateprofile.php:132 actions/updateprofile.php:134 #, php-format msgid "Wrong image type for '%s'" msgstr "Tipo de imagem errado para '%s'" #: ../actions/updateprofile.php:123 actions/updateprofile.php:124 -#: actions/updateprofile.php:127 +#: actions/updateprofile.php:127 actions/updateprofile.php:129 #, php-format msgid "Wrong size image at '%s'" msgstr "Tamanho da imagem errada em '%s'" @@ -2594,7 +3032,9 @@ msgstr "Tamanho da imagem errada em '%s'" #: ../actions/deletenotice.php:63 ../actions/deletenotice.php:72 #: actions/deletenotice.php:64 actions/deletenotice.php:79 #: actions/block.php:148 actions/deletenotice.php:122 -#: actions/deletenotice.php:141 +#: actions/deletenotice.php:141 actions/deletenotice.php:115 +#: actions/block.php:150 actions/deletenotice.php:116 +#: actions/groupblock.php:177 actions/deletenotice.php:146 msgid "Yes" msgstr "Sim" @@ -2617,11 +3057,12 @@ msgid "You are already logged in!" msgstr "Você já está logado!" #: ../actions/invite.php:81 actions/invite.php:88 actions/invite.php:120 +#: actions/invite.php:122 actions/invite.php:128 msgid "You are already subscribed to these users:" msgstr "Você já está assinando esses usuários:" #: ../actions/twitapifriendships.php:128 actions/twitapifriendships.php:128 -#: actions/twitapifriendships.php:105 +#: actions/twitapifriendships.php:105 actions/twitapifriendships.php:111 msgid "You are not friends with the specified user." msgstr "Você não é amigo do usuário especificado." @@ -2639,7 +3080,7 @@ msgstr "Você pode criar uma nova conta para começar a publicar mensagens." msgid "You can receive SMS messages through email from %%site.name%%." msgstr "Você pode receber mensagens SMS do %%site.name%% através do e-mail." -#: ../actions/openidsettings.php:86 +#: ../actions/openidsettings.php:86 actions/openidsettings.php:143 msgid "" "You can remove an OpenID from your account by clicking the button marked " "\"Remove\"." @@ -2647,15 +3088,17 @@ msgstr "" "Você pode remover uma OpenID da sua conta, clicando no botão \"Remover\"." #: ../actions/imsettings.php:28 actions/imsettings.php:28 +#: actions/imsettings.php:70 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." msgstr "" -"Você pode enviar e receber mensagens através dos [instant " -"messages](%%doc.im%%) Jabber/GTalk. Configure seu endereço e opções abaixo." +"Você pode enviar e receber mensagens através dos [instant messages](%%doc.im%" +"%) Jabber/GTalk. Configure seu endereço e opções abaixo." -#: ../actions/profilesettings.php:27 +#: ../actions/profilesettings.php:27 actions/profilesettings.php:69 +#: actions/profilesettings.php:71 msgid "" "You can update your personal profile info here so people know more about you." msgstr "" @@ -2666,21 +3109,23 @@ msgstr "" #: actions/finishremotesubscribe.php:31 actions/remotesubscribe.php:31 #: actions/finishremotesubscribe.php:33 actions/finishremotesubscribe.php:85 #: actions/finishremotesubscribe.php:101 actions/remotesubscribe.php:35 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 msgid "You can use the local subscription!" msgstr "Você pode usar a assinatura local!" #: ../actions/finishopenidlogin.php:33 ../actions/register.php:61 #: actions/finishopenidlogin.php:38 actions/register.php:68 -#: actions/finishopenidlogin.php:43 +#: actions/finishopenidlogin.php:43 actions/register.php:149 +#: actions/register.php:186 actions/register.php:192 msgid "You can't register if you don't agree to the license." msgstr "Você não pode se registrar se não aceitar a licença." #: ../actions/updateprofile.php:63 actions/updateprofile.php:64 -#: actions/updateprofile.php:67 +#: actions/updateprofile.php:67 actions/updateprofile.php:69 msgid "You did not send us that profile" msgstr "Você não nos enviou esse perfil" -#: ../lib/mail.php:147 +#: ../lib/mail.php:147 lib/mail.php:289 lib/mail.php:288 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -2702,16 +3147,19 @@ msgstr "" "%4$s" #: ../actions/twitapistatuses.php:612 actions/twitapistatuses.php:537 -#: actions/twitapistatuses.php:463 +#: actions/twitapistatuses.php:463 actions/twitapistatuses.php:486 +#: actions/twitapistatuses.php:443 actions/apistatusesdestroy.php:130 msgid "You may not delete another user's status." msgstr "Você não pode apagar o status de outro usuário." #: ../actions/invite.php:31 actions/invite.php:31 actions/invite.php:39 +#: actions/invite.php:41 #, php-format msgid "You must be logged in to invite other users to use %s" msgstr "Você deve estar logado para convidar outros usuários para usar o %s" #: ../actions/invite.php:103 actions/invite.php:110 actions/invite.php:142 +#: actions/invite.php:144 actions/invite.php:150 msgid "" "You will be notified when your invitees accept the invitation and register " "on the site. Thanks for growing the community!" @@ -2719,20 +3167,21 @@ msgstr "" "Você será notificado assim que seus convidados aceitarem o convite e se " "registrarem neste site. Obrigado por aumentar a comunidade!" -#: ../actions/recoverpassword.php:149 +#: ../actions/recoverpassword.php:149 actions/recoverpassword.php:158 msgid "You've been identified. Enter a new password below. " msgstr "Você foi identificado. Informe uma nova senha abaixo." #: ../actions/openidlogin.php:67 actions/openidlogin.php:76 -#: actions/openidlogin.php:104 +#: actions/openidlogin.php:104 actions/openidlogin.php:113 msgid "Your OpenID URL" msgstr "Sua URL de OpenID" -#: ../actions/recoverpassword.php:164 +#: ../actions/recoverpassword.php:164 actions/recoverpassword.php:188 +#: actions/recoverpassword.php:193 msgid "Your nickname on this server, or your registered email address." msgstr "Seu apelido neste servidor, ou seu e-mail registrado." -#: ../actions/openidsettings.php:28 +#: ../actions/openidsettings.php:28 actions/openidsettings.php:70 #, php-format msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " @@ -2741,47 +3190,57 @@ msgstr "" "A [OpenID](%%doc.openid%%) permite que você autentique-se em vários sites " "com a mesma conta de usuário. Gerencie suas OpenIDs associadas aqui." -#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 +#: ../lib/util.php:943 lib/util.php:992 lib/util.php:945 lib/util.php:756 +#: lib/util.php:770 lib/util.php:816 msgid "a few seconds ago" msgstr "segundos atrás" -#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 +#: ../lib/util.php:955 lib/util.php:1004 lib/util.php:957 lib/util.php:768 +#: lib/util.php:782 lib/util.php:828 #, php-format msgid "about %d days ago" msgstr "%d dias atrás" -#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 +#: ../lib/util.php:951 lib/util.php:1000 lib/util.php:953 lib/util.php:764 +#: lib/util.php:778 lib/util.php:824 #, php-format msgid "about %d hours ago" msgstr "%d horas atrás" -#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 +#: ../lib/util.php:947 lib/util.php:996 lib/util.php:949 lib/util.php:760 +#: lib/util.php:774 lib/util.php:820 #, php-format msgid "about %d minutes ago" msgstr "%d mins atrás" -#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 +#: ../lib/util.php:959 lib/util.php:1008 lib/util.php:961 lib/util.php:772 +#: lib/util.php:786 lib/util.php:832 #, php-format msgid "about %d months ago" msgstr "%d meses atrás" -#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 +#: ../lib/util.php:953 lib/util.php:1002 lib/util.php:955 lib/util.php:766 +#: lib/util.php:780 lib/util.php:826 msgid "about a day ago" msgstr "1 dia atrás" -#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 +#: ../lib/util.php:945 lib/util.php:994 lib/util.php:947 lib/util.php:758 +#: lib/util.php:772 lib/util.php:818 msgid "about a minute ago" msgstr "1 min atrás" -#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 +#: ../lib/util.php:957 lib/util.php:1006 lib/util.php:959 lib/util.php:770 +#: lib/util.php:784 lib/util.php:830 msgid "about a month ago" msgstr "1 mês atrás" -#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 +#: ../lib/util.php:961 lib/util.php:1010 lib/util.php:963 lib/util.php:774 +#: lib/util.php:788 lib/util.php:834 msgid "about a year ago" msgstr "1 ano atrás" -#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 +#: ../lib/util.php:949 lib/util.php:998 lib/util.php:951 lib/util.php:762 +#: lib/util.php:776 lib/util.php:822 msgid "about an hour ago" msgstr "1 hora atrás" @@ -2803,12 +3262,14 @@ msgid "reply" msgstr "responder" #: ../actions/password.php:44 actions/profilesettings.php:183 -#: actions/passwordsettings.php:106 +#: actions/passwordsettings.php:106 actions/passwordsettings.php:112 msgid "same as password above" msgstr "igual à senha acima" #: ../actions/twitapistatuses.php:755 actions/twitapistatuses.php:678 -#: actions/twitapistatuses.php:555 +#: actions/twitapistatuses.php:555 actions/twitapistatuses.php:596 +#: actions/twitapistatuses.php:618 actions/twitapistatuses.php:553 +#: actions/twitapistatuses.php:575 msgid "unsupported file type" msgstr "tipo de arquivo não suportado" @@ -2829,6 +3290,26 @@ msgstr "« Posteriores" #: actions/finishopenidlogin.php:38 actions/invite.php:54 actions/nudge.php:80 #: actions/openidlogin.php:37 actions/recoverpassword.php:316 #: actions/subscribe.php:46 actions/unblock.php:65 actions/unsubscribe.php:43 +#: actions/avatarsettings.php:251 actions/emailsettings.php:229 +#: actions/grouplogo.php:314 actions/imsettings.php:200 actions/login.php:103 +#: actions/newmessage.php:133 actions/newnotice.php:96 +#: actions/openidsettings.php:188 actions/othersettings.php:136 +#: actions/passwordsettings.php:131 actions/profilesettings.php:172 +#: actions/register.php:113 actions/remotesubscribe.php:53 +#: actions/smssettings.php:216 actions/subedit.php:38 actions/tagother.php:166 +#: actions/twittersettings.php:294 actions/userauthorization.php:39 +#: actions/favor.php:75 actions/groupblock.php:66 actions/groupunblock.php:66 +#: actions/invite.php:56 actions/makeadmin.php:66 actions/newnotice.php:102 +#: actions/othersettings.php:138 actions/recoverpassword.php:334 +#: actions/register.php:153 actions/twittersettings.php:310 +#: lib/designsettings.php:291 actions/emailsettings.php:237 +#: actions/grouplogo.php:309 actions/imsettings.php:206 actions/login.php:105 +#: actions/newmessage.php:135 actions/newnotice.php:103 +#: actions/othersettings.php:145 actions/passwordsettings.php:137 +#: actions/profilesettings.php:187 actions/recoverpassword.php:337 +#: actions/register.php:159 actions/remotesubscribe.php:77 +#: actions/smssettings.php:228 actions/unsubscribe.php:69 +#: actions/userauthorization.php:52 msgid "There was a problem with your session token. Try again, please." msgstr "" "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." @@ -2838,6 +3319,7 @@ msgid "This notice is not a favorite!" msgstr "Essa mensagem não é uma favorita!" #: actions/disfavor.php:63 actions/disfavor.php:87 +#: actions/twitapifavorites.php:188 actions/apifavoritedestroy.php:134 msgid "Could not delete favorite." msgstr "Não foi possível excluir a favorita." @@ -2845,24 +3327,30 @@ msgstr "Não foi possível excluir a favorita." msgid "Favor" msgstr "Tornar favorita" -#: actions/emailsettings.php:92 +#: actions/emailsettings.php:92 actions/emailsettings.php:157 +#: actions/emailsettings.php:163 msgid "Send me email when someone adds my notice as a favorite." msgstr "" "Envie-me um e-mail quando alguém adicionar alguma mensagem minha como " "favorita." #: actions/emailsettings.php:95 actions/emailsettings.php:163 +#: actions/emailsettings.php:169 msgid "Send me email when someone sends me a private message." msgstr "Envie-me um e-mail quando alguém enviar-me uma mensagem particular." #: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81 -#: actions/twitapifavorites.php:118 +#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124 +#: actions/favor.php:79 msgid "This notice is already a favorite!" msgstr "Essa mensagem já é uma favorita!" #: actions/favor.php:60 actions/twitapifavorites.php:151 #: classes/Command.php:132 actions/favor.php:86 #: actions/twitapifavorites.php:125 classes/Command.php:152 +#: actions/twitapifavorites.php:131 lib/command.php:152 actions/favor.php:84 +#: actions/twitapifavorites.php:133 lib/command.php:145 +#: actions/apifavoritecreate.php:130 lib/command.php:176 msgid "Could not create favorite." msgstr "Não foi possível criar a favorita." @@ -2872,11 +3360,13 @@ msgstr "Eliminar favorita" #: actions/favoritesrss.php:60 actions/showfavorites.php:47 #: actions/favoritesrss.php:100 actions/showfavorites.php:77 +#: actions/favoritesrss.php:110 #, php-format msgid "%s favorite notices" msgstr "Mensagens favoritas de %s" #: actions/favoritesrss.php:64 actions/favoritesrss.php:104 +#: actions/favoritesrss.php:114 #, php-format msgid "Feed of favorite notices of %s" msgstr "Feed de mensagens favoritas de %s" @@ -2920,23 +3410,32 @@ msgid "Login with your username and password. " msgstr "Logue-se com o seu nome de usuário e senha. " #: actions/newmessage.php:58 actions/twitapidirect_messages.php:130 -#: actions/twitapidirect_messages.php:141 +#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148 +#: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:145 msgid "That's too long. Max message size is 140 chars." msgstr "Muito extenso. O tamanho máximo das mensagens é 140 caracteres." #: actions/newmessage.php:65 actions/newmessage.php:128 +#: actions/newmessage.php:155 actions/newmessage.php:158 msgid "No recipient specified." msgstr "Nenhum destinatário especificado." #: actions/newmessage.php:68 actions/newmessage.php:113 #: classes/Command.php:206 actions/newmessage.php:131 #: actions/newmessage.php:168 classes/Command.php:237 +#: actions/newmessage.php:119 actions/newmessage.php:158 lib/command.php:237 +#: lib/command.php:230 actions/newmessage.php:121 actions/newmessage.php:161 +#: lib/command.php:367 msgid "You can't send a message to this user." msgstr "Você não pode enviar uma mensagem para esse usuário." #: actions/newmessage.php:71 actions/twitapidirect_messages.php:146 #: classes/Command.php:209 actions/twitapidirect_messages.php:158 -#: classes/Command.php:240 +#: classes/Command.php:240 actions/newmessage.php:161 +#: actions/twitapidirect_messages.php:167 lib/command.php:240 +#: actions/twitapidirect_messages.php:163 lib/command.php:233 +#: actions/newmessage.php:164 lib/command.php:370 msgid "" "Don't send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -2944,11 +3443,13 @@ msgstr "" "para si." #: actions/newmessage.php:108 actions/microsummary.php:62 -#: actions/newmessage.php:163 +#: actions/newmessage.php:163 actions/newmessage.php:114 +#: actions/newmessage.php:116 actions/remotesubscribe.php:154 msgid "No such user" msgstr "Esse usuário não existe" #: actions/newmessage.php:117 actions/newmessage.php:67 +#: actions/newmessage.php:71 actions/newmessage.php:231 msgid "New message" msgstr "Nova mensagem" @@ -3006,6 +3507,11 @@ msgstr "Você pode atualizar as informações do seu perfil pessoal aqui " #: actions/avatarsettings.php:104 actions/avatarsettings.php:179 #: actions/grouplogo.php:177 actions/remotesubscribe.php:367 #: actions/userauthorization.php:176 actions/userrss.php:82 +#: actions/avatarsettings.php:106 actions/avatarsettings.php:182 +#: actions/grouplogo.php:183 actions/remotesubscribe.php:366 +#: actions/remotesubscribe.php:364 actions/userauthorization.php:215 +#: actions/userrss.php:103 actions/grouplogo.php:178 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 msgid "User without matching profile" msgstr "Usuário sem um perfil correspondente" @@ -3034,6 +3540,8 @@ msgid "New password successfully saved. " msgstr "A nova senha foi salva com sucesso. " #: actions/register.php:95 actions/register.php:180 +#: actions/passwordsettings.php:147 actions/register.php:217 +#: actions/passwordsettings.php:153 actions/register.php:224 msgid "Password must be 6 or more characters." msgstr "A senha deve ter 6 ou mais caracteres." @@ -3056,12 +3564,15 @@ msgid "To subscribe, you can [login](%%action.login%%)," msgstr "Para seguir alguem, você pode [autenticar-se](%%action.login%%)," #: actions/showfavorites.php:61 actions/showfavorites.php:145 +#: actions/showfavorites.php:147 #, php-format msgid "Feed for favorites of %s" msgstr "Feed para favoritas de %s" #: actions/showfavorites.php:84 actions/twitapifavorites.php:85 #: actions/showfavorites.php:202 actions/twitapifavorites.php:59 +#: actions/showfavorites.php:179 actions/showfavorites.php:209 +#: actions/showfavorites.php:132 msgid "Could not retrieve favorite notices." msgstr "Não foi possível recuperar as mensagens favoritas." @@ -3069,7 +3580,7 @@ msgstr "Não foi possível recuperar as mensagens favoritas." msgid "No such message." msgstr "Essa mensagem não existe." -#: actions/showmessage.php:42 +#: actions/showmessage.php:42 actions/showmessage.php:98 msgid "Only the sender and recipient may read this message." msgstr "Apenas o remetente e o destinatário podem ler essa mensagem." @@ -3093,53 +3604,72 @@ msgid "Mobile carrier for your phone. " msgstr "Operadora móvel do seu celular. " #: actions/twitapidirect_messages.php:76 actions/twitapidirect_messages.php:68 +#: actions/twitapidirect_messages.php:67 actions/twitapidirect_messages.php:53 +#: actions/apidirectmessage.php:101 #, php-format msgid "Direct messages to %s" msgstr "Mensagem direta para %s" #: actions/twitapidirect_messages.php:77 actions/twitapidirect_messages.php:69 +#: actions/twitapidirect_messages.php:68 actions/twitapidirect_messages.php:54 +#: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" msgstr "Todas as mensagens diretas enviadas para %s" #: actions/twitapidirect_messages.php:81 actions/twitapidirect_messages.php:73 +#: actions/twitapidirect_messages.php:72 actions/twitapidirect_messages.php:59 msgid "Direct Messages You've Sent" msgstr "Mensagens diretas que você enviou" #: actions/twitapidirect_messages.php:82 actions/twitapidirect_messages.php:74 +#: actions/twitapidirect_messages.php:73 actions/twitapidirect_messages.php:60 +#: actions/apidirectmessage.php:93 #, php-format msgid "All the direct messages sent from %s" msgstr "Todas as mensagens diretas enviadas por %s" #: actions/twitapidirect_messages.php:128 #: actions/twitapidirect_messages.php:137 +#: actions/twitapidirect_messages.php:146 +#: actions/twitapidirect_messages.php:140 actions/apidirectmessagenew.php:126 msgid "No message text!" msgstr "Nenhuma mensagem de texto!" #: actions/twitapidirect_messages.php:138 #: actions/twitapidirect_messages.php:150 +#: actions/twitapidirect_messages.php:159 +#: actions/twitapidirect_messages.php:154 actions/apidirectmessagenew.php:146 msgid "Recipient user not found." msgstr "O usuário destinatário não foi encontrado." #: actions/twitapidirect_messages.php:141 #: actions/twitapidirect_messages.php:153 +#: actions/twitapidirect_messages.php:162 +#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150 msgid "Can't send direct messages to users who aren't your friend." msgstr "" "Não é possível enviar mensagens diretas para usuários que não são seus " "amigos." #: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66 +#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49 +#: actions/apitimelinefavorites.php:107 #, php-format msgid "%s / Favorites from %s" msgstr "%s / Favoritas de %s" #: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69 +#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55 +#: actions/apitimelinefavorites.php:119 #, php-format msgid "%s updates favorited by %s / %s." msgstr "%s atualizações de favoritas por %s / %s." #: actions/twitapifavorites.php:187 lib/mail.php:275 #: actions/twitapifavorites.php:164 lib/mail.php:553 +#: actions/twitapifavorites.php:170 lib/mail.php:554 +#: actions/twitapifavorites.php:221 #, php-format msgid "%s added your notice as a favorite" msgstr "%s marcaram sua mensagem como favorita" @@ -3162,14 +3692,17 @@ msgstr "" "automaticamente, " #: actions/twittersettings.php:41 actions/twittersettings.php:60 +#: actions/twittersettings.php:61 msgid "Twitter settings" msgstr "Configurações do Twitter" #: actions/twittersettings.php:48 actions/twittersettings.php:105 +#: actions/twittersettings.php:106 msgid "Twitter Account" msgstr "Conta do Twitter" #: actions/twittersettings.php:56 actions/twittersettings.php:113 +#: actions/twittersettings.php:114 msgid "Current verified Twitter account." msgstr "Conta do Twitter já verificada." @@ -3178,6 +3711,7 @@ msgid "Twitter Username" msgstr "Nome de usuário do Twitter" #: actions/twittersettings.php:65 actions/twittersettings.php:123 +#: actions/twittersettings.php:126 msgid "No spaces, please." msgstr "Sem espaços, por favor." @@ -3186,18 +3720,22 @@ msgid "Twitter Password" msgstr "Senha do Twitter" #: actions/twittersettings.php:72 actions/twittersettings.php:139 +#: actions/twittersettings.php:142 msgid "Automatically send my notices to Twitter." msgstr "Enviar minhas mensagens para o Twitter automaticamente." #: actions/twittersettings.php:75 actions/twittersettings.php:146 +#: actions/twittersettings.php:149 msgid "Send local \"@\" replies to Twitter." msgstr "Enviar respostas \"@\" locais para o Twitter." #: actions/twittersettings.php:78 actions/twittersettings.php:153 +#: actions/twittersettings.php:156 msgid "Subscribe to my Twitter friends here." msgstr "Assinar meus amigos do Twitter aqui." -#: actions/twittersettings.php:122 +#: actions/twittersettings.php:122 actions/twittersettings.php:331 +#: actions/twittersettings.php:348 msgid "" "Username must have only numbers, upper- and lowercase letters, and " "underscore (_). 15 chars max." @@ -3206,6 +3744,7 @@ msgstr "" "letras maiúsculas e minúsculas e sublinhado (_)." #: actions/twittersettings.php:128 actions/twittersettings.php:334 +#: actions/twittersettings.php:338 actions/twittersettings.php:355 msgid "Could not verify your Twitter credentials!" msgstr "Não foi possível verificar suas credenciais no Twitter!" @@ -3216,33 +3755,43 @@ msgstr "Não foi possível obter as informações da conta \"%s\" no Twitter." #: actions/twittersettings.php:151 actions/twittersettings.php:170 #: actions/twittersettings.php:348 actions/twittersettings.php:368 +#: actions/twittersettings.php:352 actions/twittersettings.php:372 +#: actions/twittersettings.php:369 actions/twittersettings.php:389 msgid "Unable to save your Twitter settings!" msgstr "Não foi possível salvar suas configurações do Twitter!" #: actions/twittersettings.php:174 actions/twittersettings.php:376 +#: actions/twittersettings.php:380 actions/twittersettings.php:399 msgid "Twitter settings saved." msgstr "As configurações do Twitter foram salvas." #: actions/twittersettings.php:192 actions/twittersettings.php:395 +#: actions/twittersettings.php:399 actions/twittersettings.php:418 msgid "That is not your Twitter account." msgstr "Essa não é a sua conta no Twitter." #: actions/twittersettings.php:200 actions/twittersettings.php:208 -#: actions/twittersettings.php:403 +#: actions/twittersettings.php:403 actions/twittersettings.php:407 +#: actions/twittersettings.php:426 msgid "Couldn't remove Twitter user." msgstr "Não foi possível remover o usuário do Twitter." #: actions/twittersettings.php:212 actions/twittersettings.php:407 +#: actions/twittersettings.php:411 actions/twittersettings.php:430 msgid "Twitter account removed." msgstr "A conta do Twitter foi removida." #: actions/twittersettings.php:225 actions/twittersettings.php:239 #: actions/twittersettings.php:428 actions/twittersettings.php:439 -#: actions/twittersettings.php:453 +#: actions/twittersettings.php:453 actions/twittersettings.php:432 +#: actions/twittersettings.php:443 actions/twittersettings.php:457 +#: actions/twittersettings.php:452 actions/twittersettings.php:463 +#: actions/twittersettings.php:477 msgid "Couldn't save Twitter preferences." msgstr "Não foi possível salvar as preferências do Twitter." #: actions/twittersettings.php:245 actions/twittersettings.php:461 +#: actions/twittersettings.php:465 actions/twittersettings.php:485 msgid "Twitter preferences saved." msgstr "As preferências do Twitter foram salvas." @@ -3259,18 +3808,19 @@ msgid "The subscription has been rejected, but no " msgstr "A assinatura foi recusada, mas não " #: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151 +#: lib/channel.php:138 lib/channel.php:158 msgid "Command results" msgstr "Resultados do comando" -#: classes/Channel.php:148 classes/Channel.php:204 +#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210 msgid "Command complete" msgstr "O comando foi completado" -#: classes/Channel.php:158 classes/Channel.php:215 +#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221 msgid "Command failed" msgstr "O comando falhou" -#: classes/Command.php:39 classes/Command.php:44 +#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44 msgid "Sorry, this command is not yet implemented." msgstr "Desculpe, mas esse comando ainda não foi implementado." @@ -3280,90 +3830,112 @@ msgid "Subscriptions: %1$s\n" msgstr "Assinaturas: %1$s\n" #: classes/Command.php:125 classes/Command.php:242 classes/Command.php:145 -#: classes/Command.php:276 +#: classes/Command.php:276 lib/command.php:145 lib/command.php:276 +#: lib/command.php:138 lib/command.php:269 lib/command.php:168 +#: lib/command.php:416 lib/command.php:471 msgid "User has no last notice" msgstr "O usuário não tem uma \"última mensagem\"" -#: classes/Command.php:146 classes/Command.php:166 +#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166 +#: lib/command.php:159 lib/command.php:190 msgid "Notice marked as fave." msgstr "Mensagem marcada como favorita." -#: classes/Command.php:166 classes/Command.php:189 +#: classes/Command.php:166 classes/Command.php:189 lib/command.php:189 +#: lib/command.php:182 lib/command.php:315 #, php-format msgid "%1$s (%2$s)" msgstr "%1$s (%2$s)" -#: classes/Command.php:169 classes/Command.php:192 +#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192 +#: lib/command.php:185 lib/command.php:318 #, php-format msgid "Fullname: %s" msgstr "Nome completo: %s" -#: classes/Command.php:172 classes/Command.php:195 +#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195 +#: lib/command.php:188 lib/command.php:321 #, php-format msgid "Location: %s" msgstr "Localização: %s" -#: classes/Command.php:175 classes/Command.php:198 +#: classes/Command.php:175 classes/Command.php:198 lib/command.php:198 +#: lib/command.php:191 lib/command.php:324 #, php-format msgid "Homepage: %s" msgstr "Site: %s" -#: classes/Command.php:178 classes/Command.php:201 +#: classes/Command.php:178 classes/Command.php:201 lib/command.php:201 +#: lib/command.php:194 lib/command.php:327 #, php-format msgid "About: %s" msgstr "Sobre: %s" -#: classes/Command.php:200 classes/Command.php:228 +#: classes/Command.php:200 classes/Command.php:228 lib/command.php:228 +#: lib/command.php:221 #, php-format msgid "Message too long - maximum is 140 characters, you sent %d" msgstr "" "A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" -#: classes/Command.php:214 classes/Command.php:245 +#: classes/Command.php:214 classes/Command.php:245 lib/command.php:245 +#: actions/newmessage.php:182 lib/command.php:238 actions/newmessage.php:185 +#: lib/command.php:375 #, php-format msgid "Direct message to %s sent" msgstr "A mensagem direta para %s foi enviada" -#: classes/Command.php:216 classes/Command.php:247 +#: classes/Command.php:216 classes/Command.php:247 lib/command.php:247 +#: lib/command.php:240 lib/command.php:377 msgid "Error sending direct message." msgstr "Ocorreu um erro durante o envio da mensagem direta." -#: classes/Command.php:263 classes/Command.php:300 +#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300 +#: lib/command.php:293 lib/command.php:495 msgid "Specify the name of the user to subscribe to" msgstr "Especifique o nome do usuário que será assinado" -#: classes/Command.php:270 classes/Command.php:307 +#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307 +#: lib/command.php:300 lib/command.php:502 #, php-format msgid "Subscribed to %s" msgstr "Efetuada a assinatura de %s" -#: classes/Command.php:288 classes/Command.php:328 +#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328 +#: lib/command.php:321 lib/command.php:523 msgid "Specify the name of the user to unsubscribe from" msgstr "Especifique o nome do usuário que deixará de ser assinado" -#: classes/Command.php:295 classes/Command.php:335 +#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335 +#: lib/command.php:328 lib/command.php:530 #, php-format msgid "Unsubscribed from %s" msgstr "Cancelada a assinatura de %s" #: classes/Command.php:310 classes/Command.php:330 classes/Command.php:353 -#: classes/Command.php:376 +#: classes/Command.php:376 lib/command.php:353 lib/command.php:376 +#: lib/command.php:346 lib/command.php:369 lib/command.php:548 +#: lib/command.php:571 msgid "Command not yet implemented." msgstr "O comando não foi implementado ainda." -#: classes/Command.php:313 classes/Command.php:356 +#: classes/Command.php:313 classes/Command.php:356 lib/command.php:356 +#: lib/command.php:349 lib/command.php:551 msgid "Notification off." msgstr "Notificação desligada." -#: classes/Command.php:315 classes/Command.php:358 +#: classes/Command.php:315 classes/Command.php:358 lib/command.php:358 +#: lib/command.php:351 lib/command.php:553 msgid "Can't turn off notification." msgstr "Não é possível desligar a notificação" -#: classes/Command.php:333 classes/Command.php:379 +#: classes/Command.php:333 classes/Command.php:379 lib/command.php:379 +#: lib/command.php:372 lib/command.php:574 msgid "Notification on." msgstr "Notificação ligada." -#: classes/Command.php:335 classes/Command.php:381 +#: classes/Command.php:335 classes/Command.php:381 lib/command.php:381 +#: lib/command.php:374 lib/command.php:576 msgid "Can't turn on notification." msgstr "Não é possível ligar a notificação." @@ -3371,11 +3943,11 @@ msgstr "Não é possível ligar a notificação." msgid "Commands:\n" msgstr "Comandos:\n" -#: classes/Message.php:53 classes/Message.php:56 +#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55 msgid "Could not insert message." msgstr "Não foi possível inserir a mensagem." -#: classes/Message.php:63 classes/Message.php:66 +#: classes/Message.php:63 classes/Message.php:66 classes/Message.php:65 msgid "Could not update message with new URI." msgstr "Não foi possível atualizar a mensagem com a nova URI." @@ -3392,7 +3964,7 @@ msgstr "" "Você tem um novo endereço para publicação no %1$s.\n" "\n" -#: lib/mail.php:249 lib/mail.php:508 +#: lib/mail.php:249 lib/mail.php:508 lib/mail.php:509 #, php-format msgid "New private message from %s" msgstr "Nova mensagem particular de %s" @@ -3406,7 +3978,7 @@ msgstr "" "%1$s (%2$s) enviou uma mensagem particular para você:\n" "\n" -#: lib/mailbox.php:43 lib/mailbox.php:89 +#: lib/mailbox.php:43 lib/mailbox.php:89 lib/mailbox.php:91 msgid "Only the user can read their own mailboxes." msgstr "As caixas postais são legíveis somente pelo seu próprio usuário." @@ -3415,31 +3987,39 @@ msgid "This form should automatically submit itself. " msgstr "Este formulário deve enviar-se automaticamente. " #: lib/personal.php:65 lib/personalgroupnav.php:113 +#: lib/personalgroupnav.php:114 msgid "Favorites" msgstr "Favoritas" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: actions/favoritesrss.php:110 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 actions/favoritesrss.php:111 #, php-format msgid "%s's favorite notices" msgstr "Mensagens favoritas de %s" #: lib/personal.php:66 lib/personalgroupnav.php:114 +#: lib/personalgroupnav.php:115 msgid "User" msgstr "Usuário" #: lib/personal.php:75 lib/personalgroupnav.php:123 +#: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Recebidas" #: lib/personal.php:76 lib/personalgroupnav.php:124 +#: lib/personalgroupnav.php:125 msgid "Your incoming messages" msgstr "Suas mensagens recebidas" #: lib/personal.php:80 lib/personalgroupnav.php:128 +#: lib/personalgroupnav.php:129 msgid "Outbox" msgstr "Enviadas" #: lib/personal.php:81 lib/personalgroupnav.php:129 +#: lib/personalgroupnav.php:130 msgid "Your sent messages" msgstr "Suas mensagens enviadas" @@ -3452,14 +4032,19 @@ msgid "Twitter integration options" msgstr "Opções de integração com o Twitter" #: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422 +#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135 +#: lib/noticelist.php:433 lib/messageform.php:146 msgid "To" msgstr "Para" #: scripts/maildaemon.php:45 scripts/maildaemon.php:48 +#: scripts/maildaemon.php:47 msgid "Could not parse message." msgstr "Não foi possível analisar a mensagem." -#: actions/all.php:63 actions/facebookhome.php:162 +#: actions/all.php:63 actions/facebookhome.php:162 actions/all.php:66 +#: actions/facebookhome.php:161 actions/all.php:48 +#: actions/facebookhome.php:156 actions/all.php:84 #, php-format msgid "%s and friends, page %d" msgstr "%s e amigos, página %d" @@ -3469,21 +4054,31 @@ msgid "You can upload your personal avatar." msgstr "Você pode enviar seu avatar pessoal." #: actions/avatarsettings.php:117 actions/avatarsettings.php:191 -#: actions/grouplogo.php:250 +#: actions/grouplogo.php:250 actions/avatarsettings.php:119 +#: actions/avatarsettings.php:194 actions/grouplogo.php:256 +#: actions/grouplogo.php:251 msgid "Avatar settings" msgstr "Configurações do avatar" #: actions/avatarsettings.php:124 actions/avatarsettings.php:199 #: actions/grouplogo.php:198 actions/grouplogo.php:258 +#: actions/avatarsettings.php:126 actions/avatarsettings.php:202 +#: actions/grouplogo.php:204 actions/grouplogo.php:264 +#: actions/grouplogo.php:199 actions/grouplogo.php:259 msgid "Original" msgstr "Original" #: actions/avatarsettings.php:139 actions/avatarsettings.php:211 #: actions/grouplogo.php:209 actions/grouplogo.php:270 +#: actions/avatarsettings.php:141 actions/avatarsettings.php:214 +#: actions/grouplogo.php:215 actions/grouplogo.php:276 +#: actions/grouplogo.php:210 actions/grouplogo.php:271 msgid "Preview" msgstr "Visualização" #: actions/avatarsettings.php:225 actions/grouplogo.php:284 +#: actions/avatarsettings.php:228 actions/grouplogo.php:291 +#: actions/grouplogo.php:286 msgid "Crop" msgstr "Cortar" @@ -3500,34 +4095,43 @@ msgid "There was a problem with your session token. " msgstr "Ocorreu um problema com o seu token de sessão. " #: actions/avatarsettings.php:303 actions/grouplogo.php:360 +#: actions/avatarsettings.php:308 msgid "Pick a square area of the image to be your avatar" msgstr "Selecione uma área quadrada da imagem para ser seu avatar" #: actions/avatarsettings.php:327 actions/grouplogo.php:384 +#: actions/avatarsettings.php:323 actions/grouplogo.php:382 +#: actions/grouplogo.php:377 msgid "Lost our file data." msgstr "Nossos dados do arquivo foi perdido." #: actions/avatarsettings.php:334 actions/grouplogo.php:391 -#: classes/User_group.php:112 +#: classes/User_group.php:112 lib/imagefile.php:112 lib/imagefile.php:113 +#: lib/imagefile.php:118 msgid "Lost our file." msgstr "Nosso arquivo foi perdido." #: actions/avatarsettings.php:349 actions/avatarsettings.php:383 #: actions/grouplogo.php:406 actions/grouplogo.php:440 -#: classes/User_group.php:129 classes/User_group.php:161 +#: classes/User_group.php:129 classes/User_group.php:161 lib/imagefile.php:144 +#: lib/imagefile.php:191 lib/imagefile.php:145 lib/imagefile.php:192 +#: lib/imagefile.php:150 lib/imagefile.php:197 msgid "Unknown file type" msgstr "Tipo de arquivo desconhecido" #: actions/block.php:69 actions/subedit.php:46 actions/unblock.php:70 +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 msgid "No profile specified." msgstr "Não foi especificado nenhum perfil." #: actions/block.php:74 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/unblock.php:75 actions/groupblock.php:76 +#: actions/groupunblock.php:76 actions/makeadmin.php:76 msgid "No profile with that ID." msgstr "Não foi encontrado nenhum perfil com esse ID." -#: actions/block.php:111 +#: actions/block.php:111 actions/block.php:134 msgid "Block user" msgstr "Bloquear usuário" @@ -3535,11 +4139,11 @@ msgstr "Bloquear usuário" msgid "Are you sure you want to block this user? " msgstr "Você tem certeza que deseja bloquear esse usuário?" -#: actions/block.php:162 +#: actions/block.php:162 actions/block.php:165 msgid "You have already blocked this user." msgstr "Você já bloqueou esse usuário." -#: actions/block.php:167 +#: actions/block.php:167 actions/block.php:170 msgid "Failed to save block information." msgstr "Não foi possível salvar a informação de bloqueio." @@ -3556,38 +4160,56 @@ msgstr "Você está prestes a apagar permanentemente uma mensagem. " msgid "Add to favorites" msgstr "Adicionar aos favoritos" -#: actions/editgroup.php:54 +#: actions/editgroup.php:54 actions/editgroup.php:56 #, php-format msgid "Edit %s group" msgstr "Editar o grupo %s" #: actions/editgroup.php:66 actions/groupbyid.php:72 actions/grouplogo.php:66 #: actions/joingroup.php:60 actions/newgroup.php:65 actions/showgroup.php:100 +#: actions/grouplogo.php:70 actions/grouprss.php:80 actions/editgroup.php:68 +#: actions/groupdesignsettings.php:68 actions/showgroup.php:105 msgid "Inboxes must be enabled for groups to work" msgstr "" #: actions/editgroup.php:71 actions/grouplogo.php:71 actions/newgroup.php:70 +#: actions/grouplogo.php:75 actions/editgroup.php:73 actions/editgroup.php:68 +#: actions/grouplogo.php:70 actions/newgroup.php:65 msgid "You must be logged in to create a group." msgstr "Você deve estar logado para criar um grupo." #: actions/editgroup.php:87 actions/grouplogo.php:87 #: actions/groupmembers.php:76 actions/joingroup.php:81 -#: actions/showgroup.php:121 +#: actions/showgroup.php:121 actions/grouplogo.php:91 actions/grouprss.php:96 +#: actions/blockedfromgroup.php:73 actions/editgroup.php:89 +#: actions/groupdesignsettings.php:89 actions/showgroup.php:126 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76 msgid "No nickname" msgstr "Nenhum apelido" #: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100 #: actions/groupmembers.php:83 actions/joingroup.php:88 -#: actions/showgroup.php:128 +#: actions/showgroup.php:128 actions/grouplogo.php:104 +#: actions/grouprss.php:103 actions/blockedfromgroup.php:80 +#: actions/editgroup.php:101 actions/groupdesignsettings.php:102 +#: actions/showgroup.php:133 actions/editgroup.php:96 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:97 actions/grouplogo.php:99 +#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137 msgid "No such group" msgstr "Esse grupo não existe" #: actions/editgroup.php:106 actions/editgroup.php:165 -#: actions/grouplogo.php:107 +#: actions/grouplogo.php:107 actions/grouplogo.php:111 +#: actions/editgroup.php:108 actions/editgroup.php:167 +#: actions/groupdesignsettings.php:109 actions/editgroup.php:103 +#: actions/editgroup.php:168 actions/groupdesignsettings.php:104 +#: actions/grouplogo.php:106 msgid "You must be an admin to edit the group" msgstr "Você deve ser o administrador do grupo para editá-lo" -#: actions/editgroup.php:157 +#: actions/editgroup.php:157 actions/editgroup.php:159 +#: actions/editgroup.php:154 msgid "Use this form to edit the group." msgstr "Use esse formulário para editar o grupo." @@ -3596,14 +4218,15 @@ msgid "Nickname must have only lowercase letters " msgstr "O apelido deve conter apenas letras minúsculas " #: actions/editgroup.php:198 actions/newgroup.php:149 +#: actions/editgroup.php:200 actions/newgroup.php:150 msgid "description is too long (max 140 chars)." msgstr "descrição muito extensa (máximo 140 caracteres)." -#: actions/editgroup.php:218 +#: actions/editgroup.php:218 actions/editgroup.php:253 msgid "Could not update group." msgstr "Não foi possível atualizar o grupo." -#: actions/editgroup.php:226 +#: actions/editgroup.php:226 actions/editgroup.php:269 msgid "Options saved." msgstr "As configurações foram salvas." @@ -3620,7 +4243,8 @@ msgstr "Cria um novo endereço de e-mail para publicar no; " msgid "Send me email when someone " msgstr "Envie-me um e-mail quando alguém " -#: actions/emailsettings.php:168 +#: actions/emailsettings.php:168 actions/emailsettings.php:173 +#: actions/emailsettings.php:179 msgid "Allow friends to nudge me and send me an email." msgstr "Permitir que meus amigos chamem minha atenção e enviem-me um e-mail." @@ -3634,7 +4258,7 @@ msgstr "" "Um código de confirmação foi enviado para o endereço de e-mail que você " "informou. " -#: actions/facebookhome.php:110 +#: actions/facebookhome.php:110 actions/facebookhome.php:109 msgid "Server error - couldn't get user!" msgstr "Erro no servidor - não foi possível obter o usuário!" @@ -3648,51 +4272,66 @@ msgstr "Se você deseja que o aplicativo %s atualize automaticamente " msgid "Allow %s to update my Facebook status" msgstr "Permitir que %s atualize meu status no Facebook" -#: actions/facebookhome.php:218 +#: actions/facebookhome.php:218 actions/facebookhome.php:223 +#: actions/facebookhome.php:217 msgid "Skip" msgstr "Pular" -#: actions/facebookhome.php:235 +#: actions/facebookhome.php:235 lib/facebookaction.php:479 +#: lib/facebookaction.php:471 msgid "No notice content!" msgstr "Nenhum conteúdo!" #: actions/facebookhome.php:295 lib/action.php:870 lib/facebookaction.php:399 +#: actions/facebookhome.php:253 lib/action.php:973 lib/facebookaction.php:433 +#: actions/facebookhome.php:247 lib/action.php:1037 lib/facebookaction.php:435 +#: lib/action.php:1053 msgid "Pagination" msgstr "Paginação" #: actions/facebookhome.php:304 lib/action.php:879 lib/facebookaction.php:408 +#: actions/facebookhome.php:262 lib/action.php:982 lib/facebookaction.php:442 +#: actions/facebookhome.php:256 lib/action.php:1046 lib/facebookaction.php:444 +#: lib/action.php:1062 msgid "After" msgstr "Próximo" #: actions/facebookhome.php:312 lib/action.php:887 lib/facebookaction.php:416 +#: actions/facebookhome.php:270 lib/action.php:990 lib/facebookaction.php:450 +#: actions/facebookhome.php:264 lib/action.php:1054 lib/facebookaction.php:452 +#: lib/action.php:1070 msgid "Before" msgstr "Anterior" -#: actions/facebookinvite.php:70 +#: actions/facebookinvite.php:70 actions/facebookinvite.php:72 #, php-format msgid "Thanks for inviting your friends to use %s" msgstr "Obrigado por convidar seus amigos para usar o %s" -#: actions/facebookinvite.php:72 +#: actions/facebookinvite.php:72 actions/facebookinvite.php:74 msgid "Invitations have been sent to the following users:" msgstr "Foram enviados convites para os seguintes usuários:" -#: actions/facebookinvite.php:96 +#: actions/facebookinvite.php:96 actions/facebookinvite.php:102 +#: actions/facebookinvite.php:94 #, php-format msgid "You have been invited to %s" msgstr "Você foi convidado por %s" -#: actions/facebookinvite.php:105 +#: actions/facebookinvite.php:105 actions/facebookinvite.php:111 +#: actions/facebookinvite.php:103 #, php-format msgid "Invite your friends to use %s" msgstr "Convide seus amigos para usar o %s" -#: actions/facebookinvite.php:113 +#: actions/facebookinvite.php:113 actions/facebookinvite.php:126 +#: actions/facebookinvite.php:124 #, php-format msgid "Friends already using %s:" msgstr "Amigos que já utilizam o %s:" -#: actions/facebookinvite.php:130 +#: actions/facebookinvite.php:130 actions/facebookinvite.php:143 +#: actions/facebookinvite.php:142 #, php-format msgid "Send invitations" msgstr "Enviar convites" @@ -3737,12 +4376,14 @@ msgstr "Se você deseja que %s atualize automaticamente " msgid "Sync preferences" msgstr "Preferências de sincronização" -#: actions/favor.php:94 lib/disfavorform.php:140 +#: actions/favor.php:94 lib/disfavorform.php:140 actions/favor.php:92 msgid "Disfavor favorite" msgstr "Excluir a favorita" #: actions/favorited.php:65 lib/popularnoticesection.php:76 -#: lib/publicgroupnav.php:91 +#: lib/publicgroupnav.php:91 lib/popularnoticesection.php:82 +#: lib/publicgroupnav.php:93 lib/popularnoticesection.php:91 +#: lib/popularnoticesection.php:87 msgid "Popular notices" msgstr "Mensagens populares" @@ -3756,7 +4397,8 @@ msgid "The most popular notices on the site right now." msgstr "As etiquetas mais populares no site agora." #: actions/featured.php:69 lib/featureduserssection.php:82 -#: lib/publicgroupnav.php:87 +#: lib/publicgroupnav.php:87 lib/publicgroupnav.php:89 +#: lib/featureduserssection.php:87 msgid "Featured users" msgstr "Usuários de destaque" @@ -3770,15 +4412,17 @@ msgstr "Usuários de destaque, pág. %d" msgid "A selection of some of the great users on %s" msgstr "" -#: actions/finishremotesubscribe.php:188 +#: actions/finishremotesubscribe.php:188 actions/finishremotesubscribe.php:96 msgid "That user has blocked you from subscribing." msgstr "Esse usuário bloqueou o seu pedido de assinatura." -#: actions/groupbyid.php:79 +#: actions/groupbyid.php:79 actions/groupbyid.php:74 msgid "No ID" msgstr "" #: actions/grouplogo.php:138 actions/grouplogo.php:191 +#: actions/grouplogo.php:144 actions/grouplogo.php:197 +#: actions/grouplogo.php:139 actions/grouplogo.php:192 msgid "Group logo" msgstr "" @@ -3786,12 +4430,14 @@ msgstr "" msgid "You can upload a logo image for your group." msgstr "" -#: actions/grouplogo.php:448 +#: actions/grouplogo.php:448 actions/grouplogo.php:401 +#: actions/grouplogo.php:396 #, fuzzy msgid "Logo updated." msgstr "O avatar foi atualizado." -#: actions/grouplogo.php:450 +#: actions/grouplogo.php:450 actions/grouplogo.php:403 +#: actions/grouplogo.php:398 #, fuzzy msgid "Failed updating logo." msgstr "Não foi possível atualizar o avatar." @@ -3811,7 +4457,8 @@ msgid "A list of the users in this group." msgstr "" #: actions/groups.php:62 actions/showstream.php:518 lib/publicgroupnav.php:79 -#: lib/subgroupnav.php:96 +#: lib/subgroupnav.php:96 lib/publicgroupnav.php:81 lib/profileaction.php:220 +#: lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -3826,6 +4473,7 @@ msgid "%%%%site.name%%%% groups let you find and talk with " msgstr "" #: actions/groups.php:106 actions/usergroups.php:124 lib/groupeditform.php:123 +#: actions/usergroups.php:125 actions/groups.php:107 lib/groupeditform.php:122 #, fuzzy msgid "Create a new group" msgstr "Criar uma nova conta" @@ -3838,7 +4486,7 @@ msgstr "" "Procurar por pessoas no %%site.name%% pelo seu nome, localização ou " "interesses. " -#: actions/groupsearch.php:63 +#: actions/groupsearch.php:63 actions/groupsearch.php:58 #, fuzzy msgid "Group search" msgstr "Procurar pessoas" @@ -3863,23 +4511,23 @@ msgstr "Envie-me as mensagens via Jabber/GTalk." msgid "A confirmation code was sent " msgstr "Nenhum código de confirmação." -#: actions/joingroup.php:65 +#: actions/joingroup.php:65 actions/joingroup.php:60 #, fuzzy msgid "You must be logged in to join a group." msgstr "" "Você deve estar autenticado para convidar outros usuários para usar o %s" -#: actions/joingroup.php:95 +#: actions/joingroup.php:95 actions/joingroup.php:90 lib/command.php:217 #, fuzzy msgid "You are already a member of that group" msgstr "Você já está assinando esses usuários:" -#: actions/joingroup.php:128 +#: actions/joingroup.php:128 actions/joingroup.php:133 lib/command.php:234 #, fuzzy, php-format msgid "Could not join user %s to group %s" msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." -#: actions/joingroup.php:135 +#: actions/joingroup.php:135 actions/joingroup.php:140 lib/command.php:239 #, fuzzy, php-format msgid "%s joined group %s" msgstr "%s / Favoritas de %s" @@ -3888,18 +4536,21 @@ msgstr "%s / Favoritas de %s" msgid "Inboxes must be enabled for groups to work." msgstr "" -#: actions/leavegroup.php:65 +#: actions/leavegroup.php:65 actions/leavegroup.php:60 #, fuzzy msgid "You must be logged in to leave a group." msgstr "" "Você deve estar autenticado para convidar outros usuários para usar o %s" -#: actions/leavegroup.php:88 +#: actions/leavegroup.php:88 actions/groupblock.php:86 +#: actions/groupunblock.php:86 actions/makeadmin.php:86 +#: actions/foafgroup.php:44 actions/foafgroup.php:62 actions/leavegroup.php:83 +#: lib/command.php:212 lib/command.php:263 #, fuzzy msgid "No such group." msgstr "Essa etiqueta não existe." -#: actions/leavegroup.php:95 +#: actions/leavegroup.php:95 actions/leavegroup.php:90 lib/command.php:268 #, fuzzy msgid "You are not a member of that group." msgstr "Você não está assinando esse perfil." @@ -3909,22 +4560,26 @@ msgstr "Você não está assinando esse perfil." msgid "You may not leave a group while you are its administrator." msgstr "Você não pode apagar o status de outro usuário." -#: actions/leavegroup.php:130 +#: actions/leavegroup.php:130 actions/leavegroup.php:124 +#: actions/leavegroup.php:119 lib/command.php:278 #, fuzzy msgid "Could not find membership record." msgstr "Não foi possível atualizar o registro do usuário." -#: actions/leavegroup.php:138 +#: actions/leavegroup.php:138 actions/leavegroup.php:132 +#: actions/leavegroup.php:127 lib/command.php:284 #, fuzzy, php-format msgid "Could not remove user %s to group %s" msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." -#: actions/leavegroup.php:145 +#: actions/leavegroup.php:145 actions/leavegroup.php:139 +#: actions/leavegroup.php:134 lib/command.php:289 #, php-format msgid "%s left group %s" msgstr "" -#: actions/login.php:225 lib/facebookaction.php:304 +#: actions/login.php:225 lib/facebookaction.php:304 actions/login.php:208 +#: actions/login.php:216 msgid "Login to site" msgstr "" @@ -3936,17 +4591,19 @@ msgstr "Nenhum status atual" msgid "New group" msgstr "" -#: actions/newgroup.php:115 +#: actions/newgroup.php:115 actions/newgroup.php:110 #, fuzzy msgid "Use this form to create a new group." msgstr "Você pode criar uma nova conta usando esse formulário. " -#: actions/newgroup.php:177 +#: actions/newgroup.php:177 actions/newgroup.php:209 +#: actions/apigroupcreate.php:136 actions/newgroup.php:204 #, fuzzy msgid "Could not create group." msgstr "Não foi possível criar a favorita." -#: actions/newgroup.php:191 +#: actions/newgroup.php:191 actions/newgroup.php:229 +#: actions/apigroupcreate.php:166 actions/newgroup.php:224 #, fuzzy msgid "Could not set group membership." msgstr "Não foi possível salvar a assinatura." @@ -3961,11 +4618,14 @@ msgstr "Esse arquivo é muito grande." msgid "Don't send a message to yourself; " msgstr "Você não pode enviar uma mensagem para esse usuário." -#: actions/newnotice.php:166 +#: actions/newnotice.php:166 actions/newnotice.php:174 +#: actions/newnotice.php:272 actions/newnotice.php:199 msgid "Notice posted" msgstr "Mensagem publicada" -#: actions/newnotice.php:200 classes/Channel.php:163 +#: actions/newnotice.php:200 classes/Channel.php:163 actions/newnotice.php:208 +#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387 +#: actions/newmessage.php:210 actions/newnotice.php:233 msgid "Ajax Error" msgstr "Erro no Ajax" @@ -3984,7 +4644,7 @@ msgstr "Chamada de atenção enviada" msgid "Nudge sent!" msgstr "Chamada de atenção enviada!" -#: actions/openidlogin.php:97 +#: actions/openidlogin.php:97 actions/openidlogin.php:106 #, fuzzy msgid "OpenID login" msgstr "Autenticar-se via OpenID" @@ -4010,11 +4670,13 @@ msgstr "Encolhimento automático de URL" msgid "Service" msgstr "Serviço" -#: actions/othersettings.php:113 +#: actions/othersettings.php:113 actions/othersettings.php:111 +#: actions/othersettings.php:118 msgid "Automatic shortening service to use." msgstr "Serviço de encolhimento automático a ser utilizado." -#: actions/othersettings.php:144 +#: actions/othersettings.php:144 actions/othersettings.php:146 +#: actions/othersettings.php:153 msgid "URL shortening service is too long (max 50 chars)." msgstr "O serviço de encolhimento de URL é muito extenso (máx. 50 caracteres)." @@ -4023,17 +4685,18 @@ msgstr "O serviço de encolhimento de URL é muito extenso (máx. 50 caracteres) msgid "Change your password." msgstr "Altera a sua senha" -#: actions/passwordsettings.php:89 +#: actions/passwordsettings.php:89 actions/recoverpassword.php:228 +#: actions/passwordsettings.php:95 actions/recoverpassword.php:231 #, fuzzy msgid "Password change" msgstr "A senha foi salva." -#: actions/peopletag.php:35 +#: actions/peopletag.php:35 actions/peopletag.php:70 #, php-format msgid "Not a valid people tag: %s" msgstr "Não é uma etiqueta de pessoa válida: %s" -#: actions/peopletag.php:47 +#: actions/peopletag.php:47 actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %s - page %d" msgstr "Usuários auto-etiquetados com %s - pág. %d" @@ -4043,12 +4706,13 @@ msgstr "Usuários auto-etiquetados com %s - pág. %d" msgid "These are users who have tagged themselves \"%s\" " msgstr "Esses são os usuários que se auto-etiquetaram como \"%s\" " -#: actions/profilesettings.php:91 +#: actions/profilesettings.php:91 actions/profilesettings.php:99 #, fuzzy msgid "Profile information" msgstr "Perfil desconhecido" -#: actions/profilesettings.php:124 +#: actions/profilesettings.php:124 actions/profilesettings.php:125 +#: actions/profilesettings.php:140 msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" @@ -4061,20 +4725,25 @@ msgid "Automatically subscribe to whoever " msgstr "Assinar automaticamente à quem me assinar (melhor para não humanos)" #: actions/profilesettings.php:229 actions/tagother.php:176 +#: actions/tagother.php:178 actions/profilesettings.php:230 +#: actions/profilesettings.php:246 #, php-format msgid "Invalid tag: \"%s\"" msgstr "Etiqueta inválida: \"%s\"" -#: actions/profilesettings.php:311 +#: actions/profilesettings.php:311 actions/profilesettings.php:310 +#: actions/profilesettings.php:336 msgid "Couldn't save tags." msgstr "Não foi possível salvar as etiquetas." -#: actions/public.php:107 +#: actions/public.php:107 actions/public.php:110 actions/public.php:118 +#: actions/public.php:129 #, fuzzy, php-format msgid "Public timeline, page %d" msgstr "Mensagens públicas" -#: actions/public.php:173 +#: actions/public.php:173 actions/public.php:184 actions/public.php:210 +#: actions/public.php:92 msgid "Could not retrieve public stream." msgstr "Não foi possível recuperar o fluxo público." @@ -4097,11 +4766,13 @@ msgstr "Fluxo de mensagens públicas" msgid "These are most popular recent tags on %s " msgstr "" -#: actions/publictagcloud.php:119 +#: actions/publictagcloud.php:119 actions/publictagcloud.php:135 msgid "Tag cloud" msgstr "" -#: actions/register.php:139 actions/register.php:349 +#: actions/register.php:139 actions/register.php:349 actions/register.php:79 +#: actions/register.php:177 actions/register.php:394 actions/register.php:183 +#: actions/register.php:398 msgid "Sorry, only invited people can register." msgstr "Desculpe, somente convidados podem se registrar." @@ -4163,7 +4834,8 @@ msgstr "(Você receberá uma mensagem por e-mail a qualquer momento, com " msgid "That's a local profile! Login to subscribe." msgstr "Esse é um perfil local! Autentique-se para assinar." -#: actions/replies.php:118 +#: actions/replies.php:118 actions/replies.php:120 actions/replies.php:119 +#: actions/replies.php:127 #, fuzzy, php-format msgid "Replies to %s, page %d" msgstr "Respostas para %s" @@ -4173,55 +4845,76 @@ msgstr "Respostas para %s" msgid "%s favorite notices, page %d" msgstr "Mensagens favoritas de %s" -#: actions/showgroup.php:77 lib/groupnav.php:85 +#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82 #, php-format msgid "%s group" msgstr "" -#: actions/showgroup.php:79 +#: actions/showgroup.php:79 actions/showgroup.php:84 #, php-format msgid "%s group, page %d" msgstr "" -#: actions/showgroup.php:206 +#: actions/showgroup.php:206 actions/showgroup.php:208 +#: actions/showgroup.php:213 actions/showgroup.php:218 #, fuzzy msgid "Group profile" msgstr "Esse perfil não existe." #: actions/showgroup.php:251 actions/showstream.php:278 #: actions/tagother.php:119 lib/grouplist.php:134 lib/profilelist.php:133 +#: actions/showgroup.php:253 actions/showstream.php:271 +#: actions/tagother.php:118 lib/profilelist.php:131 actions/showgroup.php:258 +#: actions/showstream.php:236 actions/userauthorization.php:137 +#: lib/profilelist.php:197 actions/showgroup.php:263 +#: actions/showstream.php:295 actions/userauthorization.php:167 +#: lib/profilelist.php:230 msgid "URL" msgstr "" #: actions/showgroup.php:262 actions/showstream.php:289 #: actions/tagother.php:129 lib/grouplist.php:145 lib/profilelist.php:144 +#: actions/showgroup.php:264 actions/showstream.php:282 +#: actions/tagother.php:128 lib/profilelist.php:142 actions/showgroup.php:269 +#: actions/showstream.php:247 actions/userauthorization.php:149 +#: lib/profilelist.php:212 actions/showgroup.php:274 +#: actions/showstream.php:312 actions/userauthorization.php:179 +#: lib/profilelist.php:245 #, fuzzy msgid "Note" msgstr "Mensagens" -#: actions/showgroup.php:270 +#: actions/showgroup.php:270 actions/showgroup.php:272 +#: actions/showgroup.php:288 actions/showgroup.php:293 #, fuzzy msgid "Group actions" msgstr "Outras opções" -#: actions/showgroup.php:323 +#: actions/showgroup.php:323 actions/showgroup.php:304 #, fuzzy, php-format msgid "Notice feed for %s group" msgstr "Mensagens de %s" -#: actions/showgroup.php:357 lib/groupnav.php:90 +#: actions/showgroup.php:357 lib/groupnav.php:90 actions/showgroup.php:339 +#: actions/showgroup.php:384 actions/showgroup.php:373 +#: actions/showgroup.php:430 actions/showgroup.php:381 +#: actions/showgroup.php:438 #, fuzzy msgid "Members" msgstr "Membro desde" #: actions/showgroup.php:363 actions/showstream.php:413 #: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95 -#: lib/tagcloudsection.php:71 +#: lib/tagcloudsection.php:71 actions/showgroup.php:344 +#: actions/showgroup.php:378 lib/profileaction.php:117 +#: lib/profileaction.php:148 lib/profileaction.php:226 +#: actions/showgroup.php:386 #, fuzzy msgid "(None)" msgstr "(nenhum)" -#: actions/showgroup.php:370 +#: actions/showgroup.php:370 actions/showgroup.php:350 +#: actions/showgroup.php:384 actions/showgroup.php:392 msgid "All members" msgstr "" @@ -4239,7 +4932,7 @@ msgstr "" msgid "Only the sender and recipient " msgstr "Apenas o remetente e o destinatário podem ler essa mensagem." -#: actions/showstream.php:73 +#: actions/showstream.php:73 actions/showstream.php:78 #, fuzzy, php-format msgid "%s, page %d" msgstr "Recebidas por %s - pág. %d" @@ -4250,35 +4943,42 @@ msgid "'s profile" msgstr "Perfil" #: actions/showstream.php:236 actions/tagother.php:77 +#: actions/showstream.php:220 actions/showstream.php:185 +#: actions/showstream.php:193 #, fuzzy msgid "User profile" msgstr "O usuário não tem perfil." #: actions/showstream.php:240 actions/tagother.php:81 +#: actions/showstream.php:224 actions/showstream.php:189 +#: actions/showstream.php:220 msgid "Photo" msgstr "" -#: actions/showstream.php:317 +#: actions/showstream.php:317 actions/showstream.php:309 +#: actions/showstream.php:274 actions/showstream.php:354 #, fuzzy msgid "User actions" msgstr "Outras opções" -#: actions/showstream.php:342 +#: actions/showstream.php:342 actions/showstream.php:307 +#: actions/showstream.php:390 #, fuzzy msgid "Send a direct message to this user" msgstr "Você não pode enviar uma mensagem para esse usuário." -#: actions/showstream.php:343 +#: actions/showstream.php:343 actions/showstream.php:308 +#: actions/showstream.php:391 #, fuzzy msgid "Message" msgstr "Nova mensagem" -#: actions/showstream.php:451 +#: actions/showstream.php:451 lib/profileaction.php:157 #, fuzzy msgid "All subscribers" msgstr "Assinantes" -#: actions/showstream.php:533 +#: actions/showstream.php:533 lib/profileaction.php:235 msgid "All groups" msgstr "" @@ -4306,7 +5006,7 @@ msgstr "Envie-me as mensagens via Jabber/GTalk." msgid "A confirmation code was sent to the phone number you added. " msgstr "Aguardando a confirmação deste número de telefone." -#: actions/smssettings.php:453 +#: actions/smssettings.php:453 actions/smssettings.php:465 #, fuzzy msgid "Mobile carrier" msgstr "Selecione uma operadora" @@ -4367,16 +5067,17 @@ msgstr "Estas são as pessoas cujas mensagens %s acompanha." msgid "These are the people whose " msgstr "Estas são as pessoas que acompanham as mensagens de %s." -#: actions/subscriptions.php:122 +#: actions/subscriptions.php:122 actions/subscriptions.php:124 +#: actions/subscriptions.php:183 actions/subscriptions.php:194 msgid "Jabber" msgstr "Jabber" -#: actions/tag.php:43 +#: actions/tag.php:43 actions/tag.php:51 actions/tag.php:59 actions/tag.php:68 #, fuzzy, php-format msgid "Notices tagged with %s, page %d" msgstr "Mensagens etiquetadas com %s" -#: actions/tag.php:66 +#: actions/tag.php:66 actions/tag.php:73 #, php-format msgid "Messages tagged \"%s\", most recent first" msgstr "" @@ -4399,7 +5100,7 @@ msgstr "Tag %s" msgid "Tag user" msgstr "Etiquetas" -#: actions/tagother.php:149 +#: actions/tagother.php:149 actions/tagother.php:151 msgid "" "Tags for this user (letters, numbers, -, ., and _), comma- or space- " "separated" @@ -4412,16 +5113,16 @@ msgid "There was a problem with your session token." msgstr "" "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." -#: actions/tagother.php:191 +#: actions/tagother.php:191 actions/tagother.php:193 msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "Você só pode etiquetar pessoas às quais assina ou que assinam você." -#: actions/tagother.php:198 +#: actions/tagother.php:198 actions/tagother.php:200 msgid "Could not save tags." msgstr "Não foi possível salvar as etiquetas." -#: actions/tagother.php:233 +#: actions/tagother.php:233 actions/tagother.php:235 actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" "Use esse formulário para adicionar etiquetas aos seus assinantes ou " @@ -4431,20 +5132,23 @@ msgstr "" msgid "No such tag." msgstr "Essa etiqueta não existe." -#: actions/tagrss.php:66 +#: actions/tagrss.php:66 actions/tagrss.php:64 #, php-format msgid "Microblog tagged with %s" msgstr "Microblogs etiquetados com %s" -#: actions/twitapiblocks.php:47 +#: actions/twitapiblocks.php:47 actions/twitapiblocks.php:49 +#: actions/apiblockcreate.php:108 msgid "Block user failed." msgstr "Não foi possível bloquear o usuário." -#: actions/twitapiblocks.php:69 +#: actions/twitapiblocks.php:69 actions/twitapiblocks.php:71 +#: actions/apiblockdestroy.php:107 msgid "Unblock user failed." msgstr "Não foi possível desbloquear o usuário." -#: actions/twitapiusers.php:48 +#: actions/twitapiusers.php:48 actions/twitapiusers.php:52 +#: actions/twitapiusers.php:50 actions/apiusershow.php:96 msgid "Not found." msgstr "Não encontrado." @@ -4454,15 +5158,16 @@ msgstr "" "Adicione a sua conta do Twitter para enviar suas mensagens para lá " "automaticamente, " -#: actions/twittersettings.php:119 +#: actions/twittersettings.php:119 actions/twittersettings.php:122 msgid "Twitter user name" msgstr "Nome de usuário do Twitter" -#: actions/twittersettings.php:126 +#: actions/twittersettings.php:126 actions/twittersettings.php:129 msgid "Twitter password" msgstr "Senha do Twitter" -#: actions/twittersettings.php:228 +#: actions/twittersettings.php:228 actions/twittersettings.php:232 +#: actions/twittersettings.php:248 msgid "Twitter Friends" msgstr "Amigos do Twitter" @@ -4475,150 +5180,159 @@ msgstr "Nome de usuário deve ter números," msgid "Unable to retrieve account information " msgstr "Não foi possível obter informações da conta" -#: actions/unblock.php:108 +#: actions/unblock.php:108 actions/groupunblock.php:128 msgid "Error removing the block." msgstr "Erro na remoção do bloqueio." -#: actions/unsubscribe.php:50 +#: actions/unsubscribe.php:50 actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Nenhuma ID de perfil na requisição." -#: actions/unsubscribe.php:57 +#: actions/unsubscribe.php:57 actions/unsubscribe.php:84 msgid "No profile with that id." msgstr "Nenhum perfil com essa ID." -#: actions/unsubscribe.php:71 +#: actions/unsubscribe.php:71 actions/unsubscribe.php:98 msgid "Unsubscribed" msgstr "Cancelado" -#: actions/usergroups.php:63 +#: actions/usergroups.php:63 actions/usergroups.php:62 +#: actions/apigrouplistall.php:90 #, php-format msgid "%s groups" msgstr "Grupos de %s" -#: actions/usergroups.php:65 +#: actions/usergroups.php:65 actions/usergroups.php:64 #, php-format msgid "%s groups, page %d" msgstr "Grupos de %s, página %d" -#: classes/Notice.php:104 +#: classes/Notice.php:104 classes/Notice.php:128 classes/Notice.php:144 +#: classes/Notice.php:183 msgid "Problem saving notice. Unknown user." msgstr "Problema no salvamento da mensagem. Usuário desconhecido." -#: classes/Notice.php:109 +#: classes/Notice.php:109 classes/Notice.php:133 classes/Notice.php:149 +#: classes/Notice.php:188 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Muitas mensagens em um período curto de tempo; dê uma respirada e publique " "novamente daqui a alguns minutos." -#: classes/Notice.php:116 +#: classes/Notice.php:116 classes/Notice.php:145 classes/Notice.php:161 +#: classes/Notice.php:202 msgid "You are banned from posting notices on this site." msgstr "Você foi banido de publicar mensagens nesse site." -#: lib/accountsettingsaction.php:108 +#: lib/accountsettingsaction.php:108 lib/accountsettingsaction.php:112 msgid "Upload an avatar" msgstr "Enviar um avatar" -#: lib/accountsettingsaction.php:119 +#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122 +#: lib/accountsettingsaction.php:123 msgid "Other" msgstr "Outras" -#: lib/accountsettingsaction.php:120 +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123 +#: lib/accountsettingsaction.php:124 msgid "Other options" msgstr "Outras opções" -#: lib/action.php:130 +#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144 #, php-format msgid "%s - %s" msgstr "%s - %s" -#: lib/action.php:145 +#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159 msgid "Untitled page" msgstr "Página sem título" -#: lib/action.php:316 +#: lib/action.php:316 lib/action.php:387 lib/action.php:411 lib/action.php:424 msgid "Primary site navigation" msgstr "Navegação primária no site" -#: lib/action.php:322 +#: lib/action.php:322 lib/action.php:393 lib/action.php:417 lib/action.php:430 msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e mensagens dos amigos" -#: lib/action.php:325 +#: lib/action.php:325 lib/action.php:396 lib/action.php:448 lib/action.php:459 msgid "Search for people or text" msgstr "Pesquisar por pessoa ou texto" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Account" msgstr "Conta" -#: lib/action.php:328 +#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432 msgid "Change your email, avatar, password, profile" msgstr "Alterar email, avatar, senha, perfil" -#: lib/action.php:330 +#: lib/action.php:330 lib/action.php:403 lib/action.php:422 msgid "Connect to IM, SMS, Twitter" msgstr "Conectar por IM, SMS, Twitter" -#: lib/action.php:332 +#: lib/action.php:332 lib/action.php:409 lib/action.php:435 lib/action.php:445 msgid "Logout from the site" msgstr "Sair deste site" -#: lib/action.php:335 +#: lib/action.php:335 lib/action.php:412 lib/action.php:443 lib/action.php:453 msgid "Login to the site" msgstr "Entrar" -#: lib/action.php:338 +#: lib/action.php:338 lib/action.php:415 lib/action.php:440 lib/action.php:450 msgid "Create an account" msgstr "Criar uma nova conta" -#: lib/action.php:341 +#: lib/action.php:341 lib/action.php:418 msgid "Login with OpenID" msgstr "Entrar com OpenID" -#: lib/action.php:344 +#: lib/action.php:344 lib/action.php:421 lib/action.php:446 lib/action.php:456 msgid "Help me!" msgstr "Ajuda" -#: lib/action.php:362 +#: lib/action.php:362 lib/action.php:441 lib/action.php:468 lib/action.php:480 #, fuzzy msgid "Site notice" msgstr "Nova mensagem" -#: lib/action.php:417 +#: lib/action.php:417 lib/action.php:504 lib/action.php:531 lib/action.php:546 msgid "Local views" msgstr "" -#: lib/action.php:472 +#: lib/action.php:472 lib/action.php:559 lib/action.php:597 lib/action.php:612 #, fuzzy msgid "Page notice" msgstr "Nova mensagem" -#: lib/action.php:562 +#: lib/action.php:562 lib/action.php:654 lib/action.php:699 lib/action.php:714 #, fuzzy msgid "Secondary site navigation" msgstr "Navegação pelas assinaturas" -#: lib/action.php:602 lib/action.php:623 +#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720 +#: lib/action.php:749 lib/action.php:770 lib/action.php:764 msgid "StatusNet software license" msgstr "" -#: lib/action.php:630 +#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794 #, fuzzy msgid "All " msgstr "Todas" -#: lib/action.php:635 +#: lib/action.php:635 lib/action.php:732 lib/action.php:784 lib/action.php:799 msgid "license." msgstr "" -#: lib/blockform.php:123 lib/blockform.php:153 +#: lib/blockform.php:123 lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 #, fuzzy msgid "Block this user" msgstr "Bloquear usuário" -#: lib/blockform.php:153 +#: lib/blockform.php:153 actions/groupmembers.php:343 +#: actions/groupmembers.php:346 msgid "Block" msgstr "Bloquear" @@ -4631,11 +5345,14 @@ msgstr "Tirar das favoritas" msgid "To use the %s Facebook Application you need to login " msgstr "Para usar a Aplicação do Facebook %s você precisa autenticar-se" -#: lib/facebookaction.php:271 +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#: lib/facebookaction.php:275 msgid " a new account." msgstr " uma nova conta." #: lib/facebookaction.php:557 lib/mailbox.php:214 lib/noticelist.php:354 +#: lib/facebookaction.php:675 lib/mailbox.php:216 lib/noticelist.php:357 +#: lib/mailbox.php:217 lib/noticelist.php:361 msgid "Published" msgstr "Publicado" @@ -4655,31 +5372,36 @@ msgstr "Filtrar etiquetas" msgid "All" msgstr "Todas" -#: lib/galleryaction.php:137 +#: lib/galleryaction.php:137 lib/galleryaction.php:138 +#: lib/galleryaction.php:140 msgid "Tag" msgstr "Etiqueta" -#: lib/galleryaction.php:138 +#: lib/galleryaction.php:138 lib/galleryaction.php:139 +#: lib/galleryaction.php:141 msgid "Choose a tag to narrow list" msgstr "Selecione uma etiqueta para reduzir a lista" -#: lib/galleryaction.php:139 +#: lib/galleryaction.php:139 lib/galleryaction.php:141 +#: lib/galleryaction.php:143 msgid "Go" msgstr "Ir" -#: lib/groupeditform.php:148 +#: lib/groupeditform.php:148 lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL para seu site, blog ou perfil em outro site" -#: lib/groupeditform.php:151 +#: lib/groupeditform.php:151 lib/groupeditform.php:166 +#: lib/groupeditform.php:172 msgid "Description" msgstr "Descrição" -#: lib/groupeditform.php:153 +#: lib/groupeditform.php:153 lib/groupeditform.php:168 msgid "Describe the group or topic in 140 chars" msgstr "Descreva o grupo ou tópico em 140 caracteres." -#: lib/groupeditform.php:158 +#: lib/groupeditform.php:158 lib/groupeditform.php:173 +#: lib/groupeditform.php:179 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"" msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" @@ -4688,20 +5410,20 @@ msgstr "Onde você está, ex: \"cidade, estado (ou região), país\"" msgid "Group" msgstr "Grupo" -#: lib/groupnav.php:100 +#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106 msgid "Admin" msgstr "Admin" -#: lib/groupnav.php:101 +#: lib/groupnav.php:101 lib/groupnav.php:107 #, php-format msgid "Edit %s group properties" msgstr "Editar propriedades do grupo %s" -#: lib/groupnav.php:106 +#: lib/groupnav.php:106 lib/groupnav.php:112 msgid "Logo" msgstr "Logo" -#: lib/groupnav.php:107 +#: lib/groupnav.php:107 lib/groupnav.php:113 #, php-format msgid "Add or edit %s logo" msgstr "Adicionar ou editar logo de %s" @@ -4731,11 +5453,11 @@ msgstr "Entrar" msgid "Leave" msgstr "Sair" -#: lib/logingroupnav.php:76 +#: lib/logingroupnav.php:76 lib/logingroupnav.php:80 msgid "Login with a username and password" msgstr "Autentique-se com um nome de usuário e senha" -#: lib/logingroupnav.php:79 +#: lib/logingroupnav.php:79 lib/logingroupnav.php:86 msgid "Sign up for a new account" msgstr "Cadastre-se para uma nova conta" @@ -4757,17 +5479,17 @@ msgstr "" msgid "%1$s is now listening to " msgstr "%1$s agora está acompanhando " -#: lib/mail.php:254 +#: lib/mail.php:254 lib/mail.php:253 #, php-format msgid "Location: %s\n" msgstr "Localização: %s\n" -#: lib/mail.php:256 +#: lib/mail.php:256 lib/mail.php:255 #, php-format msgid "Homepage: %s\n" msgstr "Site: %s\n" -#: lib/mail.php:258 +#: lib/mail.php:258 lib/mail.php:257 #, php-format msgid "" "Bio: %s\n" @@ -4776,7 +5498,7 @@ msgstr "" "Descrição: %s\n" "\n" -#: lib/mail.php:461 +#: lib/mail.php:461 lib/mail.php:462 #, php-format msgid "You've been nudged by %s" msgstr "Você teve a atenção chamada por %s" @@ -4791,39 +5513,47 @@ msgstr "%1$s (%2$s) quer saber como você está " msgid "%1$s just added your notice from %2$s" msgstr "%1$s acabou de marcar sua mensagem de %2$s" -#: lib/mailbox.php:229 lib/noticelist.php:380 +#: lib/mailbox.php:229 lib/noticelist.php:380 lib/mailbox.php:231 +#: lib/noticelist.php:383 lib/mailbox.php:232 lib/noticelist.php:388 msgid "From" msgstr "De" -#: lib/messageform.php:110 +#: lib/messageform.php:110 lib/messageform.php:109 lib/messageform.php:120 msgid "Send a direct notice" msgstr "Enviar uma mensagem direta" -#: lib/noticeform.php:125 +#: lib/noticeform.php:125 lib/noticeform.php:128 lib/noticeform.php:145 msgid "Send a notice" msgstr "Enviar uma mensagem" -#: lib/noticeform.php:152 +#: lib/noticeform.php:152 lib/noticeform.php:149 lib/messageform.php:162 +#: lib/noticeform.php:173 msgid "Available characters" msgstr "Caracteres disponíveis" -#: lib/noticelist.php:426 +#: lib/noticelist.php:426 lib/noticelist.php:429 msgid "in reply to" msgstr "em resposta à" -#: lib/noticelist.php:447 lib/noticelist.php:450 +#: lib/noticelist.php:447 lib/noticelist.php:450 lib/noticelist.php:451 +#: lib/noticelist.php:454 lib/noticelist.php:458 lib/noticelist.php:461 +#: lib/noticelist.php:498 msgid "Reply to this notice" msgstr "Responder a esta mensagem" -#: lib/noticelist.php:451 +#: lib/noticelist.php:451 lib/noticelist.php:455 lib/noticelist.php:462 +#: lib/noticelist.php:499 msgid "Reply" msgstr "Responder" -#: lib/noticelist.php:471 lib/noticelist.php:474 +#: lib/noticelist.php:471 lib/noticelist.php:474 lib/noticelist.php:476 +#: lib/noticelist.php:479 actions/deletenotice.php:116 lib/noticelist.php:483 +#: lib/noticelist.php:486 actions/deletenotice.php:146 lib/noticelist.php:522 msgid "Delete this notice" msgstr "Excluir esta mensagem" -#: lib/noticelist.php:474 +#: lib/noticelist.php:474 actions/avatarsettings.php:148 +#: lib/noticelist.php:479 lib/noticelist.php:486 lib/noticelist.php:522 msgid "Delete" msgstr "Excluir" @@ -4844,27 +5574,29 @@ msgstr "Chame a atenção deste usuário" msgid "Tags in %s's notices" msgstr "Etiquetas nas mensagens de %s" -#: lib/profilelist.php:182 +#: lib/profilelist.php:182 lib/profilelist.php:180 +#: lib/subscriptionlist.php:126 msgid "(none)" msgstr "(nenhum)" -#: lib/publicgroupnav.php:76 +#: lib/publicgroupnav.php:76 lib/publicgroupnav.php:78 msgid "Public" msgstr "Público" -#: lib/publicgroupnav.php:80 +#: lib/publicgroupnav.php:80 lib/publicgroupnav.php:82 msgid "User groups" msgstr "Grupos de usuário" #: lib/publicgroupnav.php:82 lib/publicgroupnav.php:83 +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" msgstr "Etiquetas recentes" -#: lib/publicgroupnav.php:86 +#: lib/publicgroupnav.php:86 lib/publicgroupnav.php:88 msgid "Featured" msgstr "Destacada" -#: lib/publicgroupnav.php:90 +#: lib/publicgroupnav.php:90 lib/publicgroupnav.php:92 msgid "Popular" msgstr "Popular" @@ -4880,31 +5612,33 @@ msgstr "Procurar por grupos neste site" msgid "Untitled section" msgstr "Seção sem título" -#: lib/subgroupnav.php:81 +#: lib/subgroupnav.php:81 lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" msgstr "Pessoas que %s assina" -#: lib/subgroupnav.php:89 +#: lib/subgroupnav.php:89 lib/subgroupnav.php:91 #, php-format msgid "People subscribed to %s" msgstr "Assinantes de %s" -#: lib/subgroupnav.php:97 +#: lib/subgroupnav.php:97 lib/subgroupnav.php:99 #, php-format msgid "Groups %s is a member of" msgstr "O grupo %s é membro de" -#: lib/subgroupnav.php:104 +#: lib/subgroupnav.php:104 lib/action.php:430 lib/subgroupnav.php:106 +#: lib/action.php:440 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Convide seus amigos e colegas para unir-se a você no %s" -#: lib/subs.php:53 +#: lib/subs.php:53 lib/subs.php:52 msgid "User has blocked you." msgstr "O usuário bloqueou você." #: lib/subscribeform.php:115 lib/subscribeform.php:139 +#: actions/userauthorization.php:178 actions/userauthorization.php:210 msgid "Subscribe to this user" msgstr "Assinar este usuário" @@ -4917,10 +5651,11 @@ msgid "Top posters" msgstr "Quem mais publica" #: lib/unblockform.php:120 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Desbloquear este usuário" -#: lib/unblockform.php:150 +#: lib/unblockform.php:150 actions/blockedfromgroup.php:313 msgid "Unblock" msgstr "Desbloquear" @@ -4928,6 +5663,2068 @@ msgstr "Desbloquear" msgid "Unsubscribe from this user" msgstr "Cancelar a assinatura deste usuário" +#: actions/all.php:77 actions/all.php:59 actions/all.php:99 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:82 actions/all.php:64 actions/all.php:107 +#, fuzzy, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:87 actions/all.php:69 actions/all.php:115 +#, fuzzy, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Feed para os amigos de %s" + +#: actions/all.php:112 actions/all.php:125 actions/all.php:165 +#, fuzzy +msgid "You and friends" +msgstr "%s e amigos" + +#: actions/avatarsettings.php:78 +#, fuzzy, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "Você pode enviar seu avatar pessoal." + +#: actions/avatarsettings.php:373 +#, fuzzy +msgid "Avatar deleted." +msgstr "O avatar foi atualizado." + +#: actions/block.php:129 actions/block.php:136 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/deletenotice.php:73 actions/deletenotice.php:103 +#, fuzzy +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" +"Você está prestes a apagar permanentemente uma mensagem. Isso não poderá ser " +"desfeito." + +#: actions/deletenotice.php:127 actions/deletenotice.php:157 +#, fuzzy +msgid "There was a problem with your session token. Try again, please." +msgstr "" +"Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." + +#: actions/emailsettings.php:168 actions/emailsettings.php:174 +#, fuzzy +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Envie-me um e-mail quando alguém enviar-me uma mensagem particular." + +#: actions/facebookhome.php:193 actions/facebookhome.php:187 +#, php-format +msgid "" +"If you would like the %s app to automatically update your Facebook status " +"with your latest notice, you need to give it permission." +msgstr "" + +#: actions/facebookhome.php:217 actions/facebookhome.php:211 +#, php-format +msgid "Okay, do it!" +msgstr "" + +#: actions/facebooksettings.php:124 +#, php-format +msgid "" +"If you would like %s to automatically update your Facebook status with your " +"latest notice, you need to give it permission." +msgstr "" + +#: actions/grouplogo.php:155 actions/grouplogo.php:150 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:367 actions/grouplogo.php:362 +#, fuzzy +msgid "Pick a square area of the image to be the logo." +msgstr "Selecione uma área quadrada da imagem para ser seu avatar" + +#: actions/grouprss.php:136 actions/grouprss.php:137 +#, fuzzy, php-format +msgid "Microblog by %s group" +msgstr "Microblog por %s" + +#: actions/groupsearch.php:57 actions/groupsearch.php:52 +#, fuzzy, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" +"Procurar por pessoas em %%site.name%% por seus nomes, localidade ou " +"interesses. Separe os termos da busca com espaços; eles devem ter 3 " +"caracteres ou mais." + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/newmessage.php:102 +#, fuzzy +msgid "Only logged-in users can send direct messages." +msgstr "Ocorreu um erro durante o envio da mensagem direta." + +#: actions/noticesearch.php:91 +#, fuzzy, php-format +msgid "Search results for \"%s\" on %s" +msgstr " Procurar por \"%s\" no fluxo de mensagens" + +#: actions/openidlogin.php:66 +#, fuzzy, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Por razões de segurança, por favor, digite novamente seu nome de usuário e " +"senha antes de alterar suas configurações." + +#: actions/public.php:125 actions/public.php:133 actions/public.php:151 +#, fuzzy +msgid "Public Stream Feed (RSS 1.0)" +msgstr "Feed de mensagens públicas" + +#: actions/public.php:130 actions/public.php:138 actions/public.php:155 +#, fuzzy +msgid "Public Stream Feed (RSS 2.0)" +msgstr "Feed de mensagens públicas" + +#: actions/public.php:135 actions/public.php:143 actions/public.php:159 +#, fuzzy +msgid "Public Stream Feed (Atom)" +msgstr "Feed de mensagens públicas" + +#: actions/public.php:210 actions/public.php:241 actions/public.php:233 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/register.php:286 actions/register.php:329 +#, php-format +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. (Have an [OpenID](http://openid.net/)? " +"Try our [OpenID registration](%%action.openidlogin%%)!)" +msgstr "" + +#: actions/register.php:432 actions/register.php:479 actions/register.php:489 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:433 actions/register.php:480 actions/register.php:490 +#, fuzzy +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" +" exceto estes dados privados: senha, endereço de e-mail, endereço de IM, " +"número de telefone." + +#: actions/showgroup.php:378 actions/showgroup.php:424 +#: actions/showgroup.php:432 +#, fuzzy +msgid "Created" +msgstr "Criar" + +#: actions/showgroup.php:393 actions/showgroup.php:440 +#: actions/showgroup.php:448 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:147 +#, fuzzy +msgid "Your profile" +msgstr "Esse perfil não existe." + +#: actions/showstream.php:149 +#, fuzzy, php-format +msgid "%s's profile" +msgstr "Perfil" + +#: actions/showstream.php:163 actions/showstream.php:128 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "Feed de mensagens de %s" + +#: actions/showstream.php:170 actions/showstream.php:135 +#, fuzzy, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "Feed de mensagens de %s" + +#: actions/showstream.php:177 actions/showstream.php:142 +#, fuzzy, php-format +msgid "Notice feed for %s (Atom)" +msgstr "Feed de mensagens de %s" + +#: actions/showstream.php:182 actions/showstream.php:147 +#, fuzzy, php-format +msgid "FOAF for %s" +msgstr "Envidas para %s" + +#: actions/showstream.php:237 actions/showstream.php:202 +#: actions/showstream.php:234 +#, fuzzy +msgid "Edit Avatar" +msgstr "Avatar" + +#: actions/showstream.php:316 actions/showstream.php:281 +#: actions/showstream.php:366 +#, fuzzy +msgid "Edit profile settings" +msgstr "Configurações do perfil" + +#: actions/showstream.php:317 actions/showstream.php:282 +#: actions/showstream.php:367 +msgid "Edit" +msgstr "" + +#: actions/showstream.php:542 actions/showstream.php:388 +#: actions/showstream.php:487 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/smssettings.php:335 actions/smssettings.php:347 +#, fuzzy +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" +"Um código de confirmação foi enviado para o número de telefone que você " +"informou. Verifique sua caixa de entrada (e de spam!) para o código e " +"instruções sobre como usá-lo." + +#: actions/twitapifavorites.php:171 lib/mail.php:556 +#: actions/twitapifavorites.php:222 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"In case you forgot, you can see the text of your notice here:\n" +"\n" +"%3$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%4$s\n" +"\n" +"Faithfully yours,\n" +"%5$s\n" +msgstr "" + +#: actions/twitapistatuses.php:124 actions/twitapistatuses.php:82 +#: actions/twitapistatuses.php:314 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:125 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:79 +#: actions/apitimelinementions.php:79 actions/apitimelineuser.php:81 +#, fuzzy +msgid "No such user!" +msgstr "Esse usuário não existe" + +#: actions/twittersettings.php:72 +#, fuzzy +msgid "" +"Add your Twitter account to automatically send your notices to Twitter, and " +"subscribe to Twitter friends already here." +msgstr "" +"Adicione a sua conta do Twitter para enviar suas mensagens para lá " +"automaticamente, " + +#: actions/twittersettings.php:345 actions/twittersettings.php:362 +#, fuzzy, php-format +msgid "Unable to retrieve account information For \"%s\" from Twitter." +msgstr "Não foi possível obter as informações da conta \"%s\" no Twitter." + +#: actions/userauthorization.php:86 actions/userauthorization.php:81 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user's notices. If you didn't just ask to subscribe to someone's notices, " +"click \"Reject\"." +msgstr "" +"Por favor, verifique estes detalhes para ter certeza que você quer seguir as " +"mensagens deste usuário. Se você não solicitou seguir as mensagens de " +"alguém, clique em \"Cancelar\"." + +#: actions/usergroups.php:131 actions/usergroups.php:130 +#, fuzzy +msgid "Search for more groups" +msgstr "Pesquisar por pessoa ou texto" + +#: classes/Notice.php:138 classes/Notice.php:154 classes/Notice.php:194 +#, fuzzy +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" +"Muitas mensagens em um período curto de tempo; dê uma respirada e publique " +"novamente daqui a alguns minutos." + +#: lib/action.php:406 lib/action.php:425 +#, fuzzy +msgid "Connect to SMS, Twitter" +msgstr "Conectar por IM, SMS, Twitter" + +#: lib/action.php:671 lib/action.php:721 lib/action.php:736 +#, fuzzy +msgid "Badge" +msgstr "Chamar a atenção" + +#: lib/command.php:113 lib/command.php:106 lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:392 lib/command.php:385 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - not yet implemented.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/facebookaction.php:271 lib/facebookaction.php:273 +#, fuzzy, php-format +msgid "" +"To use the %s Facebook Application you need to login with your username and " +"password. Don't have a username yet? " +msgstr "Para usar a Aplicação do Facebook %s você precisa autenticar-se" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %d." +msgstr "" + +#: lib/mail.php:175 lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:241 lib/mail.php:240 +#, fuzzy, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" +"%1$s agora está acompanhando suas mensagens em %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"Cordialmente,\n" +"%4$s.\n" + +#: lib/mail.php:466 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:513 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:598 lib/mail.php:600 +#, php-format +msgid "%s sent a notice to your attention" +msgstr "" + +#: lib/mail.php:600 lib/mail.php:602 +#, php-format +msgid "" +"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +"You can reply back here:\n" +"\n" +"\t%5$s\n" +"\n" +"The list of all @-replies for you here:\n" +"\n" +"%6$s\n" +"\n" +"Faithfully yours,\n" +"%2$s\n" +"\n" +"P.S. You can turn off these email notifications here: %7$s\n" +msgstr "" + +#: lib/searchaction.php:122 lib/searchaction.php:120 +#, fuzzy +msgid "Search site" +msgstr "Procurar" + +#: lib/section.php:106 +msgid "More..." +msgstr "" + +#: actions/all.php:80 actions/all.php:127 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:85 actions/all.php:132 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#: actions/all.php:87 actions/all.php:134 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) from his profile or [post something to his " +"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/all.php:91 actions/replies.php:190 actions/showstream.php:361 +#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:455 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#: actions/attachment.php:73 +#, fuzzy +msgid "No such attachment." +msgstr "Esse documento não existe." + +#: actions/block.php:149 +#, fuzzy +msgid "Do not block this user from this group" +msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." + +#: actions/block.php:150 +#, fuzzy +msgid "Block this user from this group" +msgstr "Bloquear usuário" + +#: actions/blockedfromgroup.php:90 +#, fuzzy, php-format +msgid "%s blocked profiles" +msgstr "O usuário não tem perfil." + +#: actions/blockedfromgroup.php:93 +#, fuzzy, php-format +msgid "%s blocked profiles, page %d" +msgstr "%s e amigos, página %d" + +#: actions/blockedfromgroup.php:108 +msgid "A list of the users blocked from joining this group." +msgstr "" + +#: actions/blockedfromgroup.php:281 +#, fuzzy +msgid "Unblock user from group" +msgstr "Não foi possível desbloquear o usuário." + +#: actions/conversation.php:99 +#, fuzzy +msgid "Conversation" +msgstr "Código de confirmação" + +#: actions/deletenotice.php:115 actions/deletenotice.php:145 +#, fuzzy +msgid "Do not delete this notice" +msgstr "Não é possível excluir esta mensagem." + +#: actions/editgroup.php:214 actions/newgroup.php:164 +#: actions/apigroupcreate.php:291 actions/editgroup.php:215 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "" + +#: actions/editgroup.php:223 actions/newgroup.php:173 +#: actions/apigroupcreate.php:312 actions/editgroup.php:224 +#: actions/newgroup.php:168 +#, fuzzy, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Etiqueta inválida: \"%s\"" + +#: actions/editgroup.php:227 actions/newgroup.php:177 +#: actions/apigroupcreate.php:321 actions/editgroup.php:228 +#: actions/newgroup.php:172 +#, fuzzy, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Este apelido já está em uso. Tente outro." + +#: actions/editgroup.php:233 actions/newgroup.php:183 +#: actions/apigroupcreate.php:334 actions/editgroup.php:234 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "" + +#: actions/editgroup.php:259 actions/newgroup.php:215 +#: actions/apigroupcreate.php:147 actions/newgroup.php:210 +#, fuzzy +msgid "Could not create aliases." +msgstr "Não foi possível criar a favorita." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/file.php:34 +#, fuzzy +msgid "No notice id" +msgstr "Nova mensagem" + +#: actions/file.php:38 +#, fuzzy +msgid "No notice" +msgstr "Nova mensagem" + +#: actions/file.php:42 +msgid "No attachments" +msgstr "" + +#: actions/file.php:51 +msgid "No uploaded attachments" +msgstr "" + +#: actions/finishopenidlogin.php:211 +#, fuzzy +msgid "Not a valid invitation code." +msgstr "Não é um apelido válido." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +#, fuzzy +msgid "No group specified." +msgstr "Não foi especificado nenhum perfil." + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "" + +#: actions/groupblock.php:95 +#, fuzzy +msgid "User is already blocked from group." +msgstr "O usuário bloqueou você." + +#: actions/groupblock.php:100 +#, fuzzy +msgid "User is not a member of group." +msgstr "Você não está assinando esse perfil." + +#: actions/groupblock.php:136 actions/groupmembers.php:311 +#: actions/groupmembers.php:314 +#, fuzzy +msgid "Block user from group" +msgstr "Bloquear usuário" + +#: actions/groupblock.php:155 +#, php-format +msgid "" +"Are you sure you want to block user \"%s\" from the group \"%s\"? They will " +"be removed from the group, unable to post, and unable to subscribe to the " +"group in the future." +msgstr "" + +#: actions/groupblock.php:193 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68 +#, fuzzy +msgid "You must be logged in to edit a group." +msgstr "Você deve estar logado para criar um grupo." + +#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141 +#, fuzzy +msgid "Group design" +msgstr "Outras opções" + +#: actions/groupdesignsettings.php:157 actions/groupdesignsettings.php:152 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:267 actions/userdesignsettings.php:186 +#: lib/designsettings.php:440 lib/designsettings.php:470 +#: actions/groupdesignsettings.php:262 lib/designsettings.php:431 +#: lib/designsettings.php:461 +#, fuzzy +msgid "Couldn't update your design." +msgstr "Não foi possível atualizar o usuário." + +#: actions/groupdesignsettings.php:291 actions/groupdesignsettings.php:301 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 +#, fuzzy +msgid "Unable to save your design settings!" +msgstr "Não foi possível salvar suas configurações do Twitter!" + +#: actions/groupdesignsettings.php:312 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:307 +#, fuzzy +msgid "Design preferences saved." +msgstr "As preferências de sincronização foram salvas." + +#: actions/groupmembers.php:438 actions/groupmembers.php:441 +#, fuzzy +msgid "Make user an admin of the group" +msgstr "Você deve ser o administrador do grupo para editá-lo" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +#, fuzzy +msgid "Make Admin" +msgstr "Admin" + +#: actions/groupmembers.php:470 actions/groupmembers.php:473 +msgid "Make this user an admin" +msgstr "" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +#, fuzzy +msgid "No results." +msgstr "Nenhum resultado" + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "" + +#: actions/groupunblock.php:95 +#, fuzzy +msgid "User is not blocked from group." +msgstr "O usuário bloqueou você." + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "" + +#: actions/joingroup.php:100 actions/apigroupjoin.php:119 +#: actions/joingroup.php:95 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "" + +#: actions/makeadmin.php:91 +msgid "Only an admin can make another user an admin." +msgstr "" + +#: actions/makeadmin.php:95 +#, php-format +msgid "%s is already an admin for group \"%s\"." +msgstr "" + +#: actions/makeadmin.php:132 +#, php-format +msgid "Can't get membership record for %s in group %s" +msgstr "" + +#: actions/makeadmin.php:145 +#, php-format +msgid "Can't make %s an admin for group %s" +msgstr "" + +#: actions/newmessage.php:178 actions/newmessage.php:181 +#, fuzzy +msgid "Message sent" +msgstr "Nova mensagem" + +#: actions/newnotice.php:93 lib/designsettings.php:281 +#: actions/newnotice.php:94 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/newnotice.php:128 scripts/maildaemon.php:185 lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: actions/newnotice.php:133 scripts/maildaemon.php:190 lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported filetype on this server." +msgstr "" + +#: actions/newnotice.php:205 lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: actions/newnotice.php:208 lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: actions/newnotice.php:211 lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: actions/newnotice.php:214 lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: actions/newnotice.php:217 lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: actions/newnotice.php:220 lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: actions/newnotice.php:230 scripts/maildaemon.php:85 +#, fuzzy +msgid "Couldn't save file." +msgstr "Não foi possível salvar o perfil." + +#: actions/newnotice.php:246 scripts/maildaemon.php:101 +msgid "Max notice size is 140 chars, including attachment URL." +msgstr "" + +#: actions/newnotice.php:297 +msgid "Somehow lost the login in saveFile" +msgstr "" + +#: actions/newnotice.php:309 scripts/maildaemon.php:127 lib/mediafile.php:196 +#: lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: actions/newnotice.php:336 actions/newnotice.php:360 +#: scripts/maildaemon.php:148 scripts/maildaemon.php:167 lib/mediafile.php:98 +#: lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/openidsettings.php:70 +#, fuzzy, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"A [OpenID](%%doc.openid%%) permite que você autentique-se em vários sites " +"com a mesma conta de usuário. Gerencie suas OpenIDs associadas aqui." + +#: actions/othersettings.php:110 actions/othersettings.php:117 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:115 actions/othersettings.php:122 +#, fuzzy +msgid "View profile designs" +msgstr "Configurações do perfil" + +#: actions/othersettings.php:116 actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/public.php:82 actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:179 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:182 +msgid "Be the first to post!" +msgstr "" + +#: actions/public.php:186 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:245 actions/public.php:238 +#, fuzzy, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" +"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" +"wiki/Microblogging)" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/recoverpassword.php:152 +#, fuzzy +msgid "" +"If you've forgotten or lost your password, you can get a new one sent to the " +"email address you have stored in your account." +msgstr "" +"Se você esqueceu ou perdeu sua senha, você pode receber uma nova no endereço " +"de e-mail que armazenou em sua conta." + +#: actions/recoverpassword.php:158 +#, fuzzy +msgid "You've been identified. Enter a new password below. " +msgstr "Você foi identificado. Informe uma nova senha abaixo." + +#: actions/recoverpassword.php:188 +#, fuzzy +msgid "Password recover" +msgstr "Foi solicitada a recuperação da senha" + +#: actions/register.php:86 +#, fuzzy +msgid "Sorry, invalid invitation code." +msgstr "Erro com o código de confirmação." + +#: actions/remotesubscribe.php:100 actions/remotesubscribe.php:124 +#, fuzzy +msgid "Subscribe to a remote user" +msgstr "Assinar este usuário" + +#: actions/replies.php:179 actions/replies.php:198 +#, php-format +msgid "" +"This is the timeline showing replies to %s but %s hasn't received a notice " +"to his attention yet." +msgstr "" + +#: actions/replies.php:184 actions/replies.php:203 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:186 actions/replies.php:205 +#, php-format +msgid "" +"You can try to [nudge %s](../%s) or [post something to his or her attention]" +"(%%%%action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showfavorites.php:79 +#, fuzzy, php-format +msgid "%s's favorite notices, page %d" +msgstr "Mensagens favoritas de %s" + +#: actions/showfavorites.php:170 actions/showfavorites.php:205 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:172 actions/showfavorites.php:207 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:176 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to thier favorites :)" +msgstr "" + +#: actions/showfavorites.php:226 actions/showfavorites.php:242 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:279 lib/groupeditform.php:178 +#: actions/showgroup.php:284 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "" + +#: actions/showgroup.php:323 actions/showgroup.php:328 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "Mensagens de %s" + +#: actions/showgroup.php:330 actions/tag.php:84 actions/showgroup.php:334 +#, fuzzy, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "Mensagens de %s" + +#: actions/showgroup.php:337 actions/showgroup.php:340 +#, fuzzy, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "Mensagens de %s" + +#: actions/showgroup.php:446 actions/showgroup.php:454 +#, fuzzy, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" +"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" +"wiki/Microblogging)" + +#: actions/showgroup.php:474 actions/showgroup.php:482 +#, fuzzy +msgid "Admins" +msgstr "Admin" + +#: actions/shownotice.php:101 +#, fuzzy +msgid "Not a local notice" +msgstr "Não é um usuário local." + +#: actions/showstream.php:72 +#, fuzzy, php-format +msgid " tagged %s" +msgstr "Mensagens etiquetadas com %s" + +#: actions/showstream.php:121 +#, fuzzy, php-format +msgid "Notice feed for %s tagged %s (RSS 1.0)" +msgstr "Mensagens de %s" + +#: actions/showstream.php:350 actions/showstream.php:444 +#, php-format +msgid "This is the timeline for %s but %s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:355 actions/showstream.php:449 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:357 actions/showstream.php:451 +#, php-format +msgid "" +"You can try to nudge %s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%s)." +msgstr "" + +#: actions/showstream.php:393 actions/showstream.php:492 +#, fuzzy, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" +"Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" +"wiki/Microblogging)" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:115 actions/subscriptions.php:121 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:117 actions/subscriptions.php:121 +#: actions/subscriptions.php:123 actions/subscriptions.php:127 +#, fuzzy, php-format +msgid "%s is not listening to anyone." +msgstr "%1$s agora está acompanhando " + +#: actions/tag.php:77 actions/tag.php:86 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "Feed de mensagens de %s" + +#: actions/tag.php:91 actions/tag.php:98 +#, fuzzy, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "Feed de mensagens de %s" + +#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119 +#, fuzzy +msgid "This status is already a favorite!" +msgstr "Essa mensagem já é uma favorita!" + +#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122 +#, fuzzy +msgid "That status is not a favorite!" +msgstr "Essa mensagem não é uma favorita!" + +#: actions/twitapifriendships.php:180 actions/twitapifriendships.php:200 +#: actions/apifriendshipsshow.php:135 +#, fuzzy +msgid "Could not determine source user." +msgstr "Não foi possível recuperar o fluxo público." + +#: actions/twitapifriendships.php:215 +#, fuzzy +msgid "Target user not specified." +msgstr "Nenhum destinatário especificado." + +#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143 +#, fuzzy +msgid "Could not find target user." +msgstr "Não foi possível encontrar nenhum status." + +#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116 +#, fuzzy, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Atualizações respondendo à %2$s" + +#: actions/twitapitags.php:74 actions/apitimelinetag.php:107 +#: actions/tagrss.php:64 +#, fuzzy, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "Atualizações de %1$s no %2$s!" + +#: actions/twittersettings.php:165 +msgid "Import my Friends Timeline." +msgstr "" + +#: actions/userauthorization.php:158 actions/userauthorization.php:188 +msgid "License" +msgstr "" + +#: actions/userauthorization.php:179 actions/userauthorization.php:212 +#, fuzzy +msgid "Reject this subscription" +msgstr "%s assinaturas" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +#, fuzzy +msgid "Profile design" +msgstr "Configurações do perfil" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:153 +#, fuzzy, php-format +msgid "%s is not a member of any group." +msgstr "Você não está assinando esse perfil." + +#: actions/usergroups.php:158 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: classes/File.php:127 classes/File.php:137 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:137 classes/File.php:147 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:145 classes/File.php:154 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Notice.php:139 classes/Notice.php:179 +#, fuzzy +msgid "Problem saving notice. Too long." +msgstr "Problema ao salvar a mensagem." + +#: classes/User.php:319 classes/User.php:327 +#, fuzzy, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "Mensagem para %1$s no %2$s" + +#: lib/accountsettingsaction.php:119 lib/groupnav.php:118 +#: lib/accountsettingsaction.php:120 +msgid "Design" +msgstr "" + +#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121 +#, fuzzy +msgid "Design your profile" +msgstr "O usuário não tem perfil." + +#: lib/action.php:712 lib/action.php:727 +msgid "TOS" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "" + +#: lib/attachmentlist.php:278 +#, fuzzy +msgid "Provider" +msgstr "Perfil" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: lib/designsettings.php:105 +#, fuzzy +msgid "Upload file" +msgstr "Enviar" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2Mb." +msgstr "" + +#: lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Altere a sua senha" + +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Conectar" + +#: lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Procurar" + +#: lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Lista" + +#: lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: lib/designsettings.php:257 +msgid "Save design" +msgstr "" + +#: lib/designsettings.php:378 lib/designsettings.php:369 +msgid "Bad default color settings: " +msgstr "" + +#: lib/designsettings.php:474 lib/designsettings.php:465 +msgid "Design defaults restored." +msgstr "" + +#: lib/groupeditform.php:181 lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:100 +#, fuzzy +msgid "Blocked" +msgstr "Bloquear" + +#: lib/groupnav.php:101 +#, fuzzy, php-format +msgid "%s blocked users" +msgstr "Bloquear usuário" + +#: lib/groupnav.php:119 +#, fuzzy, php-format +msgid "Add or edit %s design" +msgstr "Adicionar ou editar logo de %s" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:646 +#, php-format +msgid "Your Twitter bridge has been disabled." +msgstr "" + +#: lib/mail.php:648 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that your link to Twitter has been " +"disabled. Your Twitter credentials have either changed (did you recently " +"change your Twitter password?) or you have otherwise revoked our access to " +"your Twitter account.\n" +"\n" +"You can re-enable your Twitter bridge by visiting your Twitter settings " +"page:\n" +"\n" +"\t%2$s\n" +"\n" +"Regards,\n" +"%3$s\n" +msgstr "" + +#: lib/mail.php:682 +#, php-format +msgid "Your %s Facebook application access has been disabled." +msgstr "" + +#: lib/mail.php:685 +#, php-format +msgid "" +"Hi, %1$s. We're sorry to inform you that we are unable to update your " +"Facebook status from %s, and have disabled the Facebook application for your " +"account. This may be because you have removed the Facebook application's " +"authorization, or have deleted your Facebook account. You can re-enable the " +"Facebook application and automatic status updating by re-installing the %1$s " +"Facebook application.\n" +"\n" +"Regards,\n" +"\n" +"%1$s" +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/noticeform.php:154 lib/noticeform.php:180 +msgid "Attach" +msgstr "" + +#: lib/noticeform.php:158 lib/noticeform.php:184 +msgid "Attach a file" +msgstr "" + +#: lib/noticelist.php:436 lib/noticelist.php:478 +#, fuzzy +msgid "in context" +msgstr "Nenhum conteúdo!" + +#: lib/profileaction.php:177 +#, fuzzy +msgid "User ID" +msgstr "Usuário" + +#: lib/searchaction.php:156 lib/searchaction.php:162 +#, fuzzy +msgid "Search help" +msgstr "Procurar" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/webcolor.php:82 +#, fuzzy, php-format +msgid "%s is not a valid color!" +msgstr "A URL do site informada não é válida." + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 +#: actions/showfavorites.php:137 actions/tag.php:51 +#, fuzzy +msgid "No such page" +msgstr "Essa etiqueta não existe." + +#: actions/apidirectmessage.php:89 +#, fuzzy, php-format +msgid "Direct messages from %s" +msgstr "Mensagem direta para %s" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, fuzzy, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Muito extenso. O tamanho máximo das mensagens é 140 caracteres." + +#: actions/apifriendshipsdestroy.php:109 +#, fuzzy +msgid "Could not unfollow user: User not found." +msgstr "Não é possível seguir o usuário: Usuário não encontrado." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself!" +msgstr "" + +#: actions/apigroupcreate.php:261 +#, fuzzy, php-format +msgid "Description is too long (max %d chars)." +msgstr "descrição muito extensa (máximo 140 caracteres)." + +#: actions/apigroupjoin.php:110 +#, fuzzy +msgid "You are already a member of that group." +msgstr "Você já está assinando esses usuários:" + +#: actions/apigroupjoin.php:138 +#, fuzzy, php-format +msgid "Could not join user %s to group %s." +msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." + +#: actions/apigroupleave.php:114 +#, fuzzy +msgid "You are not a member of this group." +msgstr "Você não está assinando esse perfil." + +#: actions/apigroupleave.php:124 +#, fuzzy, php-format +msgid "Could not remove user %s to group %s." +msgstr "Não é possível acompanhar o usuário: Usuário não encontrado." + +#: actions/apigrouplist.php:95 +#, fuzzy, php-format +msgid "%s's groups" +msgstr "Grupos de %s" + +#: actions/apigrouplist.php:103 +#, fuzzy, php-format +msgid "Groups %s is a member of on %s." +msgstr "O grupo %s é membro de" + +#: actions/apigrouplistall.php:94 +#, fuzzy, php-format +msgid "groups on %s" +msgstr "Outras opções" + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "" + +#: actions/apistatusesupdate.php:132 +msgid "Unable to handle that much POST data!" +msgstr "" + +#: actions/apistatusesupdate.php:145 actions/newnotice.php:155 +#: scripts/maildaemon.php:71 +#, fuzzy, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Está muito extenso. O tamanho máximo é de 140 caracteres." + +#: actions/apistatusesupdate.php:209 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +#, fuzzy +msgid "Unsupported format." +msgstr "Formato de imagem não suportado." + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "" + +#: actions/editgroup.php:201 actions/newgroup.php:145 +#, fuzzy, php-format +msgid "description is too long (max %d chars)." +msgstr "descrição muito extensa (máximo 140 caracteres)." + +#: actions/favoritesrss.php:115 +#, fuzzy, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Atualizações de %1$s no %2$s!" + +#: actions/finishremotesubscribe.php:80 +#, fuzzy +msgid "User being listened to does not exist." +msgstr "O usuário que está está sendo acompanhado não existe." + +#: actions/finishremotesubscribe.php:106 +#, fuzzy +msgid "You are not authorized." +msgstr "Não autorizado." + +#: actions/finishremotesubscribe.php:109 +#, fuzzy +msgid "Could not convert request token to access token." +msgstr "" +"Não foi possível converter os tokens de requisição para tokens de acesso." + +#: actions/finishremotesubscribe.php:114 +#, fuzzy +msgid "Remote service uses unknown version of OMB protocol." +msgstr "Versão desconhecida do protocolo OMB." + +#: actions/getfile.php:75 +#, fuzzy +msgid "No such file." +msgstr "Essa mensagem não existe." + +#: actions/getfile.php:79 +#, fuzzy +msgid "Cannot read file." +msgstr "Nosso arquivo foi perdido." + +#: actions/grouprss.php:133 +#, fuzzy, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Atualizações de %1$s no %2$s!" + +#: actions/imsettings.php:89 +#, fuzzy +msgid "IM is not available." +msgstr "Esta página não está disponível em um " + +#: actions/login.php:259 +#, fuzzy, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Logar-se com seu nome de usuário e senha. Não tem um nome de usuário ainda? " +"[Registre](%%action.register%%) uma nova conta, ou use uma [OpenID](%%action." +"openidlogin%%)." + +#: actions/noticesearchrss.php:89 +#, php-format +msgid "Updates with \"%s\"" +msgstr "" + +#: actions/noticesearchrss.php:91 +#, fuzzy, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "Todas as atualizações correspondentes ao termo \"%s\"" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "" + +#: actions/oembed.php:160 +msgid "Only " +msgstr "" + +#: actions/postnotice.php:90 +#, php-format +msgid "Notice license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:454 +#, fuzzy, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." + +#: actions/profilesettings.php:125 actions/register.php:457 +#, fuzzy +msgid "Describe yourself and your interests" +msgstr "Descreva a si mesmo e seus interesses em 140 caracteres." + +#: actions/profilesettings.php:221 actions/register.php:217 +#, fuzzy, php-format +msgid "Bio is too long (max %d chars)." +msgstr "Descrição muito extensa (máximo 140 caracteres)." + +#: actions/register.php:336 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/remotesubscribe.php:168 +#, fuzzy +msgid "" +"Not a valid profile URL (no YADIS document or no or invalid XRDS defined)." +msgstr "Não é uma URL de perfil válida (nenhum documento YADIS)." + +#: actions/remotesubscribe.php:176 +#, fuzzy +msgid "That’s a local profile! Login to subscribe." +msgstr "Esse é um perfil local! Autentique-se para assinar." + +#: actions/remotesubscribe.php:183 +#, fuzzy +msgid "Couldn’t get a request token." +msgstr "Não foi possível obter um token de requisição." + +#: actions/replies.php:144 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:151 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:158 +#, fuzzy, php-format +msgid "Replies feed for %s (Atom)" +msgstr "Mensagens de %s" + +#: actions/repliesrss.php:72 +#, fuzzy, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "Mensagem para %1$s no %2$s" + +#: actions/showfavorites.php:170 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "Feed para favoritas de %s" + +#: actions/showfavorites.php:177 +#, fuzzy, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "Feed para favoritas de %s" + +#: actions/showfavorites.php:184 +#, fuzzy, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "Feed para favoritas de %s" + +#: actions/showfavorites.php:211 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showgroup.php:345 +#, fuzzy, php-format +msgid "FOAF for %s group" +msgstr "Mensagens de %s" + +#: actions/shownotice.php:90 +#, fuzzy +msgid "Notice deleted." +msgstr "Mensagem publicada" + +#: actions/smssettings.php:91 +#, fuzzy +msgid "SMS is not available." +msgstr "Esta página não está disponível em um " + +#: actions/tag.php:92 +#, fuzzy, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "Feed de mensagens de %s" + +#: actions/updateprofile.php:62 actions/userauthorization.php:330 +#, php-format +msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." +msgstr "" + +#: actions/userauthorization.php:110 +#, fuzzy +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Reject”." +msgstr "" +"Por favor, verifique estes detalhes para ter certeza que você quer seguir as " +"mensagens deste usuário. Se você não solicitou seguir as mensagens de " +"alguém, clique em \"Cancelar\"." + +#: actions/userauthorization.php:249 +#, fuzzy +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" +"A assinatura foi autorizada, mas não foi informada nenhuma URL de retorno. " +"Verifique as instruções do site para detalhes sobre como autorizar a " +"assinatura. Seu token de assinatura é:" + +#: actions/userauthorization.php:261 +#, fuzzy +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" +"A assinatura foi rejeitada, mas não foi informada nenhuma URL de retorno. " +"Verifique as instruções do site para maiores detalhes em como rejeitar " +"completamente a assinatura." + +#: actions/userauthorization.php:296 +#, php-format +msgid "Listener URI ‘%s’ not found here" +msgstr "" + +#: actions/userauthorization.php:301 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:307 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:322 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:338 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:343 +#, fuzzy, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "Não é possível ler a URL '%s' do avatar" + +#: actions/userauthorization.php:348 +#, fuzzy, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "Tipo de imagem errado para '%s'" + +#: lib/action.php:435 +#, fuzzy +msgid "Connect to services" +msgstr "Não foi possível redirecionar para o servidor: %s" + +#: lib/action.php:785 +#, fuzzy +msgid "Site content license" +msgstr "Procure no conteúdo das mensagens" + +#: lib/command.php:88 +#, fuzzy, php-format +msgid "Could not find a user with nickname %s" +msgstr "" +"Não foi possível atualizar o usuário com o endereço de e-mail confirmado." + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, fuzzy, php-format +msgid "Nudge sent to %s" +msgstr "Chamada de atenção enviada" + +#: lib/command.php:152 lib/command.php:400 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:358 scripts/xmppdaemon.php:321 +#, fuzzy, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" +"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" + +#: lib/command.php:431 +#, fuzzy, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" +"A mensagem é muito extensa - o máximo são 140 caracteres e você enviou %d" + +#: lib/command.php:439 +#, fuzzy, php-format +msgid "Reply to %s sent" +msgstr "Responder a esta mensagem" + +#: lib/command.php:441 +#, fuzzy +msgid "Error saving notice." +msgstr "Problema ao salvar a mensagem." + +#: lib/command.php:587 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow - subscribe to user\n" +"leave - unsubscribe from user\n" +"d - direct message to user\n" +"get - get last notice from user\n" +"whois - get profile info on user\n" +"fav - add user's last notice as a 'fave'\n" +"fav # - add notice with the given id as a 'fave'\n" +"reply # - reply to notice with a given id\n" +"reply - reply to the last notice from user\n" +"join - join group\n" +"drop - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub - same as 'follow'\n" +"unsub - same as 'leave'\n" +"last - same as 'get'\n" +"on - not yet implemented.\n" +"off - not yet implemented.\n" +"nudge - remind a user to update.\n" +"invite - not yet implemented.\n" +"track - not yet implemented.\n" +"untrack - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:191 +#, fuzzy +msgid "No configuration file found. " +msgstr "Nenhum código de confirmação." + +#: lib/common.php:192 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:193 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:194 +#, fuzzy +msgid "Go to the installer." +msgstr "Entrar" + +#: lib/galleryaction.php:139 +#, fuzzy +msgid "Select tag to filter" +msgstr "Selecione uma operadora" + +#: lib/groupeditform.php:168 +#, fuzzy +msgid "Describe the group or topic" +msgstr "Descreva o grupo ou tópico em 140 caracteres." + +#: lib/groupeditform.php:170 +#, fuzzy, php-format +msgid "Describe the group or topic in %d characters" +msgstr "Descreva o grupo ou tópico em 140 caracteres." + +#: lib/jabber.php:192 +#, fuzzy, php-format +msgid "notice id: %s" +msgstr "Feed de mensagens de %s" + +#: lib/mail.php:554 +#, fuzzy, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "%s marcaram sua mensagem como favorita" + +#: lib/mail.php:556 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:611 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:613 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:424 +#, fuzzy +msgid "from" +msgstr " de " + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota!" +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +#, fuzzy +msgid "Could not determine file's mime-type!" +msgstr "Não foi possível excluir a favorita." + +#: lib/oauthstore.php:345 +#, fuzzy +msgid "Duplicate notice" +msgstr "Excluir a mensagem" + #~ msgid "Code not yet ready." #~ msgstr "O código ainda não está pronto." @@ -4949,9 +7746,6 @@ msgstr "Cancelar a assinatura deste usuário" #~ msgid "Tag a person" #~ msgstr "Etiquetar uma pessoa" -#~ msgid "List" -#~ msgstr "Lista" - #~ msgid "Icons" #~ msgstr "Ícones" diff --git a/locale/ru/LC_MESSAGES/statusnet.mo b/locale/ru/LC_MESSAGES/statusnet.mo index c4066c65e464c39bdb5fb82312ed509245e3209c..251292eae7b9f7459096f72739c52315e3c9a672 100644 GIT binary patch delta 29006 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